26281 lines
1.3 MiB
Plaintext
26281 lines
1.3 MiB
Plaintext
#include "pch-cpp.hpp"
|
|
|
|
#ifndef _MSC_VER
|
|
# include <alloca.h>
|
|
#else
|
|
# include <malloc.h>
|
|
#endif
|
|
|
|
|
|
#include <limits>
|
|
|
|
|
|
struct VirtualActionInvoker0
|
|
{
|
|
typedef void (*Action)(void*, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
((Action)invokeData.methodPtr)(obj, invokeData.method);
|
|
}
|
|
};
|
|
template <typename R>
|
|
struct VirtualFuncInvoker0
|
|
{
|
|
typedef R (*Func)(void*, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
|
|
}
|
|
};
|
|
struct InterfaceActionInvoker0
|
|
{
|
|
typedef void (*Action)(void*, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
((Action)invokeData.methodPtr)(obj, invokeData.method);
|
|
}
|
|
};
|
|
template <typename T1, typename T2>
|
|
struct InterfaceActionInvoker2
|
|
{
|
|
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
|
|
}
|
|
};
|
|
template <typename R>
|
|
struct InterfaceFuncInvoker0
|
|
{
|
|
typedef R (*Func)(void*, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
|
|
}
|
|
};
|
|
template <typename T1>
|
|
struct InvokerActionInvoker1;
|
|
template <typename T1>
|
|
struct InvokerActionInvoker1<T1*>
|
|
{
|
|
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1)
|
|
{
|
|
void* params[1] = { p1 };
|
|
method->invoker_method(methodPtr, method, obj, params, params[0]);
|
|
}
|
|
};
|
|
template <typename T1, typename T2>
|
|
struct InvokerActionInvoker2;
|
|
template <typename T1, typename T2>
|
|
struct InvokerActionInvoker2<T1*, T2*>
|
|
{
|
|
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2)
|
|
{
|
|
void* params[2] = { p1, p2 };
|
|
method->invoker_method(methodPtr, method, obj, params, params[1]);
|
|
}
|
|
};
|
|
template <typename T1, typename T2, typename T3>
|
|
struct InvokerActionInvoker3;
|
|
template <typename T1, typename T2, typename T3>
|
|
struct InvokerActionInvoker3<T1*, T2*, T3*>
|
|
{
|
|
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2, T3* p3)
|
|
{
|
|
void* params[3] = { p1, p2, p3 };
|
|
method->invoker_method(methodPtr, method, obj, params, params[2]);
|
|
}
|
|
};
|
|
template <typename R>
|
|
struct InvokerFuncInvoker0
|
|
{
|
|
static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj)
|
|
{
|
|
R ret;
|
|
method->invoker_method(methodPtr, method, obj, NULL, &ret);
|
|
return ret;
|
|
}
|
|
};
|
|
template <typename R, typename T1>
|
|
struct InvokerFuncInvoker1;
|
|
template <typename R, typename T1>
|
|
struct InvokerFuncInvoker1<R, T1*>
|
|
{
|
|
static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1)
|
|
{
|
|
R ret;
|
|
void* params[1] = { p1 };
|
|
method->invoker_method(methodPtr, method, obj, params, &ret);
|
|
return ret;
|
|
}
|
|
};
|
|
template <typename R, typename T1, typename T2>
|
|
struct InvokerFuncInvoker2;
|
|
template <typename R, typename T1, typename T2>
|
|
struct InvokerFuncInvoker2<R, T1*, T2*>
|
|
{
|
|
static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2)
|
|
{
|
|
R ret;
|
|
void* params[2] = { p1, p2 };
|
|
method->invoker_method(methodPtr, method, obj, params, &ret);
|
|
return ret;
|
|
}
|
|
};
|
|
struct ConstrainedActionInvoker0
|
|
{
|
|
static inline void Invoke (RuntimeClass* type, const RuntimeMethod* constrainedMethod, void* boxBuffer, void* obj)
|
|
{
|
|
il2cpp_codegen_runtime_constrained_call(type, constrainedMethod, boxBuffer, obj, NULL, NULL);
|
|
}
|
|
};
|
|
template <typename R>
|
|
struct ConstrainedFuncInvoker0
|
|
{
|
|
static inline R Invoke (RuntimeClass* type, const RuntimeMethod* constrainedMethod, void* boxBuffer, void* obj)
|
|
{
|
|
R ret;
|
|
il2cpp_codegen_runtime_constrained_call(type, constrainedMethod, boxBuffer, obj, NULL, &ret);
|
|
return ret;
|
|
}
|
|
};
|
|
|
|
struct Action_1_tEC47AB9DC2A94EE7A4E645155E1AE8217E835FAD;
|
|
struct Action_1_t90425964BF9D6282116C192CAA76B05EB0EEF123;
|
|
struct Action_1_t97FCE20F22566CA230EFB470FC80FEA708AA1231;
|
|
struct Action_1_tE8693FF0E67CDBA52BAFB211BFF1844D076ABAFB;
|
|
struct Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C;
|
|
struct Action_1_tA0F10A9285403FFE399C24B340DC3300881DE735;
|
|
struct Action_1_tD69A6DC9FBE94131E52F5A73B2A9D4AB51EEC404;
|
|
struct Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87;
|
|
struct Action_1_t310F18CB4338A2740CA701F160C62E2C3198E66A;
|
|
struct Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99;
|
|
struct Action_1_tE8FD183FF1CFF4CBB24914237436F62F0F145F45;
|
|
struct Action_2_t829FF86EEA250A853DF3A95B2C4DAC034707E20F;
|
|
struct Action_2_t9C463C2F47C41EF4ECC1B672CE6FB7D020F0E658;
|
|
struct Action_2_tC12DCAB4262F42CA0963501648E8EFBB3BD2C6B9;
|
|
struct Comparer_1_t075B18A0921F760D040E0D8BFE6637CE0E1587E4;
|
|
struct Comparer_1_t2158F98C5484AAD9CDBEC169B93B8E28C528F647;
|
|
struct Comparer_1_t2FF14F26F4D678A8FA199B888FF61A2A9D1D2D80;
|
|
struct Comparer_1_t0A03F9FBBEA32FB1528366652D3D38513E8B1137;
|
|
struct Comparer_1_tE191E68CB394DD255CCA7A56F4D1DEFED0BD3FDB;
|
|
struct Comparison_1_tF15DB3AEC82E2B8B1BF7E34C4EAB7D1031840D68;
|
|
struct Comparison_1_t939FA5753922E5ECCF481BF4BC889604ED91887E;
|
|
struct Comparison_1_tB7DE1436CB53924C2FC41FF926D074C1ACC14D89;
|
|
struct Comparison_1_t62E531E7B8260E2C6C2718C3BDB8CF8655139645;
|
|
struct Comparison_1_t11F78E54645546468696C9CAAB9785713FDD3C1D;
|
|
struct Dictionary_2_t61D2A8EA7B89354F704065B5DF8061AED7234EEA;
|
|
struct Dictionary_2_t514396B90715EDD83BB0470C76C2F426F9381C71;
|
|
struct Dictionary_2_t6E25435979095FF8317CE46D91CB6A310AFE529A;
|
|
struct Dictionary_2_t7B0F5D63DDA1E532530982C8043F0A132FF9745F;
|
|
struct Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3;
|
|
struct Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA;
|
|
struct Dictionary_2_t618A3BAB378CEC11C45065943EEF232D6D56CEBB;
|
|
struct Dictionary_2_t157C2697A6AD99064F09581B21C222B37F59115C;
|
|
struct Dictionary_2_tDB0826AE77C8FD34F75C0724B10DECDEA7E2CF75;
|
|
struct Dictionary_2_t949E92E5F484161666AAC9B5A9F002EFFF7559FB;
|
|
struct Dictionary_2_t061C32F21554B6B417C50DCB81993AABC5E0D806;
|
|
struct Dictionary_2_tF93D1EFD7E9D05B308B0D2F125299F32C890883E;
|
|
struct Dictionary_2_t0CA1A9528F28B6F1437931FE834472C6E9F31DB5;
|
|
struct Dictionary_2_t183D231AEA770BF0CBA2B9DCC8826360A2D5BB16;
|
|
struct Dictionary_2_t80ECE346ED6DD3D9A8F33F8F0C6CB989DEA7462F;
|
|
struct Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83;
|
|
struct Dictionary_2_tBA29A691F8E5D6FF1D1E91E506BF915398B83AD8;
|
|
struct Dictionary_2_tD54874457561403EF9ECC22AEFBF037C1C90CEA9;
|
|
struct Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D;
|
|
struct Dictionary_2_tC8FA8E0C06C3A9584490723EC95DC65E5AFFF71A;
|
|
struct Dictionary_2_tC791A5AC3BD371367696A57CAD347C5CE3415A76;
|
|
struct Dictionary_2_tE40F16D27D28D881AE13B622B8CAC08E500FD3DB;
|
|
struct Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED;
|
|
struct Func_2_tEDC4153392317FD0D86C48FCECA452C97AF11065;
|
|
struct Func_2_t7E802ADCC4E23D0978426643B6CC09161D2607EC;
|
|
struct ICollection_1_tA15C88CD562D52ED6B4D981EC7F4A5558BD52C6A;
|
|
struct ICollection_1_t0A0C5E4FD9B3D4D8D7D9CAC8060ABF55752BBE71;
|
|
struct ICollection_1_t828FEFDDBF830D003AFB480F0898186B499E26B0;
|
|
struct ICollection_1_tD7413105CA5DBF6629BE5E9EE453204D7C0D90FB;
|
|
struct ICollection_1_tD577E5FD017CC2E27D5B1FEF2DA142414DEA8CED;
|
|
struct IComparer_1_tC7D46A32A502DFC21B11BE1B2ED85863A881B5B4;
|
|
struct IComparer_1_t7A0343FDCBCC0F03B7F80536DBBAE6AFFB620065;
|
|
struct IComparer_1_t4483F9B9F43C7B0F8D4FEEAE12FAFDD3F9CF81FD;
|
|
struct IComparer_1_tC0A12A847AF97F369A5CE9A0CCE71CE18EE1440E;
|
|
struct IComparer_1_t76B18C44D8838F955CF8C0F53336D6C7006E0B53;
|
|
struct IEnumerable_1_tD8DE5F9169E539628BAD0430C548A55E535732E7;
|
|
struct IEnumerable_1_tFCB3E41202F3CC65C7DE9B40C22F196A081E84D6;
|
|
struct IEnumerable_1_t74AB238056DDD2D001FD687C66A06CF5599C0B1B;
|
|
struct IEnumerable_1_tCE758D940790D6D0D56B457E522C195F8C413AF2;
|
|
struct IEnumerable_1_tF95C9E01A913DD50575531C8305932628663D9E9;
|
|
struct IEnumerable_1_t352FDDEA001ABE8E1D67849D2E2F3D1D75B03D41;
|
|
struct IEnumerator_1_t48F4900A82CAF9059C2FEB04454888B64E155362;
|
|
struct IEnumerator_1_t00067BE0189D18D1A97A3ADAFAE245AD2B7B28E9;
|
|
struct IEnumerator_1_tD6A90A7446DA8E6CF865EDFBBF18C1200BB6D452;
|
|
struct IEnumerator_1_t43D2E4BA9246755F293DFA74F001FB1A70A648FD;
|
|
struct IEnumerator_1_t736E9F8BD2FD38A5E9EA2E8A510AFED788D05010;
|
|
struct IEqualityComparer_1_t4537FF5E9634FC142F7BF26B48CA727CCA436047;
|
|
struct IEqualityComparer_1_t2CA7720C7ADCCDECD3B02E45878B4478619D5347;
|
|
struct IEqualityComparer_1_t0BB8211419723EB61BF19007AC9D62365E50500E;
|
|
struct IEqualityComparer_1_t0AAF47C634574A1DCFB5915A378E485BCA259A3D;
|
|
struct IEqualityComparer_1_t47CC0B235E693652D181B679FF6D61A469ECC122;
|
|
struct KeyCollection_tCBDFAA4F8CDED9B820F836B3FE441E57A4084D7A;
|
|
struct KeyCollection_tFADDDF2D6C0A01DF12806A28A6F01ADE03552B53;
|
|
struct KeyCollection_t01334E642CE39D9E86B44FE220A959287F2F0074;
|
|
struct KeyCollection_tC35CFC19873303CD0018890640F74AB4C190928F;
|
|
struct KeyCollection_t72E81BA2C373FBDAAF08F4457A2795408D36D165;
|
|
struct KeyCollection_t1FEEAB3E4BED49A7DF838C0B60A3581A2A92E5BC;
|
|
struct KeyCollection_tF80B2DD3B1123EE674B240EA8C7ADFCC09F19B41;
|
|
struct List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0;
|
|
struct List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B;
|
|
struct List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576;
|
|
struct List_1_t386E09F4F22DDE4D2AC41A8567FFF283C254537B;
|
|
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D;
|
|
struct List_1_t9A2E2984B23260AECDFA90CEB1F2887075FA4DF3;
|
|
struct List_1_t991BBC5A1D51F59A450367DF944DAA207F22D06D;
|
|
struct List_1_tE5211AFE92BF26309D7C5814A29544E9EF496FE4;
|
|
struct List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A;
|
|
struct List_1_tD822CFC8EC5A4EDE44F2A2748F2EE743D9C211AC;
|
|
struct List_1_tD4C396FE862C77106272A02743E018C38A829811;
|
|
struct Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584;
|
|
struct Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B;
|
|
struct Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3;
|
|
struct Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12;
|
|
struct Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD;
|
|
struct Queue_1_tB328CF25826D17C7C7A7B87FCF06FF124C07632A;
|
|
struct Stack_1_t08E9B72954DC89AD9AC1DCAFDC7EFFDB16799DDF;
|
|
struct Stack_1_tA64CACBCB3F0BEBD7D78014706D4080E7C6B0376;
|
|
struct Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5;
|
|
struct Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A;
|
|
struct UnityAction_1_t9C30BCD020745BF400CBACF22C6F34ADBA2DDA6A;
|
|
struct ValueCollection_t90B6520646205F1ECA844E275A1AE6793CE223B5;
|
|
struct ValueCollection_tE7C2B0DB87C17D06D9CD8D1AB9865DFC70F6F48D;
|
|
struct ValueCollection_t0AC0A0A0651A3F911B7C030A105CAD4A5AB2B6D3;
|
|
struct ValueCollection_t90321B54F6D11C357E85380BFBFD9149343E975C;
|
|
struct ValueCollection_tAFE26B647B041426B4D79E25B28A7264C2B1D44E;
|
|
struct ValueCollection_tB586353AA671B283D22D7FC626A191F8483423BF;
|
|
struct ValueCollection_t47C2A3E814AF0F92184122F7E73C1B54C4D0B449;
|
|
struct bxe_1_t43C8AC168AE521CBBF9B1812DC6B6823209BB446;
|
|
struct bxg_1_tF4F798E91A34034A5BB20B353D0504D528150380;
|
|
struct byf_1_t99A0AD00347E895ECDD71483F7502B35A8FFE3CE;
|
|
struct bym_1_t2667C1B8339497A10739F998A69015B815A8FBDA;
|
|
struct byp_1_tB58FC741757F7F13418A8EBBB2B7B00834A9DB6C;
|
|
struct bzx_1_tD860EF6FBE4057B405CC33ABF4B9B27EA4C241E8;
|
|
struct bzx_1_t4D484EB6E5789BB8192E046C3FDB7E2664856C75;
|
|
struct bzx_1_tA2F73AE84DB462B2C1BB352D3E53255B822258F0;
|
|
struct bzx_1_tF28DD7ABB0A422DE920831FB35E155BDF2905A9B;
|
|
struct bzx_1_t01CAD84059E26921A56668D888A1952F0E346E84;
|
|
struct bzx_1_tF56837EEC40043218801469CF96854C4DA03507D;
|
|
struct bzx_1_tF5CB2EAA5615439F54BEE14538616017D16ECADE;
|
|
struct bzy_3_t69A7C4B8D2817E6515CAEA213B7FE352750F3509;
|
|
struct bzy_3_t1E1BEBD3FB315A4FA21CD0E62A92BDE5781FF686;
|
|
struct bzy_3_tDEF6B8481C81DD8E75C8CA42AC4A07AA003E2D95;
|
|
struct bzy_3_t9A9A4FBDE0863F917696ADC8C788FFB7667E7258;
|
|
struct bzy_3_t01187F1458C4DD0836F9F22F61EBA3D73AB44479;
|
|
struct bzy_3_t8C95E0FFA290A3576A39046636B63DB55A101AF8;
|
|
struct bzy_3_tD9B249170D3A1B921D3EF65E6F9E284BBAD0FA00;
|
|
struct bzy_3_tE18DFB7C8239FAB9D9F8C7CCCC15D422D500BC4B;
|
|
struct bzy_3_tC389978D981A35DE42CE123B5ECE75262286577D;
|
|
struct bzz_tCC9D58D0405F9E7396E18C3C85F9412EEB25A782;
|
|
struct bzz_t2343B694422D4F01BBE58CBBDFD0C9CFD13D0AEF;
|
|
struct ca_1_t69F2B6DD12EE2DCBE97A74A7AB8D9BBDB03E21A9;
|
|
struct ca_1_tA2B59207DE0BE10ECDFF308C653C2153E7BA2F95;
|
|
struct ca_1_t3E195005686123F77047B3ED8E26F89389108358;
|
|
struct cag_1_t13299DA714D17DC1CB7A3D2D03BFAA2956E3E9C5;
|
|
struct cag_1_t87A80CA24A67B3AC723841E86724121C4FA61C56;
|
|
struct cag_1_tF63C3AF916F5372C1BA3382D1B4BBE9CD3D8B6EC;
|
|
struct cag_1_t04895B40CA8F412729C80E76D0FBD06112A47A7D;
|
|
struct cag_1_t4408770DEE4DE1A9FBAF02CBBD5BD8EF8D6D710B;
|
|
struct cag_1_tA685EFB76CB7A860FD35351524B49EC1C5D5787F;
|
|
struct cag_1_t7955D8924F73171B3D7F04B030ECC01DABEAAEC7;
|
|
struct cap_1_t0DE2FBA65F8B89DBDCC8A8999240F8AF760D6908;
|
|
struct ctv_1_t6797CD74D570150D82C9A2244E79DE1F80514F93;
|
|
struct ctv_1_t520197966430B2540ECF7BB023FED9E0C525CE39;
|
|
struct ctv_1_t7F236C02AD9CB75CF11908268451E806428FE795;
|
|
struct ctv_1_t3459F0A1CC7E7013F17962A3A93AD4A6424DD922;
|
|
struct cud_1_t83FF7C1205FDBF0FE96EB597F5C8EED47D8CBB84;
|
|
struct cxn_tB1392D9A7E6B48F4C1CBEF0B36ED951124041CC0;
|
|
struct cxo_1_tEF016A0E938797C525FDD409DDC7F211C2056789;
|
|
struct cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47;
|
|
struct cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393;
|
|
struct cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7;
|
|
struct cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082;
|
|
struct cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C;
|
|
struct cyt_1_tAC49A9A02241EC5ED0F5205BDF7AE399C207BC04;
|
|
struct cyt_1_t8D44FE5690EE0881636F8CACF4B1781DB7253688;
|
|
struct cyt_1_tE46DA8E7A261663B67DB2F6E839FA69F43D02A30;
|
|
struct cyt_1_t195133DDC4F4198CCCCFD063FFB746780BBCE98F;
|
|
struct Action_1U5BU5D_t9AF7A60AA589F7071315F3DA2F77CD32CB43FB5D;
|
|
struct EntryU5BU5D_t7F35382C3332831102E891C7CA66540F8B838921;
|
|
struct EntryU5BU5D_t4B1F119355B0914C7D00C75B4419632F819C57B5;
|
|
struct EntryU5BU5D_t331085E92477B72C9A04993D4C2AE16F6B395B9E;
|
|
struct EntryU5BU5D_t29F51207C1381B958B5CDC1CCC6DA8266C78B4FE;
|
|
struct EntryU5BU5D_tC33F350D43EE2CBB3D8D46D5D6052980BCD0EB45;
|
|
struct EntryU5BU5D_t9B30B4E8F7682957EAA7085DBD8A468E114D7C7D;
|
|
struct EntryU5BU5D_tD9350D88003ED80AF7FB79EC0DB52EA5B5E5DFF5;
|
|
struct BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4;
|
|
struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
|
|
struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
|
|
struct Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259;
|
|
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
|
|
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
|
|
struct Int32EnumU5BU5D_t87B7DB802810C38016332669039EF42C487A081F;
|
|
struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832;
|
|
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
|
|
struct ObjectU5BU5D_tD4BF1BEC72A31DF6611C0B8FA3112AF128FC3F8A;
|
|
struct SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C;
|
|
struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF;
|
|
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
|
|
struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB;
|
|
struct Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA;
|
|
struct Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C;
|
|
struct __Il2CppFullySharedGenericStructTypeU5BU5D_tF3B929B6E80D0A8C109178E11CE8FF9957B014C1;
|
|
struct __Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC;
|
|
struct bbyU5BU5D_t39ACA42F18F4F8502A81146BB54C59234AB5E0A6;
|
|
struct dbwU5BU5D_t73AB35C2E20D28F7324F522254A7B4A117C41139;
|
|
struct Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07;
|
|
struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263;
|
|
struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129;
|
|
struct ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F;
|
|
struct AssetBundle_tB38418819A49060CD738CB21541649340F082943;
|
|
struct AssetBundleManifest_t85F250E5A0E0F954DA386C0CEF27BA7622A323A7;
|
|
struct AssetBundleRequest_tED9F5504E75ED1BCFF8DA9B51F5C7356617E6621;
|
|
struct AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C;
|
|
struct Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235;
|
|
struct CancellationTokenSource_tAAE1E0033BCFC233801F8CB4CED5C852B350CB7B;
|
|
struct Canvas_t2DB4CEFDFF732884866C83F11ABF75F5AE8FFB26;
|
|
struct Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3;
|
|
struct Coroutine_t85EA685566A254C23F3FD77AB5BDFFFF8799596B;
|
|
struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E;
|
|
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2;
|
|
struct FXManager_t121CBC90514365E0FF3D7A1BB2E8E28F805C703C;
|
|
struct GameObject_t76FEDD663AB33C991A9C9A23129337651094216F;
|
|
struct IAsyncResult_t7B9B5A0ECB35DCEC31B8A8122C37D687369253B5;
|
|
struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220;
|
|
struct IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA;
|
|
struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB;
|
|
struct Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3;
|
|
struct MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553;
|
|
struct MethodInfo_t;
|
|
struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A;
|
|
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C;
|
|
struct ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB;
|
|
struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6;
|
|
struct Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99;
|
|
struct String_t;
|
|
struct Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4;
|
|
struct Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1;
|
|
struct Tweener_tD38633F1A42EDF47A73CE3BF1894D946E830E140;
|
|
struct Type_t;
|
|
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
|
|
struct bab_t45049404C2911ACDC4F55E7167D5AB9E4D64BC0E;
|
|
struct bbv_t89D26344F4170EFF0F1F9C4A312D4BE6BC03C3CE;
|
|
struct bcq_t5702A62DE12536217F8A85320DBDD15BED5468B8;
|
|
struct bcr_t911DB75F191BCD94C91C22064CEDB2832F2FD805;
|
|
struct bdc_tD1850B3904FFD3ECF4A1DE608CCDCE8D68166F6C;
|
|
struct bdq_tA672007D7CCFFB7F05017FD495BA644410D8B925;
|
|
struct bdu_t0094235EDDB187B11D4C801F455C483B39451845;
|
|
struct bdy_tA6F9883376F53F5BC4573AD2F6E485F2334DC2CB;
|
|
struct bww_t3093EA72A75FCD36B1F85E89073F838317B01BEF;
|
|
struct bxf_tF0EC3D2849529B5B131A64D9C49D38059B122A53;
|
|
struct bys_tB5A77FB3B9BFF0674CB0A35A11C2840B5D838782;
|
|
struct czh_tE8F1A87C5388086F23589583A37E369F2950CBC9;
|
|
struct wd_t11DD7200C1BF658023F82A8697EABF53B029A436;
|
|
struct wg_t7CFF9CE7F816A6AA614B64D7E254ED1117E89A47;
|
|
struct wj_t5F4B191138DD4E91C1888EF23759495DECFB8E15;
|
|
struct xo_tC8E6F3D689C8B3BD1D701FCDE0AD135EA22472C7;
|
|
struct xt_t11FAD72BB3709190FFCCB4E57F88CBAD6F138C96;
|
|
struct ze_t9FEC90C29686117FA72153B0777ECE9B4E4B0E8F;
|
|
struct zg_t45FD63CA99D75A98CDC5FA178F9332BC8E05C213;
|
|
struct zj_t57080C6718B89C27110311B9EDD21D862DFB082D;
|
|
struct we_t0A281736FA21E3D26438E2BE450BC8917F64A433;
|
|
struct xm_tD2CA4B5E6FDBD3F45204CAD7C8FED67648BCBCC5;
|
|
|
|
IL2CPP_EXTERN_C RuntimeClass* ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* GameObject_t76FEDD663AB33C991A9C9A23129337651094216F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_t9A2E2984B23260AECDFA90CEB1F2887075FA4DF3_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* bzd_tE92DA8737F81398F3B4190D995609276EA2F6003_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral07624473F417C06C74D59C64840A1532FCE2C626;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral0EBE26183B9E5BF28E32247130C32FFD868B5565;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral14E4A1F492301946015F0A6B1C40296CE46A4251;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral158BA1ED10A53D1BA59A2C5D9C58736662B34750;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral1642ECFAAA58BD2A8964E875DA1ABE2E99D2DE9B;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral1E924365FC1E94C4C209B1C179563C22941C3835;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral237DA396E8FE2D1C94C98875D84C7D661FF86FB6;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral253F379CE43832F182E0F1922F84B2F9D7990EAE;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral2D65EE85CADB9008DEE48BCD5A9E95E54D15F3FF;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral30B98916AF7031E9D83FB88E885E523F6A280F64;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral332BBECD906D16D8DBF8E7EB9136708162DD15B1;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral42D48467A5973EC464AB24EB0FCB81BA90632807;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral469F05BE9BB4C7903C353D0EB9F6384C84A48B25;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral57462D5D876383291750F779D30A75A0AD5ED4AE;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral64CB62BF3E80D24D2053DE8443A0D7D7208F6753;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral690BF02630AC0BD6AA6BD08D2C36A28E1FC54F3E;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral80D5047D3FCA7A6E585FC0049DEB05F0F4ACC7BB;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral8323D44D38CA9D8ED487159B21F762B262510EE5;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral939E321B3BC3283885C39B094F4D1D4D7394394E;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral9BAEE8262C16DE81112FD83C0BCDF8B9B7492766;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralA848554640653333DD581E4A5B06E7985A3D75B6;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralBD273909002FE152BDDC791F9F6DD69114AAFEB1;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralC37D78082ACFC8DEE7B32D9351C6E433A074FEC7;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralD6FA4ED6AC130CA41FADB0612CD51C6BDF4F3D62;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralDD6EC7CDABBEAF581BC4D8C67AFA4D84421A7C76;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralE2EEFB4BE0C9F57BA62E733F26387F8BA68AF67C;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralEC97BB83DEFADDF866FC5F52CAC696C8CBA94929;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF30F85E4B9304912E404666CAD45979D3833BFAE;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF9010398F7F524C05AB19445BDCE02E617A3E267;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* AssetBundle_LoadAsset_TisTexture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4_mBBDD2C33F8D21622F7611AC9E5404B3755EF16F6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_mAEB2333688211862F3BF025DED14A07DF2AB6862_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m3056C0403652CA8364963A1CDE5D5EACF19CB5B8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m0CEFF9A8B2B0E57C5DDBA1134553DEBC37719CED_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m60F1F5D817C83DDC11235FD5524B8667F4C314F9_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_m51249A9DD3B29478801AC004DEA026A63D4A6D9B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mA6D8F51281EF3C4183058B42C1930E0E885543EF_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m1B0135DE2C4A4BCA4820D2FC9E060ED224FC24C0_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99_0_0_0_var;
|
|
struct Delegate_t_marshaled_com;
|
|
struct Delegate_t_marshaled_pinvoke;
|
|
struct Exception_t_marshaled_com;
|
|
struct Exception_t_marshaled_pinvoke;
|
|
|
|
struct BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4;
|
|
struct Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259;
|
|
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
|
|
struct Int32EnumU5BU5D_t87B7DB802810C38016332669039EF42C487A081F;
|
|
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
|
|
struct SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C;
|
|
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
|
|
struct Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA;
|
|
struct Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C;
|
|
struct __Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC;
|
|
struct dbwU5BU5D_t73AB35C2E20D28F7324F522254A7B4A117C41139;
|
|
|
|
IL2CPP_EXTERN_C_BEGIN
|
|
IL2CPP_EXTERN_C_END
|
|
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
struct Comparer_1_t075B18A0921F760D040E0D8BFE6637CE0E1587E4 : public RuntimeObject
|
|
{
|
|
};
|
|
struct Comparer_1_t2158F98C5484AAD9CDBEC169B93B8E28C528F647 : public RuntimeObject
|
|
{
|
|
};
|
|
struct Comparer_1_t2FF14F26F4D678A8FA199B888FF61A2A9D1D2D80 : public RuntimeObject
|
|
{
|
|
};
|
|
struct Comparer_1_t0A03F9FBBEA32FB1528366652D3D38513E8B1137 : public RuntimeObject
|
|
{
|
|
};
|
|
struct Comparer_1_tE191E68CB394DD255CCA7A56F4D1DEFED0BD3FDB : public RuntimeObject
|
|
{
|
|
};
|
|
struct Dictionary_2_t61D2A8EA7B89354F704065B5DF8061AED7234EEA : public RuntimeObject
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets;
|
|
EntryU5BU5D_t7F35382C3332831102E891C7CA66540F8B838921* ____entries;
|
|
int32_t ____count;
|
|
int32_t ____freeList;
|
|
int32_t ____freeCount;
|
|
int32_t ____version;
|
|
RuntimeObject* ____comparer;
|
|
KeyCollection_tCBDFAA4F8CDED9B820F836B3FE441E57A4084D7A* ____keys;
|
|
ValueCollection_t90B6520646205F1ECA844E275A1AE6793CE223B5* ____values;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct Dictionary_2_t6E25435979095FF8317CE46D91CB6A310AFE529A : public RuntimeObject
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets;
|
|
EntryU5BU5D_t4B1F119355B0914C7D00C75B4419632F819C57B5* ____entries;
|
|
int32_t ____count;
|
|
int32_t ____freeList;
|
|
int32_t ____freeCount;
|
|
int32_t ____version;
|
|
RuntimeObject* ____comparer;
|
|
KeyCollection_tFADDDF2D6C0A01DF12806A28A6F01ADE03552B53* ____keys;
|
|
ValueCollection_tE7C2B0DB87C17D06D9CD8D1AB9865DFC70F6F48D* ____values;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3 : public RuntimeObject
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets;
|
|
EntryU5BU5D_t331085E92477B72C9A04993D4C2AE16F6B395B9E* ____entries;
|
|
int32_t ____count;
|
|
int32_t ____freeList;
|
|
int32_t ____freeCount;
|
|
int32_t ____version;
|
|
RuntimeObject* ____comparer;
|
|
KeyCollection_t01334E642CE39D9E86B44FE220A959287F2F0074* ____keys;
|
|
ValueCollection_t0AC0A0A0651A3F911B7C030A105CAD4A5AB2B6D3* ____values;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D : public RuntimeObject
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets;
|
|
EntryU5BU5D_t29F51207C1381B958B5CDC1CCC6DA8266C78B4FE* ____entries;
|
|
int32_t ____count;
|
|
int32_t ____freeList;
|
|
int32_t ____freeCount;
|
|
int32_t ____version;
|
|
RuntimeObject* ____comparer;
|
|
KeyCollection_tC35CFC19873303CD0018890640F74AB4C190928F* ____keys;
|
|
ValueCollection_t90321B54F6D11C357E85380BFBFD9149343E975C* ____values;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct Dictionary_2_tC791A5AC3BD371367696A57CAD347C5CE3415A76 : public RuntimeObject
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets;
|
|
EntryU5BU5D_tC33F350D43EE2CBB3D8D46D5D6052980BCD0EB45* ____entries;
|
|
int32_t ____count;
|
|
int32_t ____freeList;
|
|
int32_t ____freeCount;
|
|
int32_t ____version;
|
|
RuntimeObject* ____comparer;
|
|
KeyCollection_t72E81BA2C373FBDAAF08F4457A2795408D36D165* ____keys;
|
|
ValueCollection_tAFE26B647B041426B4D79E25B28A7264C2B1D44E* ____values;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct Dictionary_2_tE40F16D27D28D881AE13B622B8CAC08E500FD3DB : public RuntimeObject
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets;
|
|
EntryU5BU5D_t9B30B4E8F7682957EAA7085DBD8A468E114D7C7D* ____entries;
|
|
int32_t ____count;
|
|
int32_t ____freeList;
|
|
int32_t ____freeCount;
|
|
int32_t ____version;
|
|
RuntimeObject* ____comparer;
|
|
KeyCollection_t1FEEAB3E4BED49A7DF838C0B60A3581A2A92E5BC* ____keys;
|
|
ValueCollection_tB586353AA671B283D22D7FC626A191F8483423BF* ____values;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED : public RuntimeObject
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets;
|
|
EntryU5BU5D_tD9350D88003ED80AF7FB79EC0DB52EA5B5E5DFF5* ____entries;
|
|
int32_t ____count;
|
|
int32_t ____freeList;
|
|
int32_t ____freeCount;
|
|
int32_t ____version;
|
|
RuntimeObject* ____comparer;
|
|
KeyCollection_tF80B2DD3B1123EE674B240EA8C7ADFCC09F19B41* ____keys;
|
|
ValueCollection_t47C2A3E814AF0F92184122F7E73C1B54C4D0B449* ____values;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0 : public RuntimeObject
|
|
{
|
|
Action_1U5BU5D_t9AF7A60AA589F7071315F3DA2F77CD32CB43FB5D* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576 : public RuntimeObject
|
|
{
|
|
Int32EnumU5BU5D_t87B7DB802810C38016332669039EF42C487A081F* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D : public RuntimeObject
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_t9A2E2984B23260AECDFA90CEB1F2887075FA4DF3 : public RuntimeObject
|
|
{
|
|
ObjectU5BU5D_tD4BF1BEC72A31DF6611C0B8FA3112AF128FC3F8A* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_tE5211AFE92BF26309D7C5814A29544E9EF496FE4 : public RuntimeObject
|
|
{
|
|
__Il2CppFullySharedGenericStructTypeU5BU5D_tF3B929B6E80D0A8C109178E11CE8FF9957B014C1* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A : public RuntimeObject
|
|
{
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5 : public RuntimeObject
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____array;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A : public RuntimeObject
|
|
{
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* ____array;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct bxe_1_t43C8AC168AE521CBBF9B1812DC6B6823209BB446 : public RuntimeObject
|
|
{
|
|
bool ___isRecord;
|
|
bxf_tF0EC3D2849529B5B131A64D9C49D38059B122A53* ___U3CU3E4__this;
|
|
String_t* ___assetUrl;
|
|
UnityAction_1_t9C30BCD020745BF400CBACF22C6F34ADBA2DDA6A* ___onCompleted;
|
|
};
|
|
struct byf_1_t99A0AD00347E895ECDD71483F7502B35A8FFE3CE : public RuntimeObject
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___assetNameArray;
|
|
};
|
|
struct bym_1_t2667C1B8339497A10739F998A69015B815A8FBDA : public RuntimeObject
|
|
{
|
|
String_t* ___assetBundleName;
|
|
bys_tB5A77FB3B9BFF0674CB0A35A11C2840B5D838782* ___U3CU3E4__this;
|
|
String_t* ___assetName;
|
|
UnityAction_1_t9C30BCD020745BF400CBACF22C6F34ADBA2DDA6A* ___onCompleted;
|
|
};
|
|
struct byp_1_tB58FC741757F7F13418A8EBBB2B7B00834A9DB6C : public RuntimeObject
|
|
{
|
|
int32_t ___lwl;
|
|
RuntimeObject* ___lwm;
|
|
AssetBundle_tB38418819A49060CD738CB21541649340F082943* ___assetBundle;
|
|
String_t* ___assetName;
|
|
UnityAction_1_t9C30BCD020745BF400CBACF22C6F34ADBA2DDA6A* ___onLoadCompleted;
|
|
AssetBundleRequest_tED9F5504E75ED1BCFF8DA9B51F5C7356617E6621* ___lwn;
|
|
AssetBundleRequest_tED9F5504E75ED1BCFF8DA9B51F5C7356617E6621* ___lwo;
|
|
};
|
|
struct bzx_1_tD860EF6FBE4057B405CC33ABF4B9B27EA4C241E8 : public RuntimeObject
|
|
{
|
|
bool ___oldValue;
|
|
bool ___newValue;
|
|
};
|
|
struct bzx_1_tA2F73AE84DB462B2C1BB352D3E53255B822258F0 : public RuntimeObject
|
|
{
|
|
int32_t ___oldValue;
|
|
int32_t ___newValue;
|
|
};
|
|
struct bzx_1_tF28DD7ABB0A422DE920831FB35E155BDF2905A9B : public RuntimeObject
|
|
{
|
|
int64_t ___oldValue;
|
|
int64_t ___newValue;
|
|
};
|
|
struct bzx_1_t01CAD84059E26921A56668D888A1952F0E346E84 : public RuntimeObject
|
|
{
|
|
RuntimeObject* ___oldValue;
|
|
RuntimeObject* ___newValue;
|
|
};
|
|
struct bzx_1_tF56837EEC40043218801469CF96854C4DA03507D : public RuntimeObject
|
|
{
|
|
float ___oldValue;
|
|
float ___newValue;
|
|
};
|
|
struct bzx_1_tF5CB2EAA5615439F54BEE14538616017D16ECADE : public RuntimeObject {};
|
|
struct bzy_3_t69A7C4B8D2817E6515CAEA213B7FE352750F3509 : public RuntimeObject
|
|
{
|
|
Dictionary_2_t157C2697A6AD99064F09581B21C222B37F59115C* ___lxu;
|
|
Dictionary_2_t157C2697A6AD99064F09581B21C222B37F59115C* ___lxv;
|
|
Dictionary_2_t157C2697A6AD99064F09581B21C222B37F59115C* ___lxw;
|
|
Dictionary_2_t157C2697A6AD99064F09581B21C222B37F59115C* ___lxx;
|
|
};
|
|
struct bzy_3_t1E1BEBD3FB315A4FA21CD0E62A92BDE5781FF686 : public RuntimeObject
|
|
{
|
|
Dictionary_2_tDB0826AE77C8FD34F75C0724B10DECDEA7E2CF75* ___lxu;
|
|
Dictionary_2_tDB0826AE77C8FD34F75C0724B10DECDEA7E2CF75* ___lxv;
|
|
Dictionary_2_tDB0826AE77C8FD34F75C0724B10DECDEA7E2CF75* ___lxw;
|
|
Dictionary_2_tDB0826AE77C8FD34F75C0724B10DECDEA7E2CF75* ___lxx;
|
|
};
|
|
struct bzy_3_tDEF6B8481C81DD8E75C8CA42AC4A07AA003E2D95 : public RuntimeObject
|
|
{
|
|
Dictionary_2_t949E92E5F484161666AAC9B5A9F002EFFF7559FB* ___lxu;
|
|
Dictionary_2_t949E92E5F484161666AAC9B5A9F002EFFF7559FB* ___lxv;
|
|
Dictionary_2_t949E92E5F484161666AAC9B5A9F002EFFF7559FB* ___lxw;
|
|
Dictionary_2_t949E92E5F484161666AAC9B5A9F002EFFF7559FB* ___lxx;
|
|
};
|
|
struct bzy_3_t9A9A4FBDE0863F917696ADC8C788FFB7667E7258 : public RuntimeObject
|
|
{
|
|
Dictionary_2_t061C32F21554B6B417C50DCB81993AABC5E0D806* ___lxu;
|
|
Dictionary_2_t061C32F21554B6B417C50DCB81993AABC5E0D806* ___lxv;
|
|
Dictionary_2_t061C32F21554B6B417C50DCB81993AABC5E0D806* ___lxw;
|
|
Dictionary_2_t061C32F21554B6B417C50DCB81993AABC5E0D806* ___lxx;
|
|
};
|
|
struct bzy_3_t01187F1458C4DD0836F9F22F61EBA3D73AB44479 : public RuntimeObject
|
|
{
|
|
Dictionary_2_tF93D1EFD7E9D05B308B0D2F125299F32C890883E* ___lxu;
|
|
Dictionary_2_tF93D1EFD7E9D05B308B0D2F125299F32C890883E* ___lxv;
|
|
Dictionary_2_tF93D1EFD7E9D05B308B0D2F125299F32C890883E* ___lxw;
|
|
Dictionary_2_tF93D1EFD7E9D05B308B0D2F125299F32C890883E* ___lxx;
|
|
};
|
|
struct bzy_3_t8C95E0FFA290A3576A39046636B63DB55A101AF8 : public RuntimeObject
|
|
{
|
|
Dictionary_2_t0CA1A9528F28B6F1437931FE834472C6E9F31DB5* ___lxu;
|
|
Dictionary_2_t0CA1A9528F28B6F1437931FE834472C6E9F31DB5* ___lxv;
|
|
Dictionary_2_t0CA1A9528F28B6F1437931FE834472C6E9F31DB5* ___lxw;
|
|
Dictionary_2_t0CA1A9528F28B6F1437931FE834472C6E9F31DB5* ___lxx;
|
|
};
|
|
struct bzy_3_t1B56DC560AD4BA180F9C6D73A942A6CD15DD925F : public RuntimeObject
|
|
{
|
|
Dictionary_2_t183D231AEA770BF0CBA2B9DCC8826360A2D5BB16* ___lxu;
|
|
Dictionary_2_t183D231AEA770BF0CBA2B9DCC8826360A2D5BB16* ___lxv;
|
|
Dictionary_2_t183D231AEA770BF0CBA2B9DCC8826360A2D5BB16* ___lxw;
|
|
Dictionary_2_t183D231AEA770BF0CBA2B9DCC8826360A2D5BB16* ___lxx;
|
|
};
|
|
struct bzy_3_tD9B249170D3A1B921D3EF65E6F9E284BBAD0FA00 : public RuntimeObject
|
|
{
|
|
Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3* ___lxu;
|
|
Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3* ___lxv;
|
|
Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3* ___lxw;
|
|
Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3* ___lxx;
|
|
};
|
|
struct bzy_3_tE18DFB7C8239FAB9D9F8C7CCCC15D422D500BC4B : public RuntimeObject
|
|
{
|
|
Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D* ___lxu;
|
|
Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D* ___lxv;
|
|
Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D* ___lxw;
|
|
Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D* ___lxx;
|
|
};
|
|
struct bzy_3_tC389978D981A35DE42CE123B5ECE75262286577D : public RuntimeObject
|
|
{
|
|
Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED* ___lxu;
|
|
Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED* ___lxv;
|
|
Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED* ___lxw;
|
|
Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED* ___lxx;
|
|
};
|
|
struct bzz_tCC9D58D0405F9E7396E18C3C85F9412EEB25A782 : public RuntimeObject
|
|
{
|
|
uint32_t ___currMsgId;
|
|
RuntimeObject* ___currParam;
|
|
};
|
|
struct bzz_t2343B694422D4F01BBE58CBBDFD0C9CFD13D0AEF : public RuntimeObject {};
|
|
struct ca_1_t69F2B6DD12EE2DCBE97A74A7AB8D9BBDB03E21A9 : public RuntimeObject
|
|
{
|
|
Dictionary_2_t61D2A8EA7B89354F704065B5DF8061AED7234EEA* ___jpi;
|
|
Dictionary_2_t6E25435979095FF8317CE46D91CB6A310AFE529A* ___jpj;
|
|
List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* ___jpk;
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* ___jpl;
|
|
Func_2_tEDC4153392317FD0D86C48FCECA452C97AF11065* ___NewObjFunc;
|
|
Action_2_t9C463C2F47C41EF4ECC1B672CE6FB7D020F0E658* ___RecObjFunc;
|
|
Action_2_t9C463C2F47C41EF4ECC1B672CE6FB7D020F0E658* ___GetObjFunc;
|
|
};
|
|
struct ca_1_tA2B59207DE0BE10ECDFF308C653C2153E7BA2F95 : public RuntimeObject
|
|
{
|
|
Dictionary_2_tC791A5AC3BD371367696A57CAD347C5CE3415A76* ___jpi;
|
|
Dictionary_2_tE40F16D27D28D881AE13B622B8CAC08E500FD3DB* ___jpj;
|
|
List_1_tE5211AFE92BF26309D7C5814A29544E9EF496FE4* ___jpk;
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* ___jpl;
|
|
Func_2_t7E802ADCC4E23D0978426643B6CC09161D2607EC* ___NewObjFunc;
|
|
Action_2_tC12DCAB4262F42CA0963501648E8EFBB3BD2C6B9* ___RecObjFunc;
|
|
Action_2_tC12DCAB4262F42CA0963501648E8EFBB3BD2C6B9* ___GetObjFunc;
|
|
};
|
|
struct cap_1_t0DE2FBA65F8B89DBDCC8A8999240F8AF760D6908 : public RuntimeObject
|
|
{
|
|
bool ___U3ClykU3Ek__BackingField;
|
|
bool ___U3ClylU3Ek__BackingField;
|
|
bool ___U3ClymU3Ek__BackingField;
|
|
};
|
|
struct ctu_1_t37DB1B6798FE17C70E0BC9D80BE4B31AA281AF87 : public RuntimeObject
|
|
{
|
|
};
|
|
struct ctu_1_t5FA6E763AEFCD47D758A94F36E2A52892CB4C8A3 : public RuntimeObject
|
|
{
|
|
};
|
|
struct ctv_1_t6797CD74D570150D82C9A2244E79DE1F80514F93 : public RuntimeObject
|
|
{
|
|
Stack_1_t08E9B72954DC89AD9AC1DCAFDC7EFFDB16799DDF* ___nqf;
|
|
Action_1_t90425964BF9D6282116C192CAA76B05EB0EEF123* ___nqg;
|
|
Action_1_t90425964BF9D6282116C192CAA76B05EB0EEF123* ___nqh;
|
|
Action_1_t90425964BF9D6282116C192CAA76B05EB0EEF123* ___nqi;
|
|
int32_t ___U3CnqjU3Ek__BackingField;
|
|
};
|
|
struct ctv_1_t520197966430B2540ECF7BB023FED9E0C525CE39 : public RuntimeObject
|
|
{
|
|
Stack_1_tA64CACBCB3F0BEBD7D78014706D4080E7C6B0376* ___nqf;
|
|
Action_1_t97FCE20F22566CA230EFB470FC80FEA708AA1231* ___nqg;
|
|
Action_1_t97FCE20F22566CA230EFB470FC80FEA708AA1231* ___nqh;
|
|
Action_1_t97FCE20F22566CA230EFB470FC80FEA708AA1231* ___nqi;
|
|
int32_t ___U3CnqjU3Ek__BackingField;
|
|
};
|
|
struct ctv_1_t7F236C02AD9CB75CF11908268451E806428FE795 : public RuntimeObject
|
|
{
|
|
Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* ___nqf;
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* ___nqg;
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* ___nqh;
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* ___nqi;
|
|
int32_t ___U3CnqjU3Ek__BackingField;
|
|
};
|
|
struct ctv_1_t3459F0A1CC7E7013F17962A3A93AD4A6424DD922 : public RuntimeObject
|
|
{
|
|
Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A* ___nqf;
|
|
Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99* ___nqg;
|
|
Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99* ___nqh;
|
|
Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99* ___nqi;
|
|
int32_t ___U3CnqjU3Ek__BackingField;
|
|
};
|
|
struct cud_1_t83FF7C1205FDBF0FE96EB597F5C8EED47D8CBB84 : public RuntimeObject
|
|
{
|
|
};
|
|
struct cud_1_t12D2D053DD29977885F9308317C9755C2DE27EB3 : public RuntimeObject
|
|
{
|
|
};
|
|
struct cud_1_tC4F1EAEE572DB10F3F679AA6DC9212CB87161219 : public RuntimeObject
|
|
{
|
|
};
|
|
struct cxo_1_tEF016A0E938797C525FDD409DDC7F211C2056789 : public RuntimeObject
|
|
{
|
|
int32_t ___max;
|
|
Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* ___oac;
|
|
int32_t ___U3CoadU3Ek__BackingField;
|
|
};
|
|
struct cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47 : public RuntimeObject
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___Items;
|
|
int32_t ___Count;
|
|
int32_t ___version;
|
|
};
|
|
struct cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393 : public RuntimeObject
|
|
{
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* ___Items;
|
|
int32_t ___Count;
|
|
int32_t ___version;
|
|
};
|
|
struct cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7 : public RuntimeObject
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___Items;
|
|
int32_t ___Count;
|
|
int32_t ___version;
|
|
};
|
|
struct cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082 : public RuntimeObject
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___Items;
|
|
int32_t ___Count;
|
|
int32_t ___version;
|
|
};
|
|
struct cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C : public RuntimeObject
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___Items;
|
|
int32_t ___Count;
|
|
int32_t ___version;
|
|
};
|
|
struct cyt_1_tAC49A9A02241EC5ED0F5205BDF7AE399C207BC04 : public RuntimeObject
|
|
{
|
|
Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA* ___Items;
|
|
int32_t ___Count;
|
|
int32_t ___version;
|
|
};
|
|
struct cyt_1_t8D44FE5690EE0881636F8CACF4B1781DB7253688 : public RuntimeObject
|
|
{
|
|
Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C* ___Items;
|
|
int32_t ___Count;
|
|
int32_t ___version;
|
|
};
|
|
struct cyt_1_tE46DA8E7A261663B67DB2F6E839FA69F43D02A30 : public RuntimeObject
|
|
{
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* ___Items;
|
|
int32_t ___Count;
|
|
int32_t ___version;
|
|
};
|
|
struct cyt_1_t195133DDC4F4198CCCCFD063FFB746780BBCE98F : public RuntimeObject
|
|
{
|
|
dbwU5BU5D_t73AB35C2E20D28F7324F522254A7B4A117C41139* ___Items;
|
|
int32_t ___Count;
|
|
int32_t ___version;
|
|
};
|
|
struct MemberInfo_t : public RuntimeObject
|
|
{
|
|
};
|
|
struct String_t : public RuntimeObject
|
|
{
|
|
int32_t ____stringLength;
|
|
Il2CppChar ____firstChar;
|
|
};
|
|
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
|
|
{
|
|
};
|
|
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
|
|
{
|
|
};
|
|
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
|
|
{
|
|
};
|
|
struct YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D : public RuntimeObject
|
|
{
|
|
};
|
|
struct YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D_marshaled_pinvoke
|
|
{
|
|
};
|
|
struct YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D_marshaled_com
|
|
{
|
|
};
|
|
struct zd_t99782D6683DBD0C03B19269A4EF3BF06F753DA23 : public RuntimeObject
|
|
{
|
|
Dictionary_2_tD54874457561403EF9ECC22AEFBF037C1C90CEA9* ___krn;
|
|
};
|
|
struct Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A
|
|
{
|
|
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ____list;
|
|
int32_t ____index;
|
|
int32_t ____version;
|
|
RuntimeObject* ____current;
|
|
};
|
|
struct Enumerator_tE4F8BFD8BC4B29A1F907A500BE1A39F6AEECF80E
|
|
{
|
|
List_1_t9A2E2984B23260AECDFA90CEB1F2887075FA4DF3* ____list;
|
|
int32_t ____index;
|
|
int32_t ____version;
|
|
Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ____current;
|
|
};
|
|
typedef Il2CppFullySharedGenericStruct Enumerator_t81B429DC3FEA3983A4D1E6E07804925CB576CD3B;
|
|
typedef Il2CppFullySharedGenericStruct KeyValuePair_2_t06C4C4F1E9511A11AC5CAA355D5F3FD0E45663E2;
|
|
struct cag_1_t13299DA714D17DC1CB7A3D2D03BFAA2956E3E9C5 : public bzy_3_t69A7C4B8D2817E6515CAEA213B7FE352750F3509
|
|
{
|
|
bzx_1_tD860EF6FBE4057B405CC33ABF4B9B27EA4C241E8* ___changeValue;
|
|
};
|
|
struct cag_1_t87A80CA24A67B3AC723841E86724121C4FA61C56 : public bzy_3_t1E1BEBD3FB315A4FA21CD0E62A92BDE5781FF686
|
|
{
|
|
bzx_1_t4D484EB6E5789BB8192E046C3FDB7E2664856C75* ___changeValue;
|
|
};
|
|
struct cag_1_tF63C3AF916F5372C1BA3382D1B4BBE9CD3D8B6EC : public bzy_3_tDEF6B8481C81DD8E75C8CA42AC4A07AA003E2D95
|
|
{
|
|
bzx_1_tA2F73AE84DB462B2C1BB352D3E53255B822258F0* ___changeValue;
|
|
};
|
|
struct cag_1_t04895B40CA8F412729C80E76D0FBD06112A47A7D : public bzy_3_t9A9A4FBDE0863F917696ADC8C788FFB7667E7258
|
|
{
|
|
bzx_1_tF28DD7ABB0A422DE920831FB35E155BDF2905A9B* ___changeValue;
|
|
};
|
|
struct cag_1_t4408770DEE4DE1A9FBAF02CBBD5BD8EF8D6D710B : public bzy_3_t01187F1458C4DD0836F9F22F61EBA3D73AB44479
|
|
{
|
|
bzx_1_t01CAD84059E26921A56668D888A1952F0E346E84* ___changeValue;
|
|
};
|
|
struct cag_1_tA685EFB76CB7A860FD35351524B49EC1C5D5787F : public bzy_3_t8C95E0FFA290A3576A39046636B63DB55A101AF8
|
|
{
|
|
bzx_1_tF56837EEC40043218801469CF96854C4DA03507D* ___changeValue;
|
|
};
|
|
struct cag_1_t7955D8924F73171B3D7F04B030ECC01DABEAAEC7 : public bzy_3_t1B56DC560AD4BA180F9C6D73A942A6CD15DD925F
|
|
{
|
|
bzx_1_tF5CB2EAA5615439F54BEE14538616017D16ECADE* ___changeValue;
|
|
};
|
|
struct cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5
|
|
{
|
|
cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* ___ofb;
|
|
int32_t ___next;
|
|
int32_t ___ofc;
|
|
bool ___current;
|
|
};
|
|
struct cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065
|
|
{
|
|
cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* ___ofb;
|
|
int32_t ___next;
|
|
int32_t ___ofc;
|
|
int32_t ___current;
|
|
};
|
|
struct cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857
|
|
{
|
|
cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* ___ofb;
|
|
int32_t ___next;
|
|
int32_t ___ofc;
|
|
RuntimeObject* ___current;
|
|
};
|
|
struct cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A
|
|
{
|
|
cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* ___ofb;
|
|
int32_t ___next;
|
|
int32_t ___ofc;
|
|
float ___current;
|
|
};
|
|
typedef Il2CppFullySharedGenericStruct cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6;
|
|
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22
|
|
{
|
|
bool ___m_value;
|
|
};
|
|
struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17
|
|
{
|
|
Il2CppChar ___m_value;
|
|
};
|
|
struct Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
int32_t ___rgba;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
int32_t ___rgba_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
uint8_t ___r;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
uint8_t ___r_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___g_OffsetPadding[1];
|
|
uint8_t ___g;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___g_OffsetPadding_forAlignmentOnly[1];
|
|
uint8_t ___g_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___b_OffsetPadding[2];
|
|
uint8_t ___b;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___b_OffsetPadding_forAlignmentOnly[2];
|
|
uint8_t ___b_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___a_OffsetPadding[3];
|
|
uint8_t ___a;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___a_OffsetPadding_forAlignmentOnly[3];
|
|
uint8_t ___a_forAlignmentOnly;
|
|
};
|
|
};
|
|
};
|
|
struct Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
int32_t ___flags;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
int32_t ___flags_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___hi_OffsetPadding[4];
|
|
int32_t ___hi;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___hi_OffsetPadding_forAlignmentOnly[4];
|
|
int32_t ___hi_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___lo_OffsetPadding[8];
|
|
int32_t ___lo;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___lo_OffsetPadding_forAlignmentOnly[8];
|
|
int32_t ___lo_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___mid_OffsetPadding[12];
|
|
int32_t ___mid;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___mid_OffsetPadding_forAlignmentOnly[12];
|
|
int32_t ___mid_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___ulomidLE_OffsetPadding[8];
|
|
uint64_t ___ulomidLE;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___ulomidLE_OffsetPadding_forAlignmentOnly[8];
|
|
uint64_t ___ulomidLE_forAlignmentOnly;
|
|
};
|
|
};
|
|
};
|
|
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2 : public ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F
|
|
{
|
|
};
|
|
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_pinvoke
|
|
{
|
|
};
|
|
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_com
|
|
{
|
|
};
|
|
struct Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C
|
|
{
|
|
int32_t ___m_value;
|
|
};
|
|
struct Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3
|
|
{
|
|
int64_t ___m_value;
|
|
};
|
|
struct IntPtr_t
|
|
{
|
|
void* ___m_value;
|
|
};
|
|
struct Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D
|
|
{
|
|
float ___m_XMin;
|
|
float ___m_YMin;
|
|
float ___m_Width;
|
|
float ___m_Height;
|
|
};
|
|
struct Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C
|
|
{
|
|
float ___m_value;
|
|
};
|
|
struct UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B
|
|
{
|
|
uint32_t ___m_value;
|
|
};
|
|
struct Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7
|
|
{
|
|
float ___x;
|
|
float ___y;
|
|
};
|
|
struct Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2
|
|
{
|
|
float ___x;
|
|
float ___y;
|
|
float ___z;
|
|
};
|
|
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
|
|
};
|
|
};
|
|
struct bxf_tF0EC3D2849529B5B131A64D9C49D38059B122A53 : public cud_1_t12D2D053DD29977885F9308317C9755C2DE27EB3
|
|
{
|
|
Dictionary_2_t618A3BAB378CEC11C45065943EEF232D6D56CEBB* ___ltb;
|
|
Dictionary_2_t618A3BAB378CEC11C45065943EEF232D6D56CEBB* ___ltc;
|
|
Dictionary_2_t618A3BAB378CEC11C45065943EEF232D6D56CEBB* ___ltd;
|
|
RuntimeObject* ___U3ClteU3Ek__BackingField;
|
|
};
|
|
struct bys_tB5A77FB3B9BFF0674CB0A35A11C2840B5D838782 : public cud_1_tC4F1EAEE572DB10F3F679AA6DC9212CB87161219
|
|
{
|
|
String_t* ___lwx;
|
|
};
|
|
struct dbw_tEF892A66F1417E423BAA34A1EE22306A5B496ABE
|
|
{
|
|
czh_tE8F1A87C5388086F23589583A37E369F2950CBC9* ___skeleton;
|
|
int32_t ___startSlot;
|
|
int32_t ___endSlot;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___material;
|
|
bool ___forceSeparate;
|
|
int32_t ___preActiveClippingSlotSource;
|
|
int32_t ___rawTriangleCount;
|
|
int32_t ___rawVertexCount;
|
|
int32_t ___rawFirstVertexIndex;
|
|
bool ___hasClipping;
|
|
};
|
|
struct dbw_tEF892A66F1417E423BAA34A1EE22306A5B496ABE_marshaled_pinvoke
|
|
{
|
|
czh_tE8F1A87C5388086F23589583A37E369F2950CBC9* ___skeleton;
|
|
int32_t ___startSlot;
|
|
int32_t ___endSlot;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___material;
|
|
int32_t ___forceSeparate;
|
|
int32_t ___preActiveClippingSlotSource;
|
|
int32_t ___rawTriangleCount;
|
|
int32_t ___rawVertexCount;
|
|
int32_t ___rawFirstVertexIndex;
|
|
int32_t ___hasClipping;
|
|
};
|
|
struct dbw_tEF892A66F1417E423BAA34A1EE22306A5B496ABE_marshaled_com
|
|
{
|
|
czh_tE8F1A87C5388086F23589583A37E369F2950CBC9* ___skeleton;
|
|
int32_t ___startSlot;
|
|
int32_t ___endSlot;
|
|
Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3* ___material;
|
|
int32_t ___forceSeparate;
|
|
int32_t ___preActiveClippingSlotSource;
|
|
int32_t ___rawTriangleCount;
|
|
int32_t ___rawVertexCount;
|
|
int32_t ___rawFirstVertexIndex;
|
|
int32_t ___hasClipping;
|
|
};
|
|
typedef Il2CppFullySharedGenericStruct Enumerator_tCB72A813DFEE772F0A8C597C9BACBDBC84B493F0;
|
|
struct Nullable_1_t13F9968C978BAF968F02BA5B41ABB481321A5440
|
|
{
|
|
bool ___hasValue;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___value;
|
|
};
|
|
struct bzx_1_t4D484EB6E5789BB8192E046C3FDB7E2664856C75 : public RuntimeObject
|
|
{
|
|
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___oldValue;
|
|
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___newValue;
|
|
};
|
|
struct cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E
|
|
{
|
|
cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* ___ofb;
|
|
int32_t ___next;
|
|
int32_t ___ofc;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___current;
|
|
};
|
|
struct cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B
|
|
{
|
|
cyt_1_tAC49A9A02241EC5ED0F5205BDF7AE399C207BC04* ___ofb;
|
|
int32_t ___next;
|
|
int32_t ___ofc;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___current;
|
|
};
|
|
struct cys_t77E50E15C644A5869C604882F1C802434F0A13BF
|
|
{
|
|
cyt_1_t8D44FE5690EE0881636F8CACF4B1781DB7253688* ___ofb;
|
|
int32_t ___next;
|
|
int32_t ___ofc;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___current;
|
|
};
|
|
struct cys_t365734F47A79063EC450869FBF066C01AC209CAB
|
|
{
|
|
cyt_1_t195133DDC4F4198CCCCFD063FFB746780BBCE98F* ___ofb;
|
|
int32_t ___next;
|
|
int32_t ___ofc;
|
|
dbw_tEF892A66F1417E423BAA34A1EE22306A5B496ABE ___current;
|
|
};
|
|
struct AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C : public YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D
|
|
{
|
|
intptr_t ___m_Ptr;
|
|
Action_1_tE8693FF0E67CDBA52BAFB211BFF1844D076ABAFB* ___m_completeCallback;
|
|
};
|
|
struct AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C_marshaled_pinvoke : public YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D_marshaled_pinvoke
|
|
{
|
|
intptr_t ___m_Ptr;
|
|
Il2CppMethodPointer ___m_completeCallback;
|
|
};
|
|
struct AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C_marshaled_com : public YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D_marshaled_com
|
|
{
|
|
intptr_t ___m_Ptr;
|
|
Il2CppMethodPointer ___m_completeCallback;
|
|
};
|
|
struct Coroutine_t85EA685566A254C23F3FD77AB5BDFFFF8799596B : public YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D
|
|
{
|
|
intptr_t ___m_Ptr;
|
|
};
|
|
struct Coroutine_t85EA685566A254C23F3FD77AB5BDFFFF8799596B_marshaled_pinvoke : public YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D_marshaled_pinvoke
|
|
{
|
|
intptr_t ___m_Ptr;
|
|
};
|
|
struct Coroutine_t85EA685566A254C23F3FD77AB5BDFFFF8799596B_marshaled_com : public YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D_marshaled_com
|
|
{
|
|
intptr_t ___m_Ptr;
|
|
};
|
|
struct Delegate_t : public RuntimeObject
|
|
{
|
|
intptr_t ___method_ptr;
|
|
intptr_t ___invoke_impl;
|
|
RuntimeObject* ___m_target;
|
|
intptr_t ___method;
|
|
intptr_t ___delegate_trampoline;
|
|
intptr_t ___extra_arg;
|
|
intptr_t ___method_code;
|
|
intptr_t ___interp_method;
|
|
intptr_t ___interp_invoke_impl;
|
|
MethodInfo_t* ___method_info;
|
|
MethodInfo_t* ___original_method_info;
|
|
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
|
|
bool ___method_is_virtual;
|
|
};
|
|
struct Delegate_t_marshaled_pinvoke
|
|
{
|
|
intptr_t ___method_ptr;
|
|
intptr_t ___invoke_impl;
|
|
Il2CppIUnknown* ___m_target;
|
|
intptr_t ___method;
|
|
intptr_t ___delegate_trampoline;
|
|
intptr_t ___extra_arg;
|
|
intptr_t ___method_code;
|
|
intptr_t ___interp_method;
|
|
intptr_t ___interp_invoke_impl;
|
|
MethodInfo_t* ___method_info;
|
|
MethodInfo_t* ___original_method_info;
|
|
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
|
|
int32_t ___method_is_virtual;
|
|
};
|
|
struct Delegate_t_marshaled_com
|
|
{
|
|
intptr_t ___method_ptr;
|
|
intptr_t ___invoke_impl;
|
|
Il2CppIUnknown* ___m_target;
|
|
intptr_t ___method;
|
|
intptr_t ___delegate_trampoline;
|
|
intptr_t ___extra_arg;
|
|
intptr_t ___method_code;
|
|
intptr_t ___interp_method;
|
|
intptr_t ___interp_invoke_impl;
|
|
MethodInfo_t* ___method_info;
|
|
MethodInfo_t* ___original_method_info;
|
|
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
|
|
int32_t ___method_is_virtual;
|
|
};
|
|
struct Exception_t : public RuntimeObject
|
|
{
|
|
String_t* ____className;
|
|
String_t* ____message;
|
|
RuntimeObject* ____data;
|
|
Exception_t* ____innerException;
|
|
String_t* ____helpURL;
|
|
RuntimeObject* ____stackTrace;
|
|
String_t* ____stackTraceString;
|
|
String_t* ____remoteStackTraceString;
|
|
int32_t ____remoteStackIndex;
|
|
RuntimeObject* ____dynamicMethods;
|
|
int32_t ____HResult;
|
|
String_t* ____source;
|
|
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager;
|
|
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces;
|
|
IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832* ___native_trace_ips;
|
|
int32_t ___caught_in_unmanaged;
|
|
};
|
|
struct Exception_t_marshaled_pinvoke
|
|
{
|
|
char* ____className;
|
|
char* ____message;
|
|
RuntimeObject* ____data;
|
|
Exception_t_marshaled_pinvoke* ____innerException;
|
|
char* ____helpURL;
|
|
Il2CppIUnknown* ____stackTrace;
|
|
char* ____stackTraceString;
|
|
char* ____remoteStackTraceString;
|
|
int32_t ____remoteStackIndex;
|
|
Il2CppIUnknown* ____dynamicMethods;
|
|
int32_t ____HResult;
|
|
char* ____source;
|
|
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager;
|
|
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces;
|
|
Il2CppSafeArray* ___native_trace_ips;
|
|
int32_t ___caught_in_unmanaged;
|
|
};
|
|
struct Exception_t_marshaled_com
|
|
{
|
|
Il2CppChar* ____className;
|
|
Il2CppChar* ____message;
|
|
RuntimeObject* ____data;
|
|
Exception_t_marshaled_com* ____innerException;
|
|
Il2CppChar* ____helpURL;
|
|
Il2CppIUnknown* ____stackTrace;
|
|
Il2CppChar* ____stackTraceString;
|
|
Il2CppChar* ____remoteStackTraceString;
|
|
int32_t ____remoteStackIndex;
|
|
Il2CppIUnknown* ____dynamicMethods;
|
|
int32_t ____HResult;
|
|
Il2CppChar* ____source;
|
|
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager;
|
|
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces;
|
|
Il2CppSafeArray* ___native_trace_ips;
|
|
int32_t ___caught_in_unmanaged;
|
|
};
|
|
struct HideFlags_tC514182ACEFD3B847988C45D5DB812FF6DB1BF4A
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct Int32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C : public RuntimeObject
|
|
{
|
|
intptr_t ___m_CachedPtr;
|
|
};
|
|
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_pinvoke
|
|
{
|
|
intptr_t ___m_CachedPtr;
|
|
};
|
|
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_com
|
|
{
|
|
intptr_t ___m_CachedPtr;
|
|
};
|
|
struct RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B
|
|
{
|
|
intptr_t ___value;
|
|
};
|
|
struct StringSplitOptions_t4DD892C76C70DD4800FC1B76054D69826F770062
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct bxi_tD8CD096CBFECBE700670E642AA69A7E5B11B559D
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct vz_t26C0B47BE1C0B77E5CF1197AE73B21825A93F875
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct wf_t68923D5D2AAAC05B01D042D4BFABC4456861F602
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B
|
|
{
|
|
List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* ____list;
|
|
int32_t ____index;
|
|
int32_t ____version;
|
|
int32_t ____current;
|
|
};
|
|
struct KeyValuePair_2_tEC3F1168C60A6FD97F3C22BDA419BE8C1702DC6D
|
|
{
|
|
int32_t ___key;
|
|
List_1_t9A2E2984B23260AECDFA90CEB1F2887075FA4DF3* ___value;
|
|
};
|
|
struct KeyValuePair_2_tF70DDE0C5A349727371FB070D433FA147032A13B
|
|
{
|
|
int32_t ___key;
|
|
RuntimeObject* ___value;
|
|
};
|
|
struct bxg_1_tF4F798E91A34034A5BB20B353D0504D528150380 : public RuntimeObject
|
|
{
|
|
bcq_t5702A62DE12536217F8A85320DBDD15BED5468B8* ___gp;
|
|
FXManager_t121CBC90514365E0FF3D7A1BB2E8E28F805C703C* ___U3CU3E4__this;
|
|
int32_t ___fx_Type;
|
|
RuntimeObject* ___fx;
|
|
wj_t5F4B191138DD4E91C1888EF23759495DECFB8E15* ___goWrapper;
|
|
};
|
|
struct AssetBundle_tB38418819A49060CD738CB21541649340F082943 : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
|
|
{
|
|
};
|
|
struct Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3 : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
|
|
{
|
|
};
|
|
struct GameObject_t76FEDD663AB33C991A9C9A23129337651094216F : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
|
|
{
|
|
};
|
|
struct MulticastDelegate_t : public Delegate_t
|
|
{
|
|
DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771* ___delegates;
|
|
};
|
|
struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
|
|
{
|
|
Delegate_t_marshaled_pinvoke** ___delegates;
|
|
};
|
|
struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
|
|
{
|
|
Delegate_t_marshaled_com** ___delegates;
|
|
};
|
|
struct ResourceRequest_tE6953FBA45EAAEFE866C635B9E7852044E62D868 : public AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C
|
|
{
|
|
String_t* ___m_Path;
|
|
Type_t* ___m_Type;
|
|
};
|
|
struct ResourceRequest_tE6953FBA45EAAEFE866C635B9E7852044E62D868_marshaled_pinvoke : public AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C_marshaled_pinvoke
|
|
{
|
|
char* ___m_Path;
|
|
Type_t* ___m_Type;
|
|
};
|
|
struct ResourceRequest_tE6953FBA45EAAEFE866C635B9E7852044E62D868_marshaled_com : public AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C_marshaled_com
|
|
{
|
|
Il2CppChar* ___m_Path;
|
|
Type_t* ___m_Type;
|
|
};
|
|
struct Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99 : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
|
|
{
|
|
};
|
|
struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 : public Exception_t
|
|
{
|
|
};
|
|
struct Texture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700 : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
|
|
{
|
|
};
|
|
struct Type_t : public MemberInfo_t
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ____impl;
|
|
};
|
|
struct bdc_tD1850B3904FFD3ECF4A1DE608CCDCE8D68166F6C : public zd_t99782D6683DBD0C03B19269A4EF3BF06F753DA23
|
|
{
|
|
int32_t ___rt_Id;
|
|
String_t* ___rt_Info;
|
|
float ___rt_Value;
|
|
RuntimeObject* ___rt_Param;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___rt_Func;
|
|
bab_t45049404C2911ACDC4F55E7167D5AB9E4D64BC0E* ___rt_GTweener;
|
|
Tweener_tD38633F1A42EDF47A73CE3BF1894D946E830E140* ___rt_Tweener;
|
|
bdc_tD1850B3904FFD3ECF4A1DE608CCDCE8D68166F6C* ___rt_GObject;
|
|
bbv_t89D26344F4170EFF0F1F9C4A312D4BE6BC03C3CE* ___rt_GComponent;
|
|
Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___rt_UObject;
|
|
String_t* ___U3ClcnU3Ek__BackingField;
|
|
String_t* ___U3ClcoU3Ek__BackingField;
|
|
String_t* ___U3ClcpU3Ek__BackingField;
|
|
String_t* ___name;
|
|
RuntimeObject* ___data;
|
|
String_t* ___customData;
|
|
int32_t ___sourceWidth;
|
|
int32_t ___sourceHeight;
|
|
int32_t ___initWidth;
|
|
int32_t ___initHeight;
|
|
int32_t ___minWidth;
|
|
int32_t ___maxWidth;
|
|
int32_t ___minHeight;
|
|
int32_t ___maxHeight;
|
|
bdy_tA6F9883376F53F5BC4573AD2F6E485F2334DC2CB* ___U3ClcqU3Ek__BackingField;
|
|
Nullable_1_t13F9968C978BAF968F02BA5B41ABB481321A5440 ___dragBounds;
|
|
bbv_t89D26344F4170EFF0F1F9C4A312D4BE6BC03C3CE* ___U3ClcrU3Ek__BackingField;
|
|
wg_t7CFF9CE7F816A6AA614B64D7E254ED1117E89A47* ___U3ClcsU3Ek__BackingField;
|
|
bdu_t0094235EDDB187B11D4C801F455C483B39451845* ___packageItem;
|
|
float ___lcu;
|
|
float ___lcv;
|
|
float ___lcw;
|
|
float ___lcx;
|
|
float ___lcy;
|
|
bool ___lcz;
|
|
float ___lda;
|
|
float ___ldb;
|
|
float ___ldc;
|
|
float ___ldd;
|
|
bool ___lde;
|
|
bool ___ldf;
|
|
bool ___ldg;
|
|
bool ___ldh;
|
|
bool ___ldi;
|
|
bool ___ldj;
|
|
float ___ldk;
|
|
float ___ldl;
|
|
int32_t ___ldm;
|
|
String_t* ___ldn;
|
|
bcr_t911DB75F191BCD94C91C22064CEDB2832F2FD805* ___ldo;
|
|
bbyU5BU5D_t39ACA42F18F4F8502A81146BB54C59234AB5E0A6* ___ldp;
|
|
ze_t9FEC90C29686117FA72153B0777ECE9B4E4B0E8F* ___ldq;
|
|
ze_t9FEC90C29686117FA72153B0777ECE9B4E4B0E8F* ___ldr;
|
|
ze_t9FEC90C29686117FA72153B0777ECE9B4E4B0E8F* ___lds;
|
|
ze_t9FEC90C29686117FA72153B0777ECE9B4E4B0E8F* ___ldt;
|
|
ze_t9FEC90C29686117FA72153B0777ECE9B4E4B0E8F* ___ldu;
|
|
ze_t9FEC90C29686117FA72153B0777ECE9B4E4B0E8F* ___ldv;
|
|
ze_t9FEC90C29686117FA72153B0777ECE9B4E4B0E8F* ___ldw;
|
|
ze_t9FEC90C29686117FA72153B0777ECE9B4E4B0E8F* ___ldx;
|
|
ze_t9FEC90C29686117FA72153B0777ECE9B4E4B0E8F* ___ldy;
|
|
ze_t9FEC90C29686117FA72153B0777ECE9B4E4B0E8F* ___ldz;
|
|
ze_t9FEC90C29686117FA72153B0777ECE9B4E4B0E8F* ___lea;
|
|
ze_t9FEC90C29686117FA72153B0777ECE9B4E4B0E8F* ___leb;
|
|
ze_t9FEC90C29686117FA72153B0777ECE9B4E4B0E8F* ___lec;
|
|
ze_t9FEC90C29686117FA72153B0777ECE9B4E4B0E8F* ___led;
|
|
ze_t9FEC90C29686117FA72153B0777ECE9B4E4B0E8F* ___lee;
|
|
ze_t9FEC90C29686117FA72153B0777ECE9B4E4B0E8F* ___lef;
|
|
ze_t9FEC90C29686117FA72153B0777ECE9B4E4B0E8F* ___leg;
|
|
ze_t9FEC90C29686117FA72153B0777ECE9B4E4B0E8F* ___leh;
|
|
ze_t9FEC90C29686117FA72153B0777ECE9B4E4B0E8F* ___lei;
|
|
bool ___lej;
|
|
float ___lek;
|
|
float ___lel;
|
|
float ___lem;
|
|
float ___len;
|
|
bool ___leo;
|
|
float ___lep;
|
|
bool ___leq;
|
|
bdq_tA672007D7CCFFB7F05017FD495BA644410D8B925* ___ler;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___let;
|
|
bool ___leu;
|
|
};
|
|
struct wg_t7CFF9CE7F816A6AA614B64D7E254ED1117E89A47 : public zd_t99782D6683DBD0C03B19269A4EF3BF06F753DA23
|
|
{
|
|
String_t* ___name;
|
|
wd_t11DD7200C1BF658023F82A8697EABF53B029A436* ___U3CkfgU3Ek__BackingField;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___U3CkfhU3Ek__BackingField;
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* ___U3CkfiU3Ek__BackingField;
|
|
xo_tC8E6F3D689C8B3BD1D701FCDE0AD135EA22472C7* ___U3CkfjU3Ek__BackingField;
|
|
xo_tC8E6F3D689C8B3BD1D701FCDE0AD135EA22472C7* ___U3CkfkU3Ek__BackingField;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___kfl;
|
|
bdc_tD1850B3904FFD3ECF4A1DE608CCDCE8D68166F6C* ___gOwner;
|
|
uint32_t ___id;
|
|
bool ___kfm;
|
|
bool ___kfn;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___kfo;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___kfp;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___kfq;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___kfr;
|
|
int32_t ___kfs;
|
|
float ___kft;
|
|
bool ___kfu;
|
|
int32_t ___kfv;
|
|
RuntimeObject* ___kfw;
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* ___kfx;
|
|
String_t* ___kfy;
|
|
bool ___kfz;
|
|
int32_t ___kga;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___kgb;
|
|
int32_t ___kgc;
|
|
ze_t9FEC90C29686117FA72153B0777ECE9B4E4B0E8F* ___kgd;
|
|
ze_t9FEC90C29686117FA72153B0777ECE9B4E4B0E8F* ___kge;
|
|
ze_t9FEC90C29686117FA72153B0777ECE9B4E4B0E8F* ___kgf;
|
|
ze_t9FEC90C29686117FA72153B0777ECE9B4E4B0E8F* ___kgg;
|
|
ze_t9FEC90C29686117FA72153B0777ECE9B4E4B0E8F* ___kgh;
|
|
ze_t9FEC90C29686117FA72153B0777ECE9B4E4B0E8F* ___kgi;
|
|
ze_t9FEC90C29686117FA72153B0777ECE9B4E4B0E8F* ___kgj;
|
|
ze_t9FEC90C29686117FA72153B0777ECE9B4E4B0E8F* ___kgk;
|
|
ze_t9FEC90C29686117FA72153B0777ECE9B4E4B0E8F* ___kgl;
|
|
ze_t9FEC90C29686117FA72153B0777ECE9B4E4B0E8F* ___kgm;
|
|
ze_t9FEC90C29686117FA72153B0777ECE9B4E4B0E8F* ___kgn;
|
|
ze_t9FEC90C29686117FA72153B0777ECE9B4E4B0E8F* ___kgo;
|
|
ze_t9FEC90C29686117FA72153B0777ECE9B4E4B0E8F* ___kgp;
|
|
ze_t9FEC90C29686117FA72153B0777ECE9B4E4B0E8F* ___kgq;
|
|
int32_t ___kgr;
|
|
we_t0A281736FA21E3D26438E2BE450BC8917F64A433* ___kgs;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___kgt;
|
|
xm_tD2CA4B5E6FDBD3F45204CAD7C8FED67648BCBCC5* ___kgu;
|
|
int32_t ___kgv;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___kgw;
|
|
};
|
|
struct Action_1_t90425964BF9D6282116C192CAA76B05EB0EEF123 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_1_t97FCE20F22566CA230EFB470FC80FEA708AA1231 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_1_tA0F10A9285403FFE399C24B340DC3300881DE735 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_1_tD69A6DC9FBE94131E52F5A73B2A9D4AB51EEC404 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_1_t310F18CB4338A2740CA701F160C62E2C3198E66A : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_2_t829FF86EEA250A853DF3A95B2C4DAC034707E20F : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_2_t9C463C2F47C41EF4ECC1B672CE6FB7D020F0E658 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_2_tC12DCAB4262F42CA0963501648E8EFBB3BD2C6B9 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Comparison_1_tF15DB3AEC82E2B8B1BF7E34C4EAB7D1031840D68 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Comparison_1_t939FA5753922E5ECCF481BF4BC889604ED91887E : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Comparison_1_tB7DE1436CB53924C2FC41FF926D074C1ACC14D89 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Comparison_1_t62E531E7B8260E2C6C2718C3BDB8CF8655139645 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Comparison_1_t11F78E54645546468696C9CAAB9785713FDD3C1D : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Enumerator_tBA05A5E5667F4985803E4513BA28CB1C20675858
|
|
{
|
|
Dictionary_2_t61D2A8EA7B89354F704065B5DF8061AED7234EEA* ____dictionary;
|
|
int32_t ____version;
|
|
int32_t ____index;
|
|
KeyValuePair_2_tEC3F1168C60A6FD97F3C22BDA419BE8C1702DC6D ____current;
|
|
int32_t ____getEnumeratorRetType;
|
|
};
|
|
struct Enumerator_t72F234BE749BE6BA202FC41626B5E819E4F208B4
|
|
{
|
|
Dictionary_2_t514396B90715EDD83BB0470C76C2F426F9381C71* ____dictionary;
|
|
int32_t ____version;
|
|
int32_t ____index;
|
|
KeyValuePair_2_tF70DDE0C5A349727371FB070D433FA147032A13B ____current;
|
|
int32_t ____getEnumeratorRetType;
|
|
};
|
|
struct Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct UnityAction_1_t9C30BCD020745BF400CBACF22C6F34ADBA2DDA6A : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
String_t* ____paramName;
|
|
};
|
|
struct AssetBundleRequest_tED9F5504E75ED1BCFF8DA9B51F5C7356617E6621 : public ResourceRequest_tE6953FBA45EAAEFE866C635B9E7852044E62D868
|
|
{
|
|
};
|
|
struct AssetBundleRequest_tED9F5504E75ED1BCFF8DA9B51F5C7356617E6621_marshaled_pinvoke : public ResourceRequest_tE6953FBA45EAAEFE866C635B9E7852044E62D868_marshaled_pinvoke
|
|
{
|
|
};
|
|
struct AssetBundleRequest_tED9F5504E75ED1BCFF8DA9B51F5C7356617E6621_marshaled_com : public ResourceRequest_tE6953FBA45EAAEFE866C635B9E7852044E62D868_marshaled_com
|
|
{
|
|
};
|
|
struct Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA : public Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3
|
|
{
|
|
};
|
|
struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
};
|
|
struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
};
|
|
struct Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4 : public Texture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700
|
|
{
|
|
};
|
|
struct Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1 : public Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3
|
|
{
|
|
};
|
|
struct bcq_t5702A62DE12536217F8A85320DBDD15BED5468B8 : public bdc_tD1850B3904FFD3ECF4A1DE608CCDCE8D68166F6C
|
|
{
|
|
xt_t11FAD72BB3709190FFCCB4E57F88CBAD6F138C96* ___kzo;
|
|
};
|
|
struct wj_t5F4B191138DD4E91C1888EF23759495DECFB8E15 : public wg_t7CFF9CE7F816A6AA614B64D7E254ED1117E89A47
|
|
{
|
|
bool ___supportStencil;
|
|
Action_1_tE8FD183FF1CFF4CBB24914237436F62F0F145F45* ___kha;
|
|
Action_1_tEC47AB9DC2A94EE7A4E645155E1AE8217E835FAD* ___customCloneMaterials;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___customRecoverMaterials;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___khb;
|
|
List_1_tD4C396FE862C77106272A02743E018C38A829811* ___khc;
|
|
Dictionary_2_t7B0F5D63DDA1E532530982C8043F0A132FF9745F* ___khd;
|
|
Canvas_t2DB4CEFDFF732884866C83F11ABF75F5AE8FFB26* ___khe;
|
|
bool ___khf;
|
|
bool ___khg;
|
|
List_1_t386E09F4F22DDE4D2AC41A8567FFF283C254537B* ___khi;
|
|
};
|
|
struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129 : public ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263
|
|
{
|
|
};
|
|
struct ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F : public ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263
|
|
{
|
|
RuntimeObject* ____actualValue;
|
|
};
|
|
struct MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71 : public Behaviour_t01970CFBBA658497AE30F311C447DB0440BAB7FA
|
|
{
|
|
CancellationTokenSource_tAAE1E0033BCFC233801F8CB4CED5C852B350CB7B* ___m_CancellationTokenSource;
|
|
};
|
|
struct ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB : public InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB
|
|
{
|
|
String_t* ____objectName;
|
|
};
|
|
struct SingletonUnity_1_t3025BB74C3173751E75441D2A23882AF968C742C : public MonoBehaviour_t532A11E69716D348D8AA7F854AFCBFCB8AD17F71
|
|
{
|
|
String_t* ___U3CnquU3Ek__BackingField;
|
|
};
|
|
struct BaseUnityManager_1_tDC0CFDF15B4091B9D4EF7B17BCCBA910B90DEAAD : public SingletonUnity_1_t3025BB74C3173751E75441D2A23882AF968C742C
|
|
{
|
|
bool ___U3ClyoU3Ek__BackingField;
|
|
bool ___U3ClypU3Ek__BackingField;
|
|
bool ___U3ClyqU3Ek__BackingField;
|
|
};
|
|
struct FXManager_t121CBC90514365E0FF3D7A1BB2E8E28F805C703C : public BaseUnityManager_1_tDC0CFDF15B4091B9D4EF7B17BCCBA910B90DEAAD
|
|
{
|
|
String_t* ___ltf;
|
|
ca_1_t3E195005686123F77047B3ED8E26F89389108358* ___ltg;
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* ___lth;
|
|
List_1_tB951CE80B58D1BF9650862451D8DAD8C231F207B* ___gameObjects;
|
|
Queue_1_tB328CF25826D17C7C7A7B87FCF06FF124C07632A* ___lti;
|
|
};
|
|
struct Comparer_1_t075B18A0921F760D040E0D8BFE6637CE0E1587E4_StaticFields
|
|
{
|
|
Comparer_1_t075B18A0921F760D040E0D8BFE6637CE0E1587E4* ___defaultComparer;
|
|
};
|
|
struct Comparer_1_t2158F98C5484AAD9CDBEC169B93B8E28C528F647_StaticFields
|
|
{
|
|
Comparer_1_t2158F98C5484AAD9CDBEC169B93B8E28C528F647* ___defaultComparer;
|
|
};
|
|
struct Comparer_1_t2FF14F26F4D678A8FA199B888FF61A2A9D1D2D80_StaticFields
|
|
{
|
|
Comparer_1_t2FF14F26F4D678A8FA199B888FF61A2A9D1D2D80* ___defaultComparer;
|
|
};
|
|
struct Comparer_1_t0A03F9FBBEA32FB1528366652D3D38513E8B1137_StaticFields
|
|
{
|
|
Comparer_1_t0A03F9FBBEA32FB1528366652D3D38513E8B1137* ___defaultComparer;
|
|
};
|
|
struct Comparer_1_tE191E68CB394DD255CCA7A56F4D1DEFED0BD3FDB_StaticFields
|
|
{
|
|
Comparer_1_tE191E68CB394DD255CCA7A56F4D1DEFED0BD3FDB* ___defaultComparer;
|
|
};
|
|
struct List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0_StaticFields
|
|
{
|
|
Action_1U5BU5D_t9AF7A60AA589F7071315F3DA2F77CD32CB43FB5D* ___s_emptyArray;
|
|
};
|
|
struct List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576_StaticFields
|
|
{
|
|
Int32EnumU5BU5D_t87B7DB802810C38016332669039EF42C487A081F* ___s_emptyArray;
|
|
};
|
|
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D_StaticFields
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___s_emptyArray;
|
|
};
|
|
struct List_1_t9A2E2984B23260AECDFA90CEB1F2887075FA4DF3_StaticFields
|
|
{
|
|
ObjectU5BU5D_tD4BF1BEC72A31DF6611C0B8FA3112AF128FC3F8A* ___s_emptyArray;
|
|
};
|
|
struct List_1_tE5211AFE92BF26309D7C5814A29544E9EF496FE4_StaticFields
|
|
{
|
|
__Il2CppFullySharedGenericStructTypeU5BU5D_tF3B929B6E80D0A8C109178E11CE8FF9957B014C1* ___s_emptyArray;
|
|
};
|
|
struct List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A_StaticFields
|
|
{
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* ___s_emptyArray;
|
|
};
|
|
struct bzy_3_t69A7C4B8D2817E6515CAEA213B7FE352750F3509_StaticFields
|
|
{
|
|
cag_1_t13299DA714D17DC1CB7A3D2D03BFAA2956E3E9C5* ___lxt;
|
|
};
|
|
struct bzy_3_t1E1BEBD3FB315A4FA21CD0E62A92BDE5781FF686_StaticFields
|
|
{
|
|
cag_1_t87A80CA24A67B3AC723841E86724121C4FA61C56* ___lxt;
|
|
};
|
|
struct bzy_3_tDEF6B8481C81DD8E75C8CA42AC4A07AA003E2D95_StaticFields
|
|
{
|
|
cag_1_tF63C3AF916F5372C1BA3382D1B4BBE9CD3D8B6EC* ___lxt;
|
|
};
|
|
struct bzy_3_t9A9A4FBDE0863F917696ADC8C788FFB7667E7258_StaticFields
|
|
{
|
|
cag_1_t04895B40CA8F412729C80E76D0FBD06112A47A7D* ___lxt;
|
|
};
|
|
struct bzy_3_t01187F1458C4DD0836F9F22F61EBA3D73AB44479_StaticFields
|
|
{
|
|
cag_1_t4408770DEE4DE1A9FBAF02CBBD5BD8EF8D6D710B* ___lxt;
|
|
};
|
|
struct bzy_3_t8C95E0FFA290A3576A39046636B63DB55A101AF8_StaticFields
|
|
{
|
|
cag_1_tA685EFB76CB7A860FD35351524B49EC1C5D5787F* ___lxt;
|
|
};
|
|
struct bzy_3_t1B56DC560AD4BA180F9C6D73A942A6CD15DD925F_StaticFields
|
|
{
|
|
cag_1_t7955D8924F73171B3D7F04B030ECC01DABEAAEC7* ___lxt;
|
|
};
|
|
struct bzy_3_tD9B249170D3A1B921D3EF65E6F9E284BBAD0FA00_StaticFields
|
|
{
|
|
RuntimeObject* ___lxt;
|
|
};
|
|
struct bzy_3_tE18DFB7C8239FAB9D9F8C7CCCC15D422D500BC4B_StaticFields
|
|
{
|
|
RuntimeObject* ___lxt;
|
|
};
|
|
struct bzy_3_tC389978D981A35DE42CE123B5ECE75262286577D_StaticFields
|
|
{
|
|
RuntimeObject* ___lxt;
|
|
};
|
|
struct cap_1_t0DE2FBA65F8B89DBDCC8A8999240F8AF760D6908_StaticFields
|
|
{
|
|
RuntimeObject* ___lyn;
|
|
};
|
|
struct ctu_1_t37DB1B6798FE17C70E0BC9D80BE4B31AA281AF87_StaticFields
|
|
{
|
|
ctv_1_t6797CD74D570150D82C9A2244E79DE1F80514F93* ___nqe;
|
|
};
|
|
struct ctu_1_t5FA6E763AEFCD47D758A94F36E2A52892CB4C8A3_StaticFields
|
|
{
|
|
ctv_1_t520197966430B2540ECF7BB023FED9E0C525CE39* ___nqe;
|
|
};
|
|
struct cud_1_t83FF7C1205FDBF0FE96EB597F5C8EED47D8CBB84_StaticFields
|
|
{
|
|
RuntimeObject* ___nqq;
|
|
RuntimeObject* ___nqr;
|
|
};
|
|
struct cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47_StaticFields
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___ofe;
|
|
};
|
|
struct cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393_StaticFields
|
|
{
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* ___ofe;
|
|
};
|
|
struct cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7_StaticFields
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___ofe;
|
|
};
|
|
struct cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082_StaticFields
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___ofe;
|
|
};
|
|
struct cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C_StaticFields
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___ofe;
|
|
};
|
|
struct cyt_1_tAC49A9A02241EC5ED0F5205BDF7AE399C207BC04_StaticFields
|
|
{
|
|
Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA* ___ofe;
|
|
};
|
|
struct cyt_1_t8D44FE5690EE0881636F8CACF4B1781DB7253688_StaticFields
|
|
{
|
|
Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C* ___ofe;
|
|
};
|
|
struct cyt_1_tE46DA8E7A261663B67DB2F6E839FA69F43D02A30_StaticFields
|
|
{
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* ___ofe;
|
|
};
|
|
struct cyt_1_t195133DDC4F4198CCCCFD063FFB746780BBCE98F_StaticFields
|
|
{
|
|
dbwU5BU5D_t73AB35C2E20D28F7324F522254A7B4A117C41139* ___ofe;
|
|
};
|
|
struct String_t_StaticFields
|
|
{
|
|
String_t* ___Empty;
|
|
};
|
|
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields
|
|
{
|
|
String_t* ___TrueString;
|
|
String_t* ___FalseString;
|
|
};
|
|
struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17_StaticFields
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___s_categoryForLatin1;
|
|
};
|
|
struct Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_StaticFields
|
|
{
|
|
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___Zero;
|
|
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___One;
|
|
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___MinusOne;
|
|
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___MaxValue;
|
|
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___MinValue;
|
|
};
|
|
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_StaticFields
|
|
{
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___enumSeperatorCharArray;
|
|
};
|
|
struct IntPtr_t_StaticFields
|
|
{
|
|
intptr_t ___Zero;
|
|
};
|
|
struct Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_StaticFields
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___zeroVector;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___oneVector;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___upVector;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___downVector;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___leftVector;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___rightVector;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___positiveInfinityVector;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___negativeInfinityVector;
|
|
};
|
|
struct Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_StaticFields
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___zeroVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___oneVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___upVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___downVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___leftVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___rightVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___forwardVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___backVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___positiveInfinityVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___negativeInfinityVector;
|
|
};
|
|
struct bys_tB5A77FB3B9BFF0674CB0A35A11C2840B5D838782_StaticFields
|
|
{
|
|
Dictionary_2_tBA29A691F8E5D6FF1D1E91E506BF915398B83AD8* ___lwy;
|
|
Dictionary_2_t80ECE346ED6DD3D9A8F33F8F0C6CB989DEA7462F* ___lwz;
|
|
List_1_tD822CFC8EC5A4EDE44F2A2748F2EE743D9C211AC* ___lxa;
|
|
AssetBundleManifest_t85F250E5A0E0F954DA386C0CEF27BA7622A323A7* ___lxb;
|
|
Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* ___lxc;
|
|
};
|
|
struct Exception_t_StaticFields
|
|
{
|
|
RuntimeObject* ___s_EDILock;
|
|
};
|
|
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_StaticFields
|
|
{
|
|
int32_t ___OffsetOfInstanceIDInCPlusPlusObject;
|
|
};
|
|
struct Texture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700_StaticFields
|
|
{
|
|
int32_t ___GenerateAllMips;
|
|
};
|
|
struct Type_t_StaticFields
|
|
{
|
|
Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235* ___s_defaultBinder;
|
|
Il2CppChar ___Delimiter;
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___EmptyTypes;
|
|
RuntimeObject* ___Missing;
|
|
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterAttribute;
|
|
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterName;
|
|
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterNameIgnoreCase;
|
|
};
|
|
struct wg_t7CFF9CE7F816A6AA614B64D7E254ED1117E89A47_StaticFields
|
|
{
|
|
uint32_t ___kgx;
|
|
int32_t ___kgy;
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* ___kgz;
|
|
};
|
|
struct wj_t5F4B191138DD4E91C1888EF23759495DECFB8E15_StaticFields
|
|
{
|
|
List_1_t991BBC5A1D51F59A450367DF944DAA207F22D06D* ___khh;
|
|
};
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) String_t* m_Items[1];
|
|
|
|
inline String_t* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline String_t** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, String_t* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline String_t* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline String_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, String_t* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) RuntimeObject* m_Items[1];
|
|
|
|
inline RuntimeObject* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline RuntimeObject** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, RuntimeObject* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline RuntimeObject* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline RuntimeObject** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
struct BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) bool m_Items[1];
|
|
|
|
inline bool GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline bool* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, bool value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline bool GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline bool* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, bool value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
struct Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B m_Items[1];
|
|
|
|
inline Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) int32_t m_Items[1];
|
|
|
|
inline int32_t GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline int32_t* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, int32_t value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
struct SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) float m_Items[1];
|
|
|
|
inline float GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline float* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, float value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline float GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline float* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, float value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
struct Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 m_Items[1];
|
|
|
|
inline Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
struct Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 m_Items[1];
|
|
|
|
inline Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
struct __Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) uint8_t m_Items[1];
|
|
|
|
inline uint8_t* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + il2cpp_array_calc_byte_offset(this, index);
|
|
}
|
|
inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + il2cpp_array_calc_byte_offset(this, index);
|
|
}
|
|
};
|
|
struct dbwU5BU5D_t73AB35C2E20D28F7324F522254A7B4A117C41139 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) dbw_tEF892A66F1417E423BAA34A1EE22306A5B496ABE m_Items[1];
|
|
|
|
inline dbw_tEF892A66F1417E423BAA34A1EE22306A5B496ABE GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline dbw_tEF892A66F1417E423BAA34A1EE22306A5B496ABE* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, dbw_tEF892A66F1417E423BAA34A1EE22306A5B496ABE value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___skeleton), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___material), (void*)NULL);
|
|
#endif
|
|
}
|
|
inline dbw_tEF892A66F1417E423BAA34A1EE22306A5B496ABE GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline dbw_tEF892A66F1417E423BAA34A1EE22306A5B496ABE* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, dbw_tEF892A66F1417E423BAA34A1EE22306A5B496ABE value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___skeleton), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___material), (void*)NULL);
|
|
#endif
|
|
}
|
|
};
|
|
struct Int32EnumU5BU5D_t87B7DB802810C38016332669039EF42C487A081F : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) int32_t m_Items[1];
|
|
|
|
inline int32_t GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline int32_t* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, int32_t value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
|
|
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnityAction_1_Invoke_m777839BF9CB9F96B081106B47202D06FB35326CA_gshared_inline (UnityAction_1_t9C30BCD020745BF400CBACF22C6F34ADBA2DDA6A* __this, RuntimeObject* ___0_arg0, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FXManager_RecFx_TisRuntimeObject_m5407E2E3FF808A4D0DBD1017D9B7EF6975A89483_gshared (FXManager_t121CBC90514365E0FF3D7A1BB2E8E28F805C703C* __this, int32_t ___0_fx_Type, RuntimeObject* ___1_obj, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* bys_fxz_TisRuntimeObject_m662138EFEA1495F1678C92928541292BB5D3958A_gshared (bys_tB5A77FB3B9BFF0674CB0A35A11C2840B5D838782* __this, AssetBundle_tB38418819A49060CD738CB21541649340F082943* ___0_a, String_t* ___1_b, UnityAction_1_t9C30BCD020745BF400CBACF22C6F34ADBA2DDA6A* ___2_c, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* AssetBundle_LoadAsset_TisRuntimeObject_m7F36E1C08FC32ADB47C34513522D958FA6E09C47_gshared (AssetBundle_tB38418819A49060CD738CB21541649340F082943* __this, String_t* ___0_name, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void byf_1__ctor_mD89D65020C5649E9C9AA7F4E5840D1898FF23EA6_gshared (byf_1_t99A0AD00347E895ECDD71483F7502B35A8FFE3CE* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* AssetBundle_LoadAssetWithSubAssets_TisRuntimeObject_mB55304F684DE41A233AB9AFEDBD182605C0AC223_gshared (AssetBundle_tB38418819A49060CD738CB21541649340F082943* __this, String_t* ___0_name, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m3E007299121A15DF80F4A210FF8C20E5DF688F20_gshared (Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Array_Find_TisRuntimeObject_m03DE8D6544B37CBB6B339128ACC38C60CCFC4C24_gshared (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___0_array, Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* ___1_match, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AssetBundleRequest_tED9F5504E75ED1BCFF8DA9B51F5C7356617E6621* AssetBundle_LoadAssetAsync_TisRuntimeObject_m0BF806B065BEFAAFDA6DA39D8506875A4783FCCB_gshared (AssetBundle_tB38418819A49060CD738CB21541649340F082943* __this, String_t* ___0_name, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AssetBundleRequest_tED9F5504E75ED1BCFF8DA9B51F5C7356617E6621* AssetBundle_LoadAssetWithSubAssetsAsync_TisRuntimeObject_m1E527522E8A6B14CCF2D0E659B5C95E7B4CE5702_gshared (AssetBundle_tB38418819A49060CD738CB21541649340F082943* __this, String_t* ___0_name, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Activator_CreateInstance_TisRuntimeObject_m62506836177F0F862A8D619638BF37F48721F138_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_mD15380A4ED7CDEE99EA45881577D26BA9CE1B849_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, RuntimeObject* ___0_key, RuntimeObject** ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ctu_1_Get_m6FDFD2B5890D71DCBD099E4BA452E5B682A0485D_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Add_m93FFFABE8FCE7FA9793F0915E2A8842C7CD0C0C1_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, RuntimeObject* ___0_key, RuntimeObject* ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Contains_m4C9139C2A6B23E9343D3F87807B32C6E2CFE660D_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Remove_m4DFA48F4CEB9169601E75FC28517C5C06EFA5AD7_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ctu_1_Release_m563D85D9D888E41461034DD76B141548B11BA2B7_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ___0_toRelease, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_Remove_m5C7C45E75D951A75843F3F7AADD56ECD64F6BC86_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, RuntimeObject* ___0_key, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bzy_3_fzm_m6CA468BF994738126D75320A5236CC05E33A3741_gshared (bzy_3_tD9B249170D3A1B921D3EF65E6F9E284BBAD0FA00* __this, Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3* ___0_a, RuntimeObject* ___1_b, RuntimeObject* ___2_c, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsKey_m703047C213F7AB55C9DC346596287773A1F670CD_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, RuntimeObject* ___0_key, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_get_Item_m4AAAECBE902A211BF2126E6AFA280AEF73A3E0D6_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, RuntimeObject* ___0_key, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_gshared_inline (Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_AddRange_m1F76B300133150E6046C5FED00E88B5DE0A02E17_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___0_collection, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Clear_mCFB5EA7351D5860D2B91592B91A84CA265A41433_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_mBBE3855923B29F8A7CDB21CF7DD7FCD84AABEB68_gshared (Dictionary_2_tC8FA8E0C06C3A9584490723EC95DC65E5AFFF71A* __this, uint32_t ___0_key, RuntimeObject** ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Add_m5124CA0DFD4B9968298DB45CEDF7F4B7A1F7DF83_gshared (Dictionary_2_tC8FA8E0C06C3A9584490723EC95DC65E5AFFF71A* __this, uint32_t ___0_key, RuntimeObject* ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_Remove_mAFDA1925650321D7DBD9CB992FD536B8FD2984AA_gshared (Dictionary_2_tC8FA8E0C06C3A9584490723EC95DC65E5AFFF71A* __this, uint32_t ___0_key, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bzy_3_fzm_m1BEFC6D94ECF66F4749C5C225373CFE76F170A3B_gshared (bzy_3_tE18DFB7C8239FAB9D9F8C7CCCC15D422D500BC4B* __this, Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D* ___0_a, uint32_t ___1_b, RuntimeObject* ___2_c, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsKey_m61654FF64053B954D62E586B09309D37EEBB9FB3_gshared (Dictionary_2_tC8FA8E0C06C3A9584490723EC95DC65E5AFFF71A* __this, uint32_t ___0_key, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_get_Item_m1ABC559AFCB634174C216DFF864168F9D0611B91_gshared (Dictionary_2_tC8FA8E0C06C3A9584490723EC95DC65E5AFFF71A* __this, uint32_t ___0_key, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Clear_m2561EDEA2235BCE5FAED59F4E2E352FDA7C71115_gshared (Dictionary_2_tC8FA8E0C06C3A9584490723EC95DC65E5AFFF71A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m5F2C53FF0072F4015E5D14621F555D29B1EB79E5_gshared (Dictionary_2_tC8FA8E0C06C3A9584490723EC95DC65E5AFFF71A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsKey_m874C59716993973F0A52C848B20C70C26DB9BCF7_gshared (Dictionary_2_t514396B90715EDD83BB0470C76C2F426F9381C71* __this, int32_t ___0_key, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Dictionary_2_get_Item_m9C4302CCAE3C1BF70D02091D0E0CED7663F18211_gshared (Dictionary_2_t514396B90715EDD83BB0470C76C2F426F9381C71* __this, int32_t ___0_key, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A List_1_GetEnumerator_mD8294A7FA2BEB1929487127D476F8EC1CDC23BFC_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mD9DC3E3C3697830A4823047AB29A77DBBB5ED419_gshared (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB_gshared (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_Remove_mA2D94572DAE1E370288187F54B99416C7DB26A5B_gshared (Dictionary_2_t514396B90715EDD83BB0470C76C2F426F9381C71* __this, int32_t ___0_key, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ca_1_RemoveAll_m72374BA2B76106454D4EAAE5A95051C49FE492E6_gshared (ca_1_t69F2B6DD12EE2DCBE97A74A7AB8D9BBDB03E21A9* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Add_mC515884C0546021A29DC0A00DBCABD89B1B65872_gshared (Dictionary_2_t514396B90715EDD83BB0470C76C2F426F9381C71* __this, int32_t ___0_key, RuntimeObject* ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_mD8A6CDD5C954C86D2150FCFF1B76EB62F35A881D_gshared (Dictionary_2_t514396B90715EDD83BB0470C76C2F426F9381C71* __this, int32_t ___0_key, RuntimeObject** ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_2_Invoke_m05605BFAA1396765DE23112419D8E6F797B65101_gshared_inline (Action_2_t829FF86EEA250A853DF3A95B2C4DAC034707E20F* __this, int32_t ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Clear_m4F220B4D805F163DF05F6FB4538DBC9D1610D16E_gshared_inline (List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t72F234BE749BE6BA202FC41626B5E819E4F208B4 Dictionary_2_GetEnumerator_m4126F9137DF46492CEB1563FCCD5A16C5F99D686_gshared (Dictionary_2_t514396B90715EDD83BB0470C76C2F426F9381C71* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m183A70972A3287360EE9443997160D3AA6D4662D_gshared (Enumerator_t72F234BE749BE6BA202FC41626B5E819E4F208B4* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tF70DDE0C5A349727371FB070D433FA147032A13B Enumerator_get_Current_m12EE850D56E586DF121B059557CEAF4A7472995B_gshared_inline (Enumerator_t72F234BE749BE6BA202FC41626B5E819E4F208B4* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_m9698075D0C5F788A3B6AEBF1ABDFACCAB5854E90_gshared_inline (KeyValuePair_2_tF70DDE0C5A349727371FB070D433FA147032A13B* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m809450298141D527D3A4FFAF77AE69D9B08CC17F_gshared_inline (List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* __this, int32_t ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m48EC022EB2EB605F29EE19F3A0A79E3CB05FD283_gshared (Enumerator_t72F234BE749BE6BA202FC41626B5E819E4F208B4* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B List_1_GetEnumerator_m87BBBF3FBB0A4EBF1C2940AA91570D7F1565F60D_gshared (List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m09AF8D2807410AAEB42E9FCC1A54299458EFEFF2_gshared (Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_mB6A201CD563FEF33A6BDA75B83C7BF2AA36CD98C_gshared_inline (Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ca_1_RemoveKey_mA9E4CEF14F7981C82EFFD4065CC8C5503E81891F_gshared (ca_1_t69F2B6DD12EE2DCBE97A74A7AB8D9BBDB03E21A9* __this, int32_t ___0_key, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mCAE99D26B8B4D7880B37A70AC8DFD8C7AA4FCCE5_gshared (Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_mCC9983804D8DC41E938E080075F9EA7BDD0C7059_gshared (Dictionary_2_t514396B90715EDD83BB0470C76C2F426F9381C71* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m7C3D0A1FD36704AFBBE4FD4E69204B809D3FC90E_gshared (List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bzy_3__ctor_m026EC43915D502661F6DD7ABBB02B1E500352F7D_gshared (bzy_3_tD9B249170D3A1B921D3EF65E6F9E284BBAD0FA00* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bzx_1__ctor_m1D3B0B1578C67AF419E48BD7F0EEB4883360DD05_gshared (bzx_1_tD860EF6FBE4057B405CC33ABF4B9B27EA4C241E8* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bzx_1__ctor_m5038F03BA0C1FA391D95165EB0A25251C093F2A4_gshared (bzx_1_t4D484EB6E5789BB8192E046C3FDB7E2664856C75* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bzx_1__ctor_m459FDE4EF3667FB0804F918AAFD4BAA43343E2D2_gshared (bzx_1_tA2F73AE84DB462B2C1BB352D3E53255B822258F0* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bzx_1__ctor_m136FB30603F0E5DCE670DAA48A3AF874774183AD_gshared (bzx_1_tF28DD7ABB0A422DE920831FB35E155BDF2905A9B* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bzx_1__ctor_m9DC468494C904F9C2D4A2FED75CAD65389685383_gshared (bzx_1_t01CAD84059E26921A56668D888A1952F0E346E84* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bzx_1__ctor_mBE0A884B346CF5E41F9C41D3D73B08EA2D0F6975_gshared (bzx_1_tF56837EEC40043218801469CF96854C4DA03507D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void cap_1_gap_mE93FAC6F00779477B33B54CB5B22577C9F9A9E4F_gshared_inline (cap_1_t0DE2FBA65F8B89DBDCC8A8999240F8AF760D6908* __this, bool ___0_a, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void cap_1_gan_mE645AD5667C93818AD2D6842F4AA7F4D856F37BD_gshared_inline (cap_1_t0DE2FBA65F8B89DBDCC8A8999240F8AF760D6908* __this, bool ___0_a, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void cap_1_gao_mE65B7F3F00CEC909E65698271A3D2B2BF10B8C2F_gshared_inline (cap_1_t0DE2FBA65F8B89DBDCC8A8999240F8AF760D6908* __this, bool ___0_a, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ctv_1_Get_m611C8E5DFBA25EA0A334A06F34BFE7E94B939769_gshared (ctv_1_t7F236C02AD9CB75CF11908268451E806428FE795* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ctv_1_Release_m7318A67CEA87FC6AB887E0D32BFFAB3D839B2182_gshared (ctv_1_t7F236C02AD9CB75CF11908268451E806428FE795* __this, RuntimeObject* ___0_element, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1__ctor_m2E1DFA67718FC1A0B6E5DFEB78831FFE9C059EB4_gshared (Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ctv_1__ctor_mF038B15B9076E09FBEE90476994B7E6B8904BDAA_gshared (ctv_1_t7F236C02AD9CB75CF11908268451E806428FE795* __this, Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* ___0_a, Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Stack_1_get_Count_mD08AE71D49787D30DDD9D484BCD323D646744D2E_gshared_inline (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ctv_1_get_CountAll_mEAF454516E2114D79C5798307857F106A3E5D89A_gshared_inline (ctv_1_t7F236C02AD9CB75CF11908268451E806428FE795* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ctv_1_hwe_m59DE15D4036199E9634DEF8ACFEB36F11EFBAF46_gshared_inline (ctv_1_t7F236C02AD9CB75CF11908268451E806428FE795* __this, int32_t ___0_a, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Stack_1_Pop_m2AFF69249659372F07EE25817DBCAFE74E1CF778_gshared (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stack_1__ctor_m70E8EDA96A608CE9BAB7FC8313B233AADA573BD4_gshared (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stack_1_Clear_mD550E89582979ECB0D6E6D68F0237FC14708BE85_gshared (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stack_1_Push_m709DD11BC1291A905814182CF9A367DE7399A778_gshared (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* __this, RuntimeObject* ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cud_1_OnSingletonInit_m4B2F9BBF8F3CEBE3EEDB5C6087691C081C24E2E7_gshared (cud_1_t83FF7C1205FDBF0FE96EB597F5C8EED47D8CBB84* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stack_1__ctor_m25F8C6095172E75DEE8A43E857889659DFC4DCE9_gshared (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* __this, int32_t ___0_capacity, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t cxo_1_get_Peak_m3ADD6E62EAFD22208CBDE14134A9DACFD8890382_gshared_inline (cxo_1_tEF016A0E938797C525FDD409DDC7F211C2056789* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void cxo_1_icx_m74E83E3327BA169D702B8BF8F79C592E52B5ECF1_gshared_inline (cxo_1_tEF016A0E938797C525FDD409DDC7F211C2056789* __this, int32_t ___0_a, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cxo_1_icy_m7AAC873E684E3D2BB0F8D95B9538F200C07755FC_gshared (cxo_1_tEF016A0E938797C525FDD409DDC7F211C2056789* __this, RuntimeObject* ___0_a, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_idi_mB888D2B07C5D840345EE483EB3CFF4A603AE660D_gshared (cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* cys_idk_m3DF5269EE221462F210A8322A38D3D71224A8E5D_gshared (cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_dv_m54B824971B2FDF23ECA2518FDFE68D4853B11ED7_gshared (cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool cys_get_Current_mFBD2535FC10EC841EB620E7553DA3402E9908821_gshared_inline (cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool cys_MoveNext_mA7A71B58C50B3633B3497236CB0AA8B06DF78CB5_gshared (cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_idj_m0ECF52877D27261A69A877D9826D7467CA69843B_gshared (cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_mnk_m4622D706AA8AB87E72EE65E8DC7CB17AE10BF293_gshared (cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_Dispose_m8E5B82E94C9AB181994DF342E8EA257E97B5ED97_gshared (cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys__ctor_m5D13A88DAA30B690962CFFC0DD72B05D8AB57F8B_gshared (cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5* __this, cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* ___0_a, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_jky_mC780B409CA18D31766273944C38FE44E8C198489_gshared (cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_idi_m9DA70E7285B3676C8A4BF3A6805C5AECCAEE41E0_gshared (cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* cys_idk_m1FB91B579533C0CD8B5C0D90C941766AB7BF7D3E_gshared (cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_dv_m5A0A096261F40F414C3F8FAA7AA7825DE9B76B33_gshared (cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B cys_get_Current_m06A3A3B5111455C6DD83171C34C359D7EBF0CEAF_gshared_inline (cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool cys_MoveNext_m6C03CC49C8B65F2A282EA13A944C48E451FE31C3_gshared (cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_idj_m3628A884B352FFE32EE898C0A49A75BFEB59F026_gshared (cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_mnk_mFE3576488E04E63BAC678190381902A908BEF34D_gshared (cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_Dispose_m506E0690BA8B3FDD01FF6CD9681EE140333890D4_gshared (cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys__ctor_mC10FD48409B8D8BEE4A1A676B1B4C624955B6E5E_gshared (cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E* __this, cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* ___0_a, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_jky_m8674A8C369C9EB245ADA1AE45E619A3B8CD08615_gshared (cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_idi_m5967E53DF3E09BE08150A8018145E2CCACF61786_gshared (cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* cys_idk_m84ED354BA669D6B1C7F931E36019CC1D7CF9AB69_gshared (cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_dv_m9C05D83F102786252BF614B9E3F7365C46E7C7CE_gshared (cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t cys_get_Current_m04F1E8E43C0FE931BD84ED9D05E29CD561CB7E35_gshared_inline (cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool cys_MoveNext_mFF58230C5D859148565FBB6CAEC74B3D61D461D0_gshared (cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_idj_m26594FAB1E17F4473EBA11E666067ECCC47677A0_gshared (cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_mnk_mB5DE0B2F1F886F1EE1CE0DF90F8CAF159CDCA671_gshared (cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_Dispose_m43D751C8B5A3B79B0C44BB191F842E7994B6D2BA_gshared (cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys__ctor_m561ABAEF039B47DBBEF5E346EA307714237B8138_gshared (cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065* __this, cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* ___0_a, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_jky_m1D71798355FDB8FB552C3BAD9E376DB1B04604DD_gshared (cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_idi_m26C5A1CF1CA835C8C3E0BF36536016E8808CAC6A_gshared (cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* cys_idk_m6F0CCD05E11FFBF7A29A18CAD3F4E44C464E1851_gshared (cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_dv_mA7FE9872507775A721481BE2C981EA899565DE68_gshared (cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* cys_get_Current_mBF618832B19ECD7644087857AE13039362481B5C_gshared_inline (cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool cys_MoveNext_mFEA0C00CDB2FC25555A75298A448171C29239868_gshared (cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_idj_mF8ED6E00BF58C290FD611FFFEFDBC3C2C9B51465_gshared (cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_mnk_mD5CB7696922B45B312F1395C958B39E8ABF771F7_gshared (cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_Dispose_m5704E78F0DF91B2856629CCDD120DE0B2DF17AD5_gshared (cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys__ctor_m4BCA1B780A5FA6658EB7974E509C0F58771C4A1F_gshared (cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857* __this, cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* ___0_a, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_jky_mE38620D3FCEDDC2E37A8AA2E29B3C62F62206719_gshared (cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_idi_mD4E833D0B5B0DAA452953AB0AD804032A1FB7E9A_gshared (cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* cys_idk_m00F1FC50C5B1BBB70A7700973D4878E72788ED63_gshared (cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_dv_mE2CEC891F6190A279C31D1C1A132175EAEED7AB3_gshared (cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float cys_get_Current_mDCFC317836094DBF4A2F23AF67AEC4505685C6BC_gshared_inline (cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool cys_MoveNext_m3A6C013181A0F1493B082783A27ECCD9C5D2D5CB_gshared (cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_idj_mAA5527932AEB4C6FC9FBBDCFD85348144DCF3BC9_gshared (cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_mnk_m793978B020E8FF35045BE207DF98DD26282FFAAF_gshared (cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_Dispose_m6DD2299EE74011189272210BA118FA0B4722CF23_gshared (cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys__ctor_m776E11C882C387E994659DD659698D509DCF6466_gshared (cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A* __this, cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* ___0_a, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_jky_m65928A9C5852F7531985D0B5142D86AD0009DA25_gshared (cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_idi_mC0CD4F7DAEB0F98C99863B8887A8AE541B6AE0FD_gshared (cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* cys_idk_mB40E94A2E9F48BA1837B662A662D32FBD9145A7F_gshared (cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_dv_m0661DA4FD78750FB87084FFFEC07C50DA3463EEA_gshared (cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 cys_get_Current_mDF53D0EC8DE9A04D8A6EBB01B063F4CF698AB87A_gshared_inline (cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool cys_MoveNext_m13AB4BB32E0A1CEFAF8782295EFE08BD8E6C545F_gshared (cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_idj_m40CECDE3418DE5074D1A0B2ED5D621C9E067F890_gshared (cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_mnk_mE9CAAE3F53BDCB9B94D554B06D28415CF2AEC2A7_gshared (cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_Dispose_mADDA5FCE8456AE8104C66667C3E6D60FAB9DE064_gshared (cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys__ctor_m2E43A753F45BE7DE9C04594A748BD8C74F1B4339_gshared (cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B* __this, cyt_1_tAC49A9A02241EC5ED0F5205BDF7AE399C207BC04* ___0_a, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_jky_mFD60D17A527BF765DC0D75691A5EB1F3425EFEBE_gshared (cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_idi_mC11161AD9BA3C101D6537ACBE22E764F37DC0D7D_gshared (cys_t77E50E15C644A5869C604882F1C802434F0A13BF* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* cys_idk_mF641E332F0B2EE0E2923C3BE0DAE494BCF631CA7_gshared (cys_t77E50E15C644A5869C604882F1C802434F0A13BF* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_dv_m12BB373BBEC4E89ED235E21807CC777B2B100864_gshared (cys_t77E50E15C644A5869C604882F1C802434F0A13BF* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 cys_get_Current_mB80B9F698D53881E8BDE21444ADDBE6794BBD328_gshared_inline (cys_t77E50E15C644A5869C604882F1C802434F0A13BF* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool cys_MoveNext_m039B3EE352604CD32240D2603C30C560E7776AEB_gshared (cys_t77E50E15C644A5869C604882F1C802434F0A13BF* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_idj_m83E21C37047B78003A2D4C023FDD9A37D0C37670_gshared (cys_t77E50E15C644A5869C604882F1C802434F0A13BF* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_mnk_mD4FA4245687059585F0482F4ABAF8AC92143A208_gshared (cys_t77E50E15C644A5869C604882F1C802434F0A13BF* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_Dispose_mA64CA0E0391020D502C075CC2BE0495C4C8C0AFF_gshared (cys_t77E50E15C644A5869C604882F1C802434F0A13BF* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys__ctor_m9549D2A0F20C5E3C6B6CEDBA25E65FF923FCE390_gshared (cys_t77E50E15C644A5869C604882F1C802434F0A13BF* __this, cyt_1_t8D44FE5690EE0881636F8CACF4B1781DB7253688* ___0_a, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_jky_m9307CFC6654090089F2E8AC51C5CC1696067CADB_gshared (cys_t77E50E15C644A5869C604882F1C802434F0A13BF* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* cys_idk_mDDBE95613A26344185419E20B53399E033C8C705_gshared (cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_idi_m92B334BDB5A1E6A68983E0B1DCB6E93B7C657691_gshared (cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_dv_mEB8101A65517AF34070833F2B921D3CFEB76FDA3_gshared (cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void cys_get_Current_m3EBD976DFDC709C10833CE3C65A5CBF1183E81FF_gshared_inline (cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6* __this, Il2CppFullySharedGenericAny* il2cppRetVal, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool cys_MoveNext_mDF570482FC3C4783273A59DD8758A1017023CAC2_gshared (cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_idj_mB658C70034E229BF4091A1A1BDF4492F817C6318_gshared (cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_mnk_mE46450750F4D5059E70877C9109B3794BC698DD5_gshared (cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_Dispose_mB8B112839E3195BAE6F1071D95D667C469F370C8_gshared (cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys__ctor_m59655E395274A60591B39B246479C7BFA6047918_gshared (cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6* __this, cyt_1_tE46DA8E7A261663B67DB2F6E839FA69F43D02A30* ___0_a, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_jky_m94AB67D19B9396EE7E1E0257B90A9213FCEE2448_gshared (cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_idi_m95172B6333C1FB31D470FE6D031A33468E13D721_gshared (cys_t365734F47A79063EC450869FBF066C01AC209CAB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* cys_idk_mA76614A09D1B3197A228B19491370C793E9D860A_gshared (cys_t365734F47A79063EC450869FBF066C01AC209CAB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_dv_m10417B7B218B9CEE503FF3D3C536EB2BD588F954_gshared (cys_t365734F47A79063EC450869FBF066C01AC209CAB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR dbw_tEF892A66F1417E423BAA34A1EE22306A5B496ABE cys_get_Current_mD9E7BB9E8CDEACBA8743666545079A6A0EF018C9_gshared_inline (cys_t365734F47A79063EC450869FBF066C01AC209CAB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool cys_MoveNext_m5DF8A208D0E6686A231FD1E513C7AB13B293EB93_gshared (cys_t365734F47A79063EC450869FBF066C01AC209CAB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_idj_mE6EF86F50BFECDD7713CE099D5BDF593ECC1A40B_gshared (cys_t365734F47A79063EC450869FBF066C01AC209CAB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_mnk_m04B598FD5F78FDB4CF19F395B1B54102D16025AB_gshared (cys_t365734F47A79063EC450869FBF066C01AC209CAB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_Dispose_mFA59393BC3809E7FBCB43229FFFAEAE8BC6BD775_gshared (cys_t365734F47A79063EC450869FBF066C01AC209CAB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys__ctor_mD2F7B1CBBE01256939793123A18D55B930542212_gshared (cys_t365734F47A79063EC450869FBF066C01AC209CAB* __this, cyt_1_t195133DDC4F4198CCCCFD063FFB746780BBCE98F* ___0_a, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_jky_mCC93C312A5095EE3177001ECE0772467ACF3B45A_gshared (cys_t365734F47A79063EC450869FBF066C01AC209CAB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idu_m19A3803CC32F886BEE7ED1A7A9B025445C8824D5_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, RuntimeObject* ___0_a, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idn_mB44CD7B73297D9EB78D98089D1049A77C185740E_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, RuntimeObject* ___0_a, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idm_mDBE626649C20EE56AB09C271CBED41C7D0A4D648_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, RuntimeObject* ___0_a, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_get_Capacity_m873E1F2B4E91E2EABDA65C6D6761D4A06D50E2F5_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_set_Capacity_mEFCC5C996BD8F4399A2732A86673F025DA38AA3B_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_ids_m2D7113C5C63FC4A32BF8B9B23A509D9AD026E4A1_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_a, int32_t ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_t075B18A0921F760D040E0D8BFE6637CE0E1587E4* Comparer_1_get_Default_mCFD1A9E7464C248AC312558B9D4F772D8BE3B07C_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Sort_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mCADEE7E401B19F98A7128D14C34529B99C2A5FB1_gshared (BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___0_array, int32_t ___1_index, int32_t ___2_length, RuntimeObject* ___3_comparer, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mF5D007014F2546628D6B17F48DE03086E13BB12B_gshared (BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___0_array, int32_t ___1_index, int32_t ___2_length, bool ___3_value, RuntimeObject* ___4_comparer, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idl_m4B8A33E4A5122A586A0E5955F3EF67917EB10A33_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_a, int32_t ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idt_mA6658BB30895E3BBE1646640F38069C703E6EFE1_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_a, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_LastIndexOf_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m845D2B272174E19367C54194C2C1E463C292547A_gshared (BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___0_array, bool ___1_value, int32_t ___2_startIndex, int32_t ___3_count, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_IndexOf_m3849088A6F73B9B70D237B153305E1F935DE2760_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, bool ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_RemoveAt_m8E67B4F554A52DB59D68A0F384CE64C880D95D14_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_GrowIfNeeded_m170426BB762510B0EDC7469DBDFF3E358DDEDD8F_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_addedCount, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_CopyTo_mC4E0CA80BB53FD1C5A24F88BFC48ED39250BC46C_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___0_array, int32_t ___1_arrayIndex, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_ido_m998DEE4F346CB07D570680ACD85014B00749B5A8_gshared (Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* ___0_a, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_idq_mAC1FDAFCE883432EA61DA621FAA2C270ABDB046A_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_a, int32_t ___1_b, Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* ___2_c, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* cyt_1_idp_m4DB8872250D16654B5E6BC549AFF82FB8AF9F1E0_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* ___0_a, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1__ctor_m98E820B107202E0F4FA5C04E41CD82CA1743B5C2_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m5EB17D73F75C175B835656A7C7C137A266E07928_gshared_inline (Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* __this, bool ___0_obj, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Add_mCB89DC75FC1990D446177FD25B269F8BF6305156_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, bool ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Reverse_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m12308A79AECE5E7D2D300ACDABDA0DC883476BC9_gshared (BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___0_array, int32_t ___1_index, int32_t ___2_length, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Insert_mEF46D0C9064528201BD359AEEE002ED6ACCE8FE5_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_index, bool ___1_item, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_m69C8773D6967F3B224777183E24EA621CE056F8F_gshared_inline (Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C* __this, bool ___0_obj, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_idr_m168B6DDAF2B371966ABD6C225FD1E5E1ABEE5E0B_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_a, int32_t ___1_b, Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* ___2_c, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m48C663051095D0B18F3E04B9352AACE522354A3D_gshared (BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___0_array, bool ___1_value, int32_t ___2_startIndex, int32_t ___3_count, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idv_m306D5A3D5085E76FF467536D645B7ED55EFA7D12_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_a, RuntimeObject* ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idw_m9D40ED1670DE81E52B3C94AFACC0C4BB36B0FCCA_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_a, RuntimeObject* ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5 cyt_1_GetEnumerator_m43B57AE5935381216C9E234AEA4549AE4BE07266_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Sort_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m7B5281A5A9295B2A6047BF97966CAE19B6177FAB_gshared (BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___0_array, Comparison_1_tF15DB3AEC82E2B8B1BF7E34C4EAB7D1031840D68* ___1_comparison, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Resize_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mBCB506488726A4601272E5DDC33649D64938A4F2_gshared (BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4** ___0_array, int32_t ___1_newSize, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m27607EF8994F821461C232E917EC9DA328027C4F_gshared (BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___0_array, int32_t ___1_index, int32_t ___2_length, bool ___3_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1__ctor_m8760951D19E06D7D726B915E5416D0C816E57939_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___0_a, int32_t ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idu_mB554082BA3DCC6D79880A04CC3CF3DCEE515E1C5_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, RuntimeObject* ___0_a, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idn_m2193B2639133F531DFE87BF688FD3D95F744DC87_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, RuntimeObject* ___0_a, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idm_m6E084CF983BD0548EBB9CDB7E0429E8CAFCCE470_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, RuntimeObject* ___0_a, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_get_Capacity_m02CB722643B2B3A6B5D4DBF3E7B973E31BF1D21D_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_set_Capacity_m80512E7F8AB3648DB3FD429E18528E8617E89F98_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_ids_mD8353B1327BE0F02A0B4EF33D20F04B6FFD850CC_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_a, int32_t ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_t2158F98C5484AAD9CDBEC169B93B8E28C528F647* Comparer_1_get_Default_mB05937E8B4EB28971561831884D5D55B86740198_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Sort_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_m1BC51854203A2823C849C9959B4FD7EAC0990E9D_gshared (Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* ___0_array, int32_t ___1_index, int32_t ___2_length, RuntimeObject* ___3_comparer, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_m4105FC846F0210DFB1493B8502107DFC7F4447FA_gshared (Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* ___0_array, int32_t ___1_index, int32_t ___2_length, Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___3_value, RuntimeObject* ___4_comparer, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idl_mADCCA47F644A1F7500357A65BB86B338ADF548C3_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_a, int32_t ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idt_m4A73A45DF238AEF2B34C0AF09F0884E2BD83885A_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_a, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_LastIndexOf_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_mFEAF1A193068B027D29AA4614282DCBEB658B5E6_gshared (Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* ___0_array, Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___1_value, int32_t ___2_startIndex, int32_t ___3_count, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_IndexOf_mD4DE311DFCDE7BC9471A97058A057499D3B0F273_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_RemoveAt_mC354F97146551F70D5F076D59A503C9B81BF1635_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_GrowIfNeeded_m0B3BB1894C2FC2DD110375B51DB03C40E568E63F_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_addedCount, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_CopyTo_m2E27CC58C0654ECFA9A9C65E5654B2D518194D08_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* ___0_array, int32_t ___1_arrayIndex, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_ido_mF9A49B8ACE89034950993E4975E418968023288D_gshared (Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* ___0_a, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_idq_m94AB47CE34F9EA1E45C125E36E4A3F259842F68F_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_a, int32_t ___1_b, Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* ___2_c, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* cyt_1_idp_m9078BA25FE77572093F2F6BB4D4A555D417A4F5A_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* ___0_a, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1__ctor_m2CB897D767D4305D514457B6FEE95CF63A8B0FF8_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mDADE161CEBD2C998D731FDAEB5F81BFCD7F4B984_gshared_inline (Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* __this, Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___0_obj, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Add_m665ADCD997B066832AA5791D41EDBF09E2B058D1_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Reverse_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_mED878CBBB3A2B00E856FEEB4E0CAB3716075485F_gshared (Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* ___0_array, int32_t ___1_index, int32_t ___2_length, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Insert_m9648AA1239EFCA964A85C7C33375C7513000FDC2_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_index, Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___1_item, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_m85DAE826CA357D0983BCC4F60DC807727254AC42_gshared_inline (Action_1_tA0F10A9285403FFE399C24B340DC3300881DE735* __this, Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___0_obj, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_idr_m0C5B2440BF77A3C6ECEF39603A4C5E3EEAC9A718_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_a, int32_t ___1_b, Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* ___2_c, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_m4A144DC89C23111FE2293A75D78A9265CECBC2B6_gshared (Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* ___0_array, Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___1_value, int32_t ___2_startIndex, int32_t ___3_count, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idv_m9C1D72AE7519FC36E50E0513B004A8B2DDB3DAFF_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_a, RuntimeObject* ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idw_mC1F81649E03DE291435B4B7110D8458DCB26BDFB_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_a, RuntimeObject* ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E cyt_1_GetEnumerator_mFC1C25E64E63822D19CD354C3A2B0271CE1BE0CF_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Sort_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_m6FA55327636C69CCD08BCF2DAE2FBE8F99EFE05C_gshared (Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* ___0_array, Comparison_1_t939FA5753922E5ECCF481BF4BC889604ED91887E* ___1_comparison, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Resize_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_m848A8FC319792F387E6DF3EC87DF9E9685763375_gshared (Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259** ___0_array, int32_t ___1_newSize, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_mD6B304F2750E88FFAAADD4B2F0C93AD705FA0E4B_gshared (Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* ___0_array, int32_t ___1_index, int32_t ___2_length, Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___3_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1__ctor_m93DE95E671C9DB89E17A54005E9E05E30CCAD6C6_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* ___0_a, int32_t ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idu_mB71D47073B98FA75225C4AFFA5A0B6DC63EF3823_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, RuntimeObject* ___0_a, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idn_m9805CD68ED7630DC4295D68C9F20DC4EA0178EBA_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, RuntimeObject* ___0_a, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idm_m44A1224F81DCBACBE89297478537AE8FF7BAE3A0_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, RuntimeObject* ___0_a, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_get_Capacity_mC0F5D69F3BB786AD478112777FF0EBF0E5B3BE14_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_set_Capacity_m722108BF059153BAE79C7EDF507EEB48C779F8FC_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_ids_m56BADCBF779101B71239D09D1AC3BFD3BE04EB76_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_a, int32_t ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_t2FF14F26F4D678A8FA199B888FF61A2A9D1D2D80* Comparer_1_get_Default_m55220E2A5C7845F68201F047E7DA0D708E8AE051_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Sort_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m6E0CF4C26182BB9D788C90ABE423C2F4CD145E41_gshared (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___0_array, int32_t ___1_index, int32_t ___2_length, RuntimeObject* ___3_comparer, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC9C8319715804B003E1E2802B394C514987FE618_gshared (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___0_array, int32_t ___1_index, int32_t ___2_length, int32_t ___3_value, RuntimeObject* ___4_comparer, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idl_m9000500F726149135080EFE12D9BBAEF68A8F3E7_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_a, int32_t ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idt_mC8A7F5432D2B0C10A4FC495599BF439C9231C2CD_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_a, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_LastIndexOf_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m459730221F1EEF97FEF185B13132174BA7CA27E5_gshared (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___0_array, int32_t ___1_value, int32_t ___2_startIndex, int32_t ___3_count, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_IndexOf_m51B723D3B69FAA8FC99A1093B193B7C6CFD473D6_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_RemoveAt_m8AE91E06CFE08993B2E47188E5C7C09B80A656C0_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_GrowIfNeeded_mDE655F2F7E4C2CBBC0AF9F6B1D6495A454CB7B62_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_addedCount, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_CopyTo_m6B41E78E39EAC0EDE3BE6B11546680A49E56D0D7_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___0_array, int32_t ___1_arrayIndex, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_ido_m6E1F1840CE1042CBBDCE5686A52B9B4884A332FF_gshared (Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* ___0_a, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_idq_m277DA1C68B800F6AD2005F513FB13D938963D694_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_a, int32_t ___1_b, Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* ___2_c, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* cyt_1_idp_m8AC262B8D0D87C20D8C9E5682AC8F7AEF785D869_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* ___0_a, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1__ctor_m021E3F2A9C6CFC552E6BA8E26A5007A71CF8C5E8_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mD16C664FFE93598D1C12AC86190D12B0F90B5419_gshared_inline (Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* __this, int32_t ___0_obj, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Add_mCD1FDB026EDEF17E305F5BD1B7BD1343EEFC18E1_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Reverse_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m57764BD8E3718881AE35094284EFDECEE528991D_gshared (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___0_array, int32_t ___1_index, int32_t ___2_length, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Insert_mA3A7F8F2AC7025947EE084A5EF68EA74C32A8547_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_index, int32_t ___1_item, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_mAC3C34BA1905AB5B79E483CD9BB082B7D667F703_gshared_inline (Action_1_tD69A6DC9FBE94131E52F5A73B2A9D4AB51EEC404* __this, int32_t ___0_obj, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_idr_mEC77EFD170677B6E5B6A435A594242EF65E066D2_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_a, int32_t ___1_b, Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* ___2_c, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m22CB8CB6C30E1C3E70C8662D7A290B88EF5007F3_gshared (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___0_array, int32_t ___1_value, int32_t ___2_startIndex, int32_t ___3_count, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idv_mF1515FBCC4256BFD76AEB704FAD02947DB84E108_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_a, RuntimeObject* ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idw_m0D76C6F99DE2ED792EE82D9C14803C913708B11E_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_a, RuntimeObject* ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065 cyt_1_GetEnumerator_mC4775BAD51A8AF0F8D1BAE481A469E023E6A62BF_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Sort_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m89052CD0450CDEC0AE040F2D1982E4DD33A12EF8_gshared (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___0_array, Comparison_1_tB7DE1436CB53924C2FC41FF926D074C1ACC14D89* ___1_comparison, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Resize_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m6BAA7BD6F22421B894347B1476C37052FAC6C916_gshared (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C** ___0_array, int32_t ___1_newSize, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m93F68F536E2565B21E3E5DA8695618C139B67FC0_gshared (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___0_array, int32_t ___1_index, int32_t ___2_length, int32_t ___3_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1__ctor_m9DD32B05F38190D7683C2B268473612A12E7B474_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___0_a, int32_t ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idu_mF72A8F55A50DCEE743B00B09FB7A90645B4E2DBC_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, RuntimeObject* ___0_a, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idn_m346C0CFFD2CC30D0E4A4797254C49F5409FA8930_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, RuntimeObject* ___0_a, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idm_m631EC9E3D21BDD7A5BD295DEB5197651FCC481AF_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, RuntimeObject* ___0_a, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_get_Capacity_m25BBFD31E5869C5345D8C149836A1AC006302696_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_set_Capacity_m4AFFC21E90B87652650BECBF215353E7F0FAA683_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_ids_m6B1036E5DA03649E5121870B07DCD459DFED50BA_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_a, int32_t ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_t0A03F9FBBEA32FB1528366652D3D38513E8B1137* Comparer_1_get_Default_mBE201B8DE0399BC709123B087F2215883366753F_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Sort_TisRuntimeObject_mF8C07FB088390BE91CF3D4F9C8C4AC052B3FBCBA_gshared (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___0_array, int32_t ___1_index, int32_t ___2_length, RuntimeObject* ___3_comparer, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisRuntimeObject_m5B818220FAB53B22E61917AC1A8AE36C1B1DA151_gshared (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___0_array, int32_t ___1_index, int32_t ___2_length, RuntimeObject* ___3_value, RuntimeObject* ___4_comparer, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idl_m86740E04EE6C8C56BA0FAEA89C51CA570D0713FB_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_a, int32_t ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idt_m9D16DBE0051863DFFE480EAC4C8C87EA6DD6B353_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_a, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_LastIndexOf_TisRuntimeObject_m71A883897624019E6587A0716169FDF72475BC3D_gshared (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___0_array, RuntimeObject* ___1_value, int32_t ___2_startIndex, int32_t ___3_count, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_IndexOf_m8B0A0B29CC140DDD6EB5E7843FF5BBD6886786D1_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, RuntimeObject* ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_RemoveAt_mEFA444476CFC5CD00EE1AE15712D5AA3CCAEF48C_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_GrowIfNeeded_mEC3F45D7117DE0334F2D60DC340F0B049A7CF616_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_addedCount, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_CopyTo_m23EB801CB3FE7930AE6A743D5FDEDAFA7A1C537A_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___0_array, int32_t ___1_arrayIndex, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_ido_m3DDDB78E59C3C27140EA4944DF5910E6994A2B60_gshared (Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* ___0_a, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_idq_m5F41A40EFD751257A620EC81EE5C2F81E67F8E19_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_a, int32_t ___1_b, Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* ___2_c, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* cyt_1_idp_mF5E6A0282AFB776850E197F0AC2F8E6AF1034780_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* ___0_a, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1__ctor_mFC67434B16EC7C3504CD32D1618B4BBB327D2EF2_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m6AC449189DCEE89A4FA2A2B724DE296A1DFB6A9B_gshared_inline (Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Add_mB0A91C50406EC0F3EDAF35DF0AC1667D6E429B4C_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, RuntimeObject* ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Reverse_TisRuntimeObject_m06FF2E5011A594BEE1AF5EC3AEA51997A9812FE1_gshared (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___0_array, int32_t ___1_index, int32_t ___2_length, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Insert_m4D389AA2029794265B17FA549C154713C86357BC_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_index, RuntimeObject* ___1_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_idr_m6E400D24DCC5D8A9C8DEAF5401A9A2C7FEFD5F55_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_a, int32_t ___1_b, Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* ___2_c, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisRuntimeObject_m4C0C698B1D627E6B3C3BE6DDA512E8E276DC6F73_gshared (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___0_array, RuntimeObject* ___1_value, int32_t ___2_startIndex, int32_t ___3_count, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idv_mB734D87440F4979238E674EFDF3233270B6A8459_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_a, RuntimeObject* ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idw_m90DF59ECB74CEF8020FE1177408747CEDD0F94CA_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_a, RuntimeObject* ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857 cyt_1_GetEnumerator_m6E9674491979BB9A77201A6544F38E85D36FE6C9_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Sort_TisRuntimeObject_mFC83E20748A5276FAA7611C2DCFCAE00737CF389_gshared (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___0_array, Comparison_1_t62E531E7B8260E2C6C2718C3BDB8CF8655139645* ___1_comparison, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Resize_TisRuntimeObject_mE8D92C287251BAF8256D85E5829F749359EC334E_gshared (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918** ___0_array, int32_t ___1_newSize, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisRuntimeObject_m0C39C82AF29428CA1CFFE2E303EC3AE0524AB972_gshared (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___0_array, int32_t ___1_index, int32_t ___2_length, RuntimeObject* ___3_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1__ctor_mF8FF5307C386D30BCFDEF46CA5B3EC1EEA8A67F1_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___0_a, int32_t ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idu_m045460097664945547A819F2E2D01D661A7D1303_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, RuntimeObject* ___0_a, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idn_m2769E9B672B74E52436BF7223D50B494A54CDA53_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, RuntimeObject* ___0_a, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idm_m8577A86A9861B9C4FC4D6404B4BC48BE45294F22_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, RuntimeObject* ___0_a, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_get_Capacity_mBAB0C7E76D9BF3B1F51614FB50BD88B4CF2060B2_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_set_Capacity_mF395B9D346B4FB470B2C5D29964B39C0E4ED4904_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_ids_m32F0E8A04ED56B0558D5567B4800E6CB67F2009F_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_a, int32_t ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_tE191E68CB394DD255CCA7A56F4D1DEFED0BD3FDB* Comparer_1_get_Default_m274A64D04DB3423C1B692B26E7B2218981F713D4_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Sort_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m7FDDF374B16885120D44BAE29B0FC6700486F5CF_gshared (SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___0_array, int32_t ___1_index, int32_t ___2_length, RuntimeObject* ___3_comparer, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m95B7C2BAA1A1E7FF65E4539C686A8F526F77E395_gshared (SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___0_array, int32_t ___1_index, int32_t ___2_length, float ___3_value, RuntimeObject* ___4_comparer, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idl_m9443E75977721CAA99CE6060F6826D5DE4E53417_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_a, int32_t ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idt_m3D44776058675A4A3BB595C5D79485A7C7B468A8_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_a, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_LastIndexOf_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m5828CE6FEB3BA43326FFAC8DB31AB2828091E739_gshared (SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___0_array, float ___1_value, int32_t ___2_startIndex, int32_t ___3_count, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_IndexOf_m31A176E5E262CBD867751551FAE5C3827C3932AD_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, float ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_RemoveAt_mED7ACB98EA17CBDB1C6D3A5109DB12E18766FC1F_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_GrowIfNeeded_m3028A12042A36ADC680C0375E149D27AC5C4031D_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_addedCount, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_CopyTo_mA2FCEB9EC414F6434BE7B3498737C6789E14FBB4_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___0_array, int32_t ___1_arrayIndex, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_ido_m6C7C98A919E9A4A111E2B81C250FD8523C25E097_gshared (Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* ___0_a, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_idq_mF2F1578B9ED97BCA37DE0953C6682E88DA40F257_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_a, int32_t ___1_b, Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* ___2_c, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* cyt_1_idp_m495F06828A6D8CCE019C1C325C2613EB79FF89E5_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* ___0_a, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1__ctor_mE4B559B055FAAB946A46DF1717AD16B3AE43C9D2_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m4E65B2A24A1D224A284A6E2ECCA25CD11AFDE9F3_gshared_inline (Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* __this, float ___0_obj, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Add_m4C9039011EEBF361C4245CE00A68347276F8FA4F_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, float ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Reverse_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mD41090447225BE17383C1E8369E166FB72991CE8_gshared (SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___0_array, int32_t ___1_index, int32_t ___2_length, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Insert_m45C6FA082F2119F89278ABC7165007782B083892_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_index, float ___1_item, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_mA8F89FB04FEA0F48A4F22EC84B5F9ADB2914341F_gshared_inline (Action_1_t310F18CB4338A2740CA701F160C62E2C3198E66A* __this, float ___0_obj, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_idr_m1658FDF970BCC0624BFC9706AF43BCC1D83AB0E2_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_a, int32_t ___1_b, Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* ___2_c, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m858F1C0E1DD59AF384654973FA814AC359896F57_gshared (SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___0_array, float ___1_value, int32_t ___2_startIndex, int32_t ___3_count, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idv_m55E542B18F7CD8417F7B80E632165D39BB66AAAA_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_a, RuntimeObject* ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idw_mE89E5125CEC7A637F410B6F4BF741926610A39D0_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_a, RuntimeObject* ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A cyt_1_GetEnumerator_mA49A91798755AC9B68256C6FC42F823B8261A1F9_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Sort_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m4F0C5938E183315C342F727129047120834D2572_gshared (SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___0_array, Comparison_1_t11F78E54645546468696C9CAAB9785713FDD3C1D* ___1_comparison, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Resize_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m879C2A54DAFE78F46D1185B50ED527EE182BFB04_gshared (SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C** ___0_array, int32_t ___1_newSize, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_BinarySearch_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m9C818DD66A1602A12D30F5B73B7FB1929B02A37B_gshared (SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___0_array, int32_t ___1_index, int32_t ___2_length, float ___3_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1__ctor_m25ECE61ACD95871B1375F86C4DF54C56087A19D5_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___0_a, int32_t ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void List_1_AddWithResize_m79A9BF770BEF9C06BE40D5401E55E375F2726CC4_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void List_1_AddWithResize_mAD159B09F28BD7914562E219CA52E2D4BDCF5530_gshared (List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* __this, int32_t ___0_item, const RuntimeMethod* method) ;
|
|
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2 (RuntimeObject* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602 (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___0_x, Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___1_y, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bxf_RecordGameObject_mD72FFD37244F6138E17BEB7F28DB05965AF805DC (bxf_tF0EC3D2849529B5B131A64D9C49D38059B122A53* __this, String_t* ___0_assetName, Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___1_gameObject, const RuntimeMethod* method) ;
|
|
inline void UnityAction_1_Invoke_m777839BF9CB9F96B081106B47202D06FB35326CA_inline (UnityAction_1_t9C30BCD020745BF400CBACF22C6F34ADBA2DDA6A* __this, RuntimeObject* ___0_arg0, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (UnityAction_1_t9C30BCD020745BF400CBACF22C6F34ADBA2DDA6A*, RuntimeObject*, const RuntimeMethod*))UnityAction_1_Invoke_m777839BF9CB9F96B081106B47202D06FB35326CA_gshared_inline)(__this, ___0_arg0, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void wj_set_wrapTarget_m1CCBCE2C8CAA38E1D20B90100F9FC8948A91320F (wj_t5F4B191138DD4E91C1888EF23759495DECFB8E15* __this, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bcq_SetNativeObject_mC3DB538E2BD0E86BDE12F23719CF742EA9BD714D (bcq_t5702A62DE12536217F8A85320DBDD15BED5468B8* __this, wg_t7CFF9CE7F816A6AA614B64D7E254ED1117E89A47* ___0_obj, const RuntimeMethod* method) ;
|
|
inline void FXManager_RecFx_TisRuntimeObject_m5407E2E3FF808A4D0DBD1017D9B7EF6975A89483 (FXManager_t121CBC90514365E0FF3D7A1BB2E8E28F805C703C* __this, int32_t ___0_fx_Type, RuntimeObject* ___1_obj, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (FXManager_t121CBC90514365E0FF3D7A1BB2E8E28F805C703C*, int32_t, RuntimeObject*, const RuntimeMethod*))FXManager_RecFx_TisRuntimeObject_m5407E2E3FF808A4D0DBD1017D9B7EF6975A89483_gshared)(__this, ___0_fx_Type, ___1_obj, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Object_get_name_mAC2F6B897CF1303BA4249B4CB55271AFACBB6392 (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1 (String_t* ___0_a, String_t* ___1_b, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605 (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___0_x, Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___1_y, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m9E3155FB84015C823606188F53B47CB44C444991 (String_t* ___0_str0, String_t* ___1_str1, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2 (RuntimeObject* ___0_message, const RuntimeMethod* method) ;
|
|
inline RuntimeObject* bys_fxz_TisRuntimeObject_m662138EFEA1495F1678C92928541292BB5D3958A (bys_tB5A77FB3B9BFF0674CB0A35A11C2840B5D838782* __this, AssetBundle_tB38418819A49060CD738CB21541649340F082943* ___0_a, String_t* ___1_b, UnityAction_1_t9C30BCD020745BF400CBACF22C6F34ADBA2DDA6A* ___2_c, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (bys_tB5A77FB3B9BFF0674CB0A35A11C2840B5D838782*, AssetBundle_tB38418819A49060CD738CB21541649340F082943*, String_t*, UnityAction_1_t9C30BCD020745BF400CBACF22C6F34ADBA2DDA6A*, const RuntimeMethod*))bys_fxz_TisRuntimeObject_m662138EFEA1495F1678C92928541292BB5D3958A_gshared)(__this, ___0_a, ___1_b, ___2_c, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Coroutine_t85EA685566A254C23F3FD77AB5BDFFFF8799596B* bzd_StartCoroutine_mE76063363E3C1913BA13681D2D69708B5E2DFF4B (RuntimeObject* ___0_enumerator, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57 (RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ___0_handle, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC (Type_t* ___0_left, Type_t* ___1_right, const RuntimeMethod* method) ;
|
|
inline Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4* AssetBundle_LoadAsset_TisTexture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4_mBBDD2C33F8D21622F7611AC9E5404B3755EF16F6 (AssetBundle_tB38418819A49060CD738CB21541649340F082943* __this, String_t* ___0_name, const RuntimeMethod* method)
|
|
{
|
|
return (( Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4* (*) (AssetBundle_tB38418819A49060CD738CB21541649340F082943*, String_t*, const RuntimeMethod*))AssetBundle_LoadAsset_TisRuntimeObject_m7F36E1C08FC32ADB47C34513522D958FA6E09C47_gshared)(__this, ___0_name, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Rect__ctor_m18C3033D135097BEE424AAA68D91C706D2647F23_inline (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* __this, float ___0_x, float ___1_y, float ___2_width, float ___3_height, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* __this, float ___0_x, float ___1_y, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* Sprite_Create_m827A9BDEC4566AB71966A40DB48A09BB064D81E7 (Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4* ___0_texture, Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___1_rect, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___2_pivot, const RuntimeMethod* method) ;
|
|
inline void byf_1__ctor_mD89D65020C5649E9C9AA7F4E5840D1898FF23EA6 (byf_1_t99A0AD00347E895ECDD71483F7502B35A8FFE3CE* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (byf_1_t99A0AD00347E895ECDD71483F7502B35A8FFE3CE*, const RuntimeMethod*))byf_1__ctor_mD89D65020C5649E9C9AA7F4E5840D1898FF23EA6_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* String_Split_m9530B73D02054692283BF35C3A27C8F2230946F4 (String_t* __this, Il2CppChar ___0_separator, int32_t ___1_options, const RuntimeMethod* method) ;
|
|
inline ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* AssetBundle_LoadAssetWithSubAssets_TisRuntimeObject_mB55304F684DE41A233AB9AFEDBD182605C0AC223 (AssetBundle_tB38418819A49060CD738CB21541649340F082943* __this, String_t* ___0_name, const RuntimeMethod* method)
|
|
{
|
|
return (( ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* (*) (AssetBundle_tB38418819A49060CD738CB21541649340F082943*, String_t*, const RuntimeMethod*))AssetBundle_LoadAssetWithSubAssets_TisRuntimeObject_mB55304F684DE41A233AB9AFEDBD182605C0AC223_gshared)(__this, ___0_name, method);
|
|
}
|
|
inline void Predicate_1__ctor_m3E007299121A15DF80F4A210FF8C20E5DF688F20 (Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12*, RuntimeObject*, intptr_t, const RuntimeMethod*))Predicate_1__ctor_m3E007299121A15DF80F4A210FF8C20E5DF688F20_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline RuntimeObject* Array_Find_TisRuntimeObject_m03DE8D6544B37CBB6B339128ACC38C60CCFC4C24 (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___0_array, Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* ___1_match, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12*, const RuntimeMethod*))Array_Find_TisRuntimeObject_m03DE8D6544B37CBB6B339128ACC38C60CCFC4C24_gshared)(___0_array, ___1_match, method);
|
|
}
|
|
inline AssetBundleRequest_tED9F5504E75ED1BCFF8DA9B51F5C7356617E6621* AssetBundle_LoadAssetAsync_TisRuntimeObject_m0BF806B065BEFAAFDA6DA39D8506875A4783FCCB (AssetBundle_tB38418819A49060CD738CB21541649340F082943* __this, String_t* ___0_name, const RuntimeMethod* method)
|
|
{
|
|
return (( AssetBundleRequest_tED9F5504E75ED1BCFF8DA9B51F5C7356617E6621* (*) (AssetBundle_tB38418819A49060CD738CB21541649340F082943*, String_t*, const RuntimeMethod*))AssetBundle_LoadAssetAsync_TisRuntimeObject_m0BF806B065BEFAAFDA6DA39D8506875A4783FCCB_gshared)(__this, ___0_name, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* AssetBundleRequest_get_asset_mE9FDA3900215925371E7D15E7E19AA98713F5D6C (AssetBundleRequest_tED9F5504E75ED1BCFF8DA9B51F5C7356617E6621* __this, const RuntimeMethod* method) ;
|
|
inline AssetBundleRequest_tED9F5504E75ED1BCFF8DA9B51F5C7356617E6621* AssetBundle_LoadAssetWithSubAssetsAsync_TisRuntimeObject_m1E527522E8A6B14CCF2D0E659B5C95E7B4CE5702 (AssetBundle_tB38418819A49060CD738CB21541649340F082943* __this, String_t* ___0_name, const RuntimeMethod* method)
|
|
{
|
|
return (( AssetBundleRequest_tED9F5504E75ED1BCFF8DA9B51F5C7356617E6621* (*) (AssetBundle_tB38418819A49060CD738CB21541649340F082943*, String_t*, const RuntimeMethod*))AssetBundle_LoadAssetWithSubAssetsAsync_TisRuntimeObject_m1E527522E8A6B14CCF2D0E659B5C95E7B4CE5702_gshared)(__this, ___0_name, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_m1398D0CDE19B36AA3DE9392879738C1EA2439CDF (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* __this, const RuntimeMethod* method) ;
|
|
inline RuntimeObject* Activator_CreateInstance_TisRuntimeObject_m62506836177F0F862A8D619638BF37F48721F138 (const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (const RuntimeMethod*))Activator_CreateInstance_TisRuntimeObject_m62506836177F0F862A8D619638BF37F48721F138_gshared)(method);
|
|
}
|
|
inline bool Dictionary_2_TryGetValue_mC4BAAD0B9003BA1A0996AEC8E2415290C88D5626 (Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3* __this, RuntimeObject* ___0_key, List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0** ___1_value, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3*, RuntimeObject*, List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0**, const RuntimeMethod*))Dictionary_2_TryGetValue_mD15380A4ED7CDEE99EA45881577D26BA9CE1B849_gshared)(__this, ___0_key, ___1_value, method);
|
|
}
|
|
inline void List_1_Add_mA7C789A830108A82F925F9EB53FFC1F288C02908_inline (List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* __this, Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0*, Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___0_item, method);
|
|
}
|
|
inline List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* ctu_1_Get_mC96A8CCC1FE92484AE8DA286D73F53CCEE010706 (const RuntimeMethod* method)
|
|
{
|
|
return (( List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* (*) (const RuntimeMethod*))ctu_1_Get_m6FDFD2B5890D71DCBD099E4BA452E5B682A0485D_gshared)(method);
|
|
}
|
|
inline void Dictionary_2_Add_m5DF7838B812BFA48FC4F78E33742D699D38A431F (Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3* __this, RuntimeObject* ___0_key, List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3*, RuntimeObject*, List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0*, const RuntimeMethod*))Dictionary_2_Add_m93FFFABE8FCE7FA9793F0915E2A8842C7CD0C0C1_gshared)(__this, ___0_key, ___1_value, method);
|
|
}
|
|
inline bool List_1_Contains_mE91E9B509A957BD5C35C7D15DB8E727E656B0543 (List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* __this, Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0*, Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87*, const RuntimeMethod*))List_1_Contains_m4C9139C2A6B23E9343D3F87807B32C6E2CFE660D_gshared)(__this, ___0_item, method);
|
|
}
|
|
inline bool List_1_Remove_m2B2B28A78C773EFB5B780A7C6C71928E6F3BFA82 (List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* __this, Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0*, Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87*, const RuntimeMethod*))List_1_Remove_m4DFA48F4CEB9169601E75FC28517C5C06EFA5AD7_gshared)(__this, ___0_item, method);
|
|
}
|
|
inline int32_t List_1_get_Count_m6BD0CEA635AE2C0000530A78F8B9F52884F5E943_inline (List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method);
|
|
}
|
|
inline void ctu_1_Release_m511BE77FE01B7A86F6226E9B515D718E9F400B12 (List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* ___0_toRelease, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0*, const RuntimeMethod*))ctu_1_Release_m563D85D9D888E41461034DD76B141548B11BA2B7_gshared)(___0_toRelease, method);
|
|
}
|
|
inline bool Dictionary_2_Remove_m69B2CF6D2EEE6E6D72B5710747157C7D2E55189D (Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3* __this, RuntimeObject* ___0_key, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3*, RuntimeObject*, const RuntimeMethod*))Dictionary_2_Remove_m5C7C45E75D951A75843F3F7AADD56ECD64F6BC86_gshared)(__this, ___0_key, method);
|
|
}
|
|
inline void bzy_3_fzm_m6CA468BF994738126D75320A5236CC05E33A3741 (bzy_3_tD9B249170D3A1B921D3EF65E6F9E284BBAD0FA00* __this, Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3* ___0_a, RuntimeObject* ___1_b, RuntimeObject* ___2_c, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (bzy_3_tD9B249170D3A1B921D3EF65E6F9E284BBAD0FA00*, Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3*, RuntimeObject*, RuntimeObject*, const RuntimeMethod*))bzy_3_fzm_m6CA468BF994738126D75320A5236CC05E33A3741_gshared)(__this, ___0_a, ___1_b, ___2_c, method);
|
|
}
|
|
inline bool Dictionary_2_ContainsKey_m313391628CD5C434E52376506DA64D9F2EE1BE9B (Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3* __this, RuntimeObject* ___0_key, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3*, RuntimeObject*, const RuntimeMethod*))Dictionary_2_ContainsKey_m703047C213F7AB55C9DC346596287773A1F670CD_gshared)(__this, ___0_key, method);
|
|
}
|
|
inline List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* Dictionary_2_get_Item_m3923976893C7FE138BFBCC58E9D49AF92951B350 (Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3* __this, RuntimeObject* ___0_key, const RuntimeMethod* method)
|
|
{
|
|
return (( List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* (*) (Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3*, RuntimeObject*, const RuntimeMethod*))Dictionary_2_get_Item_m4AAAECBE902A211BF2126E6AFA280AEF73A3E0D6_gshared)(__this, ___0_key, method);
|
|
}
|
|
inline Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* List_1_get_Item_m85F9D1183840E6E92FD2B9A8140FF8412429BC7D (List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
return (( Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* (*) (List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___0_index, method);
|
|
}
|
|
inline void Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_inline (Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87*, RuntimeObject*, const RuntimeMethod*))Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_gshared_inline)(__this, ___0_obj, method);
|
|
}
|
|
inline void List_1_AddRange_m6001425A53845EC70A05419B1EEF8688A840AE63 (List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* __this, RuntimeObject* ___0_collection, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0*, RuntimeObject*, const RuntimeMethod*))List_1_AddRange_m1F76B300133150E6046C5FED00E88B5DE0A02E17_gshared)(__this, ___0_collection, method);
|
|
}
|
|
inline void Dictionary_2_Clear_mD78B8C690D23AD25039721F5FFCC4D1A8AD2997B (Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3*, const RuntimeMethod*))Dictionary_2_Clear_mCFB5EA7351D5860D2B91592B91A84CA265A41433_gshared)(__this, method);
|
|
}
|
|
inline void Dictionary_2__ctor_mC3BB37F1E33C291935A879F5451EA5D0FF70F4E0 (Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3*, const RuntimeMethod*))Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared)(__this, method);
|
|
}
|
|
inline bool Dictionary_2_TryGetValue_m574E2D32C42F11EF858E2A662AACDF016AD483B5 (Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D* __this, uint32_t ___0_key, List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0** ___1_value, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D*, uint32_t, List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0**, const RuntimeMethod*))Dictionary_2_TryGetValue_mBBE3855923B29F8A7CDB21CF7DD7FCD84AABEB68_gshared)(__this, ___0_key, ___1_value, method);
|
|
}
|
|
inline void Dictionary_2_Add_mF39D833B6D535AB303A482EA943B4199EDC86D9A (Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D* __this, uint32_t ___0_key, List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D*, uint32_t, List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0*, const RuntimeMethod*))Dictionary_2_Add_m5124CA0DFD4B9968298DB45CEDF7F4B7A1F7DF83_gshared)(__this, ___0_key, ___1_value, method);
|
|
}
|
|
inline bool Dictionary_2_Remove_mF3F1F4315C14F9F5F5438BC9156E90A8278D2D0F (Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D* __this, uint32_t ___0_key, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D*, uint32_t, const RuntimeMethod*))Dictionary_2_Remove_mAFDA1925650321D7DBD9CB992FD536B8FD2984AA_gshared)(__this, ___0_key, method);
|
|
}
|
|
inline void bzy_3_fzm_m1BEFC6D94ECF66F4749C5C225373CFE76F170A3B (bzy_3_tE18DFB7C8239FAB9D9F8C7CCCC15D422D500BC4B* __this, Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D* ___0_a, uint32_t ___1_b, RuntimeObject* ___2_c, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (bzy_3_tE18DFB7C8239FAB9D9F8C7CCCC15D422D500BC4B*, Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D*, uint32_t, RuntimeObject*, const RuntimeMethod*))bzy_3_fzm_m1BEFC6D94ECF66F4749C5C225373CFE76F170A3B_gshared)(__this, ___0_a, ___1_b, ___2_c, method);
|
|
}
|
|
inline bool Dictionary_2_ContainsKey_mAE024113093F9ED0004DAAC8C540EABC79ADE659 (Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D* __this, uint32_t ___0_key, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D*, uint32_t, const RuntimeMethod*))Dictionary_2_ContainsKey_m61654FF64053B954D62E586B09309D37EEBB9FB3_gshared)(__this, ___0_key, method);
|
|
}
|
|
inline List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* Dictionary_2_get_Item_m0662FB0F6363FAEA1D9907C6D3C8F837CB092001 (Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D* __this, uint32_t ___0_key, const RuntimeMethod* method)
|
|
{
|
|
return (( List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* (*) (Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D*, uint32_t, const RuntimeMethod*))Dictionary_2_get_Item_m1ABC559AFCB634174C216DFF864168F9D0611B91_gshared)(__this, ___0_key, method);
|
|
}
|
|
inline void Dictionary_2_Clear_m7F74C5FFAE152253F91841FBE8449AD0E3A1D8C8 (Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D*, const RuntimeMethod*))Dictionary_2_Clear_m2561EDEA2235BCE5FAED59F4E2E352FDA7C71115_gshared)(__this, method);
|
|
}
|
|
inline void Dictionary_2__ctor_mF9D3A10237994A1E954203D6B3288AFFEC0C426D (Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D*, const RuntimeMethod*))Dictionary_2__ctor_m5F2C53FF0072F4015E5D14621F555D29B1EB79E5_gshared)(__this, method);
|
|
}
|
|
inline bool Dictionary_2_ContainsKey_m9EA4D63FCC5C2DD2CBE19BA556D00AF2ECD62ADF (Dictionary_2_t61D2A8EA7B89354F704065B5DF8061AED7234EEA* __this, int32_t ___0_key, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Dictionary_2_t61D2A8EA7B89354F704065B5DF8061AED7234EEA*, int32_t, const RuntimeMethod*))Dictionary_2_ContainsKey_m874C59716993973F0A52C848B20C70C26DB9BCF7_gshared)(__this, ___0_key, method);
|
|
}
|
|
inline List_1_t9A2E2984B23260AECDFA90CEB1F2887075FA4DF3* Dictionary_2_get_Item_m27AF7E53C5A1F9361F556AD6761C4463620A648F (Dictionary_2_t61D2A8EA7B89354F704065B5DF8061AED7234EEA* __this, int32_t ___0_key, const RuntimeMethod* method)
|
|
{
|
|
return (( List_1_t9A2E2984B23260AECDFA90CEB1F2887075FA4DF3* (*) (Dictionary_2_t61D2A8EA7B89354F704065B5DF8061AED7234EEA*, int32_t, const RuntimeMethod*))Dictionary_2_get_Item_m9C4302CCAE3C1BF70D02091D0E0CED7663F18211_gshared)(__this, ___0_key, method);
|
|
}
|
|
inline Enumerator_tE4F8BFD8BC4B29A1F907A500BE1A39F6AEECF80E List_1_GetEnumerator_mA6D8F51281EF3C4183058B42C1930E0E885543EF (List_1_t9A2E2984B23260AECDFA90CEB1F2887075FA4DF3* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( Enumerator_tE4F8BFD8BC4B29A1F907A500BE1A39F6AEECF80E (*) (List_1_t9A2E2984B23260AECDFA90CEB1F2887075FA4DF3*, const RuntimeMethod*))List_1_GetEnumerator_mD8294A7FA2BEB1929487127D476F8EC1CDC23BFC_gshared)(__this, method);
|
|
}
|
|
inline void Enumerator_Dispose_mAEB2333688211862F3BF025DED14A07DF2AB6862 (Enumerator_tE4F8BFD8BC4B29A1F907A500BE1A39F6AEECF80E* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Enumerator_tE4F8BFD8BC4B29A1F907A500BE1A39F6AEECF80E*, const RuntimeMethod*))Enumerator_Dispose_mD9DC3E3C3697830A4823047AB29A77DBBB5ED419_gshared)(__this, method);
|
|
}
|
|
inline Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* Enumerator_get_Current_m0CEFF9A8B2B0E57C5DDBA1134553DEBC37719CED_inline (Enumerator_tE4F8BFD8BC4B29A1F907A500BE1A39F6AEECF80E* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* (*) (Enumerator_tE4F8BFD8BC4B29A1F907A500BE1A39F6AEECF80E*, const RuntimeMethod*))Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object_Destroy_mE97D0A766419A81296E8D4E5C23D01D3FE91ACBB (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___0_obj, const RuntimeMethod* method) ;
|
|
inline bool Enumerator_MoveNext_m3056C0403652CA8364963A1CDE5D5EACF19CB5B8 (Enumerator_tE4F8BFD8BC4B29A1F907A500BE1A39F6AEECF80E* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Enumerator_tE4F8BFD8BC4B29A1F907A500BE1A39F6AEECF80E*, const RuntimeMethod*))Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB_gshared)(__this, method);
|
|
}
|
|
inline void List_1_Clear_m51249A9DD3B29478801AC004DEA026A63D4A6D9B_inline (List_1_t9A2E2984B23260AECDFA90CEB1F2887075FA4DF3* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t9A2E2984B23260AECDFA90CEB1F2887075FA4DF3*, const RuntimeMethod*))List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline)(__this, method);
|
|
}
|
|
inline bool Dictionary_2_Remove_m777996E5B7FAE1B5D74A21E3D0A49DC7ADDB5344 (Dictionary_2_t61D2A8EA7B89354F704065B5DF8061AED7234EEA* __this, int32_t ___0_key, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Dictionary_2_t61D2A8EA7B89354F704065B5DF8061AED7234EEA*, int32_t, const RuntimeMethod*))Dictionary_2_Remove_mA2D94572DAE1E370288187F54B99416C7DB26A5B_gshared)(__this, ___0_key, method);
|
|
}
|
|
inline void ca_1_RemoveAll_m72374BA2B76106454D4EAAE5A95051C49FE492E6 (ca_1_t69F2B6DD12EE2DCBE97A74A7AB8D9BBDB03E21A9* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ca_1_t69F2B6DD12EE2DCBE97A74A7AB8D9BBDB03E21A9*, const RuntimeMethod*))ca_1_RemoveAll_m72374BA2B76106454D4EAAE5A95051C49FE492E6_gshared)(__this, method);
|
|
}
|
|
inline void List_1__ctor_m1B0135DE2C4A4BCA4820D2FC9E060ED224FC24C0 (List_1_t9A2E2984B23260AECDFA90CEB1F2887075FA4DF3* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t9A2E2984B23260AECDFA90CEB1F2887075FA4DF3*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
|
|
}
|
|
inline void Dictionary_2_Add_mE0E888CDA6E22367E0949EFF323EFF1EC6B62625 (Dictionary_2_t61D2A8EA7B89354F704065B5DF8061AED7234EEA* __this, int32_t ___0_key, List_1_t9A2E2984B23260AECDFA90CEB1F2887075FA4DF3* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_t61D2A8EA7B89354F704065B5DF8061AED7234EEA*, int32_t, List_1_t9A2E2984B23260AECDFA90CEB1F2887075FA4DF3*, const RuntimeMethod*))Dictionary_2_Add_mC515884C0546021A29DC0A00DBCABD89B1B65872_gshared)(__this, ___0_key, ___1_value, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Enum_ToString_m946B0B83C4470457D0FF555D862022C72BB55741 (RuntimeObject* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GameObject__ctor_m37D512B05D292F954792225E6C6EEE95293A9B88 (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* __this, String_t* ___0_name, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56 (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transform_SetParent_m6677538B60246D958DD91F931C50F969CCBB5250 (Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* __this, Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* ___0_p, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_get_one_mC9B289F1E15C42C597180C9FE6FB492495B51D02_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transform_set_localScale_mBA79E811BAF6C47B80FF76414C12B47B3CD03633 (Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_get_zero_m0C1249C3F25B1C70EAD3CC8B31259975A457AE39_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transform_set_localPosition_mDE1C997F7D79C0885210B7732B4BA50EE7D73134 (Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transform_set_localEulerAngles_m0458551662A1A51FDCA4C0417282B25D391661DF (Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* Component_get_transform_m2919A1D81931E6932C7F06D4C2F0AB8DDA9A5371 (Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3* __this, const RuntimeMethod* method) ;
|
|
inline void Dictionary_2_Add_mC09E5C084DA2B213F8C5DDC8EE11046BE28CFC42 (Dictionary_2_t6E25435979095FF8317CE46D91CB6A310AFE529A* __this, int32_t ___0_key, Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_t6E25435979095FF8317CE46D91CB6A310AFE529A*, int32_t, Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1*, const RuntimeMethod*))Dictionary_2_Add_mC515884C0546021A29DC0A00DBCABD89B1B65872_gshared)(__this, ___0_key, ___1_value, method);
|
|
}
|
|
inline bool Dictionary_2_TryGetValue_mAAB33FAA017CDFEEF7A7866F764CE600F6DC9F94 (Dictionary_2_t6E25435979095FF8317CE46D91CB6A310AFE529A* __this, int32_t ___0_key, Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1** ___1_value, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Dictionary_2_t6E25435979095FF8317CE46D91CB6A310AFE529A*, int32_t, Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1**, const RuntimeMethod*))Dictionary_2_TryGetValue_mD8A6CDD5C954C86D2150FCFF1B76EB62F35A881D_gshared)(__this, ___0_key, ___1_value, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transform_set_parent_m9BD5E563B539DD5BEC342736B03F97B38A243234 (Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* __this, Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* ___0_value, const RuntimeMethod* method) ;
|
|
inline void Action_2_Invoke_mFE18A6C9A914162194CBB82B70D78F5509D4C72A_inline (Action_2_t9C463C2F47C41EF4ECC1B672CE6FB7D020F0E658* __this, int32_t ___0_arg1, Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_2_t9C463C2F47C41EF4ECC1B672CE6FB7D020F0E658*, int32_t, Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*, const RuntimeMethod*))Action_2_Invoke_m05605BFAA1396765DE23112419D8E6F797B65101_gshared_inline)(__this, ___0_arg1, ___1_arg2, method);
|
|
}
|
|
inline void List_1_Add_m60F1F5D817C83DDC11235FD5524B8667F4C314F9_inline (List_1_t9A2E2984B23260AECDFA90CEB1F2887075FA4DF3* __this, Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t9A2E2984B23260AECDFA90CEB1F2887075FA4DF3*, Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___0_item, method);
|
|
}
|
|
inline void List_1_Clear_m4F220B4D805F163DF05F6FB4538DBC9D1610D16E_inline (List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576*, const RuntimeMethod*))List_1_Clear_m4F220B4D805F163DF05F6FB4538DBC9D1610D16E_gshared_inline)(__this, method);
|
|
}
|
|
inline Enumerator_tBA05A5E5667F4985803E4513BA28CB1C20675858 Dictionary_2_GetEnumerator_m2015D76179B82797F754646E7AEF192621012B54 (Dictionary_2_t61D2A8EA7B89354F704065B5DF8061AED7234EEA* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( Enumerator_tBA05A5E5667F4985803E4513BA28CB1C20675858 (*) (Dictionary_2_t61D2A8EA7B89354F704065B5DF8061AED7234EEA*, const RuntimeMethod*))Dictionary_2_GetEnumerator_m4126F9137DF46492CEB1563FCCD5A16C5F99D686_gshared)(__this, method);
|
|
}
|
|
inline void Enumerator_Dispose_mA30C6E5D390F14D6D18ED2BFA5A2C46E02EF0052 (Enumerator_tBA05A5E5667F4985803E4513BA28CB1C20675858* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Enumerator_tBA05A5E5667F4985803E4513BA28CB1C20675858*, const RuntimeMethod*))Enumerator_Dispose_m183A70972A3287360EE9443997160D3AA6D4662D_gshared)(__this, method);
|
|
}
|
|
inline KeyValuePair_2_tEC3F1168C60A6FD97F3C22BDA419BE8C1702DC6D Enumerator_get_Current_m9796C8A95B3F258D10389BC3DD3AC475A890F02D_inline (Enumerator_tBA05A5E5667F4985803E4513BA28CB1C20675858* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( KeyValuePair_2_tEC3F1168C60A6FD97F3C22BDA419BE8C1702DC6D (*) (Enumerator_tBA05A5E5667F4985803E4513BA28CB1C20675858*, const RuntimeMethod*))Enumerator_get_Current_m12EE850D56E586DF121B059557CEAF4A7472995B_gshared_inline)(__this, method);
|
|
}
|
|
inline int32_t KeyValuePair_2_get_Key_m5651DBB83D5F66416ABA39A4184FE40755EDFE95_inline (KeyValuePair_2_tEC3F1168C60A6FD97F3C22BDA419BE8C1702DC6D* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (KeyValuePair_2_tEC3F1168C60A6FD97F3C22BDA419BE8C1702DC6D*, const RuntimeMethod*))KeyValuePair_2_get_Key_m9698075D0C5F788A3B6AEBF1ABDFACCAB5854E90_gshared_inline)(__this, method);
|
|
}
|
|
inline void List_1_Add_m809450298141D527D3A4FFAF77AE69D9B08CC17F_inline (List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* __this, int32_t ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576*, int32_t, const RuntimeMethod*))List_1_Add_m809450298141D527D3A4FFAF77AE69D9B08CC17F_gshared_inline)(__this, ___0_item, method);
|
|
}
|
|
inline bool Enumerator_MoveNext_m595F674CCD31C5329A2A9875ACA01B08F3B96F86 (Enumerator_tBA05A5E5667F4985803E4513BA28CB1C20675858* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Enumerator_tBA05A5E5667F4985803E4513BA28CB1C20675858*, const RuntimeMethod*))Enumerator_MoveNext_m48EC022EB2EB605F29EE19F3A0A79E3CB05FD283_gshared)(__this, method);
|
|
}
|
|
inline Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B List_1_GetEnumerator_m87BBBF3FBB0A4EBF1C2940AA91570D7F1565F60D (List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B (*) (List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576*, const RuntimeMethod*))List_1_GetEnumerator_m87BBBF3FBB0A4EBF1C2940AA91570D7F1565F60D_gshared)(__this, method);
|
|
}
|
|
inline void Enumerator_Dispose_m09AF8D2807410AAEB42E9FCC1A54299458EFEFF2 (Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B*, const RuntimeMethod*))Enumerator_Dispose_m09AF8D2807410AAEB42E9FCC1A54299458EFEFF2_gshared)(__this, method);
|
|
}
|
|
inline int32_t Enumerator_get_Current_mB6A201CD563FEF33A6BDA75B83C7BF2AA36CD98C_inline (Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B*, const RuntimeMethod*))Enumerator_get_Current_mB6A201CD563FEF33A6BDA75B83C7BF2AA36CD98C_gshared_inline)(__this, method);
|
|
}
|
|
inline void ca_1_RemoveKey_mA9E4CEF14F7981C82EFFD4065CC8C5503E81891F (ca_1_t69F2B6DD12EE2DCBE97A74A7AB8D9BBDB03E21A9* __this, int32_t ___0_key, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ca_1_t69F2B6DD12EE2DCBE97A74A7AB8D9BBDB03E21A9*, int32_t, const RuntimeMethod*))ca_1_RemoveKey_mA9E4CEF14F7981C82EFFD4065CC8C5503E81891F_gshared)(__this, ___0_key, method);
|
|
}
|
|
inline bool Enumerator_MoveNext_mCAE99D26B8B4D7880B37A70AC8DFD8C7AA4FCCE5 (Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B*, const RuntimeMethod*))Enumerator_MoveNext_mCAE99D26B8B4D7880B37A70AC8DFD8C7AA4FCCE5_gshared)(__this, method);
|
|
}
|
|
inline void Dictionary_2__ctor_m523B71A7E0364EA0DF5E28345F6264C564D9013D (Dictionary_2_t61D2A8EA7B89354F704065B5DF8061AED7234EEA* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_t61D2A8EA7B89354F704065B5DF8061AED7234EEA*, const RuntimeMethod*))Dictionary_2__ctor_mCC9983804D8DC41E938E080075F9EA7BDD0C7059_gshared)(__this, method);
|
|
}
|
|
inline void Dictionary_2__ctor_mE5A342FC7275867FF050722772E1CBE24996AD2B (Dictionary_2_t6E25435979095FF8317CE46D91CB6A310AFE529A* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_t6E25435979095FF8317CE46D91CB6A310AFE529A*, const RuntimeMethod*))Dictionary_2__ctor_mCC9983804D8DC41E938E080075F9EA7BDD0C7059_gshared)(__this, method);
|
|
}
|
|
inline void List_1__ctor_m7C3D0A1FD36704AFBBE4FD4E69204B809D3FC90E (List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576*, const RuntimeMethod*))List_1__ctor_m7C3D0A1FD36704AFBBE4FD4E69204B809D3FC90E_gshared)(__this, method);
|
|
}
|
|
inline void bzy_3__ctor_m245AD857568EE8C0B653A72ED0A4CFB86BAB4AA7 (bzy_3_t69A7C4B8D2817E6515CAEA213B7FE352750F3509* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (bzy_3_t69A7C4B8D2817E6515CAEA213B7FE352750F3509*, const RuntimeMethod*))bzy_3__ctor_m026EC43915D502661F6DD7ABBB02B1E500352F7D_gshared)(__this, method);
|
|
}
|
|
inline void bzx_1__ctor_m1D3B0B1578C67AF419E48BD7F0EEB4883360DD05 (bzx_1_tD860EF6FBE4057B405CC33ABF4B9B27EA4C241E8* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (bzx_1_tD860EF6FBE4057B405CC33ABF4B9B27EA4C241E8*, const RuntimeMethod*))bzx_1__ctor_m1D3B0B1578C67AF419E48BD7F0EEB4883360DD05_gshared)(__this, method);
|
|
}
|
|
inline void bzy_3__ctor_m026FA47790186028DE159965D3FBB7B60D936B69 (bzy_3_t1E1BEBD3FB315A4FA21CD0E62A92BDE5781FF686* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (bzy_3_t1E1BEBD3FB315A4FA21CD0E62A92BDE5781FF686*, const RuntimeMethod*))bzy_3__ctor_m026EC43915D502661F6DD7ABBB02B1E500352F7D_gshared)(__this, method);
|
|
}
|
|
inline void bzx_1__ctor_m5038F03BA0C1FA391D95165EB0A25251C093F2A4 (bzx_1_t4D484EB6E5789BB8192E046C3FDB7E2664856C75* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (bzx_1_t4D484EB6E5789BB8192E046C3FDB7E2664856C75*, const RuntimeMethod*))bzx_1__ctor_m5038F03BA0C1FA391D95165EB0A25251C093F2A4_gshared)(__this, method);
|
|
}
|
|
inline void bzy_3__ctor_m295FE09287EB77E5A946A35F1EFBCF5AFA16F167 (bzy_3_tDEF6B8481C81DD8E75C8CA42AC4A07AA003E2D95* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (bzy_3_tDEF6B8481C81DD8E75C8CA42AC4A07AA003E2D95*, const RuntimeMethod*))bzy_3__ctor_m026EC43915D502661F6DD7ABBB02B1E500352F7D_gshared)(__this, method);
|
|
}
|
|
inline void bzx_1__ctor_m459FDE4EF3667FB0804F918AAFD4BAA43343E2D2 (bzx_1_tA2F73AE84DB462B2C1BB352D3E53255B822258F0* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (bzx_1_tA2F73AE84DB462B2C1BB352D3E53255B822258F0*, const RuntimeMethod*))bzx_1__ctor_m459FDE4EF3667FB0804F918AAFD4BAA43343E2D2_gshared)(__this, method);
|
|
}
|
|
inline void bzy_3__ctor_m8BB5C97CA4824E1A4C9BDC747CF1DF159FDE5226 (bzy_3_t9A9A4FBDE0863F917696ADC8C788FFB7667E7258* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (bzy_3_t9A9A4FBDE0863F917696ADC8C788FFB7667E7258*, const RuntimeMethod*))bzy_3__ctor_m026EC43915D502661F6DD7ABBB02B1E500352F7D_gshared)(__this, method);
|
|
}
|
|
inline void bzx_1__ctor_m136FB30603F0E5DCE670DAA48A3AF874774183AD (bzx_1_tF28DD7ABB0A422DE920831FB35E155BDF2905A9B* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (bzx_1_tF28DD7ABB0A422DE920831FB35E155BDF2905A9B*, const RuntimeMethod*))bzx_1__ctor_m136FB30603F0E5DCE670DAA48A3AF874774183AD_gshared)(__this, method);
|
|
}
|
|
inline void bzy_3__ctor_m503F1AB78E477A825C992CA99AD316F3A4B52789 (bzy_3_t01187F1458C4DD0836F9F22F61EBA3D73AB44479* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (bzy_3_t01187F1458C4DD0836F9F22F61EBA3D73AB44479*, const RuntimeMethod*))bzy_3__ctor_m026EC43915D502661F6DD7ABBB02B1E500352F7D_gshared)(__this, method);
|
|
}
|
|
inline void bzx_1__ctor_m9DC468494C904F9C2D4A2FED75CAD65389685383 (bzx_1_t01CAD84059E26921A56668D888A1952F0E346E84* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (bzx_1_t01CAD84059E26921A56668D888A1952F0E346E84*, const RuntimeMethod*))bzx_1__ctor_m9DC468494C904F9C2D4A2FED75CAD65389685383_gshared)(__this, method);
|
|
}
|
|
inline void bzy_3__ctor_m38EFD844B95555E94F54814FBBA32DE47D90ECEC (bzy_3_t8C95E0FFA290A3576A39046636B63DB55A101AF8* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (bzy_3_t8C95E0FFA290A3576A39046636B63DB55A101AF8*, const RuntimeMethod*))bzy_3__ctor_m026EC43915D502661F6DD7ABBB02B1E500352F7D_gshared)(__this, method);
|
|
}
|
|
inline void bzx_1__ctor_mBE0A884B346CF5E41F9C41D3D73B08EA2D0F6975 (bzx_1_tF56837EEC40043218801469CF96854C4DA03507D* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (bzx_1_tF56837EEC40043218801469CF96854C4DA03507D*, const RuntimeMethod*))bzx_1__ctor_mBE0A884B346CF5E41F9C41D3D73B08EA2D0F6975_gshared)(__this, method);
|
|
}
|
|
inline void cap_1_gap_mE93FAC6F00779477B33B54CB5B22577C9F9A9E4F_inline (cap_1_t0DE2FBA65F8B89DBDCC8A8999240F8AF760D6908* __this, bool ___0_a, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cap_1_t0DE2FBA65F8B89DBDCC8A8999240F8AF760D6908*, bool, const RuntimeMethod*))cap_1_gap_mE93FAC6F00779477B33B54CB5B22577C9F9A9E4F_gshared_inline)(__this, ___0_a, method);
|
|
}
|
|
inline void cap_1_gan_mE645AD5667C93818AD2D6842F4AA7F4D856F37BD_inline (cap_1_t0DE2FBA65F8B89DBDCC8A8999240F8AF760D6908* __this, bool ___0_a, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cap_1_t0DE2FBA65F8B89DBDCC8A8999240F8AF760D6908*, bool, const RuntimeMethod*))cap_1_gan_mE645AD5667C93818AD2D6842F4AA7F4D856F37BD_gshared_inline)(__this, ___0_a, method);
|
|
}
|
|
inline void cap_1_gao_mE65B7F3F00CEC909E65698271A3D2B2BF10B8C2F_inline (cap_1_t0DE2FBA65F8B89DBDCC8A8999240F8AF760D6908* __this, bool ___0_a, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cap_1_t0DE2FBA65F8B89DBDCC8A8999240F8AF760D6908*, bool, const RuntimeMethod*))cap_1_gao_mE65B7F3F00CEC909E65698271A3D2B2BF10B8C2F_gshared_inline)(__this, ___0_a, method);
|
|
}
|
|
inline void List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, const RuntimeMethod*))List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline)(__this, method);
|
|
}
|
|
inline List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ctv_1_Get_mB739CE37D1A5BB088B2AB7A315363A2F18976A8E (ctv_1_t6797CD74D570150D82C9A2244E79DE1F80514F93* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* (*) (ctv_1_t6797CD74D570150D82C9A2244E79DE1F80514F93*, const RuntimeMethod*))ctv_1_Get_m611C8E5DFBA25EA0A334A06F34BFE7E94B939769_gshared)(__this, method);
|
|
}
|
|
inline void ctv_1_Release_m0D77C3E2985561E033F85DB3371EEAC22EEB2448 (ctv_1_t6797CD74D570150D82C9A2244E79DE1F80514F93* __this, List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ___0_element, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ctv_1_t6797CD74D570150D82C9A2244E79DE1F80514F93*, List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, const RuntimeMethod*))ctv_1_Release_m7318A67CEA87FC6AB887E0D32BFFAB3D839B2182_gshared)(__this, ___0_element, method);
|
|
}
|
|
inline void Action_1__ctor_mDED6E7002E5B09566D5DD87D1FD80F35ACAB2A82 (Action_1_t90425964BF9D6282116C192CAA76B05EB0EEF123* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_1_t90425964BF9D6282116C192CAA76B05EB0EEF123*, RuntimeObject*, intptr_t, const RuntimeMethod*))Action_1__ctor_m2E1DFA67718FC1A0B6E5DFEB78831FFE9C059EB4_gshared)(__this, ___0_object, ___1_method, method);
|
|
}
|
|
inline void ctv_1__ctor_mE0541E63913E885748892920C73C44C5F803B0C3 (ctv_1_t6797CD74D570150D82C9A2244E79DE1F80514F93* __this, Action_1_t90425964BF9D6282116C192CAA76B05EB0EEF123* ___0_a, Action_1_t90425964BF9D6282116C192CAA76B05EB0EEF123* ___1_b, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ctv_1_t6797CD74D570150D82C9A2244E79DE1F80514F93*, Action_1_t90425964BF9D6282116C192CAA76B05EB0EEF123*, Action_1_t90425964BF9D6282116C192CAA76B05EB0EEF123*, const RuntimeMethod*))ctv_1__ctor_mF038B15B9076E09FBEE90476994B7E6B8904BDAA_gshared)(__this, ___0_a, ___1_b, method);
|
|
}
|
|
inline int32_t Stack_1_get_Count_mD08AE71D49787D30DDD9D484BCD323D646744D2E_inline (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5*, const RuntimeMethod*))Stack_1_get_Count_mD08AE71D49787D30DDD9D484BCD323D646744D2E_gshared_inline)(__this, method);
|
|
}
|
|
inline int32_t ctv_1_get_CountAll_mEAF454516E2114D79C5798307857F106A3E5D89A_inline (ctv_1_t7F236C02AD9CB75CF11908268451E806428FE795* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (ctv_1_t7F236C02AD9CB75CF11908268451E806428FE795*, const RuntimeMethod*))ctv_1_get_CountAll_mEAF454516E2114D79C5798307857F106A3E5D89A_gshared_inline)(__this, method);
|
|
}
|
|
inline void ctv_1_hwe_m59DE15D4036199E9634DEF8ACFEB36F11EFBAF46_inline (ctv_1_t7F236C02AD9CB75CF11908268451E806428FE795* __this, int32_t ___0_a, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ctv_1_t7F236C02AD9CB75CF11908268451E806428FE795*, int32_t, const RuntimeMethod*))ctv_1_hwe_m59DE15D4036199E9634DEF8ACFEB36F11EFBAF46_gshared_inline)(__this, ___0_a, method);
|
|
}
|
|
inline RuntimeObject* Stack_1_Pop_m2AFF69249659372F07EE25817DBCAFE74E1CF778 (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5*, const RuntimeMethod*))Stack_1_Pop_m2AFF69249659372F07EE25817DBCAFE74E1CF778_gshared)(__this, method);
|
|
}
|
|
inline void Stack_1__ctor_m70E8EDA96A608CE9BAB7FC8313B233AADA573BD4 (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5*, const RuntimeMethod*))Stack_1__ctor_m70E8EDA96A608CE9BAB7FC8313B233AADA573BD4_gshared)(__this, method);
|
|
}
|
|
inline void Stack_1_Clear_mD550E89582979ECB0D6E6D68F0237FC14708BE85 (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5*, const RuntimeMethod*))Stack_1_Clear_mD550E89582979ECB0D6E6D68F0237FC14708BE85_gshared)(__this, method);
|
|
}
|
|
inline void Stack_1_Push_m709DD11BC1291A905814182CF9A367DE7399A778 (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* __this, RuntimeObject* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5*, RuntimeObject*, const RuntimeMethod*))Stack_1_Push_m709DD11BC1291A905814182CF9A367DE7399A778_gshared)(__this, ___0_item, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA (RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149 (RuntimeObject* ___0_obj, bool* ___1_lockTaken, const RuntimeMethod* method) ;
|
|
inline void cud_1_OnSingletonInit_m4B2F9BBF8F3CEBE3EEDB5C6087691C081C24E2E7 (cud_1_t83FF7C1205FDBF0FE96EB597F5C8EED47D8CBB84* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cud_1_t83FF7C1205FDBF0FE96EB597F5C8EED47D8CBB84*, const RuntimeMethod*))cud_1_OnSingletonInit_m4B2F9BBF8F3CEBE3EEDB5C6087691C081C24E2E7_gshared)(__this, method);
|
|
}
|
|
inline void Stack_1__ctor_m25F8C6095172E75DEE8A43E857889659DFC4DCE9 (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* __this, int32_t ___0_capacity, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5*, int32_t, const RuntimeMethod*))Stack_1__ctor_m25F8C6095172E75DEE8A43E857889659DFC4DCE9_gshared)(__this, ___0_capacity, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m6D9C7B47EA708382838B264BA02EBB7576DFA155 (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* __this, String_t* ___0_paramName, String_t* ___1_message, const RuntimeMethod* method) ;
|
|
inline int32_t cxo_1_get_Peak_m3ADD6E62EAFD22208CBDE14134A9DACFD8890382_inline (cxo_1_tEF016A0E938797C525FDD409DDC7F211C2056789* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (cxo_1_tEF016A0E938797C525FDD409DDC7F211C2056789*, const RuntimeMethod*))cxo_1_get_Peak_m3ADD6E62EAFD22208CBDE14134A9DACFD8890382_gshared_inline)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF (int32_t ___0_val1, int32_t ___1_val2, const RuntimeMethod* method) ;
|
|
inline void cxo_1_icx_m74E83E3327BA169D702B8BF8F79C592E52B5ECF1_inline (cxo_1_tEF016A0E938797C525FDD409DDC7F211C2056789* __this, int32_t ___0_a, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cxo_1_tEF016A0E938797C525FDD409DDC7F211C2056789*, int32_t, const RuntimeMethod*))cxo_1_icx_m74E83E3327BA169D702B8BF8F79C592E52B5ECF1_gshared_inline)(__this, ___0_a, method);
|
|
}
|
|
inline void cxo_1_icy_m7AAC873E684E3D2BB0F8D95B9538F200C07755FC (cxo_1_tEF016A0E938797C525FDD409DDC7F211C2056789* __this, RuntimeObject* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cxo_1_tEF016A0E938797C525FDD409DDC7F211C2056789*, RuntimeObject*, const RuntimeMethod*))cxo_1_icy_m7AAC873E684E3D2BB0F8D95B9538F200C07755FC_gshared)(__this, ___0_a, method);
|
|
}
|
|
inline void cys_idi_mB888D2B07C5D840345EE483EB3CFF4A603AE660D (cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5*, const RuntimeMethod*))cys_idi_mB888D2B07C5D840345EE483EB3CFF4A603AE660D_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_m1BE9BD198B904AA1D94F4B10DA88077DFD44B7A5 (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* __this, const RuntimeMethod* method) ;
|
|
inline RuntimeObject* cys_idk_m3DF5269EE221462F210A8322A38D3D71224A8E5D (cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5*, const RuntimeMethod*))cys_idk_m3DF5269EE221462F210A8322A38D3D71224A8E5D_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3 (RuntimeObject* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectDisposedException__ctor_mB2C8582279AF3F0C1CF9AA52DA7331BF848DFD48 (ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB* __this, String_t* ___0_objectName, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162 (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* __this, String_t* ___0_message, const RuntimeMethod* method) ;
|
|
inline void cys_dv_m54B824971B2FDF23ECA2518FDFE68D4853B11ED7 (cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5*, const RuntimeMethod*))cys_dv_m54B824971B2FDF23ECA2518FDFE68D4853B11ED7_gshared)(__this, method);
|
|
}
|
|
inline bool cys_get_Current_mFBD2535FC10EC841EB620E7553DA3402E9908821_inline (cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5*, const RuntimeMethod*))cys_get_Current_mFBD2535FC10EC841EB620E7553DA3402E9908821_gshared_inline)(__this, method);
|
|
}
|
|
inline bool cys_MoveNext_mA7A71B58C50B3633B3497236CB0AA8B06DF78CB5 (cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5*, const RuntimeMethod*))cys_MoveNext_mA7A71B58C50B3633B3497236CB0AA8B06DF78CB5_gshared)(__this, method);
|
|
}
|
|
inline void cys_idj_m0ECF52877D27261A69A877D9826D7467CA69843B (cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5*, const RuntimeMethod*))cys_idj_m0ECF52877D27261A69A877D9826D7467CA69843B_gshared)(__this, method);
|
|
}
|
|
inline void cys_mnk_m4622D706AA8AB87E72EE65E8DC7CB17AE10BF293 (cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5*, const RuntimeMethod*))cys_mnk_m4622D706AA8AB87E72EE65E8DC7CB17AE10BF293_gshared)(__this, method);
|
|
}
|
|
inline void cys_Dispose_m8E5B82E94C9AB181994DF342E8EA257E97B5ED97 (cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5*, const RuntimeMethod*))cys_Dispose_m8E5B82E94C9AB181994DF342E8EA257E97B5ED97_gshared)(__this, method);
|
|
}
|
|
inline void cys__ctor_m5D13A88DAA30B690962CFFC0DD72B05D8AB57F8B (cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5* __this, cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5*, cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47*, const RuntimeMethod*))cys__ctor_m5D13A88DAA30B690962CFFC0DD72B05D8AB57F8B_gshared)(__this, ___0_a, method);
|
|
}
|
|
inline void cys_jky_mC780B409CA18D31766273944C38FE44E8C198489 (cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5*, const RuntimeMethod*))cys_jky_mC780B409CA18D31766273944C38FE44E8C198489_gshared)(__this, method);
|
|
}
|
|
inline void cys_idi_m9DA70E7285B3676C8A4BF3A6805C5AECCAEE41E0 (cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E*, const RuntimeMethod*))cys_idi_m9DA70E7285B3676C8A4BF3A6805C5AECCAEE41E0_gshared)(__this, method);
|
|
}
|
|
inline RuntimeObject* cys_idk_m1FB91B579533C0CD8B5C0D90C941766AB7BF7D3E (cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E*, const RuntimeMethod*))cys_idk_m1FB91B579533C0CD8B5C0D90C941766AB7BF7D3E_gshared)(__this, method);
|
|
}
|
|
inline void cys_dv_m5A0A096261F40F414C3F8FAA7AA7825DE9B76B33 (cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E*, const RuntimeMethod*))cys_dv_m5A0A096261F40F414C3F8FAA7AA7825DE9B76B33_gshared)(__this, method);
|
|
}
|
|
inline Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B cys_get_Current_m06A3A3B5111455C6DD83171C34C359D7EBF0CEAF_inline (cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B (*) (cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E*, const RuntimeMethod*))cys_get_Current_m06A3A3B5111455C6DD83171C34C359D7EBF0CEAF_gshared_inline)(__this, method);
|
|
}
|
|
inline bool cys_MoveNext_m6C03CC49C8B65F2A282EA13A944C48E451FE31C3 (cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E*, const RuntimeMethod*))cys_MoveNext_m6C03CC49C8B65F2A282EA13A944C48E451FE31C3_gshared)(__this, method);
|
|
}
|
|
inline void cys_idj_m3628A884B352FFE32EE898C0A49A75BFEB59F026 (cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E*, const RuntimeMethod*))cys_idj_m3628A884B352FFE32EE898C0A49A75BFEB59F026_gshared)(__this, method);
|
|
}
|
|
inline void cys_mnk_mFE3576488E04E63BAC678190381902A908BEF34D (cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E*, const RuntimeMethod*))cys_mnk_mFE3576488E04E63BAC678190381902A908BEF34D_gshared)(__this, method);
|
|
}
|
|
inline void cys_Dispose_m506E0690BA8B3FDD01FF6CD9681EE140333890D4 (cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E*, const RuntimeMethod*))cys_Dispose_m506E0690BA8B3FDD01FF6CD9681EE140333890D4_gshared)(__this, method);
|
|
}
|
|
inline void cys__ctor_mC10FD48409B8D8BEE4A1A676B1B4C624955B6E5E (cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E* __this, cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E*, cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393*, const RuntimeMethod*))cys__ctor_mC10FD48409B8D8BEE4A1A676B1B4C624955B6E5E_gshared)(__this, ___0_a, method);
|
|
}
|
|
inline void cys_jky_m8674A8C369C9EB245ADA1AE45E619A3B8CD08615 (cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E*, const RuntimeMethod*))cys_jky_m8674A8C369C9EB245ADA1AE45E619A3B8CD08615_gshared)(__this, method);
|
|
}
|
|
inline void cys_idi_m5967E53DF3E09BE08150A8018145E2CCACF61786 (cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065*, const RuntimeMethod*))cys_idi_m5967E53DF3E09BE08150A8018145E2CCACF61786_gshared)(__this, method);
|
|
}
|
|
inline RuntimeObject* cys_idk_m84ED354BA669D6B1C7F931E36019CC1D7CF9AB69 (cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065*, const RuntimeMethod*))cys_idk_m84ED354BA669D6B1C7F931E36019CC1D7CF9AB69_gshared)(__this, method);
|
|
}
|
|
inline void cys_dv_m9C05D83F102786252BF614B9E3F7365C46E7C7CE (cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065*, const RuntimeMethod*))cys_dv_m9C05D83F102786252BF614B9E3F7365C46E7C7CE_gshared)(__this, method);
|
|
}
|
|
inline int32_t cys_get_Current_m04F1E8E43C0FE931BD84ED9D05E29CD561CB7E35_inline (cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065*, const RuntimeMethod*))cys_get_Current_m04F1E8E43C0FE931BD84ED9D05E29CD561CB7E35_gshared_inline)(__this, method);
|
|
}
|
|
inline bool cys_MoveNext_mFF58230C5D859148565FBB6CAEC74B3D61D461D0 (cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065*, const RuntimeMethod*))cys_MoveNext_mFF58230C5D859148565FBB6CAEC74B3D61D461D0_gshared)(__this, method);
|
|
}
|
|
inline void cys_idj_m26594FAB1E17F4473EBA11E666067ECCC47677A0 (cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065*, const RuntimeMethod*))cys_idj_m26594FAB1E17F4473EBA11E666067ECCC47677A0_gshared)(__this, method);
|
|
}
|
|
inline void cys_mnk_mB5DE0B2F1F886F1EE1CE0DF90F8CAF159CDCA671 (cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065*, const RuntimeMethod*))cys_mnk_mB5DE0B2F1F886F1EE1CE0DF90F8CAF159CDCA671_gshared)(__this, method);
|
|
}
|
|
inline void cys_Dispose_m43D751C8B5A3B79B0C44BB191F842E7994B6D2BA (cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065*, const RuntimeMethod*))cys_Dispose_m43D751C8B5A3B79B0C44BB191F842E7994B6D2BA_gshared)(__this, method);
|
|
}
|
|
inline void cys__ctor_m561ABAEF039B47DBBEF5E346EA307714237B8138 (cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065* __this, cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065*, cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7*, const RuntimeMethod*))cys__ctor_m561ABAEF039B47DBBEF5E346EA307714237B8138_gshared)(__this, ___0_a, method);
|
|
}
|
|
inline void cys_jky_m1D71798355FDB8FB552C3BAD9E376DB1B04604DD (cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065*, const RuntimeMethod*))cys_jky_m1D71798355FDB8FB552C3BAD9E376DB1B04604DD_gshared)(__this, method);
|
|
}
|
|
inline void cys_idi_m26C5A1CF1CA835C8C3E0BF36536016E8808CAC6A (cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857*, const RuntimeMethod*))cys_idi_m26C5A1CF1CA835C8C3E0BF36536016E8808CAC6A_gshared)(__this, method);
|
|
}
|
|
inline RuntimeObject* cys_idk_m6F0CCD05E11FFBF7A29A18CAD3F4E44C464E1851 (cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857*, const RuntimeMethod*))cys_idk_m6F0CCD05E11FFBF7A29A18CAD3F4E44C464E1851_gshared)(__this, method);
|
|
}
|
|
inline void cys_dv_mA7FE9872507775A721481BE2C981EA899565DE68 (cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857*, const RuntimeMethod*))cys_dv_mA7FE9872507775A721481BE2C981EA899565DE68_gshared)(__this, method);
|
|
}
|
|
inline RuntimeObject* cys_get_Current_mBF618832B19ECD7644087857AE13039362481B5C_inline (cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857*, const RuntimeMethod*))cys_get_Current_mBF618832B19ECD7644087857AE13039362481B5C_gshared_inline)(__this, method);
|
|
}
|
|
inline bool cys_MoveNext_mFEA0C00CDB2FC25555A75298A448171C29239868 (cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857*, const RuntimeMethod*))cys_MoveNext_mFEA0C00CDB2FC25555A75298A448171C29239868_gshared)(__this, method);
|
|
}
|
|
inline void cys_idj_mF8ED6E00BF58C290FD611FFFEFDBC3C2C9B51465 (cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857*, const RuntimeMethod*))cys_idj_mF8ED6E00BF58C290FD611FFFEFDBC3C2C9B51465_gshared)(__this, method);
|
|
}
|
|
inline void cys_mnk_mD5CB7696922B45B312F1395C958B39E8ABF771F7 (cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857*, const RuntimeMethod*))cys_mnk_mD5CB7696922B45B312F1395C958B39E8ABF771F7_gshared)(__this, method);
|
|
}
|
|
inline void cys_Dispose_m5704E78F0DF91B2856629CCDD120DE0B2DF17AD5 (cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857*, const RuntimeMethod*))cys_Dispose_m5704E78F0DF91B2856629CCDD120DE0B2DF17AD5_gshared)(__this, method);
|
|
}
|
|
inline void cys__ctor_m4BCA1B780A5FA6658EB7974E509C0F58771C4A1F (cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857* __this, cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857*, cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082*, const RuntimeMethod*))cys__ctor_m4BCA1B780A5FA6658EB7974E509C0F58771C4A1F_gshared)(__this, ___0_a, method);
|
|
}
|
|
inline void cys_jky_mE38620D3FCEDDC2E37A8AA2E29B3C62F62206719 (cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857*, const RuntimeMethod*))cys_jky_mE38620D3FCEDDC2E37A8AA2E29B3C62F62206719_gshared)(__this, method);
|
|
}
|
|
inline void cys_idi_mD4E833D0B5B0DAA452953AB0AD804032A1FB7E9A (cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A*, const RuntimeMethod*))cys_idi_mD4E833D0B5B0DAA452953AB0AD804032A1FB7E9A_gshared)(__this, method);
|
|
}
|
|
inline RuntimeObject* cys_idk_m00F1FC50C5B1BBB70A7700973D4878E72788ED63 (cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A*, const RuntimeMethod*))cys_idk_m00F1FC50C5B1BBB70A7700973D4878E72788ED63_gshared)(__this, method);
|
|
}
|
|
inline void cys_dv_mE2CEC891F6190A279C31D1C1A132175EAEED7AB3 (cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A*, const RuntimeMethod*))cys_dv_mE2CEC891F6190A279C31D1C1A132175EAEED7AB3_gshared)(__this, method);
|
|
}
|
|
inline float cys_get_Current_mDCFC317836094DBF4A2F23AF67AEC4505685C6BC_inline (cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( float (*) (cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A*, const RuntimeMethod*))cys_get_Current_mDCFC317836094DBF4A2F23AF67AEC4505685C6BC_gshared_inline)(__this, method);
|
|
}
|
|
inline bool cys_MoveNext_m3A6C013181A0F1493B082783A27ECCD9C5D2D5CB (cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A*, const RuntimeMethod*))cys_MoveNext_m3A6C013181A0F1493B082783A27ECCD9C5D2D5CB_gshared)(__this, method);
|
|
}
|
|
inline void cys_idj_mAA5527932AEB4C6FC9FBBDCFD85348144DCF3BC9 (cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A*, const RuntimeMethod*))cys_idj_mAA5527932AEB4C6FC9FBBDCFD85348144DCF3BC9_gshared)(__this, method);
|
|
}
|
|
inline void cys_mnk_m793978B020E8FF35045BE207DF98DD26282FFAAF (cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A*, const RuntimeMethod*))cys_mnk_m793978B020E8FF35045BE207DF98DD26282FFAAF_gshared)(__this, method);
|
|
}
|
|
inline void cys_Dispose_m6DD2299EE74011189272210BA118FA0B4722CF23 (cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A*, const RuntimeMethod*))cys_Dispose_m6DD2299EE74011189272210BA118FA0B4722CF23_gshared)(__this, method);
|
|
}
|
|
inline void cys__ctor_m776E11C882C387E994659DD659698D509DCF6466 (cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A* __this, cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A*, cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C*, const RuntimeMethod*))cys__ctor_m776E11C882C387E994659DD659698D509DCF6466_gshared)(__this, ___0_a, method);
|
|
}
|
|
inline void cys_jky_m65928A9C5852F7531985D0B5142D86AD0009DA25 (cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A*, const RuntimeMethod*))cys_jky_m65928A9C5852F7531985D0B5142D86AD0009DA25_gshared)(__this, method);
|
|
}
|
|
inline void cys_idi_mC0CD4F7DAEB0F98C99863B8887A8AE541B6AE0FD (cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B*, const RuntimeMethod*))cys_idi_mC0CD4F7DAEB0F98C99863B8887A8AE541B6AE0FD_gshared)(__this, method);
|
|
}
|
|
inline RuntimeObject* cys_idk_mB40E94A2E9F48BA1837B662A662D32FBD9145A7F (cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B*, const RuntimeMethod*))cys_idk_mB40E94A2E9F48BA1837B662A662D32FBD9145A7F_gshared)(__this, method);
|
|
}
|
|
inline void cys_dv_m0661DA4FD78750FB87084FFFEC07C50DA3463EEA (cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B*, const RuntimeMethod*))cys_dv_m0661DA4FD78750FB87084FFFEC07C50DA3463EEA_gshared)(__this, method);
|
|
}
|
|
inline Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 cys_get_Current_mDF53D0EC8DE9A04D8A6EBB01B063F4CF698AB87A_inline (cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 (*) (cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B*, const RuntimeMethod*))cys_get_Current_mDF53D0EC8DE9A04D8A6EBB01B063F4CF698AB87A_gshared_inline)(__this, method);
|
|
}
|
|
inline bool cys_MoveNext_m13AB4BB32E0A1CEFAF8782295EFE08BD8E6C545F (cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B*, const RuntimeMethod*))cys_MoveNext_m13AB4BB32E0A1CEFAF8782295EFE08BD8E6C545F_gshared)(__this, method);
|
|
}
|
|
inline void cys_idj_m40CECDE3418DE5074D1A0B2ED5D621C9E067F890 (cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B*, const RuntimeMethod*))cys_idj_m40CECDE3418DE5074D1A0B2ED5D621C9E067F890_gshared)(__this, method);
|
|
}
|
|
inline void cys_mnk_mE9CAAE3F53BDCB9B94D554B06D28415CF2AEC2A7 (cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B*, const RuntimeMethod*))cys_mnk_mE9CAAE3F53BDCB9B94D554B06D28415CF2AEC2A7_gshared)(__this, method);
|
|
}
|
|
inline void cys_Dispose_mADDA5FCE8456AE8104C66667C3E6D60FAB9DE064 (cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B*, const RuntimeMethod*))cys_Dispose_mADDA5FCE8456AE8104C66667C3E6D60FAB9DE064_gshared)(__this, method);
|
|
}
|
|
inline void cys__ctor_m2E43A753F45BE7DE9C04594A748BD8C74F1B4339 (cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B* __this, cyt_1_tAC49A9A02241EC5ED0F5205BDF7AE399C207BC04* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B*, cyt_1_tAC49A9A02241EC5ED0F5205BDF7AE399C207BC04*, const RuntimeMethod*))cys__ctor_m2E43A753F45BE7DE9C04594A748BD8C74F1B4339_gshared)(__this, ___0_a, method);
|
|
}
|
|
inline void cys_jky_mFD60D17A527BF765DC0D75691A5EB1F3425EFEBE (cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B*, const RuntimeMethod*))cys_jky_mFD60D17A527BF765DC0D75691A5EB1F3425EFEBE_gshared)(__this, method);
|
|
}
|
|
inline void cys_idi_mC11161AD9BA3C101D6537ACBE22E764F37DC0D7D (cys_t77E50E15C644A5869C604882F1C802434F0A13BF* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_t77E50E15C644A5869C604882F1C802434F0A13BF*, const RuntimeMethod*))cys_idi_mC11161AD9BA3C101D6537ACBE22E764F37DC0D7D_gshared)(__this, method);
|
|
}
|
|
inline RuntimeObject* cys_idk_mF641E332F0B2EE0E2923C3BE0DAE494BCF631CA7 (cys_t77E50E15C644A5869C604882F1C802434F0A13BF* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (cys_t77E50E15C644A5869C604882F1C802434F0A13BF*, const RuntimeMethod*))cys_idk_mF641E332F0B2EE0E2923C3BE0DAE494BCF631CA7_gshared)(__this, method);
|
|
}
|
|
inline void cys_dv_m12BB373BBEC4E89ED235E21807CC777B2B100864 (cys_t77E50E15C644A5869C604882F1C802434F0A13BF* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_t77E50E15C644A5869C604882F1C802434F0A13BF*, const RuntimeMethod*))cys_dv_m12BB373BBEC4E89ED235E21807CC777B2B100864_gshared)(__this, method);
|
|
}
|
|
inline Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 cys_get_Current_mB80B9F698D53881E8BDE21444ADDBE6794BBD328_inline (cys_t77E50E15C644A5869C604882F1C802434F0A13BF* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 (*) (cys_t77E50E15C644A5869C604882F1C802434F0A13BF*, const RuntimeMethod*))cys_get_Current_mB80B9F698D53881E8BDE21444ADDBE6794BBD328_gshared_inline)(__this, method);
|
|
}
|
|
inline bool cys_MoveNext_m039B3EE352604CD32240D2603C30C560E7776AEB (cys_t77E50E15C644A5869C604882F1C802434F0A13BF* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (cys_t77E50E15C644A5869C604882F1C802434F0A13BF*, const RuntimeMethod*))cys_MoveNext_m039B3EE352604CD32240D2603C30C560E7776AEB_gshared)(__this, method);
|
|
}
|
|
inline void cys_idj_m83E21C37047B78003A2D4C023FDD9A37D0C37670 (cys_t77E50E15C644A5869C604882F1C802434F0A13BF* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_t77E50E15C644A5869C604882F1C802434F0A13BF*, const RuntimeMethod*))cys_idj_m83E21C37047B78003A2D4C023FDD9A37D0C37670_gshared)(__this, method);
|
|
}
|
|
inline void cys_mnk_mD4FA4245687059585F0482F4ABAF8AC92143A208 (cys_t77E50E15C644A5869C604882F1C802434F0A13BF* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_t77E50E15C644A5869C604882F1C802434F0A13BF*, const RuntimeMethod*))cys_mnk_mD4FA4245687059585F0482F4ABAF8AC92143A208_gshared)(__this, method);
|
|
}
|
|
inline void cys_Dispose_mA64CA0E0391020D502C075CC2BE0495C4C8C0AFF (cys_t77E50E15C644A5869C604882F1C802434F0A13BF* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_t77E50E15C644A5869C604882F1C802434F0A13BF*, const RuntimeMethod*))cys_Dispose_mA64CA0E0391020D502C075CC2BE0495C4C8C0AFF_gshared)(__this, method);
|
|
}
|
|
inline void cys__ctor_m9549D2A0F20C5E3C6B6CEDBA25E65FF923FCE390 (cys_t77E50E15C644A5869C604882F1C802434F0A13BF* __this, cyt_1_t8D44FE5690EE0881636F8CACF4B1781DB7253688* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_t77E50E15C644A5869C604882F1C802434F0A13BF*, cyt_1_t8D44FE5690EE0881636F8CACF4B1781DB7253688*, const RuntimeMethod*))cys__ctor_m9549D2A0F20C5E3C6B6CEDBA25E65FF923FCE390_gshared)(__this, ___0_a, method);
|
|
}
|
|
inline void cys_jky_m9307CFC6654090089F2E8AC51C5CC1696067CADB (cys_t77E50E15C644A5869C604882F1C802434F0A13BF* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_t77E50E15C644A5869C604882F1C802434F0A13BF*, const RuntimeMethod*))cys_jky_m9307CFC6654090089F2E8AC51C5CC1696067CADB_gshared)(__this, method);
|
|
}
|
|
inline RuntimeObject* cys_idk_mDDBE95613A26344185419E20B53399E033C8C705 (cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6*, const RuntimeMethod*))cys_idk_mDDBE95613A26344185419E20B53399E033C8C705_gshared)(__this, method);
|
|
}
|
|
inline void cys_idi_m92B334BDB5A1E6A68983E0B1DCB6E93B7C657691 (cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6*, const RuntimeMethod*))cys_idi_m92B334BDB5A1E6A68983E0B1DCB6E93B7C657691_gshared)(__this, method);
|
|
}
|
|
inline void cys_dv_mEB8101A65517AF34070833F2B921D3CFEB76FDA3 (cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6*, const RuntimeMethod*))cys_dv_mEB8101A65517AF34070833F2B921D3CFEB76FDA3_gshared)(__this, method);
|
|
}
|
|
inline void cys_get_Current_m3EBD976DFDC709C10833CE3C65A5CBF1183E81FF_inline (cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6* __this, Il2CppFullySharedGenericAny* il2cppRetVal, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6*, Il2CppFullySharedGenericAny*, const RuntimeMethod*))cys_get_Current_m3EBD976DFDC709C10833CE3C65A5CBF1183E81FF_gshared_inline)((cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6*)__this, il2cppRetVal, method);
|
|
}
|
|
inline bool cys_MoveNext_mDF570482FC3C4783273A59DD8758A1017023CAC2 (cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6*, const RuntimeMethod*))cys_MoveNext_mDF570482FC3C4783273A59DD8758A1017023CAC2_gshared)(__this, method);
|
|
}
|
|
inline void cys_idj_mB658C70034E229BF4091A1A1BDF4492F817C6318 (cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6*, const RuntimeMethod*))cys_idj_mB658C70034E229BF4091A1A1BDF4492F817C6318_gshared)(__this, method);
|
|
}
|
|
inline void cys_mnk_mE46450750F4D5059E70877C9109B3794BC698DD5 (cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6*, const RuntimeMethod*))cys_mnk_mE46450750F4D5059E70877C9109B3794BC698DD5_gshared)(__this, method);
|
|
}
|
|
inline void cys_Dispose_mB8B112839E3195BAE6F1071D95D667C469F370C8 (cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6*, const RuntimeMethod*))cys_Dispose_mB8B112839E3195BAE6F1071D95D667C469F370C8_gshared)(__this, method);
|
|
}
|
|
inline void cys__ctor_m59655E395274A60591B39B246479C7BFA6047918 (cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6* __this, cyt_1_tE46DA8E7A261663B67DB2F6E839FA69F43D02A30* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6*, cyt_1_tE46DA8E7A261663B67DB2F6E839FA69F43D02A30*, const RuntimeMethod*))cys__ctor_m59655E395274A60591B39B246479C7BFA6047918_gshared)(__this, ___0_a, method);
|
|
}
|
|
inline void cys_jky_m94AB67D19B9396EE7E1E0257B90A9213FCEE2448 (cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6*, const RuntimeMethod*))cys_jky_m94AB67D19B9396EE7E1E0257B90A9213FCEE2448_gshared)(__this, method);
|
|
}
|
|
inline void cys_idi_m95172B6333C1FB31D470FE6D031A33468E13D721 (cys_t365734F47A79063EC450869FBF066C01AC209CAB* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_t365734F47A79063EC450869FBF066C01AC209CAB*, const RuntimeMethod*))cys_idi_m95172B6333C1FB31D470FE6D031A33468E13D721_gshared)(__this, method);
|
|
}
|
|
inline RuntimeObject* cys_idk_mA76614A09D1B3197A228B19491370C793E9D860A (cys_t365734F47A79063EC450869FBF066C01AC209CAB* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (cys_t365734F47A79063EC450869FBF066C01AC209CAB*, const RuntimeMethod*))cys_idk_mA76614A09D1B3197A228B19491370C793E9D860A_gshared)(__this, method);
|
|
}
|
|
inline void cys_dv_m10417B7B218B9CEE503FF3D3C536EB2BD588F954 (cys_t365734F47A79063EC450869FBF066C01AC209CAB* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_t365734F47A79063EC450869FBF066C01AC209CAB*, const RuntimeMethod*))cys_dv_m10417B7B218B9CEE503FF3D3C536EB2BD588F954_gshared)(__this, method);
|
|
}
|
|
inline dbw_tEF892A66F1417E423BAA34A1EE22306A5B496ABE cys_get_Current_mD9E7BB9E8CDEACBA8743666545079A6A0EF018C9_inline (cys_t365734F47A79063EC450869FBF066C01AC209CAB* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( dbw_tEF892A66F1417E423BAA34A1EE22306A5B496ABE (*) (cys_t365734F47A79063EC450869FBF066C01AC209CAB*, const RuntimeMethod*))cys_get_Current_mD9E7BB9E8CDEACBA8743666545079A6A0EF018C9_gshared_inline)(__this, method);
|
|
}
|
|
inline bool cys_MoveNext_m5DF8A208D0E6686A231FD1E513C7AB13B293EB93 (cys_t365734F47A79063EC450869FBF066C01AC209CAB* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (cys_t365734F47A79063EC450869FBF066C01AC209CAB*, const RuntimeMethod*))cys_MoveNext_m5DF8A208D0E6686A231FD1E513C7AB13B293EB93_gshared)(__this, method);
|
|
}
|
|
inline void cys_idj_mE6EF86F50BFECDD7713CE099D5BDF593ECC1A40B (cys_t365734F47A79063EC450869FBF066C01AC209CAB* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_t365734F47A79063EC450869FBF066C01AC209CAB*, const RuntimeMethod*))cys_idj_mE6EF86F50BFECDD7713CE099D5BDF593ECC1A40B_gshared)(__this, method);
|
|
}
|
|
inline void cys_mnk_m04B598FD5F78FDB4CF19F395B1B54102D16025AB (cys_t365734F47A79063EC450869FBF066C01AC209CAB* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_t365734F47A79063EC450869FBF066C01AC209CAB*, const RuntimeMethod*))cys_mnk_m04B598FD5F78FDB4CF19F395B1B54102D16025AB_gshared)(__this, method);
|
|
}
|
|
inline void cys_Dispose_mFA59393BC3809E7FBCB43229FFFAEAE8BC6BD775 (cys_t365734F47A79063EC450869FBF066C01AC209CAB* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_t365734F47A79063EC450869FBF066C01AC209CAB*, const RuntimeMethod*))cys_Dispose_mFA59393BC3809E7FBCB43229FFFAEAE8BC6BD775_gshared)(__this, method);
|
|
}
|
|
inline void cys__ctor_mD2F7B1CBBE01256939793123A18D55B930542212 (cys_t365734F47A79063EC450869FBF066C01AC209CAB* __this, cyt_1_t195133DDC4F4198CCCCFD063FFB746780BBCE98F* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_t365734F47A79063EC450869FBF066C01AC209CAB*, cyt_1_t195133DDC4F4198CCCCFD063FFB746780BBCE98F*, const RuntimeMethod*))cys__ctor_mD2F7B1CBBE01256939793123A18D55B930542212_gshared)(__this, ___0_a, method);
|
|
}
|
|
inline void cys_jky_mCC93C312A5095EE3177001ECE0772467ACF3B45A (cys_t365734F47A79063EC450869FBF066C01AC209CAB* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cys_t365734F47A79063EC450869FBF066C01AC209CAB*, const RuntimeMethod*))cys_jky_mCC93C312A5095EE3177001ECE0772467ACF3B45A_gshared)(__this, method);
|
|
}
|
|
inline void cyt_1_idu_m19A3803CC32F886BEE7ED1A7A9B025445C8824D5 (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, RuntimeObject* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47*, RuntimeObject*, const RuntimeMethod*))cyt_1_idu_m19A3803CC32F886BEE7ED1A7A9B025445C8824D5_gshared)(__this, ___0_a, method);
|
|
}
|
|
inline void cyt_1_idn_mB44CD7B73297D9EB78D98089D1049A77C185740E (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, RuntimeObject* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47*, RuntimeObject*, const RuntimeMethod*))cyt_1_idn_mB44CD7B73297D9EB78D98089D1049A77C185740E_gshared)(__this, ___0_a, method);
|
|
}
|
|
inline void cyt_1_idm_mDBE626649C20EE56AB09C271CBED41C7D0A4D648 (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, RuntimeObject* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47*, RuntimeObject*, const RuntimeMethod*))cyt_1_idm_mDBE626649C20EE56AB09C271CBED41C7D0A4D648_gshared)(__this, ___0_a, method);
|
|
}
|
|
inline int32_t cyt_1_get_Capacity_m873E1F2B4E91E2EABDA65C6D6761D4A06D50E2F5 (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47*, const RuntimeMethod*))cyt_1_get_Capacity_m873E1F2B4E91E2EABDA65C6D6761D4A06D50E2F5_gshared)(__this, method);
|
|
}
|
|
inline void cyt_1_set_Capacity_mEFCC5C996BD8F4399A2732A86673F025DA38AA3B (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47*, int32_t, const RuntimeMethod*))cyt_1_set_Capacity_mEFCC5C996BD8F4399A2732A86673F025DA38AA3B_gshared)(__this, ___0_value, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* __this, String_t* ___0_paramName, const RuntimeMethod* method) ;
|
|
inline void cyt_1_ids_m2D7113C5C63FC4A32BF8B9B23A509D9AD026E4A1 (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_a, int32_t ___1_b, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47*, int32_t, int32_t, const RuntimeMethod*))cyt_1_ids_m2D7113C5C63FC4A32BF8B9B23A509D9AD026E4A1_gshared)(__this, ___0_a, ___1_b, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB (RuntimeArray* ___0_array, int32_t ___1_index, int32_t ___2_length, const RuntimeMethod* method) ;
|
|
inline Comparer_1_t075B18A0921F760D040E0D8BFE6637CE0E1587E4* Comparer_1_get_Default_mCFD1A9E7464C248AC312558B9D4F772D8BE3B07C (const RuntimeMethod* method)
|
|
{
|
|
return (( Comparer_1_t075B18A0921F760D040E0D8BFE6637CE0E1587E4* (*) (const RuntimeMethod*))Comparer_1_get_Default_mCFD1A9E7464C248AC312558B9D4F772D8BE3B07C_gshared)(method);
|
|
}
|
|
inline void Array_Sort_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mCADEE7E401B19F98A7128D14C34529B99C2A5FB1 (BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___0_array, int32_t ___1_index, int32_t ___2_length, RuntimeObject* ___3_comparer, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))Array_Sort_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mCADEE7E401B19F98A7128D14C34529B99C2A5FB1_gshared)(___0_array, ___1_index, ___2_length, ___3_comparer, method);
|
|
}
|
|
inline int32_t Array_BinarySearch_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mF5D007014F2546628D6B17F48DE03086E13BB12B (BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___0_array, int32_t ___1_index, int32_t ___2_length, bool ___3_value, RuntimeObject* ___4_comparer, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*, int32_t, int32_t, bool, RuntimeObject*, const RuntimeMethod*))Array_BinarySearch_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mF5D007014F2546628D6B17F48DE03086E13BB12B_gshared)(___0_array, ___1_index, ___2_length, ___3_value, ___4_comparer, method);
|
|
}
|
|
inline void cyt_1_idl_m4B8A33E4A5122A586A0E5955F3EF67917EB10A33 (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_a, int32_t ___1_b, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47*, int32_t, int32_t, const RuntimeMethod*))cyt_1_idl_m4B8A33E4A5122A586A0E5955F3EF67917EB10A33_gshared)(__this, ___0_a, ___1_b, method);
|
|
}
|
|
inline void cyt_1_idt_mA6658BB30895E3BBE1646640F38069C703E6EFE1 (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_a, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47*, int32_t, const RuntimeMethod*))cyt_1_idt_mA6658BB30895E3BBE1646640F38069C703E6EFE1_gshared)(__this, ___0_a, method);
|
|
}
|
|
inline int32_t Array_LastIndexOf_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m845D2B272174E19367C54194C2C1E463C292547A (BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___0_array, bool ___1_value, int32_t ___2_startIndex, int32_t ___3_count, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*, bool, int32_t, int32_t, const RuntimeMethod*))Array_LastIndexOf_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m845D2B272174E19367C54194C2C1E463C292547A_gshared)(___0_array, ___1_value, ___2_startIndex, ___3_count, method);
|
|
}
|
|
inline int32_t cyt_1_IndexOf_m3849088A6F73B9B70D237B153305E1F935DE2760 (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, bool ___0_item, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47*, bool, const RuntimeMethod*))cyt_1_IndexOf_m3849088A6F73B9B70D237B153305E1F935DE2760_gshared)(__this, ___0_item, method);
|
|
}
|
|
inline void cyt_1_RemoveAt_m8E67B4F554A52DB59D68A0F384CE64C880D95D14 (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47*, int32_t, const RuntimeMethod*))cyt_1_RemoveAt_m8E67B4F554A52DB59D68A0F384CE64C880D95D14_gshared)(__this, ___0_index, method);
|
|
}
|
|
inline void cyt_1_GrowIfNeeded_m170426BB762510B0EDC7469DBDFF3E358DDEDD8F (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_addedCount, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47*, int32_t, const RuntimeMethod*))cyt_1_GrowIfNeeded_m170426BB762510B0EDC7469DBDFF3E358DDEDD8F_gshared)(__this, ___0_addedCount, method);
|
|
}
|
|
inline void cyt_1_CopyTo_mC4E0CA80BB53FD1C5A24F88BFC48ED39250BC46C (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___0_array, int32_t ___1_arrayIndex, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47*, BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*, int32_t, const RuntimeMethod*))cyt_1_CopyTo_mC4E0CA80BB53FD1C5A24F88BFC48ED39250BC46C_gshared)(__this, ___0_array, ___1_arrayIndex, method);
|
|
}
|
|
inline void cyt_1_ido_m998DEE4F346CB07D570680ACD85014B00749B5A8 (Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584*, const RuntimeMethod*))cyt_1_ido_m998DEE4F346CB07D570680ACD85014B00749B5A8_gshared)(___0_a, method);
|
|
}
|
|
inline int32_t cyt_1_idq_mAC1FDAFCE883432EA61DA621FAA2C270ABDB046A (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_a, int32_t ___1_b, Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* ___2_c, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47*, int32_t, int32_t, Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584*, const RuntimeMethod*))cyt_1_idq_mAC1FDAFCE883432EA61DA621FAA2C270ABDB046A_gshared)(__this, ___0_a, ___1_b, ___2_c, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, String_t* ___0_message, const RuntimeMethod* method) ;
|
|
inline cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* cyt_1_idp_m4DB8872250D16654B5E6BC549AFF82FB8AF9F1E0 (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
return (( cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* (*) (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47*, Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584*, const RuntimeMethod*))cyt_1_idp_m4DB8872250D16654B5E6BC549AFF82FB8AF9F1E0_gshared)(__this, ___0_a, method);
|
|
}
|
|
inline void cyt_1__ctor_m98E820B107202E0F4FA5C04E41CD82CA1743B5C2 (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47*, const RuntimeMethod*))cyt_1__ctor_m98E820B107202E0F4FA5C04E41CD82CA1743B5C2_gshared)(__this, method);
|
|
}
|
|
inline bool Predicate_1_Invoke_m5EB17D73F75C175B835656A7C7C137A266E07928_inline (Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* __this, bool ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584*, bool, const RuntimeMethod*))Predicate_1_Invoke_m5EB17D73F75C175B835656A7C7C137A266E07928_gshared_inline)(__this, ___0_obj, method);
|
|
}
|
|
inline void cyt_1_Add_mCB89DC75FC1990D446177FD25B269F8BF6305156 (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, bool ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47*, bool, const RuntimeMethod*))cyt_1_Add_mCB89DC75FC1990D446177FD25B269F8BF6305156_gshared)(__this, ___0_item, method);
|
|
}
|
|
inline void Array_Reverse_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m12308A79AECE5E7D2D300ACDABDA0DC883476BC9 (BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___0_array, int32_t ___1_index, int32_t ___2_length, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*, int32_t, int32_t, const RuntimeMethod*))Array_Reverse_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m12308A79AECE5E7D2D300ACDABDA0DC883476BC9_gshared)(___0_array, ___1_index, ___2_length, method);
|
|
}
|
|
inline void cyt_1_Insert_mEF46D0C9064528201BD359AEEE002ED6ACCE8FE5 (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_index, bool ___1_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47*, int32_t, bool, const RuntimeMethod*))cyt_1_Insert_mEF46D0C9064528201BD359AEEE002ED6ACCE8FE5_gshared)(__this, ___0_index, ___1_item, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* __this, String_t* ___0_paramName, const RuntimeMethod* method) ;
|
|
inline void Action_1_Invoke_m69C8773D6967F3B224777183E24EA621CE056F8F_inline (Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C* __this, bool ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C*, bool, const RuntimeMethod*))Action_1_Invoke_m69C8773D6967F3B224777183E24EA621CE056F8F_gshared_inline)(__this, ___0_obj, method);
|
|
}
|
|
inline int32_t cyt_1_idr_m168B6DDAF2B371966ABD6C225FD1E5E1ABEE5E0B (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_a, int32_t ___1_b, Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* ___2_c, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47*, int32_t, int32_t, Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584*, const RuntimeMethod*))cyt_1_idr_m168B6DDAF2B371966ABD6C225FD1E5E1ABEE5E0B_gshared)(__this, ___0_a, ___1_b, ___2_c, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m60B543A63AC8692C28096003FBF2AD124B9D5B85 (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* __this, String_t* ___0_paramName, RuntimeObject* ___1_actualValue, String_t* ___2_message, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41 (RuntimeArray* ___0_sourceArray, int32_t ___1_sourceIndex, RuntimeArray* ___2_destinationArray, int32_t ___3_destinationIndex, int32_t ___4_length, const RuntimeMethod* method) ;
|
|
inline int32_t Array_IndexOf_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m48C663051095D0B18F3E04B9352AACE522354A3D (BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___0_array, bool ___1_value, int32_t ___2_startIndex, int32_t ___3_count, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*, bool, int32_t, int32_t, const RuntimeMethod*))Array_IndexOf_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m48C663051095D0B18F3E04B9352AACE522354A3D_gshared)(___0_array, ___1_value, ___2_startIndex, ___3_count, method);
|
|
}
|
|
inline void cyt_1_idv_m306D5A3D5085E76FF467536D645B7ED55EFA7D12 (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_a, RuntimeObject* ___1_b, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47*, int32_t, RuntimeObject*, const RuntimeMethod*))cyt_1_idv_m306D5A3D5085E76FF467536D645B7ED55EFA7D12_gshared)(__this, ___0_a, ___1_b, method);
|
|
}
|
|
inline void cyt_1_idw_m9D40ED1670DE81E52B3C94AFACC0C4BB36B0FCCA (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_a, RuntimeObject* ___1_b, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47*, int32_t, RuntimeObject*, const RuntimeMethod*))cyt_1_idw_m9D40ED1670DE81E52B3C94AFACC0C4BB36B0FCCA_gshared)(__this, ___0_a, ___1_b, method);
|
|
}
|
|
inline cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5 cyt_1_GetEnumerator_m43B57AE5935381216C9E234AEA4549AE4BE07266 (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5 (*) (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47*, const RuntimeMethod*))cyt_1_GetEnumerator_m43B57AE5935381216C9E234AEA4549AE4BE07266_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Copy_m4233828B4E6288B6D815F539AAA38575DE627900 (RuntimeArray* ___0_sourceArray, RuntimeArray* ___1_destinationArray, int32_t ___2_length, const RuntimeMethod* method) ;
|
|
inline void Array_Sort_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m7B5281A5A9295B2A6047BF97966CAE19B6177FAB (BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___0_array, Comparison_1_tF15DB3AEC82E2B8B1BF7E34C4EAB7D1031840D68* ___1_comparison, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*, Comparison_1_tF15DB3AEC82E2B8B1BF7E34C4EAB7D1031840D68*, const RuntimeMethod*))Array_Sort_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m7B5281A5A9295B2A6047BF97966CAE19B6177FAB_gshared)(___0_array, ___1_comparison, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_mB596C51BFA864B65C2CED275458FAE90F7CD29C9 (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* __this, const RuntimeMethod* method) ;
|
|
inline void Array_Resize_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mBCB506488726A4601272E5DDC33649D64938A4F2 (BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4** ___0_array, int32_t ___1_newSize, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4**, int32_t, const RuntimeMethod*))Array_Resize_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mBCB506488726A4601272E5DDC33649D64938A4F2_gshared)(___0_array, ___1_newSize, method);
|
|
}
|
|
inline int32_t Array_BinarySearch_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m27607EF8994F821461C232E917EC9DA328027C4F (BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___0_array, int32_t ___1_index, int32_t ___2_length, bool ___3_value, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*, int32_t, int32_t, bool, const RuntimeMethod*))Array_BinarySearch_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m27607EF8994F821461C232E917EC9DA328027C4F_gshared)(___0_array, ___1_index, ___2_length, ___3_value, method);
|
|
}
|
|
inline void cyt_1__ctor_m8760951D19E06D7D726B915E5416D0C816E57939 (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___0_a, int32_t ___1_b, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47*, BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*, int32_t, const RuntimeMethod*))cyt_1__ctor_m8760951D19E06D7D726B915E5416D0C816E57939_gshared)(__this, ___0_a, ___1_b, method);
|
|
}
|
|
inline void cyt_1_idu_mB554082BA3DCC6D79880A04CC3CF3DCEE515E1C5 (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, RuntimeObject* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393*, RuntimeObject*, const RuntimeMethod*))cyt_1_idu_mB554082BA3DCC6D79880A04CC3CF3DCEE515E1C5_gshared)(__this, ___0_a, method);
|
|
}
|
|
inline void cyt_1_idn_m2193B2639133F531DFE87BF688FD3D95F744DC87 (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, RuntimeObject* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393*, RuntimeObject*, const RuntimeMethod*))cyt_1_idn_m2193B2639133F531DFE87BF688FD3D95F744DC87_gshared)(__this, ___0_a, method);
|
|
}
|
|
inline void cyt_1_idm_m6E084CF983BD0548EBB9CDB7E0429E8CAFCCE470 (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, RuntimeObject* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393*, RuntimeObject*, const RuntimeMethod*))cyt_1_idm_m6E084CF983BD0548EBB9CDB7E0429E8CAFCCE470_gshared)(__this, ___0_a, method);
|
|
}
|
|
inline int32_t cyt_1_get_Capacity_m02CB722643B2B3A6B5D4DBF3E7B973E31BF1D21D (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393*, const RuntimeMethod*))cyt_1_get_Capacity_m02CB722643B2B3A6B5D4DBF3E7B973E31BF1D21D_gshared)(__this, method);
|
|
}
|
|
inline void cyt_1_set_Capacity_m80512E7F8AB3648DB3FD429E18528E8617E89F98 (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393*, int32_t, const RuntimeMethod*))cyt_1_set_Capacity_m80512E7F8AB3648DB3FD429E18528E8617E89F98_gshared)(__this, ___0_value, method);
|
|
}
|
|
inline void cyt_1_ids_mD8353B1327BE0F02A0B4EF33D20F04B6FFD850CC (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_a, int32_t ___1_b, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393*, int32_t, int32_t, const RuntimeMethod*))cyt_1_ids_mD8353B1327BE0F02A0B4EF33D20F04B6FFD850CC_gshared)(__this, ___0_a, ___1_b, method);
|
|
}
|
|
inline Comparer_1_t2158F98C5484AAD9CDBEC169B93B8E28C528F647* Comparer_1_get_Default_mB05937E8B4EB28971561831884D5D55B86740198 (const RuntimeMethod* method)
|
|
{
|
|
return (( Comparer_1_t2158F98C5484AAD9CDBEC169B93B8E28C528F647* (*) (const RuntimeMethod*))Comparer_1_get_Default_mB05937E8B4EB28971561831884D5D55B86740198_gshared)(method);
|
|
}
|
|
inline void Array_Sort_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_m1BC51854203A2823C849C9959B4FD7EAC0990E9D (Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* ___0_array, int32_t ___1_index, int32_t ___2_length, RuntimeObject* ___3_comparer, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259*, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))Array_Sort_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_m1BC51854203A2823C849C9959B4FD7EAC0990E9D_gshared)(___0_array, ___1_index, ___2_length, ___3_comparer, method);
|
|
}
|
|
inline int32_t Array_BinarySearch_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_m4105FC846F0210DFB1493B8502107DFC7F4447FA (Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* ___0_array, int32_t ___1_index, int32_t ___2_length, Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___3_value, RuntimeObject* ___4_comparer, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259*, int32_t, int32_t, Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B, RuntimeObject*, const RuntimeMethod*))Array_BinarySearch_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_m4105FC846F0210DFB1493B8502107DFC7F4447FA_gshared)(___0_array, ___1_index, ___2_length, ___3_value, ___4_comparer, method);
|
|
}
|
|
inline void cyt_1_idl_mADCCA47F644A1F7500357A65BB86B338ADF548C3 (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_a, int32_t ___1_b, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393*, int32_t, int32_t, const RuntimeMethod*))cyt_1_idl_mADCCA47F644A1F7500357A65BB86B338ADF548C3_gshared)(__this, ___0_a, ___1_b, method);
|
|
}
|
|
inline void cyt_1_idt_m4A73A45DF238AEF2B34C0AF09F0884E2BD83885A (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_a, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393*, int32_t, const RuntimeMethod*))cyt_1_idt_m4A73A45DF238AEF2B34C0AF09F0884E2BD83885A_gshared)(__this, ___0_a, method);
|
|
}
|
|
inline int32_t Array_LastIndexOf_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_mFEAF1A193068B027D29AA4614282DCBEB658B5E6 (Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* ___0_array, Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___1_value, int32_t ___2_startIndex, int32_t ___3_count, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259*, Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B, int32_t, int32_t, const RuntimeMethod*))Array_LastIndexOf_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_mFEAF1A193068B027D29AA4614282DCBEB658B5E6_gshared)(___0_array, ___1_value, ___2_startIndex, ___3_count, method);
|
|
}
|
|
inline int32_t cyt_1_IndexOf_mD4DE311DFCDE7BC9471A97058A057499D3B0F273 (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___0_item, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393*, Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B, const RuntimeMethod*))cyt_1_IndexOf_mD4DE311DFCDE7BC9471A97058A057499D3B0F273_gshared)(__this, ___0_item, method);
|
|
}
|
|
inline void cyt_1_RemoveAt_mC354F97146551F70D5F076D59A503C9B81BF1635 (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393*, int32_t, const RuntimeMethod*))cyt_1_RemoveAt_mC354F97146551F70D5F076D59A503C9B81BF1635_gshared)(__this, ___0_index, method);
|
|
}
|
|
inline void cyt_1_GrowIfNeeded_m0B3BB1894C2FC2DD110375B51DB03C40E568E63F (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_addedCount, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393*, int32_t, const RuntimeMethod*))cyt_1_GrowIfNeeded_m0B3BB1894C2FC2DD110375B51DB03C40E568E63F_gshared)(__this, ___0_addedCount, method);
|
|
}
|
|
inline void cyt_1_CopyTo_m2E27CC58C0654ECFA9A9C65E5654B2D518194D08 (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* ___0_array, int32_t ___1_arrayIndex, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393*, Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259*, int32_t, const RuntimeMethod*))cyt_1_CopyTo_m2E27CC58C0654ECFA9A9C65E5654B2D518194D08_gshared)(__this, ___0_array, ___1_arrayIndex, method);
|
|
}
|
|
inline void cyt_1_ido_mF9A49B8ACE89034950993E4975E418968023288D (Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B*, const RuntimeMethod*))cyt_1_ido_mF9A49B8ACE89034950993E4975E418968023288D_gshared)(___0_a, method);
|
|
}
|
|
inline int32_t cyt_1_idq_m94AB47CE34F9EA1E45C125E36E4A3F259842F68F (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_a, int32_t ___1_b, Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* ___2_c, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393*, int32_t, int32_t, Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B*, const RuntimeMethod*))cyt_1_idq_m94AB47CE34F9EA1E45C125E36E4A3F259842F68F_gshared)(__this, ___0_a, ___1_b, ___2_c, method);
|
|
}
|
|
inline cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* cyt_1_idp_m9078BA25FE77572093F2F6BB4D4A555D417A4F5A (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
return (( cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* (*) (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393*, Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B*, const RuntimeMethod*))cyt_1_idp_m9078BA25FE77572093F2F6BB4D4A555D417A4F5A_gshared)(__this, ___0_a, method);
|
|
}
|
|
inline void cyt_1__ctor_m2CB897D767D4305D514457B6FEE95CF63A8B0FF8 (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393*, const RuntimeMethod*))cyt_1__ctor_m2CB897D767D4305D514457B6FEE95CF63A8B0FF8_gshared)(__this, method);
|
|
}
|
|
inline bool Predicate_1_Invoke_mDADE161CEBD2C998D731FDAEB5F81BFCD7F4B984_inline (Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* __this, Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B*, Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B, const RuntimeMethod*))Predicate_1_Invoke_mDADE161CEBD2C998D731FDAEB5F81BFCD7F4B984_gshared_inline)(__this, ___0_obj, method);
|
|
}
|
|
inline void cyt_1_Add_m665ADCD997B066832AA5791D41EDBF09E2B058D1 (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393*, Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B, const RuntimeMethod*))cyt_1_Add_m665ADCD997B066832AA5791D41EDBF09E2B058D1_gshared)(__this, ___0_item, method);
|
|
}
|
|
inline void Array_Reverse_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_mED878CBBB3A2B00E856FEEB4E0CAB3716075485F (Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* ___0_array, int32_t ___1_index, int32_t ___2_length, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259*, int32_t, int32_t, const RuntimeMethod*))Array_Reverse_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_mED878CBBB3A2B00E856FEEB4E0CAB3716075485F_gshared)(___0_array, ___1_index, ___2_length, method);
|
|
}
|
|
inline void cyt_1_Insert_m9648AA1239EFCA964A85C7C33375C7513000FDC2 (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_index, Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___1_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393*, int32_t, Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B, const RuntimeMethod*))cyt_1_Insert_m9648AA1239EFCA964A85C7C33375C7513000FDC2_gshared)(__this, ___0_index, ___1_item, method);
|
|
}
|
|
inline void Action_1_Invoke_m85DAE826CA357D0983BCC4F60DC807727254AC42_inline (Action_1_tA0F10A9285403FFE399C24B340DC3300881DE735* __this, Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_1_tA0F10A9285403FFE399C24B340DC3300881DE735*, Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B, const RuntimeMethod*))Action_1_Invoke_m85DAE826CA357D0983BCC4F60DC807727254AC42_gshared_inline)(__this, ___0_obj, method);
|
|
}
|
|
inline int32_t cyt_1_idr_m0C5B2440BF77A3C6ECEF39603A4C5E3EEAC9A718 (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_a, int32_t ___1_b, Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* ___2_c, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393*, int32_t, int32_t, Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B*, const RuntimeMethod*))cyt_1_idr_m0C5B2440BF77A3C6ECEF39603A4C5E3EEAC9A718_gshared)(__this, ___0_a, ___1_b, ___2_c, method);
|
|
}
|
|
inline int32_t Array_IndexOf_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_m4A144DC89C23111FE2293A75D78A9265CECBC2B6 (Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* ___0_array, Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___1_value, int32_t ___2_startIndex, int32_t ___3_count, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259*, Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B, int32_t, int32_t, const RuntimeMethod*))Array_IndexOf_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_m4A144DC89C23111FE2293A75D78A9265CECBC2B6_gshared)(___0_array, ___1_value, ___2_startIndex, ___3_count, method);
|
|
}
|
|
inline void cyt_1_idv_m9C1D72AE7519FC36E50E0513B004A8B2DDB3DAFF (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_a, RuntimeObject* ___1_b, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393*, int32_t, RuntimeObject*, const RuntimeMethod*))cyt_1_idv_m9C1D72AE7519FC36E50E0513B004A8B2DDB3DAFF_gshared)(__this, ___0_a, ___1_b, method);
|
|
}
|
|
inline void cyt_1_idw_mC1F81649E03DE291435B4B7110D8458DCB26BDFB (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_a, RuntimeObject* ___1_b, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393*, int32_t, RuntimeObject*, const RuntimeMethod*))cyt_1_idw_mC1F81649E03DE291435B4B7110D8458DCB26BDFB_gshared)(__this, ___0_a, ___1_b, method);
|
|
}
|
|
inline cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E cyt_1_GetEnumerator_mFC1C25E64E63822D19CD354C3A2B0271CE1BE0CF (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E (*) (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393*, const RuntimeMethod*))cyt_1_GetEnumerator_mFC1C25E64E63822D19CD354C3A2B0271CE1BE0CF_gshared)(__this, method);
|
|
}
|
|
inline void Array_Sort_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_m6FA55327636C69CCD08BCF2DAE2FBE8F99EFE05C (Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* ___0_array, Comparison_1_t939FA5753922E5ECCF481BF4BC889604ED91887E* ___1_comparison, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259*, Comparison_1_t939FA5753922E5ECCF481BF4BC889604ED91887E*, const RuntimeMethod*))Array_Sort_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_m6FA55327636C69CCD08BCF2DAE2FBE8F99EFE05C_gshared)(___0_array, ___1_comparison, method);
|
|
}
|
|
inline void Array_Resize_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_m848A8FC319792F387E6DF3EC87DF9E9685763375 (Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259** ___0_array, int32_t ___1_newSize, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259**, int32_t, const RuntimeMethod*))Array_Resize_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_m848A8FC319792F387E6DF3EC87DF9E9685763375_gshared)(___0_array, ___1_newSize, method);
|
|
}
|
|
inline int32_t Array_BinarySearch_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_mD6B304F2750E88FFAAADD4B2F0C93AD705FA0E4B (Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* ___0_array, int32_t ___1_index, int32_t ___2_length, Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___3_value, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259*, int32_t, int32_t, Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B, const RuntimeMethod*))Array_BinarySearch_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_mD6B304F2750E88FFAAADD4B2F0C93AD705FA0E4B_gshared)(___0_array, ___1_index, ___2_length, ___3_value, method);
|
|
}
|
|
inline void cyt_1__ctor_m93DE95E671C9DB89E17A54005E9E05E30CCAD6C6 (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* ___0_a, int32_t ___1_b, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393*, Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259*, int32_t, const RuntimeMethod*))cyt_1__ctor_m93DE95E671C9DB89E17A54005E9E05E30CCAD6C6_gshared)(__this, ___0_a, ___1_b, method);
|
|
}
|
|
inline void cyt_1_idu_mB71D47073B98FA75225C4AFFA5A0B6DC63EF3823 (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, RuntimeObject* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7*, RuntimeObject*, const RuntimeMethod*))cyt_1_idu_mB71D47073B98FA75225C4AFFA5A0B6DC63EF3823_gshared)(__this, ___0_a, method);
|
|
}
|
|
inline void cyt_1_idn_m9805CD68ED7630DC4295D68C9F20DC4EA0178EBA (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, RuntimeObject* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7*, RuntimeObject*, const RuntimeMethod*))cyt_1_idn_m9805CD68ED7630DC4295D68C9F20DC4EA0178EBA_gshared)(__this, ___0_a, method);
|
|
}
|
|
inline void cyt_1_idm_m44A1224F81DCBACBE89297478537AE8FF7BAE3A0 (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, RuntimeObject* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7*, RuntimeObject*, const RuntimeMethod*))cyt_1_idm_m44A1224F81DCBACBE89297478537AE8FF7BAE3A0_gshared)(__this, ___0_a, method);
|
|
}
|
|
inline int32_t cyt_1_get_Capacity_mC0F5D69F3BB786AD478112777FF0EBF0E5B3BE14 (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7*, const RuntimeMethod*))cyt_1_get_Capacity_mC0F5D69F3BB786AD478112777FF0EBF0E5B3BE14_gshared)(__this, method);
|
|
}
|
|
inline void cyt_1_set_Capacity_m722108BF059153BAE79C7EDF507EEB48C779F8FC (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7*, int32_t, const RuntimeMethod*))cyt_1_set_Capacity_m722108BF059153BAE79C7EDF507EEB48C779F8FC_gshared)(__this, ___0_value, method);
|
|
}
|
|
inline void cyt_1_ids_m56BADCBF779101B71239D09D1AC3BFD3BE04EB76 (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_a, int32_t ___1_b, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7*, int32_t, int32_t, const RuntimeMethod*))cyt_1_ids_m56BADCBF779101B71239D09D1AC3BFD3BE04EB76_gshared)(__this, ___0_a, ___1_b, method);
|
|
}
|
|
inline Comparer_1_t2FF14F26F4D678A8FA199B888FF61A2A9D1D2D80* Comparer_1_get_Default_m55220E2A5C7845F68201F047E7DA0D708E8AE051 (const RuntimeMethod* method)
|
|
{
|
|
return (( Comparer_1_t2FF14F26F4D678A8FA199B888FF61A2A9D1D2D80* (*) (const RuntimeMethod*))Comparer_1_get_Default_m55220E2A5C7845F68201F047E7DA0D708E8AE051_gshared)(method);
|
|
}
|
|
inline void Array_Sort_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m6E0CF4C26182BB9D788C90ABE423C2F4CD145E41 (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___0_array, int32_t ___1_index, int32_t ___2_length, RuntimeObject* ___3_comparer, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))Array_Sort_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m6E0CF4C26182BB9D788C90ABE423C2F4CD145E41_gshared)(___0_array, ___1_index, ___2_length, ___3_comparer, method);
|
|
}
|
|
inline int32_t Array_BinarySearch_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC9C8319715804B003E1E2802B394C514987FE618 (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___0_array, int32_t ___1_index, int32_t ___2_length, int32_t ___3_value, RuntimeObject* ___4_comparer, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*, int32_t, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))Array_BinarySearch_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC9C8319715804B003E1E2802B394C514987FE618_gshared)(___0_array, ___1_index, ___2_length, ___3_value, ___4_comparer, method);
|
|
}
|
|
inline void cyt_1_idl_m9000500F726149135080EFE12D9BBAEF68A8F3E7 (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_a, int32_t ___1_b, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7*, int32_t, int32_t, const RuntimeMethod*))cyt_1_idl_m9000500F726149135080EFE12D9BBAEF68A8F3E7_gshared)(__this, ___0_a, ___1_b, method);
|
|
}
|
|
inline void cyt_1_idt_mC8A7F5432D2B0C10A4FC495599BF439C9231C2CD (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_a, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7*, int32_t, const RuntimeMethod*))cyt_1_idt_mC8A7F5432D2B0C10A4FC495599BF439C9231C2CD_gshared)(__this, ___0_a, method);
|
|
}
|
|
inline int32_t Array_LastIndexOf_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m459730221F1EEF97FEF185B13132174BA7CA27E5 (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___0_array, int32_t ___1_value, int32_t ___2_startIndex, int32_t ___3_count, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*, int32_t, int32_t, int32_t, const RuntimeMethod*))Array_LastIndexOf_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m459730221F1EEF97FEF185B13132174BA7CA27E5_gshared)(___0_array, ___1_value, ___2_startIndex, ___3_count, method);
|
|
}
|
|
inline int32_t cyt_1_IndexOf_m51B723D3B69FAA8FC99A1093B193B7C6CFD473D6 (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_item, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7*, int32_t, const RuntimeMethod*))cyt_1_IndexOf_m51B723D3B69FAA8FC99A1093B193B7C6CFD473D6_gshared)(__this, ___0_item, method);
|
|
}
|
|
inline void cyt_1_RemoveAt_m8AE91E06CFE08993B2E47188E5C7C09B80A656C0 (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7*, int32_t, const RuntimeMethod*))cyt_1_RemoveAt_m8AE91E06CFE08993B2E47188E5C7C09B80A656C0_gshared)(__this, ___0_index, method);
|
|
}
|
|
inline void cyt_1_GrowIfNeeded_mDE655F2F7E4C2CBBC0AF9F6B1D6495A454CB7B62 (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_addedCount, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7*, int32_t, const RuntimeMethod*))cyt_1_GrowIfNeeded_mDE655F2F7E4C2CBBC0AF9F6B1D6495A454CB7B62_gshared)(__this, ___0_addedCount, method);
|
|
}
|
|
inline void cyt_1_CopyTo_m6B41E78E39EAC0EDE3BE6B11546680A49E56D0D7 (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___0_array, int32_t ___1_arrayIndex, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7*, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*, int32_t, const RuntimeMethod*))cyt_1_CopyTo_m6B41E78E39EAC0EDE3BE6B11546680A49E56D0D7_gshared)(__this, ___0_array, ___1_arrayIndex, method);
|
|
}
|
|
inline void cyt_1_ido_m6E1F1840CE1042CBBDCE5686A52B9B4884A332FF (Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3*, const RuntimeMethod*))cyt_1_ido_m6E1F1840CE1042CBBDCE5686A52B9B4884A332FF_gshared)(___0_a, method);
|
|
}
|
|
inline int32_t cyt_1_idq_m277DA1C68B800F6AD2005F513FB13D938963D694 (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_a, int32_t ___1_b, Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* ___2_c, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7*, int32_t, int32_t, Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3*, const RuntimeMethod*))cyt_1_idq_m277DA1C68B800F6AD2005F513FB13D938963D694_gshared)(__this, ___0_a, ___1_b, ___2_c, method);
|
|
}
|
|
inline cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* cyt_1_idp_m8AC262B8D0D87C20D8C9E5682AC8F7AEF785D869 (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
return (( cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* (*) (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7*, Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3*, const RuntimeMethod*))cyt_1_idp_m8AC262B8D0D87C20D8C9E5682AC8F7AEF785D869_gshared)(__this, ___0_a, method);
|
|
}
|
|
inline void cyt_1__ctor_m021E3F2A9C6CFC552E6BA8E26A5007A71CF8C5E8 (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7*, const RuntimeMethod*))cyt_1__ctor_m021E3F2A9C6CFC552E6BA8E26A5007A71CF8C5E8_gshared)(__this, method);
|
|
}
|
|
inline bool Predicate_1_Invoke_mD16C664FFE93598D1C12AC86190D12B0F90B5419_inline (Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* __this, int32_t ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3*, int32_t, const RuntimeMethod*))Predicate_1_Invoke_mD16C664FFE93598D1C12AC86190D12B0F90B5419_gshared_inline)(__this, ___0_obj, method);
|
|
}
|
|
inline void cyt_1_Add_mCD1FDB026EDEF17E305F5BD1B7BD1343EEFC18E1 (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7*, int32_t, const RuntimeMethod*))cyt_1_Add_mCD1FDB026EDEF17E305F5BD1B7BD1343EEFC18E1_gshared)(__this, ___0_item, method);
|
|
}
|
|
inline void Array_Reverse_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m57764BD8E3718881AE35094284EFDECEE528991D (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___0_array, int32_t ___1_index, int32_t ___2_length, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*, int32_t, int32_t, const RuntimeMethod*))Array_Reverse_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m57764BD8E3718881AE35094284EFDECEE528991D_gshared)(___0_array, ___1_index, ___2_length, method);
|
|
}
|
|
inline void cyt_1_Insert_mA3A7F8F2AC7025947EE084A5EF68EA74C32A8547 (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_index, int32_t ___1_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7*, int32_t, int32_t, const RuntimeMethod*))cyt_1_Insert_mA3A7F8F2AC7025947EE084A5EF68EA74C32A8547_gshared)(__this, ___0_index, ___1_item, method);
|
|
}
|
|
inline void Action_1_Invoke_mAC3C34BA1905AB5B79E483CD9BB082B7D667F703_inline (Action_1_tD69A6DC9FBE94131E52F5A73B2A9D4AB51EEC404* __this, int32_t ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_1_tD69A6DC9FBE94131E52F5A73B2A9D4AB51EEC404*, int32_t, const RuntimeMethod*))Action_1_Invoke_mAC3C34BA1905AB5B79E483CD9BB082B7D667F703_gshared_inline)(__this, ___0_obj, method);
|
|
}
|
|
inline int32_t cyt_1_idr_mEC77EFD170677B6E5B6A435A594242EF65E066D2 (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_a, int32_t ___1_b, Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* ___2_c, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7*, int32_t, int32_t, Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3*, const RuntimeMethod*))cyt_1_idr_mEC77EFD170677B6E5B6A435A594242EF65E066D2_gshared)(__this, ___0_a, ___1_b, ___2_c, method);
|
|
}
|
|
inline int32_t Array_IndexOf_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m22CB8CB6C30E1C3E70C8662D7A290B88EF5007F3 (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___0_array, int32_t ___1_value, int32_t ___2_startIndex, int32_t ___3_count, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*, int32_t, int32_t, int32_t, const RuntimeMethod*))Array_IndexOf_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m22CB8CB6C30E1C3E70C8662D7A290B88EF5007F3_gshared)(___0_array, ___1_value, ___2_startIndex, ___3_count, method);
|
|
}
|
|
inline void cyt_1_idv_mF1515FBCC4256BFD76AEB704FAD02947DB84E108 (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_a, RuntimeObject* ___1_b, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7*, int32_t, RuntimeObject*, const RuntimeMethod*))cyt_1_idv_mF1515FBCC4256BFD76AEB704FAD02947DB84E108_gshared)(__this, ___0_a, ___1_b, method);
|
|
}
|
|
inline void cyt_1_idw_m0D76C6F99DE2ED792EE82D9C14803C913708B11E (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_a, RuntimeObject* ___1_b, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7*, int32_t, RuntimeObject*, const RuntimeMethod*))cyt_1_idw_m0D76C6F99DE2ED792EE82D9C14803C913708B11E_gshared)(__this, ___0_a, ___1_b, method);
|
|
}
|
|
inline cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065 cyt_1_GetEnumerator_mC4775BAD51A8AF0F8D1BAE481A469E023E6A62BF (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065 (*) (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7*, const RuntimeMethod*))cyt_1_GetEnumerator_mC4775BAD51A8AF0F8D1BAE481A469E023E6A62BF_gshared)(__this, method);
|
|
}
|
|
inline void Array_Sort_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m89052CD0450CDEC0AE040F2D1982E4DD33A12EF8 (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___0_array, Comparison_1_tB7DE1436CB53924C2FC41FF926D074C1ACC14D89* ___1_comparison, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*, Comparison_1_tB7DE1436CB53924C2FC41FF926D074C1ACC14D89*, const RuntimeMethod*))Array_Sort_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m89052CD0450CDEC0AE040F2D1982E4DD33A12EF8_gshared)(___0_array, ___1_comparison, method);
|
|
}
|
|
inline void Array_Resize_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m6BAA7BD6F22421B894347B1476C37052FAC6C916 (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C** ___0_array, int32_t ___1_newSize, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C**, int32_t, const RuntimeMethod*))Array_Resize_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m6BAA7BD6F22421B894347B1476C37052FAC6C916_gshared)(___0_array, ___1_newSize, method);
|
|
}
|
|
inline int32_t Array_BinarySearch_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m93F68F536E2565B21E3E5DA8695618C139B67FC0 (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___0_array, int32_t ___1_index, int32_t ___2_length, int32_t ___3_value, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*, int32_t, int32_t, int32_t, const RuntimeMethod*))Array_BinarySearch_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m93F68F536E2565B21E3E5DA8695618C139B67FC0_gshared)(___0_array, ___1_index, ___2_length, ___3_value, method);
|
|
}
|
|
inline void cyt_1__ctor_m9DD32B05F38190D7683C2B268473612A12E7B474 (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___0_a, int32_t ___1_b, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7*, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*, int32_t, const RuntimeMethod*))cyt_1__ctor_m9DD32B05F38190D7683C2B268473612A12E7B474_gshared)(__this, ___0_a, ___1_b, method);
|
|
}
|
|
inline void cyt_1_idu_mF72A8F55A50DCEE743B00B09FB7A90645B4E2DBC (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, RuntimeObject* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082*, RuntimeObject*, const RuntimeMethod*))cyt_1_idu_mF72A8F55A50DCEE743B00B09FB7A90645B4E2DBC_gshared)(__this, ___0_a, method);
|
|
}
|
|
inline void cyt_1_idn_m346C0CFFD2CC30D0E4A4797254C49F5409FA8930 (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, RuntimeObject* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082*, RuntimeObject*, const RuntimeMethod*))cyt_1_idn_m346C0CFFD2CC30D0E4A4797254C49F5409FA8930_gshared)(__this, ___0_a, method);
|
|
}
|
|
inline void cyt_1_idm_m631EC9E3D21BDD7A5BD295DEB5197651FCC481AF (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, RuntimeObject* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082*, RuntimeObject*, const RuntimeMethod*))cyt_1_idm_m631EC9E3D21BDD7A5BD295DEB5197651FCC481AF_gshared)(__this, ___0_a, method);
|
|
}
|
|
inline int32_t cyt_1_get_Capacity_m25BBFD31E5869C5345D8C149836A1AC006302696 (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082*, const RuntimeMethod*))cyt_1_get_Capacity_m25BBFD31E5869C5345D8C149836A1AC006302696_gshared)(__this, method);
|
|
}
|
|
inline void cyt_1_set_Capacity_m4AFFC21E90B87652650BECBF215353E7F0FAA683 (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082*, int32_t, const RuntimeMethod*))cyt_1_set_Capacity_m4AFFC21E90B87652650BECBF215353E7F0FAA683_gshared)(__this, ___0_value, method);
|
|
}
|
|
inline void cyt_1_ids_m6B1036E5DA03649E5121870B07DCD459DFED50BA (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_a, int32_t ___1_b, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082*, int32_t, int32_t, const RuntimeMethod*))cyt_1_ids_m6B1036E5DA03649E5121870B07DCD459DFED50BA_gshared)(__this, ___0_a, ___1_b, method);
|
|
}
|
|
inline Comparer_1_t0A03F9FBBEA32FB1528366652D3D38513E8B1137* Comparer_1_get_Default_mBE201B8DE0399BC709123B087F2215883366753F (const RuntimeMethod* method)
|
|
{
|
|
return (( Comparer_1_t0A03F9FBBEA32FB1528366652D3D38513E8B1137* (*) (const RuntimeMethod*))Comparer_1_get_Default_mBE201B8DE0399BC709123B087F2215883366753F_gshared)(method);
|
|
}
|
|
inline void Array_Sort_TisRuntimeObject_mF8C07FB088390BE91CF3D4F9C8C4AC052B3FBCBA (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___0_array, int32_t ___1_index, int32_t ___2_length, RuntimeObject* ___3_comparer, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))Array_Sort_TisRuntimeObject_mF8C07FB088390BE91CF3D4F9C8C4AC052B3FBCBA_gshared)(___0_array, ___1_index, ___2_length, ___3_comparer, method);
|
|
}
|
|
inline int32_t Array_BinarySearch_TisRuntimeObject_m5B818220FAB53B22E61917AC1A8AE36C1B1DA151 (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___0_array, int32_t ___1_index, int32_t ___2_length, RuntimeObject* ___3_value, RuntimeObject* ___4_comparer, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, int32_t, int32_t, RuntimeObject*, RuntimeObject*, const RuntimeMethod*))Array_BinarySearch_TisRuntimeObject_m5B818220FAB53B22E61917AC1A8AE36C1B1DA151_gshared)(___0_array, ___1_index, ___2_length, ___3_value, ___4_comparer, method);
|
|
}
|
|
inline void cyt_1_idl_m86740E04EE6C8C56BA0FAEA89C51CA570D0713FB (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_a, int32_t ___1_b, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082*, int32_t, int32_t, const RuntimeMethod*))cyt_1_idl_m86740E04EE6C8C56BA0FAEA89C51CA570D0713FB_gshared)(__this, ___0_a, ___1_b, method);
|
|
}
|
|
inline void cyt_1_idt_m9D16DBE0051863DFFE480EAC4C8C87EA6DD6B353 (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_a, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082*, int32_t, const RuntimeMethod*))cyt_1_idt_m9D16DBE0051863DFFE480EAC4C8C87EA6DD6B353_gshared)(__this, ___0_a, method);
|
|
}
|
|
inline int32_t Array_LastIndexOf_TisRuntimeObject_m71A883897624019E6587A0716169FDF72475BC3D (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___0_array, RuntimeObject* ___1_value, int32_t ___2_startIndex, int32_t ___3_count, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, RuntimeObject*, int32_t, int32_t, const RuntimeMethod*))Array_LastIndexOf_TisRuntimeObject_m71A883897624019E6587A0716169FDF72475BC3D_gshared)(___0_array, ___1_value, ___2_startIndex, ___3_count, method);
|
|
}
|
|
inline int32_t cyt_1_IndexOf_m8B0A0B29CC140DDD6EB5E7843FF5BBD6886786D1 (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, RuntimeObject* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082*, RuntimeObject*, const RuntimeMethod*))cyt_1_IndexOf_m8B0A0B29CC140DDD6EB5E7843FF5BBD6886786D1_gshared)(__this, ___0_item, method);
|
|
}
|
|
inline void cyt_1_RemoveAt_mEFA444476CFC5CD00EE1AE15712D5AA3CCAEF48C (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082*, int32_t, const RuntimeMethod*))cyt_1_RemoveAt_mEFA444476CFC5CD00EE1AE15712D5AA3CCAEF48C_gshared)(__this, ___0_index, method);
|
|
}
|
|
inline void cyt_1_GrowIfNeeded_mEC3F45D7117DE0334F2D60DC340F0B049A7CF616 (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_addedCount, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082*, int32_t, const RuntimeMethod*))cyt_1_GrowIfNeeded_mEC3F45D7117DE0334F2D60DC340F0B049A7CF616_gshared)(__this, ___0_addedCount, method);
|
|
}
|
|
inline void cyt_1_CopyTo_m23EB801CB3FE7930AE6A743D5FDEDAFA7A1C537A (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___0_array, int32_t ___1_arrayIndex, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, int32_t, const RuntimeMethod*))cyt_1_CopyTo_m23EB801CB3FE7930AE6A743D5FDEDAFA7A1C537A_gshared)(__this, ___0_array, ___1_arrayIndex, method);
|
|
}
|
|
inline void cyt_1_ido_m3DDDB78E59C3C27140EA4944DF5910E6994A2B60 (Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12*, const RuntimeMethod*))cyt_1_ido_m3DDDB78E59C3C27140EA4944DF5910E6994A2B60_gshared)(___0_a, method);
|
|
}
|
|
inline int32_t cyt_1_idq_m5F41A40EFD751257A620EC81EE5C2F81E67F8E19 (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_a, int32_t ___1_b, Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* ___2_c, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082*, int32_t, int32_t, Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12*, const RuntimeMethod*))cyt_1_idq_m5F41A40EFD751257A620EC81EE5C2F81E67F8E19_gshared)(__this, ___0_a, ___1_b, ___2_c, method);
|
|
}
|
|
inline cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* cyt_1_idp_mF5E6A0282AFB776850E197F0AC2F8E6AF1034780 (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
return (( cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* (*) (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082*, Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12*, const RuntimeMethod*))cyt_1_idp_mF5E6A0282AFB776850E197F0AC2F8E6AF1034780_gshared)(__this, ___0_a, method);
|
|
}
|
|
inline void cyt_1__ctor_mFC67434B16EC7C3504CD32D1618B4BBB327D2EF2 (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082*, const RuntimeMethod*))cyt_1__ctor_mFC67434B16EC7C3504CD32D1618B4BBB327D2EF2_gshared)(__this, method);
|
|
}
|
|
inline bool Predicate_1_Invoke_m6AC449189DCEE89A4FA2A2B724DE296A1DFB6A9B_inline (Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12*, RuntimeObject*, const RuntimeMethod*))Predicate_1_Invoke_m6AC449189DCEE89A4FA2A2B724DE296A1DFB6A9B_gshared_inline)(__this, ___0_obj, method);
|
|
}
|
|
inline void cyt_1_Add_mB0A91C50406EC0F3EDAF35DF0AC1667D6E429B4C (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, RuntimeObject* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082*, RuntimeObject*, const RuntimeMethod*))cyt_1_Add_mB0A91C50406EC0F3EDAF35DF0AC1667D6E429B4C_gshared)(__this, ___0_item, method);
|
|
}
|
|
inline void Array_Reverse_TisRuntimeObject_m06FF2E5011A594BEE1AF5EC3AEA51997A9812FE1 (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___0_array, int32_t ___1_index, int32_t ___2_length, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, int32_t, int32_t, const RuntimeMethod*))Array_Reverse_TisRuntimeObject_m06FF2E5011A594BEE1AF5EC3AEA51997A9812FE1_gshared)(___0_array, ___1_index, ___2_length, method);
|
|
}
|
|
inline void cyt_1_Insert_m4D389AA2029794265B17FA549C154713C86357BC (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_index, RuntimeObject* ___1_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082*, int32_t, RuntimeObject*, const RuntimeMethod*))cyt_1_Insert_m4D389AA2029794265B17FA549C154713C86357BC_gshared)(__this, ___0_index, ___1_item, method);
|
|
}
|
|
inline int32_t cyt_1_idr_m6E400D24DCC5D8A9C8DEAF5401A9A2C7FEFD5F55 (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_a, int32_t ___1_b, Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* ___2_c, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082*, int32_t, int32_t, Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12*, const RuntimeMethod*))cyt_1_idr_m6E400D24DCC5D8A9C8DEAF5401A9A2C7FEFD5F55_gshared)(__this, ___0_a, ___1_b, ___2_c, method);
|
|
}
|
|
inline int32_t Array_IndexOf_TisRuntimeObject_m4C0C698B1D627E6B3C3BE6DDA512E8E276DC6F73 (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___0_array, RuntimeObject* ___1_value, int32_t ___2_startIndex, int32_t ___3_count, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, RuntimeObject*, int32_t, int32_t, const RuntimeMethod*))Array_IndexOf_TisRuntimeObject_m4C0C698B1D627E6B3C3BE6DDA512E8E276DC6F73_gshared)(___0_array, ___1_value, ___2_startIndex, ___3_count, method);
|
|
}
|
|
inline void cyt_1_idv_mB734D87440F4979238E674EFDF3233270B6A8459 (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_a, RuntimeObject* ___1_b, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082*, int32_t, RuntimeObject*, const RuntimeMethod*))cyt_1_idv_mB734D87440F4979238E674EFDF3233270B6A8459_gshared)(__this, ___0_a, ___1_b, method);
|
|
}
|
|
inline void cyt_1_idw_m90DF59ECB74CEF8020FE1177408747CEDD0F94CA (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_a, RuntimeObject* ___1_b, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082*, int32_t, RuntimeObject*, const RuntimeMethod*))cyt_1_idw_m90DF59ECB74CEF8020FE1177408747CEDD0F94CA_gshared)(__this, ___0_a, ___1_b, method);
|
|
}
|
|
inline cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857 cyt_1_GetEnumerator_m6E9674491979BB9A77201A6544F38E85D36FE6C9 (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857 (*) (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082*, const RuntimeMethod*))cyt_1_GetEnumerator_m6E9674491979BB9A77201A6544F38E85D36FE6C9_gshared)(__this, method);
|
|
}
|
|
inline void Array_Sort_TisRuntimeObject_mFC83E20748A5276FAA7611C2DCFCAE00737CF389 (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___0_array, Comparison_1_t62E531E7B8260E2C6C2718C3BDB8CF8655139645* ___1_comparison, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, Comparison_1_t62E531E7B8260E2C6C2718C3BDB8CF8655139645*, const RuntimeMethod*))Array_Sort_TisRuntimeObject_mFC83E20748A5276FAA7611C2DCFCAE00737CF389_gshared)(___0_array, ___1_comparison, method);
|
|
}
|
|
inline void Array_Resize_TisRuntimeObject_mE8D92C287251BAF8256D85E5829F749359EC334E (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918** ___0_array, int32_t ___1_newSize, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918**, int32_t, const RuntimeMethod*))Array_Resize_TisRuntimeObject_mE8D92C287251BAF8256D85E5829F749359EC334E_gshared)(___0_array, ___1_newSize, method);
|
|
}
|
|
inline int32_t Array_BinarySearch_TisRuntimeObject_m0C39C82AF29428CA1CFFE2E303EC3AE0524AB972 (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___0_array, int32_t ___1_index, int32_t ___2_length, RuntimeObject* ___3_value, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))Array_BinarySearch_TisRuntimeObject_m0C39C82AF29428CA1CFFE2E303EC3AE0524AB972_gshared)(___0_array, ___1_index, ___2_length, ___3_value, method);
|
|
}
|
|
inline void cyt_1__ctor_mF8FF5307C386D30BCFDEF46CA5B3EC1EEA8A67F1 (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___0_a, int32_t ___1_b, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, int32_t, const RuntimeMethod*))cyt_1__ctor_mF8FF5307C386D30BCFDEF46CA5B3EC1EEA8A67F1_gshared)(__this, ___0_a, ___1_b, method);
|
|
}
|
|
inline void cyt_1_idu_m045460097664945547A819F2E2D01D661A7D1303 (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, RuntimeObject* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C*, RuntimeObject*, const RuntimeMethod*))cyt_1_idu_m045460097664945547A819F2E2D01D661A7D1303_gshared)(__this, ___0_a, method);
|
|
}
|
|
inline void cyt_1_idn_m2769E9B672B74E52436BF7223D50B494A54CDA53 (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, RuntimeObject* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C*, RuntimeObject*, const RuntimeMethod*))cyt_1_idn_m2769E9B672B74E52436BF7223D50B494A54CDA53_gshared)(__this, ___0_a, method);
|
|
}
|
|
inline void cyt_1_idm_m8577A86A9861B9C4FC4D6404B4BC48BE45294F22 (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, RuntimeObject* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C*, RuntimeObject*, const RuntimeMethod*))cyt_1_idm_m8577A86A9861B9C4FC4D6404B4BC48BE45294F22_gshared)(__this, ___0_a, method);
|
|
}
|
|
inline int32_t cyt_1_get_Capacity_mBAB0C7E76D9BF3B1F51614FB50BD88B4CF2060B2 (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C*, const RuntimeMethod*))cyt_1_get_Capacity_mBAB0C7E76D9BF3B1F51614FB50BD88B4CF2060B2_gshared)(__this, method);
|
|
}
|
|
inline void cyt_1_set_Capacity_mF395B9D346B4FB470B2C5D29964B39C0E4ED4904 (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C*, int32_t, const RuntimeMethod*))cyt_1_set_Capacity_mF395B9D346B4FB470B2C5D29964B39C0E4ED4904_gshared)(__this, ___0_value, method);
|
|
}
|
|
inline void cyt_1_ids_m32F0E8A04ED56B0558D5567B4800E6CB67F2009F (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_a, int32_t ___1_b, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C*, int32_t, int32_t, const RuntimeMethod*))cyt_1_ids_m32F0E8A04ED56B0558D5567B4800E6CB67F2009F_gshared)(__this, ___0_a, ___1_b, method);
|
|
}
|
|
inline Comparer_1_tE191E68CB394DD255CCA7A56F4D1DEFED0BD3FDB* Comparer_1_get_Default_m274A64D04DB3423C1B692B26E7B2218981F713D4 (const RuntimeMethod* method)
|
|
{
|
|
return (( Comparer_1_tE191E68CB394DD255CCA7A56F4D1DEFED0BD3FDB* (*) (const RuntimeMethod*))Comparer_1_get_Default_m274A64D04DB3423C1B692B26E7B2218981F713D4_gshared)(method);
|
|
}
|
|
inline void Array_Sort_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m7FDDF374B16885120D44BAE29B0FC6700486F5CF (SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___0_array, int32_t ___1_index, int32_t ___2_length, RuntimeObject* ___3_comparer, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C*, int32_t, int32_t, RuntimeObject*, const RuntimeMethod*))Array_Sort_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m7FDDF374B16885120D44BAE29B0FC6700486F5CF_gshared)(___0_array, ___1_index, ___2_length, ___3_comparer, method);
|
|
}
|
|
inline int32_t Array_BinarySearch_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m95B7C2BAA1A1E7FF65E4539C686A8F526F77E395 (SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___0_array, int32_t ___1_index, int32_t ___2_length, float ___3_value, RuntimeObject* ___4_comparer, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C*, int32_t, int32_t, float, RuntimeObject*, const RuntimeMethod*))Array_BinarySearch_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m95B7C2BAA1A1E7FF65E4539C686A8F526F77E395_gshared)(___0_array, ___1_index, ___2_length, ___3_value, ___4_comparer, method);
|
|
}
|
|
inline void cyt_1_idl_m9443E75977721CAA99CE6060F6826D5DE4E53417 (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_a, int32_t ___1_b, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C*, int32_t, int32_t, const RuntimeMethod*))cyt_1_idl_m9443E75977721CAA99CE6060F6826D5DE4E53417_gshared)(__this, ___0_a, ___1_b, method);
|
|
}
|
|
inline void cyt_1_idt_m3D44776058675A4A3BB595C5D79485A7C7B468A8 (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_a, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C*, int32_t, const RuntimeMethod*))cyt_1_idt_m3D44776058675A4A3BB595C5D79485A7C7B468A8_gshared)(__this, ___0_a, method);
|
|
}
|
|
inline int32_t Array_LastIndexOf_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m5828CE6FEB3BA43326FFAC8DB31AB2828091E739 (SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___0_array, float ___1_value, int32_t ___2_startIndex, int32_t ___3_count, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C*, float, int32_t, int32_t, const RuntimeMethod*))Array_LastIndexOf_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m5828CE6FEB3BA43326FFAC8DB31AB2828091E739_gshared)(___0_array, ___1_value, ___2_startIndex, ___3_count, method);
|
|
}
|
|
inline int32_t cyt_1_IndexOf_m31A176E5E262CBD867751551FAE5C3827C3932AD (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, float ___0_item, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C*, float, const RuntimeMethod*))cyt_1_IndexOf_m31A176E5E262CBD867751551FAE5C3827C3932AD_gshared)(__this, ___0_item, method);
|
|
}
|
|
inline void cyt_1_RemoveAt_mED7ACB98EA17CBDB1C6D3A5109DB12E18766FC1F (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C*, int32_t, const RuntimeMethod*))cyt_1_RemoveAt_mED7ACB98EA17CBDB1C6D3A5109DB12E18766FC1F_gshared)(__this, ___0_index, method);
|
|
}
|
|
inline void cyt_1_GrowIfNeeded_m3028A12042A36ADC680C0375E149D27AC5C4031D (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_addedCount, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C*, int32_t, const RuntimeMethod*))cyt_1_GrowIfNeeded_m3028A12042A36ADC680C0375E149D27AC5C4031D_gshared)(__this, ___0_addedCount, method);
|
|
}
|
|
inline void cyt_1_CopyTo_mA2FCEB9EC414F6434BE7B3498737C6789E14FBB4 (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___0_array, int32_t ___1_arrayIndex, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C*, SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C*, int32_t, const RuntimeMethod*))cyt_1_CopyTo_mA2FCEB9EC414F6434BE7B3498737C6789E14FBB4_gshared)(__this, ___0_array, ___1_arrayIndex, method);
|
|
}
|
|
inline void cyt_1_ido_m6C7C98A919E9A4A111E2B81C250FD8523C25E097 (Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD*, const RuntimeMethod*))cyt_1_ido_m6C7C98A919E9A4A111E2B81C250FD8523C25E097_gshared)(___0_a, method);
|
|
}
|
|
inline int32_t cyt_1_idq_mF2F1578B9ED97BCA37DE0953C6682E88DA40F257 (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_a, int32_t ___1_b, Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* ___2_c, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C*, int32_t, int32_t, Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD*, const RuntimeMethod*))cyt_1_idq_mF2F1578B9ED97BCA37DE0953C6682E88DA40F257_gshared)(__this, ___0_a, ___1_b, ___2_c, method);
|
|
}
|
|
inline cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* cyt_1_idp_m495F06828A6D8CCE019C1C325C2613EB79FF89E5 (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
return (( cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* (*) (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C*, Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD*, const RuntimeMethod*))cyt_1_idp_m495F06828A6D8CCE019C1C325C2613EB79FF89E5_gshared)(__this, ___0_a, method);
|
|
}
|
|
inline void cyt_1__ctor_mE4B559B055FAAB946A46DF1717AD16B3AE43C9D2 (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C*, const RuntimeMethod*))cyt_1__ctor_mE4B559B055FAAB946A46DF1717AD16B3AE43C9D2_gshared)(__this, method);
|
|
}
|
|
inline bool Predicate_1_Invoke_m4E65B2A24A1D224A284A6E2ECCA25CD11AFDE9F3_inline (Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* __this, float ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD*, float, const RuntimeMethod*))Predicate_1_Invoke_m4E65B2A24A1D224A284A6E2ECCA25CD11AFDE9F3_gshared_inline)(__this, ___0_obj, method);
|
|
}
|
|
inline void cyt_1_Add_m4C9039011EEBF361C4245CE00A68347276F8FA4F (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, float ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C*, float, const RuntimeMethod*))cyt_1_Add_m4C9039011EEBF361C4245CE00A68347276F8FA4F_gshared)(__this, ___0_item, method);
|
|
}
|
|
inline void Array_Reverse_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mD41090447225BE17383C1E8369E166FB72991CE8 (SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___0_array, int32_t ___1_index, int32_t ___2_length, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C*, int32_t, int32_t, const RuntimeMethod*))Array_Reverse_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mD41090447225BE17383C1E8369E166FB72991CE8_gshared)(___0_array, ___1_index, ___2_length, method);
|
|
}
|
|
inline void cyt_1_Insert_m45C6FA082F2119F89278ABC7165007782B083892 (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_index, float ___1_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C*, int32_t, float, const RuntimeMethod*))cyt_1_Insert_m45C6FA082F2119F89278ABC7165007782B083892_gshared)(__this, ___0_index, ___1_item, method);
|
|
}
|
|
inline void Action_1_Invoke_mA8F89FB04FEA0F48A4F22EC84B5F9ADB2914341F_inline (Action_1_t310F18CB4338A2740CA701F160C62E2C3198E66A* __this, float ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_1_t310F18CB4338A2740CA701F160C62E2C3198E66A*, float, const RuntimeMethod*))Action_1_Invoke_mA8F89FB04FEA0F48A4F22EC84B5F9ADB2914341F_gshared_inline)(__this, ___0_obj, method);
|
|
}
|
|
inline int32_t cyt_1_idr_m1658FDF970BCC0624BFC9706AF43BCC1D83AB0E2 (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_a, int32_t ___1_b, Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* ___2_c, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C*, int32_t, int32_t, Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD*, const RuntimeMethod*))cyt_1_idr_m1658FDF970BCC0624BFC9706AF43BCC1D83AB0E2_gshared)(__this, ___0_a, ___1_b, ___2_c, method);
|
|
}
|
|
inline int32_t Array_IndexOf_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m858F1C0E1DD59AF384654973FA814AC359896F57 (SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___0_array, float ___1_value, int32_t ___2_startIndex, int32_t ___3_count, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C*, float, int32_t, int32_t, const RuntimeMethod*))Array_IndexOf_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m858F1C0E1DD59AF384654973FA814AC359896F57_gshared)(___0_array, ___1_value, ___2_startIndex, ___3_count, method);
|
|
}
|
|
inline void cyt_1_idv_m55E542B18F7CD8417F7B80E632165D39BB66AAAA (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_a, RuntimeObject* ___1_b, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C*, int32_t, RuntimeObject*, const RuntimeMethod*))cyt_1_idv_m55E542B18F7CD8417F7B80E632165D39BB66AAAA_gshared)(__this, ___0_a, ___1_b, method);
|
|
}
|
|
inline void cyt_1_idw_mE89E5125CEC7A637F410B6F4BF741926610A39D0 (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_a, RuntimeObject* ___1_b, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C*, int32_t, RuntimeObject*, const RuntimeMethod*))cyt_1_idw_mE89E5125CEC7A637F410B6F4BF741926610A39D0_gshared)(__this, ___0_a, ___1_b, method);
|
|
}
|
|
inline cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A cyt_1_GetEnumerator_mA49A91798755AC9B68256C6FC42F823B8261A1F9 (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A (*) (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C*, const RuntimeMethod*))cyt_1_GetEnumerator_mA49A91798755AC9B68256C6FC42F823B8261A1F9_gshared)(__this, method);
|
|
}
|
|
inline void Array_Sort_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m4F0C5938E183315C342F727129047120834D2572 (SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___0_array, Comparison_1_t11F78E54645546468696C9CAAB9785713FDD3C1D* ___1_comparison, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C*, Comparison_1_t11F78E54645546468696C9CAAB9785713FDD3C1D*, const RuntimeMethod*))Array_Sort_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m4F0C5938E183315C342F727129047120834D2572_gshared)(___0_array, ___1_comparison, method);
|
|
}
|
|
inline void Array_Resize_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m879C2A54DAFE78F46D1185B50ED527EE182BFB04 (SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C** ___0_array, int32_t ___1_newSize, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C**, int32_t, const RuntimeMethod*))Array_Resize_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m879C2A54DAFE78F46D1185B50ED527EE182BFB04_gshared)(___0_array, ___1_newSize, method);
|
|
}
|
|
inline int32_t Array_BinarySearch_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m9C818DD66A1602A12D30F5B73B7FB1929B02A37B (SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___0_array, int32_t ___1_index, int32_t ___2_length, float ___3_value, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C*, int32_t, int32_t, float, const RuntimeMethod*))Array_BinarySearch_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m9C818DD66A1602A12D30F5B73B7FB1929B02A37B_gshared)(___0_array, ___1_index, ___2_length, ___3_value, method);
|
|
}
|
|
inline void cyt_1__ctor_m25ECE61ACD95871B1375F86C4DF54C56087A19D5 (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___0_a, int32_t ___1_b, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C*, SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C*, int32_t, const RuntimeMethod*))cyt_1__ctor_m25ECE61ACD95871B1375F86C4DF54C56087A19D5_gshared)(__this, ___0_a, ___1_b, method);
|
|
}
|
|
inline void List_1_AddWithResize_m79A9BF770BEF9C06BE40D5401E55E375F2726CC4 (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, RuntimeObject*, const RuntimeMethod*))List_1_AddWithResize_m79A9BF770BEF9C06BE40D5401E55E375F2726CC4_gshared)(__this, ___0_item, method);
|
|
}
|
|
inline void List_1_AddWithResize_mAD159B09F28BD7914562E219CA52E2D4BDCF5530 (List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* __this, int32_t ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576*, int32_t, const RuntimeMethod*))List_1_AddWithResize_mAD159B09F28BD7914562E219CA52E2D4BDCF5530_gshared)(__this, ___0_item, method);
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bxe_1__ctor_mC0D2E6E4E0690FCD0A24E5D24D7A08CACBE09FB4_gshared (bxe_1_t43C8AC168AE521CBBF9B1812DC6B6823209BB446* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bxe_1_ftq_mE27C545EB7BE2854354590EFB89B7EF73A40B0C4_gshared (bxe_1_t43C8AC168AE521CBBF9B1812DC6B6823209BB446* __this, RuntimeObject* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
UnityAction_1_t9C30BCD020745BF400CBACF22C6F34ADBA2DDA6A* G_B4_0 = NULL;
|
|
UnityAction_1_t9C30BCD020745BF400CBACF22C6F34ADBA2DDA6A* G_B3_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___0_a;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_1;
|
|
L_1 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602((Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
bool L_2 = __this->___isRecord;
|
|
if (!((int32_t)((int32_t)L_1&(int32_t)L_2)))
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
bxf_tF0EC3D2849529B5B131A64D9C49D38059B122A53* L_3 = __this->___U3CU3E4__this;
|
|
String_t* L_4 = __this->___assetUrl;
|
|
RuntimeObject* L_5 = ___0_a;
|
|
NullCheck(L_3);
|
|
bxf_RecordGameObject_mD72FFD37244F6138E17BEB7F28DB05965AF805DC(L_3, L_4, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)L_5, NULL);
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
UnityAction_1_t9C30BCD020745BF400CBACF22C6F34ADBA2DDA6A* L_6 = __this->___onCompleted;
|
|
UnityAction_1_t9C30BCD020745BF400CBACF22C6F34ADBA2DDA6A* L_7 = L_6;
|
|
if (L_7)
|
|
{
|
|
G_B4_0 = L_7;
|
|
goto IL_0037;
|
|
}
|
|
G_B3_0 = L_7;
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_0037:
|
|
{
|
|
RuntimeObject* L_8 = ___0_a;
|
|
NullCheck(G_B4_0);
|
|
UnityAction_1_Invoke_m777839BF9CB9F96B081106B47202D06FB35326CA_inline(G_B4_0, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bxg_1__ctor_mDBA6324CA6504FEE553BCDE74C520F6409ED4DD1_gshared (bxg_1_tF4F798E91A34034A5BB20B353D0504D528150380* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bxg_1_ftu_mD4270B95DD7403B209917B6F126628DD7C95862D_gshared (bxg_1_tF4F798E91A34034A5BB20B353D0504D528150380* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
wj_t5F4B191138DD4E91C1888EF23759495DECFB8E15* L_0 = __this->___goWrapper;
|
|
NullCheck(L_0);
|
|
wj_set_wrapTarget_m1CCBCE2C8CAA38E1D20B90100F9FC8948A91320F(L_0, (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)NULL, NULL);
|
|
bcq_t5702A62DE12536217F8A85320DBDD15BED5468B8* L_1 = __this->___gp;
|
|
NullCheck(L_1);
|
|
bcq_SetNativeObject_mC3DB538E2BD0E86BDE12F23719CF742EA9BD714D(L_1, (wg_t7CFF9CE7F816A6AA614B64D7E254ED1117E89A47*)NULL, NULL);
|
|
FXManager_t121CBC90514365E0FF3D7A1BB2E8E28F805C703C* L_2 = __this->___U3CU3E4__this;
|
|
int32_t L_3 = __this->___fx_Type;
|
|
RuntimeObject* L_4 = __this->___fx;
|
|
NullCheck(L_2);
|
|
FXManager_RecFx_TisRuntimeObject_m5407E2E3FF808A4D0DBD1017D9B7EF6975A89483(L_2, L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 2));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bxg_1_nnn_m36966A9123CA216F54E3252B9B0566DCB32C4C03_gshared (bxg_1_tF4F798E91A34034A5BB20B353D0504D528150380* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
wj_t5F4B191138DD4E91C1888EF23759495DECFB8E15* L_0 = __this->___goWrapper;
|
|
NullCheck(L_0);
|
|
wj_set_wrapTarget_m1CCBCE2C8CAA38E1D20B90100F9FC8948A91320F(L_0, (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)NULL, NULL);
|
|
bcq_t5702A62DE12536217F8A85320DBDD15BED5468B8* L_1 = __this->___gp;
|
|
NullCheck(L_1);
|
|
bcq_SetNativeObject_mC3DB538E2BD0E86BDE12F23719CF742EA9BD714D(L_1, (wg_t7CFF9CE7F816A6AA614B64D7E254ED1117E89A47*)NULL, NULL);
|
|
FXManager_t121CBC90514365E0FF3D7A1BB2E8E28F805C703C* L_2 = __this->___U3CU3E4__this;
|
|
int32_t L_3 = __this->___fx_Type;
|
|
RuntimeObject* L_4 = __this->___fx;
|
|
NullCheck(L_2);
|
|
FXManager_RecFx_TisRuntimeObject_m5407E2E3FF808A4D0DBD1017D9B7EF6975A89483(L_2, L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 2));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bxg_1_kjm_m71FC8A58C4A54054BB39A470BA9544CBCD048B4D_gshared (bxg_1_tF4F798E91A34034A5BB20B353D0504D528150380* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
wj_t5F4B191138DD4E91C1888EF23759495DECFB8E15* L_0 = __this->___goWrapper;
|
|
NullCheck(L_0);
|
|
wj_set_wrapTarget_m1CCBCE2C8CAA38E1D20B90100F9FC8948A91320F(L_0, (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)NULL, NULL);
|
|
bcq_t5702A62DE12536217F8A85320DBDD15BED5468B8* L_1 = __this->___gp;
|
|
NullCheck(L_1);
|
|
bcq_SetNativeObject_mC3DB538E2BD0E86BDE12F23719CF742EA9BD714D(L_1, (wg_t7CFF9CE7F816A6AA614B64D7E254ED1117E89A47*)NULL, NULL);
|
|
FXManager_t121CBC90514365E0FF3D7A1BB2E8E28F805C703C* L_2 = __this->___U3CU3E4__this;
|
|
int32_t L_3 = __this->___fx_Type;
|
|
RuntimeObject* L_4 = __this->___fx;
|
|
NullCheck(L_2);
|
|
FXManager_RecFx_TisRuntimeObject_m5407E2E3FF808A4D0DBD1017D9B7EF6975A89483(L_2, L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 2));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bxg_1_kwx_mE03FF1B605DF4F07F59BCE8F4C5B5E24D068C259_gshared (bxg_1_tF4F798E91A34034A5BB20B353D0504D528150380* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
wj_t5F4B191138DD4E91C1888EF23759495DECFB8E15* L_0 = __this->___goWrapper;
|
|
NullCheck(L_0);
|
|
wj_set_wrapTarget_m1CCBCE2C8CAA38E1D20B90100F9FC8948A91320F(L_0, (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)NULL, NULL);
|
|
bcq_t5702A62DE12536217F8A85320DBDD15BED5468B8* L_1 = __this->___gp;
|
|
NullCheck(L_1);
|
|
bcq_SetNativeObject_mC3DB538E2BD0E86BDE12F23719CF742EA9BD714D(L_1, (wg_t7CFF9CE7F816A6AA614B64D7E254ED1117E89A47*)NULL, NULL);
|
|
FXManager_t121CBC90514365E0FF3D7A1BB2E8E28F805C703C* L_2 = __this->___U3CU3E4__this;
|
|
int32_t L_3 = __this->___fx_Type;
|
|
RuntimeObject* L_4 = __this->___fx;
|
|
NullCheck(L_2);
|
|
FXManager_RecFx_TisRuntimeObject_m5407E2E3FF808A4D0DBD1017D9B7EF6975A89483(L_2, L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 2));
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void byf_1__ctor_mD89D65020C5649E9C9AA7F4E5840D1898FF23EA6_gshared (byf_1_t99A0AD00347E895ECDD71483F7502B35A8FFE3CE* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool byf_1_fwq_m908873A03FE8B6E7A8A26C088362E2A909593A59_gshared (byf_1_t99A0AD00347E895ECDD71483F7502B35A8FFE3CE* __this, RuntimeObject* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = ___0_a;
|
|
NullCheck((Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)L_0);
|
|
String_t* L_1;
|
|
L_1 = Object_get_name_mAC2F6B897CF1303BA4249B4CB55271AFACBB6392((Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)L_0, NULL);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_2 = __this->___assetNameArray;
|
|
NullCheck(L_2);
|
|
int32_t L_3 = 1;
|
|
String_t* L_4 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
|
|
bool L_5;
|
|
L_5 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_1, L_4, NULL);
|
|
return L_5;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bym_1_fxa_mC759506D52C91C930D3360C254A169CE98E2D8E3_gshared (bym_1_t2667C1B8339497A10739F998A69015B815A8FBDA* __this, AssetBundle_tB38418819A49060CD738CB21541649340F082943* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral64CB62BF3E80D24D2053DE8443A0D7D7208F6753);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&bzd_tE92DA8737F81398F3B4190D995609276EA2F6003_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
AssetBundle_tB38418819A49060CD738CB21541649340F082943* L_0 = ___0_a;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_1;
|
|
L_1 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605((Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_2 = __this->___assetBundleName;
|
|
String_t* L_3;
|
|
L_3 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(_stringLiteral64CB62BF3E80D24D2053DE8443A0D7D7208F6753, L_2, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2((RuntimeObject*)L_3, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
bys_tB5A77FB3B9BFF0674CB0A35A11C2840B5D838782* L_4 = __this->___U3CU3E4__this;
|
|
AssetBundle_tB38418819A49060CD738CB21541649340F082943* L_5 = ___0_a;
|
|
String_t* L_6 = __this->___assetName;
|
|
UnityAction_1_t9C30BCD020745BF400CBACF22C6F34ADBA2DDA6A* L_7 = __this->___onCompleted;
|
|
NullCheck(L_4);
|
|
RuntimeObject* L_8;
|
|
L_8 = bys_fxz_TisRuntimeObject_m662138EFEA1495F1678C92928541292BB5D3958A(L_4, L_5, L_6, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 2));
|
|
il2cpp_codegen_runtime_class_init_inline(bzd_tE92DA8737F81398F3B4190D995609276EA2F6003_il2cpp_TypeInfo_var);
|
|
Coroutine_t85EA685566A254C23F3FD77AB5BDFFFF8799596B* L_9;
|
|
L_9 = bzd_StartCoroutine_mE76063363E3C1913BA13681D2D69708B5E2DFF4B(L_8, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bym_1_omc_m8FA8497AB6164CFDA81D4F52ED43716D36E45553_gshared (bym_1_t2667C1B8339497A10739F998A69015B815A8FBDA* __this, AssetBundle_tB38418819A49060CD738CB21541649340F082943* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral80D5047D3FCA7A6E585FC0049DEB05F0F4ACC7BB);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&bzd_tE92DA8737F81398F3B4190D995609276EA2F6003_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
AssetBundle_tB38418819A49060CD738CB21541649340F082943* L_0 = ___0_a;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_1;
|
|
L_1 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605((Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_2 = __this->___assetBundleName;
|
|
String_t* L_3;
|
|
L_3 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(_stringLiteral80D5047D3FCA7A6E585FC0049DEB05F0F4ACC7BB, L_2, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2((RuntimeObject*)L_3, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
bys_tB5A77FB3B9BFF0674CB0A35A11C2840B5D838782* L_4 = __this->___U3CU3E4__this;
|
|
AssetBundle_tB38418819A49060CD738CB21541649340F082943* L_5 = ___0_a;
|
|
String_t* L_6 = __this->___assetName;
|
|
UnityAction_1_t9C30BCD020745BF400CBACF22C6F34ADBA2DDA6A* L_7 = __this->___onCompleted;
|
|
NullCheck(L_4);
|
|
RuntimeObject* L_8;
|
|
L_8 = bys_fxz_TisRuntimeObject_m662138EFEA1495F1678C92928541292BB5D3958A(L_4, L_5, L_6, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 2));
|
|
il2cpp_codegen_runtime_class_init_inline(bzd_tE92DA8737F81398F3B4190D995609276EA2F6003_il2cpp_TypeInfo_var);
|
|
Coroutine_t85EA685566A254C23F3FD77AB5BDFFFF8799596B* L_9;
|
|
L_9 = bzd_StartCoroutine_mE76063363E3C1913BA13681D2D69708B5E2DFF4B(L_8, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bym_1_exe_m700F3F00C221E3F874DE8CB1C43B049FF1FBA220_gshared (bym_1_t2667C1B8339497A10739F998A69015B815A8FBDA* __this, AssetBundle_tB38418819A49060CD738CB21541649340F082943* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1642ECFAAA58BD2A8964E875DA1ABE2E99D2DE9B);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&bzd_tE92DA8737F81398F3B4190D995609276EA2F6003_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
AssetBundle_tB38418819A49060CD738CB21541649340F082943* L_0 = ___0_a;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_1;
|
|
L_1 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605((Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_2 = __this->___assetBundleName;
|
|
String_t* L_3;
|
|
L_3 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(_stringLiteral1642ECFAAA58BD2A8964E875DA1ABE2E99D2DE9B, L_2, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2((RuntimeObject*)L_3, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
bys_tB5A77FB3B9BFF0674CB0A35A11C2840B5D838782* L_4 = __this->___U3CU3E4__this;
|
|
AssetBundle_tB38418819A49060CD738CB21541649340F082943* L_5 = ___0_a;
|
|
String_t* L_6 = __this->___assetName;
|
|
UnityAction_1_t9C30BCD020745BF400CBACF22C6F34ADBA2DDA6A* L_7 = __this->___onCompleted;
|
|
NullCheck(L_4);
|
|
RuntimeObject* L_8;
|
|
L_8 = bys_fxz_TisRuntimeObject_m662138EFEA1495F1678C92928541292BB5D3958A(L_4, L_5, L_6, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 2));
|
|
il2cpp_codegen_runtime_class_init_inline(bzd_tE92DA8737F81398F3B4190D995609276EA2F6003_il2cpp_TypeInfo_var);
|
|
Coroutine_t85EA685566A254C23F3FD77AB5BDFFFF8799596B* L_9;
|
|
L_9 = bzd_StartCoroutine_mE76063363E3C1913BA13681D2D69708B5E2DFF4B(L_8, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bym_1_cpx_m737182832FF44E31CB24183E16EB2E69FCDAB0E1_gshared (bym_1_t2667C1B8339497A10739F998A69015B815A8FBDA* __this, AssetBundle_tB38418819A49060CD738CB21541649340F082943* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA848554640653333DD581E4A5B06E7985A3D75B6);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&bzd_tE92DA8737F81398F3B4190D995609276EA2F6003_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
AssetBundle_tB38418819A49060CD738CB21541649340F082943* L_0 = ___0_a;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_1;
|
|
L_1 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605((Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_2 = __this->___assetBundleName;
|
|
String_t* L_3;
|
|
L_3 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(_stringLiteralA848554640653333DD581E4A5B06E7985A3D75B6, L_2, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2((RuntimeObject*)L_3, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
bys_tB5A77FB3B9BFF0674CB0A35A11C2840B5D838782* L_4 = __this->___U3CU3E4__this;
|
|
AssetBundle_tB38418819A49060CD738CB21541649340F082943* L_5 = ___0_a;
|
|
String_t* L_6 = __this->___assetName;
|
|
UnityAction_1_t9C30BCD020745BF400CBACF22C6F34ADBA2DDA6A* L_7 = __this->___onCompleted;
|
|
NullCheck(L_4);
|
|
RuntimeObject* L_8;
|
|
L_8 = bys_fxz_TisRuntimeObject_m662138EFEA1495F1678C92928541292BB5D3958A(L_4, L_5, L_6, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 2));
|
|
il2cpp_codegen_runtime_class_init_inline(bzd_tE92DA8737F81398F3B4190D995609276EA2F6003_il2cpp_TypeInfo_var);
|
|
Coroutine_t85EA685566A254C23F3FD77AB5BDFFFF8799596B* L_9;
|
|
L_9 = bzd_StartCoroutine_mE76063363E3C1913BA13681D2D69708B5E2DFF4B(L_8, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bym_1_mhb_m269D05798516369C0668921CBB2D617065FC407D_gshared (bym_1_t2667C1B8339497A10739F998A69015B815A8FBDA* __this, AssetBundle_tB38418819A49060CD738CB21541649340F082943* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBD273909002FE152BDDC791F9F6DD69114AAFEB1);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&bzd_tE92DA8737F81398F3B4190D995609276EA2F6003_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
AssetBundle_tB38418819A49060CD738CB21541649340F082943* L_0 = ___0_a;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_1;
|
|
L_1 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605((Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_2 = __this->___assetBundleName;
|
|
String_t* L_3;
|
|
L_3 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(_stringLiteralBD273909002FE152BDDC791F9F6DD69114AAFEB1, L_2, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2((RuntimeObject*)L_3, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
bys_tB5A77FB3B9BFF0674CB0A35A11C2840B5D838782* L_4 = __this->___U3CU3E4__this;
|
|
AssetBundle_tB38418819A49060CD738CB21541649340F082943* L_5 = ___0_a;
|
|
String_t* L_6 = __this->___assetName;
|
|
UnityAction_1_t9C30BCD020745BF400CBACF22C6F34ADBA2DDA6A* L_7 = __this->___onCompleted;
|
|
NullCheck(L_4);
|
|
RuntimeObject* L_8;
|
|
L_8 = bys_fxz_TisRuntimeObject_m662138EFEA1495F1678C92928541292BB5D3958A(L_4, L_5, L_6, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 2));
|
|
il2cpp_codegen_runtime_class_init_inline(bzd_tE92DA8737F81398F3B4190D995609276EA2F6003_il2cpp_TypeInfo_var);
|
|
Coroutine_t85EA685566A254C23F3FD77AB5BDFFFF8799596B* L_9;
|
|
L_9 = bzd_StartCoroutine_mE76063363E3C1913BA13681D2D69708B5E2DFF4B(L_8, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bym_1__ctor_m0F6027B41B2BC382456ED015F9733243119A1E83_gshared (bym_1_t2667C1B8339497A10739F998A69015B815A8FBDA* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void byp_1__ctor_mED482441A34DF6B23250401755F967255D24E758_gshared (byp_1_tB58FC741757F7F13418A8EBBB2B7B00834A9DB6C* __this, int32_t ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
int32_t L_0 = ___0_a;
|
|
__this->___lwl = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void byp_1_fxk_m386287CD45F602C02DABF528696EEDEB30EE6396_gshared (byp_1_tB58FC741757F7F13418A8EBBB2B7B00834A9DB6C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool byp_1_MoveNext_mBC0C029C9DC4F079ADEEEC446911DB6E08EC070D_gshared (byp_1_tB58FC741757F7F13418A8EBBB2B7B00834A9DB6C* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AssetBundle_LoadAsset_TisTexture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4_mBBDD2C33F8D21622F7611AC9E5404B3755EF16F6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
RuntimeObject* V_1 = NULL;
|
|
Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4* V_2 = NULL;
|
|
byf_1_t99A0AD00347E895ECDD71483F7502B35A8FFE3CE* V_3 = NULL;
|
|
Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* V_4 = NULL;
|
|
UnityAction_1_t9C30BCD020745BF400CBACF22C6F34ADBA2DDA6A* G_B15_0 = NULL;
|
|
UnityAction_1_t9C30BCD020745BF400CBACF22C6F34ADBA2DDA6A* G_B14_0 = NULL;
|
|
{
|
|
int32_t L_0 = __this->___lwl;
|
|
V_0 = L_0;
|
|
int32_t L_1 = V_0;
|
|
switch (L_1)
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0123;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_016d;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
__this->___lwl = (-1);
|
|
il2cpp_codegen_initobj((&V_1), sizeof(RuntimeObject*));
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_2 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->klass->rgctx_data, 2)) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_3;
|
|
L_3 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_2, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_4 = { reinterpret_cast<intptr_t> (Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99_0_0_0_var) };
|
|
Type_t* L_5;
|
|
L_5 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_4, NULL);
|
|
bool L_6;
|
|
L_6 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_3, L_5, NULL);
|
|
if (!L_6)
|
|
{
|
|
goto IL_00f7;
|
|
}
|
|
}
|
|
{
|
|
AssetBundle_tB38418819A49060CD738CB21541649340F082943* L_7 = __this->___assetBundle;
|
|
String_t* L_8 = __this->___assetName;
|
|
NullCheck(L_7);
|
|
Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4* L_9;
|
|
L_9 = AssetBundle_LoadAsset_TisTexture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4_mBBDD2C33F8D21622F7611AC9E5404B3755EF16F6(L_7, L_8, AssetBundle_LoadAsset_TisTexture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4_mBBDD2C33F8D21622F7611AC9E5404B3755EF16F6_RuntimeMethod_var);
|
|
V_2 = L_9;
|
|
Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4* L_10 = V_2;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_11;
|
|
L_11 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602((Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)L_10, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_11)
|
|
{
|
|
goto IL_00a5;
|
|
}
|
|
}
|
|
{
|
|
Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4* L_12 = V_2;
|
|
Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4* L_13 = V_2;
|
|
NullCheck((Texture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700*)L_13);
|
|
int32_t L_14;
|
|
L_14 = VirtualFuncInvoker0< int32_t >::Invoke(5, (Texture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700*)L_13);
|
|
Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4* L_15 = V_2;
|
|
NullCheck((Texture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700*)L_15);
|
|
int32_t L_16;
|
|
L_16 = VirtualFuncInvoker0< int32_t >::Invoke(7, (Texture_t791CBB51219779964E0E8A2ED7C1AA5F92A4A700*)L_15);
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_17;
|
|
memset((&L_17), 0, sizeof(L_17));
|
|
Rect__ctor_m18C3033D135097BEE424AAA68D91C706D2647F23_inline((&L_17), (0.0f), (0.0f), ((float)L_14), ((float)L_16), NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_18;
|
|
memset((&L_18), 0, sizeof(L_18));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_18), (0.5f), (0.5f), NULL);
|
|
Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99* L_19;
|
|
L_19 = Sprite_Create_m827A9BDEC4566AB71966A40DB48A09BB064D81E7(L_12, L_17, L_18, NULL);
|
|
V_1 = ((RuntimeObject*)Castclass((RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_19, il2cpp_rgctx_data(method->klass->rgctx_data, 1))), il2cpp_rgctx_data(method->klass->rgctx_data, 1)));
|
|
goto IL_01a7;
|
|
}
|
|
|
|
IL_00a5:
|
|
{
|
|
byf_1_t99A0AD00347E895ECDD71483F7502B35A8FFE3CE* L_20 = (byf_1_t99A0AD00347E895ECDD71483F7502B35A8FFE3CE*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 3));
|
|
byf_1__ctor_mD89D65020C5649E9C9AA7F4E5840D1898FF23EA6(L_20, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
|
|
V_3 = L_20;
|
|
byf_1_t99A0AD00347E895ECDD71483F7502B35A8FFE3CE* L_21 = V_3;
|
|
String_t* L_22 = __this->___assetName;
|
|
NullCheck(L_22);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_23;
|
|
L_23 = String_Split_m9530B73D02054692283BF35C3A27C8F2230946F4(L_22, (Il2CppChar)((int32_t)46), (int32_t)0, NULL);
|
|
NullCheck(L_21);
|
|
L_21->___assetNameArray = L_23;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_21->___assetNameArray), (void*)L_23);
|
|
byf_1_t99A0AD00347E895ECDD71483F7502B35A8FFE3CE* L_24 = V_3;
|
|
NullCheck(L_24);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_25 = L_24->___assetNameArray;
|
|
NullCheck(L_25);
|
|
if ((((int32_t)((int32_t)(((RuntimeArray*)L_25)->max_length))) <= ((int32_t)1)))
|
|
{
|
|
goto IL_01a7;
|
|
}
|
|
}
|
|
{
|
|
AssetBundle_tB38418819A49060CD738CB21541649340F082943* L_26 = __this->___assetBundle;
|
|
byf_1_t99A0AD00347E895ECDD71483F7502B35A8FFE3CE* L_27 = V_3;
|
|
NullCheck(L_27);
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_28 = L_27->___assetNameArray;
|
|
NullCheck(L_28);
|
|
int32_t L_29 = 0;
|
|
String_t* L_30 = (L_28)->GetAt(static_cast<il2cpp_array_size_t>(L_29));
|
|
NullCheck(L_26);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_31;
|
|
L_31 = AssetBundle_LoadAssetWithSubAssets_TisRuntimeObject_mB55304F684DE41A233AB9AFEDBD182605C0AC223(L_26, L_30, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
|
|
byf_1_t99A0AD00347E895ECDD71483F7502B35A8FFE3CE* L_32 = V_3;
|
|
Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* L_33 = (Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 8));
|
|
Predicate_1__ctor_m3E007299121A15DF80F4A210FF8C20E5DF688F20(L_33, (RuntimeObject*)L_32, (intptr_t)((void*)il2cpp_rgctx_method(method->klass->rgctx_data, 7)), il2cpp_rgctx_method(method->klass->rgctx_data, 9));
|
|
RuntimeObject* L_34;
|
|
L_34 = Array_Find_TisRuntimeObject_m03DE8D6544B37CBB6B339128ACC38C60CCFC4C24(L_31, L_33, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
V_1 = L_34;
|
|
goto IL_01a7;
|
|
}
|
|
|
|
IL_00f7:
|
|
{
|
|
AssetBundle_tB38418819A49060CD738CB21541649340F082943* L_35 = __this->___assetBundle;
|
|
String_t* L_36 = __this->___assetName;
|
|
NullCheck(L_35);
|
|
AssetBundleRequest_tED9F5504E75ED1BCFF8DA9B51F5C7356617E6621* L_37;
|
|
L_37 = AssetBundle_LoadAssetAsync_TisRuntimeObject_m0BF806B065BEFAAFDA6DA39D8506875A4783FCCB(L_35, L_36, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
__this->___lwn = L_37;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___lwn), (void*)L_37);
|
|
AssetBundleRequest_tED9F5504E75ED1BCFF8DA9B51F5C7356617E6621* L_38 = __this->___lwn;
|
|
__this->___lwm = (RuntimeObject*)L_38;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___lwm), (void*)(RuntimeObject*)L_38);
|
|
__this->___lwl = 1;
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0123:
|
|
{
|
|
__this->___lwl = (-1);
|
|
AssetBundleRequest_tED9F5504E75ED1BCFF8DA9B51F5C7356617E6621* L_39 = __this->___lwn;
|
|
NullCheck(L_39);
|
|
Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* L_40;
|
|
L_40 = AssetBundleRequest_get_asset_mE9FDA3900215925371E7D15E7E19AA98713F5D6C(L_39, NULL);
|
|
V_4 = L_40;
|
|
Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* L_41 = V_4;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_42;
|
|
L_42 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_41, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_42)
|
|
{
|
|
goto IL_0193;
|
|
}
|
|
}
|
|
{
|
|
AssetBundle_tB38418819A49060CD738CB21541649340F082943* L_43 = __this->___assetBundle;
|
|
String_t* L_44 = __this->___assetName;
|
|
NullCheck(L_43);
|
|
AssetBundleRequest_tED9F5504E75ED1BCFF8DA9B51F5C7356617E6621* L_45;
|
|
L_45 = AssetBundle_LoadAssetWithSubAssetsAsync_TisRuntimeObject_m1E527522E8A6B14CCF2D0E659B5C95E7B4CE5702(L_43, L_44, il2cpp_rgctx_method(method->klass->rgctx_data, 12));
|
|
__this->___lwo = L_45;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___lwo), (void*)L_45);
|
|
AssetBundleRequest_tED9F5504E75ED1BCFF8DA9B51F5C7356617E6621* L_46 = __this->___lwo;
|
|
__this->___lwm = (RuntimeObject*)L_46;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___lwm), (void*)(RuntimeObject*)L_46);
|
|
__this->___lwl = 2;
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_016d:
|
|
{
|
|
__this->___lwl = (-1);
|
|
AssetBundleRequest_tED9F5504E75ED1BCFF8DA9B51F5C7356617E6621* L_47 = __this->___lwo;
|
|
NullCheck(L_47);
|
|
Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* L_48;
|
|
L_48 = AssetBundleRequest_get_asset_mE9FDA3900215925371E7D15E7E19AA98713F5D6C(L_47, NULL);
|
|
V_1 = ((RuntimeObject*)Castclass((RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_48, il2cpp_rgctx_data(method->klass->rgctx_data, 1))), il2cpp_rgctx_data(method->klass->rgctx_data, 1)));
|
|
__this->___lwo = (AssetBundleRequest_tED9F5504E75ED1BCFF8DA9B51F5C7356617E6621*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___lwo), (void*)(AssetBundleRequest_tED9F5504E75ED1BCFF8DA9B51F5C7356617E6621*)NULL);
|
|
goto IL_01a0;
|
|
}
|
|
|
|
IL_0193:
|
|
{
|
|
Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* L_49 = V_4;
|
|
V_1 = ((RuntimeObject*)Castclass((RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_49, il2cpp_rgctx_data(method->klass->rgctx_data, 1))), il2cpp_rgctx_data(method->klass->rgctx_data, 1)));
|
|
}
|
|
|
|
IL_01a0:
|
|
{
|
|
__this->___lwn = (AssetBundleRequest_tED9F5504E75ED1BCFF8DA9B51F5C7356617E6621*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___lwn), (void*)(AssetBundleRequest_tED9F5504E75ED1BCFF8DA9B51F5C7356617E6621*)NULL);
|
|
}
|
|
|
|
IL_01a7:
|
|
{
|
|
UnityAction_1_t9C30BCD020745BF400CBACF22C6F34ADBA2DDA6A* L_50 = __this->___onLoadCompleted;
|
|
UnityAction_1_t9C30BCD020745BF400CBACF22C6F34ADBA2DDA6A* L_51 = L_50;
|
|
if (L_51)
|
|
{
|
|
G_B15_0 = L_51;
|
|
goto IL_01b3;
|
|
}
|
|
G_B14_0 = L_51;
|
|
}
|
|
{
|
|
goto IL_01b9;
|
|
}
|
|
|
|
IL_01b3:
|
|
{
|
|
RuntimeObject* L_52 = V_1;
|
|
NullCheck(G_B15_0);
|
|
UnityAction_1_Invoke_m777839BF9CB9F96B081106B47202D06FB35326CA_inline(G_B15_0, L_52, il2cpp_rgctx_method(method->klass->rgctx_data, 14));
|
|
}
|
|
|
|
IL_01b9:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* byp_1_fxl_m3509EAC9E4560449B8FD141BCF79EE2C0CFB1C74_gshared (byp_1_tB58FC741757F7F13418A8EBBB2B7B00834A9DB6C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->___lwm;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void byp_1_fxm_mECE4B319767A99893113A23D01706CB43A86DE8A_gshared (byp_1_tB58FC741757F7F13418A8EBBB2B7B00834A9DB6C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_m1398D0CDE19B36AA3DE9392879738C1EA2439CDF(L_0, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, method);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* byp_1_fxn_mCB1729B7A08567913218FCA6763F273C17854358_gshared (byp_1_tB58FC741757F7F13418A8EBBB2B7B00834A9DB6C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->___lwm;
|
|
return L_0;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bzx_1__ctor_m1D3B0B1578C67AF419E48BD7F0EEB4883360DD05_gshared (bzx_1_tD860EF6FBE4057B405CC33ABF4B9B27EA4C241E8* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bzx_1__ctor_m242BC892D6CBF24D92A20B5E7CF44A490002F0EF_gshared (bzx_1_tD860EF6FBE4057B405CC33ABF4B9B27EA4C241E8* __this, bool ___0_a, bool ___1_b, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
bool L_0 = ___0_a;
|
|
__this->___oldValue = L_0;
|
|
bool L_1 = ___1_b;
|
|
__this->___newValue = L_1;
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bzx_1__ctor_m5038F03BA0C1FA391D95165EB0A25251C093F2A4_gshared (bzx_1_t4D484EB6E5789BB8192E046C3FDB7E2664856C75* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bzx_1__ctor_m8345F4AFBCEA2677C12E0E4DC10FB454F2881A60_gshared (bzx_1_t4D484EB6E5789BB8192E046C3FDB7E2664856C75* __this, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___0_a, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___1_b, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_0 = ___0_a;
|
|
__this->___oldValue = L_0;
|
|
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1 = ___1_b;
|
|
__this->___newValue = L_1;
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bzx_1__ctor_m459FDE4EF3667FB0804F918AAFD4BAA43343E2D2_gshared (bzx_1_tA2F73AE84DB462B2C1BB352D3E53255B822258F0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bzx_1__ctor_m5C588737477E171444A9BA0D9AAD442B06B12C4F_gshared (bzx_1_tA2F73AE84DB462B2C1BB352D3E53255B822258F0* __this, int32_t ___0_a, int32_t ___1_b, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
int32_t L_0 = ___0_a;
|
|
__this->___oldValue = L_0;
|
|
int32_t L_1 = ___1_b;
|
|
__this->___newValue = L_1;
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bzx_1__ctor_m136FB30603F0E5DCE670DAA48A3AF874774183AD_gshared (bzx_1_tF28DD7ABB0A422DE920831FB35E155BDF2905A9B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bzx_1__ctor_m9AEBC96CC3D24139B1F754CCD3F870B2DD4EA1F9_gshared (bzx_1_tF28DD7ABB0A422DE920831FB35E155BDF2905A9B* __this, int64_t ___0_a, int64_t ___1_b, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
int64_t L_0 = ___0_a;
|
|
__this->___oldValue = L_0;
|
|
int64_t L_1 = ___1_b;
|
|
__this->___newValue = L_1;
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bzx_1__ctor_m9DC468494C904F9C2D4A2FED75CAD65389685383_gshared (bzx_1_t01CAD84059E26921A56668D888A1952F0E346E84* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bzx_1__ctor_m3F38DA3086CA61DFCD73AEF32984C010CFB00011_gshared (bzx_1_t01CAD84059E26921A56668D888A1952F0E346E84* __this, RuntimeObject* ___0_a, RuntimeObject* ___1_b, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
RuntimeObject* L_0 = ___0_a;
|
|
__this->___oldValue = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___oldValue), (void*)L_0);
|
|
RuntimeObject* L_1 = ___1_b;
|
|
__this->___newValue = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___newValue), (void*)L_1);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bzx_1__ctor_mBE0A884B346CF5E41F9C41D3D73B08EA2D0F6975_gshared (bzx_1_tF56837EEC40043218801469CF96854C4DA03507D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bzx_1__ctor_m47B02DDF1B16C9E4A836B6A5AA7095AF80EC04FA_gshared (bzx_1_tF56837EEC40043218801469CF96854C4DA03507D* __this, float ___0_a, float ___1_b, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
float L_0 = ___0_a;
|
|
__this->___oldValue = L_0;
|
|
float L_1 = ___1_b;
|
|
__this->___newValue = L_1;
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bzx_1__ctor_m485FB50779E2DE770BB0824BAFC539F7E1236451_gshared (bzx_1_tF5CB2EAA5615439F54BEE14538616017D16ECADE* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bzx_1__ctor_m322FCBA70097348DEA3D3BD873F6268D6D57DEB3_gshared (bzx_1_tF5CB2EAA5615439F54BEE14538616017D16ECADE* __this, Il2CppFullySharedGenericAny ___0_a, Il2CppFullySharedGenericAny ___1_b, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_a_tDE425ABD341FB5675F647A109B9A9D86F8EBC311 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 0));
|
|
const Il2CppFullySharedGenericAny L_0 = alloca(SizeOf_a_tDE425ABD341FB5675F647A109B9A9D86F8EBC311);
|
|
const Il2CppFullySharedGenericAny L_1 = alloca(SizeOf_a_tDE425ABD341FB5675F647A109B9A9D86F8EBC311);
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
il2cpp_codegen_memcpy(L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 0)) ? ___0_a : &___0_a), SizeOf_a_tDE425ABD341FB5675F647A109B9A9D86F8EBC311);
|
|
il2cpp_codegen_write_instance_field_data(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 1),0), L_0, SizeOf_a_tDE425ABD341FB5675F647A109B9A9D86F8EBC311);
|
|
il2cpp_codegen_memcpy(L_1, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 0)) ? ___1_b : &___1_b), SizeOf_a_tDE425ABD341FB5675F647A109B9A9D86F8EBC311);
|
|
il2cpp_codegen_write_instance_field_data(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 1),1), L_1, SizeOf_a_tDE425ABD341FB5675F647A109B9A9D86F8EBC311);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* bzy_3_get_Instance_mE842D659F252FBE690DEB7C94F40E24A3E478FB9_gshared (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = ((bzy_3_tD9B249170D3A1B921D3EF65E6F9E284BBAD0FA00_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___lxt;
|
|
if (L_0)
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_1;
|
|
L_1 = Activator_CreateInstance_TisRuntimeObject_m62506836177F0F862A8D619638BF37F48721F138(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
((bzy_3_tD9B249170D3A1B921D3EF65E6F9E284BBAD0FA00_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___lxt = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((bzy_3_tD9B249170D3A1B921D3EF65E6F9E284BBAD0FA00_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___lxt), (void*)L_1);
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
RuntimeObject* L_2 = ((bzy_3_tD9B249170D3A1B921D3EF65E6F9E284BBAD0FA00_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___lxt;
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bzy_3_AddListener_m6E53BC63FDCB596369FE511E65B5CB9836543011_gshared (bzy_3_tD9B249170D3A1B921D3EF65E6F9E284BBAD0FA00* __this, RuntimeObject* ___0_msgId, Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* ___1_listener, const RuntimeMethod* method)
|
|
{
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* V_0 = NULL;
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* V_1 = NULL;
|
|
{
|
|
Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3* L_0 = __this->___lxv;
|
|
RuntimeObject* L_1 = ___0_msgId;
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = Dictionary_2_TryGetValue_mC4BAAD0B9003BA1A0996AEC8E2415290C88D5626(L_0, L_1, (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 6));
|
|
if (!L_2)
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_3 = V_0;
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* L_4 = ___1_listener;
|
|
NullCheck(L_3);
|
|
List_1_Add_mA7C789A830108A82F925F9EB53FFC1F288C02908_inline(L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
return;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 12));
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_5;
|
|
L_5 = ctu_1_Get_mC96A8CCC1FE92484AE8DA286D73F53CCEE010706(il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
V_1 = L_5;
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_6 = V_1;
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* L_7 = ___1_listener;
|
|
NullCheck(L_6);
|
|
List_1_Add_mA7C789A830108A82F925F9EB53FFC1F288C02908_inline(L_6, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3* L_8 = __this->___lxv;
|
|
RuntimeObject* L_9 = ___0_msgId;
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_10 = V_1;
|
|
NullCheck(L_8);
|
|
Dictionary_2_Add_m5DF7838B812BFA48FC4F78E33742D699D38A431F(L_8, L_9, L_10, il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bzy_3_AddOnceListener_m1428470AB6269BBB1E45135312B2C05A36E811E3_gshared (bzy_3_tD9B249170D3A1B921D3EF65E6F9E284BBAD0FA00* __this, RuntimeObject* ___0_msgId, Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* ___1_listener, const RuntimeMethod* method)
|
|
{
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* V_0 = NULL;
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* V_1 = NULL;
|
|
{
|
|
Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3* L_0 = __this->___lxx;
|
|
RuntimeObject* L_1 = ___0_msgId;
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = Dictionary_2_TryGetValue_mC4BAAD0B9003BA1A0996AEC8E2415290C88D5626(L_0, L_1, (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 6));
|
|
if (!L_2)
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_3 = V_0;
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* L_4 = ___1_listener;
|
|
NullCheck(L_3);
|
|
List_1_Add_mA7C789A830108A82F925F9EB53FFC1F288C02908_inline(L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
return;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 12));
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_5;
|
|
L_5 = ctu_1_Get_mC96A8CCC1FE92484AE8DA286D73F53CCEE010706(il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
V_1 = L_5;
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_6 = V_1;
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* L_7 = ___1_listener;
|
|
NullCheck(L_6);
|
|
List_1_Add_mA7C789A830108A82F925F9EB53FFC1F288C02908_inline(L_6, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3* L_8 = __this->___lxx;
|
|
RuntimeObject* L_9 = ___0_msgId;
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_10 = V_1;
|
|
NullCheck(L_8);
|
|
Dictionary_2_Add_m5DF7838B812BFA48FC4F78E33742D699D38A431F(L_8, L_9, L_10, il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bzy_3_RemoveListener_m5D87BD82D088E87266283E29940C998DFEAEE8B1_gshared (bzy_3_tD9B249170D3A1B921D3EF65E6F9E284BBAD0FA00* __this, RuntimeObject* ___0_msgId, Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* ___1_listener, const RuntimeMethod* method)
|
|
{
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* V_0 = NULL;
|
|
{
|
|
Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3* L_0 = __this->___lxv;
|
|
RuntimeObject* L_1 = ___0_msgId;
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = Dictionary_2_TryGetValue_mC4BAAD0B9003BA1A0996AEC8E2415290C88D5626(L_0, L_1, (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 6));
|
|
if (!L_2)
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_3 = V_0;
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* L_4 = ___1_listener;
|
|
NullCheck(L_3);
|
|
bool L_5;
|
|
L_5 = List_1_Contains_mE91E9B509A957BD5C35C7D15DB8E727E656B0543(L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 14));
|
|
if (!L_5)
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_6 = V_0;
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* L_7 = ___1_listener;
|
|
NullCheck(L_6);
|
|
bool L_8;
|
|
L_8 = List_1_Remove_m2B2B28A78C773EFB5B780A7C6C71928E6F3BFA82(L_6, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_9 = V_0;
|
|
NullCheck(L_9);
|
|
int32_t L_10;
|
|
L_10 = List_1_get_Count_m6BD0CEA635AE2C0000530A78F8B9F52884F5E943_inline(L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
if (L_10)
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_11 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 12));
|
|
ctu_1_Release_m511BE77FE01B7A86F6226E9B515D718E9F400B12(L_11, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
|
|
Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3* L_12 = __this->___lxv;
|
|
RuntimeObject* L_13 = ___0_msgId;
|
|
NullCheck(L_12);
|
|
bool L_14;
|
|
L_14 = Dictionary_2_Remove_m69B2CF6D2EEE6E6D72B5710747157C7D2E55189D(L_12, L_13, il2cpp_rgctx_method(method->klass->rgctx_data, 18));
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bzy_3_Dispatch_m690E0BB54474F4865B512C986BAB00281A7E4B41_gshared (bzy_3_tD9B249170D3A1B921D3EF65E6F9E284BBAD0FA00* __this, RuntimeObject* ___0_msgId, RuntimeObject* ___1_param, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3* L_0 = __this->___lxu;
|
|
RuntimeObject* L_1 = ___0_msgId;
|
|
RuntimeObject* L_2 = ___1_param;
|
|
bzy_3_fzm_m6CA468BF994738126D75320A5236CC05E33A3741(__this, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3* L_3 = __this->___lxv;
|
|
RuntimeObject* L_4 = ___0_msgId;
|
|
RuntimeObject* L_5 = ___1_param;
|
|
bzy_3_fzm_m6CA468BF994738126D75320A5236CC05E33A3741(__this, L_3, L_4, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3* L_6 = __this->___lxw;
|
|
RuntimeObject* L_7 = ___0_msgId;
|
|
RuntimeObject* L_8 = ___1_param;
|
|
bzy_3_fzm_m6CA468BF994738126D75320A5236CC05E33A3741(__this, L_6, L_7, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3* L_9 = __this->___lxx;
|
|
RuntimeObject* L_10 = ___0_msgId;
|
|
RuntimeObject* L_11 = ___1_param;
|
|
bzy_3_fzm_m6CA468BF994738126D75320A5236CC05E33A3741(__this, L_9, L_10, L_11, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3* L_12 = __this->___lxx;
|
|
RuntimeObject* L_13 = ___0_msgId;
|
|
NullCheck(L_12);
|
|
bool L_14;
|
|
L_14 = Dictionary_2_ContainsKey_m313391628CD5C434E52376506DA64D9F2EE1BE9B(L_12, L_13, il2cpp_rgctx_method(method->klass->rgctx_data, 21));
|
|
if (!L_14)
|
|
{
|
|
goto IL_0064;
|
|
}
|
|
}
|
|
{
|
|
Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3* L_15 = __this->___lxx;
|
|
RuntimeObject* L_16 = ___0_msgId;
|
|
NullCheck(L_15);
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_17;
|
|
L_17 = Dictionary_2_get_Item_m3923976893C7FE138BFBCC58E9D49AF92951B350(L_15, L_16, il2cpp_rgctx_method(method->klass->rgctx_data, 22));
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 12));
|
|
ctu_1_Release_m511BE77FE01B7A86F6226E9B515D718E9F400B12(L_17, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
|
|
Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3* L_18 = __this->___lxx;
|
|
RuntimeObject* L_19 = ___0_msgId;
|
|
NullCheck(L_18);
|
|
bool L_20;
|
|
L_20 = Dictionary_2_Remove_m69B2CF6D2EEE6E6D72B5710747157C7D2E55189D(L_18, L_19, il2cpp_rgctx_method(method->klass->rgctx_data, 18));
|
|
}
|
|
|
|
IL_0064:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bzy_3_fzm_m6CA468BF994738126D75320A5236CC05E33A3741_gshared (bzy_3_tD9B249170D3A1B921D3EF65E6F9E284BBAD0FA00* __this, Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3* ___0_a, RuntimeObject* ___1_b, RuntimeObject* ___2_c, const RuntimeMethod* method)
|
|
{
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* V_2 = NULL;
|
|
int32_t V_3 = 0;
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
{
|
|
Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3* L_0 = ___0_a;
|
|
RuntimeObject* L_1 = ___1_b;
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = Dictionary_2_ContainsKey_m313391628CD5C434E52376506DA64D9F2EE1BE9B(L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 21));
|
|
if (L_2)
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3* L_3 = ___0_a;
|
|
RuntimeObject* L_4 = ___1_b;
|
|
NullCheck(L_3);
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_5;
|
|
L_5 = Dictionary_2_get_Item_m3923976893C7FE138BFBCC58E9D49AF92951B350(L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 22));
|
|
V_0 = L_5;
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_6 = V_0;
|
|
NullCheck(L_6);
|
|
int32_t L_7;
|
|
L_7 = List_1_get_Count_m6BD0CEA635AE2C0000530A78F8B9F52884F5E943_inline(L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
V_1 = L_7;
|
|
int32_t L_8 = V_1;
|
|
if ((!(((uint32_t)L_8) == ((uint32_t)1))))
|
|
{
|
|
goto IL_002b;
|
|
}
|
|
}
|
|
{
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_9 = V_0;
|
|
NullCheck(L_9);
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* L_10;
|
|
L_10 = List_1_get_Item_m85F9D1183840E6E92FD2B9A8140FF8412429BC7D(L_9, 0, il2cpp_rgctx_method(method->klass->rgctx_data, 23));
|
|
RuntimeObject* L_11 = ___2_c;
|
|
NullCheck(L_10);
|
|
Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_inline(L_10, L_11, il2cpp_rgctx_method(method->klass->rgctx_data, 24));
|
|
return;
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 12));
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_12;
|
|
L_12 = ctu_1_Get_mC96A8CCC1FE92484AE8DA286D73F53CCEE010706(il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
V_2 = L_12;
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_13 = V_2;
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_14 = V_0;
|
|
NullCheck(L_13);
|
|
List_1_AddRange_m6001425A53845EC70A05419B1EEF8688A840AE63(L_13, (RuntimeObject*)L_14, il2cpp_rgctx_method(method->klass->rgctx_data, 25));
|
|
V_3 = 0;
|
|
goto IL_0057;
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
}
|
|
try
|
|
{
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_15 = V_2;
|
|
int32_t L_16 = V_3;
|
|
NullCheck(L_15);
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* L_17;
|
|
L_17 = List_1_get_Item_m85F9D1183840E6E92FD2B9A8140FF8412429BC7D(L_15, L_16, il2cpp_rgctx_method(method->klass->rgctx_data, 23));
|
|
RuntimeObject* L_18 = ___2_c;
|
|
NullCheck(L_17);
|
|
Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_inline(L_17, L_18, il2cpp_rgctx_method(method->klass->rgctx_data, 24));
|
|
goto IL_0053;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_004c;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_004c:
|
|
{
|
|
Exception_t* L_19 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));;
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var)));
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2((RuntimeObject*)L_19, NULL);
|
|
IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
|
|
goto IL_0053;
|
|
}
|
|
|
|
IL_0053:
|
|
{
|
|
int32_t L_20 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_20, 1));
|
|
}
|
|
|
|
IL_0057:
|
|
{
|
|
int32_t L_21 = V_3;
|
|
int32_t L_22 = V_1;
|
|
if ((((int32_t)L_21) < ((int32_t)L_22)))
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_23 = V_2;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 12));
|
|
ctu_1_Release_m511BE77FE01B7A86F6226E9B515D718E9F400B12(L_23, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bzy_3_Dispose_m410660B2D9B37C20CF66619DE650DB2A91224883_gshared (bzy_3_tD9B249170D3A1B921D3EF65E6F9E284BBAD0FA00* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
il2cpp_codegen_initobj((&((bzy_3_tD9B249170D3A1B921D3EF65E6F9E284BBAD0FA00_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___lxt), sizeof(RuntimeObject*));
|
|
Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3* L_0 = __this->___lxu;
|
|
NullCheck(L_0);
|
|
Dictionary_2_Clear_mD78B8C690D23AD25039721F5FFCC4D1A8AD2997B(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 27));
|
|
Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3* L_1 = __this->___lxv;
|
|
NullCheck(L_1);
|
|
Dictionary_2_Clear_mD78B8C690D23AD25039721F5FFCC4D1A8AD2997B(L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 27));
|
|
Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3* L_2 = __this->___lxw;
|
|
NullCheck(L_2);
|
|
Dictionary_2_Clear_mD78B8C690D23AD25039721F5FFCC4D1A8AD2997B(L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 27));
|
|
Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3* L_3 = __this->___lxx;
|
|
NullCheck(L_3);
|
|
Dictionary_2_Clear_mD78B8C690D23AD25039721F5FFCC4D1A8AD2997B(L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 27));
|
|
__this->___lxu = (Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___lxu), (void*)(Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3*)NULL);
|
|
__this->___lxv = (Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___lxv), (void*)(Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3*)NULL);
|
|
__this->___lxw = (Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___lxw), (void*)(Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3*)NULL);
|
|
__this->___lxx = (Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___lxx), (void*)(Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bzy_3__ctor_m026EC43915D502661F6DD7ABBB02B1E500352F7D_gshared (bzy_3_tD9B249170D3A1B921D3EF65E6F9E284BBAD0FA00* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3* L_0 = (Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 4));
|
|
Dictionary_2__ctor_mC3BB37F1E33C291935A879F5451EA5D0FF70F4E0(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
__this->___lxu = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___lxu), (void*)L_0);
|
|
Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3* L_1 = (Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 4));
|
|
Dictionary_2__ctor_mC3BB37F1E33C291935A879F5451EA5D0FF70F4E0(L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
__this->___lxv = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___lxv), (void*)L_1);
|
|
Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3* L_2 = (Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 4));
|
|
Dictionary_2__ctor_mC3BB37F1E33C291935A879F5451EA5D0FF70F4E0(L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
__this->___lxw = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___lxw), (void*)L_2);
|
|
Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3* L_3 = (Dictionary_2_t356F4181E081D62355E744B43DD2C4EB6CCA33D3*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 4));
|
|
Dictionary_2__ctor_mC3BB37F1E33C291935A879F5451EA5D0FF70F4E0(L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
__this->___lxx = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___lxx), (void*)L_3);
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* bzy_3_get_Instance_mAB583837B4F4C7FE28FF2F35F81CCCD4C592EB68_gshared (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = ((bzy_3_tE18DFB7C8239FAB9D9F8C7CCCC15D422D500BC4B_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___lxt;
|
|
if (L_0)
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_1;
|
|
L_1 = Activator_CreateInstance_TisRuntimeObject_m62506836177F0F862A8D619638BF37F48721F138(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
((bzy_3_tE18DFB7C8239FAB9D9F8C7CCCC15D422D500BC4B_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___lxt = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((bzy_3_tE18DFB7C8239FAB9D9F8C7CCCC15D422D500BC4B_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___lxt), (void*)L_1);
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
RuntimeObject* L_2 = ((bzy_3_tE18DFB7C8239FAB9D9F8C7CCCC15D422D500BC4B_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___lxt;
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bzy_3_AddListener_mEBD52056F8E291FC024F05E3D1D747C90AF75226_gshared (bzy_3_tE18DFB7C8239FAB9D9F8C7CCCC15D422D500BC4B* __this, uint32_t ___0_msgId, Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* ___1_listener, const RuntimeMethod* method)
|
|
{
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* V_0 = NULL;
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* V_1 = NULL;
|
|
{
|
|
Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D* L_0 = __this->___lxv;
|
|
uint32_t L_1 = ___0_msgId;
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = Dictionary_2_TryGetValue_m574E2D32C42F11EF858E2A662AACDF016AD483B5(L_0, L_1, (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 6));
|
|
if (!L_2)
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_3 = V_0;
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* L_4 = ___1_listener;
|
|
NullCheck(L_3);
|
|
List_1_Add_mA7C789A830108A82F925F9EB53FFC1F288C02908_inline(L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
return;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 12));
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_5;
|
|
L_5 = ctu_1_Get_mC96A8CCC1FE92484AE8DA286D73F53CCEE010706(il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
V_1 = L_5;
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_6 = V_1;
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* L_7 = ___1_listener;
|
|
NullCheck(L_6);
|
|
List_1_Add_mA7C789A830108A82F925F9EB53FFC1F288C02908_inline(L_6, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D* L_8 = __this->___lxv;
|
|
uint32_t L_9 = ___0_msgId;
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_10 = V_1;
|
|
NullCheck(L_8);
|
|
Dictionary_2_Add_mF39D833B6D535AB303A482EA943B4199EDC86D9A(L_8, L_9, L_10, il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bzy_3_AddOnceListener_m1C732105AA0EA3EE4D7A1E92B8EA9DBD4B054F47_gshared (bzy_3_tE18DFB7C8239FAB9D9F8C7CCCC15D422D500BC4B* __this, uint32_t ___0_msgId, Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* ___1_listener, const RuntimeMethod* method)
|
|
{
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* V_0 = NULL;
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* V_1 = NULL;
|
|
{
|
|
Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D* L_0 = __this->___lxx;
|
|
uint32_t L_1 = ___0_msgId;
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = Dictionary_2_TryGetValue_m574E2D32C42F11EF858E2A662AACDF016AD483B5(L_0, L_1, (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 6));
|
|
if (!L_2)
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_3 = V_0;
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* L_4 = ___1_listener;
|
|
NullCheck(L_3);
|
|
List_1_Add_mA7C789A830108A82F925F9EB53FFC1F288C02908_inline(L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
return;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 12));
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_5;
|
|
L_5 = ctu_1_Get_mC96A8CCC1FE92484AE8DA286D73F53CCEE010706(il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
V_1 = L_5;
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_6 = V_1;
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* L_7 = ___1_listener;
|
|
NullCheck(L_6);
|
|
List_1_Add_mA7C789A830108A82F925F9EB53FFC1F288C02908_inline(L_6, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D* L_8 = __this->___lxx;
|
|
uint32_t L_9 = ___0_msgId;
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_10 = V_1;
|
|
NullCheck(L_8);
|
|
Dictionary_2_Add_mF39D833B6D535AB303A482EA943B4199EDC86D9A(L_8, L_9, L_10, il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bzy_3_RemoveListener_m4799B81BC137373E65FF805199AE175891C38511_gshared (bzy_3_tE18DFB7C8239FAB9D9F8C7CCCC15D422D500BC4B* __this, uint32_t ___0_msgId, Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* ___1_listener, const RuntimeMethod* method)
|
|
{
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* V_0 = NULL;
|
|
{
|
|
Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D* L_0 = __this->___lxv;
|
|
uint32_t L_1 = ___0_msgId;
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = Dictionary_2_TryGetValue_m574E2D32C42F11EF858E2A662AACDF016AD483B5(L_0, L_1, (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 6));
|
|
if (!L_2)
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_3 = V_0;
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* L_4 = ___1_listener;
|
|
NullCheck(L_3);
|
|
bool L_5;
|
|
L_5 = List_1_Contains_mE91E9B509A957BD5C35C7D15DB8E727E656B0543(L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 14));
|
|
if (!L_5)
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_6 = V_0;
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* L_7 = ___1_listener;
|
|
NullCheck(L_6);
|
|
bool L_8;
|
|
L_8 = List_1_Remove_m2B2B28A78C773EFB5B780A7C6C71928E6F3BFA82(L_6, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_9 = V_0;
|
|
NullCheck(L_9);
|
|
int32_t L_10;
|
|
L_10 = List_1_get_Count_m6BD0CEA635AE2C0000530A78F8B9F52884F5E943_inline(L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
if (L_10)
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_11 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 12));
|
|
ctu_1_Release_m511BE77FE01B7A86F6226E9B515D718E9F400B12(L_11, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
|
|
Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D* L_12 = __this->___lxv;
|
|
uint32_t L_13 = ___0_msgId;
|
|
NullCheck(L_12);
|
|
bool L_14;
|
|
L_14 = Dictionary_2_Remove_mF3F1F4315C14F9F5F5438BC9156E90A8278D2D0F(L_12, L_13, il2cpp_rgctx_method(method->klass->rgctx_data, 18));
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bzy_3_Dispatch_m2A8DB4DF6093903B67A87D72EAA3C8B7288F72D9_gshared (bzy_3_tE18DFB7C8239FAB9D9F8C7CCCC15D422D500BC4B* __this, uint32_t ___0_msgId, RuntimeObject* ___1_param, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D* L_0 = __this->___lxu;
|
|
uint32_t L_1 = ___0_msgId;
|
|
RuntimeObject* L_2 = ___1_param;
|
|
bzy_3_fzm_m1BEFC6D94ECF66F4749C5C225373CFE76F170A3B(__this, L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D* L_3 = __this->___lxv;
|
|
uint32_t L_4 = ___0_msgId;
|
|
RuntimeObject* L_5 = ___1_param;
|
|
bzy_3_fzm_m1BEFC6D94ECF66F4749C5C225373CFE76F170A3B(__this, L_3, L_4, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D* L_6 = __this->___lxw;
|
|
uint32_t L_7 = ___0_msgId;
|
|
RuntimeObject* L_8 = ___1_param;
|
|
bzy_3_fzm_m1BEFC6D94ECF66F4749C5C225373CFE76F170A3B(__this, L_6, L_7, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D* L_9 = __this->___lxx;
|
|
uint32_t L_10 = ___0_msgId;
|
|
RuntimeObject* L_11 = ___1_param;
|
|
bzy_3_fzm_m1BEFC6D94ECF66F4749C5C225373CFE76F170A3B(__this, L_9, L_10, L_11, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D* L_12 = __this->___lxx;
|
|
uint32_t L_13 = ___0_msgId;
|
|
NullCheck(L_12);
|
|
bool L_14;
|
|
L_14 = Dictionary_2_ContainsKey_mAE024113093F9ED0004DAAC8C540EABC79ADE659(L_12, L_13, il2cpp_rgctx_method(method->klass->rgctx_data, 21));
|
|
if (!L_14)
|
|
{
|
|
goto IL_0064;
|
|
}
|
|
}
|
|
{
|
|
Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D* L_15 = __this->___lxx;
|
|
uint32_t L_16 = ___0_msgId;
|
|
NullCheck(L_15);
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_17;
|
|
L_17 = Dictionary_2_get_Item_m0662FB0F6363FAEA1D9907C6D3C8F837CB092001(L_15, L_16, il2cpp_rgctx_method(method->klass->rgctx_data, 22));
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 12));
|
|
ctu_1_Release_m511BE77FE01B7A86F6226E9B515D718E9F400B12(L_17, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
|
|
Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D* L_18 = __this->___lxx;
|
|
uint32_t L_19 = ___0_msgId;
|
|
NullCheck(L_18);
|
|
bool L_20;
|
|
L_20 = Dictionary_2_Remove_mF3F1F4315C14F9F5F5438BC9156E90A8278D2D0F(L_18, L_19, il2cpp_rgctx_method(method->klass->rgctx_data, 18));
|
|
}
|
|
|
|
IL_0064:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bzy_3_fzm_m1BEFC6D94ECF66F4749C5C225373CFE76F170A3B_gshared (bzy_3_tE18DFB7C8239FAB9D9F8C7CCCC15D422D500BC4B* __this, Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D* ___0_a, uint32_t ___1_b, RuntimeObject* ___2_c, const RuntimeMethod* method)
|
|
{
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* V_2 = NULL;
|
|
int32_t V_3 = 0;
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
{
|
|
Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D* L_0 = ___0_a;
|
|
uint32_t L_1 = ___1_b;
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = Dictionary_2_ContainsKey_mAE024113093F9ED0004DAAC8C540EABC79ADE659(L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 21));
|
|
if (L_2)
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D* L_3 = ___0_a;
|
|
uint32_t L_4 = ___1_b;
|
|
NullCheck(L_3);
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_5;
|
|
L_5 = Dictionary_2_get_Item_m0662FB0F6363FAEA1D9907C6D3C8F837CB092001(L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 22));
|
|
V_0 = L_5;
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_6 = V_0;
|
|
NullCheck(L_6);
|
|
int32_t L_7;
|
|
L_7 = List_1_get_Count_m6BD0CEA635AE2C0000530A78F8B9F52884F5E943_inline(L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
V_1 = L_7;
|
|
int32_t L_8 = V_1;
|
|
if ((!(((uint32_t)L_8) == ((uint32_t)1))))
|
|
{
|
|
goto IL_002b;
|
|
}
|
|
}
|
|
{
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_9 = V_0;
|
|
NullCheck(L_9);
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* L_10;
|
|
L_10 = List_1_get_Item_m85F9D1183840E6E92FD2B9A8140FF8412429BC7D(L_9, 0, il2cpp_rgctx_method(method->klass->rgctx_data, 23));
|
|
RuntimeObject* L_11 = ___2_c;
|
|
NullCheck(L_10);
|
|
Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_inline(L_10, L_11, il2cpp_rgctx_method(method->klass->rgctx_data, 24));
|
|
return;
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 12));
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_12;
|
|
L_12 = ctu_1_Get_mC96A8CCC1FE92484AE8DA286D73F53CCEE010706(il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
V_2 = L_12;
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_13 = V_2;
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_14 = V_0;
|
|
NullCheck(L_13);
|
|
List_1_AddRange_m6001425A53845EC70A05419B1EEF8688A840AE63(L_13, (RuntimeObject*)L_14, il2cpp_rgctx_method(method->klass->rgctx_data, 25));
|
|
V_3 = 0;
|
|
goto IL_0057;
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
}
|
|
try
|
|
{
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_15 = V_2;
|
|
int32_t L_16 = V_3;
|
|
NullCheck(L_15);
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* L_17;
|
|
L_17 = List_1_get_Item_m85F9D1183840E6E92FD2B9A8140FF8412429BC7D(L_15, L_16, il2cpp_rgctx_method(method->klass->rgctx_data, 23));
|
|
RuntimeObject* L_18 = ___2_c;
|
|
NullCheck(L_17);
|
|
Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_inline(L_17, L_18, il2cpp_rgctx_method(method->klass->rgctx_data, 24));
|
|
goto IL_0053;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_004c;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_004c:
|
|
{
|
|
Exception_t* L_19 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));;
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var)));
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2((RuntimeObject*)L_19, NULL);
|
|
IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
|
|
goto IL_0053;
|
|
}
|
|
|
|
IL_0053:
|
|
{
|
|
int32_t L_20 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_20, 1));
|
|
}
|
|
|
|
IL_0057:
|
|
{
|
|
int32_t L_21 = V_3;
|
|
int32_t L_22 = V_1;
|
|
if ((((int32_t)L_21) < ((int32_t)L_22)))
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_23 = V_2;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 12));
|
|
ctu_1_Release_m511BE77FE01B7A86F6226E9B515D718E9F400B12(L_23, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bzy_3_Dispose_m51FAF97D81D2190D9BDE5E9B01E177F530BDBE2A_gshared (bzy_3_tE18DFB7C8239FAB9D9F8C7CCCC15D422D500BC4B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
il2cpp_codegen_initobj((&((bzy_3_tE18DFB7C8239FAB9D9F8C7CCCC15D422D500BC4B_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___lxt), sizeof(RuntimeObject*));
|
|
Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D* L_0 = __this->___lxu;
|
|
NullCheck(L_0);
|
|
Dictionary_2_Clear_m7F74C5FFAE152253F91841FBE8449AD0E3A1D8C8(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 27));
|
|
Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D* L_1 = __this->___lxv;
|
|
NullCheck(L_1);
|
|
Dictionary_2_Clear_m7F74C5FFAE152253F91841FBE8449AD0E3A1D8C8(L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 27));
|
|
Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D* L_2 = __this->___lxw;
|
|
NullCheck(L_2);
|
|
Dictionary_2_Clear_m7F74C5FFAE152253F91841FBE8449AD0E3A1D8C8(L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 27));
|
|
Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D* L_3 = __this->___lxx;
|
|
NullCheck(L_3);
|
|
Dictionary_2_Clear_m7F74C5FFAE152253F91841FBE8449AD0E3A1D8C8(L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 27));
|
|
__this->___lxu = (Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___lxu), (void*)(Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D*)NULL);
|
|
__this->___lxv = (Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___lxv), (void*)(Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D*)NULL);
|
|
__this->___lxw = (Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___lxw), (void*)(Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D*)NULL);
|
|
__this->___lxx = (Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___lxx), (void*)(Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bzy_3__ctor_m6197B4BA78ABB8F558C77465567123DC64EFA1C8_gshared (bzy_3_tE18DFB7C8239FAB9D9F8C7CCCC15D422D500BC4B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D* L_0 = (Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 4));
|
|
Dictionary_2__ctor_mF9D3A10237994A1E954203D6B3288AFFEC0C426D(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
__this->___lxu = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___lxu), (void*)L_0);
|
|
Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D* L_1 = (Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 4));
|
|
Dictionary_2__ctor_mF9D3A10237994A1E954203D6B3288AFFEC0C426D(L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
__this->___lxv = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___lxv), (void*)L_1);
|
|
Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D* L_2 = (Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 4));
|
|
Dictionary_2__ctor_mF9D3A10237994A1E954203D6B3288AFFEC0C426D(L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
__this->___lxw = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___lxw), (void*)L_2);
|
|
Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D* L_3 = (Dictionary_2_tBF17D5EC4270865219C8B366EC1255BB73CF2C1D*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 4));
|
|
Dictionary_2__ctor_mF9D3A10237994A1E954203D6B3288AFFEC0C426D(L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
__this->___lxx = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___lxx), (void*)L_3);
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* bzy_3_get_Instance_mAE54B4C95FECD54FF7B3C6E95C052AA395739213_gshared (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = ((bzy_3_tC389978D981A35DE42CE123B5ECE75262286577D_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___lxt;
|
|
if (L_0)
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_1;
|
|
L_1 = Activator_CreateInstance_TisRuntimeObject_m62506836177F0F862A8D619638BF37F48721F138(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
((bzy_3_tC389978D981A35DE42CE123B5ECE75262286577D_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___lxt = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((bzy_3_tC389978D981A35DE42CE123B5ECE75262286577D_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___lxt), (void*)L_1);
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
RuntimeObject* L_2 = ((bzy_3_tC389978D981A35DE42CE123B5ECE75262286577D_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___lxt;
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bzy_3_AddListener_m4431A14A722A23E92EEBD10F6B08ABBAA2F33DA1_gshared (bzy_3_tC389978D981A35DE42CE123B5ECE75262286577D* __this, Il2CppFullySharedGenericAny ___0_msgId, Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* ___1_listener, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_b_t3A523CFE03C8FE01D07E28B1F46D07D1420EDA28 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5));
|
|
const Il2CppFullySharedGenericAny L_1 = alloca(SizeOf_b_t3A523CFE03C8FE01D07E28B1F46D07D1420EDA28);
|
|
const Il2CppFullySharedGenericAny L_9 = L_1;
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* V_0 = NULL;
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* V_1 = NULL;
|
|
{
|
|
Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED* L_0 = __this->___lxv;
|
|
il2cpp_codegen_memcpy(L_1, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5)) ? ___0_msgId : &___0_msgId), SizeOf_b_t3A523CFE03C8FE01D07E28B1F46D07D1420EDA28);
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = InvokerFuncInvoker2< bool, Il2CppFullySharedGenericAny, List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0** >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 6)), il2cpp_rgctx_method(method->klass->rgctx_data, 6), L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5)) ? L_1: *(void**)L_1), (&V_0));
|
|
if (!L_2)
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_3 = V_0;
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* L_4 = ___1_listener;
|
|
NullCheck(L_3);
|
|
List_1_Add_mA7C789A830108A82F925F9EB53FFC1F288C02908_inline(L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
return;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 12));
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_5;
|
|
L_5 = ctu_1_Get_mC96A8CCC1FE92484AE8DA286D73F53CCEE010706(il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
V_1 = L_5;
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_6 = V_1;
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* L_7 = ___1_listener;
|
|
NullCheck(L_6);
|
|
List_1_Add_mA7C789A830108A82F925F9EB53FFC1F288C02908_inline(L_6, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED* L_8 = __this->___lxv;
|
|
il2cpp_codegen_memcpy(L_9, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5)) ? ___0_msgId : &___0_msgId), SizeOf_b_t3A523CFE03C8FE01D07E28B1F46D07D1420EDA28);
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_10 = V_1;
|
|
NullCheck(L_8);
|
|
InvokerActionInvoker2< Il2CppFullySharedGenericAny, List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 13)), il2cpp_rgctx_method(method->klass->rgctx_data, 13), L_8, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5)) ? L_9: *(void**)L_9), L_10);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bzy_3_AddOnceListener_m675D32A9933FA2221042EB8762005BCBD85C000B_gshared (bzy_3_tC389978D981A35DE42CE123B5ECE75262286577D* __this, Il2CppFullySharedGenericAny ___0_msgId, Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* ___1_listener, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_b_t3A523CFE03C8FE01D07E28B1F46D07D1420EDA28 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5));
|
|
const Il2CppFullySharedGenericAny L_1 = alloca(SizeOf_b_t3A523CFE03C8FE01D07E28B1F46D07D1420EDA28);
|
|
const Il2CppFullySharedGenericAny L_9 = L_1;
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* V_0 = NULL;
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* V_1 = NULL;
|
|
{
|
|
Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED* L_0 = __this->___lxx;
|
|
il2cpp_codegen_memcpy(L_1, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5)) ? ___0_msgId : &___0_msgId), SizeOf_b_t3A523CFE03C8FE01D07E28B1F46D07D1420EDA28);
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = InvokerFuncInvoker2< bool, Il2CppFullySharedGenericAny, List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0** >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 6)), il2cpp_rgctx_method(method->klass->rgctx_data, 6), L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5)) ? L_1: *(void**)L_1), (&V_0));
|
|
if (!L_2)
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_3 = V_0;
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* L_4 = ___1_listener;
|
|
NullCheck(L_3);
|
|
List_1_Add_mA7C789A830108A82F925F9EB53FFC1F288C02908_inline(L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
return;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 12));
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_5;
|
|
L_5 = ctu_1_Get_mC96A8CCC1FE92484AE8DA286D73F53CCEE010706(il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
V_1 = L_5;
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_6 = V_1;
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* L_7 = ___1_listener;
|
|
NullCheck(L_6);
|
|
List_1_Add_mA7C789A830108A82F925F9EB53FFC1F288C02908_inline(L_6, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED* L_8 = __this->___lxx;
|
|
il2cpp_codegen_memcpy(L_9, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5)) ? ___0_msgId : &___0_msgId), SizeOf_b_t3A523CFE03C8FE01D07E28B1F46D07D1420EDA28);
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_10 = V_1;
|
|
NullCheck(L_8);
|
|
InvokerActionInvoker2< Il2CppFullySharedGenericAny, List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 13)), il2cpp_rgctx_method(method->klass->rgctx_data, 13), L_8, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5)) ? L_9: *(void**)L_9), L_10);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bzy_3_RemoveListener_m8E49FB23511A1791C13E4DBC52D176E50467F9B9_gshared (bzy_3_tC389978D981A35DE42CE123B5ECE75262286577D* __this, Il2CppFullySharedGenericAny ___0_msgId, Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* ___1_listener, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_b_t3A523CFE03C8FE01D07E28B1F46D07D1420EDA28 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5));
|
|
const Il2CppFullySharedGenericAny L_1 = alloca(SizeOf_b_t3A523CFE03C8FE01D07E28B1F46D07D1420EDA28);
|
|
const Il2CppFullySharedGenericAny L_13 = L_1;
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* V_0 = NULL;
|
|
{
|
|
Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED* L_0 = __this->___lxv;
|
|
il2cpp_codegen_memcpy(L_1, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5)) ? ___0_msgId : &___0_msgId), SizeOf_b_t3A523CFE03C8FE01D07E28B1F46D07D1420EDA28);
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = InvokerFuncInvoker2< bool, Il2CppFullySharedGenericAny, List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0** >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 6)), il2cpp_rgctx_method(method->klass->rgctx_data, 6), L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5)) ? L_1: *(void**)L_1), (&V_0));
|
|
if (!L_2)
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_3 = V_0;
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* L_4 = ___1_listener;
|
|
NullCheck(L_3);
|
|
bool L_5;
|
|
L_5 = List_1_Contains_mE91E9B509A957BD5C35C7D15DB8E727E656B0543(L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 14));
|
|
if (!L_5)
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_6 = V_0;
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* L_7 = ___1_listener;
|
|
NullCheck(L_6);
|
|
bool L_8;
|
|
L_8 = List_1_Remove_m2B2B28A78C773EFB5B780A7C6C71928E6F3BFA82(L_6, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 15));
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_9 = V_0;
|
|
NullCheck(L_9);
|
|
int32_t L_10;
|
|
L_10 = List_1_get_Count_m6BD0CEA635AE2C0000530A78F8B9F52884F5E943_inline(L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
if (L_10)
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_11 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 12));
|
|
ctu_1_Release_m511BE77FE01B7A86F6226E9B515D718E9F400B12(L_11, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
|
|
Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED* L_12 = __this->___lxv;
|
|
il2cpp_codegen_memcpy(L_13, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5)) ? ___0_msgId : &___0_msgId), SizeOf_b_t3A523CFE03C8FE01D07E28B1F46D07D1420EDA28);
|
|
NullCheck(L_12);
|
|
bool L_14;
|
|
L_14 = InvokerFuncInvoker1< bool, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 18)), il2cpp_rgctx_method(method->klass->rgctx_data, 18), L_12, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5)) ? L_13: *(void**)L_13));
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bzy_3_Dispatch_mF205F6A163DD16C953734D9BDFE762318146474C_gshared (bzy_3_tC389978D981A35DE42CE123B5ECE75262286577D* __this, Il2CppFullySharedGenericAny ___0_msgId, RuntimeObject* ___1_param, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_b_t3A523CFE03C8FE01D07E28B1F46D07D1420EDA28 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5));
|
|
const Il2CppFullySharedGenericAny L_1 = alloca(SizeOf_b_t3A523CFE03C8FE01D07E28B1F46D07D1420EDA28);
|
|
const Il2CppFullySharedGenericAny L_16 = L_1;
|
|
const Il2CppFullySharedGenericAny L_4 = alloca(SizeOf_b_t3A523CFE03C8FE01D07E28B1F46D07D1420EDA28);
|
|
const Il2CppFullySharedGenericAny L_19 = L_4;
|
|
const Il2CppFullySharedGenericAny L_7 = alloca(SizeOf_b_t3A523CFE03C8FE01D07E28B1F46D07D1420EDA28);
|
|
const Il2CppFullySharedGenericAny L_10 = alloca(SizeOf_b_t3A523CFE03C8FE01D07E28B1F46D07D1420EDA28);
|
|
const Il2CppFullySharedGenericAny L_13 = alloca(SizeOf_b_t3A523CFE03C8FE01D07E28B1F46D07D1420EDA28);
|
|
{
|
|
Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED* L_0 = __this->___lxu;
|
|
il2cpp_codegen_memcpy(L_1, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5)) ? ___0_msgId : &___0_msgId), SizeOf_b_t3A523CFE03C8FE01D07E28B1F46D07D1420EDA28);
|
|
RuntimeObject* L_2 = ___1_param;
|
|
InvokerActionInvoker3< Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED*, Il2CppFullySharedGenericAny, RuntimeObject* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 20)), il2cpp_rgctx_method(method->klass->rgctx_data, 20), __this, L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5)) ? L_1: *(void**)L_1), L_2);
|
|
Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED* L_3 = __this->___lxv;
|
|
il2cpp_codegen_memcpy(L_4, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5)) ? ___0_msgId : &___0_msgId), SizeOf_b_t3A523CFE03C8FE01D07E28B1F46D07D1420EDA28);
|
|
RuntimeObject* L_5 = ___1_param;
|
|
InvokerActionInvoker3< Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED*, Il2CppFullySharedGenericAny, RuntimeObject* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 20)), il2cpp_rgctx_method(method->klass->rgctx_data, 20), __this, L_3, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5)) ? L_4: *(void**)L_4), L_5);
|
|
Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED* L_6 = __this->___lxw;
|
|
il2cpp_codegen_memcpy(L_7, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5)) ? ___0_msgId : &___0_msgId), SizeOf_b_t3A523CFE03C8FE01D07E28B1F46D07D1420EDA28);
|
|
RuntimeObject* L_8 = ___1_param;
|
|
InvokerActionInvoker3< Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED*, Il2CppFullySharedGenericAny, RuntimeObject* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 20)), il2cpp_rgctx_method(method->klass->rgctx_data, 20), __this, L_6, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5)) ? L_7: *(void**)L_7), L_8);
|
|
Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED* L_9 = __this->___lxx;
|
|
il2cpp_codegen_memcpy(L_10, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5)) ? ___0_msgId : &___0_msgId), SizeOf_b_t3A523CFE03C8FE01D07E28B1F46D07D1420EDA28);
|
|
RuntimeObject* L_11 = ___1_param;
|
|
InvokerActionInvoker3< Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED*, Il2CppFullySharedGenericAny, RuntimeObject* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 20)), il2cpp_rgctx_method(method->klass->rgctx_data, 20), __this, L_9, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5)) ? L_10: *(void**)L_10), L_11);
|
|
Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED* L_12 = __this->___lxx;
|
|
il2cpp_codegen_memcpy(L_13, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5)) ? ___0_msgId : &___0_msgId), SizeOf_b_t3A523CFE03C8FE01D07E28B1F46D07D1420EDA28);
|
|
NullCheck(L_12);
|
|
bool L_14;
|
|
L_14 = InvokerFuncInvoker1< bool, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 21)), il2cpp_rgctx_method(method->klass->rgctx_data, 21), L_12, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5)) ? L_13: *(void**)L_13));
|
|
if (!L_14)
|
|
{
|
|
goto IL_0064;
|
|
}
|
|
}
|
|
{
|
|
Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED* L_15 = __this->___lxx;
|
|
il2cpp_codegen_memcpy(L_16, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5)) ? ___0_msgId : &___0_msgId), SizeOf_b_t3A523CFE03C8FE01D07E28B1F46D07D1420EDA28);
|
|
NullCheck(L_15);
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_17;
|
|
L_17 = InvokerFuncInvoker1< List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 22)), il2cpp_rgctx_method(method->klass->rgctx_data, 22), L_15, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5)) ? L_16: *(void**)L_16));
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 12));
|
|
ctu_1_Release_m511BE77FE01B7A86F6226E9B515D718E9F400B12(L_17, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
|
|
Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED* L_18 = __this->___lxx;
|
|
il2cpp_codegen_memcpy(L_19, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5)) ? ___0_msgId : &___0_msgId), SizeOf_b_t3A523CFE03C8FE01D07E28B1F46D07D1420EDA28);
|
|
NullCheck(L_18);
|
|
bool L_20;
|
|
L_20 = InvokerFuncInvoker1< bool, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 18)), il2cpp_rgctx_method(method->klass->rgctx_data, 18), L_18, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5)) ? L_19: *(void**)L_19));
|
|
}
|
|
|
|
IL_0064:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bzy_3_fzm_mB78FA33031FD4EB5C8C6C7598E22ADFECF4D1AAA_gshared (bzy_3_tC389978D981A35DE42CE123B5ECE75262286577D* __this, Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED* ___0_a, Il2CppFullySharedGenericAny ___1_b, RuntimeObject* ___2_c, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_b_t3A523CFE03C8FE01D07E28B1F46D07D1420EDA28 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5));
|
|
const Il2CppFullySharedGenericAny L_1 = alloca(SizeOf_b_t3A523CFE03C8FE01D07E28B1F46D07D1420EDA28);
|
|
const Il2CppFullySharedGenericAny L_4 = L_1;
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* V_2 = NULL;
|
|
int32_t V_3 = 0;
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
{
|
|
Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED* L_0 = ___0_a;
|
|
il2cpp_codegen_memcpy(L_1, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5)) ? ___1_b : &___1_b), SizeOf_b_t3A523CFE03C8FE01D07E28B1F46D07D1420EDA28);
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = InvokerFuncInvoker1< bool, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 21)), il2cpp_rgctx_method(method->klass->rgctx_data, 21), L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5)) ? L_1: *(void**)L_1));
|
|
if (L_2)
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED* L_3 = ___0_a;
|
|
il2cpp_codegen_memcpy(L_4, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5)) ? ___1_b : &___1_b), SizeOf_b_t3A523CFE03C8FE01D07E28B1F46D07D1420EDA28);
|
|
NullCheck(L_3);
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_5;
|
|
L_5 = InvokerFuncInvoker1< List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 22)), il2cpp_rgctx_method(method->klass->rgctx_data, 22), L_3, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5)) ? L_4: *(void**)L_4));
|
|
V_0 = L_5;
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_6 = V_0;
|
|
NullCheck(L_6);
|
|
int32_t L_7;
|
|
L_7 = List_1_get_Count_m6BD0CEA635AE2C0000530A78F8B9F52884F5E943_inline(L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
V_1 = L_7;
|
|
int32_t L_8 = V_1;
|
|
if ((!(((uint32_t)L_8) == ((uint32_t)1))))
|
|
{
|
|
goto IL_002b;
|
|
}
|
|
}
|
|
{
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_9 = V_0;
|
|
NullCheck(L_9);
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* L_10;
|
|
L_10 = List_1_get_Item_m85F9D1183840E6E92FD2B9A8140FF8412429BC7D(L_9, 0, il2cpp_rgctx_method(method->klass->rgctx_data, 23));
|
|
RuntimeObject* L_11 = ___2_c;
|
|
NullCheck(L_10);
|
|
Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_inline(L_10, L_11, il2cpp_rgctx_method(method->klass->rgctx_data, 24));
|
|
return;
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 12));
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_12;
|
|
L_12 = ctu_1_Get_mC96A8CCC1FE92484AE8DA286D73F53CCEE010706(il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
V_2 = L_12;
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_13 = V_2;
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_14 = V_0;
|
|
NullCheck(L_13);
|
|
List_1_AddRange_m6001425A53845EC70A05419B1EEF8688A840AE63(L_13, (RuntimeObject*)L_14, il2cpp_rgctx_method(method->klass->rgctx_data, 25));
|
|
V_3 = 0;
|
|
goto IL_0057;
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
}
|
|
try
|
|
{
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_15 = V_2;
|
|
int32_t L_16 = V_3;
|
|
NullCheck(L_15);
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* L_17;
|
|
L_17 = List_1_get_Item_m85F9D1183840E6E92FD2B9A8140FF8412429BC7D(L_15, L_16, il2cpp_rgctx_method(method->klass->rgctx_data, 23));
|
|
RuntimeObject* L_18 = ___2_c;
|
|
NullCheck(L_17);
|
|
Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_inline(L_17, L_18, il2cpp_rgctx_method(method->klass->rgctx_data, 24));
|
|
goto IL_0053;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_004c;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_004c:
|
|
{
|
|
Exception_t* L_19 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));;
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var)));
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2((RuntimeObject*)L_19, NULL);
|
|
IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
|
|
goto IL_0053;
|
|
}
|
|
|
|
IL_0053:
|
|
{
|
|
int32_t L_20 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_20, 1));
|
|
}
|
|
|
|
IL_0057:
|
|
{
|
|
int32_t L_21 = V_3;
|
|
int32_t L_22 = V_1;
|
|
if ((((int32_t)L_21) < ((int32_t)L_22)))
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
List_1_t8ED86F5A318743E9CE1F85A351EB862E45361BE0* L_23 = V_2;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 12));
|
|
ctu_1_Release_m511BE77FE01B7A86F6226E9B515D718E9F400B12(L_23, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bzy_3_Dispose_m157D01D26344979DAA598BBAC7C8561E26F8B292_gshared (bzy_3_tC389978D981A35DE42CE123B5ECE75262286577D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
il2cpp_codegen_initobj((&((bzy_3_tC389978D981A35DE42CE123B5ECE75262286577D_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___lxt), sizeof(RuntimeObject*));
|
|
Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED* L_0 = __this->___lxu;
|
|
NullCheck(L_0);
|
|
(( void (*) (Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 27)))(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 27));
|
|
Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED* L_1 = __this->___lxv;
|
|
NullCheck(L_1);
|
|
(( void (*) (Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 27)))(L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 27));
|
|
Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED* L_2 = __this->___lxw;
|
|
NullCheck(L_2);
|
|
(( void (*) (Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 27)))(L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 27));
|
|
Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED* L_3 = __this->___lxx;
|
|
NullCheck(L_3);
|
|
(( void (*) (Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 27)))(L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 27));
|
|
__this->___lxu = (Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___lxu), (void*)(Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED*)NULL);
|
|
__this->___lxv = (Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___lxv), (void*)(Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED*)NULL);
|
|
__this->___lxw = (Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___lxw), (void*)(Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED*)NULL);
|
|
__this->___lxx = (Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___lxx), (void*)(Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bzy_3__ctor_mEEAD0C98A0217AF3B0716B603E9B350D82B88EB0_gshared (bzy_3_tC389978D981A35DE42CE123B5ECE75262286577D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED* L_0 = (Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 4));
|
|
(( void (*) (Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 28)))(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
__this->___lxu = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___lxu), (void*)L_0);
|
|
Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED* L_1 = (Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 4));
|
|
(( void (*) (Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 28)))(L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
__this->___lxv = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___lxv), (void*)L_1);
|
|
Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED* L_2 = (Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 4));
|
|
(( void (*) (Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 28)))(L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
__this->___lxw = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___lxw), (void*)L_2);
|
|
Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED* L_3 = (Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 4));
|
|
(( void (*) (Dictionary_2_tA498DAD2456288756ACF15676796A4E565265BED*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 28)))(L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
__this->___lxx = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___lxx), (void*)L_3);
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bzz__ctor_m53BEB55A318F179E1CE27103F40F65212696D9BA_gshared (bzz_tCC9D58D0405F9E7396E18C3C85F9412EEB25A782* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void bzz__ctor_m3C3176F46F34466294977440EE4B10320A21CA70_gshared (bzz_t2343B694422D4F01BBE58CBBDFD0C9CFD13D0AEF* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ca_1_RemoveKey_mA9E4CEF14F7981C82EFFD4065CC8C5503E81891F_gshared (ca_1_t69F2B6DD12EE2DCBE97A74A7AB8D9BBDB03E21A9* __this, int32_t ___0_key, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_mAEB2333688211862F3BF025DED14A07DF2AB6862_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m3056C0403652CA8364963A1CDE5D5EACF19CB5B8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m0CEFF9A8B2B0E57C5DDBA1134553DEBC37719CED_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GameObject_t76FEDD663AB33C991A9C9A23129337651094216F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m51249A9DD3B29478801AC004DEA026A63D4A6D9B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_mA6D8F51281EF3C4183058B42C1930E0E885543EF_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Enumerator_tE4F8BFD8BC4B29A1F907A500BE1A39F6AEECF80E V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* V_1 = NULL;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* V_2 = NULL;
|
|
{
|
|
Dictionary_2_t61D2A8EA7B89354F704065B5DF8061AED7234EEA* L_0 = __this->___jpi;
|
|
int32_t L_1 = ___0_key;
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = Dictionary_2_ContainsKey_m9EA4D63FCC5C2DD2CBE19BA556D00AF2ECD62ADF(L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
|
|
if (!L_2)
|
|
{
|
|
goto IL_008c;
|
|
}
|
|
}
|
|
{
|
|
Dictionary_2_t61D2A8EA7B89354F704065B5DF8061AED7234EEA* L_3 = __this->___jpi;
|
|
int32_t L_4 = ___0_key;
|
|
NullCheck(L_3);
|
|
List_1_t9A2E2984B23260AECDFA90CEB1F2887075FA4DF3* L_5;
|
|
L_5 = Dictionary_2_get_Item_m27AF7E53C5A1F9361F556AD6761C4463620A648F(L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
|
|
NullCheck(L_5);
|
|
Enumerator_tE4F8BFD8BC4B29A1F907A500BE1A39F6AEECF80E L_6;
|
|
L_6 = List_1_GetEnumerator_mA6D8F51281EF3C4183058B42C1930E0E885543EF(L_5, List_1_GetEnumerator_mA6D8F51281EF3C4183058B42C1930E0E885543EF_RuntimeMethod_var);
|
|
V_0 = L_6;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0060:
|
|
{
|
|
Enumerator_Dispose_mAEB2333688211862F3BF025DED14A07DF2AB6862((&V_0), Enumerator_Dispose_mAEB2333688211862F3BF025DED14A07DF2AB6862_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_0055_1;
|
|
}
|
|
|
|
IL_0022_1:
|
|
{
|
|
Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* L_7;
|
|
L_7 = Enumerator_get_Current_m0CEFF9A8B2B0E57C5DDBA1134553DEBC37719CED_inline((&V_0), Enumerator_get_Current_m0CEFF9A8B2B0E57C5DDBA1134553DEBC37719CED_RuntimeMethod_var);
|
|
V_1 = L_7;
|
|
Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* L_8 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_9;
|
|
L_9 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_8, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_9)
|
|
{
|
|
goto IL_0055_1;
|
|
}
|
|
}
|
|
{
|
|
Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* L_10 = V_1;
|
|
V_2 = ((GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)IsInstSealed((RuntimeObject*)L_10, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F_il2cpp_TypeInfo_var));
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_11 = V_2;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_12;
|
|
L_12 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605((Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)L_11, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_12)
|
|
{
|
|
goto IL_004f_1;
|
|
}
|
|
}
|
|
{
|
|
Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* L_13 = V_1;
|
|
NullCheck(((Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3*)IsInstClass((RuntimeObject*)L_13, Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3_il2cpp_TypeInfo_var)));
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_14;
|
|
L_14 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(((Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3*)IsInstClass((RuntimeObject*)L_13, Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3_il2cpp_TypeInfo_var)), NULL);
|
|
V_2 = L_14;
|
|
}
|
|
|
|
IL_004f_1:
|
|
{
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_15 = V_2;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
Object_Destroy_mE97D0A766419A81296E8D4E5C23D01D3FE91ACBB((Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)L_15, NULL);
|
|
}
|
|
|
|
IL_0055_1:
|
|
{
|
|
bool L_16;
|
|
L_16 = Enumerator_MoveNext_m3056C0403652CA8364963A1CDE5D5EACF19CB5B8((&V_0), Enumerator_MoveNext_m3056C0403652CA8364963A1CDE5D5EACF19CB5B8_RuntimeMethod_var);
|
|
if (L_16)
|
|
{
|
|
goto IL_0022_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_006e;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_006e:
|
|
{
|
|
Dictionary_2_t61D2A8EA7B89354F704065B5DF8061AED7234EEA* L_17 = __this->___jpi;
|
|
int32_t L_18 = ___0_key;
|
|
NullCheck(L_17);
|
|
List_1_t9A2E2984B23260AECDFA90CEB1F2887075FA4DF3* L_19;
|
|
L_19 = Dictionary_2_get_Item_m27AF7E53C5A1F9361F556AD6761C4463620A648F(L_17, L_18, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
|
|
NullCheck(L_19);
|
|
List_1_Clear_m51249A9DD3B29478801AC004DEA026A63D4A6D9B_inline(L_19, List_1_Clear_m51249A9DD3B29478801AC004DEA026A63D4A6D9B_RuntimeMethod_var);
|
|
Dictionary_2_t61D2A8EA7B89354F704065B5DF8061AED7234EEA* L_20 = __this->___jpi;
|
|
int32_t L_21 = ___0_key;
|
|
NullCheck(L_20);
|
|
bool L_22;
|
|
L_22 = Dictionary_2_Remove_m777996E5B7FAE1B5D74A21E3D0A49DC7ADDB5344(L_20, L_21, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
|
|
}
|
|
|
|
IL_008c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ca_1_Dispose_mF1F3BE0F53931C418736DC6EF77B56E3120C4AD5_gshared (ca_1_t69F2B6DD12EE2DCBE97A74A7AB8D9BBDB03E21A9* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ca_1_RemoveAll_m72374BA2B76106454D4EAAE5A95051C49FE492E6(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 6));
|
|
__this->___jpi = (Dictionary_2_t61D2A8EA7B89354F704065B5DF8061AED7234EEA*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___jpi), (void*)(Dictionary_2_t61D2A8EA7B89354F704065B5DF8061AED7234EEA*)NULL);
|
|
__this->___jpj = (Dictionary_2_t6E25435979095FF8317CE46D91CB6A310AFE529A*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___jpj), (void*)(Dictionary_2_t6E25435979095FF8317CE46D91CB6A310AFE529A*)NULL);
|
|
__this->___jpk = (List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___jpk), (void*)(List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ca_1_dtr_m9F89437C62368B1374C1E8F5491A1F243C6C1304_gshared (ca_1_t69F2B6DD12EE2DCBE97A74A7AB8D9BBDB03E21A9* __this, int32_t ___0_a, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GameObject_t76FEDD663AB33C991A9C9A23129337651094216F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m1B0135DE2C4A4BCA4820D2FC9E060ED224FC24C0_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t9A2E2984B23260AECDFA90CEB1F2887075FA4DF3_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* V_0 = NULL;
|
|
{
|
|
Dictionary_2_t61D2A8EA7B89354F704065B5DF8061AED7234EEA* L_0 = __this->___jpi;
|
|
int32_t L_1 = ___0_a;
|
|
List_1_t9A2E2984B23260AECDFA90CEB1F2887075FA4DF3* L_2 = (List_1_t9A2E2984B23260AECDFA90CEB1F2887075FA4DF3*)il2cpp_codegen_object_new(List_1_t9A2E2984B23260AECDFA90CEB1F2887075FA4DF3_il2cpp_TypeInfo_var);
|
|
List_1__ctor_m1B0135DE2C4A4BCA4820D2FC9E060ED224FC24C0(L_2, List_1__ctor_m1B0135DE2C4A4BCA4820D2FC9E060ED224FC24C0_RuntimeMethod_var);
|
|
NullCheck(L_0);
|
|
Dictionary_2_Add_mE0E888CDA6E22367E0949EFF323EFF1EC6B62625(L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 9));
|
|
Il2CppFakeBox<int32_t> L_3(il2cpp_rgctx_data(method->klass->rgctx_data, 2), (&___0_a));
|
|
String_t* L_4;
|
|
L_4 = Enum_ToString_m946B0B83C4470457D0FF555D862022C72BB55741((Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2*)(&L_3), NULL);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_5 = (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)il2cpp_codegen_object_new(GameObject_t76FEDD663AB33C991A9C9A23129337651094216F_il2cpp_TypeInfo_var);
|
|
GameObject__ctor_m37D512B05D292F954792225E6C6EEE95293A9B88(L_5, L_4, NULL);
|
|
NullCheck(L_5);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_6;
|
|
L_6 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_5, NULL);
|
|
V_0 = L_6;
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_7 = V_0;
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_8 = __this->___jpl;
|
|
NullCheck(L_7);
|
|
Transform_SetParent_m6677538B60246D958DD91F931C50F969CCBB5250(L_7, L_8, NULL);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_9 = V_0;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_10;
|
|
L_10 = Vector3_get_one_mC9B289F1E15C42C597180C9FE6FB492495B51D02_inline(NULL);
|
|
NullCheck(L_9);
|
|
Transform_set_localScale_mBA79E811BAF6C47B80FF76414C12B47B3CD03633(L_9, L_10, NULL);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_11 = V_0;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_12;
|
|
L_12 = Vector3_get_zero_m0C1249C3F25B1C70EAD3CC8B31259975A457AE39_inline(NULL);
|
|
NullCheck(L_11);
|
|
Transform_set_localPosition_mDE1C997F7D79C0885210B7732B4BA50EE7D73134(L_11, L_12, NULL);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_13 = V_0;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_14;
|
|
L_14 = Vector3_get_zero_m0C1249C3F25B1C70EAD3CC8B31259975A457AE39_inline(NULL);
|
|
NullCheck(L_13);
|
|
Transform_set_localEulerAngles_m0458551662A1A51FDCA4C0417282B25D391661DF(L_13, L_14, NULL);
|
|
Dictionary_2_t6E25435979095FF8317CE46D91CB6A310AFE529A* L_15 = __this->___jpj;
|
|
int32_t L_16 = ___0_a;
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_17 = V_0;
|
|
NullCheck((Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3*)L_17);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_18;
|
|
L_18 = Component_get_transform_m2919A1D81931E6932C7F06D4C2F0AB8DDA9A5371((Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3*)L_17, NULL);
|
|
NullCheck(L_15);
|
|
Dictionary_2_Add_mC09E5C084DA2B213F8C5DDC8EE11046BE28CFC42(L_15, L_16, L_18, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ca_1_RecObject_m641BA071EA679F8C6857053D08E1DE18C673FC89_gshared (ca_1_t69F2B6DD12EE2DCBE97A74A7AB8D9BBDB03E21A9* __this, int32_t ___0_key, Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___1_obj, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GameObject_t76FEDD663AB33C991A9C9A23129337651094216F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m60F1F5D817C83DDC11235FD5524B8667F4C314F9_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m1B0135DE2C4A4BCA4820D2FC9E060ED224FC24C0_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t9A2E2984B23260AECDFA90CEB1F2887075FA4DF3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* V_0 = NULL;
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* V_1 = NULL;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* G_B6_0 = NULL;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* G_B5_0 = NULL;
|
|
Action_2_t9C463C2F47C41EF4ECC1B672CE6FB7D020F0E658* G_B10_0 = NULL;
|
|
Action_2_t9C463C2F47C41EF4ECC1B672CE6FB7D020F0E658* G_B9_0 = NULL;
|
|
{
|
|
Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* L_0 = ___1_obj;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_1;
|
|
L_1 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
Dictionary_2_t61D2A8EA7B89354F704065B5DF8061AED7234EEA* L_2 = __this->___jpi;
|
|
int32_t L_3 = ___0_key;
|
|
NullCheck(L_2);
|
|
bool L_4;
|
|
L_4 = Dictionary_2_ContainsKey_m9EA4D63FCC5C2DD2CBE19BA556D00AF2ECD62ADF(L_2, L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
|
|
if (L_4)
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
Dictionary_2_t61D2A8EA7B89354F704065B5DF8061AED7234EEA* L_5 = __this->___jpi;
|
|
int32_t L_6 = ___0_key;
|
|
List_1_t9A2E2984B23260AECDFA90CEB1F2887075FA4DF3* L_7 = (List_1_t9A2E2984B23260AECDFA90CEB1F2887075FA4DF3*)il2cpp_codegen_object_new(List_1_t9A2E2984B23260AECDFA90CEB1F2887075FA4DF3_il2cpp_TypeInfo_var);
|
|
List_1__ctor_m1B0135DE2C4A4BCA4820D2FC9E060ED224FC24C0(L_7, List_1__ctor_m1B0135DE2C4A4BCA4820D2FC9E060ED224FC24C0_RuntimeMethod_var);
|
|
NullCheck(L_5);
|
|
Dictionary_2_Add_mE0E888CDA6E22367E0949EFF323EFF1EC6B62625(L_5, L_6, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 9));
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* L_8 = ___1_obj;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_9 = ((GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)IsInstSealed((RuntimeObject*)L_8, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F_il2cpp_TypeInfo_var));
|
|
if (L_9)
|
|
{
|
|
G_B6_0 = L_9;
|
|
goto IL_003e;
|
|
}
|
|
G_B5_0 = L_9;
|
|
}
|
|
{
|
|
Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* L_10 = ___1_obj;
|
|
NullCheck(((Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3*)IsInstClass((RuntimeObject*)L_10, Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3_il2cpp_TypeInfo_var)));
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_11;
|
|
L_11 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(((Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3*)IsInstClass((RuntimeObject*)L_10, Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3_il2cpp_TypeInfo_var)), NULL);
|
|
G_B6_0 = L_11;
|
|
}
|
|
|
|
IL_003e:
|
|
{
|
|
V_0 = G_B6_0;
|
|
Dictionary_2_t6E25435979095FF8317CE46D91CB6A310AFE529A* L_12 = __this->___jpj;
|
|
int32_t L_13 = ___0_key;
|
|
NullCheck(L_12);
|
|
bool L_14;
|
|
L_14 = Dictionary_2_TryGetValue_mAAB33FAA017CDFEEF7A7866F764CE600F6DC9F94(L_12, L_13, (&V_1), il2cpp_rgctx_method(method->klass->rgctx_data, 14));
|
|
if (!L_14)
|
|
{
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
{
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_15 = V_0;
|
|
NullCheck(L_15);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_16;
|
|
L_16 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_15, NULL);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_17 = V_1;
|
|
NullCheck(L_16);
|
|
Transform_set_parent_m9BD5E563B539DD5BEC342736B03F97B38A243234(L_16, L_17, NULL);
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
Action_2_t9C463C2F47C41EF4ECC1B672CE6FB7D020F0E658* L_18 = __this->___RecObjFunc;
|
|
Action_2_t9C463C2F47C41EF4ECC1B672CE6FB7D020F0E658* L_19 = L_18;
|
|
if (L_19)
|
|
{
|
|
G_B10_0 = L_19;
|
|
goto IL_0067;
|
|
}
|
|
G_B9_0 = L_19;
|
|
}
|
|
{
|
|
goto IL_006e;
|
|
}
|
|
|
|
IL_0067:
|
|
{
|
|
int32_t L_20 = ___0_key;
|
|
Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* L_21 = ___1_obj;
|
|
NullCheck(G_B10_0);
|
|
Action_2_Invoke_mFE18A6C9A914162194CBB82B70D78F5509D4C72A_inline(G_B10_0, L_20, L_21, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
}
|
|
|
|
IL_006e:
|
|
{
|
|
Dictionary_2_t61D2A8EA7B89354F704065B5DF8061AED7234EEA* L_22 = __this->___jpi;
|
|
int32_t L_23 = ___0_key;
|
|
NullCheck(L_22);
|
|
List_1_t9A2E2984B23260AECDFA90CEB1F2887075FA4DF3* L_24;
|
|
L_24 = Dictionary_2_get_Item_m27AF7E53C5A1F9361F556AD6761C4463620A648F(L_22, L_23, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
|
|
Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* L_25 = ___1_obj;
|
|
NullCheck(L_24);
|
|
List_1_Add_m60F1F5D817C83DDC11235FD5524B8667F4C314F9_inline(L_24, L_25, List_1_Add_m60F1F5D817C83DDC11235FD5524B8667F4C314F9_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ca_1_RemoveAll_m72374BA2B76106454D4EAAE5A95051C49FE492E6_gshared (ca_1_t69F2B6DD12EE2DCBE97A74A7AB8D9BBDB03E21A9* __this, const RuntimeMethod* method)
|
|
{
|
|
Enumerator_tBA05A5E5667F4985803E4513BA28CB1C20675858 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
KeyValuePair_2_tEC3F1168C60A6FD97F3C22BDA419BE8C1702DC6D V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
int32_t V_3 = 0;
|
|
{
|
|
List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* L_0 = __this->___jpk;
|
|
NullCheck(L_0);
|
|
List_1_Clear_m4F220B4D805F163DF05F6FB4538DBC9D1610D16E_inline(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
|
|
Dictionary_2_t61D2A8EA7B89354F704065B5DF8061AED7234EEA* L_1 = __this->___jpi;
|
|
NullCheck(L_1);
|
|
Enumerator_tBA05A5E5667F4985803E4513BA28CB1C20675858 L_2;
|
|
L_2 = Dictionary_2_GetEnumerator_m2015D76179B82797F754646E7AEF192621012B54(L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 18));
|
|
V_0 = L_2;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_003e:
|
|
{
|
|
Enumerator_Dispose_mA30C6E5D390F14D6D18ED2BFA5A2C46E02EF0052((&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 27));
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_0033_1;
|
|
}
|
|
|
|
IL_0019_1:
|
|
{
|
|
KeyValuePair_2_tEC3F1168C60A6FD97F3C22BDA419BE8C1702DC6D L_3;
|
|
L_3 = Enumerator_get_Current_m9796C8A95B3F258D10389BC3DD3AC475A890F02D_inline((&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
V_1 = L_3;
|
|
List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* L_4 = __this->___jpk;
|
|
int32_t L_5;
|
|
L_5 = KeyValuePair_2_get_Key_m5651DBB83D5F66416ABA39A4184FE40755EDFE95_inline((&V_1), il2cpp_rgctx_method(method->klass->rgctx_data, 23));
|
|
NullCheck(L_4);
|
|
List_1_Add_m809450298141D527D3A4FFAF77AE69D9B08CC17F_inline(L_4, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 25));
|
|
}
|
|
|
|
IL_0033_1:
|
|
{
|
|
bool L_6;
|
|
L_6 = Enumerator_MoveNext_m595F674CCD31C5329A2A9875ACA01B08F3B96F86((&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 26));
|
|
if (L_6)
|
|
{
|
|
goto IL_0019_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_004c;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* L_7 = __this->___jpk;
|
|
NullCheck(L_7);
|
|
Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B L_8;
|
|
L_8 = List_1_GetEnumerator_m87BBBF3FBB0A4EBF1C2940AA91570D7F1565F60D(L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
V_2 = L_8;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0074:
|
|
{
|
|
Enumerator_Dispose_m09AF8D2807410AAEB42E9FCC1A54299458EFEFF2((&V_2), il2cpp_rgctx_method(method->klass->rgctx_data, 34));
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_0069_1;
|
|
}
|
|
|
|
IL_005a_1:
|
|
{
|
|
int32_t L_9;
|
|
L_9 = Enumerator_get_Current_mB6A201CD563FEF33A6BDA75B83C7BF2AA36CD98C_inline((&V_2), il2cpp_rgctx_method(method->klass->rgctx_data, 30));
|
|
V_3 = L_9;
|
|
int32_t L_10 = V_3;
|
|
ca_1_RemoveKey_mA9E4CEF14F7981C82EFFD4065CC8C5503E81891F(__this, L_10, il2cpp_rgctx_method(method->klass->rgctx_data, 32));
|
|
}
|
|
|
|
IL_0069_1:
|
|
{
|
|
bool L_11;
|
|
L_11 = Enumerator_MoveNext_mCAE99D26B8B4D7880B37A70AC8DFD8C7AA4FCCE5((&V_2), il2cpp_rgctx_method(method->klass->rgctx_data, 33));
|
|
if (L_11)
|
|
{
|
|
goto IL_005a_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0082;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* L_12 = __this->___jpk;
|
|
NullCheck(L_12);
|
|
List_1_Clear_m4F220B4D805F163DF05F6FB4538DBC9D1610D16E_inline(L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ca_1__ctor_m82C159BCDF6968748171E8EE94BD2E88A7943A60_gshared (ca_1_t69F2B6DD12EE2DCBE97A74A7AB8D9BBDB03E21A9* __this, Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GameObject_t76FEDD663AB33C991A9C9A23129337651094216F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD6FA4ED6AC130CA41FADB0612CD51C6BDF4F3D62);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_0 = ___0_a;
|
|
__this->___jpl = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___jpl), (void*)L_0);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_1 = __this->___jpl;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_2;
|
|
L_2 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605((Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)L_1, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_2)
|
|
{
|
|
goto IL_0050;
|
|
}
|
|
}
|
|
{
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_3 = (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)il2cpp_codegen_object_new(GameObject_t76FEDD663AB33C991A9C9A23129337651094216F_il2cpp_TypeInfo_var);
|
|
GameObject__ctor_m37D512B05D292F954792225E6C6EEE95293A9B88(L_3, _stringLiteralD6FA4ED6AC130CA41FADB0612CD51C6BDF4F3D62, NULL);
|
|
NullCheck(L_3);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_4;
|
|
L_4 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_3, NULL);
|
|
__this->___jpl = L_4;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___jpl), (void*)L_4);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_5 = __this->___jpl;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_6;
|
|
L_6 = Vector3_get_zero_m0C1249C3F25B1C70EAD3CC8B31259975A457AE39_inline(NULL);
|
|
NullCheck(L_5);
|
|
Transform_set_localPosition_mDE1C997F7D79C0885210B7732B4BA50EE7D73134(L_5, L_6, NULL);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_7 = __this->___jpl;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_8;
|
|
L_8 = Vector3_get_zero_m0C1249C3F25B1C70EAD3CC8B31259975A457AE39_inline(NULL);
|
|
NullCheck(L_7);
|
|
Transform_set_localEulerAngles_m0458551662A1A51FDCA4C0417282B25D391661DF(L_7, L_8, NULL);
|
|
}
|
|
|
|
IL_0050:
|
|
{
|
|
Dictionary_2_t61D2A8EA7B89354F704065B5DF8061AED7234EEA* L_9 = (Dictionary_2_t61D2A8EA7B89354F704065B5DF8061AED7234EEA*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 1));
|
|
Dictionary_2__ctor_m523B71A7E0364EA0DF5E28345F6264C564D9013D(L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 36));
|
|
__this->___jpi = L_9;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___jpi), (void*)L_9);
|
|
Dictionary_2_t6E25435979095FF8317CE46D91CB6A310AFE529A* L_10 = (Dictionary_2_t6E25435979095FF8317CE46D91CB6A310AFE529A*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 7));
|
|
Dictionary_2__ctor_mE5A342FC7275867FF050722772E1CBE24996AD2B(L_10, il2cpp_rgctx_method(method->klass->rgctx_data, 37));
|
|
__this->___jpj = L_10;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___jpj), (void*)L_10);
|
|
List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* L_11 = (List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 8));
|
|
List_1__ctor_m7C3D0A1FD36704AFBBE4FD4E69204B809D3FC90E(L_11, il2cpp_rgctx_method(method->klass->rgctx_data, 38));
|
|
__this->___jpk = L_11;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___jpk), (void*)L_11);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ca_1_nwk_m7D86C9D657E9552AD38BF3B92A4DB0F2F3EBE10B_gshared (ca_1_t69F2B6DD12EE2DCBE97A74A7AB8D9BBDB03E21A9* __this, const RuntimeMethod* method)
|
|
{
|
|
Enumerator_tBA05A5E5667F4985803E4513BA28CB1C20675858 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
KeyValuePair_2_tEC3F1168C60A6FD97F3C22BDA419BE8C1702DC6D V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
int32_t V_3 = 0;
|
|
{
|
|
List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* L_0 = __this->___jpk;
|
|
NullCheck(L_0);
|
|
List_1_Clear_m4F220B4D805F163DF05F6FB4538DBC9D1610D16E_inline(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
|
|
Dictionary_2_t61D2A8EA7B89354F704065B5DF8061AED7234EEA* L_1 = __this->___jpi;
|
|
NullCheck(L_1);
|
|
Enumerator_tBA05A5E5667F4985803E4513BA28CB1C20675858 L_2;
|
|
L_2 = Dictionary_2_GetEnumerator_m2015D76179B82797F754646E7AEF192621012B54(L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 18));
|
|
V_0 = L_2;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_003e:
|
|
{
|
|
Enumerator_Dispose_mA30C6E5D390F14D6D18ED2BFA5A2C46E02EF0052((&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 27));
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_0033_1;
|
|
}
|
|
|
|
IL_0019_1:
|
|
{
|
|
KeyValuePair_2_tEC3F1168C60A6FD97F3C22BDA419BE8C1702DC6D L_3;
|
|
L_3 = Enumerator_get_Current_m9796C8A95B3F258D10389BC3DD3AC475A890F02D_inline((&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
V_1 = L_3;
|
|
List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* L_4 = __this->___jpk;
|
|
int32_t L_5;
|
|
L_5 = KeyValuePair_2_get_Key_m5651DBB83D5F66416ABA39A4184FE40755EDFE95_inline((&V_1), il2cpp_rgctx_method(method->klass->rgctx_data, 23));
|
|
NullCheck(L_4);
|
|
List_1_Add_m809450298141D527D3A4FFAF77AE69D9B08CC17F_inline(L_4, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 25));
|
|
}
|
|
|
|
IL_0033_1:
|
|
{
|
|
bool L_6;
|
|
L_6 = Enumerator_MoveNext_m595F674CCD31C5329A2A9875ACA01B08F3B96F86((&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 26));
|
|
if (L_6)
|
|
{
|
|
goto IL_0019_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_004c;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* L_7 = __this->___jpk;
|
|
NullCheck(L_7);
|
|
Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B L_8;
|
|
L_8 = List_1_GetEnumerator_m87BBBF3FBB0A4EBF1C2940AA91570D7F1565F60D(L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
V_2 = L_8;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0074:
|
|
{
|
|
Enumerator_Dispose_m09AF8D2807410AAEB42E9FCC1A54299458EFEFF2((&V_2), il2cpp_rgctx_method(method->klass->rgctx_data, 34));
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_0069_1;
|
|
}
|
|
|
|
IL_005a_1:
|
|
{
|
|
int32_t L_9;
|
|
L_9 = Enumerator_get_Current_mB6A201CD563FEF33A6BDA75B83C7BF2AA36CD98C_inline((&V_2), il2cpp_rgctx_method(method->klass->rgctx_data, 30));
|
|
V_3 = L_9;
|
|
int32_t L_10 = V_3;
|
|
ca_1_RemoveKey_mA9E4CEF14F7981C82EFFD4065CC8C5503E81891F(__this, L_10, il2cpp_rgctx_method(method->klass->rgctx_data, 32));
|
|
}
|
|
|
|
IL_0069_1:
|
|
{
|
|
bool L_11;
|
|
L_11 = Enumerator_MoveNext_mCAE99D26B8B4D7880B37A70AC8DFD8C7AA4FCCE5((&V_2), il2cpp_rgctx_method(method->klass->rgctx_data, 33));
|
|
if (L_11)
|
|
{
|
|
goto IL_005a_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0082;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* L_12 = __this->___jpk;
|
|
NullCheck(L_12);
|
|
List_1_Clear_m4F220B4D805F163DF05F6FB4538DBC9D1610D16E_inline(L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ca_1_fpx_mC4D6D1697C5390F7B8E6F7568AFEBFCA7CF34533_gshared (ca_1_t69F2B6DD12EE2DCBE97A74A7AB8D9BBDB03E21A9* __this, const RuntimeMethod* method)
|
|
{
|
|
Enumerator_tBA05A5E5667F4985803E4513BA28CB1C20675858 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
KeyValuePair_2_tEC3F1168C60A6FD97F3C22BDA419BE8C1702DC6D V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
int32_t V_3 = 0;
|
|
{
|
|
List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* L_0 = __this->___jpk;
|
|
NullCheck(L_0);
|
|
List_1_Clear_m4F220B4D805F163DF05F6FB4538DBC9D1610D16E_inline(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
|
|
Dictionary_2_t61D2A8EA7B89354F704065B5DF8061AED7234EEA* L_1 = __this->___jpi;
|
|
NullCheck(L_1);
|
|
Enumerator_tBA05A5E5667F4985803E4513BA28CB1C20675858 L_2;
|
|
L_2 = Dictionary_2_GetEnumerator_m2015D76179B82797F754646E7AEF192621012B54(L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 18));
|
|
V_0 = L_2;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_003e:
|
|
{
|
|
Enumerator_Dispose_mA30C6E5D390F14D6D18ED2BFA5A2C46E02EF0052((&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 27));
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_0033_1;
|
|
}
|
|
|
|
IL_0019_1:
|
|
{
|
|
KeyValuePair_2_tEC3F1168C60A6FD97F3C22BDA419BE8C1702DC6D L_3;
|
|
L_3 = Enumerator_get_Current_m9796C8A95B3F258D10389BC3DD3AC475A890F02D_inline((&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
V_1 = L_3;
|
|
List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* L_4 = __this->___jpk;
|
|
int32_t L_5;
|
|
L_5 = KeyValuePair_2_get_Key_m5651DBB83D5F66416ABA39A4184FE40755EDFE95_inline((&V_1), il2cpp_rgctx_method(method->klass->rgctx_data, 23));
|
|
NullCheck(L_4);
|
|
List_1_Add_m809450298141D527D3A4FFAF77AE69D9B08CC17F_inline(L_4, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 25));
|
|
}
|
|
|
|
IL_0033_1:
|
|
{
|
|
bool L_6;
|
|
L_6 = Enumerator_MoveNext_m595F674CCD31C5329A2A9875ACA01B08F3B96F86((&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 26));
|
|
if (L_6)
|
|
{
|
|
goto IL_0019_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_004c;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* L_7 = __this->___jpk;
|
|
NullCheck(L_7);
|
|
Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B L_8;
|
|
L_8 = List_1_GetEnumerator_m87BBBF3FBB0A4EBF1C2940AA91570D7F1565F60D(L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
V_2 = L_8;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0074:
|
|
{
|
|
Enumerator_Dispose_m09AF8D2807410AAEB42E9FCC1A54299458EFEFF2((&V_2), il2cpp_rgctx_method(method->klass->rgctx_data, 34));
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_0069_1;
|
|
}
|
|
|
|
IL_005a_1:
|
|
{
|
|
int32_t L_9;
|
|
L_9 = Enumerator_get_Current_mB6A201CD563FEF33A6BDA75B83C7BF2AA36CD98C_inline((&V_2), il2cpp_rgctx_method(method->klass->rgctx_data, 30));
|
|
V_3 = L_9;
|
|
int32_t L_10 = V_3;
|
|
ca_1_RemoveKey_mA9E4CEF14F7981C82EFFD4065CC8C5503E81891F(__this, L_10, il2cpp_rgctx_method(method->klass->rgctx_data, 32));
|
|
}
|
|
|
|
IL_0069_1:
|
|
{
|
|
bool L_11;
|
|
L_11 = Enumerator_MoveNext_mCAE99D26B8B4D7880B37A70AC8DFD8C7AA4FCCE5((&V_2), il2cpp_rgctx_method(method->klass->rgctx_data, 33));
|
|
if (L_11)
|
|
{
|
|
goto IL_005a_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0082;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* L_12 = __this->___jpk;
|
|
NullCheck(L_12);
|
|
List_1_Clear_m4F220B4D805F163DF05F6FB4538DBC9D1610D16E_inline(L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ca_1_RemoveKey_m0E1961E3A4B28E88150A9B9FF47C2FF8BABAC03A_gshared (ca_1_tA2B59207DE0BE10ECDFF308C653C2153E7BA2F95* __this, Il2CppFullySharedGenericStruct ___0_key, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_mAEB2333688211862F3BF025DED14A07DF2AB6862_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m3056C0403652CA8364963A1CDE5D5EACF19CB5B8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m0CEFF9A8B2B0E57C5DDBA1134553DEBC37719CED_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GameObject_t76FEDD663AB33C991A9C9A23129337651094216F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m51249A9DD3B29478801AC004DEA026A63D4A6D9B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_mA6D8F51281EF3C4183058B42C1930E0E885543EF_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
const uint32_t SizeOf_b_t1F94FE17B102983C2A21FF64EEF1ED936B99A921 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 2));
|
|
const Il2CppFullySharedGenericStruct L_1 = alloca(SizeOf_b_t1F94FE17B102983C2A21FF64EEF1ED936B99A921);
|
|
const Il2CppFullySharedGenericStruct L_4 = L_1;
|
|
const Il2CppFullySharedGenericStruct L_18 = L_1;
|
|
const Il2CppFullySharedGenericStruct L_21 = alloca(SizeOf_b_t1F94FE17B102983C2A21FF64EEF1ED936B99A921);
|
|
Enumerator_tE4F8BFD8BC4B29A1F907A500BE1A39F6AEECF80E V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* V_1 = NULL;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* V_2 = NULL;
|
|
{
|
|
Dictionary_2_tC791A5AC3BD371367696A57CAD347C5CE3415A76* L_0 = __this->___jpi;
|
|
il2cpp_codegen_memcpy(L_1, ___0_key, SizeOf_b_t1F94FE17B102983C2A21FF64EEF1ED936B99A921);
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = InvokerFuncInvoker1< bool, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)), il2cpp_rgctx_method(method->klass->rgctx_data, 3), L_0, L_1);
|
|
if (!L_2)
|
|
{
|
|
goto IL_008c;
|
|
}
|
|
}
|
|
{
|
|
Dictionary_2_tC791A5AC3BD371367696A57CAD347C5CE3415A76* L_3 = __this->___jpi;
|
|
il2cpp_codegen_memcpy(L_4, ___0_key, SizeOf_b_t1F94FE17B102983C2A21FF64EEF1ED936B99A921);
|
|
NullCheck(L_3);
|
|
List_1_t9A2E2984B23260AECDFA90CEB1F2887075FA4DF3* L_5;
|
|
L_5 = InvokerFuncInvoker1< List_1_t9A2E2984B23260AECDFA90CEB1F2887075FA4DF3*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 4)), il2cpp_rgctx_method(method->klass->rgctx_data, 4), L_3, L_4);
|
|
NullCheck(L_5);
|
|
Enumerator_tE4F8BFD8BC4B29A1F907A500BE1A39F6AEECF80E L_6;
|
|
L_6 = List_1_GetEnumerator_mA6D8F51281EF3C4183058B42C1930E0E885543EF(L_5, List_1_GetEnumerator_mA6D8F51281EF3C4183058B42C1930E0E885543EF_RuntimeMethod_var);
|
|
V_0 = L_6;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0060:
|
|
{
|
|
Enumerator_Dispose_mAEB2333688211862F3BF025DED14A07DF2AB6862((&V_0), Enumerator_Dispose_mAEB2333688211862F3BF025DED14A07DF2AB6862_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_0055_1;
|
|
}
|
|
|
|
IL_0022_1:
|
|
{
|
|
Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* L_7;
|
|
L_7 = Enumerator_get_Current_m0CEFF9A8B2B0E57C5DDBA1134553DEBC37719CED_inline((&V_0), Enumerator_get_Current_m0CEFF9A8B2B0E57C5DDBA1134553DEBC37719CED_RuntimeMethod_var);
|
|
V_1 = L_7;
|
|
Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* L_8 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_9;
|
|
L_9 = Object_op_Inequality_mD0BE578448EAA61948F25C32F8DD55AB1F778602(L_8, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_9)
|
|
{
|
|
goto IL_0055_1;
|
|
}
|
|
}
|
|
{
|
|
Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* L_10 = V_1;
|
|
V_2 = ((GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)IsInstSealed((RuntimeObject*)L_10, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F_il2cpp_TypeInfo_var));
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_11 = V_2;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_12;
|
|
L_12 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605((Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)L_11, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_12)
|
|
{
|
|
goto IL_004f_1;
|
|
}
|
|
}
|
|
{
|
|
Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* L_13 = V_1;
|
|
NullCheck(((Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3*)IsInstClass((RuntimeObject*)L_13, Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3_il2cpp_TypeInfo_var)));
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_14;
|
|
L_14 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(((Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3*)IsInstClass((RuntimeObject*)L_13, Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3_il2cpp_TypeInfo_var)), NULL);
|
|
V_2 = L_14;
|
|
}
|
|
|
|
IL_004f_1:
|
|
{
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_15 = V_2;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
Object_Destroy_mE97D0A766419A81296E8D4E5C23D01D3FE91ACBB((Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)L_15, NULL);
|
|
}
|
|
|
|
IL_0055_1:
|
|
{
|
|
bool L_16;
|
|
L_16 = Enumerator_MoveNext_m3056C0403652CA8364963A1CDE5D5EACF19CB5B8((&V_0), Enumerator_MoveNext_m3056C0403652CA8364963A1CDE5D5EACF19CB5B8_RuntimeMethod_var);
|
|
if (L_16)
|
|
{
|
|
goto IL_0022_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_006e;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_006e:
|
|
{
|
|
Dictionary_2_tC791A5AC3BD371367696A57CAD347C5CE3415A76* L_17 = __this->___jpi;
|
|
il2cpp_codegen_memcpy(L_18, ___0_key, SizeOf_b_t1F94FE17B102983C2A21FF64EEF1ED936B99A921);
|
|
NullCheck(L_17);
|
|
List_1_t9A2E2984B23260AECDFA90CEB1F2887075FA4DF3* L_19;
|
|
L_19 = InvokerFuncInvoker1< List_1_t9A2E2984B23260AECDFA90CEB1F2887075FA4DF3*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 4)), il2cpp_rgctx_method(method->klass->rgctx_data, 4), L_17, L_18);
|
|
NullCheck(L_19);
|
|
List_1_Clear_m51249A9DD3B29478801AC004DEA026A63D4A6D9B_inline(L_19, List_1_Clear_m51249A9DD3B29478801AC004DEA026A63D4A6D9B_RuntimeMethod_var);
|
|
Dictionary_2_tC791A5AC3BD371367696A57CAD347C5CE3415A76* L_20 = __this->___jpi;
|
|
il2cpp_codegen_memcpy(L_21, ___0_key, SizeOf_b_t1F94FE17B102983C2A21FF64EEF1ED936B99A921);
|
|
NullCheck(L_20);
|
|
bool L_22;
|
|
L_22 = InvokerFuncInvoker1< bool, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 5)), il2cpp_rgctx_method(method->klass->rgctx_data, 5), L_20, L_21);
|
|
}
|
|
|
|
IL_008c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ca_1_Dispose_mB736399954BA4725724AC33ADD6BDD4B3D3EF015_gshared (ca_1_tA2B59207DE0BE10ECDFF308C653C2153E7BA2F95* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
(( void (*) (ca_1_tA2B59207DE0BE10ECDFF308C653C2153E7BA2F95*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 6)))(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 6));
|
|
__this->___jpi = (Dictionary_2_tC791A5AC3BD371367696A57CAD347C5CE3415A76*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___jpi), (void*)(Dictionary_2_tC791A5AC3BD371367696A57CAD347C5CE3415A76*)NULL);
|
|
__this->___jpj = (Dictionary_2_tE40F16D27D28D881AE13B622B8CAC08E500FD3DB*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___jpj), (void*)(Dictionary_2_tE40F16D27D28D881AE13B622B8CAC08E500FD3DB*)NULL);
|
|
__this->___jpk = (List_1_tE5211AFE92BF26309D7C5814A29544E9EF496FE4*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___jpk), (void*)(List_1_tE5211AFE92BF26309D7C5814A29544E9EF496FE4*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ca_1_dtr_m348A68E8BDAEF90271F99C0C604073496287C05C_gshared (ca_1_tA2B59207DE0BE10ECDFF308C653C2153E7BA2F95* __this, Il2CppFullySharedGenericStruct ___0_a, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GameObject_t76FEDD663AB33C991A9C9A23129337651094216F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m1B0135DE2C4A4BCA4820D2FC9E060ED224FC24C0_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t9A2E2984B23260AECDFA90CEB1F2887075FA4DF3_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
const uint32_t SizeOf_b_t1F94FE17B102983C2A21FF64EEF1ED936B99A921 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 2));
|
|
void* L_3 = alloca(Il2CppFakeBoxBuffer::SizeNeededFor(il2cpp_rgctx_data(method->klass->rgctx_data, 2)));
|
|
const Il2CppFullySharedGenericStruct L_1 = alloca(SizeOf_b_t1F94FE17B102983C2A21FF64EEF1ED936B99A921);
|
|
const Il2CppFullySharedGenericStruct L_16 = alloca(SizeOf_b_t1F94FE17B102983C2A21FF64EEF1ED936B99A921);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* V_0 = NULL;
|
|
{
|
|
Dictionary_2_tC791A5AC3BD371367696A57CAD347C5CE3415A76* L_0 = __this->___jpi;
|
|
il2cpp_codegen_memcpy(L_1, ___0_a, SizeOf_b_t1F94FE17B102983C2A21FF64EEF1ED936B99A921);
|
|
List_1_t9A2E2984B23260AECDFA90CEB1F2887075FA4DF3* L_2 = (List_1_t9A2E2984B23260AECDFA90CEB1F2887075FA4DF3*)il2cpp_codegen_object_new(List_1_t9A2E2984B23260AECDFA90CEB1F2887075FA4DF3_il2cpp_TypeInfo_var);
|
|
List_1__ctor_m1B0135DE2C4A4BCA4820D2FC9E060ED224FC24C0(L_2, List_1__ctor_m1B0135DE2C4A4BCA4820D2FC9E060ED224FC24C0_RuntimeMethod_var);
|
|
NullCheck(L_0);
|
|
InvokerActionInvoker2< Il2CppFullySharedGenericStruct, List_1_t9A2E2984B23260AECDFA90CEB1F2887075FA4DF3* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 9)), il2cpp_rgctx_method(method->klass->rgctx_data, 9), L_0, L_1, L_2);
|
|
String_t* L_4;
|
|
L_4 = ConstrainedFuncInvoker0< String_t* >::Invoke(il2cpp_rgctx_data(method->klass->rgctx_data, 2), il2cpp_rgctx_method(method->klass->rgctx_data, 10), L_3, (void*)(Il2CppFullySharedGenericStruct*)___0_a);
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_5 = (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)il2cpp_codegen_object_new(GameObject_t76FEDD663AB33C991A9C9A23129337651094216F_il2cpp_TypeInfo_var);
|
|
GameObject__ctor_m37D512B05D292F954792225E6C6EEE95293A9B88(L_5, L_4, NULL);
|
|
NullCheck(L_5);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_6;
|
|
L_6 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_5, NULL);
|
|
V_0 = L_6;
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_7 = V_0;
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_8 = __this->___jpl;
|
|
NullCheck(L_7);
|
|
Transform_SetParent_m6677538B60246D958DD91F931C50F969CCBB5250(L_7, L_8, NULL);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_9 = V_0;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_10;
|
|
L_10 = Vector3_get_one_mC9B289F1E15C42C597180C9FE6FB492495B51D02_inline(NULL);
|
|
NullCheck(L_9);
|
|
Transform_set_localScale_mBA79E811BAF6C47B80FF76414C12B47B3CD03633(L_9, L_10, NULL);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_11 = V_0;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_12;
|
|
L_12 = Vector3_get_zero_m0C1249C3F25B1C70EAD3CC8B31259975A457AE39_inline(NULL);
|
|
NullCheck(L_11);
|
|
Transform_set_localPosition_mDE1C997F7D79C0885210B7732B4BA50EE7D73134(L_11, L_12, NULL);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_13 = V_0;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_14;
|
|
L_14 = Vector3_get_zero_m0C1249C3F25B1C70EAD3CC8B31259975A457AE39_inline(NULL);
|
|
NullCheck(L_13);
|
|
Transform_set_localEulerAngles_m0458551662A1A51FDCA4C0417282B25D391661DF(L_13, L_14, NULL);
|
|
Dictionary_2_tE40F16D27D28D881AE13B622B8CAC08E500FD3DB* L_15 = __this->___jpj;
|
|
il2cpp_codegen_memcpy(L_16, ___0_a, SizeOf_b_t1F94FE17B102983C2A21FF64EEF1ED936B99A921);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_17 = V_0;
|
|
NullCheck((Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3*)L_17);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_18;
|
|
L_18 = Component_get_transform_m2919A1D81931E6932C7F06D4C2F0AB8DDA9A5371((Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3*)L_17, NULL);
|
|
NullCheck(L_15);
|
|
InvokerActionInvoker2< Il2CppFullySharedGenericStruct, Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 11)), il2cpp_rgctx_method(method->klass->rgctx_data, 11), L_15, L_16, L_18);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ca_1_RecObject_m293F764E12776B0065024C8276496CA220612BBF_gshared (ca_1_tA2B59207DE0BE10ECDFF308C653C2153E7BA2F95* __this, Il2CppFullySharedGenericStruct ___0_key, Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* ___1_obj, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GameObject_t76FEDD663AB33C991A9C9A23129337651094216F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m60F1F5D817C83DDC11235FD5524B8667F4C314F9_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m1B0135DE2C4A4BCA4820D2FC9E060ED224FC24C0_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t9A2E2984B23260AECDFA90CEB1F2887075FA4DF3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
const uint32_t SizeOf_b_t1F94FE17B102983C2A21FF64EEF1ED936B99A921 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 2));
|
|
const Il2CppFullySharedGenericStruct L_3 = alloca(SizeOf_b_t1F94FE17B102983C2A21FF64EEF1ED936B99A921);
|
|
const Il2CppFullySharedGenericStruct L_6 = L_3;
|
|
const Il2CppFullySharedGenericStruct L_13 = L_3;
|
|
const Il2CppFullySharedGenericStruct L_20 = L_3;
|
|
const Il2CppFullySharedGenericStruct L_23 = L_3;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* V_0 = NULL;
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* V_1 = NULL;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* G_B6_0 = NULL;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* G_B5_0 = NULL;
|
|
Action_2_tC12DCAB4262F42CA0963501648E8EFBB3BD2C6B9* G_B10_0 = NULL;
|
|
Action_2_tC12DCAB4262F42CA0963501648E8EFBB3BD2C6B9* G_B9_0 = NULL;
|
|
{
|
|
Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* L_0 = ___1_obj;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_1;
|
|
L_1 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_0, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
Dictionary_2_tC791A5AC3BD371367696A57CAD347C5CE3415A76* L_2 = __this->___jpi;
|
|
il2cpp_codegen_memcpy(L_3, ___0_key, SizeOf_b_t1F94FE17B102983C2A21FF64EEF1ED936B99A921);
|
|
NullCheck(L_2);
|
|
bool L_4;
|
|
L_4 = InvokerFuncInvoker1< bool, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)), il2cpp_rgctx_method(method->klass->rgctx_data, 3), L_2, L_3);
|
|
if (L_4)
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
Dictionary_2_tC791A5AC3BD371367696A57CAD347C5CE3415A76* L_5 = __this->___jpi;
|
|
il2cpp_codegen_memcpy(L_6, ___0_key, SizeOf_b_t1F94FE17B102983C2A21FF64EEF1ED936B99A921);
|
|
List_1_t9A2E2984B23260AECDFA90CEB1F2887075FA4DF3* L_7 = (List_1_t9A2E2984B23260AECDFA90CEB1F2887075FA4DF3*)il2cpp_codegen_object_new(List_1_t9A2E2984B23260AECDFA90CEB1F2887075FA4DF3_il2cpp_TypeInfo_var);
|
|
List_1__ctor_m1B0135DE2C4A4BCA4820D2FC9E060ED224FC24C0(L_7, List_1__ctor_m1B0135DE2C4A4BCA4820D2FC9E060ED224FC24C0_RuntimeMethod_var);
|
|
NullCheck(L_5);
|
|
InvokerActionInvoker2< Il2CppFullySharedGenericStruct, List_1_t9A2E2984B23260AECDFA90CEB1F2887075FA4DF3* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 9)), il2cpp_rgctx_method(method->klass->rgctx_data, 9), L_5, L_6, L_7);
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* L_8 = ___1_obj;
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_9 = ((GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)IsInstSealed((RuntimeObject*)L_8, GameObject_t76FEDD663AB33C991A9C9A23129337651094216F_il2cpp_TypeInfo_var));
|
|
if (L_9)
|
|
{
|
|
G_B6_0 = L_9;
|
|
goto IL_003e;
|
|
}
|
|
G_B5_0 = L_9;
|
|
}
|
|
{
|
|
Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* L_10 = ___1_obj;
|
|
NullCheck(((Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3*)IsInstClass((RuntimeObject*)L_10, Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3_il2cpp_TypeInfo_var)));
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_11;
|
|
L_11 = Component_get_gameObject_m57AEFBB14DB39EC476F740BA000E170355DE691B(((Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3*)IsInstClass((RuntimeObject*)L_10, Component_t39FBE53E5EFCF4409111FB22C15FF73717632EC3_il2cpp_TypeInfo_var)), NULL);
|
|
G_B6_0 = L_11;
|
|
}
|
|
|
|
IL_003e:
|
|
{
|
|
V_0 = G_B6_0;
|
|
Dictionary_2_tE40F16D27D28D881AE13B622B8CAC08E500FD3DB* L_12 = __this->___jpj;
|
|
il2cpp_codegen_memcpy(L_13, ___0_key, SizeOf_b_t1F94FE17B102983C2A21FF64EEF1ED936B99A921);
|
|
NullCheck(L_12);
|
|
bool L_14;
|
|
L_14 = InvokerFuncInvoker2< bool, Il2CppFullySharedGenericStruct, Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1** >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 14)), il2cpp_rgctx_method(method->klass->rgctx_data, 14), L_12, L_13, (&V_1));
|
|
if (!L_14)
|
|
{
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
{
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_15 = V_0;
|
|
NullCheck(L_15);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_16;
|
|
L_16 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_15, NULL);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_17 = V_1;
|
|
NullCheck(L_16);
|
|
Transform_set_parent_m9BD5E563B539DD5BEC342736B03F97B38A243234(L_16, L_17, NULL);
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
Action_2_tC12DCAB4262F42CA0963501648E8EFBB3BD2C6B9* L_18 = __this->___RecObjFunc;
|
|
Action_2_tC12DCAB4262F42CA0963501648E8EFBB3BD2C6B9* L_19 = L_18;
|
|
if (L_19)
|
|
{
|
|
G_B10_0 = L_19;
|
|
goto IL_0067;
|
|
}
|
|
G_B9_0 = L_19;
|
|
}
|
|
{
|
|
goto IL_006e;
|
|
}
|
|
|
|
IL_0067:
|
|
{
|
|
il2cpp_codegen_memcpy(L_20, ___0_key, SizeOf_b_t1F94FE17B102983C2A21FF64EEF1ED936B99A921);
|
|
Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* L_21 = ___1_obj;
|
|
NullCheck(G_B10_0);
|
|
InvokerActionInvoker2< Il2CppFullySharedGenericStruct, Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 16)), il2cpp_rgctx_method(method->klass->rgctx_data, 16), G_B10_0, L_20, L_21);
|
|
}
|
|
|
|
IL_006e:
|
|
{
|
|
Dictionary_2_tC791A5AC3BD371367696A57CAD347C5CE3415A76* L_22 = __this->___jpi;
|
|
il2cpp_codegen_memcpy(L_23, ___0_key, SizeOf_b_t1F94FE17B102983C2A21FF64EEF1ED936B99A921);
|
|
NullCheck(L_22);
|
|
List_1_t9A2E2984B23260AECDFA90CEB1F2887075FA4DF3* L_24;
|
|
L_24 = InvokerFuncInvoker1< List_1_t9A2E2984B23260AECDFA90CEB1F2887075FA4DF3*, Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 4)), il2cpp_rgctx_method(method->klass->rgctx_data, 4), L_22, L_23);
|
|
Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C* L_25 = ___1_obj;
|
|
NullCheck(L_24);
|
|
List_1_Add_m60F1F5D817C83DDC11235FD5524B8667F4C314F9_inline(L_24, L_25, List_1_Add_m60F1F5D817C83DDC11235FD5524B8667F4C314F9_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ca_1_RemoveAll_mBDEEFCF4AA92D90026BABADF49EB26056F46653D_gshared (ca_1_tA2B59207DE0BE10ECDFF308C653C2153E7BA2F95* __this, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_Enumerator_t3C5B344B2AD916BBF0192E0E3D2DC9030E98DAEC = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 19));
|
|
const uint32_t SizeOf_KeyValuePair_2_t8939F75DAAE4185F69A6118BB112F25AC9C6DE45 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 22));
|
|
const uint32_t SizeOf_Enumerator_t929CFF30BEE2FC1836E311F687672633E28EFA06 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 29));
|
|
const uint32_t SizeOf_b_t1F94FE17B102983C2A21FF64EEF1ED936B99A921 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 2));
|
|
void* L_3 = alloca(Il2CppFakeBoxBuffer::SizeNeededFor(il2cpp_rgctx_data(method->klass->rgctx_data, 19)));
|
|
void* L_10 = alloca(Il2CppFakeBoxBuffer::SizeNeededFor(il2cpp_rgctx_data(method->klass->rgctx_data, 29)));
|
|
const Il2CppFullySharedGenericStruct L_6 = alloca(SizeOf_b_t1F94FE17B102983C2A21FF64EEF1ED936B99A921);
|
|
const Il2CppFullySharedGenericStruct L_11 = L_6;
|
|
const Il2CppFullySharedGenericStruct L_12 = alloca(SizeOf_b_t1F94FE17B102983C2A21FF64EEF1ED936B99A921);
|
|
const Enumerator_t81B429DC3FEA3983A4D1E6E07804925CB576CD3B L_9 = alloca(SizeOf_Enumerator_t929CFF30BEE2FC1836E311F687672633E28EFA06);
|
|
const Enumerator_tCB72A813DFEE772F0A8C597C9BACBDBC84B493F0 L_2 = alloca(SizeOf_Enumerator_t3C5B344B2AD916BBF0192E0E3D2DC9030E98DAEC);
|
|
const KeyValuePair_2_t06C4C4F1E9511A11AC5CAA355D5F3FD0E45663E2 L_4 = alloca(SizeOf_KeyValuePair_2_t8939F75DAAE4185F69A6118BB112F25AC9C6DE45);
|
|
Enumerator_tCB72A813DFEE772F0A8C597C9BACBDBC84B493F0 V_0 = alloca(SizeOf_Enumerator_t3C5B344B2AD916BBF0192E0E3D2DC9030E98DAEC);
|
|
memset(V_0, 0, SizeOf_Enumerator_t3C5B344B2AD916BBF0192E0E3D2DC9030E98DAEC);
|
|
KeyValuePair_2_t06C4C4F1E9511A11AC5CAA355D5F3FD0E45663E2 V_1 = alloca(SizeOf_KeyValuePair_2_t8939F75DAAE4185F69A6118BB112F25AC9C6DE45);
|
|
memset(V_1, 0, SizeOf_KeyValuePair_2_t8939F75DAAE4185F69A6118BB112F25AC9C6DE45);
|
|
Enumerator_t81B429DC3FEA3983A4D1E6E07804925CB576CD3B V_2 = alloca(SizeOf_Enumerator_t929CFF30BEE2FC1836E311F687672633E28EFA06);
|
|
memset(V_2, 0, SizeOf_Enumerator_t929CFF30BEE2FC1836E311F687672633E28EFA06);
|
|
Il2CppFullySharedGenericStruct V_3 = alloca(SizeOf_b_t1F94FE17B102983C2A21FF64EEF1ED936B99A921);
|
|
memset(V_3, 0, SizeOf_b_t1F94FE17B102983C2A21FF64EEF1ED936B99A921);
|
|
{
|
|
List_1_tE5211AFE92BF26309D7C5814A29544E9EF496FE4* L_0 = __this->___jpk;
|
|
NullCheck(L_0);
|
|
(( void (*) (List_1_tE5211AFE92BF26309D7C5814A29544E9EF496FE4*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 17)))(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
|
|
Dictionary_2_tC791A5AC3BD371367696A57CAD347C5CE3415A76* L_1 = __this->___jpi;
|
|
NullCheck(L_1);
|
|
InvokerActionInvoker1< Enumerator_tCB72A813DFEE772F0A8C597C9BACBDBC84B493F0* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 18)), il2cpp_rgctx_method(method->klass->rgctx_data, 18), L_1, (Enumerator_tCB72A813DFEE772F0A8C597C9BACBDBC84B493F0*)L_2);
|
|
il2cpp_codegen_memcpy(V_0, L_2, SizeOf_Enumerator_t3C5B344B2AD916BBF0192E0E3D2DC9030E98DAEC);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_003e:
|
|
{
|
|
ConstrainedActionInvoker0::Invoke(il2cpp_rgctx_data(method->klass->rgctx_data, 19), il2cpp_rgctx_method(method->klass->rgctx_data, 27), L_3, (void*)(Enumerator_tCB72A813DFEE772F0A8C597C9BACBDBC84B493F0*)V_0);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_0033_1;
|
|
}
|
|
|
|
IL_0019_1:
|
|
{
|
|
InvokerActionInvoker1< KeyValuePair_2_t06C4C4F1E9511A11AC5CAA355D5F3FD0E45663E2* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 20)), il2cpp_rgctx_method(method->klass->rgctx_data, 20), (Enumerator_tCB72A813DFEE772F0A8C597C9BACBDBC84B493F0*)V_0, (KeyValuePair_2_t06C4C4F1E9511A11AC5CAA355D5F3FD0E45663E2*)L_4);
|
|
il2cpp_codegen_memcpy(V_1, L_4, SizeOf_KeyValuePair_2_t8939F75DAAE4185F69A6118BB112F25AC9C6DE45);
|
|
List_1_tE5211AFE92BF26309D7C5814A29544E9EF496FE4* L_5 = __this->___jpk;
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericStruct* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 23)), il2cpp_rgctx_method(method->klass->rgctx_data, 23), (KeyValuePair_2_t06C4C4F1E9511A11AC5CAA355D5F3FD0E45663E2*)V_1, (Il2CppFullySharedGenericStruct*)L_6);
|
|
NullCheck(L_5);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 25)), il2cpp_rgctx_method(method->klass->rgctx_data, 25), L_5, L_6);
|
|
}
|
|
|
|
IL_0033_1:
|
|
{
|
|
bool L_7;
|
|
L_7 = (( bool (*) (Enumerator_tCB72A813DFEE772F0A8C597C9BACBDBC84B493F0*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 26)))((Enumerator_tCB72A813DFEE772F0A8C597C9BACBDBC84B493F0*)V_0, il2cpp_rgctx_method(method->klass->rgctx_data, 26));
|
|
if (L_7)
|
|
{
|
|
goto IL_0019_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_004c;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
List_1_tE5211AFE92BF26309D7C5814A29544E9EF496FE4* L_8 = __this->___jpk;
|
|
NullCheck(L_8);
|
|
InvokerActionInvoker1< Enumerator_t81B429DC3FEA3983A4D1E6E07804925CB576CD3B* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 28)), il2cpp_rgctx_method(method->klass->rgctx_data, 28), L_8, (Enumerator_t81B429DC3FEA3983A4D1E6E07804925CB576CD3B*)L_9);
|
|
il2cpp_codegen_memcpy(V_2, L_9, SizeOf_Enumerator_t929CFF30BEE2FC1836E311F687672633E28EFA06);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0074:
|
|
{
|
|
ConstrainedActionInvoker0::Invoke(il2cpp_rgctx_data(method->klass->rgctx_data, 29), il2cpp_rgctx_method(method->klass->rgctx_data, 34), L_10, (void*)(Enumerator_t81B429DC3FEA3983A4D1E6E07804925CB576CD3B*)V_2);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_0069_1;
|
|
}
|
|
|
|
IL_005a_1:
|
|
{
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericStruct* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 30)), il2cpp_rgctx_method(method->klass->rgctx_data, 30), (Enumerator_t81B429DC3FEA3983A4D1E6E07804925CB576CD3B*)V_2, (Il2CppFullySharedGenericStruct*)L_11);
|
|
il2cpp_codegen_memcpy(V_3, L_11, SizeOf_b_t1F94FE17B102983C2A21FF64EEF1ED936B99A921);
|
|
il2cpp_codegen_memcpy(L_12, V_3, SizeOf_b_t1F94FE17B102983C2A21FF64EEF1ED936B99A921);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 32)), il2cpp_rgctx_method(method->klass->rgctx_data, 32), __this, L_12);
|
|
}
|
|
|
|
IL_0069_1:
|
|
{
|
|
bool L_13;
|
|
L_13 = (( bool (*) (Enumerator_t81B429DC3FEA3983A4D1E6E07804925CB576CD3B*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 33)))((Enumerator_t81B429DC3FEA3983A4D1E6E07804925CB576CD3B*)V_2, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
|
|
if (L_13)
|
|
{
|
|
goto IL_005a_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0082;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
List_1_tE5211AFE92BF26309D7C5814A29544E9EF496FE4* L_14 = __this->___jpk;
|
|
NullCheck(L_14);
|
|
(( void (*) (List_1_tE5211AFE92BF26309D7C5814A29544E9EF496FE4*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 17)))(L_14, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ca_1__ctor_m2CBD26896A25708157490B7F391E709C99885094_gshared (ca_1_tA2B59207DE0BE10ECDFF308C653C2153E7BA2F95* __this, Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GameObject_t76FEDD663AB33C991A9C9A23129337651094216F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD6FA4ED6AC130CA41FADB0612CD51C6BDF4F3D62);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_0 = ___0_a;
|
|
__this->___jpl = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___jpl), (void*)L_0);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_1 = __this->___jpl;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_2;
|
|
L_2 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605((Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)L_1, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
if (!L_2)
|
|
{
|
|
goto IL_0050;
|
|
}
|
|
}
|
|
{
|
|
GameObject_t76FEDD663AB33C991A9C9A23129337651094216F* L_3 = (GameObject_t76FEDD663AB33C991A9C9A23129337651094216F*)il2cpp_codegen_object_new(GameObject_t76FEDD663AB33C991A9C9A23129337651094216F_il2cpp_TypeInfo_var);
|
|
GameObject__ctor_m37D512B05D292F954792225E6C6EEE95293A9B88(L_3, _stringLiteralD6FA4ED6AC130CA41FADB0612CD51C6BDF4F3D62, NULL);
|
|
NullCheck(L_3);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_4;
|
|
L_4 = GameObject_get_transform_m0BC10ADFA1632166AE5544BDF9038A2650C2AE56(L_3, NULL);
|
|
__this->___jpl = L_4;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___jpl), (void*)L_4);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_5 = __this->___jpl;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_6;
|
|
L_6 = Vector3_get_zero_m0C1249C3F25B1C70EAD3CC8B31259975A457AE39_inline(NULL);
|
|
NullCheck(L_5);
|
|
Transform_set_localPosition_mDE1C997F7D79C0885210B7732B4BA50EE7D73134(L_5, L_6, NULL);
|
|
Transform_tB27202C6F4E36D225EE28A13E4D662BF99785DB1* L_7 = __this->___jpl;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_8;
|
|
L_8 = Vector3_get_zero_m0C1249C3F25B1C70EAD3CC8B31259975A457AE39_inline(NULL);
|
|
NullCheck(L_7);
|
|
Transform_set_localEulerAngles_m0458551662A1A51FDCA4C0417282B25D391661DF(L_7, L_8, NULL);
|
|
}
|
|
|
|
IL_0050:
|
|
{
|
|
Dictionary_2_tC791A5AC3BD371367696A57CAD347C5CE3415A76* L_9 = (Dictionary_2_tC791A5AC3BD371367696A57CAD347C5CE3415A76*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 1));
|
|
(( void (*) (Dictionary_2_tC791A5AC3BD371367696A57CAD347C5CE3415A76*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 36)))(L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 36));
|
|
__this->___jpi = L_9;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___jpi), (void*)L_9);
|
|
Dictionary_2_tE40F16D27D28D881AE13B622B8CAC08E500FD3DB* L_10 = (Dictionary_2_tE40F16D27D28D881AE13B622B8CAC08E500FD3DB*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 7));
|
|
(( void (*) (Dictionary_2_tE40F16D27D28D881AE13B622B8CAC08E500FD3DB*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 37)))(L_10, il2cpp_rgctx_method(method->klass->rgctx_data, 37));
|
|
__this->___jpj = L_10;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___jpj), (void*)L_10);
|
|
List_1_tE5211AFE92BF26309D7C5814A29544E9EF496FE4* L_11 = (List_1_tE5211AFE92BF26309D7C5814A29544E9EF496FE4*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 8));
|
|
(( void (*) (List_1_tE5211AFE92BF26309D7C5814A29544E9EF496FE4*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 38)))(L_11, il2cpp_rgctx_method(method->klass->rgctx_data, 38));
|
|
__this->___jpk = L_11;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___jpk), (void*)L_11);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ca_1_nwk_m3BACD4F24093CC83BB8D4A76240E5A9C8A91C86F_gshared (ca_1_tA2B59207DE0BE10ECDFF308C653C2153E7BA2F95* __this, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_Enumerator_t3C5B344B2AD916BBF0192E0E3D2DC9030E98DAEC = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 19));
|
|
const uint32_t SizeOf_KeyValuePair_2_t8939F75DAAE4185F69A6118BB112F25AC9C6DE45 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 22));
|
|
const uint32_t SizeOf_Enumerator_t929CFF30BEE2FC1836E311F687672633E28EFA06 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 29));
|
|
const uint32_t SizeOf_b_t1F94FE17B102983C2A21FF64EEF1ED936B99A921 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 2));
|
|
void* L_3 = alloca(Il2CppFakeBoxBuffer::SizeNeededFor(il2cpp_rgctx_data(method->klass->rgctx_data, 19)));
|
|
void* L_10 = alloca(Il2CppFakeBoxBuffer::SizeNeededFor(il2cpp_rgctx_data(method->klass->rgctx_data, 29)));
|
|
const Il2CppFullySharedGenericStruct L_6 = alloca(SizeOf_b_t1F94FE17B102983C2A21FF64EEF1ED936B99A921);
|
|
const Il2CppFullySharedGenericStruct L_11 = L_6;
|
|
const Il2CppFullySharedGenericStruct L_12 = alloca(SizeOf_b_t1F94FE17B102983C2A21FF64EEF1ED936B99A921);
|
|
const Enumerator_t81B429DC3FEA3983A4D1E6E07804925CB576CD3B L_9 = alloca(SizeOf_Enumerator_t929CFF30BEE2FC1836E311F687672633E28EFA06);
|
|
const Enumerator_tCB72A813DFEE772F0A8C597C9BACBDBC84B493F0 L_2 = alloca(SizeOf_Enumerator_t3C5B344B2AD916BBF0192E0E3D2DC9030E98DAEC);
|
|
const KeyValuePair_2_t06C4C4F1E9511A11AC5CAA355D5F3FD0E45663E2 L_4 = alloca(SizeOf_KeyValuePair_2_t8939F75DAAE4185F69A6118BB112F25AC9C6DE45);
|
|
Enumerator_tCB72A813DFEE772F0A8C597C9BACBDBC84B493F0 V_0 = alloca(SizeOf_Enumerator_t3C5B344B2AD916BBF0192E0E3D2DC9030E98DAEC);
|
|
memset(V_0, 0, SizeOf_Enumerator_t3C5B344B2AD916BBF0192E0E3D2DC9030E98DAEC);
|
|
KeyValuePair_2_t06C4C4F1E9511A11AC5CAA355D5F3FD0E45663E2 V_1 = alloca(SizeOf_KeyValuePair_2_t8939F75DAAE4185F69A6118BB112F25AC9C6DE45);
|
|
memset(V_1, 0, SizeOf_KeyValuePair_2_t8939F75DAAE4185F69A6118BB112F25AC9C6DE45);
|
|
Enumerator_t81B429DC3FEA3983A4D1E6E07804925CB576CD3B V_2 = alloca(SizeOf_Enumerator_t929CFF30BEE2FC1836E311F687672633E28EFA06);
|
|
memset(V_2, 0, SizeOf_Enumerator_t929CFF30BEE2FC1836E311F687672633E28EFA06);
|
|
Il2CppFullySharedGenericStruct V_3 = alloca(SizeOf_b_t1F94FE17B102983C2A21FF64EEF1ED936B99A921);
|
|
memset(V_3, 0, SizeOf_b_t1F94FE17B102983C2A21FF64EEF1ED936B99A921);
|
|
{
|
|
List_1_tE5211AFE92BF26309D7C5814A29544E9EF496FE4* L_0 = __this->___jpk;
|
|
NullCheck(L_0);
|
|
(( void (*) (List_1_tE5211AFE92BF26309D7C5814A29544E9EF496FE4*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 17)))(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
|
|
Dictionary_2_tC791A5AC3BD371367696A57CAD347C5CE3415A76* L_1 = __this->___jpi;
|
|
NullCheck(L_1);
|
|
InvokerActionInvoker1< Enumerator_tCB72A813DFEE772F0A8C597C9BACBDBC84B493F0* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 18)), il2cpp_rgctx_method(method->klass->rgctx_data, 18), L_1, (Enumerator_tCB72A813DFEE772F0A8C597C9BACBDBC84B493F0*)L_2);
|
|
il2cpp_codegen_memcpy(V_0, L_2, SizeOf_Enumerator_t3C5B344B2AD916BBF0192E0E3D2DC9030E98DAEC);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_003e:
|
|
{
|
|
ConstrainedActionInvoker0::Invoke(il2cpp_rgctx_data(method->klass->rgctx_data, 19), il2cpp_rgctx_method(method->klass->rgctx_data, 27), L_3, (void*)(Enumerator_tCB72A813DFEE772F0A8C597C9BACBDBC84B493F0*)V_0);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_0033_1;
|
|
}
|
|
|
|
IL_0019_1:
|
|
{
|
|
InvokerActionInvoker1< KeyValuePair_2_t06C4C4F1E9511A11AC5CAA355D5F3FD0E45663E2* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 20)), il2cpp_rgctx_method(method->klass->rgctx_data, 20), (Enumerator_tCB72A813DFEE772F0A8C597C9BACBDBC84B493F0*)V_0, (KeyValuePair_2_t06C4C4F1E9511A11AC5CAA355D5F3FD0E45663E2*)L_4);
|
|
il2cpp_codegen_memcpy(V_1, L_4, SizeOf_KeyValuePair_2_t8939F75DAAE4185F69A6118BB112F25AC9C6DE45);
|
|
List_1_tE5211AFE92BF26309D7C5814A29544E9EF496FE4* L_5 = __this->___jpk;
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericStruct* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 23)), il2cpp_rgctx_method(method->klass->rgctx_data, 23), (KeyValuePair_2_t06C4C4F1E9511A11AC5CAA355D5F3FD0E45663E2*)V_1, (Il2CppFullySharedGenericStruct*)L_6);
|
|
NullCheck(L_5);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 25)), il2cpp_rgctx_method(method->klass->rgctx_data, 25), L_5, L_6);
|
|
}
|
|
|
|
IL_0033_1:
|
|
{
|
|
bool L_7;
|
|
L_7 = (( bool (*) (Enumerator_tCB72A813DFEE772F0A8C597C9BACBDBC84B493F0*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 26)))((Enumerator_tCB72A813DFEE772F0A8C597C9BACBDBC84B493F0*)V_0, il2cpp_rgctx_method(method->klass->rgctx_data, 26));
|
|
if (L_7)
|
|
{
|
|
goto IL_0019_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_004c;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
List_1_tE5211AFE92BF26309D7C5814A29544E9EF496FE4* L_8 = __this->___jpk;
|
|
NullCheck(L_8);
|
|
InvokerActionInvoker1< Enumerator_t81B429DC3FEA3983A4D1E6E07804925CB576CD3B* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 28)), il2cpp_rgctx_method(method->klass->rgctx_data, 28), L_8, (Enumerator_t81B429DC3FEA3983A4D1E6E07804925CB576CD3B*)L_9);
|
|
il2cpp_codegen_memcpy(V_2, L_9, SizeOf_Enumerator_t929CFF30BEE2FC1836E311F687672633E28EFA06);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0074:
|
|
{
|
|
ConstrainedActionInvoker0::Invoke(il2cpp_rgctx_data(method->klass->rgctx_data, 29), il2cpp_rgctx_method(method->klass->rgctx_data, 34), L_10, (void*)(Enumerator_t81B429DC3FEA3983A4D1E6E07804925CB576CD3B*)V_2);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_0069_1;
|
|
}
|
|
|
|
IL_005a_1:
|
|
{
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericStruct* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 30)), il2cpp_rgctx_method(method->klass->rgctx_data, 30), (Enumerator_t81B429DC3FEA3983A4D1E6E07804925CB576CD3B*)V_2, (Il2CppFullySharedGenericStruct*)L_11);
|
|
il2cpp_codegen_memcpy(V_3, L_11, SizeOf_b_t1F94FE17B102983C2A21FF64EEF1ED936B99A921);
|
|
il2cpp_codegen_memcpy(L_12, V_3, SizeOf_b_t1F94FE17B102983C2A21FF64EEF1ED936B99A921);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 32)), il2cpp_rgctx_method(method->klass->rgctx_data, 32), __this, L_12);
|
|
}
|
|
|
|
IL_0069_1:
|
|
{
|
|
bool L_13;
|
|
L_13 = (( bool (*) (Enumerator_t81B429DC3FEA3983A4D1E6E07804925CB576CD3B*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 33)))((Enumerator_t81B429DC3FEA3983A4D1E6E07804925CB576CD3B*)V_2, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
|
|
if (L_13)
|
|
{
|
|
goto IL_005a_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0082;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
List_1_tE5211AFE92BF26309D7C5814A29544E9EF496FE4* L_14 = __this->___jpk;
|
|
NullCheck(L_14);
|
|
(( void (*) (List_1_tE5211AFE92BF26309D7C5814A29544E9EF496FE4*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 17)))(L_14, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ca_1_fpx_m6640C2F5E29E2BAE61932A2CC354E78A23F8FD8F_gshared (ca_1_tA2B59207DE0BE10ECDFF308C653C2153E7BA2F95* __this, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_Enumerator_t3C5B344B2AD916BBF0192E0E3D2DC9030E98DAEC = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 19));
|
|
const uint32_t SizeOf_KeyValuePair_2_t8939F75DAAE4185F69A6118BB112F25AC9C6DE45 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 22));
|
|
const uint32_t SizeOf_Enumerator_t929CFF30BEE2FC1836E311F687672633E28EFA06 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 29));
|
|
const uint32_t SizeOf_b_t1F94FE17B102983C2A21FF64EEF1ED936B99A921 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 2));
|
|
void* L_3 = alloca(Il2CppFakeBoxBuffer::SizeNeededFor(il2cpp_rgctx_data(method->klass->rgctx_data, 19)));
|
|
void* L_10 = alloca(Il2CppFakeBoxBuffer::SizeNeededFor(il2cpp_rgctx_data(method->klass->rgctx_data, 29)));
|
|
const Il2CppFullySharedGenericStruct L_6 = alloca(SizeOf_b_t1F94FE17B102983C2A21FF64EEF1ED936B99A921);
|
|
const Il2CppFullySharedGenericStruct L_11 = L_6;
|
|
const Il2CppFullySharedGenericStruct L_12 = alloca(SizeOf_b_t1F94FE17B102983C2A21FF64EEF1ED936B99A921);
|
|
const Enumerator_t81B429DC3FEA3983A4D1E6E07804925CB576CD3B L_9 = alloca(SizeOf_Enumerator_t929CFF30BEE2FC1836E311F687672633E28EFA06);
|
|
const Enumerator_tCB72A813DFEE772F0A8C597C9BACBDBC84B493F0 L_2 = alloca(SizeOf_Enumerator_t3C5B344B2AD916BBF0192E0E3D2DC9030E98DAEC);
|
|
const KeyValuePair_2_t06C4C4F1E9511A11AC5CAA355D5F3FD0E45663E2 L_4 = alloca(SizeOf_KeyValuePair_2_t8939F75DAAE4185F69A6118BB112F25AC9C6DE45);
|
|
Enumerator_tCB72A813DFEE772F0A8C597C9BACBDBC84B493F0 V_0 = alloca(SizeOf_Enumerator_t3C5B344B2AD916BBF0192E0E3D2DC9030E98DAEC);
|
|
memset(V_0, 0, SizeOf_Enumerator_t3C5B344B2AD916BBF0192E0E3D2DC9030E98DAEC);
|
|
KeyValuePair_2_t06C4C4F1E9511A11AC5CAA355D5F3FD0E45663E2 V_1 = alloca(SizeOf_KeyValuePair_2_t8939F75DAAE4185F69A6118BB112F25AC9C6DE45);
|
|
memset(V_1, 0, SizeOf_KeyValuePair_2_t8939F75DAAE4185F69A6118BB112F25AC9C6DE45);
|
|
Enumerator_t81B429DC3FEA3983A4D1E6E07804925CB576CD3B V_2 = alloca(SizeOf_Enumerator_t929CFF30BEE2FC1836E311F687672633E28EFA06);
|
|
memset(V_2, 0, SizeOf_Enumerator_t929CFF30BEE2FC1836E311F687672633E28EFA06);
|
|
Il2CppFullySharedGenericStruct V_3 = alloca(SizeOf_b_t1F94FE17B102983C2A21FF64EEF1ED936B99A921);
|
|
memset(V_3, 0, SizeOf_b_t1F94FE17B102983C2A21FF64EEF1ED936B99A921);
|
|
{
|
|
List_1_tE5211AFE92BF26309D7C5814A29544E9EF496FE4* L_0 = __this->___jpk;
|
|
NullCheck(L_0);
|
|
(( void (*) (List_1_tE5211AFE92BF26309D7C5814A29544E9EF496FE4*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 17)))(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
|
|
Dictionary_2_tC791A5AC3BD371367696A57CAD347C5CE3415A76* L_1 = __this->___jpi;
|
|
NullCheck(L_1);
|
|
InvokerActionInvoker1< Enumerator_tCB72A813DFEE772F0A8C597C9BACBDBC84B493F0* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 18)), il2cpp_rgctx_method(method->klass->rgctx_data, 18), L_1, (Enumerator_tCB72A813DFEE772F0A8C597C9BACBDBC84B493F0*)L_2);
|
|
il2cpp_codegen_memcpy(V_0, L_2, SizeOf_Enumerator_t3C5B344B2AD916BBF0192E0E3D2DC9030E98DAEC);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_003e:
|
|
{
|
|
ConstrainedActionInvoker0::Invoke(il2cpp_rgctx_data(method->klass->rgctx_data, 19), il2cpp_rgctx_method(method->klass->rgctx_data, 27), L_3, (void*)(Enumerator_tCB72A813DFEE772F0A8C597C9BACBDBC84B493F0*)V_0);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_0033_1;
|
|
}
|
|
|
|
IL_0019_1:
|
|
{
|
|
InvokerActionInvoker1< KeyValuePair_2_t06C4C4F1E9511A11AC5CAA355D5F3FD0E45663E2* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 20)), il2cpp_rgctx_method(method->klass->rgctx_data, 20), (Enumerator_tCB72A813DFEE772F0A8C597C9BACBDBC84B493F0*)V_0, (KeyValuePair_2_t06C4C4F1E9511A11AC5CAA355D5F3FD0E45663E2*)L_4);
|
|
il2cpp_codegen_memcpy(V_1, L_4, SizeOf_KeyValuePair_2_t8939F75DAAE4185F69A6118BB112F25AC9C6DE45);
|
|
List_1_tE5211AFE92BF26309D7C5814A29544E9EF496FE4* L_5 = __this->___jpk;
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericStruct* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 23)), il2cpp_rgctx_method(method->klass->rgctx_data, 23), (KeyValuePair_2_t06C4C4F1E9511A11AC5CAA355D5F3FD0E45663E2*)V_1, (Il2CppFullySharedGenericStruct*)L_6);
|
|
NullCheck(L_5);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 25)), il2cpp_rgctx_method(method->klass->rgctx_data, 25), L_5, L_6);
|
|
}
|
|
|
|
IL_0033_1:
|
|
{
|
|
bool L_7;
|
|
L_7 = (( bool (*) (Enumerator_tCB72A813DFEE772F0A8C597C9BACBDBC84B493F0*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 26)))((Enumerator_tCB72A813DFEE772F0A8C597C9BACBDBC84B493F0*)V_0, il2cpp_rgctx_method(method->klass->rgctx_data, 26));
|
|
if (L_7)
|
|
{
|
|
goto IL_0019_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_004c;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
List_1_tE5211AFE92BF26309D7C5814A29544E9EF496FE4* L_8 = __this->___jpk;
|
|
NullCheck(L_8);
|
|
InvokerActionInvoker1< Enumerator_t81B429DC3FEA3983A4D1E6E07804925CB576CD3B* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 28)), il2cpp_rgctx_method(method->klass->rgctx_data, 28), L_8, (Enumerator_t81B429DC3FEA3983A4D1E6E07804925CB576CD3B*)L_9);
|
|
il2cpp_codegen_memcpy(V_2, L_9, SizeOf_Enumerator_t929CFF30BEE2FC1836E311F687672633E28EFA06);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0074:
|
|
{
|
|
ConstrainedActionInvoker0::Invoke(il2cpp_rgctx_data(method->klass->rgctx_data, 29), il2cpp_rgctx_method(method->klass->rgctx_data, 34), L_10, (void*)(Enumerator_t81B429DC3FEA3983A4D1E6E07804925CB576CD3B*)V_2);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_0069_1;
|
|
}
|
|
|
|
IL_005a_1:
|
|
{
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericStruct* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 30)), il2cpp_rgctx_method(method->klass->rgctx_data, 30), (Enumerator_t81B429DC3FEA3983A4D1E6E07804925CB576CD3B*)V_2, (Il2CppFullySharedGenericStruct*)L_11);
|
|
il2cpp_codegen_memcpy(V_3, L_11, SizeOf_b_t1F94FE17B102983C2A21FF64EEF1ED936B99A921);
|
|
il2cpp_codegen_memcpy(L_12, V_3, SizeOf_b_t1F94FE17B102983C2A21FF64EEF1ED936B99A921);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericStruct >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 32)), il2cpp_rgctx_method(method->klass->rgctx_data, 32), __this, L_12);
|
|
}
|
|
|
|
IL_0069_1:
|
|
{
|
|
bool L_13;
|
|
L_13 = (( bool (*) (Enumerator_t81B429DC3FEA3983A4D1E6E07804925CB576CD3B*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 33)))((Enumerator_t81B429DC3FEA3983A4D1E6E07804925CB576CD3B*)V_2, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
|
|
if (L_13)
|
|
{
|
|
goto IL_005a_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0082;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
List_1_tE5211AFE92BF26309D7C5814A29544E9EF496FE4* L_14 = __this->___jpk;
|
|
NullCheck(L_14);
|
|
(( void (*) (List_1_tE5211AFE92BF26309D7C5814A29544E9EF496FE4*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 17)))(L_14, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cag_1__ctor_m7EC6BD774A99ED50284B9AEBBEC253D4596893F8_gshared (cag_1_t13299DA714D17DC1CB7A3D2D03BFAA2956E3E9C5* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bzy_3__ctor_m245AD857568EE8C0B653A72ED0A4CFB86BAB4AA7((bzy_3_t69A7C4B8D2817E6515CAEA213B7FE352750F3509*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
|
|
bzx_1_tD860EF6FBE4057B405CC33ABF4B9B27EA4C241E8* L_0 = (bzx_1_tD860EF6FBE4057B405CC33ABF4B9B27EA4C241E8*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
bzx_1__ctor_m1D3B0B1578C67AF419E48BD7F0EEB4883360DD05(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
|
|
__this->___changeValue = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___changeValue), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cag_1__ctor_mF1826D059E336ED763F31FA4A6CAA753845AE7F4_gshared (cag_1_t87A80CA24A67B3AC723841E86724121C4FA61C56* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bzy_3__ctor_m026FA47790186028DE159965D3FBB7B60D936B69((bzy_3_t1E1BEBD3FB315A4FA21CD0E62A92BDE5781FF686*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
|
|
bzx_1_t4D484EB6E5789BB8192E046C3FDB7E2664856C75* L_0 = (bzx_1_t4D484EB6E5789BB8192E046C3FDB7E2664856C75*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
bzx_1__ctor_m5038F03BA0C1FA391D95165EB0A25251C093F2A4(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
|
|
__this->___changeValue = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___changeValue), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cag_1__ctor_mC00646394F8A39EF63F6B925A1ECB97F3C244722_gshared (cag_1_tF63C3AF916F5372C1BA3382D1B4BBE9CD3D8B6EC* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bzy_3__ctor_m295FE09287EB77E5A946A35F1EFBCF5AFA16F167((bzy_3_tDEF6B8481C81DD8E75C8CA42AC4A07AA003E2D95*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
|
|
bzx_1_tA2F73AE84DB462B2C1BB352D3E53255B822258F0* L_0 = (bzx_1_tA2F73AE84DB462B2C1BB352D3E53255B822258F0*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
bzx_1__ctor_m459FDE4EF3667FB0804F918AAFD4BAA43343E2D2(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
|
|
__this->___changeValue = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___changeValue), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cag_1__ctor_mACEDDB5E3F60D0C368DA8C936314EB9B6E56A083_gshared (cag_1_t04895B40CA8F412729C80E76D0FBD06112A47A7D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bzy_3__ctor_m8BB5C97CA4824E1A4C9BDC747CF1DF159FDE5226((bzy_3_t9A9A4FBDE0863F917696ADC8C788FFB7667E7258*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
|
|
bzx_1_tF28DD7ABB0A422DE920831FB35E155BDF2905A9B* L_0 = (bzx_1_tF28DD7ABB0A422DE920831FB35E155BDF2905A9B*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
bzx_1__ctor_m136FB30603F0E5DCE670DAA48A3AF874774183AD(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
|
|
__this->___changeValue = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___changeValue), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cag_1__ctor_mF6F0948961B70FB298A3988CCC0C5697D15D9D57_gshared (cag_1_t4408770DEE4DE1A9FBAF02CBBD5BD8EF8D6D710B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bzy_3__ctor_m503F1AB78E477A825C992CA99AD316F3A4B52789((bzy_3_t01187F1458C4DD0836F9F22F61EBA3D73AB44479*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
|
|
bzx_1_t01CAD84059E26921A56668D888A1952F0E346E84* L_0 = (bzx_1_t01CAD84059E26921A56668D888A1952F0E346E84*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
bzx_1__ctor_m9DC468494C904F9C2D4A2FED75CAD65389685383(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
|
|
__this->___changeValue = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___changeValue), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cag_1__ctor_m7BB26E98BABC048289B7C64571C66122994AD2D0_gshared (cag_1_tA685EFB76CB7A860FD35351524B49EC1C5D5787F* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bzy_3__ctor_m38EFD844B95555E94F54814FBBA32DE47D90ECEC((bzy_3_t8C95E0FFA290A3576A39046636B63DB55A101AF8*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
|
|
bzx_1_tF56837EEC40043218801469CF96854C4DA03507D* L_0 = (bzx_1_tF56837EEC40043218801469CF96854C4DA03507D*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
bzx_1__ctor_mBE0A884B346CF5E41F9C41D3D73B08EA2D0F6975(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
|
|
__this->___changeValue = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___changeValue), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cag_1__ctor_m4BF7AE9F47991B31292F0589C037BF5E5EDF0069_gshared (cag_1_t7955D8924F73171B3D7F04B030ECC01DABEAAEC7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
(( void (*) (bzy_3_t1B56DC560AD4BA180F9C6D73A942A6CD15DD925F*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((bzy_3_t1B56DC560AD4BA180F9C6D73A942A6CD15DD925F*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
|
|
bzx_1_tF5CB2EAA5615439F54BEE14538616017D16ECADE* L_0 = (bzx_1_tF5CB2EAA5615439F54BEE14538616017D16ECADE*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
(( void (*) (bzx_1_tF5CB2EAA5615439F54BEE14538616017D16ECADE*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
|
|
__this->___changeValue = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___changeValue), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool cap_1_get_IsInit_m9B3383F42A71C0D018CE215B90ED243AA01F8DC9_gshared (cap_1_t0DE2FBA65F8B89DBDCC8A8999240F8AF760D6908* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->___U3ClykU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cap_1_gan_mE645AD5667C93818AD2D6842F4AA7F4D856F37BD_gshared (cap_1_t0DE2FBA65F8B89DBDCC8A8999240F8AF760D6908* __this, bool ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_a;
|
|
__this->___U3ClykU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool cap_1_get_IsStartUp_mAE8139BCA42194C81A98EC63A8435EA9C4F50FD5_gshared (cap_1_t0DE2FBA65F8B89DBDCC8A8999240F8AF760D6908* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->___U3ClylU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cap_1_gao_mE65B7F3F00CEC909E65698271A3D2B2BF10B8C2F_gshared (cap_1_t0DE2FBA65F8B89DBDCC8A8999240F8AF760D6908* __this, bool ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_a;
|
|
__this->___U3ClylU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool cap_1_get_IsDispose_mFD7D1BB3339A13C07082D18EBAB582250F1BC63C_gshared (cap_1_t0DE2FBA65F8B89DBDCC8A8999240F8AF760D6908* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->___U3ClymU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cap_1_gap_mE93FAC6F00779477B33B54CB5B22577C9F9A9E4F_gshared (cap_1_t0DE2FBA65F8B89DBDCC8A8999240F8AF760D6908* __this, bool ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_a;
|
|
__this->___U3ClymU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* cap_1_get_Instance_m7E68491B5075469644011654F6D2342EF381C946_gshared (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = ((cap_1_t0DE2FBA65F8B89DBDCC8A8999240F8AF760D6908_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___lyn;
|
|
if (L_0)
|
|
{
|
|
goto IL_0025;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_1;
|
|
L_1 = Activator_CreateInstance_TisRuntimeObject_m62506836177F0F862A8D619638BF37F48721F138(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
((cap_1_t0DE2FBA65F8B89DBDCC8A8999240F8AF760D6908_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___lyn = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((cap_1_t0DE2FBA65F8B89DBDCC8A8999240F8AF760D6908_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___lyn), (void*)L_1);
|
|
RuntimeObject* L_2 = ((cap_1_t0DE2FBA65F8B89DBDCC8A8999240F8AF760D6908_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___lyn;
|
|
NullCheck((cap_1_t0DE2FBA65F8B89DBDCC8A8999240F8AF760D6908*)L_2);
|
|
VirtualActionInvoker0::Invoke(9, (cap_1_t0DE2FBA65F8B89DBDCC8A8999240F8AF760D6908*)L_2);
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
RuntimeObject* L_3 = ((cap_1_t0DE2FBA65F8B89DBDCC8A8999240F8AF760D6908_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___lyn;
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cap_1_gaq_m7882ED7C0C3A9A59C36D4C2D3A0FBDB4675D7DEA_gshared (cap_1_t0DE2FBA65F8B89DBDCC8A8999240F8AF760D6908* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cap_1_gap_mE93FAC6F00779477B33B54CB5B22577C9F9A9E4F_inline(__this, (bool)0, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cap_1_Init_mBAA04668FF26A33475455CC4B6009D3AFF29EC91_gshared (cap_1_t0DE2FBA65F8B89DBDCC8A8999240F8AF760D6908* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cap_1_gan_mE645AD5667C93818AD2D6842F4AA7F4D856F37BD_inline(__this, (bool)1, il2cpp_rgctx_method(method->klass->rgctx_data, 6));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cap_1_StartUp_mFC3A99737332AD41380311A687D41156A393D2D1_gshared (cap_1_t0DE2FBA65F8B89DBDCC8A8999240F8AF760D6908* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cap_1_gao_mE65B7F3F00CEC909E65698271A3D2B2BF10B8C2F_inline(__this, (bool)1, il2cpp_rgctx_method(method->klass->rgctx_data, 7));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cap_1_DisposeBefore_mFFF0A3F05A127C325706ED48121C5EF9A401EEA9_gshared (cap_1_t0DE2FBA65F8B89DBDCC8A8999240F8AF760D6908* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cap_1_gap_mE93FAC6F00779477B33B54CB5B22577C9F9A9E4F_inline(__this, (bool)1, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
|
|
cap_1_gan_mE645AD5667C93818AD2D6842F4AA7F4D856F37BD_inline(__this, (bool)0, il2cpp_rgctx_method(method->klass->rgctx_data, 6));
|
|
cap_1_gao_mE65B7F3F00CEC909E65698271A3D2B2BF10B8C2F_inline(__this, (bool)0, il2cpp_rgctx_method(method->klass->rgctx_data, 7));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cap_1_Dispose_mA760E23986F0B2ABCAD990662C0F44988098CC0A_gshared (cap_1_t0DE2FBA65F8B89DBDCC8A8999240F8AF760D6908* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
il2cpp_codegen_initobj((&((cap_1_t0DE2FBA65F8B89DBDCC8A8999240F8AF760D6908_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___lyn), sizeof(RuntimeObject*));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cap_1__ctor_m6279EF010A84A64BCA6DCC6149A212BC481DE1F0_gshared (cap_1_t0DE2FBA65F8B89DBDCC8A8999240F8AF760D6908* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ctu_1_hwd_mE127F44DB0900C30192D0ADD45972DBCA993E188_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_0 = ___0_a;
|
|
NullCheck(L_0);
|
|
List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_inline(L_0, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ctu_1_Get_m6FDFD2B5890D71DCBD099E4BA452E5B682A0485D_gshared (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
ctv_1_t6797CD74D570150D82C9A2244E79DE1F80514F93* L_0 = ((ctu_1_t37DB1B6798FE17C70E0BC9D80BE4B31AA281AF87_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->___nqe;
|
|
NullCheck(L_0);
|
|
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_1;
|
|
L_1 = ctv_1_Get_mB739CE37D1A5BB088B2AB7A315363A2F18976A8E(L_0, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ctu_1_Release_m563D85D9D888E41461034DD76B141548B11BA2B7_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ___0_toRelease, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
ctv_1_t6797CD74D570150D82C9A2244E79DE1F80514F93* L_0 = ((ctu_1_t37DB1B6798FE17C70E0BC9D80BE4B31AA281AF87_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->___nqe;
|
|
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_1 = ___0_toRelease;
|
|
NullCheck(L_0);
|
|
ctv_1_Release_m0D77C3E2985561E033F85DB3371EEAC22EEB2448(L_0, L_1, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 6));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ctu_1__cctor_m973A04F20D97A38E57EBCB6F92A38631C4614797_gshared (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Action_1_t90425964BF9D6282116C192CAA76B05EB0EEF123* L_0 = (Action_1_t90425964BF9D6282116C192CAA76B05EB0EEF123*)il2cpp_codegen_object_new(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
Action_1__ctor_mDED6E7002E5B09566D5DD87D1FD80F35ACAB2A82(L_0, NULL, (intptr_t)((void*)il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 7)), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 9));
|
|
ctv_1_t6797CD74D570150D82C9A2244E79DE1F80514F93* L_1 = (ctv_1_t6797CD74D570150D82C9A2244E79DE1F80514F93*)il2cpp_codegen_object_new(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
ctv_1__ctor_mE0541E63913E885748892920C73C44C5F803B0C3(L_1, (Action_1_t90425964BF9D6282116C192CAA76B05EB0EEF123*)NULL, L_0, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 10));
|
|
((ctu_1_t37DB1B6798FE17C70E0BC9D80BE4B31AA281AF87_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->___nqe = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((ctu_1_t37DB1B6798FE17C70E0BC9D80BE4B31AA281AF87_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->___nqe), (void*)L_1);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ctu_1_hwd_m68655DA3A7C7DECEC2878AB25D88E434E4794263_gshared (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* L_0 = ___0_a;
|
|
NullCheck(L_0);
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 1)))(L_0, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* ctu_1_Get_mA64D1AFD71AD4313A176A832D622CD6B0155BA3E_gshared (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
ctv_1_t520197966430B2540ECF7BB023FED9E0C525CE39* L_0 = ((ctu_1_t5FA6E763AEFCD47D758A94F36E2A52892CB4C8A3_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->___nqe;
|
|
NullCheck(L_0);
|
|
List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* L_1;
|
|
L_1 = InvokerFuncInvoker0< List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5)), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 5), L_0);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ctu_1_Release_mC6A74A395A1A6A89E5D2A8D0196E02E225A5C2EE_gshared (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* ___0_toRelease, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
ctv_1_t520197966430B2540ECF7BB023FED9E0C525CE39* L_0 = ((ctu_1_t5FA6E763AEFCD47D758A94F36E2A52892CB4C8A3_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->___nqe;
|
|
List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* L_1 = ___0_toRelease;
|
|
NullCheck(L_0);
|
|
InvokerActionInvoker1< List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 6)), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 6), L_0, L_1);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ctu_1__cctor_mFCE000C9490E8DB52F551FE872F30864546370B5_gshared (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Action_1_t97FCE20F22566CA230EFB470FC80FEA708AA1231* L_0 = (Action_1_t97FCE20F22566CA230EFB470FC80FEA708AA1231*)il2cpp_codegen_object_new(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 8));
|
|
(( void (*) (Action_1_t97FCE20F22566CA230EFB470FC80FEA708AA1231*, RuntimeObject*, intptr_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 9)))(L_0, NULL, (intptr_t)((void*)il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 7)), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 9));
|
|
ctv_1_t520197966430B2540ECF7BB023FED9E0C525CE39* L_1 = (ctv_1_t520197966430B2540ECF7BB023FED9E0C525CE39*)il2cpp_codegen_object_new(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
(( void (*) (ctv_1_t520197966430B2540ECF7BB023FED9E0C525CE39*, Action_1_t97FCE20F22566CA230EFB470FC80FEA708AA1231*, Action_1_t97FCE20F22566CA230EFB470FC80FEA708AA1231*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 10)))(L_1, (Action_1_t97FCE20F22566CA230EFB470FC80FEA708AA1231*)NULL, L_0, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 10));
|
|
((ctu_1_t5FA6E763AEFCD47D758A94F36E2A52892CB4C8A3_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->___nqe = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((ctu_1_t5FA6E763AEFCD47D758A94F36E2A52892CB4C8A3_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->___nqe), (void*)L_1);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ctv_1_get_CountAll_mEAF454516E2114D79C5798307857F106A3E5D89A_gshared (ctv_1_t7F236C02AD9CB75CF11908268451E806428FE795* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3CnqjU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ctv_1_Get_m611C8E5DFBA25EA0A334A06F34BFE7E94B939769_gshared (ctv_1_t7F236C02AD9CB75CF11908268451E806428FE795* __this, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* L_0 = __this->___nqf;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = Stack_1_get_Count_mD08AE71D49787D30DDD9D484BCD323D646744D2E_inline(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 2));
|
|
if (L_1)
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_2;
|
|
L_2 = Activator_CreateInstance_TisRuntimeObject_m62506836177F0F862A8D619638BF37F48721F138(il2cpp_rgctx_method(method->klass->rgctx_data, 3));
|
|
V_0 = L_2;
|
|
int32_t L_3;
|
|
L_3 = ctv_1_get_CountAll_mEAF454516E2114D79C5798307857F106A3E5D89A_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
|
|
V_1 = L_3;
|
|
int32_t L_4 = V_1;
|
|
ctv_1_hwe_m59DE15D4036199E9634DEF8ACFEB36F11EFBAF46_inline(__this, ((int32_t)il2cpp_codegen_add(L_4, 1)), il2cpp_rgctx_method(method->klass->rgctx_data, 6));
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* L_5 = __this->___nqg;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0045;
|
|
}
|
|
}
|
|
{
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* L_6 = __this->___nqg;
|
|
RuntimeObject* L_7 = V_0;
|
|
NullCheck(L_6);
|
|
Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_inline(L_6, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
|
|
goto IL_0045;
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* L_8 = __this->___nqf;
|
|
NullCheck(L_8);
|
|
RuntimeObject* L_9;
|
|
L_9 = Stack_1_Pop_m2AFF69249659372F07EE25817DBCAFE74E1CF778(L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 9));
|
|
V_0 = L_9;
|
|
}
|
|
|
|
IL_0045:
|
|
{
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* L_10 = __this->___nqh;
|
|
if (!L_10)
|
|
{
|
|
goto IL_0059;
|
|
}
|
|
}
|
|
{
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* L_11 = __this->___nqh;
|
|
RuntimeObject* L_12 = V_0;
|
|
NullCheck(L_11);
|
|
Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_inline(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
|
|
}
|
|
|
|
IL_0059:
|
|
{
|
|
RuntimeObject* L_13 = V_0;
|
|
return L_13;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ctv_1__ctor_mF7A19037F814C376462483804BCDC9A6051B541E_gshared (ctv_1_t7F236C02AD9CB75CF11908268451E806428FE795* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* L_0 = (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 1));
|
|
Stack_1__ctor_m70E8EDA96A608CE9BAB7FC8313B233AADA573BD4(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
__this->___nqf = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___nqf), (void*)L_0);
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ctv_1__ctor_mF038B15B9076E09FBEE90476994B7E6B8904BDAA_gshared (ctv_1_t7F236C02AD9CB75CF11908268451E806428FE795* __this, Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* ___0_a, Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* ___1_b, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* L_0 = (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 1));
|
|
Stack_1__ctor_m70E8EDA96A608CE9BAB7FC8313B233AADA573BD4(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
__this->___nqf = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___nqf), (void*)L_0);
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* L_1 = ___0_a;
|
|
__this->___nqh = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___nqh), (void*)L_1);
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* L_2 = ___1_b;
|
|
__this->___nqi = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___nqi), (void*)L_2);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ctv_1_Dispose_m8BA6C7DECBCAA8592076B6C705AD93D0B7AF1801_gshared (ctv_1_t7F236C02AD9CB75CF11908268451E806428FE795* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* L_0 = __this->___nqf;
|
|
NullCheck(L_0);
|
|
Stack_1_Clear_mD550E89582979ECB0D6E6D68F0237FC14708BE85(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
__this->___nqf = (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___nqf), (void*)(Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5*)NULL);
|
|
__this->___nqg = (Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___nqg), (void*)(Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87*)NULL);
|
|
__this->___nqh = (Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___nqh), (void*)(Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87*)NULL);
|
|
__this->___nqi = (Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___nqi), (void*)(Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ctv_1_Release_m7318A67CEA87FC6AB887E0D32BFFAB3D839B2182_gshared (ctv_1_t7F236C02AD9CB75CF11908268451E806428FE795* __this, RuntimeObject* ___0_element, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* L_0 = __this->___nqi;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* L_1 = __this->___nqi;
|
|
RuntimeObject* L_2 = ___0_element;
|
|
NullCheck(L_1);
|
|
Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_inline(L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* L_3 = __this->___nqf;
|
|
RuntimeObject* L_4 = ___0_element;
|
|
NullCheck(L_3);
|
|
Stack_1_Push_m709DD11BC1291A905814182CF9A367DE7399A778(L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 12));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ctv_1_bzx_mBA86D3F36DC9FA7F835979789DDAEE55622C0343_gshared (ctv_1_t7F236C02AD9CB75CF11908268451E806428FE795* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* L_0 = __this->___nqf;
|
|
NullCheck(L_0);
|
|
Stack_1_Clear_mD550E89582979ECB0D6E6D68F0237FC14708BE85(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
__this->___nqf = (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___nqf), (void*)(Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5*)NULL);
|
|
__this->___nqg = (Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___nqg), (void*)(Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87*)NULL);
|
|
__this->___nqh = (Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___nqh), (void*)(Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87*)NULL);
|
|
__this->___nqi = (Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___nqi), (void*)(Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ctv_1_hwe_m59DE15D4036199E9634DEF8ACFEB36F11EFBAF46_gshared (ctv_1_t7F236C02AD9CB75CF11908268451E806428FE795* __this, int32_t ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
__this->___U3CnqjU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ctv_1_bf_mAA2574DA7C46CC9796C45280DB790A8A430A5300_gshared (ctv_1_t7F236C02AD9CB75CF11908268451E806428FE795* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* L_0 = __this->___nqf;
|
|
NullCheck(L_0);
|
|
Stack_1_Clear_mD550E89582979ECB0D6E6D68F0237FC14708BE85(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
__this->___nqf = (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___nqf), (void*)(Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5*)NULL);
|
|
__this->___nqg = (Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___nqg), (void*)(Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87*)NULL);
|
|
__this->___nqh = (Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___nqh), (void*)(Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87*)NULL);
|
|
__this->___nqi = (Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___nqi), (void*)(Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ctv_1_get_CountAll_m9E04685B9D70491FEBE236AE6DB65B5C5048D12E_gshared (ctv_1_t3459F0A1CC7E7013F17962A3A93AD4A6424DD922* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3CnqjU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ctv_1_Get_m0760A73027CB1112A7E41600E0785D4311E429AD_gshared (ctv_1_t3459F0A1CC7E7013F17962A3A93AD4A6424DD922* __this, Il2CppFullySharedGenericAny* il2cppRetVal, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_a_t94063F3A18920E6C498197740A85F6E87C56E5DB = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 4));
|
|
const Il2CppFullySharedGenericAny L_2 = alloca(SizeOf_a_t94063F3A18920E6C498197740A85F6E87C56E5DB);
|
|
const Il2CppFullySharedGenericAny L_7 = L_2;
|
|
const Il2CppFullySharedGenericAny L_9 = L_2;
|
|
const Il2CppFullySharedGenericAny L_12 = L_2;
|
|
const Il2CppFullySharedGenericAny L_13 = L_2;
|
|
Il2CppFullySharedGenericAny V_0 = alloca(SizeOf_a_t94063F3A18920E6C498197740A85F6E87C56E5DB);
|
|
memset(V_0, 0, SizeOf_a_t94063F3A18920E6C498197740A85F6E87C56E5DB);
|
|
int32_t V_1 = 0;
|
|
{
|
|
Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A* L_0 = __this->___nqf;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = (( int32_t (*) (Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 2)))(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 2));
|
|
if (L_1)
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)), il2cpp_rgctx_method(method->klass->rgctx_data, 3), NULL, (Il2CppFullySharedGenericAny*)L_2);
|
|
il2cpp_codegen_memcpy(V_0, L_2, SizeOf_a_t94063F3A18920E6C498197740A85F6E87C56E5DB);
|
|
int32_t L_3;
|
|
L_3 = (( int32_t (*) (ctv_1_t3459F0A1CC7E7013F17962A3A93AD4A6424DD922*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 5)))(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
|
|
V_1 = L_3;
|
|
int32_t L_4 = V_1;
|
|
(( void (*) (ctv_1_t3459F0A1CC7E7013F17962A3A93AD4A6424DD922*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 6)))(__this, ((int32_t)il2cpp_codegen_add(L_4, 1)), il2cpp_rgctx_method(method->klass->rgctx_data, 6));
|
|
Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99* L_5 = __this->___nqg;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0045;
|
|
}
|
|
}
|
|
{
|
|
Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99* L_6 = __this->___nqg;
|
|
il2cpp_codegen_memcpy(L_7, V_0, SizeOf_a_t94063F3A18920E6C498197740A85F6E87C56E5DB);
|
|
NullCheck(L_6);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 8)), il2cpp_rgctx_method(method->klass->rgctx_data, 8), L_6, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 4)) ? L_7: *(void**)L_7));
|
|
goto IL_0045;
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A* L_8 = __this->___nqf;
|
|
NullCheck(L_8);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 9)), il2cpp_rgctx_method(method->klass->rgctx_data, 9), L_8, (Il2CppFullySharedGenericAny*)L_9);
|
|
il2cpp_codegen_memcpy(V_0, L_9, SizeOf_a_t94063F3A18920E6C498197740A85F6E87C56E5DB);
|
|
}
|
|
|
|
IL_0045:
|
|
{
|
|
Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99* L_10 = __this->___nqh;
|
|
if (!L_10)
|
|
{
|
|
goto IL_0059;
|
|
}
|
|
}
|
|
{
|
|
Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99* L_11 = __this->___nqh;
|
|
il2cpp_codegen_memcpy(L_12, V_0, SizeOf_a_t94063F3A18920E6C498197740A85F6E87C56E5DB);
|
|
NullCheck(L_11);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 8)), il2cpp_rgctx_method(method->klass->rgctx_data, 8), L_11, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 4)) ? L_12: *(void**)L_12));
|
|
}
|
|
|
|
IL_0059:
|
|
{
|
|
il2cpp_codegen_memcpy(L_13, V_0, SizeOf_a_t94063F3A18920E6C498197740A85F6E87C56E5DB);
|
|
il2cpp_codegen_memcpy(il2cppRetVal, L_13, SizeOf_a_t94063F3A18920E6C498197740A85F6E87C56E5DB);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ctv_1__ctor_mE74E478B69F3E4B2FF8103363EF2A8096AC5DC6E_gshared (ctv_1_t3459F0A1CC7E7013F17962A3A93AD4A6424DD922* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A* L_0 = (Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 1));
|
|
(( void (*) (Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
__this->___nqf = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___nqf), (void*)L_0);
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ctv_1__ctor_mC0FF99F00C8858E40BE41114A116E384D8B81666_gshared (ctv_1_t3459F0A1CC7E7013F17962A3A93AD4A6424DD922* __this, Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99* ___0_a, Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99* ___1_b, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A* L_0 = (Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 1));
|
|
(( void (*) (Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
__this->___nqf = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___nqf), (void*)L_0);
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99* L_1 = ___0_a;
|
|
__this->___nqh = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___nqh), (void*)L_1);
|
|
Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99* L_2 = ___1_b;
|
|
__this->___nqi = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___nqi), (void*)L_2);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ctv_1_Dispose_m2C238B5194AFAF88DA8492D3829C2C5863FF47C7_gshared (ctv_1_t3459F0A1CC7E7013F17962A3A93AD4A6424DD922* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A* L_0 = __this->___nqf;
|
|
NullCheck(L_0);
|
|
(( void (*) (Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 11)))(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
__this->___nqf = (Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___nqf), (void*)(Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A*)NULL);
|
|
__this->___nqg = (Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___nqg), (void*)(Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99*)NULL);
|
|
__this->___nqh = (Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___nqh), (void*)(Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99*)NULL);
|
|
__this->___nqi = (Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___nqi), (void*)(Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ctv_1_Release_m6831FE8D3005E298CBD8C35244438CAC193E888A_gshared (ctv_1_t3459F0A1CC7E7013F17962A3A93AD4A6424DD922* __this, Il2CppFullySharedGenericAny ___0_element, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_a_t94063F3A18920E6C498197740A85F6E87C56E5DB = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 4));
|
|
const Il2CppFullySharedGenericAny L_2 = alloca(SizeOf_a_t94063F3A18920E6C498197740A85F6E87C56E5DB);
|
|
const Il2CppFullySharedGenericAny L_4 = L_2;
|
|
{
|
|
Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99* L_0 = __this->___nqi;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99* L_1 = __this->___nqi;
|
|
il2cpp_codegen_memcpy(L_2, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 4)) ? ___0_element : &___0_element), SizeOf_a_t94063F3A18920E6C498197740A85F6E87C56E5DB);
|
|
NullCheck(L_1);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 8)), il2cpp_rgctx_method(method->klass->rgctx_data, 8), L_1, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 4)) ? L_2: *(void**)L_2));
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A* L_3 = __this->___nqf;
|
|
il2cpp_codegen_memcpy(L_4, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 4)) ? ___0_element : &___0_element), SizeOf_a_t94063F3A18920E6C498197740A85F6E87C56E5DB);
|
|
NullCheck(L_3);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 12)), il2cpp_rgctx_method(method->klass->rgctx_data, 12), L_3, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 4)) ? L_4: *(void**)L_4));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ctv_1_bzx_mF89BECA849C95BA6C5C661A24A9D2990C95288D7_gshared (ctv_1_t3459F0A1CC7E7013F17962A3A93AD4A6424DD922* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A* L_0 = __this->___nqf;
|
|
NullCheck(L_0);
|
|
(( void (*) (Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 11)))(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
__this->___nqf = (Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___nqf), (void*)(Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A*)NULL);
|
|
__this->___nqg = (Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___nqg), (void*)(Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99*)NULL);
|
|
__this->___nqh = (Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___nqh), (void*)(Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99*)NULL);
|
|
__this->___nqi = (Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___nqi), (void*)(Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ctv_1_hwe_mBACE51D30FCDBB55AA68C65272F2913FDE047AA1_gshared (ctv_1_t3459F0A1CC7E7013F17962A3A93AD4A6424DD922* __this, int32_t ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
__this->___U3CnqjU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ctv_1_bf_mCDE38A80AD5F3B09862F7BA8830231A9CC9401C5_gshared (ctv_1_t3459F0A1CC7E7013F17962A3A93AD4A6424DD922* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A* L_0 = __this->___nqf;
|
|
NullCheck(L_0);
|
|
(( void (*) (Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 11)))(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
__this->___nqf = (Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___nqf), (void*)(Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A*)NULL);
|
|
__this->___nqg = (Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___nqg), (void*)(Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99*)NULL);
|
|
__this->___nqh = (Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___nqh), (void*)(Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99*)NULL);
|
|
__this->___nqi = (Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___nqi), (void*)(Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* cud_1_get_Instance_m63274338194FF3D646BC1B60566D843A11CD632B_gshared (const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
bool V_1 = false;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
RuntimeObject* L_0 = ((cud_1_t83FF7C1205FDBF0FE96EB597F5C8EED47D8CBB84_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1)))->___nqr;
|
|
V_0 = L_0;
|
|
V_1 = (bool)0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0037:
|
|
{
|
|
{
|
|
bool L_1 = V_1;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0040;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_2 = V_0;
|
|
Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_2, NULL);
|
|
}
|
|
|
|
IL_0040:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
RuntimeObject* L_3 = V_0;
|
|
Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_3, (&V_1), NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
RuntimeObject* L_4 = ((cud_1_t83FF7C1205FDBF0FE96EB597F5C8EED47D8CBB84_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1)))->___nqq;
|
|
if (L_4)
|
|
{
|
|
goto IL_0026_1;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_5;
|
|
L_5 = Activator_CreateInstance_TisRuntimeObject_m62506836177F0F862A8D619638BF37F48721F138(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
((cud_1_t83FF7C1205FDBF0FE96EB597F5C8EED47D8CBB84_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1)))->___nqq = L_5;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((cud_1_t83FF7C1205FDBF0FE96EB597F5C8EED47D8CBB84_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1)))->___nqq), (void*)L_5);
|
|
}
|
|
|
|
IL_0026_1:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
RuntimeObject* L_6 = ((cud_1_t83FF7C1205FDBF0FE96EB597F5C8EED47D8CBB84_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1)))->___nqq;
|
|
NullCheck((cud_1_t83FF7C1205FDBF0FE96EB597F5C8EED47D8CBB84*)L_6);
|
|
cud_1_OnSingletonInit_m4B2F9BBF8F3CEBE3EEDB5C6087691C081C24E2E7((cud_1_t83FF7C1205FDBF0FE96EB597F5C8EED47D8CBB84*)L_6, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
RuntimeObject* L_7 = ((cud_1_t83FF7C1205FDBF0FE96EB597F5C8EED47D8CBB84_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1)))->___nqq;
|
|
return L_7;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cud_1_Dispose_mE4A85EBFDB2B4FBFD95A45A0372196FA504A1790_gshared (cud_1_t83FF7C1205FDBF0FE96EB597F5C8EED47D8CBB84* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 1));
|
|
il2cpp_codegen_initobj((&((cud_1_t83FF7C1205FDBF0FE96EB597F5C8EED47D8CBB84_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 1)))->___nqq), sizeof(RuntimeObject*));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cud_1_OnSingletonInit_m4B2F9BBF8F3CEBE3EEDB5C6087691C081C24E2E7_gshared (cud_1_t83FF7C1205FDBF0FE96EB597F5C8EED47D8CBB84* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cud_1__ctor_m9A731279A8D7D3718CC1AC09DC9900E448527C3F_gshared (cud_1_t83FF7C1205FDBF0FE96EB597F5C8EED47D8CBB84* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cud_1__cctor_m04AC8B85692E3A16B3256B3884C34C27932D50CC_gshared (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject* L_0 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_0, NULL);
|
|
((cud_1_t83FF7C1205FDBF0FE96EB597F5C8EED47D8CBB84_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1)))->___nqr = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((cud_1_t83FF7C1205FDBF0FE96EB597F5C8EED47D8CBB84_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1)))->___nqr), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cxo_1_fqc_mF81F0CA1869FE0B4C7F3FB0280DA3135EF379E40_gshared (cxo_1_tEF016A0E938797C525FDD409DDC7F211C2056789* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* L_0 = __this->___oac;
|
|
NullCheck(L_0);
|
|
Stack_1_Clear_mD550E89582979ECB0D6E6D68F0237FC14708BE85(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 2));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cxo_1_get_Peak_m3ADD6E62EAFD22208CBDE14134A9DACFD8890382_gshared (cxo_1_tEF016A0E938797C525FDD409DDC7F211C2056789* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3CoadU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cxo_1__ctor_m220CB116F1D84A01A26B499A56AAD448020B5C54_gshared (cxo_1_tEF016A0E938797C525FDD409DDC7F211C2056789* __this, int32_t ___0_a, int32_t ___1_b, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
int32_t L_0 = ___0_a;
|
|
Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* L_1 = (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 1));
|
|
Stack_1__ctor_m25F8C6095172E75DEE8A43E857889659DFC4DCE9(L_1, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
|
|
__this->___oac = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___oac), (void*)L_1);
|
|
int32_t L_2 = ___1_b;
|
|
__this->___max = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cxo_1_icy_m7AAC873E684E3D2BB0F8D95B9538F200C07755FC_gshared (cxo_1_tEF016A0E938797C525FDD409DDC7F211C2056789* __this, RuntimeObject* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___0_a;
|
|
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_0, il2cpp_rgctx_data(method->klass->rgctx_data, 5)));
|
|
RuntimeObject* L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_2 = V_0;
|
|
NullCheck(L_2);
|
|
InterfaceActionInvoker0::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_2);
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cxo_1_icx_m74E83E3327BA169D702B8BF8F79C592E52B5ECF1_gshared (cxo_1_tEF016A0E938797C525FDD409DDC7F211C2056789* __this, int32_t ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
__this->___U3CoadU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* cxo_1_Obtain_m0A439316379D565D3BECE831BB371BCBE744DF89_gshared (cxo_1_tEF016A0E938797C525FDD409DDC7F211C2056789* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* L_0 = __this->___oac;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = Stack_1_get_Count_mD08AE71D49787D30DDD9D484BCD323D646744D2E_inline(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 7));
|
|
if (!L_1)
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* L_2 = __this->___oac;
|
|
NullCheck(L_2);
|
|
RuntimeObject* L_3;
|
|
L_3 = Stack_1_Pop_m2AFF69249659372F07EE25817DBCAFE74E1CF778(L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
|
|
return L_3;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
RuntimeObject* L_4;
|
|
L_4 = Activator_CreateInstance_TisRuntimeObject_m62506836177F0F862A8D619638BF37F48721F138(il2cpp_rgctx_method(method->klass->rgctx_data, 9));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cxo_1_Free_m3BD087819E9D8E99A517B4D2A2D2DD68D9096293_gshared (cxo_1_tEF016A0E938797C525FDD409DDC7F211C2056789* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject* L_0 = ___0_obj;
|
|
if (L_0)
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m6D9C7B47EA708382838B264BA02EBB7576DFA155(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral690BF02630AC0BD6AA6BD08D2C36A28E1FC54F3E)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDD6EC7CDABBEAF581BC4D8C67AFA4D84421A7C76)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* L_2 = __this->___oac;
|
|
NullCheck(L_2);
|
|
int32_t L_3;
|
|
L_3 = Stack_1_get_Count_mD08AE71D49787D30DDD9D484BCD323D646744D2E_inline(L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 7));
|
|
int32_t L_4 = __this->___max;
|
|
if ((((int32_t)L_3) >= ((int32_t)L_4)))
|
|
{
|
|
goto IL_0053;
|
|
}
|
|
}
|
|
{
|
|
Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* L_5 = __this->___oac;
|
|
RuntimeObject* L_6 = ___0_obj;
|
|
NullCheck(L_5);
|
|
Stack_1_Push_m709DD11BC1291A905814182CF9A367DE7399A778(L_5, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
int32_t L_7;
|
|
L_7 = cxo_1_get_Peak_m3ADD6E62EAFD22208CBDE14134A9DACFD8890382_inline(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* L_8 = __this->___oac;
|
|
NullCheck(L_8);
|
|
int32_t L_9;
|
|
L_9 = Stack_1_get_Count_mD08AE71D49787D30DDD9D484BCD323D646744D2E_inline(L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 7));
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
int32_t L_10;
|
|
L_10 = Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF(L_7, L_9, NULL);
|
|
cxo_1_icx_m74E83E3327BA169D702B8BF8F79C592E52B5ECF1_inline(__this, L_10, il2cpp_rgctx_method(method->klass->rgctx_data, 12));
|
|
}
|
|
|
|
IL_0053:
|
|
{
|
|
RuntimeObject* L_11 = ___0_obj;
|
|
cxo_1_icy_m7AAC873E684E3D2BB0F8D95B9538F200C07755FC(__this, L_11, il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cxo_1_Clear_m2C0F5D40488C0469AF86BA850B5C39956949B13F_gshared (cxo_1_tEF016A0E938797C525FDD409DDC7F211C2056789* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* L_0 = __this->___oac;
|
|
NullCheck(L_0);
|
|
Stack_1_Clear_mD550E89582979ECB0D6E6D68F0237FC14708BE85(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 2));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cxo_1_nct_m804D50B7CEBCA64C69BE3B7C47FEB0D771CA8379_gshared (cxo_1_tEF016A0E938797C525FDD409DDC7F211C2056789* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* L_0 = __this->___oac;
|
|
NullCheck(L_0);
|
|
Stack_1_Clear_mD550E89582979ECB0D6E6D68F0237FC14708BE85(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 2));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cxo_1_get_Count_m57CD01019CC4EEC9B8F71E2DC4D7BDDF2444EDD0_gshared (cxo_1_tEF016A0E938797C525FDD409DDC7F211C2056789* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* L_0 = __this->___oac;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = Stack_1_get_Count_mD08AE71D49787D30DDD9D484BCD323D646744D2E_inline(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 7));
|
|
return L_1;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* cys_idk_m3DF5269EE221462F210A8322A38D3D71224A8E5D_gshared (cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cys_idi_mB888D2B07C5D840345EE483EB3CFF4A603AE660D(__this, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 0));
|
|
int32_t L_0 = __this->___next;
|
|
if ((((int32_t)L_0) > ((int32_t)0)))
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_m1BE9BD198B904AA1D94F4B10DA88077DFD44B7A5(L_1, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
bool L_2 = __this->___current;
|
|
bool L_3 = L_2;
|
|
RuntimeObject* L_4 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_3);
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C RuntimeObject* cys_idk_m3DF5269EE221462F210A8322A38D3D71224A8E5D_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5*>(__this + _offset);
|
|
RuntimeObject* _returnValue;
|
|
_returnValue = cys_idk_m3DF5269EE221462F210A8322A38D3D71224A8E5D(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_idi_mB888D2B07C5D840345EE483EB3CFF4A603AE660D_gshared (cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* L_0 = __this->___ofb;
|
|
if (L_0)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5 L_1 = (*(cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5*)__this);
|
|
cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5 L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_2);
|
|
Type_t* L_4;
|
|
L_4 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_3, NULL);
|
|
NullCheck(L_4);
|
|
String_t* L_5;
|
|
L_5 = VirtualFuncInvoker0< String_t* >::Invoke(41, L_4);
|
|
ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB* L_6 = (ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var)));
|
|
ObjectDisposedException__ctor_mB2C8582279AF3F0C1CF9AA52DA7331BF848DFD48(L_6, L_5, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, method);
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
int32_t L_7 = __this->___ofc;
|
|
cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* L_8 = __this->___ofb;
|
|
NullCheck(L_8);
|
|
int32_t L_9 = L_8->___version;
|
|
if ((((int32_t)L_7) == ((int32_t)L_9)))
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_10 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, method);
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_idi_mB888D2B07C5D840345EE483EB3CFF4A603AE660D_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5*>(__this + _offset);
|
|
cys_idi_mB888D2B07C5D840345EE483EB3CFF4A603AE660D(_thisAdjusted, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_dv_m54B824971B2FDF23ECA2518FDFE68D4853B11ED7_gshared (cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* L_0 = __this->___ofb;
|
|
if (L_0)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5 L_1 = (*(cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5*)__this);
|
|
cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5 L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_2);
|
|
Type_t* L_4;
|
|
L_4 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_3, NULL);
|
|
NullCheck(L_4);
|
|
String_t* L_5;
|
|
L_5 = VirtualFuncInvoker0< String_t* >::Invoke(41, L_4);
|
|
ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB* L_6 = (ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var)));
|
|
ObjectDisposedException__ctor_mB2C8582279AF3F0C1CF9AA52DA7331BF848DFD48(L_6, L_5, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, method);
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
int32_t L_7 = __this->___ofc;
|
|
cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* L_8 = __this->___ofb;
|
|
NullCheck(L_8);
|
|
int32_t L_9 = L_8->___version;
|
|
if ((((int32_t)L_7) == ((int32_t)L_9)))
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_10 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1E924365FC1E94C4C209B1C179563C22941C3835)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, method);
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_dv_m54B824971B2FDF23ECA2518FDFE68D4853B11ED7_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5*>(__this + _offset);
|
|
cys_dv_m54B824971B2FDF23ECA2518FDFE68D4853B11ED7(_thisAdjusted, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool cys_get_Current_mFBD2535FC10EC841EB620E7553DA3402E9908821_gshared (cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->___current;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool cys_get_Current_mFBD2535FC10EC841EB620E7553DA3402E9908821_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = cys_get_Current_mFBD2535FC10EC841EB620E7553DA3402E9908821_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool cys_MoveNext_mA7A71B58C50B3633B3497236CB0AA8B06DF78CB5_gshared (cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
cys_idi_mB888D2B07C5D840345EE483EB3CFF4A603AE660D(__this, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 0));
|
|
int32_t L_0 = __this->___next;
|
|
if ((((int32_t)L_0) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
int32_t L_1 = __this->___next;
|
|
cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* L_2 = __this->___ofb;
|
|
NullCheck(L_2);
|
|
int32_t L_3 = L_2->___Count;
|
|
if ((((int32_t)L_1) >= ((int32_t)L_3)))
|
|
{
|
|
goto IL_004d;
|
|
}
|
|
}
|
|
{
|
|
cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* L_4 = __this->___ofb;
|
|
NullCheck(L_4);
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_5 = L_4->___Items;
|
|
int32_t L_6 = __this->___next;
|
|
V_0 = L_6;
|
|
int32_t L_7 = V_0;
|
|
__this->___next = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
int32_t L_8 = V_0;
|
|
NullCheck(L_5);
|
|
int32_t L_9 = L_8;
|
|
bool L_10 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
|
|
__this->___current = L_10;
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
__this->___next = (-1);
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool cys_MoveNext_mA7A71B58C50B3633B3497236CB0AA8B06DF78CB5_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = cys_MoveNext_mA7A71B58C50B3633B3497236CB0AA8B06DF78CB5(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_idj_m0ECF52877D27261A69A877D9826D7467CA69843B_gshared (cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cys_idi_mB888D2B07C5D840345EE483EB3CFF4A603AE660D(__this, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 0));
|
|
__this->___next = 0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_idj_m0ECF52877D27261A69A877D9826D7467CA69843B_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5*>(__this + _offset);
|
|
cys_idj_m0ECF52877D27261A69A877D9826D7467CA69843B(_thisAdjusted, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_mnk_m4622D706AA8AB87E72EE65E8DC7CB17AE10BF293_gshared (cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* L_0 = __this->___ofb;
|
|
if (L_0)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5 L_1 = (*(cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5*)__this);
|
|
cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5 L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_2);
|
|
Type_t* L_4;
|
|
L_4 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_3, NULL);
|
|
NullCheck(L_4);
|
|
String_t* L_5;
|
|
L_5 = VirtualFuncInvoker0< String_t* >::Invoke(41, L_4);
|
|
ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB* L_6 = (ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var)));
|
|
ObjectDisposedException__ctor_mB2C8582279AF3F0C1CF9AA52DA7331BF848DFD48(L_6, L_5, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, method);
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
int32_t L_7 = __this->___ofc;
|
|
cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* L_8 = __this->___ofb;
|
|
NullCheck(L_8);
|
|
int32_t L_9 = L_8->___version;
|
|
if ((((int32_t)L_7) == ((int32_t)L_9)))
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_10 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral332BBECD906D16D8DBF8E7EB9136708162DD15B1)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, method);
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_mnk_m4622D706AA8AB87E72EE65E8DC7CB17AE10BF293_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5*>(__this + _offset);
|
|
cys_mnk_m4622D706AA8AB87E72EE65E8DC7CB17AE10BF293(_thisAdjusted, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_Dispose_m8E5B82E94C9AB181994DF342E8EA257E97B5ED97_gshared (cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
__this->___ofb = (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___ofb), (void*)(cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_Dispose_m8E5B82E94C9AB181994DF342E8EA257E97B5ED97_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5*>(__this + _offset);
|
|
cys_Dispose_m8E5B82E94C9AB181994DF342E8EA257E97B5ED97(_thisAdjusted, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys__ctor_m5D13A88DAA30B690962CFFC0DD72B05D8AB57F8B_gshared (cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5* __this, cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
il2cpp_codegen_initobj(__this, sizeof(cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5));
|
|
cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* L_0 = ___0_a;
|
|
__this->___ofb = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___ofb), (void*)L_0);
|
|
cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* L_1 = ___0_a;
|
|
NullCheck(L_1);
|
|
int32_t L_2 = L_1->___version;
|
|
__this->___ofc = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys__ctor_m5D13A88DAA30B690962CFFC0DD72B05D8AB57F8B_AdjustorThunk (RuntimeObject* __this, cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5*>(__this + _offset);
|
|
cys__ctor_m5D13A88DAA30B690962CFFC0DD72B05D8AB57F8B(_thisAdjusted, ___0_a, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_jky_mC780B409CA18D31766273944C38FE44E8C198489_gshared (cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* L_0 = __this->___ofb;
|
|
if (L_0)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5 L_1 = (*(cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5*)__this);
|
|
cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5 L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_2);
|
|
Type_t* L_4;
|
|
L_4 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_3, NULL);
|
|
NullCheck(L_4);
|
|
String_t* L_5;
|
|
L_5 = VirtualFuncInvoker0< String_t* >::Invoke(41, L_4);
|
|
ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB* L_6 = (ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var)));
|
|
ObjectDisposedException__ctor_mB2C8582279AF3F0C1CF9AA52DA7331BF848DFD48(L_6, L_5, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, method);
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
int32_t L_7 = __this->___ofc;
|
|
cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* L_8 = __this->___ofb;
|
|
NullCheck(L_8);
|
|
int32_t L_9 = L_8->___version;
|
|
if ((((int32_t)L_7) == ((int32_t)L_9)))
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_10 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral939E321B3BC3283885C39B094F4D1D4D7394394E)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, method);
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_jky_mC780B409CA18D31766273944C38FE44E8C198489_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5*>(__this + _offset);
|
|
cys_jky_mC780B409CA18D31766273944C38FE44E8C198489(_thisAdjusted, method);
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* cys_idk_m1FB91B579533C0CD8B5C0D90C941766AB7BF7D3E_gshared (cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cys_idi_m9DA70E7285B3676C8A4BF3A6805C5AECCAEE41E0(__this, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 0));
|
|
int32_t L_0 = __this->___next;
|
|
if ((((int32_t)L_0) > ((int32_t)0)))
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_m1BE9BD198B904AA1D94F4B10DA88077DFD44B7A5(L_1, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_2 = __this->___current;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_3 = L_2;
|
|
RuntimeObject* L_4 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_3);
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C RuntimeObject* cys_idk_m1FB91B579533C0CD8B5C0D90C941766AB7BF7D3E_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E*>(__this + _offset);
|
|
RuntimeObject* _returnValue;
|
|
_returnValue = cys_idk_m1FB91B579533C0CD8B5C0D90C941766AB7BF7D3E(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_idi_m9DA70E7285B3676C8A4BF3A6805C5AECCAEE41E0_gshared (cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* L_0 = __this->___ofb;
|
|
if (L_0)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E L_1 = (*(cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E*)__this);
|
|
cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_2);
|
|
Type_t* L_4;
|
|
L_4 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_3, NULL);
|
|
NullCheck(L_4);
|
|
String_t* L_5;
|
|
L_5 = VirtualFuncInvoker0< String_t* >::Invoke(41, L_4);
|
|
ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB* L_6 = (ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var)));
|
|
ObjectDisposedException__ctor_mB2C8582279AF3F0C1CF9AA52DA7331BF848DFD48(L_6, L_5, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, method);
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
int32_t L_7 = __this->___ofc;
|
|
cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* L_8 = __this->___ofb;
|
|
NullCheck(L_8);
|
|
int32_t L_9 = L_8->___version;
|
|
if ((((int32_t)L_7) == ((int32_t)L_9)))
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_10 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, method);
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_idi_m9DA70E7285B3676C8A4BF3A6805C5AECCAEE41E0_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E*>(__this + _offset);
|
|
cys_idi_m9DA70E7285B3676C8A4BF3A6805C5AECCAEE41E0(_thisAdjusted, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_dv_m5A0A096261F40F414C3F8FAA7AA7825DE9B76B33_gshared (cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* L_0 = __this->___ofb;
|
|
if (L_0)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E L_1 = (*(cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E*)__this);
|
|
cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_2);
|
|
Type_t* L_4;
|
|
L_4 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_3, NULL);
|
|
NullCheck(L_4);
|
|
String_t* L_5;
|
|
L_5 = VirtualFuncInvoker0< String_t* >::Invoke(41, L_4);
|
|
ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB* L_6 = (ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var)));
|
|
ObjectDisposedException__ctor_mB2C8582279AF3F0C1CF9AA52DA7331BF848DFD48(L_6, L_5, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, method);
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
int32_t L_7 = __this->___ofc;
|
|
cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* L_8 = __this->___ofb;
|
|
NullCheck(L_8);
|
|
int32_t L_9 = L_8->___version;
|
|
if ((((int32_t)L_7) == ((int32_t)L_9)))
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_10 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1E924365FC1E94C4C209B1C179563C22941C3835)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, method);
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_dv_m5A0A096261F40F414C3F8FAA7AA7825DE9B76B33_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E*>(__this + _offset);
|
|
cys_dv_m5A0A096261F40F414C3F8FAA7AA7825DE9B76B33(_thisAdjusted, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B cys_get_Current_m06A3A3B5111455C6DD83171C34C359D7EBF0CEAF_gshared (cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_0 = __this->___current;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B cys_get_Current_m06A3A3B5111455C6DD83171C34C359D7EBF0CEAF_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E*>(__this + _offset);
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B _returnValue;
|
|
_returnValue = cys_get_Current_m06A3A3B5111455C6DD83171C34C359D7EBF0CEAF_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool cys_MoveNext_m6C03CC49C8B65F2A282EA13A944C48E451FE31C3_gshared (cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
cys_idi_m9DA70E7285B3676C8A4BF3A6805C5AECCAEE41E0(__this, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 0));
|
|
int32_t L_0 = __this->___next;
|
|
if ((((int32_t)L_0) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
int32_t L_1 = __this->___next;
|
|
cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* L_2 = __this->___ofb;
|
|
NullCheck(L_2);
|
|
int32_t L_3 = L_2->___Count;
|
|
if ((((int32_t)L_1) >= ((int32_t)L_3)))
|
|
{
|
|
goto IL_004d;
|
|
}
|
|
}
|
|
{
|
|
cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* L_4 = __this->___ofb;
|
|
NullCheck(L_4);
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_5 = L_4->___Items;
|
|
int32_t L_6 = __this->___next;
|
|
V_0 = L_6;
|
|
int32_t L_7 = V_0;
|
|
__this->___next = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
int32_t L_8 = V_0;
|
|
NullCheck(L_5);
|
|
int32_t L_9 = L_8;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_10 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
|
|
__this->___current = L_10;
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
__this->___next = (-1);
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool cys_MoveNext_m6C03CC49C8B65F2A282EA13A944C48E451FE31C3_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = cys_MoveNext_m6C03CC49C8B65F2A282EA13A944C48E451FE31C3(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_idj_m3628A884B352FFE32EE898C0A49A75BFEB59F026_gshared (cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cys_idi_m9DA70E7285B3676C8A4BF3A6805C5AECCAEE41E0(__this, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 0));
|
|
__this->___next = 0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_idj_m3628A884B352FFE32EE898C0A49A75BFEB59F026_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E*>(__this + _offset);
|
|
cys_idj_m3628A884B352FFE32EE898C0A49A75BFEB59F026(_thisAdjusted, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_mnk_mFE3576488E04E63BAC678190381902A908BEF34D_gshared (cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* L_0 = __this->___ofb;
|
|
if (L_0)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E L_1 = (*(cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E*)__this);
|
|
cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_2);
|
|
Type_t* L_4;
|
|
L_4 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_3, NULL);
|
|
NullCheck(L_4);
|
|
String_t* L_5;
|
|
L_5 = VirtualFuncInvoker0< String_t* >::Invoke(41, L_4);
|
|
ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB* L_6 = (ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var)));
|
|
ObjectDisposedException__ctor_mB2C8582279AF3F0C1CF9AA52DA7331BF848DFD48(L_6, L_5, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, method);
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
int32_t L_7 = __this->___ofc;
|
|
cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* L_8 = __this->___ofb;
|
|
NullCheck(L_8);
|
|
int32_t L_9 = L_8->___version;
|
|
if ((((int32_t)L_7) == ((int32_t)L_9)))
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_10 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral332BBECD906D16D8DBF8E7EB9136708162DD15B1)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, method);
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_mnk_mFE3576488E04E63BAC678190381902A908BEF34D_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E*>(__this + _offset);
|
|
cys_mnk_mFE3576488E04E63BAC678190381902A908BEF34D(_thisAdjusted, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_Dispose_m506E0690BA8B3FDD01FF6CD9681EE140333890D4_gshared (cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
__this->___ofb = (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___ofb), (void*)(cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_Dispose_m506E0690BA8B3FDD01FF6CD9681EE140333890D4_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E*>(__this + _offset);
|
|
cys_Dispose_m506E0690BA8B3FDD01FF6CD9681EE140333890D4(_thisAdjusted, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys__ctor_mC10FD48409B8D8BEE4A1A676B1B4C624955B6E5E_gshared (cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E* __this, cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
il2cpp_codegen_initobj(__this, sizeof(cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E));
|
|
cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* L_0 = ___0_a;
|
|
__this->___ofb = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___ofb), (void*)L_0);
|
|
cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* L_1 = ___0_a;
|
|
NullCheck(L_1);
|
|
int32_t L_2 = L_1->___version;
|
|
__this->___ofc = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys__ctor_mC10FD48409B8D8BEE4A1A676B1B4C624955B6E5E_AdjustorThunk (RuntimeObject* __this, cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E*>(__this + _offset);
|
|
cys__ctor_mC10FD48409B8D8BEE4A1A676B1B4C624955B6E5E(_thisAdjusted, ___0_a, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_jky_m8674A8C369C9EB245ADA1AE45E619A3B8CD08615_gshared (cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* L_0 = __this->___ofb;
|
|
if (L_0)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E L_1 = (*(cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E*)__this);
|
|
cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_2);
|
|
Type_t* L_4;
|
|
L_4 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_3, NULL);
|
|
NullCheck(L_4);
|
|
String_t* L_5;
|
|
L_5 = VirtualFuncInvoker0< String_t* >::Invoke(41, L_4);
|
|
ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB* L_6 = (ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var)));
|
|
ObjectDisposedException__ctor_mB2C8582279AF3F0C1CF9AA52DA7331BF848DFD48(L_6, L_5, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, method);
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
int32_t L_7 = __this->___ofc;
|
|
cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* L_8 = __this->___ofb;
|
|
NullCheck(L_8);
|
|
int32_t L_9 = L_8->___version;
|
|
if ((((int32_t)L_7) == ((int32_t)L_9)))
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_10 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral939E321B3BC3283885C39B094F4D1D4D7394394E)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, method);
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_jky_m8674A8C369C9EB245ADA1AE45E619A3B8CD08615_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E*>(__this + _offset);
|
|
cys_jky_m8674A8C369C9EB245ADA1AE45E619A3B8CD08615(_thisAdjusted, method);
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* cys_idk_m84ED354BA669D6B1C7F931E36019CC1D7CF9AB69_gshared (cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cys_idi_m5967E53DF3E09BE08150A8018145E2CCACF61786(__this, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 0));
|
|
int32_t L_0 = __this->___next;
|
|
if ((((int32_t)L_0) > ((int32_t)0)))
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_m1BE9BD198B904AA1D94F4B10DA88077DFD44B7A5(L_1, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
int32_t L_2 = __this->___current;
|
|
int32_t L_3 = L_2;
|
|
RuntimeObject* L_4 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_3);
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C RuntimeObject* cys_idk_m84ED354BA669D6B1C7F931E36019CC1D7CF9AB69_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065*>(__this + _offset);
|
|
RuntimeObject* _returnValue;
|
|
_returnValue = cys_idk_m84ED354BA669D6B1C7F931E36019CC1D7CF9AB69(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_idi_m5967E53DF3E09BE08150A8018145E2CCACF61786_gshared (cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* L_0 = __this->___ofb;
|
|
if (L_0)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065 L_1 = (*(cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065*)__this);
|
|
cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065 L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_2);
|
|
Type_t* L_4;
|
|
L_4 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_3, NULL);
|
|
NullCheck(L_4);
|
|
String_t* L_5;
|
|
L_5 = VirtualFuncInvoker0< String_t* >::Invoke(41, L_4);
|
|
ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB* L_6 = (ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var)));
|
|
ObjectDisposedException__ctor_mB2C8582279AF3F0C1CF9AA52DA7331BF848DFD48(L_6, L_5, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, method);
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
int32_t L_7 = __this->___ofc;
|
|
cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* L_8 = __this->___ofb;
|
|
NullCheck(L_8);
|
|
int32_t L_9 = L_8->___version;
|
|
if ((((int32_t)L_7) == ((int32_t)L_9)))
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_10 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, method);
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_idi_m5967E53DF3E09BE08150A8018145E2CCACF61786_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065*>(__this + _offset);
|
|
cys_idi_m5967E53DF3E09BE08150A8018145E2CCACF61786(_thisAdjusted, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_dv_m9C05D83F102786252BF614B9E3F7365C46E7C7CE_gshared (cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* L_0 = __this->___ofb;
|
|
if (L_0)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065 L_1 = (*(cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065*)__this);
|
|
cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065 L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_2);
|
|
Type_t* L_4;
|
|
L_4 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_3, NULL);
|
|
NullCheck(L_4);
|
|
String_t* L_5;
|
|
L_5 = VirtualFuncInvoker0< String_t* >::Invoke(41, L_4);
|
|
ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB* L_6 = (ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var)));
|
|
ObjectDisposedException__ctor_mB2C8582279AF3F0C1CF9AA52DA7331BF848DFD48(L_6, L_5, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, method);
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
int32_t L_7 = __this->___ofc;
|
|
cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* L_8 = __this->___ofb;
|
|
NullCheck(L_8);
|
|
int32_t L_9 = L_8->___version;
|
|
if ((((int32_t)L_7) == ((int32_t)L_9)))
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_10 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1E924365FC1E94C4C209B1C179563C22941C3835)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, method);
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_dv_m9C05D83F102786252BF614B9E3F7365C46E7C7CE_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065*>(__this + _offset);
|
|
cys_dv_m9C05D83F102786252BF614B9E3F7365C46E7C7CE(_thisAdjusted, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cys_get_Current_m04F1E8E43C0FE931BD84ED9D05E29CD561CB7E35_gshared (cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___current;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t cys_get_Current_m04F1E8E43C0FE931BD84ED9D05E29CD561CB7E35_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = cys_get_Current_m04F1E8E43C0FE931BD84ED9D05E29CD561CB7E35_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool cys_MoveNext_mFF58230C5D859148565FBB6CAEC74B3D61D461D0_gshared (cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
cys_idi_m5967E53DF3E09BE08150A8018145E2CCACF61786(__this, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 0));
|
|
int32_t L_0 = __this->___next;
|
|
if ((((int32_t)L_0) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
int32_t L_1 = __this->___next;
|
|
cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* L_2 = __this->___ofb;
|
|
NullCheck(L_2);
|
|
int32_t L_3 = L_2->___Count;
|
|
if ((((int32_t)L_1) >= ((int32_t)L_3)))
|
|
{
|
|
goto IL_004d;
|
|
}
|
|
}
|
|
{
|
|
cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* L_4 = __this->___ofb;
|
|
NullCheck(L_4);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_5 = L_4->___Items;
|
|
int32_t L_6 = __this->___next;
|
|
V_0 = L_6;
|
|
int32_t L_7 = V_0;
|
|
__this->___next = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
int32_t L_8 = V_0;
|
|
NullCheck(L_5);
|
|
int32_t L_9 = L_8;
|
|
int32_t L_10 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
|
|
__this->___current = L_10;
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
__this->___next = (-1);
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool cys_MoveNext_mFF58230C5D859148565FBB6CAEC74B3D61D461D0_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = cys_MoveNext_mFF58230C5D859148565FBB6CAEC74B3D61D461D0(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_idj_m26594FAB1E17F4473EBA11E666067ECCC47677A0_gshared (cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cys_idi_m5967E53DF3E09BE08150A8018145E2CCACF61786(__this, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 0));
|
|
__this->___next = 0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_idj_m26594FAB1E17F4473EBA11E666067ECCC47677A0_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065*>(__this + _offset);
|
|
cys_idj_m26594FAB1E17F4473EBA11E666067ECCC47677A0(_thisAdjusted, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_mnk_mB5DE0B2F1F886F1EE1CE0DF90F8CAF159CDCA671_gshared (cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* L_0 = __this->___ofb;
|
|
if (L_0)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065 L_1 = (*(cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065*)__this);
|
|
cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065 L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_2);
|
|
Type_t* L_4;
|
|
L_4 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_3, NULL);
|
|
NullCheck(L_4);
|
|
String_t* L_5;
|
|
L_5 = VirtualFuncInvoker0< String_t* >::Invoke(41, L_4);
|
|
ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB* L_6 = (ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var)));
|
|
ObjectDisposedException__ctor_mB2C8582279AF3F0C1CF9AA52DA7331BF848DFD48(L_6, L_5, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, method);
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
int32_t L_7 = __this->___ofc;
|
|
cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* L_8 = __this->___ofb;
|
|
NullCheck(L_8);
|
|
int32_t L_9 = L_8->___version;
|
|
if ((((int32_t)L_7) == ((int32_t)L_9)))
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_10 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral332BBECD906D16D8DBF8E7EB9136708162DD15B1)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, method);
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_mnk_mB5DE0B2F1F886F1EE1CE0DF90F8CAF159CDCA671_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065*>(__this + _offset);
|
|
cys_mnk_mB5DE0B2F1F886F1EE1CE0DF90F8CAF159CDCA671(_thisAdjusted, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_Dispose_m43D751C8B5A3B79B0C44BB191F842E7994B6D2BA_gshared (cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
__this->___ofb = (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___ofb), (void*)(cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_Dispose_m43D751C8B5A3B79B0C44BB191F842E7994B6D2BA_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065*>(__this + _offset);
|
|
cys_Dispose_m43D751C8B5A3B79B0C44BB191F842E7994B6D2BA(_thisAdjusted, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys__ctor_m561ABAEF039B47DBBEF5E346EA307714237B8138_gshared (cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065* __this, cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
il2cpp_codegen_initobj(__this, sizeof(cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065));
|
|
cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* L_0 = ___0_a;
|
|
__this->___ofb = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___ofb), (void*)L_0);
|
|
cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* L_1 = ___0_a;
|
|
NullCheck(L_1);
|
|
int32_t L_2 = L_1->___version;
|
|
__this->___ofc = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys__ctor_m561ABAEF039B47DBBEF5E346EA307714237B8138_AdjustorThunk (RuntimeObject* __this, cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065*>(__this + _offset);
|
|
cys__ctor_m561ABAEF039B47DBBEF5E346EA307714237B8138(_thisAdjusted, ___0_a, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_jky_m1D71798355FDB8FB552C3BAD9E376DB1B04604DD_gshared (cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* L_0 = __this->___ofb;
|
|
if (L_0)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065 L_1 = (*(cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065*)__this);
|
|
cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065 L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_2);
|
|
Type_t* L_4;
|
|
L_4 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_3, NULL);
|
|
NullCheck(L_4);
|
|
String_t* L_5;
|
|
L_5 = VirtualFuncInvoker0< String_t* >::Invoke(41, L_4);
|
|
ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB* L_6 = (ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var)));
|
|
ObjectDisposedException__ctor_mB2C8582279AF3F0C1CF9AA52DA7331BF848DFD48(L_6, L_5, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, method);
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
int32_t L_7 = __this->___ofc;
|
|
cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* L_8 = __this->___ofb;
|
|
NullCheck(L_8);
|
|
int32_t L_9 = L_8->___version;
|
|
if ((((int32_t)L_7) == ((int32_t)L_9)))
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_10 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral939E321B3BC3283885C39B094F4D1D4D7394394E)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, method);
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_jky_m1D71798355FDB8FB552C3BAD9E376DB1B04604DD_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065*>(__this + _offset);
|
|
cys_jky_m1D71798355FDB8FB552C3BAD9E376DB1B04604DD(_thisAdjusted, method);
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* cys_idk_m6F0CCD05E11FFBF7A29A18CAD3F4E44C464E1851_gshared (cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cys_idi_m26C5A1CF1CA835C8C3E0BF36536016E8808CAC6A(__this, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 0));
|
|
int32_t L_0 = __this->___next;
|
|
if ((((int32_t)L_0) > ((int32_t)0)))
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_m1BE9BD198B904AA1D94F4B10DA88077DFD44B7A5(L_1, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
RuntimeObject* L_2 = __this->___current;
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C RuntimeObject* cys_idk_m6F0CCD05E11FFBF7A29A18CAD3F4E44C464E1851_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857*>(__this + _offset);
|
|
RuntimeObject* _returnValue;
|
|
_returnValue = cys_idk_m6F0CCD05E11FFBF7A29A18CAD3F4E44C464E1851(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_idi_m26C5A1CF1CA835C8C3E0BF36536016E8808CAC6A_gshared (cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* L_0 = __this->___ofb;
|
|
if (L_0)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857 L_1 = (*(cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857*)__this);
|
|
cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857 L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_2);
|
|
Type_t* L_4;
|
|
L_4 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_3, NULL);
|
|
NullCheck(L_4);
|
|
String_t* L_5;
|
|
L_5 = VirtualFuncInvoker0< String_t* >::Invoke(41, L_4);
|
|
ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB* L_6 = (ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var)));
|
|
ObjectDisposedException__ctor_mB2C8582279AF3F0C1CF9AA52DA7331BF848DFD48(L_6, L_5, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, method);
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
int32_t L_7 = __this->___ofc;
|
|
cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* L_8 = __this->___ofb;
|
|
NullCheck(L_8);
|
|
int32_t L_9 = L_8->___version;
|
|
if ((((int32_t)L_7) == ((int32_t)L_9)))
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_10 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, method);
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_idi_m26C5A1CF1CA835C8C3E0BF36536016E8808CAC6A_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857*>(__this + _offset);
|
|
cys_idi_m26C5A1CF1CA835C8C3E0BF36536016E8808CAC6A(_thisAdjusted, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_dv_mA7FE9872507775A721481BE2C981EA899565DE68_gshared (cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* L_0 = __this->___ofb;
|
|
if (L_0)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857 L_1 = (*(cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857*)__this);
|
|
cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857 L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_2);
|
|
Type_t* L_4;
|
|
L_4 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_3, NULL);
|
|
NullCheck(L_4);
|
|
String_t* L_5;
|
|
L_5 = VirtualFuncInvoker0< String_t* >::Invoke(41, L_4);
|
|
ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB* L_6 = (ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var)));
|
|
ObjectDisposedException__ctor_mB2C8582279AF3F0C1CF9AA52DA7331BF848DFD48(L_6, L_5, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, method);
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
int32_t L_7 = __this->___ofc;
|
|
cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* L_8 = __this->___ofb;
|
|
NullCheck(L_8);
|
|
int32_t L_9 = L_8->___version;
|
|
if ((((int32_t)L_7) == ((int32_t)L_9)))
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_10 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1E924365FC1E94C4C209B1C179563C22941C3835)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, method);
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_dv_mA7FE9872507775A721481BE2C981EA899565DE68_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857*>(__this + _offset);
|
|
cys_dv_mA7FE9872507775A721481BE2C981EA899565DE68(_thisAdjusted, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* cys_get_Current_mBF618832B19ECD7644087857AE13039362481B5C_gshared (cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->___current;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C RuntimeObject* cys_get_Current_mBF618832B19ECD7644087857AE13039362481B5C_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857*>(__this + _offset);
|
|
RuntimeObject* _returnValue;
|
|
_returnValue = cys_get_Current_mBF618832B19ECD7644087857AE13039362481B5C_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool cys_MoveNext_mFEA0C00CDB2FC25555A75298A448171C29239868_gshared (cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
cys_idi_m26C5A1CF1CA835C8C3E0BF36536016E8808CAC6A(__this, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 0));
|
|
int32_t L_0 = __this->___next;
|
|
if ((((int32_t)L_0) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
int32_t L_1 = __this->___next;
|
|
cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* L_2 = __this->___ofb;
|
|
NullCheck(L_2);
|
|
int32_t L_3 = L_2->___Count;
|
|
if ((((int32_t)L_1) >= ((int32_t)L_3)))
|
|
{
|
|
goto IL_004d;
|
|
}
|
|
}
|
|
{
|
|
cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* L_4 = __this->___ofb;
|
|
NullCheck(L_4);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = L_4->___Items;
|
|
int32_t L_6 = __this->___next;
|
|
V_0 = L_6;
|
|
int32_t L_7 = V_0;
|
|
__this->___next = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
int32_t L_8 = V_0;
|
|
NullCheck(L_5);
|
|
int32_t L_9 = L_8;
|
|
RuntimeObject* L_10 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
|
|
__this->___current = L_10;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___current), (void*)L_10);
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
__this->___next = (-1);
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool cys_MoveNext_mFEA0C00CDB2FC25555A75298A448171C29239868_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = cys_MoveNext_mFEA0C00CDB2FC25555A75298A448171C29239868(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_idj_mF8ED6E00BF58C290FD611FFFEFDBC3C2C9B51465_gshared (cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cys_idi_m26C5A1CF1CA835C8C3E0BF36536016E8808CAC6A(__this, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 0));
|
|
__this->___next = 0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_idj_mF8ED6E00BF58C290FD611FFFEFDBC3C2C9B51465_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857*>(__this + _offset);
|
|
cys_idj_mF8ED6E00BF58C290FD611FFFEFDBC3C2C9B51465(_thisAdjusted, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_mnk_mD5CB7696922B45B312F1395C958B39E8ABF771F7_gshared (cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* L_0 = __this->___ofb;
|
|
if (L_0)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857 L_1 = (*(cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857*)__this);
|
|
cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857 L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_2);
|
|
Type_t* L_4;
|
|
L_4 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_3, NULL);
|
|
NullCheck(L_4);
|
|
String_t* L_5;
|
|
L_5 = VirtualFuncInvoker0< String_t* >::Invoke(41, L_4);
|
|
ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB* L_6 = (ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var)));
|
|
ObjectDisposedException__ctor_mB2C8582279AF3F0C1CF9AA52DA7331BF848DFD48(L_6, L_5, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, method);
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
int32_t L_7 = __this->___ofc;
|
|
cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* L_8 = __this->___ofb;
|
|
NullCheck(L_8);
|
|
int32_t L_9 = L_8->___version;
|
|
if ((((int32_t)L_7) == ((int32_t)L_9)))
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_10 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral332BBECD906D16D8DBF8E7EB9136708162DD15B1)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, method);
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_mnk_mD5CB7696922B45B312F1395C958B39E8ABF771F7_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857*>(__this + _offset);
|
|
cys_mnk_mD5CB7696922B45B312F1395C958B39E8ABF771F7(_thisAdjusted, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_Dispose_m5704E78F0DF91B2856629CCDD120DE0B2DF17AD5_gshared (cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
__this->___ofb = (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___ofb), (void*)(cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_Dispose_m5704E78F0DF91B2856629CCDD120DE0B2DF17AD5_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857*>(__this + _offset);
|
|
cys_Dispose_m5704E78F0DF91B2856629CCDD120DE0B2DF17AD5(_thisAdjusted, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys__ctor_m4BCA1B780A5FA6658EB7974E509C0F58771C4A1F_gshared (cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857* __this, cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
il2cpp_codegen_initobj(__this, sizeof(cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857));
|
|
cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* L_0 = ___0_a;
|
|
__this->___ofb = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___ofb), (void*)L_0);
|
|
cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* L_1 = ___0_a;
|
|
NullCheck(L_1);
|
|
int32_t L_2 = L_1->___version;
|
|
__this->___ofc = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys__ctor_m4BCA1B780A5FA6658EB7974E509C0F58771C4A1F_AdjustorThunk (RuntimeObject* __this, cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857*>(__this + _offset);
|
|
cys__ctor_m4BCA1B780A5FA6658EB7974E509C0F58771C4A1F(_thisAdjusted, ___0_a, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_jky_mE38620D3FCEDDC2E37A8AA2E29B3C62F62206719_gshared (cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* L_0 = __this->___ofb;
|
|
if (L_0)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857 L_1 = (*(cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857*)__this);
|
|
cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857 L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_2);
|
|
Type_t* L_4;
|
|
L_4 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_3, NULL);
|
|
NullCheck(L_4);
|
|
String_t* L_5;
|
|
L_5 = VirtualFuncInvoker0< String_t* >::Invoke(41, L_4);
|
|
ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB* L_6 = (ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var)));
|
|
ObjectDisposedException__ctor_mB2C8582279AF3F0C1CF9AA52DA7331BF848DFD48(L_6, L_5, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, method);
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
int32_t L_7 = __this->___ofc;
|
|
cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* L_8 = __this->___ofb;
|
|
NullCheck(L_8);
|
|
int32_t L_9 = L_8->___version;
|
|
if ((((int32_t)L_7) == ((int32_t)L_9)))
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_10 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral939E321B3BC3283885C39B094F4D1D4D7394394E)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, method);
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_jky_mE38620D3FCEDDC2E37A8AA2E29B3C62F62206719_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857*>(__this + _offset);
|
|
cys_jky_mE38620D3FCEDDC2E37A8AA2E29B3C62F62206719(_thisAdjusted, method);
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* cys_idk_m00F1FC50C5B1BBB70A7700973D4878E72788ED63_gshared (cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cys_idi_mD4E833D0B5B0DAA452953AB0AD804032A1FB7E9A(__this, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 0));
|
|
int32_t L_0 = __this->___next;
|
|
if ((((int32_t)L_0) > ((int32_t)0)))
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_m1BE9BD198B904AA1D94F4B10DA88077DFD44B7A5(L_1, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
float L_2 = __this->___current;
|
|
float L_3 = L_2;
|
|
RuntimeObject* L_4 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_3);
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C RuntimeObject* cys_idk_m00F1FC50C5B1BBB70A7700973D4878E72788ED63_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A*>(__this + _offset);
|
|
RuntimeObject* _returnValue;
|
|
_returnValue = cys_idk_m00F1FC50C5B1BBB70A7700973D4878E72788ED63(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_idi_mD4E833D0B5B0DAA452953AB0AD804032A1FB7E9A_gshared (cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* L_0 = __this->___ofb;
|
|
if (L_0)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A L_1 = (*(cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A*)__this);
|
|
cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_2);
|
|
Type_t* L_4;
|
|
L_4 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_3, NULL);
|
|
NullCheck(L_4);
|
|
String_t* L_5;
|
|
L_5 = VirtualFuncInvoker0< String_t* >::Invoke(41, L_4);
|
|
ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB* L_6 = (ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var)));
|
|
ObjectDisposedException__ctor_mB2C8582279AF3F0C1CF9AA52DA7331BF848DFD48(L_6, L_5, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, method);
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
int32_t L_7 = __this->___ofc;
|
|
cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* L_8 = __this->___ofb;
|
|
NullCheck(L_8);
|
|
int32_t L_9 = L_8->___version;
|
|
if ((((int32_t)L_7) == ((int32_t)L_9)))
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_10 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, method);
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_idi_mD4E833D0B5B0DAA452953AB0AD804032A1FB7E9A_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A*>(__this + _offset);
|
|
cys_idi_mD4E833D0B5B0DAA452953AB0AD804032A1FB7E9A(_thisAdjusted, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_dv_mE2CEC891F6190A279C31D1C1A132175EAEED7AB3_gshared (cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* L_0 = __this->___ofb;
|
|
if (L_0)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A L_1 = (*(cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A*)__this);
|
|
cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_2);
|
|
Type_t* L_4;
|
|
L_4 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_3, NULL);
|
|
NullCheck(L_4);
|
|
String_t* L_5;
|
|
L_5 = VirtualFuncInvoker0< String_t* >::Invoke(41, L_4);
|
|
ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB* L_6 = (ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var)));
|
|
ObjectDisposedException__ctor_mB2C8582279AF3F0C1CF9AA52DA7331BF848DFD48(L_6, L_5, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, method);
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
int32_t L_7 = __this->___ofc;
|
|
cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* L_8 = __this->___ofb;
|
|
NullCheck(L_8);
|
|
int32_t L_9 = L_8->___version;
|
|
if ((((int32_t)L_7) == ((int32_t)L_9)))
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_10 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1E924365FC1E94C4C209B1C179563C22941C3835)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, method);
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_dv_mE2CEC891F6190A279C31D1C1A132175EAEED7AB3_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A*>(__this + _offset);
|
|
cys_dv_mE2CEC891F6190A279C31D1C1A132175EAEED7AB3(_thisAdjusted, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float cys_get_Current_mDCFC317836094DBF4A2F23AF67AEC4505685C6BC_gshared (cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = __this->___current;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C float cys_get_Current_mDCFC317836094DBF4A2F23AF67AEC4505685C6BC_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A*>(__this + _offset);
|
|
float _returnValue;
|
|
_returnValue = cys_get_Current_mDCFC317836094DBF4A2F23AF67AEC4505685C6BC_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool cys_MoveNext_m3A6C013181A0F1493B082783A27ECCD9C5D2D5CB_gshared (cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
cys_idi_mD4E833D0B5B0DAA452953AB0AD804032A1FB7E9A(__this, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 0));
|
|
int32_t L_0 = __this->___next;
|
|
if ((((int32_t)L_0) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
int32_t L_1 = __this->___next;
|
|
cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* L_2 = __this->___ofb;
|
|
NullCheck(L_2);
|
|
int32_t L_3 = L_2->___Count;
|
|
if ((((int32_t)L_1) >= ((int32_t)L_3)))
|
|
{
|
|
goto IL_004d;
|
|
}
|
|
}
|
|
{
|
|
cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* L_4 = __this->___ofb;
|
|
NullCheck(L_4);
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_5 = L_4->___Items;
|
|
int32_t L_6 = __this->___next;
|
|
V_0 = L_6;
|
|
int32_t L_7 = V_0;
|
|
__this->___next = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
int32_t L_8 = V_0;
|
|
NullCheck(L_5);
|
|
int32_t L_9 = L_8;
|
|
float L_10 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
|
|
__this->___current = L_10;
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
__this->___next = (-1);
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool cys_MoveNext_m3A6C013181A0F1493B082783A27ECCD9C5D2D5CB_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = cys_MoveNext_m3A6C013181A0F1493B082783A27ECCD9C5D2D5CB(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_idj_mAA5527932AEB4C6FC9FBBDCFD85348144DCF3BC9_gshared (cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cys_idi_mD4E833D0B5B0DAA452953AB0AD804032A1FB7E9A(__this, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 0));
|
|
__this->___next = 0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_idj_mAA5527932AEB4C6FC9FBBDCFD85348144DCF3BC9_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A*>(__this + _offset);
|
|
cys_idj_mAA5527932AEB4C6FC9FBBDCFD85348144DCF3BC9(_thisAdjusted, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_mnk_m793978B020E8FF35045BE207DF98DD26282FFAAF_gshared (cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* L_0 = __this->___ofb;
|
|
if (L_0)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A L_1 = (*(cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A*)__this);
|
|
cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_2);
|
|
Type_t* L_4;
|
|
L_4 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_3, NULL);
|
|
NullCheck(L_4);
|
|
String_t* L_5;
|
|
L_5 = VirtualFuncInvoker0< String_t* >::Invoke(41, L_4);
|
|
ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB* L_6 = (ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var)));
|
|
ObjectDisposedException__ctor_mB2C8582279AF3F0C1CF9AA52DA7331BF848DFD48(L_6, L_5, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, method);
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
int32_t L_7 = __this->___ofc;
|
|
cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* L_8 = __this->___ofb;
|
|
NullCheck(L_8);
|
|
int32_t L_9 = L_8->___version;
|
|
if ((((int32_t)L_7) == ((int32_t)L_9)))
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_10 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral332BBECD906D16D8DBF8E7EB9136708162DD15B1)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, method);
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_mnk_m793978B020E8FF35045BE207DF98DD26282FFAAF_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A*>(__this + _offset);
|
|
cys_mnk_m793978B020E8FF35045BE207DF98DD26282FFAAF(_thisAdjusted, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_Dispose_m6DD2299EE74011189272210BA118FA0B4722CF23_gshared (cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
__this->___ofb = (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___ofb), (void*)(cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_Dispose_m6DD2299EE74011189272210BA118FA0B4722CF23_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A*>(__this + _offset);
|
|
cys_Dispose_m6DD2299EE74011189272210BA118FA0B4722CF23(_thisAdjusted, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys__ctor_m776E11C882C387E994659DD659698D509DCF6466_gshared (cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A* __this, cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
il2cpp_codegen_initobj(__this, sizeof(cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A));
|
|
cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* L_0 = ___0_a;
|
|
__this->___ofb = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___ofb), (void*)L_0);
|
|
cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* L_1 = ___0_a;
|
|
NullCheck(L_1);
|
|
int32_t L_2 = L_1->___version;
|
|
__this->___ofc = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys__ctor_m776E11C882C387E994659DD659698D509DCF6466_AdjustorThunk (RuntimeObject* __this, cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A*>(__this + _offset);
|
|
cys__ctor_m776E11C882C387E994659DD659698D509DCF6466(_thisAdjusted, ___0_a, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_jky_m65928A9C5852F7531985D0B5142D86AD0009DA25_gshared (cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* L_0 = __this->___ofb;
|
|
if (L_0)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A L_1 = (*(cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A*)__this);
|
|
cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_2);
|
|
Type_t* L_4;
|
|
L_4 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_3, NULL);
|
|
NullCheck(L_4);
|
|
String_t* L_5;
|
|
L_5 = VirtualFuncInvoker0< String_t* >::Invoke(41, L_4);
|
|
ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB* L_6 = (ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var)));
|
|
ObjectDisposedException__ctor_mB2C8582279AF3F0C1CF9AA52DA7331BF848DFD48(L_6, L_5, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, method);
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
int32_t L_7 = __this->___ofc;
|
|
cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* L_8 = __this->___ofb;
|
|
NullCheck(L_8);
|
|
int32_t L_9 = L_8->___version;
|
|
if ((((int32_t)L_7) == ((int32_t)L_9)))
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_10 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral939E321B3BC3283885C39B094F4D1D4D7394394E)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, method);
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_jky_m65928A9C5852F7531985D0B5142D86AD0009DA25_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A*>(__this + _offset);
|
|
cys_jky_m65928A9C5852F7531985D0B5142D86AD0009DA25(_thisAdjusted, method);
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* cys_idk_mB40E94A2E9F48BA1837B662A662D32FBD9145A7F_gshared (cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cys_idi_mC0CD4F7DAEB0F98C99863B8887A8AE541B6AE0FD(__this, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 0));
|
|
int32_t L_0 = __this->___next;
|
|
if ((((int32_t)L_0) > ((int32_t)0)))
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_m1BE9BD198B904AA1D94F4B10DA88077DFD44B7A5(L_1, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2 = __this->___current;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3 = L_2;
|
|
RuntimeObject* L_4 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_3);
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C RuntimeObject* cys_idk_mB40E94A2E9F48BA1837B662A662D32FBD9145A7F_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B*>(__this + _offset);
|
|
RuntimeObject* _returnValue;
|
|
_returnValue = cys_idk_mB40E94A2E9F48BA1837B662A662D32FBD9145A7F(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_idi_mC0CD4F7DAEB0F98C99863B8887A8AE541B6AE0FD_gshared (cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cyt_1_tAC49A9A02241EC5ED0F5205BDF7AE399C207BC04* L_0 = __this->___ofb;
|
|
if (L_0)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B L_1 = (*(cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B*)__this);
|
|
cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_2);
|
|
Type_t* L_4;
|
|
L_4 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_3, NULL);
|
|
NullCheck(L_4);
|
|
String_t* L_5;
|
|
L_5 = VirtualFuncInvoker0< String_t* >::Invoke(41, L_4);
|
|
ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB* L_6 = (ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var)));
|
|
ObjectDisposedException__ctor_mB2C8582279AF3F0C1CF9AA52DA7331BF848DFD48(L_6, L_5, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, method);
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
int32_t L_7 = __this->___ofc;
|
|
cyt_1_tAC49A9A02241EC5ED0F5205BDF7AE399C207BC04* L_8 = __this->___ofb;
|
|
NullCheck(L_8);
|
|
int32_t L_9 = L_8->___version;
|
|
if ((((int32_t)L_7) == ((int32_t)L_9)))
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_10 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, method);
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_idi_mC0CD4F7DAEB0F98C99863B8887A8AE541B6AE0FD_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B*>(__this + _offset);
|
|
cys_idi_mC0CD4F7DAEB0F98C99863B8887A8AE541B6AE0FD(_thisAdjusted, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_dv_m0661DA4FD78750FB87084FFFEC07C50DA3463EEA_gshared (cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cyt_1_tAC49A9A02241EC5ED0F5205BDF7AE399C207BC04* L_0 = __this->___ofb;
|
|
if (L_0)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B L_1 = (*(cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B*)__this);
|
|
cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_2);
|
|
Type_t* L_4;
|
|
L_4 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_3, NULL);
|
|
NullCheck(L_4);
|
|
String_t* L_5;
|
|
L_5 = VirtualFuncInvoker0< String_t* >::Invoke(41, L_4);
|
|
ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB* L_6 = (ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var)));
|
|
ObjectDisposedException__ctor_mB2C8582279AF3F0C1CF9AA52DA7331BF848DFD48(L_6, L_5, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, method);
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
int32_t L_7 = __this->___ofc;
|
|
cyt_1_tAC49A9A02241EC5ED0F5205BDF7AE399C207BC04* L_8 = __this->___ofb;
|
|
NullCheck(L_8);
|
|
int32_t L_9 = L_8->___version;
|
|
if ((((int32_t)L_7) == ((int32_t)L_9)))
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_10 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1E924365FC1E94C4C209B1C179563C22941C3835)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, method);
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_dv_m0661DA4FD78750FB87084FFFEC07C50DA3463EEA_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B*>(__this + _offset);
|
|
cys_dv_m0661DA4FD78750FB87084FFFEC07C50DA3463EEA(_thisAdjusted, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 cys_get_Current_mDF53D0EC8DE9A04D8A6EBB01B063F4CF698AB87A_gshared (cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___current;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 cys_get_Current_mDF53D0EC8DE9A04D8A6EBB01B063F4CF698AB87A_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B*>(__this + _offset);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 _returnValue;
|
|
_returnValue = cys_get_Current_mDF53D0EC8DE9A04D8A6EBB01B063F4CF698AB87A_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool cys_MoveNext_m13AB4BB32E0A1CEFAF8782295EFE08BD8E6C545F_gshared (cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
cys_idi_mC0CD4F7DAEB0F98C99863B8887A8AE541B6AE0FD(__this, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 0));
|
|
int32_t L_0 = __this->___next;
|
|
if ((((int32_t)L_0) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
int32_t L_1 = __this->___next;
|
|
cyt_1_tAC49A9A02241EC5ED0F5205BDF7AE399C207BC04* L_2 = __this->___ofb;
|
|
NullCheck(L_2);
|
|
int32_t L_3 = L_2->___Count;
|
|
if ((((int32_t)L_1) >= ((int32_t)L_3)))
|
|
{
|
|
goto IL_004d;
|
|
}
|
|
}
|
|
{
|
|
cyt_1_tAC49A9A02241EC5ED0F5205BDF7AE399C207BC04* L_4 = __this->___ofb;
|
|
NullCheck(L_4);
|
|
Vector2U5BU5D_tFEBBC94BCC6C9C88277BA04047D2B3FDB6ED7FDA* L_5 = L_4->___Items;
|
|
int32_t L_6 = __this->___next;
|
|
V_0 = L_6;
|
|
int32_t L_7 = V_0;
|
|
__this->___next = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
int32_t L_8 = V_0;
|
|
NullCheck(L_5);
|
|
int32_t L_9 = L_8;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_10 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
|
|
__this->___current = L_10;
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
__this->___next = (-1);
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool cys_MoveNext_m13AB4BB32E0A1CEFAF8782295EFE08BD8E6C545F_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = cys_MoveNext_m13AB4BB32E0A1CEFAF8782295EFE08BD8E6C545F(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_idj_m40CECDE3418DE5074D1A0B2ED5D621C9E067F890_gshared (cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cys_idi_mC0CD4F7DAEB0F98C99863B8887A8AE541B6AE0FD(__this, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 0));
|
|
__this->___next = 0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_idj_m40CECDE3418DE5074D1A0B2ED5D621C9E067F890_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B*>(__this + _offset);
|
|
cys_idj_m40CECDE3418DE5074D1A0B2ED5D621C9E067F890(_thisAdjusted, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_mnk_mE9CAAE3F53BDCB9B94D554B06D28415CF2AEC2A7_gshared (cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cyt_1_tAC49A9A02241EC5ED0F5205BDF7AE399C207BC04* L_0 = __this->___ofb;
|
|
if (L_0)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B L_1 = (*(cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B*)__this);
|
|
cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_2);
|
|
Type_t* L_4;
|
|
L_4 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_3, NULL);
|
|
NullCheck(L_4);
|
|
String_t* L_5;
|
|
L_5 = VirtualFuncInvoker0< String_t* >::Invoke(41, L_4);
|
|
ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB* L_6 = (ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var)));
|
|
ObjectDisposedException__ctor_mB2C8582279AF3F0C1CF9AA52DA7331BF848DFD48(L_6, L_5, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, method);
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
int32_t L_7 = __this->___ofc;
|
|
cyt_1_tAC49A9A02241EC5ED0F5205BDF7AE399C207BC04* L_8 = __this->___ofb;
|
|
NullCheck(L_8);
|
|
int32_t L_9 = L_8->___version;
|
|
if ((((int32_t)L_7) == ((int32_t)L_9)))
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_10 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral332BBECD906D16D8DBF8E7EB9136708162DD15B1)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, method);
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_mnk_mE9CAAE3F53BDCB9B94D554B06D28415CF2AEC2A7_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B*>(__this + _offset);
|
|
cys_mnk_mE9CAAE3F53BDCB9B94D554B06D28415CF2AEC2A7(_thisAdjusted, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_Dispose_mADDA5FCE8456AE8104C66667C3E6D60FAB9DE064_gshared (cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
__this->___ofb = (cyt_1_tAC49A9A02241EC5ED0F5205BDF7AE399C207BC04*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___ofb), (void*)(cyt_1_tAC49A9A02241EC5ED0F5205BDF7AE399C207BC04*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_Dispose_mADDA5FCE8456AE8104C66667C3E6D60FAB9DE064_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B*>(__this + _offset);
|
|
cys_Dispose_mADDA5FCE8456AE8104C66667C3E6D60FAB9DE064(_thisAdjusted, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys__ctor_m2E43A753F45BE7DE9C04594A748BD8C74F1B4339_gshared (cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B* __this, cyt_1_tAC49A9A02241EC5ED0F5205BDF7AE399C207BC04* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
il2cpp_codegen_initobj(__this, sizeof(cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B));
|
|
cyt_1_tAC49A9A02241EC5ED0F5205BDF7AE399C207BC04* L_0 = ___0_a;
|
|
__this->___ofb = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___ofb), (void*)L_0);
|
|
cyt_1_tAC49A9A02241EC5ED0F5205BDF7AE399C207BC04* L_1 = ___0_a;
|
|
NullCheck(L_1);
|
|
int32_t L_2 = L_1->___version;
|
|
__this->___ofc = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys__ctor_m2E43A753F45BE7DE9C04594A748BD8C74F1B4339_AdjustorThunk (RuntimeObject* __this, cyt_1_tAC49A9A02241EC5ED0F5205BDF7AE399C207BC04* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B*>(__this + _offset);
|
|
cys__ctor_m2E43A753F45BE7DE9C04594A748BD8C74F1B4339(_thisAdjusted, ___0_a, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_jky_mFD60D17A527BF765DC0D75691A5EB1F3425EFEBE_gshared (cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cyt_1_tAC49A9A02241EC5ED0F5205BDF7AE399C207BC04* L_0 = __this->___ofb;
|
|
if (L_0)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B L_1 = (*(cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B*)__this);
|
|
cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_2);
|
|
Type_t* L_4;
|
|
L_4 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_3, NULL);
|
|
NullCheck(L_4);
|
|
String_t* L_5;
|
|
L_5 = VirtualFuncInvoker0< String_t* >::Invoke(41, L_4);
|
|
ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB* L_6 = (ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var)));
|
|
ObjectDisposedException__ctor_mB2C8582279AF3F0C1CF9AA52DA7331BF848DFD48(L_6, L_5, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, method);
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
int32_t L_7 = __this->___ofc;
|
|
cyt_1_tAC49A9A02241EC5ED0F5205BDF7AE399C207BC04* L_8 = __this->___ofb;
|
|
NullCheck(L_8);
|
|
int32_t L_9 = L_8->___version;
|
|
if ((((int32_t)L_7) == ((int32_t)L_9)))
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_10 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral939E321B3BC3283885C39B094F4D1D4D7394394E)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, method);
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_jky_mFD60D17A527BF765DC0D75691A5EB1F3425EFEBE_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B*>(__this + _offset);
|
|
cys_jky_mFD60D17A527BF765DC0D75691A5EB1F3425EFEBE(_thisAdjusted, method);
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* cys_idk_mF641E332F0B2EE0E2923C3BE0DAE494BCF631CA7_gshared (cys_t77E50E15C644A5869C604882F1C802434F0A13BF* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cys_idi_mC11161AD9BA3C101D6537ACBE22E764F37DC0D7D(__this, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 0));
|
|
int32_t L_0 = __this->___next;
|
|
if ((((int32_t)L_0) > ((int32_t)0)))
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_m1BE9BD198B904AA1D94F4B10DA88077DFD44B7A5(L_1, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_2 = __this->___current;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_3 = L_2;
|
|
RuntimeObject* L_4 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_3);
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C RuntimeObject* cys_idk_mF641E332F0B2EE0E2923C3BE0DAE494BCF631CA7_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t77E50E15C644A5869C604882F1C802434F0A13BF* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t77E50E15C644A5869C604882F1C802434F0A13BF*>(__this + _offset);
|
|
RuntimeObject* _returnValue;
|
|
_returnValue = cys_idk_mF641E332F0B2EE0E2923C3BE0DAE494BCF631CA7(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_idi_mC11161AD9BA3C101D6537ACBE22E764F37DC0D7D_gshared (cys_t77E50E15C644A5869C604882F1C802434F0A13BF* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cyt_1_t8D44FE5690EE0881636F8CACF4B1781DB7253688* L_0 = __this->___ofb;
|
|
if (L_0)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
cys_t77E50E15C644A5869C604882F1C802434F0A13BF L_1 = (*(cys_t77E50E15C644A5869C604882F1C802434F0A13BF*)__this);
|
|
cys_t77E50E15C644A5869C604882F1C802434F0A13BF L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_2);
|
|
Type_t* L_4;
|
|
L_4 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_3, NULL);
|
|
NullCheck(L_4);
|
|
String_t* L_5;
|
|
L_5 = VirtualFuncInvoker0< String_t* >::Invoke(41, L_4);
|
|
ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB* L_6 = (ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var)));
|
|
ObjectDisposedException__ctor_mB2C8582279AF3F0C1CF9AA52DA7331BF848DFD48(L_6, L_5, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, method);
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
int32_t L_7 = __this->___ofc;
|
|
cyt_1_t8D44FE5690EE0881636F8CACF4B1781DB7253688* L_8 = __this->___ofb;
|
|
NullCheck(L_8);
|
|
int32_t L_9 = L_8->___version;
|
|
if ((((int32_t)L_7) == ((int32_t)L_9)))
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_10 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, method);
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_idi_mC11161AD9BA3C101D6537ACBE22E764F37DC0D7D_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t77E50E15C644A5869C604882F1C802434F0A13BF* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t77E50E15C644A5869C604882F1C802434F0A13BF*>(__this + _offset);
|
|
cys_idi_mC11161AD9BA3C101D6537ACBE22E764F37DC0D7D(_thisAdjusted, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_dv_m12BB373BBEC4E89ED235E21807CC777B2B100864_gshared (cys_t77E50E15C644A5869C604882F1C802434F0A13BF* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cyt_1_t8D44FE5690EE0881636F8CACF4B1781DB7253688* L_0 = __this->___ofb;
|
|
if (L_0)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
cys_t77E50E15C644A5869C604882F1C802434F0A13BF L_1 = (*(cys_t77E50E15C644A5869C604882F1C802434F0A13BF*)__this);
|
|
cys_t77E50E15C644A5869C604882F1C802434F0A13BF L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_2);
|
|
Type_t* L_4;
|
|
L_4 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_3, NULL);
|
|
NullCheck(L_4);
|
|
String_t* L_5;
|
|
L_5 = VirtualFuncInvoker0< String_t* >::Invoke(41, L_4);
|
|
ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB* L_6 = (ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var)));
|
|
ObjectDisposedException__ctor_mB2C8582279AF3F0C1CF9AA52DA7331BF848DFD48(L_6, L_5, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, method);
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
int32_t L_7 = __this->___ofc;
|
|
cyt_1_t8D44FE5690EE0881636F8CACF4B1781DB7253688* L_8 = __this->___ofb;
|
|
NullCheck(L_8);
|
|
int32_t L_9 = L_8->___version;
|
|
if ((((int32_t)L_7) == ((int32_t)L_9)))
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_10 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1E924365FC1E94C4C209B1C179563C22941C3835)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, method);
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_dv_m12BB373BBEC4E89ED235E21807CC777B2B100864_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t77E50E15C644A5869C604882F1C802434F0A13BF* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t77E50E15C644A5869C604882F1C802434F0A13BF*>(__this + _offset);
|
|
cys_dv_m12BB373BBEC4E89ED235E21807CC777B2B100864(_thisAdjusted, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 cys_get_Current_mB80B9F698D53881E8BDE21444ADDBE6794BBD328_gshared (cys_t77E50E15C644A5869C604882F1C802434F0A13BF* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = __this->___current;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 cys_get_Current_mB80B9F698D53881E8BDE21444ADDBE6794BBD328_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t77E50E15C644A5869C604882F1C802434F0A13BF* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t77E50E15C644A5869C604882F1C802434F0A13BF*>(__this + _offset);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 _returnValue;
|
|
_returnValue = cys_get_Current_mB80B9F698D53881E8BDE21444ADDBE6794BBD328_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool cys_MoveNext_m039B3EE352604CD32240D2603C30C560E7776AEB_gshared (cys_t77E50E15C644A5869C604882F1C802434F0A13BF* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
cys_idi_mC11161AD9BA3C101D6537ACBE22E764F37DC0D7D(__this, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 0));
|
|
int32_t L_0 = __this->___next;
|
|
if ((((int32_t)L_0) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
int32_t L_1 = __this->___next;
|
|
cyt_1_t8D44FE5690EE0881636F8CACF4B1781DB7253688* L_2 = __this->___ofb;
|
|
NullCheck(L_2);
|
|
int32_t L_3 = L_2->___Count;
|
|
if ((((int32_t)L_1) >= ((int32_t)L_3)))
|
|
{
|
|
goto IL_004d;
|
|
}
|
|
}
|
|
{
|
|
cyt_1_t8D44FE5690EE0881636F8CACF4B1781DB7253688* L_4 = __this->___ofb;
|
|
NullCheck(L_4);
|
|
Vector3U5BU5D_tFF1859CCE176131B909E2044F76443064254679C* L_5 = L_4->___Items;
|
|
int32_t L_6 = __this->___next;
|
|
V_0 = L_6;
|
|
int32_t L_7 = V_0;
|
|
__this->___next = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
int32_t L_8 = V_0;
|
|
NullCheck(L_5);
|
|
int32_t L_9 = L_8;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_10 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
|
|
__this->___current = L_10;
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
__this->___next = (-1);
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool cys_MoveNext_m039B3EE352604CD32240D2603C30C560E7776AEB_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t77E50E15C644A5869C604882F1C802434F0A13BF* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t77E50E15C644A5869C604882F1C802434F0A13BF*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = cys_MoveNext_m039B3EE352604CD32240D2603C30C560E7776AEB(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_idj_m83E21C37047B78003A2D4C023FDD9A37D0C37670_gshared (cys_t77E50E15C644A5869C604882F1C802434F0A13BF* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cys_idi_mC11161AD9BA3C101D6537ACBE22E764F37DC0D7D(__this, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 0));
|
|
__this->___next = 0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_idj_m83E21C37047B78003A2D4C023FDD9A37D0C37670_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t77E50E15C644A5869C604882F1C802434F0A13BF* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t77E50E15C644A5869C604882F1C802434F0A13BF*>(__this + _offset);
|
|
cys_idj_m83E21C37047B78003A2D4C023FDD9A37D0C37670(_thisAdjusted, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_mnk_mD4FA4245687059585F0482F4ABAF8AC92143A208_gshared (cys_t77E50E15C644A5869C604882F1C802434F0A13BF* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cyt_1_t8D44FE5690EE0881636F8CACF4B1781DB7253688* L_0 = __this->___ofb;
|
|
if (L_0)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
cys_t77E50E15C644A5869C604882F1C802434F0A13BF L_1 = (*(cys_t77E50E15C644A5869C604882F1C802434F0A13BF*)__this);
|
|
cys_t77E50E15C644A5869C604882F1C802434F0A13BF L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_2);
|
|
Type_t* L_4;
|
|
L_4 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_3, NULL);
|
|
NullCheck(L_4);
|
|
String_t* L_5;
|
|
L_5 = VirtualFuncInvoker0< String_t* >::Invoke(41, L_4);
|
|
ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB* L_6 = (ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var)));
|
|
ObjectDisposedException__ctor_mB2C8582279AF3F0C1CF9AA52DA7331BF848DFD48(L_6, L_5, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, method);
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
int32_t L_7 = __this->___ofc;
|
|
cyt_1_t8D44FE5690EE0881636F8CACF4B1781DB7253688* L_8 = __this->___ofb;
|
|
NullCheck(L_8);
|
|
int32_t L_9 = L_8->___version;
|
|
if ((((int32_t)L_7) == ((int32_t)L_9)))
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_10 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral332BBECD906D16D8DBF8E7EB9136708162DD15B1)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, method);
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_mnk_mD4FA4245687059585F0482F4ABAF8AC92143A208_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t77E50E15C644A5869C604882F1C802434F0A13BF* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t77E50E15C644A5869C604882F1C802434F0A13BF*>(__this + _offset);
|
|
cys_mnk_mD4FA4245687059585F0482F4ABAF8AC92143A208(_thisAdjusted, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_Dispose_mA64CA0E0391020D502C075CC2BE0495C4C8C0AFF_gshared (cys_t77E50E15C644A5869C604882F1C802434F0A13BF* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
__this->___ofb = (cyt_1_t8D44FE5690EE0881636F8CACF4B1781DB7253688*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___ofb), (void*)(cyt_1_t8D44FE5690EE0881636F8CACF4B1781DB7253688*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_Dispose_mA64CA0E0391020D502C075CC2BE0495C4C8C0AFF_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t77E50E15C644A5869C604882F1C802434F0A13BF* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t77E50E15C644A5869C604882F1C802434F0A13BF*>(__this + _offset);
|
|
cys_Dispose_mA64CA0E0391020D502C075CC2BE0495C4C8C0AFF(_thisAdjusted, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys__ctor_m9549D2A0F20C5E3C6B6CEDBA25E65FF923FCE390_gshared (cys_t77E50E15C644A5869C604882F1C802434F0A13BF* __this, cyt_1_t8D44FE5690EE0881636F8CACF4B1781DB7253688* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
il2cpp_codegen_initobj(__this, sizeof(cys_t77E50E15C644A5869C604882F1C802434F0A13BF));
|
|
cyt_1_t8D44FE5690EE0881636F8CACF4B1781DB7253688* L_0 = ___0_a;
|
|
__this->___ofb = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___ofb), (void*)L_0);
|
|
cyt_1_t8D44FE5690EE0881636F8CACF4B1781DB7253688* L_1 = ___0_a;
|
|
NullCheck(L_1);
|
|
int32_t L_2 = L_1->___version;
|
|
__this->___ofc = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys__ctor_m9549D2A0F20C5E3C6B6CEDBA25E65FF923FCE390_AdjustorThunk (RuntimeObject* __this, cyt_1_t8D44FE5690EE0881636F8CACF4B1781DB7253688* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
cys_t77E50E15C644A5869C604882F1C802434F0A13BF* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t77E50E15C644A5869C604882F1C802434F0A13BF*>(__this + _offset);
|
|
cys__ctor_m9549D2A0F20C5E3C6B6CEDBA25E65FF923FCE390(_thisAdjusted, ___0_a, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_jky_m9307CFC6654090089F2E8AC51C5CC1696067CADB_gshared (cys_t77E50E15C644A5869C604882F1C802434F0A13BF* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cyt_1_t8D44FE5690EE0881636F8CACF4B1781DB7253688* L_0 = __this->___ofb;
|
|
if (L_0)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
cys_t77E50E15C644A5869C604882F1C802434F0A13BF L_1 = (*(cys_t77E50E15C644A5869C604882F1C802434F0A13BF*)__this);
|
|
cys_t77E50E15C644A5869C604882F1C802434F0A13BF L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_2);
|
|
Type_t* L_4;
|
|
L_4 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_3, NULL);
|
|
NullCheck(L_4);
|
|
String_t* L_5;
|
|
L_5 = VirtualFuncInvoker0< String_t* >::Invoke(41, L_4);
|
|
ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB* L_6 = (ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var)));
|
|
ObjectDisposedException__ctor_mB2C8582279AF3F0C1CF9AA52DA7331BF848DFD48(L_6, L_5, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, method);
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
int32_t L_7 = __this->___ofc;
|
|
cyt_1_t8D44FE5690EE0881636F8CACF4B1781DB7253688* L_8 = __this->___ofb;
|
|
NullCheck(L_8);
|
|
int32_t L_9 = L_8->___version;
|
|
if ((((int32_t)L_7) == ((int32_t)L_9)))
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_10 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral939E321B3BC3283885C39B094F4D1D4D7394394E)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, method);
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_jky_m9307CFC6654090089F2E8AC51C5CC1696067CADB_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t77E50E15C644A5869C604882F1C802434F0A13BF* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t77E50E15C644A5869C604882F1C802434F0A13BF*>(__this + _offset);
|
|
cys_jky_m9307CFC6654090089F2E8AC51C5CC1696067CADB(_thisAdjusted, method);
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* cys_idk_mDDBE95613A26344185419E20B53399E033C8C705_gshared (cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6* __this, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_a_t1F3B09BFC6039ED89FDC0B784290590512CABF82 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
const Il2CppFullySharedGenericAny L_2 = alloca(SizeOf_a_t1F3B09BFC6039ED89FDC0B784290590512CABF82);
|
|
{
|
|
(( void (*) (cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 0)))(__this, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 0));
|
|
int32_t L_0 = *(int32_t*)il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2),1));
|
|
if ((((int32_t)L_0) > ((int32_t)0)))
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_m1BE9BD198B904AA1D94F4B10DA88077DFD44B7A5(L_1, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
il2cpp_codegen_memcpy(L_2, il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2),3)), SizeOf_a_t1F3B09BFC6039ED89FDC0B784290590512CABF82);
|
|
RuntimeObject* L_3 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 3), L_2);
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C RuntimeObject* cys_idk_mDDBE95613A26344185419E20B53399E033C8C705_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6*>(__this + _offset);
|
|
RuntimeObject* _returnValue;
|
|
_returnValue = cys_idk_mDDBE95613A26344185419E20B53399E033C8C705(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_idi_m92B334BDB5A1E6A68983E0B1DCB6E93B7C657691_gshared (cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6* __this, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_cys_tC8E8030DF7DD901D7C9CBBF28D68D685204B5D78 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2));
|
|
const cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6 L_1 = alloca(SizeOf_cys_tC8E8030DF7DD901D7C9CBBF28D68D685204B5D78);
|
|
{
|
|
cyt_1_tE46DA8E7A261663B67DB2F6E839FA69F43D02A30* L_0 = *(cyt_1_tE46DA8E7A261663B67DB2F6E839FA69F43D02A30**)il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2),0));
|
|
if (L_0)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_memcpy(L_1, __this, SizeOf_cys_tC8E8030DF7DD901D7C9CBBF28D68D685204B5D78);
|
|
RuntimeObject* L_2 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2), L_1);
|
|
Type_t* L_3;
|
|
L_3 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_2, NULL);
|
|
NullCheck(L_3);
|
|
String_t* L_4;
|
|
L_4 = VirtualFuncInvoker0< String_t* >::Invoke(41, L_3);
|
|
ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB* L_5 = (ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var)));
|
|
ObjectDisposedException__ctor_mB2C8582279AF3F0C1CF9AA52DA7331BF848DFD48(L_5, L_4, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, method);
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
int32_t L_6 = *(int32_t*)il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2),2));
|
|
cyt_1_tE46DA8E7A261663B67DB2F6E839FA69F43D02A30* L_7 = *(cyt_1_tE46DA8E7A261663B67DB2F6E839FA69F43D02A30**)il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2),0));
|
|
NullCheck(L_7);
|
|
int32_t L_8 = L_7->___version;
|
|
if ((((int32_t)L_6) == ((int32_t)L_8)))
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_9 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, method);
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_idi_m92B334BDB5A1E6A68983E0B1DCB6E93B7C657691_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6*>(__this + _offset);
|
|
cys_idi_m92B334BDB5A1E6A68983E0B1DCB6E93B7C657691(_thisAdjusted, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_dv_mEB8101A65517AF34070833F2B921D3CFEB76FDA3_gshared (cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6* __this, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_cys_tC8E8030DF7DD901D7C9CBBF28D68D685204B5D78 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2));
|
|
const cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6 L_1 = alloca(SizeOf_cys_tC8E8030DF7DD901D7C9CBBF28D68D685204B5D78);
|
|
{
|
|
cyt_1_tE46DA8E7A261663B67DB2F6E839FA69F43D02A30* L_0 = *(cyt_1_tE46DA8E7A261663B67DB2F6E839FA69F43D02A30**)il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2),0));
|
|
if (L_0)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_memcpy(L_1, __this, SizeOf_cys_tC8E8030DF7DD901D7C9CBBF28D68D685204B5D78);
|
|
RuntimeObject* L_2 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2), L_1);
|
|
Type_t* L_3;
|
|
L_3 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_2, NULL);
|
|
NullCheck(L_3);
|
|
String_t* L_4;
|
|
L_4 = VirtualFuncInvoker0< String_t* >::Invoke(41, L_3);
|
|
ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB* L_5 = (ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var)));
|
|
ObjectDisposedException__ctor_mB2C8582279AF3F0C1CF9AA52DA7331BF848DFD48(L_5, L_4, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, method);
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
int32_t L_6 = *(int32_t*)il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2),2));
|
|
cyt_1_tE46DA8E7A261663B67DB2F6E839FA69F43D02A30* L_7 = *(cyt_1_tE46DA8E7A261663B67DB2F6E839FA69F43D02A30**)il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2),0));
|
|
NullCheck(L_7);
|
|
int32_t L_8 = L_7->___version;
|
|
if ((((int32_t)L_6) == ((int32_t)L_8)))
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_9 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1E924365FC1E94C4C209B1C179563C22941C3835)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, method);
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_dv_mEB8101A65517AF34070833F2B921D3CFEB76FDA3_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6*>(__this + _offset);
|
|
cys_dv_mEB8101A65517AF34070833F2B921D3CFEB76FDA3(_thisAdjusted, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_get_Current_m3EBD976DFDC709C10833CE3C65A5CBF1183E81FF_gshared (cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6* __this, Il2CppFullySharedGenericAny* il2cppRetVal, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_a_t1F3B09BFC6039ED89FDC0B784290590512CABF82 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
const Il2CppFullySharedGenericAny L_0 = alloca(SizeOf_a_t1F3B09BFC6039ED89FDC0B784290590512CABF82);
|
|
{
|
|
il2cpp_codegen_memcpy(L_0, il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2),3)), SizeOf_a_t1F3B09BFC6039ED89FDC0B784290590512CABF82);
|
|
il2cpp_codegen_memcpy(il2cppRetVal, L_0, SizeOf_a_t1F3B09BFC6039ED89FDC0B784290590512CABF82);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_get_Current_m3EBD976DFDC709C10833CE3C65A5CBF1183E81FF_AdjustorThunk (RuntimeObject* __this, Il2CppFullySharedGenericAny* il2cppRetVal, const RuntimeMethod* method)
|
|
{
|
|
cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6*>(__this + _offset);
|
|
cys_get_Current_m3EBD976DFDC709C10833CE3C65A5CBF1183E81FF_inline(_thisAdjusted, il2cppRetVal, method);
|
|
return;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool cys_MoveNext_mDF570482FC3C4783273A59DD8758A1017023CAC2_gshared (cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6* __this, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_a_t1F3B09BFC6039ED89FDC0B784290590512CABF82 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
const Il2CppFullySharedGenericAny L_10 = alloca(SizeOf_a_t1F3B09BFC6039ED89FDC0B784290590512CABF82);
|
|
int32_t V_0 = 0;
|
|
{
|
|
(( void (*) (cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 0)))(__this, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 0));
|
|
int32_t L_0 = *(int32_t*)il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2),1));
|
|
if ((((int32_t)L_0) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
int32_t L_1 = *(int32_t*)il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2),1));
|
|
cyt_1_tE46DA8E7A261663B67DB2F6E839FA69F43D02A30* L_2 = *(cyt_1_tE46DA8E7A261663B67DB2F6E839FA69F43D02A30**)il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2),0));
|
|
NullCheck(L_2);
|
|
int32_t L_3 = L_2->___Count;
|
|
if ((((int32_t)L_1) >= ((int32_t)L_3)))
|
|
{
|
|
goto IL_004d;
|
|
}
|
|
}
|
|
{
|
|
cyt_1_tE46DA8E7A261663B67DB2F6E839FA69F43D02A30* L_4 = *(cyt_1_tE46DA8E7A261663B67DB2F6E839FA69F43D02A30**)il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2),0));
|
|
NullCheck(L_4);
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* L_5 = L_4->___Items;
|
|
int32_t L_6 = *(int32_t*)il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2),1));
|
|
V_0 = L_6;
|
|
int32_t L_7 = V_0;
|
|
il2cpp_codegen_write_instance_field_data<int32_t>(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2),1), ((int32_t)il2cpp_codegen_add(L_7, 1)));
|
|
int32_t L_8 = V_0;
|
|
NullCheck(L_5);
|
|
int32_t L_9 = L_8;
|
|
il2cpp_codegen_memcpy(L_10, (L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_9)), SizeOf_a_t1F3B09BFC6039ED89FDC0B784290590512CABF82);
|
|
il2cpp_codegen_write_instance_field_data(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2),3), L_10, SizeOf_a_t1F3B09BFC6039ED89FDC0B784290590512CABF82);
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
il2cpp_codegen_write_instance_field_data<int32_t>(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2),1), (-1));
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool cys_MoveNext_mDF570482FC3C4783273A59DD8758A1017023CAC2_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = cys_MoveNext_mDF570482FC3C4783273A59DD8758A1017023CAC2(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_idj_mB658C70034E229BF4091A1A1BDF4492F817C6318_gshared (cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
(( void (*) (cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 0)))(__this, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 0));
|
|
il2cpp_codegen_write_instance_field_data<int32_t>(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2),1), 0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_idj_mB658C70034E229BF4091A1A1BDF4492F817C6318_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6*>(__this + _offset);
|
|
cys_idj_mB658C70034E229BF4091A1A1BDF4492F817C6318(_thisAdjusted, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_mnk_mE46450750F4D5059E70877C9109B3794BC698DD5_gshared (cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6* __this, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_cys_tC8E8030DF7DD901D7C9CBBF28D68D685204B5D78 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2));
|
|
const cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6 L_1 = alloca(SizeOf_cys_tC8E8030DF7DD901D7C9CBBF28D68D685204B5D78);
|
|
{
|
|
cyt_1_tE46DA8E7A261663B67DB2F6E839FA69F43D02A30* L_0 = *(cyt_1_tE46DA8E7A261663B67DB2F6E839FA69F43D02A30**)il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2),0));
|
|
if (L_0)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_memcpy(L_1, __this, SizeOf_cys_tC8E8030DF7DD901D7C9CBBF28D68D685204B5D78);
|
|
RuntimeObject* L_2 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2), L_1);
|
|
Type_t* L_3;
|
|
L_3 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_2, NULL);
|
|
NullCheck(L_3);
|
|
String_t* L_4;
|
|
L_4 = VirtualFuncInvoker0< String_t* >::Invoke(41, L_3);
|
|
ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB* L_5 = (ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var)));
|
|
ObjectDisposedException__ctor_mB2C8582279AF3F0C1CF9AA52DA7331BF848DFD48(L_5, L_4, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, method);
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
int32_t L_6 = *(int32_t*)il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2),2));
|
|
cyt_1_tE46DA8E7A261663B67DB2F6E839FA69F43D02A30* L_7 = *(cyt_1_tE46DA8E7A261663B67DB2F6E839FA69F43D02A30**)il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2),0));
|
|
NullCheck(L_7);
|
|
int32_t L_8 = L_7->___version;
|
|
if ((((int32_t)L_6) == ((int32_t)L_8)))
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_9 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral332BBECD906D16D8DBF8E7EB9136708162DD15B1)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, method);
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_mnk_mE46450750F4D5059E70877C9109B3794BC698DD5_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6*>(__this + _offset);
|
|
cys_mnk_mE46450750F4D5059E70877C9109B3794BC698DD5(_thisAdjusted, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_Dispose_mB8B112839E3195BAE6F1071D95D667C469F370C8_gshared (cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
il2cpp_codegen_write_instance_field_data<cyt_1_tE46DA8E7A261663B67DB2F6E839FA69F43D02A30*>(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2),0), (cyt_1_tE46DA8E7A261663B67DB2F6E839FA69F43D02A30*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_Dispose_mB8B112839E3195BAE6F1071D95D667C469F370C8_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6*>(__this + _offset);
|
|
cys_Dispose_mB8B112839E3195BAE6F1071D95D667C469F370C8(_thisAdjusted, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys__ctor_m59655E395274A60591B39B246479C7BFA6047918_gshared (cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6* __this, cyt_1_tE46DA8E7A261663B67DB2F6E839FA69F43D02A30* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_cys_tC8E8030DF7DD901D7C9CBBF28D68D685204B5D78 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2));
|
|
{
|
|
il2cpp_codegen_initobj(__this, SizeOf_cys_tC8E8030DF7DD901D7C9CBBF28D68D685204B5D78);
|
|
cyt_1_tE46DA8E7A261663B67DB2F6E839FA69F43D02A30* L_0 = ___0_a;
|
|
il2cpp_codegen_write_instance_field_data<cyt_1_tE46DA8E7A261663B67DB2F6E839FA69F43D02A30*>(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2),0), L_0);
|
|
cyt_1_tE46DA8E7A261663B67DB2F6E839FA69F43D02A30* L_1 = ___0_a;
|
|
NullCheck(L_1);
|
|
int32_t L_2 = L_1->___version;
|
|
il2cpp_codegen_write_instance_field_data<int32_t>(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2),2), L_2);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys__ctor_m59655E395274A60591B39B246479C7BFA6047918_AdjustorThunk (RuntimeObject* __this, cyt_1_tE46DA8E7A261663B67DB2F6E839FA69F43D02A30* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6*>(__this + _offset);
|
|
cys__ctor_m59655E395274A60591B39B246479C7BFA6047918(_thisAdjusted, ___0_a, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_jky_m94AB67D19B9396EE7E1E0257B90A9213FCEE2448_gshared (cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6* __this, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_cys_tC8E8030DF7DD901D7C9CBBF28D68D685204B5D78 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2));
|
|
const cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6 L_1 = alloca(SizeOf_cys_tC8E8030DF7DD901D7C9CBBF28D68D685204B5D78);
|
|
{
|
|
cyt_1_tE46DA8E7A261663B67DB2F6E839FA69F43D02A30* L_0 = *(cyt_1_tE46DA8E7A261663B67DB2F6E839FA69F43D02A30**)il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2),0));
|
|
if (L_0)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_memcpy(L_1, __this, SizeOf_cys_tC8E8030DF7DD901D7C9CBBF28D68D685204B5D78);
|
|
RuntimeObject* L_2 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2), L_1);
|
|
Type_t* L_3;
|
|
L_3 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_2, NULL);
|
|
NullCheck(L_3);
|
|
String_t* L_4;
|
|
L_4 = VirtualFuncInvoker0< String_t* >::Invoke(41, L_3);
|
|
ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB* L_5 = (ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var)));
|
|
ObjectDisposedException__ctor_mB2C8582279AF3F0C1CF9AA52DA7331BF848DFD48(L_5, L_4, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, method);
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
int32_t L_6 = *(int32_t*)il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2),2));
|
|
cyt_1_tE46DA8E7A261663B67DB2F6E839FA69F43D02A30* L_7 = *(cyt_1_tE46DA8E7A261663B67DB2F6E839FA69F43D02A30**)il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2),0));
|
|
NullCheck(L_7);
|
|
int32_t L_8 = L_7->___version;
|
|
if ((((int32_t)L_6) == ((int32_t)L_8)))
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_9 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral939E321B3BC3283885C39B094F4D1D4D7394394E)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, method);
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_jky_m94AB67D19B9396EE7E1E0257B90A9213FCEE2448_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6*>(__this + _offset);
|
|
cys_jky_m94AB67D19B9396EE7E1E0257B90A9213FCEE2448(_thisAdjusted, method);
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* cys_idk_mA76614A09D1B3197A228B19491370C793E9D860A_gshared (cys_t365734F47A79063EC450869FBF066C01AC209CAB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cys_idi_m95172B6333C1FB31D470FE6D031A33468E13D721(__this, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 0));
|
|
int32_t L_0 = __this->___next;
|
|
if ((((int32_t)L_0) > ((int32_t)0)))
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_m1BE9BD198B904AA1D94F4B10DA88077DFD44B7A5(L_1, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
dbw_tEF892A66F1417E423BAA34A1EE22306A5B496ABE L_2 = __this->___current;
|
|
dbw_tEF892A66F1417E423BAA34A1EE22306A5B496ABE L_3 = L_2;
|
|
RuntimeObject* L_4 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_3);
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C RuntimeObject* cys_idk_mA76614A09D1B3197A228B19491370C793E9D860A_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t365734F47A79063EC450869FBF066C01AC209CAB* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t365734F47A79063EC450869FBF066C01AC209CAB*>(__this + _offset);
|
|
RuntimeObject* _returnValue;
|
|
_returnValue = cys_idk_mA76614A09D1B3197A228B19491370C793E9D860A(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_idi_m95172B6333C1FB31D470FE6D031A33468E13D721_gshared (cys_t365734F47A79063EC450869FBF066C01AC209CAB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cyt_1_t195133DDC4F4198CCCCFD063FFB746780BBCE98F* L_0 = __this->___ofb;
|
|
if (L_0)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
cys_t365734F47A79063EC450869FBF066C01AC209CAB L_1 = (*(cys_t365734F47A79063EC450869FBF066C01AC209CAB*)__this);
|
|
cys_t365734F47A79063EC450869FBF066C01AC209CAB L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_2);
|
|
Type_t* L_4;
|
|
L_4 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_3, NULL);
|
|
NullCheck(L_4);
|
|
String_t* L_5;
|
|
L_5 = VirtualFuncInvoker0< String_t* >::Invoke(41, L_4);
|
|
ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB* L_6 = (ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var)));
|
|
ObjectDisposedException__ctor_mB2C8582279AF3F0C1CF9AA52DA7331BF848DFD48(L_6, L_5, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, method);
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
int32_t L_7 = __this->___ofc;
|
|
cyt_1_t195133DDC4F4198CCCCFD063FFB746780BBCE98F* L_8 = __this->___ofb;
|
|
NullCheck(L_8);
|
|
int32_t L_9 = L_8->___version;
|
|
if ((((int32_t)L_7) == ((int32_t)L_9)))
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_10 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, method);
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_idi_m95172B6333C1FB31D470FE6D031A33468E13D721_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t365734F47A79063EC450869FBF066C01AC209CAB* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t365734F47A79063EC450869FBF066C01AC209CAB*>(__this + _offset);
|
|
cys_idi_m95172B6333C1FB31D470FE6D031A33468E13D721(_thisAdjusted, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_dv_m10417B7B218B9CEE503FF3D3C536EB2BD588F954_gshared (cys_t365734F47A79063EC450869FBF066C01AC209CAB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cyt_1_t195133DDC4F4198CCCCFD063FFB746780BBCE98F* L_0 = __this->___ofb;
|
|
if (L_0)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
cys_t365734F47A79063EC450869FBF066C01AC209CAB L_1 = (*(cys_t365734F47A79063EC450869FBF066C01AC209CAB*)__this);
|
|
cys_t365734F47A79063EC450869FBF066C01AC209CAB L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_2);
|
|
Type_t* L_4;
|
|
L_4 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_3, NULL);
|
|
NullCheck(L_4);
|
|
String_t* L_5;
|
|
L_5 = VirtualFuncInvoker0< String_t* >::Invoke(41, L_4);
|
|
ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB* L_6 = (ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var)));
|
|
ObjectDisposedException__ctor_mB2C8582279AF3F0C1CF9AA52DA7331BF848DFD48(L_6, L_5, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, method);
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
int32_t L_7 = __this->___ofc;
|
|
cyt_1_t195133DDC4F4198CCCCFD063FFB746780BBCE98F* L_8 = __this->___ofb;
|
|
NullCheck(L_8);
|
|
int32_t L_9 = L_8->___version;
|
|
if ((((int32_t)L_7) == ((int32_t)L_9)))
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_10 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1E924365FC1E94C4C209B1C179563C22941C3835)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, method);
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_dv_m10417B7B218B9CEE503FF3D3C536EB2BD588F954_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t365734F47A79063EC450869FBF066C01AC209CAB* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t365734F47A79063EC450869FBF066C01AC209CAB*>(__this + _offset);
|
|
cys_dv_m10417B7B218B9CEE503FF3D3C536EB2BD588F954(_thisAdjusted, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR dbw_tEF892A66F1417E423BAA34A1EE22306A5B496ABE cys_get_Current_mD9E7BB9E8CDEACBA8743666545079A6A0EF018C9_gshared (cys_t365734F47A79063EC450869FBF066C01AC209CAB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
dbw_tEF892A66F1417E423BAA34A1EE22306A5B496ABE L_0 = __this->___current;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C dbw_tEF892A66F1417E423BAA34A1EE22306A5B496ABE cys_get_Current_mD9E7BB9E8CDEACBA8743666545079A6A0EF018C9_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t365734F47A79063EC450869FBF066C01AC209CAB* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t365734F47A79063EC450869FBF066C01AC209CAB*>(__this + _offset);
|
|
dbw_tEF892A66F1417E423BAA34A1EE22306A5B496ABE _returnValue;
|
|
_returnValue = cys_get_Current_mD9E7BB9E8CDEACBA8743666545079A6A0EF018C9_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool cys_MoveNext_m5DF8A208D0E6686A231FD1E513C7AB13B293EB93_gshared (cys_t365734F47A79063EC450869FBF066C01AC209CAB* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
cys_idi_m95172B6333C1FB31D470FE6D031A33468E13D721(__this, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 0));
|
|
int32_t L_0 = __this->___next;
|
|
if ((((int32_t)L_0) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
int32_t L_1 = __this->___next;
|
|
cyt_1_t195133DDC4F4198CCCCFD063FFB746780BBCE98F* L_2 = __this->___ofb;
|
|
NullCheck(L_2);
|
|
int32_t L_3 = L_2->___Count;
|
|
if ((((int32_t)L_1) >= ((int32_t)L_3)))
|
|
{
|
|
goto IL_004d;
|
|
}
|
|
}
|
|
{
|
|
cyt_1_t195133DDC4F4198CCCCFD063FFB746780BBCE98F* L_4 = __this->___ofb;
|
|
NullCheck(L_4);
|
|
dbwU5BU5D_t73AB35C2E20D28F7324F522254A7B4A117C41139* L_5 = L_4->___Items;
|
|
int32_t L_6 = __this->___next;
|
|
V_0 = L_6;
|
|
int32_t L_7 = V_0;
|
|
__this->___next = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
int32_t L_8 = V_0;
|
|
NullCheck(L_5);
|
|
int32_t L_9 = L_8;
|
|
dbw_tEF892A66F1417E423BAA34A1EE22306A5B496ABE L_10 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
|
|
__this->___current = L_10;
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___current))->___skeleton), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___current))->___material), (void*)NULL);
|
|
#endif
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
__this->___next = (-1);
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool cys_MoveNext_m5DF8A208D0E6686A231FD1E513C7AB13B293EB93_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t365734F47A79063EC450869FBF066C01AC209CAB* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t365734F47A79063EC450869FBF066C01AC209CAB*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = cys_MoveNext_m5DF8A208D0E6686A231FD1E513C7AB13B293EB93(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_idj_mE6EF86F50BFECDD7713CE099D5BDF593ECC1A40B_gshared (cys_t365734F47A79063EC450869FBF066C01AC209CAB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cys_idi_m95172B6333C1FB31D470FE6D031A33468E13D721(__this, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 0));
|
|
__this->___next = 0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_idj_mE6EF86F50BFECDD7713CE099D5BDF593ECC1A40B_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t365734F47A79063EC450869FBF066C01AC209CAB* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t365734F47A79063EC450869FBF066C01AC209CAB*>(__this + _offset);
|
|
cys_idj_mE6EF86F50BFECDD7713CE099D5BDF593ECC1A40B(_thisAdjusted, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_mnk_m04B598FD5F78FDB4CF19F395B1B54102D16025AB_gshared (cys_t365734F47A79063EC450869FBF066C01AC209CAB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cyt_1_t195133DDC4F4198CCCCFD063FFB746780BBCE98F* L_0 = __this->___ofb;
|
|
if (L_0)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
cys_t365734F47A79063EC450869FBF066C01AC209CAB L_1 = (*(cys_t365734F47A79063EC450869FBF066C01AC209CAB*)__this);
|
|
cys_t365734F47A79063EC450869FBF066C01AC209CAB L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_2);
|
|
Type_t* L_4;
|
|
L_4 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_3, NULL);
|
|
NullCheck(L_4);
|
|
String_t* L_5;
|
|
L_5 = VirtualFuncInvoker0< String_t* >::Invoke(41, L_4);
|
|
ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB* L_6 = (ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var)));
|
|
ObjectDisposedException__ctor_mB2C8582279AF3F0C1CF9AA52DA7331BF848DFD48(L_6, L_5, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, method);
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
int32_t L_7 = __this->___ofc;
|
|
cyt_1_t195133DDC4F4198CCCCFD063FFB746780BBCE98F* L_8 = __this->___ofb;
|
|
NullCheck(L_8);
|
|
int32_t L_9 = L_8->___version;
|
|
if ((((int32_t)L_7) == ((int32_t)L_9)))
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_10 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral332BBECD906D16D8DBF8E7EB9136708162DD15B1)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, method);
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_mnk_m04B598FD5F78FDB4CF19F395B1B54102D16025AB_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t365734F47A79063EC450869FBF066C01AC209CAB* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t365734F47A79063EC450869FBF066C01AC209CAB*>(__this + _offset);
|
|
cys_mnk_m04B598FD5F78FDB4CF19F395B1B54102D16025AB(_thisAdjusted, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_Dispose_mFA59393BC3809E7FBCB43229FFFAEAE8BC6BD775_gshared (cys_t365734F47A79063EC450869FBF066C01AC209CAB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
__this->___ofb = (cyt_1_t195133DDC4F4198CCCCFD063FFB746780BBCE98F*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___ofb), (void*)(cyt_1_t195133DDC4F4198CCCCFD063FFB746780BBCE98F*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_Dispose_mFA59393BC3809E7FBCB43229FFFAEAE8BC6BD775_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t365734F47A79063EC450869FBF066C01AC209CAB* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t365734F47A79063EC450869FBF066C01AC209CAB*>(__this + _offset);
|
|
cys_Dispose_mFA59393BC3809E7FBCB43229FFFAEAE8BC6BD775(_thisAdjusted, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys__ctor_mD2F7B1CBBE01256939793123A18D55B930542212_gshared (cys_t365734F47A79063EC450869FBF066C01AC209CAB* __this, cyt_1_t195133DDC4F4198CCCCFD063FFB746780BBCE98F* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
il2cpp_codegen_initobj(__this, sizeof(cys_t365734F47A79063EC450869FBF066C01AC209CAB));
|
|
cyt_1_t195133DDC4F4198CCCCFD063FFB746780BBCE98F* L_0 = ___0_a;
|
|
__this->___ofb = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___ofb), (void*)L_0);
|
|
cyt_1_t195133DDC4F4198CCCCFD063FFB746780BBCE98F* L_1 = ___0_a;
|
|
NullCheck(L_1);
|
|
int32_t L_2 = L_1->___version;
|
|
__this->___ofc = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys__ctor_mD2F7B1CBBE01256939793123A18D55B930542212_AdjustorThunk (RuntimeObject* __this, cyt_1_t195133DDC4F4198CCCCFD063FFB746780BBCE98F* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
cys_t365734F47A79063EC450869FBF066C01AC209CAB* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t365734F47A79063EC450869FBF066C01AC209CAB*>(__this + _offset);
|
|
cys__ctor_mD2F7B1CBBE01256939793123A18D55B930542212(_thisAdjusted, ___0_a, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cys_jky_mCC93C312A5095EE3177001ECE0772467ACF3B45A_gshared (cys_t365734F47A79063EC450869FBF066C01AC209CAB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cyt_1_t195133DDC4F4198CCCCFD063FFB746780BBCE98F* L_0 = __this->___ofb;
|
|
if (L_0)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
cys_t365734F47A79063EC450869FBF066C01AC209CAB L_1 = (*(cys_t365734F47A79063EC450869FBF066C01AC209CAB*)__this);
|
|
cys_t365734F47A79063EC450869FBF066C01AC209CAB L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_2);
|
|
Type_t* L_4;
|
|
L_4 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_3, NULL);
|
|
NullCheck(L_4);
|
|
String_t* L_5;
|
|
L_5 = VirtualFuncInvoker0< String_t* >::Invoke(41, L_4);
|
|
ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB* L_6 = (ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB_il2cpp_TypeInfo_var)));
|
|
ObjectDisposedException__ctor_mB2C8582279AF3F0C1CF9AA52DA7331BF848DFD48(L_6, L_5, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, method);
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
int32_t L_7 = __this->___ofc;
|
|
cyt_1_t195133DDC4F4198CCCCFD063FFB746780BBCE98F* L_8 = __this->___ofb;
|
|
NullCheck(L_8);
|
|
int32_t L_9 = L_8->___version;
|
|
if ((((int32_t)L_7) == ((int32_t)L_9)))
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_10 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral939E321B3BC3283885C39B094F4D1D4D7394394E)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, method);
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void cys_jky_mCC93C312A5095EE3177001ECE0772467ACF3B45A_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
cys_t365734F47A79063EC450869FBF066C01AC209CAB* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<cys_t365734F47A79063EC450869FBF066C01AC209CAB*>(__this + _offset);
|
|
cys_jky_mCC93C312A5095EE3177001ECE0772467ACF3B45A(_thisAdjusted, method);
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1__ctor_m98E820B107202E0F4FA5C04E41CD82CA1743B5C2_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_0 = ((cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___ofe;
|
|
__this->___Items = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___Items), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1__ctor_m2517F0F7F4B6F219D443239E6A6FFD5E1C1B77D2_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, RuntimeObject* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
RuntimeObject* L_0 = ___0_a;
|
|
cyt_1_idu_m19A3803CC32F886BEE7ED1A7A9B025445C8824D5(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
|
|
RuntimeObject* L_1 = ___0_a;
|
|
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 5)));
|
|
RuntimeObject* L_2 = V_0;
|
|
if (L_2)
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_3 = ((cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___ofe;
|
|
__this->___Items = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___Items), (void*)L_3);
|
|
RuntimeObject* L_4 = ___0_a;
|
|
cyt_1_idn_mB44CD7B73297D9EB78D98089D1049A77C185740E(__this, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 6));
|
|
return;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
RuntimeObject* L_5 = V_0;
|
|
NullCheck(L_5);
|
|
int32_t L_6;
|
|
L_6 = InterfaceFuncInvoker0< int32_t >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_5);
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_7 = (BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*)(BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 8), (uint32_t)L_6);
|
|
__this->___Items = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___Items), (void*)L_7);
|
|
RuntimeObject* L_8 = V_0;
|
|
cyt_1_idm_mDBE626649C20EE56AB09C271CBED41C7D0A4D648(__this, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 9));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_GrowIfNeeded_m170426BB762510B0EDC7469DBDFF3E358DDEDD8F_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_addedCount, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
int32_t L_1 = ___0_addedCount;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_0, L_1));
|
|
int32_t L_2 = V_0;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_3 = __this->___Items;
|
|
NullCheck(L_3);
|
|
if ((((int32_t)L_2) <= ((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_4;
|
|
L_4 = cyt_1_get_Capacity_m873E1F2B4E91E2EABDA65C6D6761D4A06D50E2F5(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
int32_t L_5;
|
|
L_5 = Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF(((int32_t)il2cpp_codegen_multiply(L_4, 2)), 4, NULL);
|
|
int32_t L_6 = V_0;
|
|
int32_t L_7;
|
|
L_7 = Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF(L_5, L_6, NULL);
|
|
cyt_1_set_Capacity_mEFCC5C996BD8F4399A2732A86673F025DA38AA3B(__this, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_RemoveAt_m8E67B4F554A52DB59D68A0F384CE64C880D95D14_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_index;
|
|
int32_t L_2 = __this->___Count;
|
|
if ((!(((uint32_t)L_1) >= ((uint32_t)L_2))))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
int32_t L_4 = ___0_index;
|
|
cyt_1_ids_m2D7113C5C63FC4A32BF8B9B23A509D9AD026E4A1(__this, L_4, (-1), il2cpp_rgctx_method(method->klass->rgctx_data, 12));
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_5 = __this->___Items;
|
|
int32_t L_6 = __this->___Count;
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_5, L_6, 1, NULL);
|
|
int32_t L_7 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_fpr_m2C34795D09228F07B8E0885552D02ADAF89514A8_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
Comparer_1_t075B18A0921F760D040E0D8BFE6637CE0E1587E4* L_2;
|
|
L_2 = Comparer_1_get_Default_mCFD1A9E7464C248AC312558B9D4F772D8BE3B07C(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
Array_Sort_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mCADEE7E401B19F98A7128D14C34529B99C2A5FB1(L_0, 0, L_1, (RuntimeObject*)L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
int32_t L_3 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_3, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_BinarySearch_m448FA789CA7EE3E6F0E62A426C1ECC59E64CE691_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, bool ___0_item, RuntimeObject* ___1_comparer, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
bool L_2 = ___0_item;
|
|
RuntimeObject* L_3 = ___1_comparer;
|
|
int32_t L_4;
|
|
L_4 = Array_BinarySearch_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mF5D007014F2546628D6B17F48DE03086E13BB12B(L_0, 0, L_1, L_2, L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 19));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_RemoveRange_m243ACCC7D80986FE0D433868E27767E009E3FCE3_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_index, int32_t ___1_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1 = ___1_count;
|
|
cyt_1_idl_m4B8A33E4A5122A586A0E5955F3EF67917EB10A33(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
int32_t L_2 = ___1_count;
|
|
if ((((int32_t)L_2) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = ___0_index;
|
|
int32_t L_4 = ___1_count;
|
|
cyt_1_ids_m2D7113C5C63FC4A32BF8B9B23A509D9AD026E4A1(__this, L_3, ((-L_4)), il2cpp_rgctx_method(method->klass->rgctx_data, 12));
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_5 = __this->___Items;
|
|
int32_t L_6 = __this->___Count;
|
|
int32_t L_7 = ___1_count;
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_5, L_6, L_7, NULL);
|
|
int32_t L_8 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_8, 1));
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_ihk_mC71B4426FD5A1D67714EFCEBDB0724B53D38E93B_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, bool ___0_clearArray, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_clearArray;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_1 = __this->___Items;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_2 = __this->___Items;
|
|
NullCheck(L_2);
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_1, 0, ((int32_t)(((RuntimeArray*)L_2)->max_length)), NULL);
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
__this->___Count = 0;
|
|
int32_t L_3 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_3, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_LastIndexOf_mA18AAEFE8A8DE5C9220CF29A37D29D6DFC012F83_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, bool ___0_item, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___1_index;
|
|
cyt_1_idt_mA6658BB30895E3BBE1646640F38069C703E6EFE1(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 21));
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_1 = __this->___Items;
|
|
bool L_2 = ___0_item;
|
|
int32_t L_3 = ___1_index;
|
|
int32_t L_4 = ___1_index;
|
|
int32_t L_5;
|
|
L_5 = Array_LastIndexOf_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m845D2B272174E19367C54194C2C1E463C292547A(L_1, L_2, L_3, ((int32_t)il2cpp_codegen_add(L_4, 1)), il2cpp_rgctx_method(method->klass->rgctx_data, 22));
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool cyt_1_Remove_m850F252B8D364120D350D2CEDB42D5B00457BEBB_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, bool ___0_item, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
bool L_0 = ___0_item;
|
|
int32_t L_1;
|
|
L_1 = cyt_1_IndexOf_m3849088A6F73B9B70D237B153305E1F935DE2760(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 23));
|
|
V_0 = L_1;
|
|
int32_t L_2 = V_0;
|
|
if ((((int32_t)L_2) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = V_0;
|
|
cyt_1_RemoveAt_m8E67B4F554A52DB59D68A0F384CE64C880D95D14(__this, L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 24));
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
int32_t L_4 = V_0;
|
|
return (bool)((((int32_t)((((int32_t)L_4) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_get_Capacity_m873E1F2B4E91E2EABDA65C6D6761D4A06D50E2F5_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_0 = __this->___Items;
|
|
NullCheck(L_0);
|
|
return ((int32_t)(((RuntimeArray*)L_0)->max_length));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_AddRange_m6C769BEC9CA6BB48C9F56F05312020ACA3860986_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* ___0_list, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* L_0 = ___0_list;
|
|
cyt_1_idu_m19A3803CC32F886BEE7ED1A7A9B025445C8824D5(__this, (RuntimeObject*)L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
|
|
cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* L_1 = ___0_list;
|
|
NullCheck(L_1);
|
|
int32_t L_2 = L_1->___Count;
|
|
V_0 = L_2;
|
|
int32_t L_3 = V_0;
|
|
if (L_3)
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
int32_t L_4 = V_0;
|
|
cyt_1_GrowIfNeeded_m170426BB762510B0EDC7469DBDFF3E358DDEDD8F(__this, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 25));
|
|
cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* L_5 = ___0_list;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_6 = __this->___Items;
|
|
int32_t L_7 = __this->___Count;
|
|
NullCheck(L_5);
|
|
cyt_1_CopyTo_mC4E0CA80BB53FD1C5A24F88BFC48ED39250BC46C(L_5, L_6, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 26));
|
|
int32_t L_8 = __this->___Count;
|
|
int32_t L_9 = V_0;
|
|
__this->___Count = ((int32_t)il2cpp_codegen_add(L_8, L_9));
|
|
int32_t L_10 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_10, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_mcl_mFF4A372C7C62D886669AD485650939FEC8D6A242_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_addedCount, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
int32_t L_1 = ___0_addedCount;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_0, L_1));
|
|
int32_t L_2 = V_0;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_3 = __this->___Items;
|
|
NullCheck(L_3);
|
|
if ((((int32_t)L_2) <= ((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_4;
|
|
L_4 = cyt_1_get_Capacity_m873E1F2B4E91E2EABDA65C6D6761D4A06D50E2F5(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
int32_t L_5;
|
|
L_5 = Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF(((int32_t)il2cpp_codegen_multiply(L_4, 2)), 4, NULL);
|
|
int32_t L_6 = V_0;
|
|
int32_t L_7;
|
|
L_7 = Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF(L_5, L_6, NULL);
|
|
cyt_1_set_Capacity_mEFCC5C996BD8F4399A2732A86673F025DA38AA3B(__this, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool cyt_1_Pop_mBE085B80E53E97BCF76AE6751BE50E76A1D43744_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
bool V_1 = false;
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
if (L_0)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral57462D5D876383291750F779D30A75A0AD5ED4AE)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
int32_t L_2 = __this->___Count;
|
|
V_0 = ((int32_t)il2cpp_codegen_subtract(L_2, 1));
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_3 = __this->___Items;
|
|
int32_t L_4 = V_0;
|
|
NullCheck(L_3);
|
|
int32_t L_5 = L_4;
|
|
bool L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_7 = __this->___Items;
|
|
int32_t L_8 = V_0;
|
|
il2cpp_codegen_initobj((&V_1), sizeof(bool));
|
|
bool L_9 = V_1;
|
|
NullCheck(L_7);
|
|
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(L_8), (bool)L_9);
|
|
int32_t L_10 = __this->___Count;
|
|
__this->___Count = ((int32_t)il2cpp_codegen_subtract(L_10, 1));
|
|
int32_t L_11 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_11, 1));
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_LastIndexOf_m196EC53332BDEFA3E883D715B5D394BB1A6B094F_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, bool ___0_item, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_0 = __this->___Items;
|
|
bool L_1 = ___0_item;
|
|
int32_t L_2 = __this->___Count;
|
|
int32_t L_3 = __this->___Count;
|
|
int32_t L_4;
|
|
L_4 = Array_LastIndexOf_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m845D2B272174E19367C54194C2C1E463C292547A(L_0, L_1, ((int32_t)il2cpp_codegen_subtract(L_2, 1)), L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 22));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_cdv_m91BD41A5E8F4715D33CB5BABC96B655F8E547123_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
cyt_1_set_Capacity_mEFCC5C996BD8F4399A2732A86673F025DA38AA3B(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool cyt_1_Find_m9C1CB8E3850B74FEBCB45CC10C447C2EF7800E8C_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* ___0_match, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
bool V_1 = false;
|
|
{
|
|
Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* L_0 = ___0_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_m998DEE4F346CB07D570680ACD85014B00749B5A8(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
int32_t L_1 = __this->___Count;
|
|
Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* L_2 = ___0_match;
|
|
int32_t L_3;
|
|
L_3 = cyt_1_idq_mAC1FDAFCE883432EA61DA621FAA2C270ABDB046A(__this, 0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 29));
|
|
V_0 = L_3;
|
|
int32_t L_4 = V_0;
|
|
if ((!(((uint32_t)L_4) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_initobj((&V_1), sizeof(bool));
|
|
bool L_5 = V_1;
|
|
return L_5;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_6 = __this->___Items;
|
|
int32_t L_7 = V_0;
|
|
NullCheck(L_6);
|
|
int32_t L_8 = L_7;
|
|
bool L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
|
|
return L_9;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Clear_m6D106B9716F368141CDD81DE3EEB1ABC16FDDC36_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, bool ___0_clearArray, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_clearArray;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_1 = __this->___Items;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_2 = __this->___Items;
|
|
NullCheck(L_2);
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_1, 0, ((int32_t)(((RuntimeArray*)L_2)->max_length)), NULL);
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
__this->___Count = 0;
|
|
int32_t L_3 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_3, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idl_m4B8A33E4A5122A586A0E5955F3EF67917EB10A33_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_a, int32_t ___1_b, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
if ((((int32_t)L_0) >= ((int32_t)0)))
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_1 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
int32_t L_2 = ___1_b;
|
|
if ((((int32_t)L_2) >= ((int32_t)0)))
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral07624473F417C06C74D59C64840A1532FCE2C626)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
int32_t L_4 = ___0_a;
|
|
int32_t L_5 = ___1_b;
|
|
int32_t L_6 = __this->___Count;
|
|
if ((!(((uint32_t)((int32_t)il2cpp_codegen_add(L_4, L_5))) > ((uint32_t)L_6))))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_7 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8323D44D38CA9D8ED487159B21F762B262510EE5)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, method);
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_FindIndex_m2067C694E4A30D3F87FCA27D567443BEA2126543_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* ___0_match, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* L_0 = ___0_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_m998DEE4F346CB07D570680ACD85014B00749B5A8(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
int32_t L_1 = __this->___Count;
|
|
Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* L_2 = ___0_match;
|
|
int32_t L_3;
|
|
L_3 = cyt_1_idq_mAC1FDAFCE883432EA61DA621FAA2C270ABDB046A(__this, 0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 29));
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_cql_m0656A01F46CE9F13260AAFA36D7A73EF5E31F356_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
cyt_1_set_Capacity_mEFCC5C996BD8F4399A2732A86673F025DA38AA3B(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool cyt_1_Exists_m5D98503846C9B1D981D13ADA1421D8F6F4D4D56E_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* ___0_match, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* L_0 = ___0_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_m998DEE4F346CB07D570680ACD85014B00749B5A8(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
int32_t L_1 = __this->___Count;
|
|
Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* L_2 = ___0_match;
|
|
int32_t L_3;
|
|
L_3 = cyt_1_idq_mAC1FDAFCE883432EA61DA621FAA2C270ABDB046A(__this, 0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 29));
|
|
return (bool)((((int32_t)((((int32_t)L_3) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Insert_mEF46D0C9064528201BD359AEEE002ED6ACCE8FE5_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_index, bool ___1_item, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
cyt_1_idt_mA6658BB30895E3BBE1646640F38069C703E6EFE1(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 21));
|
|
int32_t L_1 = __this->___Count;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_2 = __this->___Items;
|
|
NullCheck(L_2);
|
|
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)(((RuntimeArray*)L_2)->max_length))))))
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
cyt_1_GrowIfNeeded_m170426BB762510B0EDC7469DBDFF3E358DDEDD8F(__this, 1, il2cpp_rgctx_method(method->klass->rgctx_data, 25));
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
int32_t L_3 = ___0_index;
|
|
cyt_1_ids_m2D7113C5C63FC4A32BF8B9B23A509D9AD026E4A1(__this, L_3, 1, il2cpp_rgctx_method(method->klass->rgctx_data, 12));
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_4 = __this->___Items;
|
|
int32_t L_5 = ___0_index;
|
|
bool L_6 = ___1_item;
|
|
NullCheck(L_4);
|
|
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (bool)L_6);
|
|
int32_t L_7 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_iqf_m3D10FA8C4F82983E5C5F0C83E7CDF62A09BFAC85_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_index, int32_t ___1_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1 = ___1_count;
|
|
cyt_1_idl_m4B8A33E4A5122A586A0E5955F3EF67917EB10A33(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
int32_t L_2 = ___1_count;
|
|
if ((((int32_t)L_2) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = ___0_index;
|
|
int32_t L_4 = ___1_count;
|
|
cyt_1_ids_m2D7113C5C63FC4A32BF8B9B23A509D9AD026E4A1(__this, L_3, ((-L_4)), il2cpp_rgctx_method(method->klass->rgctx_data, 12));
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_5 = __this->___Items;
|
|
int32_t L_6 = __this->___Count;
|
|
int32_t L_7 = ___1_count;
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_5, L_6, L_7, NULL);
|
|
int32_t L_8 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_8, 1));
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* cyt_1_FindAll_m989BF540CA99E6C086757B3618A9CC43C22BDAA7_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* ___0_match, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* L_0 = ___0_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_m998DEE4F346CB07D570680ACD85014B00749B5A8(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* L_1 = ___0_match;
|
|
cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* L_2;
|
|
L_2 = cyt_1_idp_m4DB8872250D16654B5E6BC549AFF82FB8AF9F1E0(__this, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 30));
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* cyt_1_idp_m4DB8872250D16654B5E6BC549AFF82FB8AF9F1E0_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* L_0 = (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 0));
|
|
cyt_1__ctor_m98E820B107202E0F4FA5C04E41CD82CA1743B5C2(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 31));
|
|
V_0 = L_0;
|
|
V_1 = 0;
|
|
goto IL_0034;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* L_1 = ___0_a;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_2 = __this->___Items;
|
|
int32_t L_3 = V_1;
|
|
NullCheck(L_2);
|
|
int32_t L_4 = L_3;
|
|
bool L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
|
|
NullCheck(L_1);
|
|
bool L_6;
|
|
L_6 = Predicate_1_Invoke_m5EB17D73F75C175B835656A7C7C137A266E07928_inline(L_1, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 32));
|
|
if (!L_6)
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
{
|
|
cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* L_7 = V_0;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_8 = __this->___Items;
|
|
int32_t L_9 = V_1;
|
|
NullCheck(L_8);
|
|
int32_t L_10 = L_9;
|
|
bool L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
|
|
NullCheck(L_7);
|
|
cyt_1_Add_mCB89DC75FC1990D446177FD25B269F8BF6305156(L_7, L_11, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
int32_t L_12 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_12, 1));
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
int32_t L_13 = V_1;
|
|
int32_t L_14 = __this->___Count;
|
|
if ((((int32_t)L_13) < ((int32_t)L_14)))
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* L_15 = V_0;
|
|
return L_15;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_jxj_m84FBF5E181C7F630BE84EF71339A6BFE4AD6713F_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_index, int32_t ___1_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1 = ___1_count;
|
|
cyt_1_idl_m4B8A33E4A5122A586A0E5955F3EF67917EB10A33(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_2 = __this->___Items;
|
|
int32_t L_3 = ___0_index;
|
|
int32_t L_4 = ___1_count;
|
|
Array_Reverse_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m12308A79AECE5E7D2D300ACDABDA0DC883476BC9(L_2, L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 34));
|
|
int32_t L_5 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_RemoveAll_m8FAC79CBA080690D40C5D8A4EF2CC061CD2E278C_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* ___0_match, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* L_0 = ___0_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_m998DEE4F346CB07D570680ACD85014B00749B5A8(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
V_0 = 0;
|
|
V_1 = 0;
|
|
V_0 = 0;
|
|
goto IL_0026;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* L_1 = ___0_match;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_2 = __this->___Items;
|
|
int32_t L_3 = V_0;
|
|
NullCheck(L_2);
|
|
int32_t L_4 = L_3;
|
|
bool L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
|
|
NullCheck(L_1);
|
|
bool L_6;
|
|
L_6 = Predicate_1_Invoke_m5EB17D73F75C175B835656A7C7C137A266E07928_inline(L_1, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 32));
|
|
if (L_6)
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_7 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
int32_t L_8 = V_0;
|
|
int32_t L_9 = __this->___Count;
|
|
if ((((int32_t)L_8) < ((int32_t)L_9)))
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
int32_t L_10 = V_0;
|
|
int32_t L_11 = __this->___Count;
|
|
if ((!(((uint32_t)L_10) == ((uint32_t)L_11))))
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
int32_t L_12 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_12, 1));
|
|
int32_t L_13 = V_0;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_13, 1));
|
|
goto IL_0082;
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* L_14 = ___0_match;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_15 = __this->___Items;
|
|
int32_t L_16 = V_1;
|
|
NullCheck(L_15);
|
|
int32_t L_17 = L_16;
|
|
bool L_18 = (L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_17));
|
|
NullCheck(L_14);
|
|
bool L_19;
|
|
L_19 = Predicate_1_Invoke_m5EB17D73F75C175B835656A7C7C137A266E07928_inline(L_14, L_18, il2cpp_rgctx_method(method->klass->rgctx_data, 32));
|
|
if (L_19)
|
|
{
|
|
goto IL_007e;
|
|
}
|
|
}
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_20 = __this->___Items;
|
|
int32_t L_21 = V_0;
|
|
int32_t L_22 = L_21;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_22, 1));
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_23 = __this->___Items;
|
|
int32_t L_24 = V_1;
|
|
NullCheck(L_23);
|
|
int32_t L_25 = L_24;
|
|
bool L_26 = (L_23)->GetAt(static_cast<il2cpp_array_size_t>(L_25));
|
|
NullCheck(L_20);
|
|
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(L_22), (bool)L_26);
|
|
}
|
|
|
|
IL_007e:
|
|
{
|
|
int32_t L_27 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_27, 1));
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
int32_t L_28 = V_1;
|
|
int32_t L_29 = __this->___Count;
|
|
if ((((int32_t)L_28) < ((int32_t)L_29)))
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_30 = V_1;
|
|
int32_t L_31 = V_0;
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_30, L_31))) <= ((int32_t)0)))
|
|
{
|
|
goto IL_00a0;
|
|
}
|
|
}
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_32 = __this->___Items;
|
|
int32_t L_33 = V_0;
|
|
int32_t L_34 = V_1;
|
|
int32_t L_35 = V_0;
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_32, L_33, ((int32_t)il2cpp_codegen_subtract(L_34, L_35)), NULL);
|
|
}
|
|
|
|
IL_00a0:
|
|
{
|
|
int32_t L_36 = V_0;
|
|
__this->___Count = L_36;
|
|
int32_t L_37 = V_1;
|
|
int32_t L_38 = V_0;
|
|
return ((int32_t)il2cpp_codegen_subtract(L_37, L_38));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_FindIndex_m774BA67749167598E22E069E5128B8D3B2E3AB65_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_startIndex, int32_t ___1_count, Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* ___2_match, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* L_0 = ___2_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_m998DEE4F346CB07D570680ACD85014B00749B5A8(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
int32_t L_1 = ___0_startIndex;
|
|
int32_t L_2 = ___1_count;
|
|
cyt_1_idl_m4B8A33E4A5122A586A0E5955F3EF67917EB10A33(__this, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
int32_t L_3 = ___0_startIndex;
|
|
int32_t L_4 = ___1_count;
|
|
Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* L_5 = ___2_match;
|
|
int32_t L_6;
|
|
L_6 = cyt_1_idq_mAC1FDAFCE883432EA61DA621FAA2C270ABDB046A(__this, L_3, L_4, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 29));
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_idq_mAC1FDAFCE883432EA61DA621FAA2C270ABDB046A_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_a, int32_t ___1_b, Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* ___2_c, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
int32_t L_1 = ___1_b;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_0, L_1));
|
|
int32_t L_2 = ___0_a;
|
|
V_1 = L_2;
|
|
goto IL_0022;
|
|
}
|
|
|
|
IL_0008:
|
|
{
|
|
Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* L_3 = ___2_c;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_4 = __this->___Items;
|
|
int32_t L_5 = V_1;
|
|
NullCheck(L_4);
|
|
int32_t L_6 = L_5;
|
|
bool L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
|
|
NullCheck(L_3);
|
|
bool L_8;
|
|
L_8 = Predicate_1_Invoke_m5EB17D73F75C175B835656A7C7C137A266E07928_inline(L_3, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 32));
|
|
if (!L_8)
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_9 = V_1;
|
|
return L_9;
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
int32_t L_10 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_10, 1));
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
int32_t L_11 = V_1;
|
|
int32_t L_12 = V_0;
|
|
if ((((int32_t)L_11) < ((int32_t)L_12)))
|
|
{
|
|
goto IL_0008;
|
|
}
|
|
}
|
|
{
|
|
return (-1);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idw_m9D40ED1670DE81E52B3C94AFACC0C4BB36B0FCCA_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_a, RuntimeObject* ___1_b, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
bool V_1 = false;
|
|
{
|
|
RuntimeObject* L_0 = ___1_b;
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_1;
|
|
L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 3), L_0);
|
|
V_0 = L_1;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0027:
|
|
{
|
|
{
|
|
RuntimeObject* L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = V_0;
|
|
NullCheck((RuntimeObject*)L_3);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_3);
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_001d_1;
|
|
}
|
|
|
|
IL_0009_1:
|
|
{
|
|
RuntimeObject* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
bool L_5;
|
|
L_5 = InterfaceFuncInvoker0< bool >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 36), L_4);
|
|
V_1 = L_5;
|
|
int32_t L_6 = ___0_a;
|
|
int32_t L_7 = L_6;
|
|
___0_a = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
bool L_8 = V_1;
|
|
cyt_1_Insert_mEF46D0C9064528201BD359AEEE002ED6ACCE8FE5(__this, L_7, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 38));
|
|
}
|
|
|
|
IL_001d_1:
|
|
{
|
|
RuntimeObject* L_9 = V_0;
|
|
NullCheck((RuntimeObject*)L_9);
|
|
bool L_10;
|
|
L_10 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_9);
|
|
if (L_10)
|
|
{
|
|
goto IL_0009_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1__ctor_m8760951D19E06D7D726B915E5416D0C816E57939_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___0_a, int32_t ___1_b, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_0 = ___0_a;
|
|
__this->___Items = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___Items), (void*)L_0);
|
|
int32_t L_1 = ___1_b;
|
|
__this->___Count = L_1;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_FindIndex_mEA8A29311D79B1824F9FA310A801B85DB3C18EF5_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_startIndex, Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* ___1_match, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* L_0 = ___1_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_m998DEE4F346CB07D570680ACD85014B00749B5A8(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
int32_t L_1 = ___0_startIndex;
|
|
cyt_1_idt_mA6658BB30895E3BBE1646640F38069C703E6EFE1(__this, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 21));
|
|
int32_t L_2 = ___0_startIndex;
|
|
int32_t L_3 = __this->___Count;
|
|
int32_t L_4 = ___0_startIndex;
|
|
Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* L_5 = ___1_match;
|
|
int32_t L_6;
|
|
L_6 = cyt_1_idq_mAC1FDAFCE883432EA61DA621FAA2C270ABDB046A(__this, L_2, ((int32_t)il2cpp_codegen_subtract(L_3, L_4)), L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 29));
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_ForEach_m367163CFD3E20C57B5A811DBB3BCF8242D27DBEB_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C* ___0_action, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C* L_0 = ___0_action;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF9010398F7F524C05AB19445BDCE02E617A3E267)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
V_0 = 0;
|
|
goto IL_0028;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C* L_2 = ___0_action;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_3 = __this->___Items;
|
|
int32_t L_4 = V_0;
|
|
NullCheck(L_3);
|
|
int32_t L_5 = L_4;
|
|
bool L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
|
|
NullCheck(L_2);
|
|
Action_1_Invoke_m69C8773D6967F3B224777183E24EA621CE056F8F_inline(L_2, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 40));
|
|
int32_t L_7 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
int32_t L_8 = V_0;
|
|
int32_t L_9 = __this->___Count;
|
|
if ((((int32_t)L_8) < ((int32_t)L_9)))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idu_m19A3803CC32F886BEE7ED1A7A9B025445C8824D5_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, RuntimeObject* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = ___0_a;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral469F05BE9BB4C7903C353D0EB9F6384C84A48B25)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_FindLastIndex_m499344B4C096EFCB17180CB6426CEB416105D922_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* ___0_match, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* L_0 = ___0_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_m998DEE4F346CB07D570680ACD85014B00749B5A8(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
int32_t L_1 = __this->___Count;
|
|
Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* L_2 = ___0_match;
|
|
int32_t L_3;
|
|
L_3 = cyt_1_idr_m168B6DDAF2B371966ABD6C225FD1E5E1ABEE5E0B(__this, 0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 41));
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5 cyt_1_GetEnumerator_m43B57AE5935381216C9E234AEA4549AE4BE07266_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5 L_0;
|
|
memset((&L_0), 0, sizeof(L_0));
|
|
cys__ctor_m5D13A88DAA30B690962CFFC0DD72B05D8AB57F8B((&L_0), __this, il2cpp_rgctx_method(method->klass->rgctx_data, 43));
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_LastIndexOf_m58D2A9958C35D6DF837ED0CF5B8D78439A200E20_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, bool ___0_item, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___1_index;
|
|
if ((((int32_t)L_0) >= ((int32_t)0)))
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___1_index;
|
|
int32_t L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)), &L_2);
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_4 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_m60B543A63AC8692C28096003FBF2AD124B9D5B85(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2D65EE85CADB9008DEE48BCD5A9E95E54D15F3FF)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, method);
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
int32_t L_5 = ___2_count;
|
|
if ((((int32_t)L_5) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_6 = ___2_count;
|
|
int32_t L_7 = L_6;
|
|
RuntimeObject* L_8 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)), &L_7);
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_9 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_m60B543A63AC8692C28096003FBF2AD124B9D5B85(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral07624473F417C06C74D59C64840A1532FCE2C626)), L_8, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral158BA1ED10A53D1BA59A2C5D9C58736662B34750)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, method);
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
int32_t L_10 = ___1_index;
|
|
int32_t L_11 = ___2_count;
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(L_10, L_11)), 1))) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0052;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_12 = ___2_count;
|
|
int32_t L_13 = L_12;
|
|
RuntimeObject* L_14 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)), &L_13);
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_15 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_m60B543A63AC8692C28096003FBF2AD124B9D5B85(L_15, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral07624473F417C06C74D59C64840A1532FCE2C626)), L_14, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral237DA396E8FE2D1C94C98875D84C7D661FF86FB6)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, method);
|
|
}
|
|
|
|
IL_0052:
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_16 = __this->___Items;
|
|
bool L_17 = ___0_item;
|
|
int32_t L_18 = ___1_index;
|
|
int32_t L_19 = ___2_count;
|
|
int32_t L_20;
|
|
L_20 = Array_LastIndexOf_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m845D2B272174E19367C54194C2C1E463C292547A(L_16, L_17, L_18, L_19, il2cpp_rgctx_method(method->klass->rgctx_data, 22));
|
|
return L_20;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_fno_mC35B07E9A22087B5A068D40EB67ACA3BBE52CC22_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_min, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t G_B4_0 = 0;
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_0 = __this->___Items;
|
|
NullCheck(L_0);
|
|
int32_t L_1 = ___0_min;
|
|
if ((((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))) >= ((int32_t)L_1)))
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_2 = __this->___Items;
|
|
NullCheck(L_2);
|
|
if (!(((RuntimeArray*)L_2)->max_length))
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_3 = __this->___Items;
|
|
NullCheck(L_3);
|
|
G_B4_0 = ((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_3)->max_length)), 2));
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
G_B4_0 = 4;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
V_0 = G_B4_0;
|
|
int32_t L_4 = V_0;
|
|
int32_t L_5 = ___0_min;
|
|
if ((((int32_t)L_4) >= ((int32_t)L_5)))
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_6 = ___0_min;
|
|
V_0 = L_6;
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
int32_t L_7 = V_0;
|
|
cyt_1_set_Capacity_mEFCC5C996BD8F4399A2732A86673F025DA38AA3B(__this, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_CopyTo_m57C612F07234530D540265893EDF2EA0AACF9EC9_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___0_array, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_0 = __this->___Items;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_1 = ___0_array;
|
|
int32_t L_2 = __this->___Count;
|
|
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_0, 0, (RuntimeArray*)L_1, 0, L_2, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_IndexOf_mA1A4229BB05F88B420DEC7A2A2EC23B8182F8F7C_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, bool ___0_item, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___1_index;
|
|
if ((((int32_t)L_0) >= ((int32_t)0)))
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_1 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
int32_t L_2 = ___2_count;
|
|
if ((((int32_t)L_2) >= ((int32_t)0)))
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral07624473F417C06C74D59C64840A1532FCE2C626)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
int32_t L_4 = ___1_index;
|
|
int32_t L_5 = ___2_count;
|
|
int32_t L_6 = __this->___Count;
|
|
if ((!(((uint32_t)((int32_t)il2cpp_codegen_add(L_4, L_5))) > ((uint32_t)L_6))))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_7 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8323D44D38CA9D8ED487159B21F762B262510EE5)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, method);
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_8 = __this->___Items;
|
|
bool L_9 = ___0_item;
|
|
int32_t L_10 = ___1_index;
|
|
int32_t L_11 = ___2_count;
|
|
int32_t L_12;
|
|
L_12 = Array_IndexOf_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m48C663051095D0B18F3E04B9352AACE522354A3D(L_8, L_9, L_10, L_11, il2cpp_rgctx_method(method->klass->rgctx_data, 44));
|
|
return L_12;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_FindLastIndex_m0EA19F30FA448D134868F918CE4E94BE5BB67F64_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_startIndex, int32_t ___1_count, Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* ___2_match, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* L_0 = ___2_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_m998DEE4F346CB07D570680ACD85014B00749B5A8(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
int32_t L_1 = ___0_startIndex;
|
|
int32_t L_2 = ___1_count;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(L_1, L_2)), 1));
|
|
int32_t L_3 = V_0;
|
|
int32_t L_4 = ___1_count;
|
|
cyt_1_idl_m4B8A33E4A5122A586A0E5955F3EF67917EB10A33(__this, L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
int32_t L_5 = V_0;
|
|
int32_t L_6 = ___1_count;
|
|
Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* L_7 = ___2_match;
|
|
int32_t L_8;
|
|
L_8 = cyt_1_idr_m168B6DDAF2B371966ABD6C225FD1E5E1ABEE5E0B(__this, L_5, L_6, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 41));
|
|
return L_8;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idt_mA6658BB30895E3BBE1646640F38069C703E6EFE1_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_a;
|
|
int32_t L_2 = __this->___Count;
|
|
if ((!(((uint32_t)L_1) > ((uint32_t)L_2))))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_ido_m998DEE4F346CB07D570680ACD85014B00749B5A8_gshared (Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* L_0 = ___0_a;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE2EEFB4BE0C9F57BA62E733F26387F8BA68AF67C)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_InsertRange_mF1E5A84C59CD55B2AAB9E532AEDC57D6532B2E8B_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_index, RuntimeObject* ___1_collection, const RuntimeMethod* method)
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___1_collection;
|
|
cyt_1_idu_m19A3803CC32F886BEE7ED1A7A9B025445C8824D5(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
|
|
int32_t L_1 = ___0_index;
|
|
cyt_1_idt_mA6658BB30895E3BBE1646640F38069C703E6EFE1(__this, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 21));
|
|
RuntimeObject* L_2 = ___1_collection;
|
|
if ((!(((RuntimeObject*)(RuntimeObject*)L_2) == ((RuntimeObject*)(cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47*)__this))))
|
|
{
|
|
goto IL_004f;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = __this->___Count;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_4 = (BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*)(BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 8), (uint32_t)L_3);
|
|
V_0 = L_4;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_5 = V_0;
|
|
cyt_1_CopyTo_mC4E0CA80BB53FD1C5A24F88BFC48ED39250BC46C(__this, L_5, 0, il2cpp_rgctx_method(method->klass->rgctx_data, 26));
|
|
int32_t L_6 = __this->___Count;
|
|
cyt_1_GrowIfNeeded_m170426BB762510B0EDC7469DBDFF3E358DDEDD8F(__this, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 25));
|
|
int32_t L_7 = ___0_index;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_8 = V_0;
|
|
NullCheck(L_8);
|
|
cyt_1_ids_m2D7113C5C63FC4A32BF8B9B23A509D9AD026E4A1(__this, L_7, ((int32_t)(((RuntimeArray*)L_8)->max_length)), il2cpp_rgctx_method(method->klass->rgctx_data, 12));
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_9 = V_0;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_10 = __this->___Items;
|
|
int32_t L_11 = ___0_index;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_12 = V_0;
|
|
NullCheck(L_12);
|
|
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_9, 0, (RuntimeArray*)L_10, L_11, ((int32_t)(((RuntimeArray*)L_12)->max_length)), NULL);
|
|
goto IL_006b;
|
|
}
|
|
|
|
IL_004f:
|
|
{
|
|
RuntimeObject* L_13 = ___1_collection;
|
|
V_1 = ((RuntimeObject*)IsInst((RuntimeObject*)L_13, il2cpp_rgctx_data(method->klass->rgctx_data, 5)));
|
|
RuntimeObject* L_14 = V_1;
|
|
if (!L_14)
|
|
{
|
|
goto IL_0063;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_15 = ___0_index;
|
|
RuntimeObject* L_16 = V_1;
|
|
cyt_1_idv_m306D5A3D5085E76FF467536D645B7ED55EFA7D12(__this, L_15, L_16, il2cpp_rgctx_method(method->klass->rgctx_data, 45));
|
|
goto IL_006b;
|
|
}
|
|
|
|
IL_0063:
|
|
{
|
|
int32_t L_17 = ___0_index;
|
|
RuntimeObject* L_18 = ___1_collection;
|
|
cyt_1_idw_m9D40ED1670DE81E52B3C94AFACC0C4BB36B0FCCA(__this, L_17, L_18, il2cpp_rgctx_method(method->klass->rgctx_data, 46));
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
int32_t L_19 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_19, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_FindLastIndex_m9BA88236A0FFDCE52D3E59644C4F0930C866EA6B_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_startIndex, Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* ___1_match, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* L_0 = ___1_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_m998DEE4F346CB07D570680ACD85014B00749B5A8(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
int32_t L_1 = ___0_startIndex;
|
|
cyt_1_idt_mA6658BB30895E3BBE1646640F38069C703E6EFE1(__this, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 21));
|
|
int32_t L_2 = ___0_startIndex;
|
|
Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* L_3 = ___1_match;
|
|
int32_t L_4;
|
|
L_4 = cyt_1_idr_m168B6DDAF2B371966ABD6C225FD1E5E1ABEE5E0B(__this, 0, ((int32_t)il2cpp_codegen_add(L_2, 1)), L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 41));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idm_mDBE626649C20EE56AB09C271CBED41C7D0A4D648_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, RuntimeObject* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
RuntimeObject* L_0 = ___0_a;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_0);
|
|
V_0 = L_1;
|
|
int32_t L_2 = V_0;
|
|
if (L_2)
|
|
{
|
|
goto IL_000b;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
int32_t L_3 = V_0;
|
|
cyt_1_GrowIfNeeded_m170426BB762510B0EDC7469DBDFF3E358DDEDD8F(__this, L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 25));
|
|
RuntimeObject* L_4 = ___0_a;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_5 = __this->___Items;
|
|
int32_t L_6 = __this->___Count;
|
|
NullCheck(L_4);
|
|
InterfaceActionInvoker2< BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*, int32_t >::Invoke(5, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_4, L_5, L_6);
|
|
int32_t L_7 = __this->___Count;
|
|
int32_t L_8 = V_0;
|
|
__this->___Count = ((int32_t)il2cpp_codegen_add(L_7, L_8));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_lkm_m373565DC5BADCB27F1A4504204CC606C6408D014_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_addedCount, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
int32_t L_1 = ___0_addedCount;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_0, L_1));
|
|
int32_t L_2 = V_0;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_3 = __this->___Items;
|
|
NullCheck(L_3);
|
|
if ((((int32_t)L_2) <= ((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_4;
|
|
L_4 = cyt_1_get_Capacity_m873E1F2B4E91E2EABDA65C6D6761D4A06D50E2F5(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
int32_t L_5;
|
|
L_5 = Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF(((int32_t)il2cpp_codegen_multiply(L_4, 2)), 4, NULL);
|
|
int32_t L_6 = V_0;
|
|
int32_t L_7;
|
|
L_7 = Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF(L_5, L_6, NULL);
|
|
cyt_1_set_Capacity_mEFCC5C996BD8F4399A2732A86673F025DA38AA3B(__this, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_IndexOf_mB8BA480E57BA3C3F473DF11B1798CC3A447E6472_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, bool ___0_item, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___1_index;
|
|
cyt_1_idt_mA6658BB30895E3BBE1646640F38069C703E6EFE1(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 21));
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_1 = __this->___Items;
|
|
bool L_2 = ___0_item;
|
|
int32_t L_3 = ___1_index;
|
|
int32_t L_4 = __this->___Count;
|
|
int32_t L_5 = ___1_index;
|
|
int32_t L_6;
|
|
L_6 = Array_IndexOf_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m48C663051095D0B18F3E04B9352AACE522354A3D(L_1, L_2, L_3, ((int32_t)il2cpp_codegen_subtract(L_4, L_5)), il2cpp_rgctx_method(method->klass->rgctx_data, 44));
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* cyt_1_idz_m5E001F47F0663136882C61FE4C51C1FA7614CBF1_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5 L_0;
|
|
L_0 = cyt_1_GetEnumerator_m43B57AE5935381216C9E234AEA4549AE4BE07266(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 48));
|
|
cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5 L_1 = L_0;
|
|
RuntimeObject* L_2 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 42), &L_1);
|
|
return (RuntimeObject*)L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Reverse_mA4FE260274D7F389B047831C0E9981F3A3B5D2A3_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
Array_Reverse_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m12308A79AECE5E7D2D300ACDABDA0DC883476BC9(L_0, 0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 34));
|
|
int32_t L_2 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_2, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* cyt_1_idy_m207FE1CE614CF21B9A31BE155D9B2CB4BD8AAC55_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5 L_0;
|
|
L_0 = cyt_1_GetEnumerator_m43B57AE5935381216C9E234AEA4549AE4BE07266(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 48));
|
|
cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5 L_1 = L_0;
|
|
RuntimeObject* L_2 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 42), &L_1);
|
|
return (RuntimeObject*)L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1__cctor_mF6756ADDB84A8E1C6DA7C6D8AE7E134816A5BCBC_gshared (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_0 = (BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*)(BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*)SZArrayNew(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 8), (uint32_t)0);
|
|
((cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___ofe = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___ofe), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool cyt_1_TrueForAll_m0183EC0E905EAC2CC5E266CA369313A03BFF6923_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* ___0_match, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* L_0 = ___0_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_m998DEE4F346CB07D570680ACD85014B00749B5A8(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
V_0 = 0;
|
|
goto IL_0024;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* L_1 = ___0_match;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_2 = __this->___Items;
|
|
int32_t L_3 = V_0;
|
|
NullCheck(L_2);
|
|
int32_t L_4 = L_3;
|
|
bool L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
|
|
NullCheck(L_1);
|
|
bool L_6;
|
|
L_6 = Predicate_1_Invoke_m5EB17D73F75C175B835656A7C7C137A266E07928_inline(L_1, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 32));
|
|
if (L_6)
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
int32_t L_7 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
int32_t L_8 = V_0;
|
|
int32_t L_9 = __this->___Count;
|
|
if ((((int32_t)L_8) < ((int32_t)L_9)))
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Add_mCB89DC75FC1990D446177FD25B269F8BF6305156_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, bool ___0_item, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_1 = __this->___Items;
|
|
NullCheck(L_1);
|
|
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)(((RuntimeArray*)L_1)->max_length))))))
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
cyt_1_GrowIfNeeded_m170426BB762510B0EDC7469DBDFF3E358DDEDD8F(__this, 1, il2cpp_rgctx_method(method->klass->rgctx_data, 25));
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_2 = __this->___Items;
|
|
int32_t L_3 = __this->___Count;
|
|
V_0 = L_3;
|
|
int32_t L_4 = V_0;
|
|
__this->___Count = ((int32_t)il2cpp_codegen_add(L_4, 1));
|
|
int32_t L_5 = V_0;
|
|
bool L_6 = ___0_item;
|
|
NullCheck(L_2);
|
|
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (bool)L_6);
|
|
int32_t L_7 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_lpf_mE55656B1EE64B5A514C8AA86D8D6DBA4E04BB5FC_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
Comparer_1_t075B18A0921F760D040E0D8BFE6637CE0E1587E4* L_2;
|
|
L_2 = Comparer_1_get_Default_mCFD1A9E7464C248AC312558B9D4F772D8BE3B07C(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
Array_Sort_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mCADEE7E401B19F98A7128D14C34529B99C2A5FB1(L_0, 0, L_1, (RuntimeObject*)L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
int32_t L_3 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_3, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* cyt_1_ToArray_m143B4BE88920C0DAF22B1077F4D1A31F935CFBE2_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, const RuntimeMethod* method)
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* V_0 = NULL;
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_1 = (BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*)(BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 8), (uint32_t)L_0);
|
|
V_0 = L_1;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_2 = __this->___Items;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_3 = V_0;
|
|
int32_t L_4 = __this->___Count;
|
|
Array_Copy_m4233828B4E6288B6D815F539AAA38575DE627900((RuntimeArray*)L_2, (RuntimeArray*)L_3, L_4, NULL);
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_5 = V_0;
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_xn_m9098C8870630CE6C78261F2CCA30529C189B94DD_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
Array_Reverse_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m12308A79AECE5E7D2D300ACDABDA0DC883476BC9(L_0, 0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 34));
|
|
int32_t L_2 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_2, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1__ctor_mB4B0809B840FC6711942354FAE078407C1BAD835_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
int32_t L_0 = ___0_a;
|
|
if ((((int32_t)L_0) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_1 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC37D78082ACFC8DEE7B32D9351C6E433A074FEC7)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
int32_t L_2 = ___0_a;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_3 = (BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*)(BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 8), (uint32_t)L_2);
|
|
__this->___Items = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___Items), (void*)L_3);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Sort_mC1454C214843FAB6616FC94B1395B483A81FA650_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, RuntimeObject* ___0_comparer, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
RuntimeObject* L_2 = ___0_comparer;
|
|
Array_Sort_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mCADEE7E401B19F98A7128D14C34529B99C2A5FB1(L_0, 0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
int32_t L_3 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_3, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_CopyTo_m3A8EA629128EA4AB3D725408EE7C9388A2EAAC54_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_index, BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___1_array, int32_t ___2_arrayIndex, int32_t ___3_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1 = ___3_count;
|
|
cyt_1_idl_m4B8A33E4A5122A586A0E5955F3EF67917EB10A33(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_2 = __this->___Items;
|
|
int32_t L_3 = ___0_index;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_4 = ___1_array;
|
|
int32_t L_5 = ___2_arrayIndex;
|
|
int32_t L_6 = ___3_count;
|
|
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_2, L_3, (RuntimeArray*)L_4, L_5, L_6, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Sort_m724247FFCF91CBC9006595187C269E0013D01608_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_index, int32_t ___1_count, RuntimeObject* ___2_comparer, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1 = ___1_count;
|
|
cyt_1_idl_m4B8A33E4A5122A586A0E5955F3EF67917EB10A33(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_2 = __this->___Items;
|
|
int32_t L_3 = ___0_index;
|
|
int32_t L_4 = ___1_count;
|
|
RuntimeObject* L_5 = ___2_comparer;
|
|
Array_Sort_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mCADEE7E401B19F98A7128D14C34529B99C2A5FB1(L_2, L_3, L_4, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
int32_t L_6 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_6, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_mmf_m4908DF4021FCFA7580BD647D5C69F8512B3C4147_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
Comparer_1_t075B18A0921F760D040E0D8BFE6637CE0E1587E4* L_2;
|
|
L_2 = Comparer_1_get_Default_mCFD1A9E7464C248AC312558B9D4F772D8BE3B07C(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
Array_Sort_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mCADEE7E401B19F98A7128D14C34529B99C2A5FB1(L_0, 0, L_1, (RuntimeObject*)L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
int32_t L_3 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_3, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idn_mB44CD7B73297D9EB78D98089D1049A77C185740E_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, RuntimeObject* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
bool V_1 = false;
|
|
{
|
|
RuntimeObject* L_0 = ___0_a;
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_1;
|
|
L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 3), L_0);
|
|
V_0 = L_1;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0021:
|
|
{
|
|
{
|
|
RuntimeObject* L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = V_0;
|
|
NullCheck((RuntimeObject*)L_3);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_3);
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_0017_1;
|
|
}
|
|
|
|
IL_0009_1:
|
|
{
|
|
RuntimeObject* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
bool L_5;
|
|
L_5 = InterfaceFuncInvoker0< bool >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 36), L_4);
|
|
V_1 = L_5;
|
|
bool L_6 = V_1;
|
|
cyt_1_Add_mCB89DC75FC1990D446177FD25B269F8BF6305156(__this, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
|
|
}
|
|
|
|
IL_0017_1:
|
|
{
|
|
RuntimeObject* L_7 = V_0;
|
|
NullCheck((RuntimeObject*)L_7);
|
|
bool L_8;
|
|
L_8 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_7);
|
|
if (L_8)
|
|
{
|
|
goto IL_0009_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_002b;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_dm_m540392EAAF43546EC99720AB4CADF2946AA0A178_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
Array_Reverse_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m12308A79AECE5E7D2D300ACDABDA0DC883476BC9(L_0, 0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 34));
|
|
int32_t L_2 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_2, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Sort_m1B07581653A0ECE13A3E9697249ED0F0A4A64EF1_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, Comparison_1_tF15DB3AEC82E2B8B1BF7E34C4EAB7D1031840D68* ___0_comparison, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_0 = __this->___Items;
|
|
Comparison_1_tF15DB3AEC82E2B8B1BF7E34C4EAB7D1031840D68* L_1 = ___0_comparison;
|
|
Array_Sort_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m7B5281A5A9295B2A6047BF97966CAE19B6177FAB(L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 50));
|
|
int32_t L_2 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_2, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_set_Capacity_mEFCC5C996BD8F4399A2732A86673F025DA38AA3B_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
int32_t L_1 = __this->___Count;
|
|
if ((!(((uint32_t)L_0) < ((uint32_t)L_1))))
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_2 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mB596C51BFA864B65C2CED275458FAE90F7CD29C9(L_2, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, method);
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4** L_3 = (BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4**)(&__this->___Items);
|
|
int32_t L_4 = ___0_value;
|
|
Array_Resize_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mBCB506488726A4601272E5DDC33649D64938A4F2(L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 51));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_EnsureCapacity_m3D401DC6680C87798C30274DE6D0E7C7273AEDE5_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_min, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t G_B4_0 = 0;
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_0 = __this->___Items;
|
|
NullCheck(L_0);
|
|
int32_t L_1 = ___0_min;
|
|
if ((((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))) >= ((int32_t)L_1)))
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_2 = __this->___Items;
|
|
NullCheck(L_2);
|
|
if (!(((RuntimeArray*)L_2)->max_length))
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_3 = __this->___Items;
|
|
NullCheck(L_3);
|
|
G_B4_0 = ((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_3)->max_length)), 2));
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
G_B4_0 = 4;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
V_0 = G_B4_0;
|
|
int32_t L_4 = V_0;
|
|
int32_t L_5 = ___0_min;
|
|
if ((((int32_t)L_4) >= ((int32_t)L_5)))
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_6 = ___0_min;
|
|
V_0 = L_6;
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
int32_t L_7 = V_0;
|
|
cyt_1_set_Capacity_mEFCC5C996BD8F4399A2732A86673F025DA38AA3B(__this, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* cyt_1_Resize_mAE77839323CC366E2B87E91318EBF901F22C6BD5_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_newSize, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
bool V_3 = false;
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_0 = __this->___Items;
|
|
NullCheck(L_0);
|
|
V_0 = ((int32_t)(((RuntimeArray*)L_0)->max_length));
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_1 = __this->___Items;
|
|
V_1 = L_1;
|
|
int32_t L_2 = ___0_newSize;
|
|
int32_t L_3 = V_0;
|
|
if ((((int32_t)L_2) <= ((int32_t)L_3)))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4** L_4 = (BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4**)(&__this->___Items);
|
|
int32_t L_5 = ___0_newSize;
|
|
Array_Resize_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mBCB506488726A4601272E5DDC33649D64938A4F2(L_4, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 51));
|
|
goto IL_0042;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
int32_t L_6 = ___0_newSize;
|
|
int32_t L_7 = V_0;
|
|
if ((((int32_t)L_6) >= ((int32_t)L_7)))
|
|
{
|
|
goto IL_0042;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_8 = ___0_newSize;
|
|
V_2 = L_8;
|
|
goto IL_003e;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_9 = V_1;
|
|
int32_t L_10 = V_2;
|
|
il2cpp_codegen_initobj((&V_3), sizeof(bool));
|
|
bool L_11 = V_3;
|
|
NullCheck(L_9);
|
|
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(L_10), (bool)L_11);
|
|
int32_t L_12 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_12, 1));
|
|
}
|
|
|
|
IL_003e:
|
|
{
|
|
int32_t L_13 = V_2;
|
|
int32_t L_14 = V_0;
|
|
if ((((int32_t)L_13) < ((int32_t)L_14)))
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
|
|
IL_0042:
|
|
{
|
|
int32_t L_15 = ___0_newSize;
|
|
__this->___Count = L_15;
|
|
return __this;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_jz_m62274F5D62B5BF694F78555CE286CB7236CA1B0C_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
Comparer_1_t075B18A0921F760D040E0D8BFE6637CE0E1587E4* L_2;
|
|
L_2 = Comparer_1_get_Default_mCFD1A9E7464C248AC312558B9D4F772D8BE3B07C(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
Array_Sort_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mCADEE7E401B19F98A7128D14C34529B99C2A5FB1(L_0, 0, L_1, (RuntimeObject*)L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
int32_t L_3 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_3, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_duz_m962AFCFCE71B5F4D72F231211DC23C302BB16BE5_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_index;
|
|
int32_t L_2 = __this->___Count;
|
|
if ((!(((uint32_t)L_1) >= ((uint32_t)L_2))))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF30F85E4B9304912E404666CAD45979D3833BFAE)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
int32_t L_4 = ___0_index;
|
|
cyt_1_ids_m2D7113C5C63FC4A32BF8B9B23A509D9AD026E4A1(__this, L_4, (-1), il2cpp_rgctx_method(method->klass->rgctx_data, 12));
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_5 = __this->___Items;
|
|
int32_t L_6 = __this->___Count;
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_5, L_6, 1, NULL);
|
|
int32_t L_7 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_bca_m4F42A52918E097105C8F42866B7D47C78FC32FBB_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_a, int32_t ___1_b, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
if ((((int32_t)L_0) >= ((int32_t)0)))
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_1 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral14E4A1F492301946015F0A6B1C40296CE46A4251)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
int32_t L_2 = ___1_b;
|
|
if ((((int32_t)L_2) >= ((int32_t)0)))
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral30B98916AF7031E9D83FB88E885E523F6A280F64)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
int32_t L_4 = ___0_a;
|
|
int32_t L_5 = ___1_b;
|
|
int32_t L_6 = __this->___Count;
|
|
if ((!(((uint32_t)((int32_t)il2cpp_codegen_add(L_4, L_5))) > ((uint32_t)L_6))))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_7 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral253F379CE43832F182E0F1922F84B2F9D7990EAE)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, method);
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_ik_mA2F6E09C822BE404BE7ECBC0F9B78CADDFAA3F91_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_addedCount, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
int32_t L_1 = ___0_addedCount;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_0, L_1));
|
|
int32_t L_2 = V_0;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_3 = __this->___Items;
|
|
NullCheck(L_3);
|
|
if ((((int32_t)L_2) <= ((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_4;
|
|
L_4 = cyt_1_get_Capacity_m873E1F2B4E91E2EABDA65C6D6761D4A06D50E2F5(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
int32_t L_5;
|
|
L_5 = Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF(((int32_t)il2cpp_codegen_multiply(L_4, 2)), 4, NULL);
|
|
int32_t L_6 = V_0;
|
|
int32_t L_7;
|
|
L_7 = Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF(L_5, L_6, NULL);
|
|
cyt_1_set_Capacity_mEFCC5C996BD8F4399A2732A86673F025DA38AA3B(__this, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_mzc_mF9C553C10D68ED751021153AFE0524EF1F40C49F_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
cyt_1_set_Capacity_mEFCC5C996BD8F4399A2732A86673F025DA38AA3B(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Reverse_m41FB452EEFABB3DAB72F43BD7E9AE0C3812ADBCC_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_index, int32_t ___1_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1 = ___1_count;
|
|
cyt_1_idl_m4B8A33E4A5122A586A0E5955F3EF67917EB10A33(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_2 = __this->___Items;
|
|
int32_t L_3 = ___0_index;
|
|
int32_t L_4 = ___1_count;
|
|
Array_Reverse_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m12308A79AECE5E7D2D300ACDABDA0DC883476BC9(L_2, L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 34));
|
|
int32_t L_5 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_AddRange_m711341E638C1B5CE7AB79F71E0DAF0909DA13AD9_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, RuntimeObject* ___0_collection, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___0_collection;
|
|
cyt_1_idu_m19A3803CC32F886BEE7ED1A7A9B025445C8824D5(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
|
|
RuntimeObject* L_1 = ___0_collection;
|
|
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 5)));
|
|
RuntimeObject* L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = V_0;
|
|
cyt_1_idm_mDBE626649C20EE56AB09C271CBED41C7D0A4D648(__this, L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 9));
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
RuntimeObject* L_4 = ___0_collection;
|
|
cyt_1_idn_mB44CD7B73297D9EB78D98089D1049A77C185740E(__this, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 6));
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
int32_t L_5 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_lnb_m559C59021E9EB69BEDB1057DEAFA0EE4F9951359_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_index, int32_t ___1_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1 = ___1_count;
|
|
cyt_1_idl_m4B8A33E4A5122A586A0E5955F3EF67917EB10A33(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_2 = __this->___Items;
|
|
int32_t L_3 = ___0_index;
|
|
int32_t L_4 = ___1_count;
|
|
Array_Reverse_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m12308A79AECE5E7D2D300ACDABDA0DC883476BC9(L_2, L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 34));
|
|
int32_t L_5 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_CopyTo_mC4E0CA80BB53FD1C5A24F88BFC48ED39250BC46C_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___0_array, int32_t ___1_arrayIndex, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_0 = __this->___Items;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_1 = ___0_array;
|
|
int32_t L_2 = ___1_arrayIndex;
|
|
int32_t L_3 = __this->___Count;
|
|
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_0, 0, (RuntimeArray*)L_1, L_2, L_3, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_bqm_mD988A1C37DE01568662407E2DC99FCCB1F5D5CAC_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_a;
|
|
int32_t L_2 = __this->___Count;
|
|
if ((!(((uint32_t)L_1) > ((uint32_t)L_2))))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9BAEE8262C16DE81112FD83C0BCDF8B9B7492766)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_ook_m18C7B5F267CDB4CDB15631CA96E385C9DB5AB9A9_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_a;
|
|
int32_t L_2 = __this->___Count;
|
|
if ((!(((uint32_t)L_1) > ((uint32_t)L_2))))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral42D48467A5973EC464AB24EB0FCB81BA90632807)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool cyt_1_Contains_m53D66245C1DE60665945A8A84DD477E35B392C52_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, bool ___0_item, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_0 = __this->___Items;
|
|
bool L_1 = ___0_item;
|
|
int32_t L_2 = __this->___Count;
|
|
int32_t L_3;
|
|
L_3 = Array_IndexOf_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m48C663051095D0B18F3E04B9352AACE522354A3D(L_0, L_1, 0, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 44));
|
|
return (bool)((((int32_t)((((int32_t)L_3) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_ids_m2D7113C5C63FC4A32BF8B9B23A509D9AD026E4A1_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_a, int32_t ___1_b, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___1_b;
|
|
if ((((int32_t)L_0) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_a;
|
|
int32_t L_2 = ___1_b;
|
|
___0_a = ((int32_t)il2cpp_codegen_subtract(L_1, L_2));
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
int32_t L_3 = ___0_a;
|
|
int32_t L_4 = __this->___Count;
|
|
if ((((int32_t)L_3) >= ((int32_t)L_4)))
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_5 = __this->___Items;
|
|
int32_t L_6 = ___0_a;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_7 = __this->___Items;
|
|
int32_t L_8 = ___0_a;
|
|
int32_t L_9 = ___1_b;
|
|
int32_t L_10 = __this->___Count;
|
|
int32_t L_11 = ___0_a;
|
|
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_5, L_6, (RuntimeArray*)L_7, ((int32_t)il2cpp_codegen_add(L_8, L_9)), ((int32_t)il2cpp_codegen_subtract(L_10, L_11)), NULL);
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
int32_t L_12 = __this->___Count;
|
|
int32_t L_13 = ___1_b;
|
|
__this->___Count = ((int32_t)il2cpp_codegen_add(L_12, L_13));
|
|
int32_t L_14 = ___1_b;
|
|
if ((((int32_t)L_14) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0054;
|
|
}
|
|
}
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_15 = __this->___Items;
|
|
int32_t L_16 = __this->___Count;
|
|
int32_t L_17 = ___1_b;
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_15, L_16, ((-L_17)), NULL);
|
|
}
|
|
|
|
IL_0054:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_BinarySearch_m2B6E1144C6AF35DFE0BC6E2B2C7B889EC32779F6_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, bool ___0_item, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
bool L_2 = ___0_item;
|
|
int32_t L_3;
|
|
L_3 = Array_BinarySearch_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m27607EF8994F821461C232E917EC9DA328027C4F(L_0, 0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 53));
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool cyt_1_FindLast_mBDF739BBAE1B4398665F7B140407C7191E4880B7_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* ___0_match, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
bool V_1 = false;
|
|
{
|
|
Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* L_0 = ___0_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_m998DEE4F346CB07D570680ACD85014B00749B5A8(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
int32_t L_1 = __this->___Count;
|
|
Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* L_2 = ___0_match;
|
|
int32_t L_3;
|
|
L_3 = cyt_1_idr_m168B6DDAF2B371966ABD6C225FD1E5E1ABEE5E0B(__this, 0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 41));
|
|
V_0 = L_3;
|
|
int32_t L_4 = V_0;
|
|
if ((((int32_t)L_4) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_5 = __this->___Items;
|
|
int32_t L_6 = V_0;
|
|
NullCheck(L_5);
|
|
int32_t L_7 = L_6;
|
|
bool L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
|
|
return L_8;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
il2cpp_codegen_initobj((&V_1), sizeof(bool));
|
|
bool L_9 = V_1;
|
|
return L_9;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_njz_m78721AE18C6163F9EFEC2AC8655DEE66B2A2D893_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
Array_Reverse_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m12308A79AECE5E7D2D300ACDABDA0DC883476BC9(L_0, 0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 34));
|
|
int32_t L_2 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_2, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idv_m306D5A3D5085E76FF467536D645B7ED55EFA7D12_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_a, RuntimeObject* ___1_b, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
RuntimeObject* L_0 = ___1_b;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_0);
|
|
V_0 = L_1;
|
|
int32_t L_2 = V_0;
|
|
cyt_1_GrowIfNeeded_m170426BB762510B0EDC7469DBDFF3E358DDEDD8F(__this, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 25));
|
|
int32_t L_3 = ___0_a;
|
|
int32_t L_4 = V_0;
|
|
cyt_1_ids_m2D7113C5C63FC4A32BF8B9B23A509D9AD026E4A1(__this, L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 12));
|
|
RuntimeObject* L_5 = ___1_b;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_6 = __this->___Items;
|
|
int32_t L_7 = ___0_a;
|
|
NullCheck(L_5);
|
|
InterfaceActionInvoker2< BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*, int32_t >::Invoke(5, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_5, L_6, L_7);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_TrimExcess_mB0B832380188EF48AA4F1F0A1B8160FAB3BADA77_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
cyt_1_set_Capacity_mEFCC5C996BD8F4399A2732A86673F025DA38AA3B(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_lbk_mE26A25793DEA95B7AC4D55FCB0711A036E73783B_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_min, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t G_B4_0 = 0;
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_0 = __this->___Items;
|
|
NullCheck(L_0);
|
|
int32_t L_1 = ___0_min;
|
|
if ((((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))) >= ((int32_t)L_1)))
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_2 = __this->___Items;
|
|
NullCheck(L_2);
|
|
if (!(((RuntimeArray*)L_2)->max_length))
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_3 = __this->___Items;
|
|
NullCheck(L_3);
|
|
G_B4_0 = ((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_3)->max_length)), 2));
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
G_B4_0 = 4;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
V_0 = G_B4_0;
|
|
int32_t L_4 = V_0;
|
|
int32_t L_5 = ___0_min;
|
|
if ((((int32_t)L_4) >= ((int32_t)L_5)))
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_6 = ___0_min;
|
|
V_0 = L_6;
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
int32_t L_7 = V_0;
|
|
cyt_1_set_Capacity_mEFCC5C996BD8F4399A2732A86673F025DA38AA3B(__this, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_BinarySearch_mFEEA6940EACBECCF9303FF1958A1BAF9D85F0181_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_index, int32_t ___1_count, bool ___2_item, RuntimeObject* ___3_comparer, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1 = ___1_count;
|
|
cyt_1_idl_m4B8A33E4A5122A586A0E5955F3EF67917EB10A33(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_2 = __this->___Items;
|
|
int32_t L_3 = ___0_index;
|
|
int32_t L_4 = ___1_count;
|
|
bool L_5 = ___2_item;
|
|
RuntimeObject* L_6 = ___3_comparer;
|
|
int32_t L_7;
|
|
L_7 = Array_BinarySearch_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mF5D007014F2546628D6B17F48DE03086E13BB12B(L_2, L_3, L_4, L_5, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 19));
|
|
return L_7;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_lpy_mFBB5D64ADF1252EC9509DE3D41917000740ED425_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_a;
|
|
int32_t L_2 = __this->___Count;
|
|
if ((!(((uint32_t)L_1) > ((uint32_t)L_2))))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEC97BB83DEFADDF866FC5F52CAC696C8CBA94929)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Sort_m4E279DF60AB66BFC0648647EADD0E8083D7C9133_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
Comparer_1_t075B18A0921F760D040E0D8BFE6637CE0E1587E4* L_2;
|
|
L_2 = Comparer_1_get_Default_mCFD1A9E7464C248AC312558B9D4F772D8BE3B07C(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
Array_Sort_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mCADEE7E401B19F98A7128D14C34529B99C2A5FB1(L_0, 0, L_1, (RuntimeObject*)L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
int32_t L_3 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_3, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_idr_m168B6DDAF2B371966ABD6C225FD1E5E1ABEE5E0B_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_a, int32_t ___1_b, Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* ___2_c, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
int32_t L_1 = ___1_b;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_0, L_1));
|
|
goto IL_0020;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* L_2 = ___2_c;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_3 = __this->___Items;
|
|
int32_t L_4 = V_0;
|
|
int32_t L_5 = ((int32_t)il2cpp_codegen_subtract(L_4, 1));
|
|
V_0 = L_5;
|
|
NullCheck(L_3);
|
|
int32_t L_6 = L_5;
|
|
bool L_7 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
|
|
NullCheck(L_2);
|
|
bool L_8;
|
|
L_8 = Predicate_1_Invoke_m5EB17D73F75C175B835656A7C7C137A266E07928_inline(L_2, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 32));
|
|
if (!L_8)
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_9 = V_0;
|
|
return L_9;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
int32_t L_10 = V_0;
|
|
int32_t L_11 = ___0_a;
|
|
if ((!(((uint32_t)L_10) == ((uint32_t)L_11))))
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
return (-1);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* cyt_1_GetRange_mF9BD079B58952875B52D168534C219639CB226A8_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_index, int32_t ___1_count, const RuntimeMethod* method)
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* V_0 = NULL;
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1 = ___1_count;
|
|
cyt_1_idl_m4B8A33E4A5122A586A0E5955F3EF67917EB10A33(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
int32_t L_2 = ___1_count;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_3 = (BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*)(BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 8), (uint32_t)L_2);
|
|
V_0 = L_3;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_4 = __this->___Items;
|
|
int32_t L_5 = ___0_index;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_6 = V_0;
|
|
int32_t L_7 = ___1_count;
|
|
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_4, L_5, (RuntimeArray*)L_6, 0, L_7, NULL);
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_8 = V_0;
|
|
int32_t L_9 = ___1_count;
|
|
cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* L_10 = (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 0));
|
|
cyt_1__ctor_m8760951D19E06D7D726B915E5416D0C816E57939(L_10, L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 54));
|
|
return L_10;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_IndexOf_m3849088A6F73B9B70D237B153305E1F935DE2760_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, bool ___0_item, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_0 = __this->___Items;
|
|
bool L_1 = ___0_item;
|
|
int32_t L_2 = __this->___Count;
|
|
int32_t L_3;
|
|
L_3 = Array_IndexOf_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_m48C663051095D0B18F3E04B9352AACE522354A3D(L_0, L_1, 0, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 44));
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_llt_m37B05D34B96B6A18FE3E780B9017844A372C76C7_gshared (cyt_1_t64700BF6374108F29E50292F8229C28EE5025E47* __this, int32_t ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_a;
|
|
int32_t L_2 = __this->___Count;
|
|
if ((!(((uint32_t)L_1) > ((uint32_t)L_2))))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0EBE26183B9E5BF28E32247130C32FFD868B5565)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1__ctor_m2CB897D767D4305D514457B6FEE95CF63A8B0FF8_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_0 = ((cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___ofe;
|
|
__this->___Items = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___Items), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1__ctor_m97F83A08829330955BC9E75D7A880DD9601A4C01_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, RuntimeObject* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
RuntimeObject* L_0 = ___0_a;
|
|
cyt_1_idu_mB554082BA3DCC6D79880A04CC3CF3DCEE515E1C5(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
|
|
RuntimeObject* L_1 = ___0_a;
|
|
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 5)));
|
|
RuntimeObject* L_2 = V_0;
|
|
if (L_2)
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_3 = ((cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___ofe;
|
|
__this->___Items = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___Items), (void*)L_3);
|
|
RuntimeObject* L_4 = ___0_a;
|
|
cyt_1_idn_m2193B2639133F531DFE87BF688FD3D95F744DC87(__this, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 6));
|
|
return;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
RuntimeObject* L_5 = V_0;
|
|
NullCheck(L_5);
|
|
int32_t L_6;
|
|
L_6 = InterfaceFuncInvoker0< int32_t >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_5);
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_7 = (Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259*)(Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 8), (uint32_t)L_6);
|
|
__this->___Items = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___Items), (void*)L_7);
|
|
RuntimeObject* L_8 = V_0;
|
|
cyt_1_idm_m6E084CF983BD0548EBB9CDB7E0429E8CAFCCE470(__this, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 9));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_GrowIfNeeded_m0B3BB1894C2FC2DD110375B51DB03C40E568E63F_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_addedCount, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
int32_t L_1 = ___0_addedCount;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_0, L_1));
|
|
int32_t L_2 = V_0;
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_3 = __this->___Items;
|
|
NullCheck(L_3);
|
|
if ((((int32_t)L_2) <= ((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_4;
|
|
L_4 = cyt_1_get_Capacity_m02CB722643B2B3A6B5D4DBF3E7B973E31BF1D21D(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
int32_t L_5;
|
|
L_5 = Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF(((int32_t)il2cpp_codegen_multiply(L_4, 2)), 4, NULL);
|
|
int32_t L_6 = V_0;
|
|
int32_t L_7;
|
|
L_7 = Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF(L_5, L_6, NULL);
|
|
cyt_1_set_Capacity_m80512E7F8AB3648DB3FD429E18528E8617E89F98(__this, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_RemoveAt_mC354F97146551F70D5F076D59A503C9B81BF1635_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_index;
|
|
int32_t L_2 = __this->___Count;
|
|
if ((!(((uint32_t)L_1) >= ((uint32_t)L_2))))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
int32_t L_4 = ___0_index;
|
|
cyt_1_ids_mD8353B1327BE0F02A0B4EF33D20F04B6FFD850CC(__this, L_4, (-1), il2cpp_rgctx_method(method->klass->rgctx_data, 12));
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_5 = __this->___Items;
|
|
int32_t L_6 = __this->___Count;
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_5, L_6, 1, NULL);
|
|
int32_t L_7 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_fpr_mC3E8515FF85CB02170D22EA088502EB96044B295_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
Comparer_1_t2158F98C5484AAD9CDBEC169B93B8E28C528F647* L_2;
|
|
L_2 = Comparer_1_get_Default_mB05937E8B4EB28971561831884D5D55B86740198(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
Array_Sort_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_m1BC51854203A2823C849C9959B4FD7EAC0990E9D(L_0, 0, L_1, (RuntimeObject*)L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
int32_t L_3 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_3, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_BinarySearch_m078B256B087E9DFD6072EE672C36014D5EDF9ED4_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___0_item, RuntimeObject* ___1_comparer, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_2 = ___0_item;
|
|
RuntimeObject* L_3 = ___1_comparer;
|
|
int32_t L_4;
|
|
L_4 = Array_BinarySearch_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_m4105FC846F0210DFB1493B8502107DFC7F4447FA(L_0, 0, L_1, L_2, L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 19));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_RemoveRange_m3463C86177D1F091CD97FABE8C3E9DB569BD2566_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_index, int32_t ___1_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1 = ___1_count;
|
|
cyt_1_idl_mADCCA47F644A1F7500357A65BB86B338ADF548C3(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
int32_t L_2 = ___1_count;
|
|
if ((((int32_t)L_2) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = ___0_index;
|
|
int32_t L_4 = ___1_count;
|
|
cyt_1_ids_mD8353B1327BE0F02A0B4EF33D20F04B6FFD850CC(__this, L_3, ((-L_4)), il2cpp_rgctx_method(method->klass->rgctx_data, 12));
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_5 = __this->___Items;
|
|
int32_t L_6 = __this->___Count;
|
|
int32_t L_7 = ___1_count;
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_5, L_6, L_7, NULL);
|
|
int32_t L_8 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_8, 1));
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_ihk_mCD161DF401E8447752DA3FA3BB25656EF93A07D3_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, bool ___0_clearArray, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_clearArray;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_1 = __this->___Items;
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_2 = __this->___Items;
|
|
NullCheck(L_2);
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_1, 0, ((int32_t)(((RuntimeArray*)L_2)->max_length)), NULL);
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
__this->___Count = 0;
|
|
int32_t L_3 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_3, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_LastIndexOf_m98D12D76B36746A1C6C7E8F19E2B8CDDE421B510_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___0_item, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___1_index;
|
|
cyt_1_idt_m4A73A45DF238AEF2B34C0AF09F0884E2BD83885A(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 21));
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_1 = __this->___Items;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_2 = ___0_item;
|
|
int32_t L_3 = ___1_index;
|
|
int32_t L_4 = ___1_index;
|
|
int32_t L_5;
|
|
L_5 = Array_LastIndexOf_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_mFEAF1A193068B027D29AA4614282DCBEB658B5E6(L_1, L_2, L_3, ((int32_t)il2cpp_codegen_add(L_4, 1)), il2cpp_rgctx_method(method->klass->rgctx_data, 22));
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool cyt_1_Remove_mFDF55B88BAD461F3232A24FC3774C4B2A1D133D7_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___0_item, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_0 = ___0_item;
|
|
int32_t L_1;
|
|
L_1 = cyt_1_IndexOf_mD4DE311DFCDE7BC9471A97058A057499D3B0F273(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 23));
|
|
V_0 = L_1;
|
|
int32_t L_2 = V_0;
|
|
if ((((int32_t)L_2) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = V_0;
|
|
cyt_1_RemoveAt_mC354F97146551F70D5F076D59A503C9B81BF1635(__this, L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 24));
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
int32_t L_4 = V_0;
|
|
return (bool)((((int32_t)((((int32_t)L_4) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_get_Capacity_m02CB722643B2B3A6B5D4DBF3E7B973E31BF1D21D_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_0 = __this->___Items;
|
|
NullCheck(L_0);
|
|
return ((int32_t)(((RuntimeArray*)L_0)->max_length));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_AddRange_m2F6E81C97EC74BD0B73755CD22460E3EA64B4293_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* ___0_list, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* L_0 = ___0_list;
|
|
cyt_1_idu_mB554082BA3DCC6D79880A04CC3CF3DCEE515E1C5(__this, (RuntimeObject*)L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
|
|
cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* L_1 = ___0_list;
|
|
NullCheck(L_1);
|
|
int32_t L_2 = L_1->___Count;
|
|
V_0 = L_2;
|
|
int32_t L_3 = V_0;
|
|
if (L_3)
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
int32_t L_4 = V_0;
|
|
cyt_1_GrowIfNeeded_m0B3BB1894C2FC2DD110375B51DB03C40E568E63F(__this, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 25));
|
|
cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* L_5 = ___0_list;
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_6 = __this->___Items;
|
|
int32_t L_7 = __this->___Count;
|
|
NullCheck(L_5);
|
|
cyt_1_CopyTo_m2E27CC58C0654ECFA9A9C65E5654B2D518194D08(L_5, L_6, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 26));
|
|
int32_t L_8 = __this->___Count;
|
|
int32_t L_9 = V_0;
|
|
__this->___Count = ((int32_t)il2cpp_codegen_add(L_8, L_9));
|
|
int32_t L_10 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_10, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_mcl_m7CAEE0F516CACDE348BAC716D47F76C7C62681DF_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_addedCount, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
int32_t L_1 = ___0_addedCount;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_0, L_1));
|
|
int32_t L_2 = V_0;
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_3 = __this->___Items;
|
|
NullCheck(L_3);
|
|
if ((((int32_t)L_2) <= ((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_4;
|
|
L_4 = cyt_1_get_Capacity_m02CB722643B2B3A6B5D4DBF3E7B973E31BF1D21D(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
int32_t L_5;
|
|
L_5 = Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF(((int32_t)il2cpp_codegen_multiply(L_4, 2)), 4, NULL);
|
|
int32_t L_6 = V_0;
|
|
int32_t L_7;
|
|
L_7 = Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF(L_5, L_6, NULL);
|
|
cyt_1_set_Capacity_m80512E7F8AB3648DB3FD429E18528E8617E89F98(__this, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B cyt_1_Pop_mB94E2A16F0A825CD663B0E3AAA426B852C5AC582_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
if (L_0)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral57462D5D876383291750F779D30A75A0AD5ED4AE)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
int32_t L_2 = __this->___Count;
|
|
V_0 = ((int32_t)il2cpp_codegen_subtract(L_2, 1));
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_3 = __this->___Items;
|
|
int32_t L_4 = V_0;
|
|
NullCheck(L_3);
|
|
int32_t L_5 = L_4;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_7 = __this->___Items;
|
|
int32_t L_8 = V_0;
|
|
il2cpp_codegen_initobj((&V_1), sizeof(Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B));
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_9 = V_1;
|
|
NullCheck(L_7);
|
|
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(L_8), (Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B)L_9);
|
|
int32_t L_10 = __this->___Count;
|
|
__this->___Count = ((int32_t)il2cpp_codegen_subtract(L_10, 1));
|
|
int32_t L_11 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_11, 1));
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_LastIndexOf_m15D06B3111EBC0E45E0C8283EC6E713426214410_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___0_item, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_0 = __this->___Items;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_1 = ___0_item;
|
|
int32_t L_2 = __this->___Count;
|
|
int32_t L_3 = __this->___Count;
|
|
int32_t L_4;
|
|
L_4 = Array_LastIndexOf_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_mFEAF1A193068B027D29AA4614282DCBEB658B5E6(L_0, L_1, ((int32_t)il2cpp_codegen_subtract(L_2, 1)), L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 22));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_cdv_m283642C4741877200DA29E3FCCC64892CE88DAFE_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
cyt_1_set_Capacity_m80512E7F8AB3648DB3FD429E18528E8617E89F98(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B cyt_1_Find_m89516CDDA9A2EA615335841AFF2E7A7C4282F356_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* ___0_match, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* L_0 = ___0_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_mF9A49B8ACE89034950993E4975E418968023288D(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
int32_t L_1 = __this->___Count;
|
|
Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* L_2 = ___0_match;
|
|
int32_t L_3;
|
|
L_3 = cyt_1_idq_m94AB47CE34F9EA1E45C125E36E4A3F259842F68F(__this, 0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 29));
|
|
V_0 = L_3;
|
|
int32_t L_4 = V_0;
|
|
if ((!(((uint32_t)L_4) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_initobj((&V_1), sizeof(Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B));
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_5 = V_1;
|
|
return L_5;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_6 = __this->___Items;
|
|
int32_t L_7 = V_0;
|
|
NullCheck(L_6);
|
|
int32_t L_8 = L_7;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
|
|
return L_9;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Clear_mE7C89192A005279E3D2F1185337802AD5DF77ABC_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, bool ___0_clearArray, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_clearArray;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_1 = __this->___Items;
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_2 = __this->___Items;
|
|
NullCheck(L_2);
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_1, 0, ((int32_t)(((RuntimeArray*)L_2)->max_length)), NULL);
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
__this->___Count = 0;
|
|
int32_t L_3 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_3, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idl_mADCCA47F644A1F7500357A65BB86B338ADF548C3_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_a, int32_t ___1_b, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
if ((((int32_t)L_0) >= ((int32_t)0)))
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_1 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
int32_t L_2 = ___1_b;
|
|
if ((((int32_t)L_2) >= ((int32_t)0)))
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral07624473F417C06C74D59C64840A1532FCE2C626)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
int32_t L_4 = ___0_a;
|
|
int32_t L_5 = ___1_b;
|
|
int32_t L_6 = __this->___Count;
|
|
if ((!(((uint32_t)((int32_t)il2cpp_codegen_add(L_4, L_5))) > ((uint32_t)L_6))))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_7 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8323D44D38CA9D8ED487159B21F762B262510EE5)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, method);
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_FindIndex_m26C59ABF24D41E74947F343961DD47EBC7A3686A_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* ___0_match, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* L_0 = ___0_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_mF9A49B8ACE89034950993E4975E418968023288D(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
int32_t L_1 = __this->___Count;
|
|
Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* L_2 = ___0_match;
|
|
int32_t L_3;
|
|
L_3 = cyt_1_idq_m94AB47CE34F9EA1E45C125E36E4A3F259842F68F(__this, 0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 29));
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_cql_mBE71730C6BCAF080978372255C742C390D6B11C1_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
cyt_1_set_Capacity_m80512E7F8AB3648DB3FD429E18528E8617E89F98(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool cyt_1_Exists_m99D7AFC83B75E479BBA065DC6BF69D8936321297_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* ___0_match, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* L_0 = ___0_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_mF9A49B8ACE89034950993E4975E418968023288D(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
int32_t L_1 = __this->___Count;
|
|
Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* L_2 = ___0_match;
|
|
int32_t L_3;
|
|
L_3 = cyt_1_idq_m94AB47CE34F9EA1E45C125E36E4A3F259842F68F(__this, 0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 29));
|
|
return (bool)((((int32_t)((((int32_t)L_3) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Insert_m9648AA1239EFCA964A85C7C33375C7513000FDC2_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_index, Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___1_item, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
cyt_1_idt_m4A73A45DF238AEF2B34C0AF09F0884E2BD83885A(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 21));
|
|
int32_t L_1 = __this->___Count;
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_2 = __this->___Items;
|
|
NullCheck(L_2);
|
|
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)(((RuntimeArray*)L_2)->max_length))))))
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
cyt_1_GrowIfNeeded_m0B3BB1894C2FC2DD110375B51DB03C40E568E63F(__this, 1, il2cpp_rgctx_method(method->klass->rgctx_data, 25));
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
int32_t L_3 = ___0_index;
|
|
cyt_1_ids_mD8353B1327BE0F02A0B4EF33D20F04B6FFD850CC(__this, L_3, 1, il2cpp_rgctx_method(method->klass->rgctx_data, 12));
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_4 = __this->___Items;
|
|
int32_t L_5 = ___0_index;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_6 = ___1_item;
|
|
NullCheck(L_4);
|
|
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B)L_6);
|
|
int32_t L_7 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_iqf_m317D730863D45E3418AFF7719E4DE2DE369DC85F_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_index, int32_t ___1_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1 = ___1_count;
|
|
cyt_1_idl_mADCCA47F644A1F7500357A65BB86B338ADF548C3(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
int32_t L_2 = ___1_count;
|
|
if ((((int32_t)L_2) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = ___0_index;
|
|
int32_t L_4 = ___1_count;
|
|
cyt_1_ids_mD8353B1327BE0F02A0B4EF33D20F04B6FFD850CC(__this, L_3, ((-L_4)), il2cpp_rgctx_method(method->klass->rgctx_data, 12));
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_5 = __this->___Items;
|
|
int32_t L_6 = __this->___Count;
|
|
int32_t L_7 = ___1_count;
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_5, L_6, L_7, NULL);
|
|
int32_t L_8 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_8, 1));
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* cyt_1_FindAll_mEB9357729DC72DA6E388E53CB64697F7F62B694E_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* ___0_match, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* L_0 = ___0_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_mF9A49B8ACE89034950993E4975E418968023288D(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* L_1 = ___0_match;
|
|
cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* L_2;
|
|
L_2 = cyt_1_idp_m9078BA25FE77572093F2F6BB4D4A555D417A4F5A(__this, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 30));
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* cyt_1_idp_m9078BA25FE77572093F2F6BB4D4A555D417A4F5A_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* L_0 = (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 0));
|
|
cyt_1__ctor_m2CB897D767D4305D514457B6FEE95CF63A8B0FF8(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 31));
|
|
V_0 = L_0;
|
|
V_1 = 0;
|
|
goto IL_0034;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* L_1 = ___0_a;
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_2 = __this->___Items;
|
|
int32_t L_3 = V_1;
|
|
NullCheck(L_2);
|
|
int32_t L_4 = L_3;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
|
|
NullCheck(L_1);
|
|
bool L_6;
|
|
L_6 = Predicate_1_Invoke_mDADE161CEBD2C998D731FDAEB5F81BFCD7F4B984_inline(L_1, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 32));
|
|
if (!L_6)
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
{
|
|
cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* L_7 = V_0;
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_8 = __this->___Items;
|
|
int32_t L_9 = V_1;
|
|
NullCheck(L_8);
|
|
int32_t L_10 = L_9;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
|
|
NullCheck(L_7);
|
|
cyt_1_Add_m665ADCD997B066832AA5791D41EDBF09E2B058D1(L_7, L_11, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
int32_t L_12 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_12, 1));
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
int32_t L_13 = V_1;
|
|
int32_t L_14 = __this->___Count;
|
|
if ((((int32_t)L_13) < ((int32_t)L_14)))
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* L_15 = V_0;
|
|
return L_15;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_jxj_m94751230CE41FCBE2F06F8FABA74DA45FB7E8237_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_index, int32_t ___1_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1 = ___1_count;
|
|
cyt_1_idl_mADCCA47F644A1F7500357A65BB86B338ADF548C3(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_2 = __this->___Items;
|
|
int32_t L_3 = ___0_index;
|
|
int32_t L_4 = ___1_count;
|
|
Array_Reverse_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_mED878CBBB3A2B00E856FEEB4E0CAB3716075485F(L_2, L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 34));
|
|
int32_t L_5 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_RemoveAll_mDF04D35AF191CB2AD857C4EBC4CC88B487CB70A8_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* ___0_match, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* L_0 = ___0_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_mF9A49B8ACE89034950993E4975E418968023288D(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
V_0 = 0;
|
|
V_1 = 0;
|
|
V_0 = 0;
|
|
goto IL_0026;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* L_1 = ___0_match;
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_2 = __this->___Items;
|
|
int32_t L_3 = V_0;
|
|
NullCheck(L_2);
|
|
int32_t L_4 = L_3;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
|
|
NullCheck(L_1);
|
|
bool L_6;
|
|
L_6 = Predicate_1_Invoke_mDADE161CEBD2C998D731FDAEB5F81BFCD7F4B984_inline(L_1, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 32));
|
|
if (L_6)
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_7 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
int32_t L_8 = V_0;
|
|
int32_t L_9 = __this->___Count;
|
|
if ((((int32_t)L_8) < ((int32_t)L_9)))
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
int32_t L_10 = V_0;
|
|
int32_t L_11 = __this->___Count;
|
|
if ((!(((uint32_t)L_10) == ((uint32_t)L_11))))
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
int32_t L_12 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_12, 1));
|
|
int32_t L_13 = V_0;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_13, 1));
|
|
goto IL_0082;
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* L_14 = ___0_match;
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_15 = __this->___Items;
|
|
int32_t L_16 = V_1;
|
|
NullCheck(L_15);
|
|
int32_t L_17 = L_16;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_18 = (L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_17));
|
|
NullCheck(L_14);
|
|
bool L_19;
|
|
L_19 = Predicate_1_Invoke_mDADE161CEBD2C998D731FDAEB5F81BFCD7F4B984_inline(L_14, L_18, il2cpp_rgctx_method(method->klass->rgctx_data, 32));
|
|
if (L_19)
|
|
{
|
|
goto IL_007e;
|
|
}
|
|
}
|
|
{
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_20 = __this->___Items;
|
|
int32_t L_21 = V_0;
|
|
int32_t L_22 = L_21;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_22, 1));
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_23 = __this->___Items;
|
|
int32_t L_24 = V_1;
|
|
NullCheck(L_23);
|
|
int32_t L_25 = L_24;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_26 = (L_23)->GetAt(static_cast<il2cpp_array_size_t>(L_25));
|
|
NullCheck(L_20);
|
|
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(L_22), (Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B)L_26);
|
|
}
|
|
|
|
IL_007e:
|
|
{
|
|
int32_t L_27 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_27, 1));
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
int32_t L_28 = V_1;
|
|
int32_t L_29 = __this->___Count;
|
|
if ((((int32_t)L_28) < ((int32_t)L_29)))
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_30 = V_1;
|
|
int32_t L_31 = V_0;
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_30, L_31))) <= ((int32_t)0)))
|
|
{
|
|
goto IL_00a0;
|
|
}
|
|
}
|
|
{
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_32 = __this->___Items;
|
|
int32_t L_33 = V_0;
|
|
int32_t L_34 = V_1;
|
|
int32_t L_35 = V_0;
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_32, L_33, ((int32_t)il2cpp_codegen_subtract(L_34, L_35)), NULL);
|
|
}
|
|
|
|
IL_00a0:
|
|
{
|
|
int32_t L_36 = V_0;
|
|
__this->___Count = L_36;
|
|
int32_t L_37 = V_1;
|
|
int32_t L_38 = V_0;
|
|
return ((int32_t)il2cpp_codegen_subtract(L_37, L_38));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_FindIndex_m9F8AF73D5DAF152F9AAFB939648F2FA5213BC3A0_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_startIndex, int32_t ___1_count, Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* ___2_match, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* L_0 = ___2_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_mF9A49B8ACE89034950993E4975E418968023288D(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
int32_t L_1 = ___0_startIndex;
|
|
int32_t L_2 = ___1_count;
|
|
cyt_1_idl_mADCCA47F644A1F7500357A65BB86B338ADF548C3(__this, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
int32_t L_3 = ___0_startIndex;
|
|
int32_t L_4 = ___1_count;
|
|
Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* L_5 = ___2_match;
|
|
int32_t L_6;
|
|
L_6 = cyt_1_idq_m94AB47CE34F9EA1E45C125E36E4A3F259842F68F(__this, L_3, L_4, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 29));
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_idq_m94AB47CE34F9EA1E45C125E36E4A3F259842F68F_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_a, int32_t ___1_b, Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* ___2_c, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
int32_t L_1 = ___1_b;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_0, L_1));
|
|
int32_t L_2 = ___0_a;
|
|
V_1 = L_2;
|
|
goto IL_0022;
|
|
}
|
|
|
|
IL_0008:
|
|
{
|
|
Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* L_3 = ___2_c;
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_4 = __this->___Items;
|
|
int32_t L_5 = V_1;
|
|
NullCheck(L_4);
|
|
int32_t L_6 = L_5;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
|
|
NullCheck(L_3);
|
|
bool L_8;
|
|
L_8 = Predicate_1_Invoke_mDADE161CEBD2C998D731FDAEB5F81BFCD7F4B984_inline(L_3, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 32));
|
|
if (!L_8)
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_9 = V_1;
|
|
return L_9;
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
int32_t L_10 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_10, 1));
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
int32_t L_11 = V_1;
|
|
int32_t L_12 = V_0;
|
|
if ((((int32_t)L_11) < ((int32_t)L_12)))
|
|
{
|
|
goto IL_0008;
|
|
}
|
|
}
|
|
{
|
|
return (-1);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idw_mC1F81649E03DE291435B4B7110D8458DCB26BDFB_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_a, RuntimeObject* ___1_b, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
RuntimeObject* L_0 = ___1_b;
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_1;
|
|
L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 3), L_0);
|
|
V_0 = L_1;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0027:
|
|
{
|
|
{
|
|
RuntimeObject* L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = V_0;
|
|
NullCheck((RuntimeObject*)L_3);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_3);
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_001d_1;
|
|
}
|
|
|
|
IL_0009_1:
|
|
{
|
|
RuntimeObject* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_5;
|
|
L_5 = InterfaceFuncInvoker0< Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 36), L_4);
|
|
V_1 = L_5;
|
|
int32_t L_6 = ___0_a;
|
|
int32_t L_7 = L_6;
|
|
___0_a = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_8 = V_1;
|
|
cyt_1_Insert_m9648AA1239EFCA964A85C7C33375C7513000FDC2(__this, L_7, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 38));
|
|
}
|
|
|
|
IL_001d_1:
|
|
{
|
|
RuntimeObject* L_9 = V_0;
|
|
NullCheck((RuntimeObject*)L_9);
|
|
bool L_10;
|
|
L_10 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_9);
|
|
if (L_10)
|
|
{
|
|
goto IL_0009_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1__ctor_m93DE95E671C9DB89E17A54005E9E05E30CCAD6C6_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* ___0_a, int32_t ___1_b, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_0 = ___0_a;
|
|
__this->___Items = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___Items), (void*)L_0);
|
|
int32_t L_1 = ___1_b;
|
|
__this->___Count = L_1;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_FindIndex_mD8293A16C76DB084018C7412E5CCCD22EDD964BF_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_startIndex, Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* ___1_match, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* L_0 = ___1_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_mF9A49B8ACE89034950993E4975E418968023288D(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
int32_t L_1 = ___0_startIndex;
|
|
cyt_1_idt_m4A73A45DF238AEF2B34C0AF09F0884E2BD83885A(__this, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 21));
|
|
int32_t L_2 = ___0_startIndex;
|
|
int32_t L_3 = __this->___Count;
|
|
int32_t L_4 = ___0_startIndex;
|
|
Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* L_5 = ___1_match;
|
|
int32_t L_6;
|
|
L_6 = cyt_1_idq_m94AB47CE34F9EA1E45C125E36E4A3F259842F68F(__this, L_2, ((int32_t)il2cpp_codegen_subtract(L_3, L_4)), L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 29));
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_ForEach_mD8DD99923DA0528E9A99F0AC58900AD3F4FE2C81_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, Action_1_tA0F10A9285403FFE399C24B340DC3300881DE735* ___0_action, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
Action_1_tA0F10A9285403FFE399C24B340DC3300881DE735* L_0 = ___0_action;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF9010398F7F524C05AB19445BDCE02E617A3E267)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
V_0 = 0;
|
|
goto IL_0028;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
Action_1_tA0F10A9285403FFE399C24B340DC3300881DE735* L_2 = ___0_action;
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_3 = __this->___Items;
|
|
int32_t L_4 = V_0;
|
|
NullCheck(L_3);
|
|
int32_t L_5 = L_4;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
|
|
NullCheck(L_2);
|
|
Action_1_Invoke_m85DAE826CA357D0983BCC4F60DC807727254AC42_inline(L_2, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 40));
|
|
int32_t L_7 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
int32_t L_8 = V_0;
|
|
int32_t L_9 = __this->___Count;
|
|
if ((((int32_t)L_8) < ((int32_t)L_9)))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idu_mB554082BA3DCC6D79880A04CC3CF3DCEE515E1C5_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, RuntimeObject* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = ___0_a;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral469F05BE9BB4C7903C353D0EB9F6384C84A48B25)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_FindLastIndex_mF21BFC8C95F414B07EE0EC3298BE266535C3D2CD_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* ___0_match, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* L_0 = ___0_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_mF9A49B8ACE89034950993E4975E418968023288D(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
int32_t L_1 = __this->___Count;
|
|
Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* L_2 = ___0_match;
|
|
int32_t L_3;
|
|
L_3 = cyt_1_idr_m0C5B2440BF77A3C6ECEF39603A4C5E3EEAC9A718(__this, 0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 41));
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E cyt_1_GetEnumerator_mFC1C25E64E63822D19CD354C3A2B0271CE1BE0CF_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E L_0;
|
|
memset((&L_0), 0, sizeof(L_0));
|
|
cys__ctor_mC10FD48409B8D8BEE4A1A676B1B4C624955B6E5E((&L_0), __this, il2cpp_rgctx_method(method->klass->rgctx_data, 43));
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_LastIndexOf_m47C21487EC4A2D467F04B7BC40D0FBCCEF525BD0_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___0_item, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___1_index;
|
|
if ((((int32_t)L_0) >= ((int32_t)0)))
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___1_index;
|
|
int32_t L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)), &L_2);
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_4 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_m60B543A63AC8692C28096003FBF2AD124B9D5B85(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2D65EE85CADB9008DEE48BCD5A9E95E54D15F3FF)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, method);
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
int32_t L_5 = ___2_count;
|
|
if ((((int32_t)L_5) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_6 = ___2_count;
|
|
int32_t L_7 = L_6;
|
|
RuntimeObject* L_8 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)), &L_7);
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_9 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_m60B543A63AC8692C28096003FBF2AD124B9D5B85(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral07624473F417C06C74D59C64840A1532FCE2C626)), L_8, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral158BA1ED10A53D1BA59A2C5D9C58736662B34750)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, method);
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
int32_t L_10 = ___1_index;
|
|
int32_t L_11 = ___2_count;
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(L_10, L_11)), 1))) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0052;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_12 = ___2_count;
|
|
int32_t L_13 = L_12;
|
|
RuntimeObject* L_14 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)), &L_13);
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_15 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_m60B543A63AC8692C28096003FBF2AD124B9D5B85(L_15, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral07624473F417C06C74D59C64840A1532FCE2C626)), L_14, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral237DA396E8FE2D1C94C98875D84C7D661FF86FB6)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, method);
|
|
}
|
|
|
|
IL_0052:
|
|
{
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_16 = __this->___Items;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_17 = ___0_item;
|
|
int32_t L_18 = ___1_index;
|
|
int32_t L_19 = ___2_count;
|
|
int32_t L_20;
|
|
L_20 = Array_LastIndexOf_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_mFEAF1A193068B027D29AA4614282DCBEB658B5E6(L_16, L_17, L_18, L_19, il2cpp_rgctx_method(method->klass->rgctx_data, 22));
|
|
return L_20;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_fno_m7DD82708C5DF9806F97AB15F375726085ECA1B16_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_min, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t G_B4_0 = 0;
|
|
{
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_0 = __this->___Items;
|
|
NullCheck(L_0);
|
|
int32_t L_1 = ___0_min;
|
|
if ((((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))) >= ((int32_t)L_1)))
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_2 = __this->___Items;
|
|
NullCheck(L_2);
|
|
if (!(((RuntimeArray*)L_2)->max_length))
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_3 = __this->___Items;
|
|
NullCheck(L_3);
|
|
G_B4_0 = ((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_3)->max_length)), 2));
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
G_B4_0 = 4;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
V_0 = G_B4_0;
|
|
int32_t L_4 = V_0;
|
|
int32_t L_5 = ___0_min;
|
|
if ((((int32_t)L_4) >= ((int32_t)L_5)))
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_6 = ___0_min;
|
|
V_0 = L_6;
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
int32_t L_7 = V_0;
|
|
cyt_1_set_Capacity_m80512E7F8AB3648DB3FD429E18528E8617E89F98(__this, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_CopyTo_mA3F952BB39BD0012440D29E40A119FD61A0A1B53_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* ___0_array, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_0 = __this->___Items;
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_1 = ___0_array;
|
|
int32_t L_2 = __this->___Count;
|
|
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_0, 0, (RuntimeArray*)L_1, 0, L_2, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_IndexOf_mFB3CA1B6A96320E8300A8E984843471DB2E57706_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___0_item, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___1_index;
|
|
if ((((int32_t)L_0) >= ((int32_t)0)))
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_1 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
int32_t L_2 = ___2_count;
|
|
if ((((int32_t)L_2) >= ((int32_t)0)))
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral07624473F417C06C74D59C64840A1532FCE2C626)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
int32_t L_4 = ___1_index;
|
|
int32_t L_5 = ___2_count;
|
|
int32_t L_6 = __this->___Count;
|
|
if ((!(((uint32_t)((int32_t)il2cpp_codegen_add(L_4, L_5))) > ((uint32_t)L_6))))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_7 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8323D44D38CA9D8ED487159B21F762B262510EE5)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, method);
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_8 = __this->___Items;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_9 = ___0_item;
|
|
int32_t L_10 = ___1_index;
|
|
int32_t L_11 = ___2_count;
|
|
int32_t L_12;
|
|
L_12 = Array_IndexOf_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_m4A144DC89C23111FE2293A75D78A9265CECBC2B6(L_8, L_9, L_10, L_11, il2cpp_rgctx_method(method->klass->rgctx_data, 44));
|
|
return L_12;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_FindLastIndex_m31F278DD273617AF62C0652CE1C00DE8C57632DB_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_startIndex, int32_t ___1_count, Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* ___2_match, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* L_0 = ___2_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_mF9A49B8ACE89034950993E4975E418968023288D(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
int32_t L_1 = ___0_startIndex;
|
|
int32_t L_2 = ___1_count;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(L_1, L_2)), 1));
|
|
int32_t L_3 = V_0;
|
|
int32_t L_4 = ___1_count;
|
|
cyt_1_idl_mADCCA47F644A1F7500357A65BB86B338ADF548C3(__this, L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
int32_t L_5 = V_0;
|
|
int32_t L_6 = ___1_count;
|
|
Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* L_7 = ___2_match;
|
|
int32_t L_8;
|
|
L_8 = cyt_1_idr_m0C5B2440BF77A3C6ECEF39603A4C5E3EEAC9A718(__this, L_5, L_6, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 41));
|
|
return L_8;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idt_m4A73A45DF238AEF2B34C0AF09F0884E2BD83885A_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_a;
|
|
int32_t L_2 = __this->___Count;
|
|
if ((!(((uint32_t)L_1) > ((uint32_t)L_2))))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_ido_mF9A49B8ACE89034950993E4975E418968023288D_gshared (Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* L_0 = ___0_a;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE2EEFB4BE0C9F57BA62E733F26387F8BA68AF67C)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_InsertRange_m12AA14102C4CECE1935A71523A55739D46586618_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_index, RuntimeObject* ___1_collection, const RuntimeMethod* method)
|
|
{
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___1_collection;
|
|
cyt_1_idu_mB554082BA3DCC6D79880A04CC3CF3DCEE515E1C5(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
|
|
int32_t L_1 = ___0_index;
|
|
cyt_1_idt_m4A73A45DF238AEF2B34C0AF09F0884E2BD83885A(__this, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 21));
|
|
RuntimeObject* L_2 = ___1_collection;
|
|
if ((!(((RuntimeObject*)(RuntimeObject*)L_2) == ((RuntimeObject*)(cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393*)__this))))
|
|
{
|
|
goto IL_004f;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = __this->___Count;
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_4 = (Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259*)(Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 8), (uint32_t)L_3);
|
|
V_0 = L_4;
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_5 = V_0;
|
|
cyt_1_CopyTo_m2E27CC58C0654ECFA9A9C65E5654B2D518194D08(__this, L_5, 0, il2cpp_rgctx_method(method->klass->rgctx_data, 26));
|
|
int32_t L_6 = __this->___Count;
|
|
cyt_1_GrowIfNeeded_m0B3BB1894C2FC2DD110375B51DB03C40E568E63F(__this, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 25));
|
|
int32_t L_7 = ___0_index;
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_8 = V_0;
|
|
NullCheck(L_8);
|
|
cyt_1_ids_mD8353B1327BE0F02A0B4EF33D20F04B6FFD850CC(__this, L_7, ((int32_t)(((RuntimeArray*)L_8)->max_length)), il2cpp_rgctx_method(method->klass->rgctx_data, 12));
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_9 = V_0;
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_10 = __this->___Items;
|
|
int32_t L_11 = ___0_index;
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_12 = V_0;
|
|
NullCheck(L_12);
|
|
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_9, 0, (RuntimeArray*)L_10, L_11, ((int32_t)(((RuntimeArray*)L_12)->max_length)), NULL);
|
|
goto IL_006b;
|
|
}
|
|
|
|
IL_004f:
|
|
{
|
|
RuntimeObject* L_13 = ___1_collection;
|
|
V_1 = ((RuntimeObject*)IsInst((RuntimeObject*)L_13, il2cpp_rgctx_data(method->klass->rgctx_data, 5)));
|
|
RuntimeObject* L_14 = V_1;
|
|
if (!L_14)
|
|
{
|
|
goto IL_0063;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_15 = ___0_index;
|
|
RuntimeObject* L_16 = V_1;
|
|
cyt_1_idv_m9C1D72AE7519FC36E50E0513B004A8B2DDB3DAFF(__this, L_15, L_16, il2cpp_rgctx_method(method->klass->rgctx_data, 45));
|
|
goto IL_006b;
|
|
}
|
|
|
|
IL_0063:
|
|
{
|
|
int32_t L_17 = ___0_index;
|
|
RuntimeObject* L_18 = ___1_collection;
|
|
cyt_1_idw_mC1F81649E03DE291435B4B7110D8458DCB26BDFB(__this, L_17, L_18, il2cpp_rgctx_method(method->klass->rgctx_data, 46));
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
int32_t L_19 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_19, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_FindLastIndex_mCDC681B79771D51B4F9B811AE76AFD9F96BA55C9_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_startIndex, Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* ___1_match, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* L_0 = ___1_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_mF9A49B8ACE89034950993E4975E418968023288D(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
int32_t L_1 = ___0_startIndex;
|
|
cyt_1_idt_m4A73A45DF238AEF2B34C0AF09F0884E2BD83885A(__this, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 21));
|
|
int32_t L_2 = ___0_startIndex;
|
|
Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* L_3 = ___1_match;
|
|
int32_t L_4;
|
|
L_4 = cyt_1_idr_m0C5B2440BF77A3C6ECEF39603A4C5E3EEAC9A718(__this, 0, ((int32_t)il2cpp_codegen_add(L_2, 1)), L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 41));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idm_m6E084CF983BD0548EBB9CDB7E0429E8CAFCCE470_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, RuntimeObject* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
RuntimeObject* L_0 = ___0_a;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_0);
|
|
V_0 = L_1;
|
|
int32_t L_2 = V_0;
|
|
if (L_2)
|
|
{
|
|
goto IL_000b;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
int32_t L_3 = V_0;
|
|
cyt_1_GrowIfNeeded_m0B3BB1894C2FC2DD110375B51DB03C40E568E63F(__this, L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 25));
|
|
RuntimeObject* L_4 = ___0_a;
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_5 = __this->___Items;
|
|
int32_t L_6 = __this->___Count;
|
|
NullCheck(L_4);
|
|
InterfaceActionInvoker2< Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259*, int32_t >::Invoke(5, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_4, L_5, L_6);
|
|
int32_t L_7 = __this->___Count;
|
|
int32_t L_8 = V_0;
|
|
__this->___Count = ((int32_t)il2cpp_codegen_add(L_7, L_8));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_lkm_mF06368A19E2E68742D7C520AD6D56516AA3A5BAB_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_addedCount, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
int32_t L_1 = ___0_addedCount;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_0, L_1));
|
|
int32_t L_2 = V_0;
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_3 = __this->___Items;
|
|
NullCheck(L_3);
|
|
if ((((int32_t)L_2) <= ((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_4;
|
|
L_4 = cyt_1_get_Capacity_m02CB722643B2B3A6B5D4DBF3E7B973E31BF1D21D(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
int32_t L_5;
|
|
L_5 = Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF(((int32_t)il2cpp_codegen_multiply(L_4, 2)), 4, NULL);
|
|
int32_t L_6 = V_0;
|
|
int32_t L_7;
|
|
L_7 = Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF(L_5, L_6, NULL);
|
|
cyt_1_set_Capacity_m80512E7F8AB3648DB3FD429E18528E8617E89F98(__this, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_IndexOf_m03D358B9ED5B31A303F58BE45A10A6FA5F04DE75_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___0_item, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___1_index;
|
|
cyt_1_idt_m4A73A45DF238AEF2B34C0AF09F0884E2BD83885A(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 21));
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_1 = __this->___Items;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_2 = ___0_item;
|
|
int32_t L_3 = ___1_index;
|
|
int32_t L_4 = __this->___Count;
|
|
int32_t L_5 = ___1_index;
|
|
int32_t L_6;
|
|
L_6 = Array_IndexOf_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_m4A144DC89C23111FE2293A75D78A9265CECBC2B6(L_1, L_2, L_3, ((int32_t)il2cpp_codegen_subtract(L_4, L_5)), il2cpp_rgctx_method(method->klass->rgctx_data, 44));
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* cyt_1_idz_mAA95EF5213126953F10E6EEEC962A44884EAE176_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E L_0;
|
|
L_0 = cyt_1_GetEnumerator_mFC1C25E64E63822D19CD354C3A2B0271CE1BE0CF(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 48));
|
|
cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E L_1 = L_0;
|
|
RuntimeObject* L_2 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 42), &L_1);
|
|
return (RuntimeObject*)L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Reverse_mFEBEDB69F633BADAE1C334925AB5E2CB2F097A52_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
Array_Reverse_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_mED878CBBB3A2B00E856FEEB4E0CAB3716075485F(L_0, 0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 34));
|
|
int32_t L_2 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_2, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* cyt_1_idy_m5EC775B25D9593DDE2A5FEFDC152D5BA82499045_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E L_0;
|
|
L_0 = cyt_1_GetEnumerator_mFC1C25E64E63822D19CD354C3A2B0271CE1BE0CF(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 48));
|
|
cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E L_1 = L_0;
|
|
RuntimeObject* L_2 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 42), &L_1);
|
|
return (RuntimeObject*)L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1__cctor_m071F21C2E5551BE747C1BCC438730782E6B391CA_gshared (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_0 = (Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259*)(Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259*)SZArrayNew(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 8), (uint32_t)0);
|
|
((cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___ofe = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___ofe), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool cyt_1_TrueForAll_m70BE9A9F36F930916EEB1BC122F7EFFE0B067A4D_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* ___0_match, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* L_0 = ___0_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_mF9A49B8ACE89034950993E4975E418968023288D(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
V_0 = 0;
|
|
goto IL_0024;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* L_1 = ___0_match;
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_2 = __this->___Items;
|
|
int32_t L_3 = V_0;
|
|
NullCheck(L_2);
|
|
int32_t L_4 = L_3;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
|
|
NullCheck(L_1);
|
|
bool L_6;
|
|
L_6 = Predicate_1_Invoke_mDADE161CEBD2C998D731FDAEB5F81BFCD7F4B984_inline(L_1, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 32));
|
|
if (L_6)
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
int32_t L_7 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
int32_t L_8 = V_0;
|
|
int32_t L_9 = __this->___Count;
|
|
if ((((int32_t)L_8) < ((int32_t)L_9)))
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Add_m665ADCD997B066832AA5791D41EDBF09E2B058D1_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___0_item, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_1 = __this->___Items;
|
|
NullCheck(L_1);
|
|
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)(((RuntimeArray*)L_1)->max_length))))))
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
cyt_1_GrowIfNeeded_m0B3BB1894C2FC2DD110375B51DB03C40E568E63F(__this, 1, il2cpp_rgctx_method(method->klass->rgctx_data, 25));
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_2 = __this->___Items;
|
|
int32_t L_3 = __this->___Count;
|
|
V_0 = L_3;
|
|
int32_t L_4 = V_0;
|
|
__this->___Count = ((int32_t)il2cpp_codegen_add(L_4, 1));
|
|
int32_t L_5 = V_0;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_6 = ___0_item;
|
|
NullCheck(L_2);
|
|
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B)L_6);
|
|
int32_t L_7 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_lpf_m2F453194505291C84769E369606555051908AC10_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
Comparer_1_t2158F98C5484AAD9CDBEC169B93B8E28C528F647* L_2;
|
|
L_2 = Comparer_1_get_Default_mB05937E8B4EB28971561831884D5D55B86740198(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
Array_Sort_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_m1BC51854203A2823C849C9959B4FD7EAC0990E9D(L_0, 0, L_1, (RuntimeObject*)L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
int32_t L_3 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_3, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* cyt_1_ToArray_mBAB4CFBAFEDD03EB236DF5FFDBBA746F5CEC7BE0_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, const RuntimeMethod* method)
|
|
{
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* V_0 = NULL;
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_1 = (Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259*)(Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 8), (uint32_t)L_0);
|
|
V_0 = L_1;
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_2 = __this->___Items;
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_3 = V_0;
|
|
int32_t L_4 = __this->___Count;
|
|
Array_Copy_m4233828B4E6288B6D815F539AAA38575DE627900((RuntimeArray*)L_2, (RuntimeArray*)L_3, L_4, NULL);
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_5 = V_0;
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_xn_mD84E5D321B2DCF7CE1E1746ACD38C02E375DFA06_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
Array_Reverse_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_mED878CBBB3A2B00E856FEEB4E0CAB3716075485F(L_0, 0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 34));
|
|
int32_t L_2 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_2, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1__ctor_m97ABF3F1E20469477BDCD07E96D969833E81C172_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
int32_t L_0 = ___0_a;
|
|
if ((((int32_t)L_0) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_1 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC37D78082ACFC8DEE7B32D9351C6E433A074FEC7)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
int32_t L_2 = ___0_a;
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_3 = (Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259*)(Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 8), (uint32_t)L_2);
|
|
__this->___Items = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___Items), (void*)L_3);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Sort_mA448DD6CAF70294172754338EC0F9AD314A0C848_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, RuntimeObject* ___0_comparer, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
RuntimeObject* L_2 = ___0_comparer;
|
|
Array_Sort_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_m1BC51854203A2823C849C9959B4FD7EAC0990E9D(L_0, 0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
int32_t L_3 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_3, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_CopyTo_m2C76E490795BD78740FFA757288FB6646777482F_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_index, Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* ___1_array, int32_t ___2_arrayIndex, int32_t ___3_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1 = ___3_count;
|
|
cyt_1_idl_mADCCA47F644A1F7500357A65BB86B338ADF548C3(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_2 = __this->___Items;
|
|
int32_t L_3 = ___0_index;
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_4 = ___1_array;
|
|
int32_t L_5 = ___2_arrayIndex;
|
|
int32_t L_6 = ___3_count;
|
|
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_2, L_3, (RuntimeArray*)L_4, L_5, L_6, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Sort_m9326AF105657E2F189BFF4DF4B6380F11A9D43FB_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_index, int32_t ___1_count, RuntimeObject* ___2_comparer, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1 = ___1_count;
|
|
cyt_1_idl_mADCCA47F644A1F7500357A65BB86B338ADF548C3(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_2 = __this->___Items;
|
|
int32_t L_3 = ___0_index;
|
|
int32_t L_4 = ___1_count;
|
|
RuntimeObject* L_5 = ___2_comparer;
|
|
Array_Sort_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_m1BC51854203A2823C849C9959B4FD7EAC0990E9D(L_2, L_3, L_4, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
int32_t L_6 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_6, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_mmf_m655DF50635877C4C3C492889311C53F4DBDF055F_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
Comparer_1_t2158F98C5484AAD9CDBEC169B93B8E28C528F647* L_2;
|
|
L_2 = Comparer_1_get_Default_mB05937E8B4EB28971561831884D5D55B86740198(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
Array_Sort_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_m1BC51854203A2823C849C9959B4FD7EAC0990E9D(L_0, 0, L_1, (RuntimeObject*)L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
int32_t L_3 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_3, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idn_m2193B2639133F531DFE87BF688FD3D95F744DC87_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, RuntimeObject* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
RuntimeObject* L_0 = ___0_a;
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_1;
|
|
L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 3), L_0);
|
|
V_0 = L_1;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0021:
|
|
{
|
|
{
|
|
RuntimeObject* L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = V_0;
|
|
NullCheck((RuntimeObject*)L_3);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_3);
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_0017_1;
|
|
}
|
|
|
|
IL_0009_1:
|
|
{
|
|
RuntimeObject* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_5;
|
|
L_5 = InterfaceFuncInvoker0< Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 36), L_4);
|
|
V_1 = L_5;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_6 = V_1;
|
|
cyt_1_Add_m665ADCD997B066832AA5791D41EDBF09E2B058D1(__this, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
|
|
}
|
|
|
|
IL_0017_1:
|
|
{
|
|
RuntimeObject* L_7 = V_0;
|
|
NullCheck((RuntimeObject*)L_7);
|
|
bool L_8;
|
|
L_8 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_7);
|
|
if (L_8)
|
|
{
|
|
goto IL_0009_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_002b;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_dm_m69DD9AF3DE817509F582682A3B7D5C10A34540DE_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
Array_Reverse_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_mED878CBBB3A2B00E856FEEB4E0CAB3716075485F(L_0, 0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 34));
|
|
int32_t L_2 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_2, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Sort_m21C8ACA1118E9CFDFAD0C48A8715738D40EABE83_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, Comparison_1_t939FA5753922E5ECCF481BF4BC889604ED91887E* ___0_comparison, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_0 = __this->___Items;
|
|
Comparison_1_t939FA5753922E5ECCF481BF4BC889604ED91887E* L_1 = ___0_comparison;
|
|
Array_Sort_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_m6FA55327636C69CCD08BCF2DAE2FBE8F99EFE05C(L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 50));
|
|
int32_t L_2 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_2, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_set_Capacity_m80512E7F8AB3648DB3FD429E18528E8617E89F98_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
int32_t L_1 = __this->___Count;
|
|
if ((!(((uint32_t)L_0) < ((uint32_t)L_1))))
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_2 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mB596C51BFA864B65C2CED275458FAE90F7CD29C9(L_2, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, method);
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259** L_3 = (Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259**)(&__this->___Items);
|
|
int32_t L_4 = ___0_value;
|
|
Array_Resize_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_m848A8FC319792F387E6DF3EC87DF9E9685763375(L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 51));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_EnsureCapacity_m47374C91C0BCA2B7A870EAAD11F15A26A240020A_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_min, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t G_B4_0 = 0;
|
|
{
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_0 = __this->___Items;
|
|
NullCheck(L_0);
|
|
int32_t L_1 = ___0_min;
|
|
if ((((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))) >= ((int32_t)L_1)))
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_2 = __this->___Items;
|
|
NullCheck(L_2);
|
|
if (!(((RuntimeArray*)L_2)->max_length))
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_3 = __this->___Items;
|
|
NullCheck(L_3);
|
|
G_B4_0 = ((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_3)->max_length)), 2));
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
G_B4_0 = 4;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
V_0 = G_B4_0;
|
|
int32_t L_4 = V_0;
|
|
int32_t L_5 = ___0_min;
|
|
if ((((int32_t)L_4) >= ((int32_t)L_5)))
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_6 = ___0_min;
|
|
V_0 = L_6;
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
int32_t L_7 = V_0;
|
|
cyt_1_set_Capacity_m80512E7F8AB3648DB3FD429E18528E8617E89F98(__this, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* cyt_1_Resize_m2637461097B74D9BC09132CA6E14616F56CFEB71_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_newSize, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
{
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_0 = __this->___Items;
|
|
NullCheck(L_0);
|
|
V_0 = ((int32_t)(((RuntimeArray*)L_0)->max_length));
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_1 = __this->___Items;
|
|
V_1 = L_1;
|
|
int32_t L_2 = ___0_newSize;
|
|
int32_t L_3 = V_0;
|
|
if ((((int32_t)L_2) <= ((int32_t)L_3)))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259** L_4 = (Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259**)(&__this->___Items);
|
|
int32_t L_5 = ___0_newSize;
|
|
Array_Resize_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_m848A8FC319792F387E6DF3EC87DF9E9685763375(L_4, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 51));
|
|
goto IL_0042;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
int32_t L_6 = ___0_newSize;
|
|
int32_t L_7 = V_0;
|
|
if ((((int32_t)L_6) >= ((int32_t)L_7)))
|
|
{
|
|
goto IL_0042;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_8 = ___0_newSize;
|
|
V_2 = L_8;
|
|
goto IL_003e;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_9 = V_1;
|
|
int32_t L_10 = V_2;
|
|
il2cpp_codegen_initobj((&V_3), sizeof(Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B));
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_11 = V_3;
|
|
NullCheck(L_9);
|
|
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(L_10), (Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B)L_11);
|
|
int32_t L_12 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_12, 1));
|
|
}
|
|
|
|
IL_003e:
|
|
{
|
|
int32_t L_13 = V_2;
|
|
int32_t L_14 = V_0;
|
|
if ((((int32_t)L_13) < ((int32_t)L_14)))
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
|
|
IL_0042:
|
|
{
|
|
int32_t L_15 = ___0_newSize;
|
|
__this->___Count = L_15;
|
|
return __this;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_jz_m6896C5526D1273F2FC5002041908CAB49ED878FF_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
Comparer_1_t2158F98C5484AAD9CDBEC169B93B8E28C528F647* L_2;
|
|
L_2 = Comparer_1_get_Default_mB05937E8B4EB28971561831884D5D55B86740198(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
Array_Sort_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_m1BC51854203A2823C849C9959B4FD7EAC0990E9D(L_0, 0, L_1, (RuntimeObject*)L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
int32_t L_3 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_3, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_duz_mE23DF76A1988E369EC28F034D354F072F9EC0AA8_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_index;
|
|
int32_t L_2 = __this->___Count;
|
|
if ((!(((uint32_t)L_1) >= ((uint32_t)L_2))))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF30F85E4B9304912E404666CAD45979D3833BFAE)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
int32_t L_4 = ___0_index;
|
|
cyt_1_ids_mD8353B1327BE0F02A0B4EF33D20F04B6FFD850CC(__this, L_4, (-1), il2cpp_rgctx_method(method->klass->rgctx_data, 12));
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_5 = __this->___Items;
|
|
int32_t L_6 = __this->___Count;
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_5, L_6, 1, NULL);
|
|
int32_t L_7 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_bca_mA76FCD62555427CB120E0EFA926C4EC74A384BF7_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_a, int32_t ___1_b, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
if ((((int32_t)L_0) >= ((int32_t)0)))
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_1 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral14E4A1F492301946015F0A6B1C40296CE46A4251)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
int32_t L_2 = ___1_b;
|
|
if ((((int32_t)L_2) >= ((int32_t)0)))
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral30B98916AF7031E9D83FB88E885E523F6A280F64)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
int32_t L_4 = ___0_a;
|
|
int32_t L_5 = ___1_b;
|
|
int32_t L_6 = __this->___Count;
|
|
if ((!(((uint32_t)((int32_t)il2cpp_codegen_add(L_4, L_5))) > ((uint32_t)L_6))))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_7 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral253F379CE43832F182E0F1922F84B2F9D7990EAE)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, method);
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_ik_mD642735741C496C64245D050EFDBA40225AA6AA1_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_addedCount, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
int32_t L_1 = ___0_addedCount;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_0, L_1));
|
|
int32_t L_2 = V_0;
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_3 = __this->___Items;
|
|
NullCheck(L_3);
|
|
if ((((int32_t)L_2) <= ((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_4;
|
|
L_4 = cyt_1_get_Capacity_m02CB722643B2B3A6B5D4DBF3E7B973E31BF1D21D(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
int32_t L_5;
|
|
L_5 = Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF(((int32_t)il2cpp_codegen_multiply(L_4, 2)), 4, NULL);
|
|
int32_t L_6 = V_0;
|
|
int32_t L_7;
|
|
L_7 = Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF(L_5, L_6, NULL);
|
|
cyt_1_set_Capacity_m80512E7F8AB3648DB3FD429E18528E8617E89F98(__this, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_mzc_mB5317BC5A441E333C98EED14DAD5DE84966A75EA_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
cyt_1_set_Capacity_m80512E7F8AB3648DB3FD429E18528E8617E89F98(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Reverse_mE6172E195187CA476F69EF0A117057EFC57A4481_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_index, int32_t ___1_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1 = ___1_count;
|
|
cyt_1_idl_mADCCA47F644A1F7500357A65BB86B338ADF548C3(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_2 = __this->___Items;
|
|
int32_t L_3 = ___0_index;
|
|
int32_t L_4 = ___1_count;
|
|
Array_Reverse_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_mED878CBBB3A2B00E856FEEB4E0CAB3716075485F(L_2, L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 34));
|
|
int32_t L_5 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_AddRange_m817BC63E3B312EFC1AA2EB5DCAD11EF0263A09B3_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, RuntimeObject* ___0_collection, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___0_collection;
|
|
cyt_1_idu_mB554082BA3DCC6D79880A04CC3CF3DCEE515E1C5(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
|
|
RuntimeObject* L_1 = ___0_collection;
|
|
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 5)));
|
|
RuntimeObject* L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = V_0;
|
|
cyt_1_idm_m6E084CF983BD0548EBB9CDB7E0429E8CAFCCE470(__this, L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 9));
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
RuntimeObject* L_4 = ___0_collection;
|
|
cyt_1_idn_m2193B2639133F531DFE87BF688FD3D95F744DC87(__this, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 6));
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
int32_t L_5 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_lnb_mB37DAA08B798595045869222EB194E46204191A8_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_index, int32_t ___1_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1 = ___1_count;
|
|
cyt_1_idl_mADCCA47F644A1F7500357A65BB86B338ADF548C3(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_2 = __this->___Items;
|
|
int32_t L_3 = ___0_index;
|
|
int32_t L_4 = ___1_count;
|
|
Array_Reverse_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_mED878CBBB3A2B00E856FEEB4E0CAB3716075485F(L_2, L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 34));
|
|
int32_t L_5 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_CopyTo_m2E27CC58C0654ECFA9A9C65E5654B2D518194D08_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* ___0_array, int32_t ___1_arrayIndex, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_0 = __this->___Items;
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_1 = ___0_array;
|
|
int32_t L_2 = ___1_arrayIndex;
|
|
int32_t L_3 = __this->___Count;
|
|
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_0, 0, (RuntimeArray*)L_1, L_2, L_3, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_bqm_mB5D7887404A857E85C1652B78F3971C08B7F44CE_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_a;
|
|
int32_t L_2 = __this->___Count;
|
|
if ((!(((uint32_t)L_1) > ((uint32_t)L_2))))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9BAEE8262C16DE81112FD83C0BCDF8B9B7492766)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_ook_m2CC095C5B1ED8767A4BB507BDFD045681AC562D7_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_a;
|
|
int32_t L_2 = __this->___Count;
|
|
if ((!(((uint32_t)L_1) > ((uint32_t)L_2))))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral42D48467A5973EC464AB24EB0FCB81BA90632807)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool cyt_1_Contains_mD480989573C8DF45B2546A342226CBCCC4101582_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___0_item, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_0 = __this->___Items;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_1 = ___0_item;
|
|
int32_t L_2 = __this->___Count;
|
|
int32_t L_3;
|
|
L_3 = Array_IndexOf_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_m4A144DC89C23111FE2293A75D78A9265CECBC2B6(L_0, L_1, 0, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 44));
|
|
return (bool)((((int32_t)((((int32_t)L_3) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_ids_mD8353B1327BE0F02A0B4EF33D20F04B6FFD850CC_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_a, int32_t ___1_b, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___1_b;
|
|
if ((((int32_t)L_0) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_a;
|
|
int32_t L_2 = ___1_b;
|
|
___0_a = ((int32_t)il2cpp_codegen_subtract(L_1, L_2));
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
int32_t L_3 = ___0_a;
|
|
int32_t L_4 = __this->___Count;
|
|
if ((((int32_t)L_3) >= ((int32_t)L_4)))
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_5 = __this->___Items;
|
|
int32_t L_6 = ___0_a;
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_7 = __this->___Items;
|
|
int32_t L_8 = ___0_a;
|
|
int32_t L_9 = ___1_b;
|
|
int32_t L_10 = __this->___Count;
|
|
int32_t L_11 = ___0_a;
|
|
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_5, L_6, (RuntimeArray*)L_7, ((int32_t)il2cpp_codegen_add(L_8, L_9)), ((int32_t)il2cpp_codegen_subtract(L_10, L_11)), NULL);
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
int32_t L_12 = __this->___Count;
|
|
int32_t L_13 = ___1_b;
|
|
__this->___Count = ((int32_t)il2cpp_codegen_add(L_12, L_13));
|
|
int32_t L_14 = ___1_b;
|
|
if ((((int32_t)L_14) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0054;
|
|
}
|
|
}
|
|
{
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_15 = __this->___Items;
|
|
int32_t L_16 = __this->___Count;
|
|
int32_t L_17 = ___1_b;
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_15, L_16, ((-L_17)), NULL);
|
|
}
|
|
|
|
IL_0054:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_BinarySearch_m877927C51F86A9482EFBEDD9D69C715A8C0F4CE6_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___0_item, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_2 = ___0_item;
|
|
int32_t L_3;
|
|
L_3 = Array_BinarySearch_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_mD6B304F2750E88FFAAADD4B2F0C93AD705FA0E4B(L_0, 0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 53));
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B cyt_1_FindLast_mFE8373335EFEF3F62211ED65501A8939F24AF3FE_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* ___0_match, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* L_0 = ___0_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_mF9A49B8ACE89034950993E4975E418968023288D(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
int32_t L_1 = __this->___Count;
|
|
Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* L_2 = ___0_match;
|
|
int32_t L_3;
|
|
L_3 = cyt_1_idr_m0C5B2440BF77A3C6ECEF39603A4C5E3EEAC9A718(__this, 0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 41));
|
|
V_0 = L_3;
|
|
int32_t L_4 = V_0;
|
|
if ((((int32_t)L_4) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_5 = __this->___Items;
|
|
int32_t L_6 = V_0;
|
|
NullCheck(L_5);
|
|
int32_t L_7 = L_6;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
|
|
return L_8;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
il2cpp_codegen_initobj((&V_1), sizeof(Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B));
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_9 = V_1;
|
|
return L_9;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_njz_mE81B98A7D6F9C483AA26D50089C3B4B4AD0D5454_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
Array_Reverse_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_mED878CBBB3A2B00E856FEEB4E0CAB3716075485F(L_0, 0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 34));
|
|
int32_t L_2 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_2, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idv_m9C1D72AE7519FC36E50E0513B004A8B2DDB3DAFF_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_a, RuntimeObject* ___1_b, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
RuntimeObject* L_0 = ___1_b;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_0);
|
|
V_0 = L_1;
|
|
int32_t L_2 = V_0;
|
|
cyt_1_GrowIfNeeded_m0B3BB1894C2FC2DD110375B51DB03C40E568E63F(__this, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 25));
|
|
int32_t L_3 = ___0_a;
|
|
int32_t L_4 = V_0;
|
|
cyt_1_ids_mD8353B1327BE0F02A0B4EF33D20F04B6FFD850CC(__this, L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 12));
|
|
RuntimeObject* L_5 = ___1_b;
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_6 = __this->___Items;
|
|
int32_t L_7 = ___0_a;
|
|
NullCheck(L_5);
|
|
InterfaceActionInvoker2< Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259*, int32_t >::Invoke(5, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_5, L_6, L_7);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_TrimExcess_m099664385B18981557050D2316554708FB8FCD7A_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
cyt_1_set_Capacity_m80512E7F8AB3648DB3FD429E18528E8617E89F98(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_lbk_m0B501D0B4107E5C03ED7CC2AA4B68DDCF6950934_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_min, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t G_B4_0 = 0;
|
|
{
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_0 = __this->___Items;
|
|
NullCheck(L_0);
|
|
int32_t L_1 = ___0_min;
|
|
if ((((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))) >= ((int32_t)L_1)))
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_2 = __this->___Items;
|
|
NullCheck(L_2);
|
|
if (!(((RuntimeArray*)L_2)->max_length))
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_3 = __this->___Items;
|
|
NullCheck(L_3);
|
|
G_B4_0 = ((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_3)->max_length)), 2));
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
G_B4_0 = 4;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
V_0 = G_B4_0;
|
|
int32_t L_4 = V_0;
|
|
int32_t L_5 = ___0_min;
|
|
if ((((int32_t)L_4) >= ((int32_t)L_5)))
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_6 = ___0_min;
|
|
V_0 = L_6;
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
int32_t L_7 = V_0;
|
|
cyt_1_set_Capacity_m80512E7F8AB3648DB3FD429E18528E8617E89F98(__this, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_BinarySearch_mE3950BF503D8ED12C94BB0188309A8D52B691714_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_index, int32_t ___1_count, Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___2_item, RuntimeObject* ___3_comparer, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1 = ___1_count;
|
|
cyt_1_idl_mADCCA47F644A1F7500357A65BB86B338ADF548C3(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_2 = __this->___Items;
|
|
int32_t L_3 = ___0_index;
|
|
int32_t L_4 = ___1_count;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_5 = ___2_item;
|
|
RuntimeObject* L_6 = ___3_comparer;
|
|
int32_t L_7;
|
|
L_7 = Array_BinarySearch_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_m4105FC846F0210DFB1493B8502107DFC7F4447FA(L_2, L_3, L_4, L_5, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 19));
|
|
return L_7;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_lpy_m1D418E88BD298F23638290603CB8DF8B9C9F298C_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_a;
|
|
int32_t L_2 = __this->___Count;
|
|
if ((!(((uint32_t)L_1) > ((uint32_t)L_2))))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEC97BB83DEFADDF866FC5F52CAC696C8CBA94929)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Sort_m5D46BD0211EFCED49F95EFD21320780BD45C4A74_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
Comparer_1_t2158F98C5484AAD9CDBEC169B93B8E28C528F647* L_2;
|
|
L_2 = Comparer_1_get_Default_mB05937E8B4EB28971561831884D5D55B86740198(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
Array_Sort_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_m1BC51854203A2823C849C9959B4FD7EAC0990E9D(L_0, 0, L_1, (RuntimeObject*)L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
int32_t L_3 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_3, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_idr_m0C5B2440BF77A3C6ECEF39603A4C5E3EEAC9A718_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_a, int32_t ___1_b, Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* ___2_c, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
int32_t L_1 = ___1_b;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_0, L_1));
|
|
goto IL_0020;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* L_2 = ___2_c;
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_3 = __this->___Items;
|
|
int32_t L_4 = V_0;
|
|
int32_t L_5 = ((int32_t)il2cpp_codegen_subtract(L_4, 1));
|
|
V_0 = L_5;
|
|
NullCheck(L_3);
|
|
int32_t L_6 = L_5;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_7 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
|
|
NullCheck(L_2);
|
|
bool L_8;
|
|
L_8 = Predicate_1_Invoke_mDADE161CEBD2C998D731FDAEB5F81BFCD7F4B984_inline(L_2, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 32));
|
|
if (!L_8)
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_9 = V_0;
|
|
return L_9;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
int32_t L_10 = V_0;
|
|
int32_t L_11 = ___0_a;
|
|
if ((!(((uint32_t)L_10) == ((uint32_t)L_11))))
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
return (-1);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* cyt_1_GetRange_mBB4D94CCF160F24357367A0A3A924EE485204E3F_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_index, int32_t ___1_count, const RuntimeMethod* method)
|
|
{
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* V_0 = NULL;
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1 = ___1_count;
|
|
cyt_1_idl_mADCCA47F644A1F7500357A65BB86B338ADF548C3(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
int32_t L_2 = ___1_count;
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_3 = (Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259*)(Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 8), (uint32_t)L_2);
|
|
V_0 = L_3;
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_4 = __this->___Items;
|
|
int32_t L_5 = ___0_index;
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_6 = V_0;
|
|
int32_t L_7 = ___1_count;
|
|
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_4, L_5, (RuntimeArray*)L_6, 0, L_7, NULL);
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_8 = V_0;
|
|
int32_t L_9 = ___1_count;
|
|
cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* L_10 = (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 0));
|
|
cyt_1__ctor_m93DE95E671C9DB89E17A54005E9E05E30CCAD6C6(L_10, L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 54));
|
|
return L_10;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_IndexOf_mD4DE311DFCDE7BC9471A97058A057499D3B0F273_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___0_item, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Color32U5BU5D_t38116C3E91765C4C5726CE12C77FAD7F9F737259* L_0 = __this->___Items;
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_1 = ___0_item;
|
|
int32_t L_2 = __this->___Count;
|
|
int32_t L_3;
|
|
L_3 = Array_IndexOf_TisColor32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B_m4A144DC89C23111FE2293A75D78A9265CECBC2B6(L_0, L_1, 0, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 44));
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_llt_m8793F908EC786640632455D2F7F998C2CD917CEE_gshared (cyt_1_t1A8B73E522BCAB1EBC33F290E3ABD011D0BCD393* __this, int32_t ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_a;
|
|
int32_t L_2 = __this->___Count;
|
|
if ((!(((uint32_t)L_1) > ((uint32_t)L_2))))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0EBE26183B9E5BF28E32247130C32FFD868B5565)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1__ctor_m021E3F2A9C6CFC552E6BA8E26A5007A71CF8C5E8_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = ((cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___ofe;
|
|
__this->___Items = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___Items), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1__ctor_mF5301B086AD144D9EA9B2ED87266604413716A83_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, RuntimeObject* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
RuntimeObject* L_0 = ___0_a;
|
|
cyt_1_idu_mB71D47073B98FA75225C4AFFA5A0B6DC63EF3823(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
|
|
RuntimeObject* L_1 = ___0_a;
|
|
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 5)));
|
|
RuntimeObject* L_2 = V_0;
|
|
if (L_2)
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_3 = ((cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___ofe;
|
|
__this->___Items = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___Items), (void*)L_3);
|
|
RuntimeObject* L_4 = ___0_a;
|
|
cyt_1_idn_m9805CD68ED7630DC4295D68C9F20DC4EA0178EBA(__this, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 6));
|
|
return;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
RuntimeObject* L_5 = V_0;
|
|
NullCheck(L_5);
|
|
int32_t L_6;
|
|
L_6 = InterfaceFuncInvoker0< int32_t >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_5);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_7 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 8), (uint32_t)L_6);
|
|
__this->___Items = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___Items), (void*)L_7);
|
|
RuntimeObject* L_8 = V_0;
|
|
cyt_1_idm_m44A1224F81DCBACBE89297478537AE8FF7BAE3A0(__this, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 9));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_GrowIfNeeded_mDE655F2F7E4C2CBBC0AF9F6B1D6495A454CB7B62_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_addedCount, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
int32_t L_1 = ___0_addedCount;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_0, L_1));
|
|
int32_t L_2 = V_0;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_3 = __this->___Items;
|
|
NullCheck(L_3);
|
|
if ((((int32_t)L_2) <= ((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_4;
|
|
L_4 = cyt_1_get_Capacity_mC0F5D69F3BB786AD478112777FF0EBF0E5B3BE14(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
int32_t L_5;
|
|
L_5 = Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF(((int32_t)il2cpp_codegen_multiply(L_4, 2)), 4, NULL);
|
|
int32_t L_6 = V_0;
|
|
int32_t L_7;
|
|
L_7 = Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF(L_5, L_6, NULL);
|
|
cyt_1_set_Capacity_m722108BF059153BAE79C7EDF507EEB48C779F8FC(__this, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_RemoveAt_m8AE91E06CFE08993B2E47188E5C7C09B80A656C0_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_index;
|
|
int32_t L_2 = __this->___Count;
|
|
if ((!(((uint32_t)L_1) >= ((uint32_t)L_2))))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
int32_t L_4 = ___0_index;
|
|
cyt_1_ids_m56BADCBF779101B71239D09D1AC3BFD3BE04EB76(__this, L_4, (-1), il2cpp_rgctx_method(method->klass->rgctx_data, 12));
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_5 = __this->___Items;
|
|
int32_t L_6 = __this->___Count;
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_5, L_6, 1, NULL);
|
|
int32_t L_7 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_fpr_m0B615D79F1B954C506FEEE25A048965476D0ABA1_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
Comparer_1_t2FF14F26F4D678A8FA199B888FF61A2A9D1D2D80* L_2;
|
|
L_2 = Comparer_1_get_Default_m55220E2A5C7845F68201F047E7DA0D708E8AE051(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
Array_Sort_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m6E0CF4C26182BB9D788C90ABE423C2F4CD145E41(L_0, 0, L_1, (RuntimeObject*)L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
int32_t L_3 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_3, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_BinarySearch_m65F89180D00BEB57D8192016B1599D91138F0F68_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_item, RuntimeObject* ___1_comparer, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
int32_t L_2 = ___0_item;
|
|
RuntimeObject* L_3 = ___1_comparer;
|
|
int32_t L_4;
|
|
L_4 = Array_BinarySearch_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC9C8319715804B003E1E2802B394C514987FE618(L_0, 0, L_1, L_2, L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 19));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_RemoveRange_m48B52564E512DACBD28523790451AC9BFC40210E_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_index, int32_t ___1_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1 = ___1_count;
|
|
cyt_1_idl_m9000500F726149135080EFE12D9BBAEF68A8F3E7(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
int32_t L_2 = ___1_count;
|
|
if ((((int32_t)L_2) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = ___0_index;
|
|
int32_t L_4 = ___1_count;
|
|
cyt_1_ids_m56BADCBF779101B71239D09D1AC3BFD3BE04EB76(__this, L_3, ((-L_4)), il2cpp_rgctx_method(method->klass->rgctx_data, 12));
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_5 = __this->___Items;
|
|
int32_t L_6 = __this->___Count;
|
|
int32_t L_7 = ___1_count;
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_5, L_6, L_7, NULL);
|
|
int32_t L_8 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_8, 1));
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_ihk_m9D4C7FC1650D3F43960DA97D9C62C8B7E4EE605E_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, bool ___0_clearArray, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_clearArray;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_1 = __this->___Items;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_2 = __this->___Items;
|
|
NullCheck(L_2);
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_1, 0, ((int32_t)(((RuntimeArray*)L_2)->max_length)), NULL);
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
__this->___Count = 0;
|
|
int32_t L_3 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_3, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_LastIndexOf_mF6EE2DDF8768DFCE3ECA27386250C84BB40248E4_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_item, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___1_index;
|
|
cyt_1_idt_mC8A7F5432D2B0C10A4FC495599BF439C9231C2CD(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 21));
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_1 = __this->___Items;
|
|
int32_t L_2 = ___0_item;
|
|
int32_t L_3 = ___1_index;
|
|
int32_t L_4 = ___1_index;
|
|
int32_t L_5;
|
|
L_5 = Array_LastIndexOf_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m459730221F1EEF97FEF185B13132174BA7CA27E5(L_1, L_2, L_3, ((int32_t)il2cpp_codegen_add(L_4, 1)), il2cpp_rgctx_method(method->klass->rgctx_data, 22));
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool cyt_1_Remove_m6A671AC786F3FC5476001094D0A7F8A541EC8918_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_item, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = ___0_item;
|
|
int32_t L_1;
|
|
L_1 = cyt_1_IndexOf_m51B723D3B69FAA8FC99A1093B193B7C6CFD473D6(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 23));
|
|
V_0 = L_1;
|
|
int32_t L_2 = V_0;
|
|
if ((((int32_t)L_2) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = V_0;
|
|
cyt_1_RemoveAt_m8AE91E06CFE08993B2E47188E5C7C09B80A656C0(__this, L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 24));
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
int32_t L_4 = V_0;
|
|
return (bool)((((int32_t)((((int32_t)L_4) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_get_Capacity_mC0F5D69F3BB786AD478112777FF0EBF0E5B3BE14_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = __this->___Items;
|
|
NullCheck(L_0);
|
|
return ((int32_t)(((RuntimeArray*)L_0)->max_length));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_AddRange_m312901D3F772854D26599C5607DD17AD686C936A_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* ___0_list, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* L_0 = ___0_list;
|
|
cyt_1_idu_mB71D47073B98FA75225C4AFFA5A0B6DC63EF3823(__this, (RuntimeObject*)L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
|
|
cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* L_1 = ___0_list;
|
|
NullCheck(L_1);
|
|
int32_t L_2 = L_1->___Count;
|
|
V_0 = L_2;
|
|
int32_t L_3 = V_0;
|
|
if (L_3)
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
int32_t L_4 = V_0;
|
|
cyt_1_GrowIfNeeded_mDE655F2F7E4C2CBBC0AF9F6B1D6495A454CB7B62(__this, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 25));
|
|
cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* L_5 = ___0_list;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_6 = __this->___Items;
|
|
int32_t L_7 = __this->___Count;
|
|
NullCheck(L_5);
|
|
cyt_1_CopyTo_m6B41E78E39EAC0EDE3BE6B11546680A49E56D0D7(L_5, L_6, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 26));
|
|
int32_t L_8 = __this->___Count;
|
|
int32_t L_9 = V_0;
|
|
__this->___Count = ((int32_t)il2cpp_codegen_add(L_8, L_9));
|
|
int32_t L_10 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_10, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_mcl_m8BD139DBE8D2E1FA0A177135278752EC9DF0D65F_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_addedCount, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
int32_t L_1 = ___0_addedCount;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_0, L_1));
|
|
int32_t L_2 = V_0;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_3 = __this->___Items;
|
|
NullCheck(L_3);
|
|
if ((((int32_t)L_2) <= ((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_4;
|
|
L_4 = cyt_1_get_Capacity_mC0F5D69F3BB786AD478112777FF0EBF0E5B3BE14(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
int32_t L_5;
|
|
L_5 = Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF(((int32_t)il2cpp_codegen_multiply(L_4, 2)), 4, NULL);
|
|
int32_t L_6 = V_0;
|
|
int32_t L_7;
|
|
L_7 = Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF(L_5, L_6, NULL);
|
|
cyt_1_set_Capacity_m722108BF059153BAE79C7EDF507EEB48C779F8FC(__this, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_Pop_mC7217E462B15AE99DBA5C16A1005154AB7E208D0_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
if (L_0)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral57462D5D876383291750F779D30A75A0AD5ED4AE)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
int32_t L_2 = __this->___Count;
|
|
V_0 = ((int32_t)il2cpp_codegen_subtract(L_2, 1));
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_3 = __this->___Items;
|
|
int32_t L_4 = V_0;
|
|
NullCheck(L_3);
|
|
int32_t L_5 = L_4;
|
|
int32_t L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_7 = __this->___Items;
|
|
int32_t L_8 = V_0;
|
|
il2cpp_codegen_initobj((&V_1), sizeof(int32_t));
|
|
int32_t L_9 = V_1;
|
|
NullCheck(L_7);
|
|
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(L_8), (int32_t)L_9);
|
|
int32_t L_10 = __this->___Count;
|
|
__this->___Count = ((int32_t)il2cpp_codegen_subtract(L_10, 1));
|
|
int32_t L_11 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_11, 1));
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_LastIndexOf_mE02FD4D0A7E5D35267046732C8EADFB5A8227800_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_item, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = __this->___Items;
|
|
int32_t L_1 = ___0_item;
|
|
int32_t L_2 = __this->___Count;
|
|
int32_t L_3 = __this->___Count;
|
|
int32_t L_4;
|
|
L_4 = Array_LastIndexOf_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m459730221F1EEF97FEF185B13132174BA7CA27E5(L_0, L_1, ((int32_t)il2cpp_codegen_subtract(L_2, 1)), L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 22));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_cdv_m82090ABB0F848F216F9CDD976181E12D4E8F80FE_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
cyt_1_set_Capacity_m722108BF059153BAE79C7EDF507EEB48C779F8FC(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_Find_m876EEECD6C6100439739E643E8565E418DEFF18C_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* ___0_match, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* L_0 = ___0_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_m6E1F1840CE1042CBBDCE5686A52B9B4884A332FF(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
int32_t L_1 = __this->___Count;
|
|
Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* L_2 = ___0_match;
|
|
int32_t L_3;
|
|
L_3 = cyt_1_idq_m277DA1C68B800F6AD2005F513FB13D938963D694(__this, 0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 29));
|
|
V_0 = L_3;
|
|
int32_t L_4 = V_0;
|
|
if ((!(((uint32_t)L_4) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_initobj((&V_1), sizeof(int32_t));
|
|
int32_t L_5 = V_1;
|
|
return L_5;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_6 = __this->___Items;
|
|
int32_t L_7 = V_0;
|
|
NullCheck(L_6);
|
|
int32_t L_8 = L_7;
|
|
int32_t L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
|
|
return L_9;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Clear_mB395278AC0F8CCA753D688DB6C1555F78FBFAAC0_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, bool ___0_clearArray, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_clearArray;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_1 = __this->___Items;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_2 = __this->___Items;
|
|
NullCheck(L_2);
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_1, 0, ((int32_t)(((RuntimeArray*)L_2)->max_length)), NULL);
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
__this->___Count = 0;
|
|
int32_t L_3 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_3, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idl_m9000500F726149135080EFE12D9BBAEF68A8F3E7_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_a, int32_t ___1_b, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
if ((((int32_t)L_0) >= ((int32_t)0)))
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_1 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
int32_t L_2 = ___1_b;
|
|
if ((((int32_t)L_2) >= ((int32_t)0)))
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral07624473F417C06C74D59C64840A1532FCE2C626)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
int32_t L_4 = ___0_a;
|
|
int32_t L_5 = ___1_b;
|
|
int32_t L_6 = __this->___Count;
|
|
if ((!(((uint32_t)((int32_t)il2cpp_codegen_add(L_4, L_5))) > ((uint32_t)L_6))))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_7 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8323D44D38CA9D8ED487159B21F762B262510EE5)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, method);
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_FindIndex_m9BA8D0398A1F6952768C14B7356B7351A9BA160A_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* ___0_match, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* L_0 = ___0_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_m6E1F1840CE1042CBBDCE5686A52B9B4884A332FF(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
int32_t L_1 = __this->___Count;
|
|
Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* L_2 = ___0_match;
|
|
int32_t L_3;
|
|
L_3 = cyt_1_idq_m277DA1C68B800F6AD2005F513FB13D938963D694(__this, 0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 29));
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_cql_m88CFFF3511CBAFCC8192DB85289B1DBFC1CD1292_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
cyt_1_set_Capacity_m722108BF059153BAE79C7EDF507EEB48C779F8FC(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool cyt_1_Exists_mD4DF6D43319D1CC08C37C54B30F72CB53EDFCC4D_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* ___0_match, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* L_0 = ___0_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_m6E1F1840CE1042CBBDCE5686A52B9B4884A332FF(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
int32_t L_1 = __this->___Count;
|
|
Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* L_2 = ___0_match;
|
|
int32_t L_3;
|
|
L_3 = cyt_1_idq_m277DA1C68B800F6AD2005F513FB13D938963D694(__this, 0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 29));
|
|
return (bool)((((int32_t)((((int32_t)L_3) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Insert_mA3A7F8F2AC7025947EE084A5EF68EA74C32A8547_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_index, int32_t ___1_item, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
cyt_1_idt_mC8A7F5432D2B0C10A4FC495599BF439C9231C2CD(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 21));
|
|
int32_t L_1 = __this->___Count;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_2 = __this->___Items;
|
|
NullCheck(L_2);
|
|
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)(((RuntimeArray*)L_2)->max_length))))))
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
cyt_1_GrowIfNeeded_mDE655F2F7E4C2CBBC0AF9F6B1D6495A454CB7B62(__this, 1, il2cpp_rgctx_method(method->klass->rgctx_data, 25));
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
int32_t L_3 = ___0_index;
|
|
cyt_1_ids_m56BADCBF779101B71239D09D1AC3BFD3BE04EB76(__this, L_3, 1, il2cpp_rgctx_method(method->klass->rgctx_data, 12));
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_4 = __this->___Items;
|
|
int32_t L_5 = ___0_index;
|
|
int32_t L_6 = ___1_item;
|
|
NullCheck(L_4);
|
|
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (int32_t)L_6);
|
|
int32_t L_7 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_iqf_m56613274D2D98B6EF653377B80FFD3D6134A1A55_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_index, int32_t ___1_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1 = ___1_count;
|
|
cyt_1_idl_m9000500F726149135080EFE12D9BBAEF68A8F3E7(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
int32_t L_2 = ___1_count;
|
|
if ((((int32_t)L_2) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = ___0_index;
|
|
int32_t L_4 = ___1_count;
|
|
cyt_1_ids_m56BADCBF779101B71239D09D1AC3BFD3BE04EB76(__this, L_3, ((-L_4)), il2cpp_rgctx_method(method->klass->rgctx_data, 12));
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_5 = __this->___Items;
|
|
int32_t L_6 = __this->___Count;
|
|
int32_t L_7 = ___1_count;
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_5, L_6, L_7, NULL);
|
|
int32_t L_8 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_8, 1));
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* cyt_1_FindAll_m6FF37F1B1519F18809404659669AF9C1B67ED6FC_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* ___0_match, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* L_0 = ___0_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_m6E1F1840CE1042CBBDCE5686A52B9B4884A332FF(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* L_1 = ___0_match;
|
|
cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* L_2;
|
|
L_2 = cyt_1_idp_m8AC262B8D0D87C20D8C9E5682AC8F7AEF785D869(__this, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 30));
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* cyt_1_idp_m8AC262B8D0D87C20D8C9E5682AC8F7AEF785D869_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* L_0 = (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 0));
|
|
cyt_1__ctor_m021E3F2A9C6CFC552E6BA8E26A5007A71CF8C5E8(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 31));
|
|
V_0 = L_0;
|
|
V_1 = 0;
|
|
goto IL_0034;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* L_1 = ___0_a;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_2 = __this->___Items;
|
|
int32_t L_3 = V_1;
|
|
NullCheck(L_2);
|
|
int32_t L_4 = L_3;
|
|
int32_t L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
|
|
NullCheck(L_1);
|
|
bool L_6;
|
|
L_6 = Predicate_1_Invoke_mD16C664FFE93598D1C12AC86190D12B0F90B5419_inline(L_1, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 32));
|
|
if (!L_6)
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
{
|
|
cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* L_7 = V_0;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_8 = __this->___Items;
|
|
int32_t L_9 = V_1;
|
|
NullCheck(L_8);
|
|
int32_t L_10 = L_9;
|
|
int32_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
|
|
NullCheck(L_7);
|
|
cyt_1_Add_mCD1FDB026EDEF17E305F5BD1B7BD1343EEFC18E1(L_7, L_11, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
int32_t L_12 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_12, 1));
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
int32_t L_13 = V_1;
|
|
int32_t L_14 = __this->___Count;
|
|
if ((((int32_t)L_13) < ((int32_t)L_14)))
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* L_15 = V_0;
|
|
return L_15;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_jxj_mC98E4DC9B689A9651C4EFF96065162CB17163F4D_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_index, int32_t ___1_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1 = ___1_count;
|
|
cyt_1_idl_m9000500F726149135080EFE12D9BBAEF68A8F3E7(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_2 = __this->___Items;
|
|
int32_t L_3 = ___0_index;
|
|
int32_t L_4 = ___1_count;
|
|
Array_Reverse_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m57764BD8E3718881AE35094284EFDECEE528991D(L_2, L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 34));
|
|
int32_t L_5 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_RemoveAll_m271D0282CF214CDCDF066C5CBF9CA916B385F95B_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* ___0_match, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* L_0 = ___0_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_m6E1F1840CE1042CBBDCE5686A52B9B4884A332FF(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
V_0 = 0;
|
|
V_1 = 0;
|
|
V_0 = 0;
|
|
goto IL_0026;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* L_1 = ___0_match;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_2 = __this->___Items;
|
|
int32_t L_3 = V_0;
|
|
NullCheck(L_2);
|
|
int32_t L_4 = L_3;
|
|
int32_t L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
|
|
NullCheck(L_1);
|
|
bool L_6;
|
|
L_6 = Predicate_1_Invoke_mD16C664FFE93598D1C12AC86190D12B0F90B5419_inline(L_1, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 32));
|
|
if (L_6)
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_7 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
int32_t L_8 = V_0;
|
|
int32_t L_9 = __this->___Count;
|
|
if ((((int32_t)L_8) < ((int32_t)L_9)))
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
int32_t L_10 = V_0;
|
|
int32_t L_11 = __this->___Count;
|
|
if ((!(((uint32_t)L_10) == ((uint32_t)L_11))))
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
int32_t L_12 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_12, 1));
|
|
int32_t L_13 = V_0;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_13, 1));
|
|
goto IL_0082;
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* L_14 = ___0_match;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_15 = __this->___Items;
|
|
int32_t L_16 = V_1;
|
|
NullCheck(L_15);
|
|
int32_t L_17 = L_16;
|
|
int32_t L_18 = (L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_17));
|
|
NullCheck(L_14);
|
|
bool L_19;
|
|
L_19 = Predicate_1_Invoke_mD16C664FFE93598D1C12AC86190D12B0F90B5419_inline(L_14, L_18, il2cpp_rgctx_method(method->klass->rgctx_data, 32));
|
|
if (L_19)
|
|
{
|
|
goto IL_007e;
|
|
}
|
|
}
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_20 = __this->___Items;
|
|
int32_t L_21 = V_0;
|
|
int32_t L_22 = L_21;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_22, 1));
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_23 = __this->___Items;
|
|
int32_t L_24 = V_1;
|
|
NullCheck(L_23);
|
|
int32_t L_25 = L_24;
|
|
int32_t L_26 = (L_23)->GetAt(static_cast<il2cpp_array_size_t>(L_25));
|
|
NullCheck(L_20);
|
|
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(L_22), (int32_t)L_26);
|
|
}
|
|
|
|
IL_007e:
|
|
{
|
|
int32_t L_27 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_27, 1));
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
int32_t L_28 = V_1;
|
|
int32_t L_29 = __this->___Count;
|
|
if ((((int32_t)L_28) < ((int32_t)L_29)))
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_30 = V_1;
|
|
int32_t L_31 = V_0;
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_30, L_31))) <= ((int32_t)0)))
|
|
{
|
|
goto IL_00a0;
|
|
}
|
|
}
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_32 = __this->___Items;
|
|
int32_t L_33 = V_0;
|
|
int32_t L_34 = V_1;
|
|
int32_t L_35 = V_0;
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_32, L_33, ((int32_t)il2cpp_codegen_subtract(L_34, L_35)), NULL);
|
|
}
|
|
|
|
IL_00a0:
|
|
{
|
|
int32_t L_36 = V_0;
|
|
__this->___Count = L_36;
|
|
int32_t L_37 = V_1;
|
|
int32_t L_38 = V_0;
|
|
return ((int32_t)il2cpp_codegen_subtract(L_37, L_38));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_FindIndex_mBF1955558EB8B0B33EB24176A678E320600B0E5A_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_startIndex, int32_t ___1_count, Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* ___2_match, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* L_0 = ___2_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_m6E1F1840CE1042CBBDCE5686A52B9B4884A332FF(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
int32_t L_1 = ___0_startIndex;
|
|
int32_t L_2 = ___1_count;
|
|
cyt_1_idl_m9000500F726149135080EFE12D9BBAEF68A8F3E7(__this, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
int32_t L_3 = ___0_startIndex;
|
|
int32_t L_4 = ___1_count;
|
|
Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* L_5 = ___2_match;
|
|
int32_t L_6;
|
|
L_6 = cyt_1_idq_m277DA1C68B800F6AD2005F513FB13D938963D694(__this, L_3, L_4, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 29));
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_idq_m277DA1C68B800F6AD2005F513FB13D938963D694_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_a, int32_t ___1_b, Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* ___2_c, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
int32_t L_1 = ___1_b;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_0, L_1));
|
|
int32_t L_2 = ___0_a;
|
|
V_1 = L_2;
|
|
goto IL_0022;
|
|
}
|
|
|
|
IL_0008:
|
|
{
|
|
Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* L_3 = ___2_c;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_4 = __this->___Items;
|
|
int32_t L_5 = V_1;
|
|
NullCheck(L_4);
|
|
int32_t L_6 = L_5;
|
|
int32_t L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
|
|
NullCheck(L_3);
|
|
bool L_8;
|
|
L_8 = Predicate_1_Invoke_mD16C664FFE93598D1C12AC86190D12B0F90B5419_inline(L_3, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 32));
|
|
if (!L_8)
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_9 = V_1;
|
|
return L_9;
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
int32_t L_10 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_10, 1));
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
int32_t L_11 = V_1;
|
|
int32_t L_12 = V_0;
|
|
if ((((int32_t)L_11) < ((int32_t)L_12)))
|
|
{
|
|
goto IL_0008;
|
|
}
|
|
}
|
|
{
|
|
return (-1);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idw_m0D76C6F99DE2ED792EE82D9C14803C913708B11E_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_a, RuntimeObject* ___1_b, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
RuntimeObject* L_0 = ___1_b;
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_1;
|
|
L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 3), L_0);
|
|
V_0 = L_1;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0027:
|
|
{
|
|
{
|
|
RuntimeObject* L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = V_0;
|
|
NullCheck((RuntimeObject*)L_3);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_3);
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_001d_1;
|
|
}
|
|
|
|
IL_0009_1:
|
|
{
|
|
RuntimeObject* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
int32_t L_5;
|
|
L_5 = InterfaceFuncInvoker0< int32_t >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 36), L_4);
|
|
V_1 = L_5;
|
|
int32_t L_6 = ___0_a;
|
|
int32_t L_7 = L_6;
|
|
___0_a = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
int32_t L_8 = V_1;
|
|
cyt_1_Insert_mA3A7F8F2AC7025947EE084A5EF68EA74C32A8547(__this, L_7, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 38));
|
|
}
|
|
|
|
IL_001d_1:
|
|
{
|
|
RuntimeObject* L_9 = V_0;
|
|
NullCheck((RuntimeObject*)L_9);
|
|
bool L_10;
|
|
L_10 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_9);
|
|
if (L_10)
|
|
{
|
|
goto IL_0009_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1__ctor_m9DD32B05F38190D7683C2B268473612A12E7B474_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___0_a, int32_t ___1_b, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = ___0_a;
|
|
__this->___Items = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___Items), (void*)L_0);
|
|
int32_t L_1 = ___1_b;
|
|
__this->___Count = L_1;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_FindIndex_mF4F370825C7108E558C8FA890CA002022786364D_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_startIndex, Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* ___1_match, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* L_0 = ___1_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_m6E1F1840CE1042CBBDCE5686A52B9B4884A332FF(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
int32_t L_1 = ___0_startIndex;
|
|
cyt_1_idt_mC8A7F5432D2B0C10A4FC495599BF439C9231C2CD(__this, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 21));
|
|
int32_t L_2 = ___0_startIndex;
|
|
int32_t L_3 = __this->___Count;
|
|
int32_t L_4 = ___0_startIndex;
|
|
Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* L_5 = ___1_match;
|
|
int32_t L_6;
|
|
L_6 = cyt_1_idq_m277DA1C68B800F6AD2005F513FB13D938963D694(__this, L_2, ((int32_t)il2cpp_codegen_subtract(L_3, L_4)), L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 29));
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_ForEach_mAC35E1B9F1DDFB48955DBADADB605E2A4E17581D_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, Action_1_tD69A6DC9FBE94131E52F5A73B2A9D4AB51EEC404* ___0_action, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
Action_1_tD69A6DC9FBE94131E52F5A73B2A9D4AB51EEC404* L_0 = ___0_action;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF9010398F7F524C05AB19445BDCE02E617A3E267)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
V_0 = 0;
|
|
goto IL_0028;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
Action_1_tD69A6DC9FBE94131E52F5A73B2A9D4AB51EEC404* L_2 = ___0_action;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_3 = __this->___Items;
|
|
int32_t L_4 = V_0;
|
|
NullCheck(L_3);
|
|
int32_t L_5 = L_4;
|
|
int32_t L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
|
|
NullCheck(L_2);
|
|
Action_1_Invoke_mAC3C34BA1905AB5B79E483CD9BB082B7D667F703_inline(L_2, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 40));
|
|
int32_t L_7 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
int32_t L_8 = V_0;
|
|
int32_t L_9 = __this->___Count;
|
|
if ((((int32_t)L_8) < ((int32_t)L_9)))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idu_mB71D47073B98FA75225C4AFFA5A0B6DC63EF3823_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, RuntimeObject* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = ___0_a;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral469F05BE9BB4C7903C353D0EB9F6384C84A48B25)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_FindLastIndex_m4BB50C770A5AB52E036344B90C97C8835A419B52_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* ___0_match, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* L_0 = ___0_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_m6E1F1840CE1042CBBDCE5686A52B9B4884A332FF(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
int32_t L_1 = __this->___Count;
|
|
Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* L_2 = ___0_match;
|
|
int32_t L_3;
|
|
L_3 = cyt_1_idr_mEC77EFD170677B6E5B6A435A594242EF65E066D2(__this, 0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 41));
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065 cyt_1_GetEnumerator_mC4775BAD51A8AF0F8D1BAE481A469E023E6A62BF_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065 L_0;
|
|
memset((&L_0), 0, sizeof(L_0));
|
|
cys__ctor_m561ABAEF039B47DBBEF5E346EA307714237B8138((&L_0), __this, il2cpp_rgctx_method(method->klass->rgctx_data, 43));
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_LastIndexOf_m1B9F725558912E51273FCF40811F6AEA2E317E19_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_item, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___1_index;
|
|
if ((((int32_t)L_0) >= ((int32_t)0)))
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___1_index;
|
|
int32_t L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)), &L_2);
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_4 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_m60B543A63AC8692C28096003FBF2AD124B9D5B85(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2D65EE85CADB9008DEE48BCD5A9E95E54D15F3FF)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, method);
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
int32_t L_5 = ___2_count;
|
|
if ((((int32_t)L_5) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_6 = ___2_count;
|
|
int32_t L_7 = L_6;
|
|
RuntimeObject* L_8 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)), &L_7);
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_9 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_m60B543A63AC8692C28096003FBF2AD124B9D5B85(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral07624473F417C06C74D59C64840A1532FCE2C626)), L_8, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral158BA1ED10A53D1BA59A2C5D9C58736662B34750)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, method);
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
int32_t L_10 = ___1_index;
|
|
int32_t L_11 = ___2_count;
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(L_10, L_11)), 1))) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0052;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_12 = ___2_count;
|
|
int32_t L_13 = L_12;
|
|
RuntimeObject* L_14 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)), &L_13);
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_15 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_m60B543A63AC8692C28096003FBF2AD124B9D5B85(L_15, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral07624473F417C06C74D59C64840A1532FCE2C626)), L_14, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral237DA396E8FE2D1C94C98875D84C7D661FF86FB6)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, method);
|
|
}
|
|
|
|
IL_0052:
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_16 = __this->___Items;
|
|
int32_t L_17 = ___0_item;
|
|
int32_t L_18 = ___1_index;
|
|
int32_t L_19 = ___2_count;
|
|
int32_t L_20;
|
|
L_20 = Array_LastIndexOf_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m459730221F1EEF97FEF185B13132174BA7CA27E5(L_16, L_17, L_18, L_19, il2cpp_rgctx_method(method->klass->rgctx_data, 22));
|
|
return L_20;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_fno_m3C1D9C1E0B30D98DB4A7E507C1B88424B0539538_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_min, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t G_B4_0 = 0;
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = __this->___Items;
|
|
NullCheck(L_0);
|
|
int32_t L_1 = ___0_min;
|
|
if ((((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))) >= ((int32_t)L_1)))
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_2 = __this->___Items;
|
|
NullCheck(L_2);
|
|
if (!(((RuntimeArray*)L_2)->max_length))
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_3 = __this->___Items;
|
|
NullCheck(L_3);
|
|
G_B4_0 = ((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_3)->max_length)), 2));
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
G_B4_0 = 4;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
V_0 = G_B4_0;
|
|
int32_t L_4 = V_0;
|
|
int32_t L_5 = ___0_min;
|
|
if ((((int32_t)L_4) >= ((int32_t)L_5)))
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_6 = ___0_min;
|
|
V_0 = L_6;
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
int32_t L_7 = V_0;
|
|
cyt_1_set_Capacity_m722108BF059153BAE79C7EDF507EEB48C779F8FC(__this, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_CopyTo_mCAEC35C1F1A8FA6A8401C857A4415959E62EE168_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___0_array, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = __this->___Items;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_1 = ___0_array;
|
|
int32_t L_2 = __this->___Count;
|
|
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_0, 0, (RuntimeArray*)L_1, 0, L_2, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_IndexOf_m846B83028C645798ACF8502A71B37A94F06A95F4_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_item, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___1_index;
|
|
if ((((int32_t)L_0) >= ((int32_t)0)))
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_1 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
int32_t L_2 = ___2_count;
|
|
if ((((int32_t)L_2) >= ((int32_t)0)))
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral07624473F417C06C74D59C64840A1532FCE2C626)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
int32_t L_4 = ___1_index;
|
|
int32_t L_5 = ___2_count;
|
|
int32_t L_6 = __this->___Count;
|
|
if ((!(((uint32_t)((int32_t)il2cpp_codegen_add(L_4, L_5))) > ((uint32_t)L_6))))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_7 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8323D44D38CA9D8ED487159B21F762B262510EE5)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, method);
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_8 = __this->___Items;
|
|
int32_t L_9 = ___0_item;
|
|
int32_t L_10 = ___1_index;
|
|
int32_t L_11 = ___2_count;
|
|
int32_t L_12;
|
|
L_12 = Array_IndexOf_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m22CB8CB6C30E1C3E70C8662D7A290B88EF5007F3(L_8, L_9, L_10, L_11, il2cpp_rgctx_method(method->klass->rgctx_data, 44));
|
|
return L_12;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_FindLastIndex_m5C27394FC3648EBAFD70F275C7CE8AF5D2754B5C_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_startIndex, int32_t ___1_count, Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* ___2_match, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* L_0 = ___2_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_m6E1F1840CE1042CBBDCE5686A52B9B4884A332FF(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
int32_t L_1 = ___0_startIndex;
|
|
int32_t L_2 = ___1_count;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(L_1, L_2)), 1));
|
|
int32_t L_3 = V_0;
|
|
int32_t L_4 = ___1_count;
|
|
cyt_1_idl_m9000500F726149135080EFE12D9BBAEF68A8F3E7(__this, L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
int32_t L_5 = V_0;
|
|
int32_t L_6 = ___1_count;
|
|
Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* L_7 = ___2_match;
|
|
int32_t L_8;
|
|
L_8 = cyt_1_idr_mEC77EFD170677B6E5B6A435A594242EF65E066D2(__this, L_5, L_6, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 41));
|
|
return L_8;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idt_mC8A7F5432D2B0C10A4FC495599BF439C9231C2CD_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_a;
|
|
int32_t L_2 = __this->___Count;
|
|
if ((!(((uint32_t)L_1) > ((uint32_t)L_2))))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_ido_m6E1F1840CE1042CBBDCE5686A52B9B4884A332FF_gshared (Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* L_0 = ___0_a;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE2EEFB4BE0C9F57BA62E733F26387F8BA68AF67C)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_InsertRange_m77E6B3B859790D2BF50CFDF1A18F3B6E01DC4820_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_index, RuntimeObject* ___1_collection, const RuntimeMethod* method)
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___1_collection;
|
|
cyt_1_idu_mB71D47073B98FA75225C4AFFA5A0B6DC63EF3823(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
|
|
int32_t L_1 = ___0_index;
|
|
cyt_1_idt_mC8A7F5432D2B0C10A4FC495599BF439C9231C2CD(__this, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 21));
|
|
RuntimeObject* L_2 = ___1_collection;
|
|
if ((!(((RuntimeObject*)(RuntimeObject*)L_2) == ((RuntimeObject*)(cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7*)__this))))
|
|
{
|
|
goto IL_004f;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = __this->___Count;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_4 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 8), (uint32_t)L_3);
|
|
V_0 = L_4;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_5 = V_0;
|
|
cyt_1_CopyTo_m6B41E78E39EAC0EDE3BE6B11546680A49E56D0D7(__this, L_5, 0, il2cpp_rgctx_method(method->klass->rgctx_data, 26));
|
|
int32_t L_6 = __this->___Count;
|
|
cyt_1_GrowIfNeeded_mDE655F2F7E4C2CBBC0AF9F6B1D6495A454CB7B62(__this, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 25));
|
|
int32_t L_7 = ___0_index;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_8 = V_0;
|
|
NullCheck(L_8);
|
|
cyt_1_ids_m56BADCBF779101B71239D09D1AC3BFD3BE04EB76(__this, L_7, ((int32_t)(((RuntimeArray*)L_8)->max_length)), il2cpp_rgctx_method(method->klass->rgctx_data, 12));
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_9 = V_0;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_10 = __this->___Items;
|
|
int32_t L_11 = ___0_index;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_12 = V_0;
|
|
NullCheck(L_12);
|
|
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_9, 0, (RuntimeArray*)L_10, L_11, ((int32_t)(((RuntimeArray*)L_12)->max_length)), NULL);
|
|
goto IL_006b;
|
|
}
|
|
|
|
IL_004f:
|
|
{
|
|
RuntimeObject* L_13 = ___1_collection;
|
|
V_1 = ((RuntimeObject*)IsInst((RuntimeObject*)L_13, il2cpp_rgctx_data(method->klass->rgctx_data, 5)));
|
|
RuntimeObject* L_14 = V_1;
|
|
if (!L_14)
|
|
{
|
|
goto IL_0063;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_15 = ___0_index;
|
|
RuntimeObject* L_16 = V_1;
|
|
cyt_1_idv_mF1515FBCC4256BFD76AEB704FAD02947DB84E108(__this, L_15, L_16, il2cpp_rgctx_method(method->klass->rgctx_data, 45));
|
|
goto IL_006b;
|
|
}
|
|
|
|
IL_0063:
|
|
{
|
|
int32_t L_17 = ___0_index;
|
|
RuntimeObject* L_18 = ___1_collection;
|
|
cyt_1_idw_m0D76C6F99DE2ED792EE82D9C14803C913708B11E(__this, L_17, L_18, il2cpp_rgctx_method(method->klass->rgctx_data, 46));
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
int32_t L_19 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_19, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_FindLastIndex_mAA90398ADA0BF7DC4DA1D5C906049B70E84BC4FE_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_startIndex, Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* ___1_match, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* L_0 = ___1_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_m6E1F1840CE1042CBBDCE5686A52B9B4884A332FF(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
int32_t L_1 = ___0_startIndex;
|
|
cyt_1_idt_mC8A7F5432D2B0C10A4FC495599BF439C9231C2CD(__this, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 21));
|
|
int32_t L_2 = ___0_startIndex;
|
|
Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* L_3 = ___1_match;
|
|
int32_t L_4;
|
|
L_4 = cyt_1_idr_mEC77EFD170677B6E5B6A435A594242EF65E066D2(__this, 0, ((int32_t)il2cpp_codegen_add(L_2, 1)), L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 41));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idm_m44A1224F81DCBACBE89297478537AE8FF7BAE3A0_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, RuntimeObject* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
RuntimeObject* L_0 = ___0_a;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_0);
|
|
V_0 = L_1;
|
|
int32_t L_2 = V_0;
|
|
if (L_2)
|
|
{
|
|
goto IL_000b;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
int32_t L_3 = V_0;
|
|
cyt_1_GrowIfNeeded_mDE655F2F7E4C2CBBC0AF9F6B1D6495A454CB7B62(__this, L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 25));
|
|
RuntimeObject* L_4 = ___0_a;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_5 = __this->___Items;
|
|
int32_t L_6 = __this->___Count;
|
|
NullCheck(L_4);
|
|
InterfaceActionInvoker2< Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*, int32_t >::Invoke(5, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_4, L_5, L_6);
|
|
int32_t L_7 = __this->___Count;
|
|
int32_t L_8 = V_0;
|
|
__this->___Count = ((int32_t)il2cpp_codegen_add(L_7, L_8));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_lkm_m9C03E641C26D236E863BC649923D3CEA9B48BEE3_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_addedCount, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
int32_t L_1 = ___0_addedCount;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_0, L_1));
|
|
int32_t L_2 = V_0;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_3 = __this->___Items;
|
|
NullCheck(L_3);
|
|
if ((((int32_t)L_2) <= ((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_4;
|
|
L_4 = cyt_1_get_Capacity_mC0F5D69F3BB786AD478112777FF0EBF0E5B3BE14(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
int32_t L_5;
|
|
L_5 = Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF(((int32_t)il2cpp_codegen_multiply(L_4, 2)), 4, NULL);
|
|
int32_t L_6 = V_0;
|
|
int32_t L_7;
|
|
L_7 = Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF(L_5, L_6, NULL);
|
|
cyt_1_set_Capacity_m722108BF059153BAE79C7EDF507EEB48C779F8FC(__this, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_IndexOf_m8CC3476B7DEF0013DF71D1A4F00CA6CC37482508_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_item, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___1_index;
|
|
cyt_1_idt_mC8A7F5432D2B0C10A4FC495599BF439C9231C2CD(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 21));
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_1 = __this->___Items;
|
|
int32_t L_2 = ___0_item;
|
|
int32_t L_3 = ___1_index;
|
|
int32_t L_4 = __this->___Count;
|
|
int32_t L_5 = ___1_index;
|
|
int32_t L_6;
|
|
L_6 = Array_IndexOf_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m22CB8CB6C30E1C3E70C8662D7A290B88EF5007F3(L_1, L_2, L_3, ((int32_t)il2cpp_codegen_subtract(L_4, L_5)), il2cpp_rgctx_method(method->klass->rgctx_data, 44));
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* cyt_1_idz_mFF7AD767484E580CA435352CBE90ED8FEF6AC4DD_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065 L_0;
|
|
L_0 = cyt_1_GetEnumerator_mC4775BAD51A8AF0F8D1BAE481A469E023E6A62BF(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 48));
|
|
cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065 L_1 = L_0;
|
|
RuntimeObject* L_2 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 42), &L_1);
|
|
return (RuntimeObject*)L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Reverse_mB38E77BE1ECD3CB5A222C531F11F74915BD06FAD_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
Array_Reverse_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m57764BD8E3718881AE35094284EFDECEE528991D(L_0, 0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 34));
|
|
int32_t L_2 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_2, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* cyt_1_idy_mC61E0F4A9FF9B86FED5AF83B1CA2C5984FA2376B_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065 L_0;
|
|
L_0 = cyt_1_GetEnumerator_mC4775BAD51A8AF0F8D1BAE481A469E023E6A62BF(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 48));
|
|
cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065 L_1 = L_0;
|
|
RuntimeObject* L_2 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 42), &L_1);
|
|
return (RuntimeObject*)L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1__cctor_m8054B7C651A5BC02E842B62FC98FC1BDD59B39FE_gshared (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 8), (uint32_t)0);
|
|
((cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___ofe = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___ofe), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool cyt_1_TrueForAll_m5F0D83D6429B67E495C54F21B102836D37B3B7C5_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* ___0_match, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* L_0 = ___0_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_m6E1F1840CE1042CBBDCE5686A52B9B4884A332FF(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
V_0 = 0;
|
|
goto IL_0024;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* L_1 = ___0_match;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_2 = __this->___Items;
|
|
int32_t L_3 = V_0;
|
|
NullCheck(L_2);
|
|
int32_t L_4 = L_3;
|
|
int32_t L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
|
|
NullCheck(L_1);
|
|
bool L_6;
|
|
L_6 = Predicate_1_Invoke_mD16C664FFE93598D1C12AC86190D12B0F90B5419_inline(L_1, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 32));
|
|
if (L_6)
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
int32_t L_7 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
int32_t L_8 = V_0;
|
|
int32_t L_9 = __this->___Count;
|
|
if ((((int32_t)L_8) < ((int32_t)L_9)))
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Add_mCD1FDB026EDEF17E305F5BD1B7BD1343EEFC18E1_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_item, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_1 = __this->___Items;
|
|
NullCheck(L_1);
|
|
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)(((RuntimeArray*)L_1)->max_length))))))
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
cyt_1_GrowIfNeeded_mDE655F2F7E4C2CBBC0AF9F6B1D6495A454CB7B62(__this, 1, il2cpp_rgctx_method(method->klass->rgctx_data, 25));
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_2 = __this->___Items;
|
|
int32_t L_3 = __this->___Count;
|
|
V_0 = L_3;
|
|
int32_t L_4 = V_0;
|
|
__this->___Count = ((int32_t)il2cpp_codegen_add(L_4, 1));
|
|
int32_t L_5 = V_0;
|
|
int32_t L_6 = ___0_item;
|
|
NullCheck(L_2);
|
|
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (int32_t)L_6);
|
|
int32_t L_7 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_lpf_m9EEAD77FA9E017157359E6120CFCDD53CEAB7127_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
Comparer_1_t2FF14F26F4D678A8FA199B888FF61A2A9D1D2D80* L_2;
|
|
L_2 = Comparer_1_get_Default_m55220E2A5C7845F68201F047E7DA0D708E8AE051(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
Array_Sort_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m6E0CF4C26182BB9D788C90ABE423C2F4CD145E41(L_0, 0, L_1, (RuntimeObject*)L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
int32_t L_3 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_3, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* cyt_1_ToArray_m2144FAD59D4DA46CA88F3C9726A2FF12C07D2184_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, const RuntimeMethod* method)
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_0 = NULL;
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_1 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 8), (uint32_t)L_0);
|
|
V_0 = L_1;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_2 = __this->___Items;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_3 = V_0;
|
|
int32_t L_4 = __this->___Count;
|
|
Array_Copy_m4233828B4E6288B6D815F539AAA38575DE627900((RuntimeArray*)L_2, (RuntimeArray*)L_3, L_4, NULL);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_5 = V_0;
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_xn_m7B9F34FEA585E8320C713220356B1C81629E165A_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
Array_Reverse_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m57764BD8E3718881AE35094284EFDECEE528991D(L_0, 0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 34));
|
|
int32_t L_2 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_2, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1__ctor_mFBF8B4BA42079981FA11C10F1502F4C73EF904FF_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
int32_t L_0 = ___0_a;
|
|
if ((((int32_t)L_0) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_1 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC37D78082ACFC8DEE7B32D9351C6E433A074FEC7)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
int32_t L_2 = ___0_a;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_3 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 8), (uint32_t)L_2);
|
|
__this->___Items = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___Items), (void*)L_3);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Sort_mB0C4A3F061A7C6C24CC982DC2EBF68AD847B7CD2_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, RuntimeObject* ___0_comparer, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
RuntimeObject* L_2 = ___0_comparer;
|
|
Array_Sort_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m6E0CF4C26182BB9D788C90ABE423C2F4CD145E41(L_0, 0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
int32_t L_3 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_3, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_CopyTo_mA83316E48F7D7D41AD3D9235C999A475F0940CB0_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_index, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___1_array, int32_t ___2_arrayIndex, int32_t ___3_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1 = ___3_count;
|
|
cyt_1_idl_m9000500F726149135080EFE12D9BBAEF68A8F3E7(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_2 = __this->___Items;
|
|
int32_t L_3 = ___0_index;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_4 = ___1_array;
|
|
int32_t L_5 = ___2_arrayIndex;
|
|
int32_t L_6 = ___3_count;
|
|
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_2, L_3, (RuntimeArray*)L_4, L_5, L_6, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Sort_m582B6AB2D27BAE58F9EF4B0FF732FDA33AE87437_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_index, int32_t ___1_count, RuntimeObject* ___2_comparer, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1 = ___1_count;
|
|
cyt_1_idl_m9000500F726149135080EFE12D9BBAEF68A8F3E7(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_2 = __this->___Items;
|
|
int32_t L_3 = ___0_index;
|
|
int32_t L_4 = ___1_count;
|
|
RuntimeObject* L_5 = ___2_comparer;
|
|
Array_Sort_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m6E0CF4C26182BB9D788C90ABE423C2F4CD145E41(L_2, L_3, L_4, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
int32_t L_6 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_6, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_mmf_m000FB7A984EA1E9F2A5ECDCBEE47D25C99A6BF06_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
Comparer_1_t2FF14F26F4D678A8FA199B888FF61A2A9D1D2D80* L_2;
|
|
L_2 = Comparer_1_get_Default_m55220E2A5C7845F68201F047E7DA0D708E8AE051(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
Array_Sort_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m6E0CF4C26182BB9D788C90ABE423C2F4CD145E41(L_0, 0, L_1, (RuntimeObject*)L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
int32_t L_3 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_3, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idn_m9805CD68ED7630DC4295D68C9F20DC4EA0178EBA_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, RuntimeObject* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
RuntimeObject* L_0 = ___0_a;
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_1;
|
|
L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 3), L_0);
|
|
V_0 = L_1;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0021:
|
|
{
|
|
{
|
|
RuntimeObject* L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = V_0;
|
|
NullCheck((RuntimeObject*)L_3);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_3);
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_0017_1;
|
|
}
|
|
|
|
IL_0009_1:
|
|
{
|
|
RuntimeObject* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
int32_t L_5;
|
|
L_5 = InterfaceFuncInvoker0< int32_t >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 36), L_4);
|
|
V_1 = L_5;
|
|
int32_t L_6 = V_1;
|
|
cyt_1_Add_mCD1FDB026EDEF17E305F5BD1B7BD1343EEFC18E1(__this, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
|
|
}
|
|
|
|
IL_0017_1:
|
|
{
|
|
RuntimeObject* L_7 = V_0;
|
|
NullCheck((RuntimeObject*)L_7);
|
|
bool L_8;
|
|
L_8 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_7);
|
|
if (L_8)
|
|
{
|
|
goto IL_0009_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_002b;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_dm_m80DB082EFA60A757E697D2F00D383933D6664647_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
Array_Reverse_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m57764BD8E3718881AE35094284EFDECEE528991D(L_0, 0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 34));
|
|
int32_t L_2 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_2, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Sort_m8F66CC1310BB905A505357FB9739E2756B31D558_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, Comparison_1_tB7DE1436CB53924C2FC41FF926D074C1ACC14D89* ___0_comparison, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = __this->___Items;
|
|
Comparison_1_tB7DE1436CB53924C2FC41FF926D074C1ACC14D89* L_1 = ___0_comparison;
|
|
Array_Sort_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m89052CD0450CDEC0AE040F2D1982E4DD33A12EF8(L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 50));
|
|
int32_t L_2 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_2, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_set_Capacity_m722108BF059153BAE79C7EDF507EEB48C779F8FC_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
int32_t L_1 = __this->___Count;
|
|
if ((!(((uint32_t)L_0) < ((uint32_t)L_1))))
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_2 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mB596C51BFA864B65C2CED275458FAE90F7CD29C9(L_2, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, method);
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C** L_3 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C**)(&__this->___Items);
|
|
int32_t L_4 = ___0_value;
|
|
Array_Resize_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m6BAA7BD6F22421B894347B1476C37052FAC6C916(L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 51));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_EnsureCapacity_mB551075442E8889CDDE7352E08B0BFC376FC5DC4_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_min, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t G_B4_0 = 0;
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = __this->___Items;
|
|
NullCheck(L_0);
|
|
int32_t L_1 = ___0_min;
|
|
if ((((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))) >= ((int32_t)L_1)))
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_2 = __this->___Items;
|
|
NullCheck(L_2);
|
|
if (!(((RuntimeArray*)L_2)->max_length))
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_3 = __this->___Items;
|
|
NullCheck(L_3);
|
|
G_B4_0 = ((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_3)->max_length)), 2));
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
G_B4_0 = 4;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
V_0 = G_B4_0;
|
|
int32_t L_4 = V_0;
|
|
int32_t L_5 = ___0_min;
|
|
if ((((int32_t)L_4) >= ((int32_t)L_5)))
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_6 = ___0_min;
|
|
V_0 = L_6;
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
int32_t L_7 = V_0;
|
|
cyt_1_set_Capacity_m722108BF059153BAE79C7EDF507EEB48C779F8FC(__this, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* cyt_1_Resize_m76637F82160D0A8A8FF175C7A5122AF007492A74_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_newSize, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = __this->___Items;
|
|
NullCheck(L_0);
|
|
V_0 = ((int32_t)(((RuntimeArray*)L_0)->max_length));
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_1 = __this->___Items;
|
|
V_1 = L_1;
|
|
int32_t L_2 = ___0_newSize;
|
|
int32_t L_3 = V_0;
|
|
if ((((int32_t)L_2) <= ((int32_t)L_3)))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C** L_4 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C**)(&__this->___Items);
|
|
int32_t L_5 = ___0_newSize;
|
|
Array_Resize_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m6BAA7BD6F22421B894347B1476C37052FAC6C916(L_4, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 51));
|
|
goto IL_0042;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
int32_t L_6 = ___0_newSize;
|
|
int32_t L_7 = V_0;
|
|
if ((((int32_t)L_6) >= ((int32_t)L_7)))
|
|
{
|
|
goto IL_0042;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_8 = ___0_newSize;
|
|
V_2 = L_8;
|
|
goto IL_003e;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_9 = V_1;
|
|
int32_t L_10 = V_2;
|
|
il2cpp_codegen_initobj((&V_3), sizeof(int32_t));
|
|
int32_t L_11 = V_3;
|
|
NullCheck(L_9);
|
|
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(L_10), (int32_t)L_11);
|
|
int32_t L_12 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_12, 1));
|
|
}
|
|
|
|
IL_003e:
|
|
{
|
|
int32_t L_13 = V_2;
|
|
int32_t L_14 = V_0;
|
|
if ((((int32_t)L_13) < ((int32_t)L_14)))
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
|
|
IL_0042:
|
|
{
|
|
int32_t L_15 = ___0_newSize;
|
|
__this->___Count = L_15;
|
|
return __this;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_jz_mD0AFAFC5CE0950299A733D2DC3A2F411AE829F61_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
Comparer_1_t2FF14F26F4D678A8FA199B888FF61A2A9D1D2D80* L_2;
|
|
L_2 = Comparer_1_get_Default_m55220E2A5C7845F68201F047E7DA0D708E8AE051(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
Array_Sort_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m6E0CF4C26182BB9D788C90ABE423C2F4CD145E41(L_0, 0, L_1, (RuntimeObject*)L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
int32_t L_3 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_3, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_duz_mF1370EB343BFBC3529EFEE53AD7C19B9DC9C2B29_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_index;
|
|
int32_t L_2 = __this->___Count;
|
|
if ((!(((uint32_t)L_1) >= ((uint32_t)L_2))))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF30F85E4B9304912E404666CAD45979D3833BFAE)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
int32_t L_4 = ___0_index;
|
|
cyt_1_ids_m56BADCBF779101B71239D09D1AC3BFD3BE04EB76(__this, L_4, (-1), il2cpp_rgctx_method(method->klass->rgctx_data, 12));
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_5 = __this->___Items;
|
|
int32_t L_6 = __this->___Count;
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_5, L_6, 1, NULL);
|
|
int32_t L_7 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_bca_m3D3EA8F8C1ACA0360821062DD02129F3F26447B2_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_a, int32_t ___1_b, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
if ((((int32_t)L_0) >= ((int32_t)0)))
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_1 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral14E4A1F492301946015F0A6B1C40296CE46A4251)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
int32_t L_2 = ___1_b;
|
|
if ((((int32_t)L_2) >= ((int32_t)0)))
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral30B98916AF7031E9D83FB88E885E523F6A280F64)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
int32_t L_4 = ___0_a;
|
|
int32_t L_5 = ___1_b;
|
|
int32_t L_6 = __this->___Count;
|
|
if ((!(((uint32_t)((int32_t)il2cpp_codegen_add(L_4, L_5))) > ((uint32_t)L_6))))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_7 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral253F379CE43832F182E0F1922F84B2F9D7990EAE)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, method);
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_ik_m76A06B1033B883B4BD79903D15AAB5B70291F86B_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_addedCount, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
int32_t L_1 = ___0_addedCount;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_0, L_1));
|
|
int32_t L_2 = V_0;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_3 = __this->___Items;
|
|
NullCheck(L_3);
|
|
if ((((int32_t)L_2) <= ((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_4;
|
|
L_4 = cyt_1_get_Capacity_mC0F5D69F3BB786AD478112777FF0EBF0E5B3BE14(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
int32_t L_5;
|
|
L_5 = Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF(((int32_t)il2cpp_codegen_multiply(L_4, 2)), 4, NULL);
|
|
int32_t L_6 = V_0;
|
|
int32_t L_7;
|
|
L_7 = Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF(L_5, L_6, NULL);
|
|
cyt_1_set_Capacity_m722108BF059153BAE79C7EDF507EEB48C779F8FC(__this, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_mzc_m9E1C1CF1EC84E59DC61183013D9FE04377339086_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
cyt_1_set_Capacity_m722108BF059153BAE79C7EDF507EEB48C779F8FC(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Reverse_m81DC175AEF768E38ED744564AEE5BFE6A1ACAE1E_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_index, int32_t ___1_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1 = ___1_count;
|
|
cyt_1_idl_m9000500F726149135080EFE12D9BBAEF68A8F3E7(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_2 = __this->___Items;
|
|
int32_t L_3 = ___0_index;
|
|
int32_t L_4 = ___1_count;
|
|
Array_Reverse_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m57764BD8E3718881AE35094284EFDECEE528991D(L_2, L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 34));
|
|
int32_t L_5 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_AddRange_mC4C5CABB26E1E7289BBFCDA822EEFB3685C8ECEF_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, RuntimeObject* ___0_collection, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___0_collection;
|
|
cyt_1_idu_mB71D47073B98FA75225C4AFFA5A0B6DC63EF3823(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
|
|
RuntimeObject* L_1 = ___0_collection;
|
|
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 5)));
|
|
RuntimeObject* L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = V_0;
|
|
cyt_1_idm_m44A1224F81DCBACBE89297478537AE8FF7BAE3A0(__this, L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 9));
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
RuntimeObject* L_4 = ___0_collection;
|
|
cyt_1_idn_m9805CD68ED7630DC4295D68C9F20DC4EA0178EBA(__this, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 6));
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
int32_t L_5 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_lnb_mB887AB1DC3FCFC707333F51EB968E1ED23D8FBC3_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_index, int32_t ___1_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1 = ___1_count;
|
|
cyt_1_idl_m9000500F726149135080EFE12D9BBAEF68A8F3E7(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_2 = __this->___Items;
|
|
int32_t L_3 = ___0_index;
|
|
int32_t L_4 = ___1_count;
|
|
Array_Reverse_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m57764BD8E3718881AE35094284EFDECEE528991D(L_2, L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 34));
|
|
int32_t L_5 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_CopyTo_m6B41E78E39EAC0EDE3BE6B11546680A49E56D0D7_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___0_array, int32_t ___1_arrayIndex, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = __this->___Items;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_1 = ___0_array;
|
|
int32_t L_2 = ___1_arrayIndex;
|
|
int32_t L_3 = __this->___Count;
|
|
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_0, 0, (RuntimeArray*)L_1, L_2, L_3, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_bqm_m420108F51B29571C2981B5B2B129F5D638AE529E_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_a;
|
|
int32_t L_2 = __this->___Count;
|
|
if ((!(((uint32_t)L_1) > ((uint32_t)L_2))))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9BAEE8262C16DE81112FD83C0BCDF8B9B7492766)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_ook_m63FCD6F96D534917FBE7E7887E86E5DEAC220248_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_a;
|
|
int32_t L_2 = __this->___Count;
|
|
if ((!(((uint32_t)L_1) > ((uint32_t)L_2))))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral42D48467A5973EC464AB24EB0FCB81BA90632807)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool cyt_1_Contains_mD46B1BB2DB71DBABA894C6AAA3979C88F18BAA0C_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_item, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = __this->___Items;
|
|
int32_t L_1 = ___0_item;
|
|
int32_t L_2 = __this->___Count;
|
|
int32_t L_3;
|
|
L_3 = Array_IndexOf_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m22CB8CB6C30E1C3E70C8662D7A290B88EF5007F3(L_0, L_1, 0, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 44));
|
|
return (bool)((((int32_t)((((int32_t)L_3) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_ids_m56BADCBF779101B71239D09D1AC3BFD3BE04EB76_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_a, int32_t ___1_b, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___1_b;
|
|
if ((((int32_t)L_0) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_a;
|
|
int32_t L_2 = ___1_b;
|
|
___0_a = ((int32_t)il2cpp_codegen_subtract(L_1, L_2));
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
int32_t L_3 = ___0_a;
|
|
int32_t L_4 = __this->___Count;
|
|
if ((((int32_t)L_3) >= ((int32_t)L_4)))
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_5 = __this->___Items;
|
|
int32_t L_6 = ___0_a;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_7 = __this->___Items;
|
|
int32_t L_8 = ___0_a;
|
|
int32_t L_9 = ___1_b;
|
|
int32_t L_10 = __this->___Count;
|
|
int32_t L_11 = ___0_a;
|
|
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_5, L_6, (RuntimeArray*)L_7, ((int32_t)il2cpp_codegen_add(L_8, L_9)), ((int32_t)il2cpp_codegen_subtract(L_10, L_11)), NULL);
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
int32_t L_12 = __this->___Count;
|
|
int32_t L_13 = ___1_b;
|
|
__this->___Count = ((int32_t)il2cpp_codegen_add(L_12, L_13));
|
|
int32_t L_14 = ___1_b;
|
|
if ((((int32_t)L_14) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0054;
|
|
}
|
|
}
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_15 = __this->___Items;
|
|
int32_t L_16 = __this->___Count;
|
|
int32_t L_17 = ___1_b;
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_15, L_16, ((-L_17)), NULL);
|
|
}
|
|
|
|
IL_0054:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_BinarySearch_m751516C926FCCF4C102F51472A74170FA3403BDD_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_item, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
int32_t L_2 = ___0_item;
|
|
int32_t L_3;
|
|
L_3 = Array_BinarySearch_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m93F68F536E2565B21E3E5DA8695618C139B67FC0(L_0, 0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 53));
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_FindLast_m6CCDB8F9E5FE45AE66A12D52F350A48EA2B331AA_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* ___0_match, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* L_0 = ___0_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_m6E1F1840CE1042CBBDCE5686A52B9B4884A332FF(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
int32_t L_1 = __this->___Count;
|
|
Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* L_2 = ___0_match;
|
|
int32_t L_3;
|
|
L_3 = cyt_1_idr_mEC77EFD170677B6E5B6A435A594242EF65E066D2(__this, 0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 41));
|
|
V_0 = L_3;
|
|
int32_t L_4 = V_0;
|
|
if ((((int32_t)L_4) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_5 = __this->___Items;
|
|
int32_t L_6 = V_0;
|
|
NullCheck(L_5);
|
|
int32_t L_7 = L_6;
|
|
int32_t L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
|
|
return L_8;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
il2cpp_codegen_initobj((&V_1), sizeof(int32_t));
|
|
int32_t L_9 = V_1;
|
|
return L_9;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_njz_mC39BD1C2B4593D490E5FCCF00B0273B4DA721D00_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
Array_Reverse_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m57764BD8E3718881AE35094284EFDECEE528991D(L_0, 0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 34));
|
|
int32_t L_2 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_2, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idv_mF1515FBCC4256BFD76AEB704FAD02947DB84E108_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_a, RuntimeObject* ___1_b, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
RuntimeObject* L_0 = ___1_b;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_0);
|
|
V_0 = L_1;
|
|
int32_t L_2 = V_0;
|
|
cyt_1_GrowIfNeeded_mDE655F2F7E4C2CBBC0AF9F6B1D6495A454CB7B62(__this, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 25));
|
|
int32_t L_3 = ___0_a;
|
|
int32_t L_4 = V_0;
|
|
cyt_1_ids_m56BADCBF779101B71239D09D1AC3BFD3BE04EB76(__this, L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 12));
|
|
RuntimeObject* L_5 = ___1_b;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_6 = __this->___Items;
|
|
int32_t L_7 = ___0_a;
|
|
NullCheck(L_5);
|
|
InterfaceActionInvoker2< Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*, int32_t >::Invoke(5, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_5, L_6, L_7);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_TrimExcess_m0E7EBFCB1B6D30DC05CDACC1DA1F62D91F659426_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
cyt_1_set_Capacity_m722108BF059153BAE79C7EDF507EEB48C779F8FC(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_lbk_mCFD326FF0E9BA845B4F9C680F8783C7B1A5A4A59_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_min, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t G_B4_0 = 0;
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = __this->___Items;
|
|
NullCheck(L_0);
|
|
int32_t L_1 = ___0_min;
|
|
if ((((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))) >= ((int32_t)L_1)))
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_2 = __this->___Items;
|
|
NullCheck(L_2);
|
|
if (!(((RuntimeArray*)L_2)->max_length))
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_3 = __this->___Items;
|
|
NullCheck(L_3);
|
|
G_B4_0 = ((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_3)->max_length)), 2));
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
G_B4_0 = 4;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
V_0 = G_B4_0;
|
|
int32_t L_4 = V_0;
|
|
int32_t L_5 = ___0_min;
|
|
if ((((int32_t)L_4) >= ((int32_t)L_5)))
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_6 = ___0_min;
|
|
V_0 = L_6;
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
int32_t L_7 = V_0;
|
|
cyt_1_set_Capacity_m722108BF059153BAE79C7EDF507EEB48C779F8FC(__this, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_BinarySearch_m971E0291DD1B946BE15755CFEC89155C1E0348E9_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_index, int32_t ___1_count, int32_t ___2_item, RuntimeObject* ___3_comparer, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1 = ___1_count;
|
|
cyt_1_idl_m9000500F726149135080EFE12D9BBAEF68A8F3E7(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_2 = __this->___Items;
|
|
int32_t L_3 = ___0_index;
|
|
int32_t L_4 = ___1_count;
|
|
int32_t L_5 = ___2_item;
|
|
RuntimeObject* L_6 = ___3_comparer;
|
|
int32_t L_7;
|
|
L_7 = Array_BinarySearch_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mC9C8319715804B003E1E2802B394C514987FE618(L_2, L_3, L_4, L_5, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 19));
|
|
return L_7;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_lpy_m3864AD6C49AD06CFBEAFDDFC486BFED208F81DA4_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_a;
|
|
int32_t L_2 = __this->___Count;
|
|
if ((!(((uint32_t)L_1) > ((uint32_t)L_2))))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEC97BB83DEFADDF866FC5F52CAC696C8CBA94929)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Sort_mA26196F7C1476043B0F162D00237DD828904076B_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
Comparer_1_t2FF14F26F4D678A8FA199B888FF61A2A9D1D2D80* L_2;
|
|
L_2 = Comparer_1_get_Default_m55220E2A5C7845F68201F047E7DA0D708E8AE051(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
Array_Sort_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m6E0CF4C26182BB9D788C90ABE423C2F4CD145E41(L_0, 0, L_1, (RuntimeObject*)L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
int32_t L_3 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_3, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_idr_mEC77EFD170677B6E5B6A435A594242EF65E066D2_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_a, int32_t ___1_b, Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* ___2_c, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
int32_t L_1 = ___1_b;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_0, L_1));
|
|
goto IL_0020;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* L_2 = ___2_c;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_3 = __this->___Items;
|
|
int32_t L_4 = V_0;
|
|
int32_t L_5 = ((int32_t)il2cpp_codegen_subtract(L_4, 1));
|
|
V_0 = L_5;
|
|
NullCheck(L_3);
|
|
int32_t L_6 = L_5;
|
|
int32_t L_7 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
|
|
NullCheck(L_2);
|
|
bool L_8;
|
|
L_8 = Predicate_1_Invoke_mD16C664FFE93598D1C12AC86190D12B0F90B5419_inline(L_2, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 32));
|
|
if (!L_8)
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_9 = V_0;
|
|
return L_9;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
int32_t L_10 = V_0;
|
|
int32_t L_11 = ___0_a;
|
|
if ((!(((uint32_t)L_10) == ((uint32_t)L_11))))
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
return (-1);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* cyt_1_GetRange_m7DD998C790615C4E6957656A3186746AA873350F_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_index, int32_t ___1_count, const RuntimeMethod* method)
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_0 = NULL;
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1 = ___1_count;
|
|
cyt_1_idl_m9000500F726149135080EFE12D9BBAEF68A8F3E7(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
int32_t L_2 = ___1_count;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_3 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 8), (uint32_t)L_2);
|
|
V_0 = L_3;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_4 = __this->___Items;
|
|
int32_t L_5 = ___0_index;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_6 = V_0;
|
|
int32_t L_7 = ___1_count;
|
|
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_4, L_5, (RuntimeArray*)L_6, 0, L_7, NULL);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_8 = V_0;
|
|
int32_t L_9 = ___1_count;
|
|
cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* L_10 = (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 0));
|
|
cyt_1__ctor_m9DD32B05F38190D7683C2B268473612A12E7B474(L_10, L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 54));
|
|
return L_10;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_IndexOf_m51B723D3B69FAA8FC99A1093B193B7C6CFD473D6_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_item, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_0 = __this->___Items;
|
|
int32_t L_1 = ___0_item;
|
|
int32_t L_2 = __this->___Count;
|
|
int32_t L_3;
|
|
L_3 = Array_IndexOf_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m22CB8CB6C30E1C3E70C8662D7A290B88EF5007F3(L_0, L_1, 0, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 44));
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_llt_mD07F0D982347A3E772E3E535B56075EE402DC322_gshared (cyt_1_tC1DEF6AAD82FA124BC41D0504CAD05EFBEE60FA7* __this, int32_t ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_a;
|
|
int32_t L_2 = __this->___Count;
|
|
if ((!(((uint32_t)L_1) > ((uint32_t)L_2))))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0EBE26183B9E5BF28E32247130C32FFD868B5565)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1__ctor_mFC67434B16EC7C3504CD32D1618B4BBB327D2EF2_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = ((cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___ofe;
|
|
__this->___Items = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___Items), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1__ctor_m43E718DF083468F363C950CF6575D5FBF7DEBB6A_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, RuntimeObject* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
RuntimeObject* L_0 = ___0_a;
|
|
cyt_1_idu_mF72A8F55A50DCEE743B00B09FB7A90645B4E2DBC(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
|
|
RuntimeObject* L_1 = ___0_a;
|
|
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 5)));
|
|
RuntimeObject* L_2 = V_0;
|
|
if (L_2)
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = ((cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___ofe;
|
|
__this->___Items = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___Items), (void*)L_3);
|
|
RuntimeObject* L_4 = ___0_a;
|
|
cyt_1_idn_m346C0CFFD2CC30D0E4A4797254C49F5409FA8930(__this, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 6));
|
|
return;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
RuntimeObject* L_5 = V_0;
|
|
NullCheck(L_5);
|
|
int32_t L_6;
|
|
L_6 = InterfaceFuncInvoker0< int32_t >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_5);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_7 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 8), (uint32_t)L_6);
|
|
__this->___Items = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___Items), (void*)L_7);
|
|
RuntimeObject* L_8 = V_0;
|
|
cyt_1_idm_m631EC9E3D21BDD7A5BD295DEB5197651FCC481AF(__this, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 9));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_GrowIfNeeded_mEC3F45D7117DE0334F2D60DC340F0B049A7CF616_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_addedCount, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
int32_t L_1 = ___0_addedCount;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_0, L_1));
|
|
int32_t L_2 = V_0;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = __this->___Items;
|
|
NullCheck(L_3);
|
|
if ((((int32_t)L_2) <= ((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_4;
|
|
L_4 = cyt_1_get_Capacity_m25BBFD31E5869C5345D8C149836A1AC006302696(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
int32_t L_5;
|
|
L_5 = Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF(((int32_t)il2cpp_codegen_multiply(L_4, 2)), 4, NULL);
|
|
int32_t L_6 = V_0;
|
|
int32_t L_7;
|
|
L_7 = Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF(L_5, L_6, NULL);
|
|
cyt_1_set_Capacity_m4AFFC21E90B87652650BECBF215353E7F0FAA683(__this, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_RemoveAt_mEFA444476CFC5CD00EE1AE15712D5AA3CCAEF48C_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_index;
|
|
int32_t L_2 = __this->___Count;
|
|
if ((!(((uint32_t)L_1) >= ((uint32_t)L_2))))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
int32_t L_4 = ___0_index;
|
|
cyt_1_ids_m6B1036E5DA03649E5121870B07DCD459DFED50BA(__this, L_4, (-1), il2cpp_rgctx_method(method->klass->rgctx_data, 12));
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = __this->___Items;
|
|
int32_t L_6 = __this->___Count;
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_5, L_6, 1, NULL);
|
|
int32_t L_7 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_fpr_m80DBABFAF6DA1F58F576B15CF819E3AD83DD018A_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
Comparer_1_t0A03F9FBBEA32FB1528366652D3D38513E8B1137* L_2;
|
|
L_2 = Comparer_1_get_Default_mBE201B8DE0399BC709123B087F2215883366753F(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
Array_Sort_TisRuntimeObject_mF8C07FB088390BE91CF3D4F9C8C4AC052B3FBCBA(L_0, 0, L_1, (RuntimeObject*)L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
int32_t L_3 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_3, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_BinarySearch_m780AE9B1DB8BE417EB8826D6B732EC54067E1C23_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, RuntimeObject* ___0_item, RuntimeObject* ___1_comparer, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
RuntimeObject* L_2 = ___0_item;
|
|
RuntimeObject* L_3 = ___1_comparer;
|
|
int32_t L_4;
|
|
L_4 = Array_BinarySearch_TisRuntimeObject_m5B818220FAB53B22E61917AC1A8AE36C1B1DA151(L_0, 0, L_1, L_2, L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 19));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_RemoveRange_mF57E49CBFFF6519E34B0A452DA4432B7DBB63E1E_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_index, int32_t ___1_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1 = ___1_count;
|
|
cyt_1_idl_m86740E04EE6C8C56BA0FAEA89C51CA570D0713FB(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
int32_t L_2 = ___1_count;
|
|
if ((((int32_t)L_2) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = ___0_index;
|
|
int32_t L_4 = ___1_count;
|
|
cyt_1_ids_m6B1036E5DA03649E5121870B07DCD459DFED50BA(__this, L_3, ((-L_4)), il2cpp_rgctx_method(method->klass->rgctx_data, 12));
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = __this->___Items;
|
|
int32_t L_6 = __this->___Count;
|
|
int32_t L_7 = ___1_count;
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_5, L_6, L_7, NULL);
|
|
int32_t L_8 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_8, 1));
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_ihk_m3D5F90F60F8FB5E0F250C0ABF4A4AB427B737F9B_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, bool ___0_clearArray, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_clearArray;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = __this->___Items;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = __this->___Items;
|
|
NullCheck(L_2);
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_1, 0, ((int32_t)(((RuntimeArray*)L_2)->max_length)), NULL);
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
__this->___Count = 0;
|
|
int32_t L_3 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_3, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_LastIndexOf_m04A3190F8E512B3089D41025EA570FD23AE544D3_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, RuntimeObject* ___0_item, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___1_index;
|
|
cyt_1_idt_m9D16DBE0051863DFFE480EAC4C8C87EA6DD6B353(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 21));
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = __this->___Items;
|
|
RuntimeObject* L_2 = ___0_item;
|
|
int32_t L_3 = ___1_index;
|
|
int32_t L_4 = ___1_index;
|
|
int32_t L_5;
|
|
L_5 = Array_LastIndexOf_TisRuntimeObject_m71A883897624019E6587A0716169FDF72475BC3D(L_1, L_2, L_3, ((int32_t)il2cpp_codegen_add(L_4, 1)), il2cpp_rgctx_method(method->klass->rgctx_data, 22));
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool cyt_1_Remove_mFD3DB5759B5E6544CC0D7A7F70DBD8D764E62843_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, RuntimeObject* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
RuntimeObject* L_0 = ___0_item;
|
|
int32_t L_1;
|
|
L_1 = cyt_1_IndexOf_m8B0A0B29CC140DDD6EB5E7843FF5BBD6886786D1(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 23));
|
|
V_0 = L_1;
|
|
int32_t L_2 = V_0;
|
|
if ((((int32_t)L_2) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = V_0;
|
|
cyt_1_RemoveAt_mEFA444476CFC5CD00EE1AE15712D5AA3CCAEF48C(__this, L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 24));
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
int32_t L_4 = V_0;
|
|
return (bool)((((int32_t)((((int32_t)L_4) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_get_Capacity_m25BBFD31E5869C5345D8C149836A1AC006302696_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = __this->___Items;
|
|
NullCheck(L_0);
|
|
return ((int32_t)(((RuntimeArray*)L_0)->max_length));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_AddRange_m8BDB04889C36481BB2B55F0969A29E206F6BAE7E_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* ___0_list, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* L_0 = ___0_list;
|
|
cyt_1_idu_mF72A8F55A50DCEE743B00B09FB7A90645B4E2DBC(__this, (RuntimeObject*)L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
|
|
cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* L_1 = ___0_list;
|
|
NullCheck(L_1);
|
|
int32_t L_2 = L_1->___Count;
|
|
V_0 = L_2;
|
|
int32_t L_3 = V_0;
|
|
if (L_3)
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
int32_t L_4 = V_0;
|
|
cyt_1_GrowIfNeeded_mEC3F45D7117DE0334F2D60DC340F0B049A7CF616(__this, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 25));
|
|
cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* L_5 = ___0_list;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = __this->___Items;
|
|
int32_t L_7 = __this->___Count;
|
|
NullCheck(L_5);
|
|
cyt_1_CopyTo_m23EB801CB3FE7930AE6A743D5FDEDAFA7A1C537A(L_5, L_6, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 26));
|
|
int32_t L_8 = __this->___Count;
|
|
int32_t L_9 = V_0;
|
|
__this->___Count = ((int32_t)il2cpp_codegen_add(L_8, L_9));
|
|
int32_t L_10 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_10, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_mcl_mC39D33FFC067DFBCCA06C528D2246DFF61FD4E46_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_addedCount, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
int32_t L_1 = ___0_addedCount;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_0, L_1));
|
|
int32_t L_2 = V_0;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = __this->___Items;
|
|
NullCheck(L_3);
|
|
if ((((int32_t)L_2) <= ((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_4;
|
|
L_4 = cyt_1_get_Capacity_m25BBFD31E5869C5345D8C149836A1AC006302696(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
int32_t L_5;
|
|
L_5 = Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF(((int32_t)il2cpp_codegen_multiply(L_4, 2)), 4, NULL);
|
|
int32_t L_6 = V_0;
|
|
int32_t L_7;
|
|
L_7 = Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF(L_5, L_6, NULL);
|
|
cyt_1_set_Capacity_m4AFFC21E90B87652650BECBF215353E7F0FAA683(__this, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* cyt_1_Pop_mDC944AF483D97DB8FBB63BE1366EBD485B79D8C1_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
RuntimeObject* V_1 = NULL;
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
if (L_0)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral57462D5D876383291750F779D30A75A0AD5ED4AE)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
int32_t L_2 = __this->___Count;
|
|
V_0 = ((int32_t)il2cpp_codegen_subtract(L_2, 1));
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = __this->___Items;
|
|
int32_t L_4 = V_0;
|
|
NullCheck(L_3);
|
|
int32_t L_5 = L_4;
|
|
RuntimeObject* L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_7 = __this->___Items;
|
|
int32_t L_8 = V_0;
|
|
il2cpp_codegen_initobj((&V_1), sizeof(RuntimeObject*));
|
|
RuntimeObject* L_9 = V_1;
|
|
NullCheck(L_7);
|
|
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(L_8), (RuntimeObject*)L_9);
|
|
int32_t L_10 = __this->___Count;
|
|
__this->___Count = ((int32_t)il2cpp_codegen_subtract(L_10, 1));
|
|
int32_t L_11 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_11, 1));
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_LastIndexOf_m9998C033254BD72CEC42C984EEE9A09911BB07B7_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, RuntimeObject* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = __this->___Items;
|
|
RuntimeObject* L_1 = ___0_item;
|
|
int32_t L_2 = __this->___Count;
|
|
int32_t L_3 = __this->___Count;
|
|
int32_t L_4;
|
|
L_4 = Array_LastIndexOf_TisRuntimeObject_m71A883897624019E6587A0716169FDF72475BC3D(L_0, L_1, ((int32_t)il2cpp_codegen_subtract(L_2, 1)), L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 22));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_cdv_m8D904955BACE7B42363367FA2D27114E5FB7710F_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
cyt_1_set_Capacity_m4AFFC21E90B87652650BECBF215353E7F0FAA683(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* cyt_1_Find_m963EA5C19B39C056C22C3FA6E837A265429D03AF_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* ___0_match, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
RuntimeObject* V_1 = NULL;
|
|
{
|
|
Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* L_0 = ___0_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_m3DDDB78E59C3C27140EA4944DF5910E6994A2B60(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
int32_t L_1 = __this->___Count;
|
|
Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* L_2 = ___0_match;
|
|
int32_t L_3;
|
|
L_3 = cyt_1_idq_m5F41A40EFD751257A620EC81EE5C2F81E67F8E19(__this, 0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 29));
|
|
V_0 = L_3;
|
|
int32_t L_4 = V_0;
|
|
if ((!(((uint32_t)L_4) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_initobj((&V_1), sizeof(RuntimeObject*));
|
|
RuntimeObject* L_5 = V_1;
|
|
return L_5;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = __this->___Items;
|
|
int32_t L_7 = V_0;
|
|
NullCheck(L_6);
|
|
int32_t L_8 = L_7;
|
|
RuntimeObject* L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
|
|
return L_9;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Clear_m9E8F3AF789FFF0C8C51ED2B42ADDDBD6B5DC4960_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, bool ___0_clearArray, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_clearArray;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = __this->___Items;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = __this->___Items;
|
|
NullCheck(L_2);
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_1, 0, ((int32_t)(((RuntimeArray*)L_2)->max_length)), NULL);
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
__this->___Count = 0;
|
|
int32_t L_3 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_3, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idl_m86740E04EE6C8C56BA0FAEA89C51CA570D0713FB_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_a, int32_t ___1_b, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
if ((((int32_t)L_0) >= ((int32_t)0)))
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_1 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
int32_t L_2 = ___1_b;
|
|
if ((((int32_t)L_2) >= ((int32_t)0)))
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral07624473F417C06C74D59C64840A1532FCE2C626)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
int32_t L_4 = ___0_a;
|
|
int32_t L_5 = ___1_b;
|
|
int32_t L_6 = __this->___Count;
|
|
if ((!(((uint32_t)((int32_t)il2cpp_codegen_add(L_4, L_5))) > ((uint32_t)L_6))))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_7 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8323D44D38CA9D8ED487159B21F762B262510EE5)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, method);
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_FindIndex_mBDC647F043A982BE88B592312850D9127636B8EE_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* ___0_match, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* L_0 = ___0_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_m3DDDB78E59C3C27140EA4944DF5910E6994A2B60(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
int32_t L_1 = __this->___Count;
|
|
Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* L_2 = ___0_match;
|
|
int32_t L_3;
|
|
L_3 = cyt_1_idq_m5F41A40EFD751257A620EC81EE5C2F81E67F8E19(__this, 0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 29));
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_cql_mF3D8081A68922E8C7A1198650685C2942738245C_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
cyt_1_set_Capacity_m4AFFC21E90B87652650BECBF215353E7F0FAA683(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool cyt_1_Exists_m686A369FCA31600E2CBD1A0FF8859EDE78EDB9D0_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* ___0_match, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* L_0 = ___0_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_m3DDDB78E59C3C27140EA4944DF5910E6994A2B60(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
int32_t L_1 = __this->___Count;
|
|
Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* L_2 = ___0_match;
|
|
int32_t L_3;
|
|
L_3 = cyt_1_idq_m5F41A40EFD751257A620EC81EE5C2F81E67F8E19(__this, 0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 29));
|
|
return (bool)((((int32_t)((((int32_t)L_3) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Insert_m4D389AA2029794265B17FA549C154713C86357BC_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_index, RuntimeObject* ___1_item, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
cyt_1_idt_m9D16DBE0051863DFFE480EAC4C8C87EA6DD6B353(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 21));
|
|
int32_t L_1 = __this->___Count;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = __this->___Items;
|
|
NullCheck(L_2);
|
|
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)(((RuntimeArray*)L_2)->max_length))))))
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
cyt_1_GrowIfNeeded_mEC3F45D7117DE0334F2D60DC340F0B049A7CF616(__this, 1, il2cpp_rgctx_method(method->klass->rgctx_data, 25));
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
int32_t L_3 = ___0_index;
|
|
cyt_1_ids_m6B1036E5DA03649E5121870B07DCD459DFED50BA(__this, L_3, 1, il2cpp_rgctx_method(method->klass->rgctx_data, 12));
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = __this->___Items;
|
|
int32_t L_5 = ___0_index;
|
|
RuntimeObject* L_6 = ___1_item;
|
|
NullCheck(L_4);
|
|
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject*)L_6);
|
|
int32_t L_7 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_iqf_mF66CA23CBBFBAA9B36DCFEBA91FDF9710A38A58C_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_index, int32_t ___1_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1 = ___1_count;
|
|
cyt_1_idl_m86740E04EE6C8C56BA0FAEA89C51CA570D0713FB(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
int32_t L_2 = ___1_count;
|
|
if ((((int32_t)L_2) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = ___0_index;
|
|
int32_t L_4 = ___1_count;
|
|
cyt_1_ids_m6B1036E5DA03649E5121870B07DCD459DFED50BA(__this, L_3, ((-L_4)), il2cpp_rgctx_method(method->klass->rgctx_data, 12));
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = __this->___Items;
|
|
int32_t L_6 = __this->___Count;
|
|
int32_t L_7 = ___1_count;
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_5, L_6, L_7, NULL);
|
|
int32_t L_8 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_8, 1));
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* cyt_1_FindAll_m743B8FA6E337982DF973E617FC0522741E301CC7_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* ___0_match, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* L_0 = ___0_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_m3DDDB78E59C3C27140EA4944DF5910E6994A2B60(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* L_1 = ___0_match;
|
|
cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* L_2;
|
|
L_2 = cyt_1_idp_mF5E6A0282AFB776850E197F0AC2F8E6AF1034780(__this, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 30));
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* cyt_1_idp_mF5E6A0282AFB776850E197F0AC2F8E6AF1034780_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* L_0 = (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 0));
|
|
cyt_1__ctor_mFC67434B16EC7C3504CD32D1618B4BBB327D2EF2(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 31));
|
|
V_0 = L_0;
|
|
V_1 = 0;
|
|
goto IL_0034;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* L_1 = ___0_a;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = __this->___Items;
|
|
int32_t L_3 = V_1;
|
|
NullCheck(L_2);
|
|
int32_t L_4 = L_3;
|
|
RuntimeObject* L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
|
|
NullCheck(L_1);
|
|
bool L_6;
|
|
L_6 = Predicate_1_Invoke_m6AC449189DCEE89A4FA2A2B724DE296A1DFB6A9B_inline(L_1, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 32));
|
|
if (!L_6)
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
{
|
|
cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* L_7 = V_0;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_8 = __this->___Items;
|
|
int32_t L_9 = V_1;
|
|
NullCheck(L_8);
|
|
int32_t L_10 = L_9;
|
|
RuntimeObject* L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
|
|
NullCheck(L_7);
|
|
cyt_1_Add_mB0A91C50406EC0F3EDAF35DF0AC1667D6E429B4C(L_7, L_11, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
int32_t L_12 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_12, 1));
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
int32_t L_13 = V_1;
|
|
int32_t L_14 = __this->___Count;
|
|
if ((((int32_t)L_13) < ((int32_t)L_14)))
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* L_15 = V_0;
|
|
return L_15;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_jxj_m4CAB6E67F48DCBD178EE98E8EAA5EDFB2A3BE8DD_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_index, int32_t ___1_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1 = ___1_count;
|
|
cyt_1_idl_m86740E04EE6C8C56BA0FAEA89C51CA570D0713FB(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = __this->___Items;
|
|
int32_t L_3 = ___0_index;
|
|
int32_t L_4 = ___1_count;
|
|
Array_Reverse_TisRuntimeObject_m06FF2E5011A594BEE1AF5EC3AEA51997A9812FE1(L_2, L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 34));
|
|
int32_t L_5 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_RemoveAll_m0D6958E2F48BDF9A02035A5E62EFC2879445382A_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* ___0_match, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* L_0 = ___0_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_m3DDDB78E59C3C27140EA4944DF5910E6994A2B60(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
V_0 = 0;
|
|
V_1 = 0;
|
|
V_0 = 0;
|
|
goto IL_0026;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* L_1 = ___0_match;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = __this->___Items;
|
|
int32_t L_3 = V_0;
|
|
NullCheck(L_2);
|
|
int32_t L_4 = L_3;
|
|
RuntimeObject* L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
|
|
NullCheck(L_1);
|
|
bool L_6;
|
|
L_6 = Predicate_1_Invoke_m6AC449189DCEE89A4FA2A2B724DE296A1DFB6A9B_inline(L_1, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 32));
|
|
if (L_6)
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_7 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
int32_t L_8 = V_0;
|
|
int32_t L_9 = __this->___Count;
|
|
if ((((int32_t)L_8) < ((int32_t)L_9)))
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
int32_t L_10 = V_0;
|
|
int32_t L_11 = __this->___Count;
|
|
if ((!(((uint32_t)L_10) == ((uint32_t)L_11))))
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
int32_t L_12 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_12, 1));
|
|
int32_t L_13 = V_0;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_13, 1));
|
|
goto IL_0082;
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* L_14 = ___0_match;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_15 = __this->___Items;
|
|
int32_t L_16 = V_1;
|
|
NullCheck(L_15);
|
|
int32_t L_17 = L_16;
|
|
RuntimeObject* L_18 = (L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_17));
|
|
NullCheck(L_14);
|
|
bool L_19;
|
|
L_19 = Predicate_1_Invoke_m6AC449189DCEE89A4FA2A2B724DE296A1DFB6A9B_inline(L_14, L_18, il2cpp_rgctx_method(method->klass->rgctx_data, 32));
|
|
if (L_19)
|
|
{
|
|
goto IL_007e;
|
|
}
|
|
}
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_20 = __this->___Items;
|
|
int32_t L_21 = V_0;
|
|
int32_t L_22 = L_21;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_22, 1));
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_23 = __this->___Items;
|
|
int32_t L_24 = V_1;
|
|
NullCheck(L_23);
|
|
int32_t L_25 = L_24;
|
|
RuntimeObject* L_26 = (L_23)->GetAt(static_cast<il2cpp_array_size_t>(L_25));
|
|
NullCheck(L_20);
|
|
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(L_22), (RuntimeObject*)L_26);
|
|
}
|
|
|
|
IL_007e:
|
|
{
|
|
int32_t L_27 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_27, 1));
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
int32_t L_28 = V_1;
|
|
int32_t L_29 = __this->___Count;
|
|
if ((((int32_t)L_28) < ((int32_t)L_29)))
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_30 = V_1;
|
|
int32_t L_31 = V_0;
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_30, L_31))) <= ((int32_t)0)))
|
|
{
|
|
goto IL_00a0;
|
|
}
|
|
}
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_32 = __this->___Items;
|
|
int32_t L_33 = V_0;
|
|
int32_t L_34 = V_1;
|
|
int32_t L_35 = V_0;
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_32, L_33, ((int32_t)il2cpp_codegen_subtract(L_34, L_35)), NULL);
|
|
}
|
|
|
|
IL_00a0:
|
|
{
|
|
int32_t L_36 = V_0;
|
|
__this->___Count = L_36;
|
|
int32_t L_37 = V_1;
|
|
int32_t L_38 = V_0;
|
|
return ((int32_t)il2cpp_codegen_subtract(L_37, L_38));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_FindIndex_m1AEF667B266FDB5B97F7C0387017ECC9ED3445DE_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_startIndex, int32_t ___1_count, Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* ___2_match, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* L_0 = ___2_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_m3DDDB78E59C3C27140EA4944DF5910E6994A2B60(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
int32_t L_1 = ___0_startIndex;
|
|
int32_t L_2 = ___1_count;
|
|
cyt_1_idl_m86740E04EE6C8C56BA0FAEA89C51CA570D0713FB(__this, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
int32_t L_3 = ___0_startIndex;
|
|
int32_t L_4 = ___1_count;
|
|
Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* L_5 = ___2_match;
|
|
int32_t L_6;
|
|
L_6 = cyt_1_idq_m5F41A40EFD751257A620EC81EE5C2F81E67F8E19(__this, L_3, L_4, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 29));
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_idq_m5F41A40EFD751257A620EC81EE5C2F81E67F8E19_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_a, int32_t ___1_b, Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* ___2_c, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
int32_t L_1 = ___1_b;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_0, L_1));
|
|
int32_t L_2 = ___0_a;
|
|
V_1 = L_2;
|
|
goto IL_0022;
|
|
}
|
|
|
|
IL_0008:
|
|
{
|
|
Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* L_3 = ___2_c;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = __this->___Items;
|
|
int32_t L_5 = V_1;
|
|
NullCheck(L_4);
|
|
int32_t L_6 = L_5;
|
|
RuntimeObject* L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
|
|
NullCheck(L_3);
|
|
bool L_8;
|
|
L_8 = Predicate_1_Invoke_m6AC449189DCEE89A4FA2A2B724DE296A1DFB6A9B_inline(L_3, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 32));
|
|
if (!L_8)
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_9 = V_1;
|
|
return L_9;
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
int32_t L_10 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_10, 1));
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
int32_t L_11 = V_1;
|
|
int32_t L_12 = V_0;
|
|
if ((((int32_t)L_11) < ((int32_t)L_12)))
|
|
{
|
|
goto IL_0008;
|
|
}
|
|
}
|
|
{
|
|
return (-1);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idw_m90DF59ECB74CEF8020FE1177408747CEDD0F94CA_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_a, RuntimeObject* ___1_b, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___1_b;
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_1;
|
|
L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 3), L_0);
|
|
V_0 = L_1;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0027:
|
|
{
|
|
{
|
|
RuntimeObject* L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = V_0;
|
|
NullCheck((RuntimeObject*)L_3);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_3);
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_001d_1;
|
|
}
|
|
|
|
IL_0009_1:
|
|
{
|
|
RuntimeObject* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
RuntimeObject* L_5;
|
|
L_5 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 36), L_4);
|
|
V_1 = L_5;
|
|
int32_t L_6 = ___0_a;
|
|
int32_t L_7 = L_6;
|
|
___0_a = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
RuntimeObject* L_8 = V_1;
|
|
cyt_1_Insert_m4D389AA2029794265B17FA549C154713C86357BC(__this, L_7, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 38));
|
|
}
|
|
|
|
IL_001d_1:
|
|
{
|
|
RuntimeObject* L_9 = V_0;
|
|
NullCheck((RuntimeObject*)L_9);
|
|
bool L_10;
|
|
L_10 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_9);
|
|
if (L_10)
|
|
{
|
|
goto IL_0009_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1__ctor_mF8FF5307C386D30BCFDEF46CA5B3EC1EEA8A67F1_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___0_a, int32_t ___1_b, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = ___0_a;
|
|
__this->___Items = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___Items), (void*)L_0);
|
|
int32_t L_1 = ___1_b;
|
|
__this->___Count = L_1;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_FindIndex_mA3DE7CD0ABF542CD9B9E4A6D72FC82E25B9280F4_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_startIndex, Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* ___1_match, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* L_0 = ___1_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_m3DDDB78E59C3C27140EA4944DF5910E6994A2B60(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
int32_t L_1 = ___0_startIndex;
|
|
cyt_1_idt_m9D16DBE0051863DFFE480EAC4C8C87EA6DD6B353(__this, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 21));
|
|
int32_t L_2 = ___0_startIndex;
|
|
int32_t L_3 = __this->___Count;
|
|
int32_t L_4 = ___0_startIndex;
|
|
Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* L_5 = ___1_match;
|
|
int32_t L_6;
|
|
L_6 = cyt_1_idq_m5F41A40EFD751257A620EC81EE5C2F81E67F8E19(__this, L_2, ((int32_t)il2cpp_codegen_subtract(L_3, L_4)), L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 29));
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_ForEach_m32B2FA8D421D3013A7CBDA09CD82DBB1944CAB12_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* ___0_action, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* L_0 = ___0_action;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF9010398F7F524C05AB19445BDCE02E617A3E267)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
V_0 = 0;
|
|
goto IL_0028;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* L_2 = ___0_action;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = __this->___Items;
|
|
int32_t L_4 = V_0;
|
|
NullCheck(L_3);
|
|
int32_t L_5 = L_4;
|
|
RuntimeObject* L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
|
|
NullCheck(L_2);
|
|
Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_inline(L_2, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 40));
|
|
int32_t L_7 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
int32_t L_8 = V_0;
|
|
int32_t L_9 = __this->___Count;
|
|
if ((((int32_t)L_8) < ((int32_t)L_9)))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idu_mF72A8F55A50DCEE743B00B09FB7A90645B4E2DBC_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, RuntimeObject* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = ___0_a;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral469F05BE9BB4C7903C353D0EB9F6384C84A48B25)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_FindLastIndex_mE2A8BEC575FE2721824A879157C599B86A7CC083_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* ___0_match, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* L_0 = ___0_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_m3DDDB78E59C3C27140EA4944DF5910E6994A2B60(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
int32_t L_1 = __this->___Count;
|
|
Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* L_2 = ___0_match;
|
|
int32_t L_3;
|
|
L_3 = cyt_1_idr_m6E400D24DCC5D8A9C8DEAF5401A9A2C7FEFD5F55(__this, 0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 41));
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857 cyt_1_GetEnumerator_m6E9674491979BB9A77201A6544F38E85D36FE6C9_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857 L_0;
|
|
memset((&L_0), 0, sizeof(L_0));
|
|
cys__ctor_m4BCA1B780A5FA6658EB7974E509C0F58771C4A1F((&L_0), __this, il2cpp_rgctx_method(method->klass->rgctx_data, 43));
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_LastIndexOf_mC4E613222BCB225311024CAEE4DABAB5CA4AAC1A_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, RuntimeObject* ___0_item, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___1_index;
|
|
if ((((int32_t)L_0) >= ((int32_t)0)))
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___1_index;
|
|
int32_t L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)), &L_2);
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_4 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_m60B543A63AC8692C28096003FBF2AD124B9D5B85(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2D65EE85CADB9008DEE48BCD5A9E95E54D15F3FF)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, method);
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
int32_t L_5 = ___2_count;
|
|
if ((((int32_t)L_5) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_6 = ___2_count;
|
|
int32_t L_7 = L_6;
|
|
RuntimeObject* L_8 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)), &L_7);
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_9 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_m60B543A63AC8692C28096003FBF2AD124B9D5B85(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral07624473F417C06C74D59C64840A1532FCE2C626)), L_8, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral158BA1ED10A53D1BA59A2C5D9C58736662B34750)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, method);
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
int32_t L_10 = ___1_index;
|
|
int32_t L_11 = ___2_count;
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(L_10, L_11)), 1))) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0052;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_12 = ___2_count;
|
|
int32_t L_13 = L_12;
|
|
RuntimeObject* L_14 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)), &L_13);
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_15 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_m60B543A63AC8692C28096003FBF2AD124B9D5B85(L_15, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral07624473F417C06C74D59C64840A1532FCE2C626)), L_14, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral237DA396E8FE2D1C94C98875D84C7D661FF86FB6)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, method);
|
|
}
|
|
|
|
IL_0052:
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_16 = __this->___Items;
|
|
RuntimeObject* L_17 = ___0_item;
|
|
int32_t L_18 = ___1_index;
|
|
int32_t L_19 = ___2_count;
|
|
int32_t L_20;
|
|
L_20 = Array_LastIndexOf_TisRuntimeObject_m71A883897624019E6587A0716169FDF72475BC3D(L_16, L_17, L_18, L_19, il2cpp_rgctx_method(method->klass->rgctx_data, 22));
|
|
return L_20;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_fno_m146B356F9CF05A6AD8A265FE918AB36D40273191_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_min, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t G_B4_0 = 0;
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = __this->___Items;
|
|
NullCheck(L_0);
|
|
int32_t L_1 = ___0_min;
|
|
if ((((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))) >= ((int32_t)L_1)))
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = __this->___Items;
|
|
NullCheck(L_2);
|
|
if (!(((RuntimeArray*)L_2)->max_length))
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = __this->___Items;
|
|
NullCheck(L_3);
|
|
G_B4_0 = ((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_3)->max_length)), 2));
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
G_B4_0 = 4;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
V_0 = G_B4_0;
|
|
int32_t L_4 = V_0;
|
|
int32_t L_5 = ___0_min;
|
|
if ((((int32_t)L_4) >= ((int32_t)L_5)))
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_6 = ___0_min;
|
|
V_0 = L_6;
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
int32_t L_7 = V_0;
|
|
cyt_1_set_Capacity_m4AFFC21E90B87652650BECBF215353E7F0FAA683(__this, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_CopyTo_m2D09E03F19E520E1DC5AB7DC0B75D18F56F1B479_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___0_array, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = __this->___Items;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = ___0_array;
|
|
int32_t L_2 = __this->___Count;
|
|
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_0, 0, (RuntimeArray*)L_1, 0, L_2, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_IndexOf_m769FB7E6AE22243C4DF476BECC3547B3FCEE42D2_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, RuntimeObject* ___0_item, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___1_index;
|
|
if ((((int32_t)L_0) >= ((int32_t)0)))
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_1 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
int32_t L_2 = ___2_count;
|
|
if ((((int32_t)L_2) >= ((int32_t)0)))
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral07624473F417C06C74D59C64840A1532FCE2C626)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
int32_t L_4 = ___1_index;
|
|
int32_t L_5 = ___2_count;
|
|
int32_t L_6 = __this->___Count;
|
|
if ((!(((uint32_t)((int32_t)il2cpp_codegen_add(L_4, L_5))) > ((uint32_t)L_6))))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_7 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8323D44D38CA9D8ED487159B21F762B262510EE5)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, method);
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_8 = __this->___Items;
|
|
RuntimeObject* L_9 = ___0_item;
|
|
int32_t L_10 = ___1_index;
|
|
int32_t L_11 = ___2_count;
|
|
int32_t L_12;
|
|
L_12 = Array_IndexOf_TisRuntimeObject_m4C0C698B1D627E6B3C3BE6DDA512E8E276DC6F73(L_8, L_9, L_10, L_11, il2cpp_rgctx_method(method->klass->rgctx_data, 44));
|
|
return L_12;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_FindLastIndex_m040FD50CDB91CA3DE92941BBE090192364B2CEF5_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_startIndex, int32_t ___1_count, Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* ___2_match, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* L_0 = ___2_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_m3DDDB78E59C3C27140EA4944DF5910E6994A2B60(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
int32_t L_1 = ___0_startIndex;
|
|
int32_t L_2 = ___1_count;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(L_1, L_2)), 1));
|
|
int32_t L_3 = V_0;
|
|
int32_t L_4 = ___1_count;
|
|
cyt_1_idl_m86740E04EE6C8C56BA0FAEA89C51CA570D0713FB(__this, L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
int32_t L_5 = V_0;
|
|
int32_t L_6 = ___1_count;
|
|
Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* L_7 = ___2_match;
|
|
int32_t L_8;
|
|
L_8 = cyt_1_idr_m6E400D24DCC5D8A9C8DEAF5401A9A2C7FEFD5F55(__this, L_5, L_6, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 41));
|
|
return L_8;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idt_m9D16DBE0051863DFFE480EAC4C8C87EA6DD6B353_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_a;
|
|
int32_t L_2 = __this->___Count;
|
|
if ((!(((uint32_t)L_1) > ((uint32_t)L_2))))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_ido_m3DDDB78E59C3C27140EA4944DF5910E6994A2B60_gshared (Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* L_0 = ___0_a;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE2EEFB4BE0C9F57BA62E733F26387F8BA68AF67C)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_InsertRange_m31B5F6F2C37190325C109A27F1CA2D52F3D3AF24_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_index, RuntimeObject* ___1_collection, const RuntimeMethod* method)
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___1_collection;
|
|
cyt_1_idu_mF72A8F55A50DCEE743B00B09FB7A90645B4E2DBC(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
|
|
int32_t L_1 = ___0_index;
|
|
cyt_1_idt_m9D16DBE0051863DFFE480EAC4C8C87EA6DD6B353(__this, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 21));
|
|
RuntimeObject* L_2 = ___1_collection;
|
|
if ((!(((RuntimeObject*)(RuntimeObject*)L_2) == ((RuntimeObject*)(cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082*)__this))))
|
|
{
|
|
goto IL_004f;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = __this->___Count;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 8), (uint32_t)L_3);
|
|
V_0 = L_4;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = V_0;
|
|
cyt_1_CopyTo_m23EB801CB3FE7930AE6A743D5FDEDAFA7A1C537A(__this, L_5, 0, il2cpp_rgctx_method(method->klass->rgctx_data, 26));
|
|
int32_t L_6 = __this->___Count;
|
|
cyt_1_GrowIfNeeded_mEC3F45D7117DE0334F2D60DC340F0B049A7CF616(__this, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 25));
|
|
int32_t L_7 = ___0_index;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_8 = V_0;
|
|
NullCheck(L_8);
|
|
cyt_1_ids_m6B1036E5DA03649E5121870B07DCD459DFED50BA(__this, L_7, ((int32_t)(((RuntimeArray*)L_8)->max_length)), il2cpp_rgctx_method(method->klass->rgctx_data, 12));
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_9 = V_0;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_10 = __this->___Items;
|
|
int32_t L_11 = ___0_index;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_12 = V_0;
|
|
NullCheck(L_12);
|
|
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_9, 0, (RuntimeArray*)L_10, L_11, ((int32_t)(((RuntimeArray*)L_12)->max_length)), NULL);
|
|
goto IL_006b;
|
|
}
|
|
|
|
IL_004f:
|
|
{
|
|
RuntimeObject* L_13 = ___1_collection;
|
|
V_1 = ((RuntimeObject*)IsInst((RuntimeObject*)L_13, il2cpp_rgctx_data(method->klass->rgctx_data, 5)));
|
|
RuntimeObject* L_14 = V_1;
|
|
if (!L_14)
|
|
{
|
|
goto IL_0063;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_15 = ___0_index;
|
|
RuntimeObject* L_16 = V_1;
|
|
cyt_1_idv_mB734D87440F4979238E674EFDF3233270B6A8459(__this, L_15, L_16, il2cpp_rgctx_method(method->klass->rgctx_data, 45));
|
|
goto IL_006b;
|
|
}
|
|
|
|
IL_0063:
|
|
{
|
|
int32_t L_17 = ___0_index;
|
|
RuntimeObject* L_18 = ___1_collection;
|
|
cyt_1_idw_m90DF59ECB74CEF8020FE1177408747CEDD0F94CA(__this, L_17, L_18, il2cpp_rgctx_method(method->klass->rgctx_data, 46));
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
int32_t L_19 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_19, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_FindLastIndex_m3BE8D9820C2513BB47AD5E67C790B8E1415518AC_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_startIndex, Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* ___1_match, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* L_0 = ___1_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_m3DDDB78E59C3C27140EA4944DF5910E6994A2B60(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
int32_t L_1 = ___0_startIndex;
|
|
cyt_1_idt_m9D16DBE0051863DFFE480EAC4C8C87EA6DD6B353(__this, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 21));
|
|
int32_t L_2 = ___0_startIndex;
|
|
Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* L_3 = ___1_match;
|
|
int32_t L_4;
|
|
L_4 = cyt_1_idr_m6E400D24DCC5D8A9C8DEAF5401A9A2C7FEFD5F55(__this, 0, ((int32_t)il2cpp_codegen_add(L_2, 1)), L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 41));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idm_m631EC9E3D21BDD7A5BD295DEB5197651FCC481AF_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, RuntimeObject* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
RuntimeObject* L_0 = ___0_a;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_0);
|
|
V_0 = L_1;
|
|
int32_t L_2 = V_0;
|
|
if (L_2)
|
|
{
|
|
goto IL_000b;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
int32_t L_3 = V_0;
|
|
cyt_1_GrowIfNeeded_mEC3F45D7117DE0334F2D60DC340F0B049A7CF616(__this, L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 25));
|
|
RuntimeObject* L_4 = ___0_a;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = __this->___Items;
|
|
int32_t L_6 = __this->___Count;
|
|
NullCheck(L_4);
|
|
InterfaceActionInvoker2< ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, int32_t >::Invoke(5, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_4, L_5, L_6);
|
|
int32_t L_7 = __this->___Count;
|
|
int32_t L_8 = V_0;
|
|
__this->___Count = ((int32_t)il2cpp_codegen_add(L_7, L_8));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_lkm_m02309A242F880A670C9F64F10DF8275DCF1A183A_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_addedCount, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
int32_t L_1 = ___0_addedCount;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_0, L_1));
|
|
int32_t L_2 = V_0;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = __this->___Items;
|
|
NullCheck(L_3);
|
|
if ((((int32_t)L_2) <= ((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_4;
|
|
L_4 = cyt_1_get_Capacity_m25BBFD31E5869C5345D8C149836A1AC006302696(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
int32_t L_5;
|
|
L_5 = Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF(((int32_t)il2cpp_codegen_multiply(L_4, 2)), 4, NULL);
|
|
int32_t L_6 = V_0;
|
|
int32_t L_7;
|
|
L_7 = Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF(L_5, L_6, NULL);
|
|
cyt_1_set_Capacity_m4AFFC21E90B87652650BECBF215353E7F0FAA683(__this, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_IndexOf_mE9D05E423C5AEEFED5114C8B28DAE715EF1AF74E_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, RuntimeObject* ___0_item, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___1_index;
|
|
cyt_1_idt_m9D16DBE0051863DFFE480EAC4C8C87EA6DD6B353(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 21));
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = __this->___Items;
|
|
RuntimeObject* L_2 = ___0_item;
|
|
int32_t L_3 = ___1_index;
|
|
int32_t L_4 = __this->___Count;
|
|
int32_t L_5 = ___1_index;
|
|
int32_t L_6;
|
|
L_6 = Array_IndexOf_TisRuntimeObject_m4C0C698B1D627E6B3C3BE6DDA512E8E276DC6F73(L_1, L_2, L_3, ((int32_t)il2cpp_codegen_subtract(L_4, L_5)), il2cpp_rgctx_method(method->klass->rgctx_data, 44));
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* cyt_1_idz_m67298C89E7B76658F4C85B1BDB33266A5E795427_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857 L_0;
|
|
L_0 = cyt_1_GetEnumerator_m6E9674491979BB9A77201A6544F38E85D36FE6C9(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 48));
|
|
cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857 L_1 = L_0;
|
|
RuntimeObject* L_2 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 42), &L_1);
|
|
return (RuntimeObject*)L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Reverse_m6F031EE63C47C243A4CFBA2B7F15679E01A220FC_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
Array_Reverse_TisRuntimeObject_m06FF2E5011A594BEE1AF5EC3AEA51997A9812FE1(L_0, 0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 34));
|
|
int32_t L_2 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_2, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* cyt_1_idy_m0832320A17623CA142928D56D3E5656C503A2BB8_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857 L_0;
|
|
L_0 = cyt_1_GetEnumerator_m6E9674491979BB9A77201A6544F38E85D36FE6C9(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 48));
|
|
cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857 L_1 = L_0;
|
|
RuntimeObject* L_2 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 42), &L_1);
|
|
return (RuntimeObject*)L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1__cctor_m21935FCE179306A5AF8B31B49860644BD33B6404_gshared (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 8), (uint32_t)0);
|
|
((cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___ofe = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___ofe), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool cyt_1_TrueForAll_mE9FD91DAE3D11FD6A25BE3607E736F273ACD9278_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* ___0_match, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* L_0 = ___0_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_m3DDDB78E59C3C27140EA4944DF5910E6994A2B60(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
V_0 = 0;
|
|
goto IL_0024;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* L_1 = ___0_match;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = __this->___Items;
|
|
int32_t L_3 = V_0;
|
|
NullCheck(L_2);
|
|
int32_t L_4 = L_3;
|
|
RuntimeObject* L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
|
|
NullCheck(L_1);
|
|
bool L_6;
|
|
L_6 = Predicate_1_Invoke_m6AC449189DCEE89A4FA2A2B724DE296A1DFB6A9B_inline(L_1, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 32));
|
|
if (L_6)
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
int32_t L_7 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
int32_t L_8 = V_0;
|
|
int32_t L_9 = __this->___Count;
|
|
if ((((int32_t)L_8) < ((int32_t)L_9)))
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Add_mB0A91C50406EC0F3EDAF35DF0AC1667D6E429B4C_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, RuntimeObject* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = __this->___Items;
|
|
NullCheck(L_1);
|
|
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)(((RuntimeArray*)L_1)->max_length))))))
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
cyt_1_GrowIfNeeded_mEC3F45D7117DE0334F2D60DC340F0B049A7CF616(__this, 1, il2cpp_rgctx_method(method->klass->rgctx_data, 25));
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = __this->___Items;
|
|
int32_t L_3 = __this->___Count;
|
|
V_0 = L_3;
|
|
int32_t L_4 = V_0;
|
|
__this->___Count = ((int32_t)il2cpp_codegen_add(L_4, 1));
|
|
int32_t L_5 = V_0;
|
|
RuntimeObject* L_6 = ___0_item;
|
|
NullCheck(L_2);
|
|
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (RuntimeObject*)L_6);
|
|
int32_t L_7 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_lpf_m5D264BC1E0388C410411170196C1C57805E4454D_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
Comparer_1_t0A03F9FBBEA32FB1528366652D3D38513E8B1137* L_2;
|
|
L_2 = Comparer_1_get_Default_mBE201B8DE0399BC709123B087F2215883366753F(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
Array_Sort_TisRuntimeObject_mF8C07FB088390BE91CF3D4F9C8C4AC052B3FBCBA(L_0, 0, L_1, (RuntimeObject*)L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
int32_t L_3 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_3, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* cyt_1_ToArray_m0961A9D364A6936558D45A3596D6A8A01D1D417A_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, const RuntimeMethod* method)
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_0 = NULL;
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 8), (uint32_t)L_0);
|
|
V_0 = L_1;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = __this->___Items;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = V_0;
|
|
int32_t L_4 = __this->___Count;
|
|
Array_Copy_m4233828B4E6288B6D815F539AAA38575DE627900((RuntimeArray*)L_2, (RuntimeArray*)L_3, L_4, NULL);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = V_0;
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_xn_m3B714B549315E5E2AFC8A3A75D141A88B0FA5F3D_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
Array_Reverse_TisRuntimeObject_m06FF2E5011A594BEE1AF5EC3AEA51997A9812FE1(L_0, 0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 34));
|
|
int32_t L_2 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_2, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1__ctor_m5EEF39D0C703B720FDB11D0CC473AAA8895A2D95_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
int32_t L_0 = ___0_a;
|
|
if ((((int32_t)L_0) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_1 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC37D78082ACFC8DEE7B32D9351C6E433A074FEC7)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
int32_t L_2 = ___0_a;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 8), (uint32_t)L_2);
|
|
__this->___Items = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___Items), (void*)L_3);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Sort_m349D87DC811E84AE7A3598A301E7D9D10380FAE9_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, RuntimeObject* ___0_comparer, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
RuntimeObject* L_2 = ___0_comparer;
|
|
Array_Sort_TisRuntimeObject_mF8C07FB088390BE91CF3D4F9C8C4AC052B3FBCBA(L_0, 0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
int32_t L_3 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_3, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_CopyTo_m961314B12646491D57BB3083E94B64D2126BDF30_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_index, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___1_array, int32_t ___2_arrayIndex, int32_t ___3_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1 = ___3_count;
|
|
cyt_1_idl_m86740E04EE6C8C56BA0FAEA89C51CA570D0713FB(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = __this->___Items;
|
|
int32_t L_3 = ___0_index;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = ___1_array;
|
|
int32_t L_5 = ___2_arrayIndex;
|
|
int32_t L_6 = ___3_count;
|
|
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_2, L_3, (RuntimeArray*)L_4, L_5, L_6, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Sort_m3F0E998900C2932929451B886A266E08E32D636C_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_index, int32_t ___1_count, RuntimeObject* ___2_comparer, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1 = ___1_count;
|
|
cyt_1_idl_m86740E04EE6C8C56BA0FAEA89C51CA570D0713FB(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = __this->___Items;
|
|
int32_t L_3 = ___0_index;
|
|
int32_t L_4 = ___1_count;
|
|
RuntimeObject* L_5 = ___2_comparer;
|
|
Array_Sort_TisRuntimeObject_mF8C07FB088390BE91CF3D4F9C8C4AC052B3FBCBA(L_2, L_3, L_4, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
int32_t L_6 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_6, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_mmf_m541A7652C8B18FF5DD6FA0532287A48A8DDE9CEC_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
Comparer_1_t0A03F9FBBEA32FB1528366652D3D38513E8B1137* L_2;
|
|
L_2 = Comparer_1_get_Default_mBE201B8DE0399BC709123B087F2215883366753F(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
Array_Sort_TisRuntimeObject_mF8C07FB088390BE91CF3D4F9C8C4AC052B3FBCBA(L_0, 0, L_1, (RuntimeObject*)L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
int32_t L_3 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_3, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idn_m346C0CFFD2CC30D0E4A4797254C49F5409FA8930_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, RuntimeObject* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___0_a;
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_1;
|
|
L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 3), L_0);
|
|
V_0 = L_1;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0021:
|
|
{
|
|
{
|
|
RuntimeObject* L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = V_0;
|
|
NullCheck((RuntimeObject*)L_3);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_3);
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_0017_1;
|
|
}
|
|
|
|
IL_0009_1:
|
|
{
|
|
RuntimeObject* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
RuntimeObject* L_5;
|
|
L_5 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 36), L_4);
|
|
V_1 = L_5;
|
|
RuntimeObject* L_6 = V_1;
|
|
cyt_1_Add_mB0A91C50406EC0F3EDAF35DF0AC1667D6E429B4C(__this, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
|
|
}
|
|
|
|
IL_0017_1:
|
|
{
|
|
RuntimeObject* L_7 = V_0;
|
|
NullCheck((RuntimeObject*)L_7);
|
|
bool L_8;
|
|
L_8 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_7);
|
|
if (L_8)
|
|
{
|
|
goto IL_0009_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_002b;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_dm_m4420F19417CA75699C8B68853606389EB15406F2_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
Array_Reverse_TisRuntimeObject_m06FF2E5011A594BEE1AF5EC3AEA51997A9812FE1(L_0, 0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 34));
|
|
int32_t L_2 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_2, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Sort_mF94042E90943AD69F647F467CFFD819D04ED9841_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, Comparison_1_t62E531E7B8260E2C6C2718C3BDB8CF8655139645* ___0_comparison, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = __this->___Items;
|
|
Comparison_1_t62E531E7B8260E2C6C2718C3BDB8CF8655139645* L_1 = ___0_comparison;
|
|
Array_Sort_TisRuntimeObject_mFC83E20748A5276FAA7611C2DCFCAE00737CF389(L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 50));
|
|
int32_t L_2 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_2, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_set_Capacity_m4AFFC21E90B87652650BECBF215353E7F0FAA683_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
int32_t L_1 = __this->___Count;
|
|
if ((!(((uint32_t)L_0) < ((uint32_t)L_1))))
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_2 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mB596C51BFA864B65C2CED275458FAE90F7CD29C9(L_2, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, method);
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918** L_3 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918**)(&__this->___Items);
|
|
int32_t L_4 = ___0_value;
|
|
Array_Resize_TisRuntimeObject_mE8D92C287251BAF8256D85E5829F749359EC334E(L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 51));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_EnsureCapacity_m7D766B64B687635C321ED4FBA5BABE4931812403_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_min, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t G_B4_0 = 0;
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = __this->___Items;
|
|
NullCheck(L_0);
|
|
int32_t L_1 = ___0_min;
|
|
if ((((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))) >= ((int32_t)L_1)))
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = __this->___Items;
|
|
NullCheck(L_2);
|
|
if (!(((RuntimeArray*)L_2)->max_length))
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = __this->___Items;
|
|
NullCheck(L_3);
|
|
G_B4_0 = ((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_3)->max_length)), 2));
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
G_B4_0 = 4;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
V_0 = G_B4_0;
|
|
int32_t L_4 = V_0;
|
|
int32_t L_5 = ___0_min;
|
|
if ((((int32_t)L_4) >= ((int32_t)L_5)))
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_6 = ___0_min;
|
|
V_0 = L_6;
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
int32_t L_7 = V_0;
|
|
cyt_1_set_Capacity_m4AFFC21E90B87652650BECBF215353E7F0FAA683(__this, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* cyt_1_Resize_m837B6230535AB32C5011EB5B34D1A3C66F9FA3A7_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_newSize, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
RuntimeObject* V_3 = NULL;
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = __this->___Items;
|
|
NullCheck(L_0);
|
|
V_0 = ((int32_t)(((RuntimeArray*)L_0)->max_length));
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = __this->___Items;
|
|
V_1 = L_1;
|
|
int32_t L_2 = ___0_newSize;
|
|
int32_t L_3 = V_0;
|
|
if ((((int32_t)L_2) <= ((int32_t)L_3)))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918** L_4 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918**)(&__this->___Items);
|
|
int32_t L_5 = ___0_newSize;
|
|
Array_Resize_TisRuntimeObject_mE8D92C287251BAF8256D85E5829F749359EC334E(L_4, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 51));
|
|
goto IL_0042;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
int32_t L_6 = ___0_newSize;
|
|
int32_t L_7 = V_0;
|
|
if ((((int32_t)L_6) >= ((int32_t)L_7)))
|
|
{
|
|
goto IL_0042;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_8 = ___0_newSize;
|
|
V_2 = L_8;
|
|
goto IL_003e;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_9 = V_1;
|
|
int32_t L_10 = V_2;
|
|
il2cpp_codegen_initobj((&V_3), sizeof(RuntimeObject*));
|
|
RuntimeObject* L_11 = V_3;
|
|
NullCheck(L_9);
|
|
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(L_10), (RuntimeObject*)L_11);
|
|
int32_t L_12 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_12, 1));
|
|
}
|
|
|
|
IL_003e:
|
|
{
|
|
int32_t L_13 = V_2;
|
|
int32_t L_14 = V_0;
|
|
if ((((int32_t)L_13) < ((int32_t)L_14)))
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
|
|
IL_0042:
|
|
{
|
|
int32_t L_15 = ___0_newSize;
|
|
__this->___Count = L_15;
|
|
return __this;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_jz_m474B10C0795989B8265350FF89FFEE1052CE37D0_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
Comparer_1_t0A03F9FBBEA32FB1528366652D3D38513E8B1137* L_2;
|
|
L_2 = Comparer_1_get_Default_mBE201B8DE0399BC709123B087F2215883366753F(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
Array_Sort_TisRuntimeObject_mF8C07FB088390BE91CF3D4F9C8C4AC052B3FBCBA(L_0, 0, L_1, (RuntimeObject*)L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
int32_t L_3 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_3, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_duz_mA2B65F59C9A28CCA51668B051C20639304F27FE2_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_index;
|
|
int32_t L_2 = __this->___Count;
|
|
if ((!(((uint32_t)L_1) >= ((uint32_t)L_2))))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF30F85E4B9304912E404666CAD45979D3833BFAE)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
int32_t L_4 = ___0_index;
|
|
cyt_1_ids_m6B1036E5DA03649E5121870B07DCD459DFED50BA(__this, L_4, (-1), il2cpp_rgctx_method(method->klass->rgctx_data, 12));
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = __this->___Items;
|
|
int32_t L_6 = __this->___Count;
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_5, L_6, 1, NULL);
|
|
int32_t L_7 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_bca_mC5EF4C1D29F49D28A7E028F71BD1DFBC790D7A51_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_a, int32_t ___1_b, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
if ((((int32_t)L_0) >= ((int32_t)0)))
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_1 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral14E4A1F492301946015F0A6B1C40296CE46A4251)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
int32_t L_2 = ___1_b;
|
|
if ((((int32_t)L_2) >= ((int32_t)0)))
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral30B98916AF7031E9D83FB88E885E523F6A280F64)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
int32_t L_4 = ___0_a;
|
|
int32_t L_5 = ___1_b;
|
|
int32_t L_6 = __this->___Count;
|
|
if ((!(((uint32_t)((int32_t)il2cpp_codegen_add(L_4, L_5))) > ((uint32_t)L_6))))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_7 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral253F379CE43832F182E0F1922F84B2F9D7990EAE)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, method);
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_ik_m9929F6120417D1562B47C1F4011EEB26D2C59648_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_addedCount, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
int32_t L_1 = ___0_addedCount;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_0, L_1));
|
|
int32_t L_2 = V_0;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = __this->___Items;
|
|
NullCheck(L_3);
|
|
if ((((int32_t)L_2) <= ((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_4;
|
|
L_4 = cyt_1_get_Capacity_m25BBFD31E5869C5345D8C149836A1AC006302696(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
int32_t L_5;
|
|
L_5 = Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF(((int32_t)il2cpp_codegen_multiply(L_4, 2)), 4, NULL);
|
|
int32_t L_6 = V_0;
|
|
int32_t L_7;
|
|
L_7 = Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF(L_5, L_6, NULL);
|
|
cyt_1_set_Capacity_m4AFFC21E90B87652650BECBF215353E7F0FAA683(__this, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_mzc_mD4CEBB3BA611ABD5EB20320220A50DBAF0FE9B6C_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
cyt_1_set_Capacity_m4AFFC21E90B87652650BECBF215353E7F0FAA683(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Reverse_m412255F94632ED55D49C223BEC63D6E4CDA4E594_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_index, int32_t ___1_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1 = ___1_count;
|
|
cyt_1_idl_m86740E04EE6C8C56BA0FAEA89C51CA570D0713FB(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = __this->___Items;
|
|
int32_t L_3 = ___0_index;
|
|
int32_t L_4 = ___1_count;
|
|
Array_Reverse_TisRuntimeObject_m06FF2E5011A594BEE1AF5EC3AEA51997A9812FE1(L_2, L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 34));
|
|
int32_t L_5 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_AddRange_m8ECBC5A4186852A1D143824A5060A156D3428E7E_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, RuntimeObject* ___0_collection, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___0_collection;
|
|
cyt_1_idu_mF72A8F55A50DCEE743B00B09FB7A90645B4E2DBC(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
|
|
RuntimeObject* L_1 = ___0_collection;
|
|
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 5)));
|
|
RuntimeObject* L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = V_0;
|
|
cyt_1_idm_m631EC9E3D21BDD7A5BD295DEB5197651FCC481AF(__this, L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 9));
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
RuntimeObject* L_4 = ___0_collection;
|
|
cyt_1_idn_m346C0CFFD2CC30D0E4A4797254C49F5409FA8930(__this, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 6));
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
int32_t L_5 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_lnb_m0BAADBE52A7ED787939EDCCDFDA58A276F70460C_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_index, int32_t ___1_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1 = ___1_count;
|
|
cyt_1_idl_m86740E04EE6C8C56BA0FAEA89C51CA570D0713FB(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = __this->___Items;
|
|
int32_t L_3 = ___0_index;
|
|
int32_t L_4 = ___1_count;
|
|
Array_Reverse_TisRuntimeObject_m06FF2E5011A594BEE1AF5EC3AEA51997A9812FE1(L_2, L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 34));
|
|
int32_t L_5 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_CopyTo_m23EB801CB3FE7930AE6A743D5FDEDAFA7A1C537A_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___0_array, int32_t ___1_arrayIndex, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = __this->___Items;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = ___0_array;
|
|
int32_t L_2 = ___1_arrayIndex;
|
|
int32_t L_3 = __this->___Count;
|
|
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_0, 0, (RuntimeArray*)L_1, L_2, L_3, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_bqm_m299DFAB1363C23ED1BAFA8132016D12929B34547_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_a;
|
|
int32_t L_2 = __this->___Count;
|
|
if ((!(((uint32_t)L_1) > ((uint32_t)L_2))))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9BAEE8262C16DE81112FD83C0BCDF8B9B7492766)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_ook_m87A801CDF1682AE317E5EFAF3344C35929818DB9_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_a;
|
|
int32_t L_2 = __this->___Count;
|
|
if ((!(((uint32_t)L_1) > ((uint32_t)L_2))))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral42D48467A5973EC464AB24EB0FCB81BA90632807)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool cyt_1_Contains_m0CBE0C78F11178E33E004747633AED23E27279E3_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, RuntimeObject* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = __this->___Items;
|
|
RuntimeObject* L_1 = ___0_item;
|
|
int32_t L_2 = __this->___Count;
|
|
int32_t L_3;
|
|
L_3 = Array_IndexOf_TisRuntimeObject_m4C0C698B1D627E6B3C3BE6DDA512E8E276DC6F73(L_0, L_1, 0, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 44));
|
|
return (bool)((((int32_t)((((int32_t)L_3) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_ids_m6B1036E5DA03649E5121870B07DCD459DFED50BA_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_a, int32_t ___1_b, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___1_b;
|
|
if ((((int32_t)L_0) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_a;
|
|
int32_t L_2 = ___1_b;
|
|
___0_a = ((int32_t)il2cpp_codegen_subtract(L_1, L_2));
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
int32_t L_3 = ___0_a;
|
|
int32_t L_4 = __this->___Count;
|
|
if ((((int32_t)L_3) >= ((int32_t)L_4)))
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = __this->___Items;
|
|
int32_t L_6 = ___0_a;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_7 = __this->___Items;
|
|
int32_t L_8 = ___0_a;
|
|
int32_t L_9 = ___1_b;
|
|
int32_t L_10 = __this->___Count;
|
|
int32_t L_11 = ___0_a;
|
|
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_5, L_6, (RuntimeArray*)L_7, ((int32_t)il2cpp_codegen_add(L_8, L_9)), ((int32_t)il2cpp_codegen_subtract(L_10, L_11)), NULL);
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
int32_t L_12 = __this->___Count;
|
|
int32_t L_13 = ___1_b;
|
|
__this->___Count = ((int32_t)il2cpp_codegen_add(L_12, L_13));
|
|
int32_t L_14 = ___1_b;
|
|
if ((((int32_t)L_14) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0054;
|
|
}
|
|
}
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_15 = __this->___Items;
|
|
int32_t L_16 = __this->___Count;
|
|
int32_t L_17 = ___1_b;
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_15, L_16, ((-L_17)), NULL);
|
|
}
|
|
|
|
IL_0054:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_BinarySearch_m548DDF73416B7040ADB8A0DAB1AD82EB00A13550_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, RuntimeObject* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
RuntimeObject* L_2 = ___0_item;
|
|
int32_t L_3;
|
|
L_3 = Array_BinarySearch_TisRuntimeObject_m0C39C82AF29428CA1CFFE2E303EC3AE0524AB972(L_0, 0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 53));
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* cyt_1_FindLast_m56616397093C2B785A5331177FAB79FA0C83F4FB_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* ___0_match, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
RuntimeObject* V_1 = NULL;
|
|
{
|
|
Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* L_0 = ___0_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_m3DDDB78E59C3C27140EA4944DF5910E6994A2B60(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
int32_t L_1 = __this->___Count;
|
|
Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* L_2 = ___0_match;
|
|
int32_t L_3;
|
|
L_3 = cyt_1_idr_m6E400D24DCC5D8A9C8DEAF5401A9A2C7FEFD5F55(__this, 0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 41));
|
|
V_0 = L_3;
|
|
int32_t L_4 = V_0;
|
|
if ((((int32_t)L_4) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = __this->___Items;
|
|
int32_t L_6 = V_0;
|
|
NullCheck(L_5);
|
|
int32_t L_7 = L_6;
|
|
RuntimeObject* L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
|
|
return L_8;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
il2cpp_codegen_initobj((&V_1), sizeof(RuntimeObject*));
|
|
RuntimeObject* L_9 = V_1;
|
|
return L_9;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_njz_m4AD2AEA38CF9193C310218F3376335A4E2958B15_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
Array_Reverse_TisRuntimeObject_m06FF2E5011A594BEE1AF5EC3AEA51997A9812FE1(L_0, 0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 34));
|
|
int32_t L_2 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_2, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idv_mB734D87440F4979238E674EFDF3233270B6A8459_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_a, RuntimeObject* ___1_b, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
RuntimeObject* L_0 = ___1_b;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_0);
|
|
V_0 = L_1;
|
|
int32_t L_2 = V_0;
|
|
cyt_1_GrowIfNeeded_mEC3F45D7117DE0334F2D60DC340F0B049A7CF616(__this, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 25));
|
|
int32_t L_3 = ___0_a;
|
|
int32_t L_4 = V_0;
|
|
cyt_1_ids_m6B1036E5DA03649E5121870B07DCD459DFED50BA(__this, L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 12));
|
|
RuntimeObject* L_5 = ___1_b;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = __this->___Items;
|
|
int32_t L_7 = ___0_a;
|
|
NullCheck(L_5);
|
|
InterfaceActionInvoker2< ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, int32_t >::Invoke(5, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_5, L_6, L_7);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_TrimExcess_m404BC7A390CF2587306818B4759151DAAFB50BE4_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
cyt_1_set_Capacity_m4AFFC21E90B87652650BECBF215353E7F0FAA683(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_lbk_m28ED397A90A7ADC66D5EB00A6198D34C2362550F_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_min, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t G_B4_0 = 0;
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = __this->___Items;
|
|
NullCheck(L_0);
|
|
int32_t L_1 = ___0_min;
|
|
if ((((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))) >= ((int32_t)L_1)))
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = __this->___Items;
|
|
NullCheck(L_2);
|
|
if (!(((RuntimeArray*)L_2)->max_length))
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = __this->___Items;
|
|
NullCheck(L_3);
|
|
G_B4_0 = ((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_3)->max_length)), 2));
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
G_B4_0 = 4;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
V_0 = G_B4_0;
|
|
int32_t L_4 = V_0;
|
|
int32_t L_5 = ___0_min;
|
|
if ((((int32_t)L_4) >= ((int32_t)L_5)))
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_6 = ___0_min;
|
|
V_0 = L_6;
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
int32_t L_7 = V_0;
|
|
cyt_1_set_Capacity_m4AFFC21E90B87652650BECBF215353E7F0FAA683(__this, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_BinarySearch_mC0889779162F4B75AAA2623CF788021EB68B21C8_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_index, int32_t ___1_count, RuntimeObject* ___2_item, RuntimeObject* ___3_comparer, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1 = ___1_count;
|
|
cyt_1_idl_m86740E04EE6C8C56BA0FAEA89C51CA570D0713FB(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = __this->___Items;
|
|
int32_t L_3 = ___0_index;
|
|
int32_t L_4 = ___1_count;
|
|
RuntimeObject* L_5 = ___2_item;
|
|
RuntimeObject* L_6 = ___3_comparer;
|
|
int32_t L_7;
|
|
L_7 = Array_BinarySearch_TisRuntimeObject_m5B818220FAB53B22E61917AC1A8AE36C1B1DA151(L_2, L_3, L_4, L_5, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 19));
|
|
return L_7;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_lpy_m0550C03765114840E35D9A95690EE64178571B36_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_a;
|
|
int32_t L_2 = __this->___Count;
|
|
if ((!(((uint32_t)L_1) > ((uint32_t)L_2))))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEC97BB83DEFADDF866FC5F52CAC696C8CBA94929)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Sort_m96A1AF2E752844329D47659B8CF3409BE684E9DF_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
Comparer_1_t0A03F9FBBEA32FB1528366652D3D38513E8B1137* L_2;
|
|
L_2 = Comparer_1_get_Default_mBE201B8DE0399BC709123B087F2215883366753F(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
Array_Sort_TisRuntimeObject_mF8C07FB088390BE91CF3D4F9C8C4AC052B3FBCBA(L_0, 0, L_1, (RuntimeObject*)L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
int32_t L_3 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_3, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_idr_m6E400D24DCC5D8A9C8DEAF5401A9A2C7FEFD5F55_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_a, int32_t ___1_b, Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* ___2_c, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
int32_t L_1 = ___1_b;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_0, L_1));
|
|
goto IL_0020;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* L_2 = ___2_c;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = __this->___Items;
|
|
int32_t L_4 = V_0;
|
|
int32_t L_5 = ((int32_t)il2cpp_codegen_subtract(L_4, 1));
|
|
V_0 = L_5;
|
|
NullCheck(L_3);
|
|
int32_t L_6 = L_5;
|
|
RuntimeObject* L_7 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
|
|
NullCheck(L_2);
|
|
bool L_8;
|
|
L_8 = Predicate_1_Invoke_m6AC449189DCEE89A4FA2A2B724DE296A1DFB6A9B_inline(L_2, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 32));
|
|
if (!L_8)
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_9 = V_0;
|
|
return L_9;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
int32_t L_10 = V_0;
|
|
int32_t L_11 = ___0_a;
|
|
if ((!(((uint32_t)L_10) == ((uint32_t)L_11))))
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
return (-1);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* cyt_1_GetRange_m33A725C094B79CF9D4C1172DF888878831553CFF_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_index, int32_t ___1_count, const RuntimeMethod* method)
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_0 = NULL;
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1 = ___1_count;
|
|
cyt_1_idl_m86740E04EE6C8C56BA0FAEA89C51CA570D0713FB(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
int32_t L_2 = ___1_count;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 8), (uint32_t)L_2);
|
|
V_0 = L_3;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = __this->___Items;
|
|
int32_t L_5 = ___0_index;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = V_0;
|
|
int32_t L_7 = ___1_count;
|
|
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_4, L_5, (RuntimeArray*)L_6, 0, L_7, NULL);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_8 = V_0;
|
|
int32_t L_9 = ___1_count;
|
|
cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* L_10 = (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 0));
|
|
cyt_1__ctor_mF8FF5307C386D30BCFDEF46CA5B3EC1EEA8A67F1(L_10, L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 54));
|
|
return L_10;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_IndexOf_m8B0A0B29CC140DDD6EB5E7843FF5BBD6886786D1_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, RuntimeObject* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = __this->___Items;
|
|
RuntimeObject* L_1 = ___0_item;
|
|
int32_t L_2 = __this->___Count;
|
|
int32_t L_3;
|
|
L_3 = Array_IndexOf_TisRuntimeObject_m4C0C698B1D627E6B3C3BE6DDA512E8E276DC6F73(L_0, L_1, 0, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 44));
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_llt_m92590859225F21FAC3FA58FA0F700C2E639F37BE_gshared (cyt_1_tC9DF774B2F55B15B51557D68523135D1E51A3082* __this, int32_t ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_a;
|
|
int32_t L_2 = __this->___Count;
|
|
if ((!(((uint32_t)L_1) > ((uint32_t)L_2))))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0EBE26183B9E5BF28E32247130C32FFD868B5565)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1__ctor_mE4B559B055FAAB946A46DF1717AD16B3AE43C9D2_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_0 = ((cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___ofe;
|
|
__this->___Items = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___Items), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1__ctor_m7618927E7473E0261B33FFF2A1D0A97F6D4EEB9A_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, RuntimeObject* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
RuntimeObject* L_0 = ___0_a;
|
|
cyt_1_idu_m045460097664945547A819F2E2D01D661A7D1303(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
|
|
RuntimeObject* L_1 = ___0_a;
|
|
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 5)));
|
|
RuntimeObject* L_2 = V_0;
|
|
if (L_2)
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_3 = ((cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___ofe;
|
|
__this->___Items = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___Items), (void*)L_3);
|
|
RuntimeObject* L_4 = ___0_a;
|
|
cyt_1_idn_m2769E9B672B74E52436BF7223D50B494A54CDA53(__this, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 6));
|
|
return;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
RuntimeObject* L_5 = V_0;
|
|
NullCheck(L_5);
|
|
int32_t L_6;
|
|
L_6 = InterfaceFuncInvoker0< int32_t >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_5);
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_7 = (SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C*)(SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 8), (uint32_t)L_6);
|
|
__this->___Items = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___Items), (void*)L_7);
|
|
RuntimeObject* L_8 = V_0;
|
|
cyt_1_idm_m8577A86A9861B9C4FC4D6404B4BC48BE45294F22(__this, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 9));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_GrowIfNeeded_m3028A12042A36ADC680C0375E149D27AC5C4031D_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_addedCount, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
int32_t L_1 = ___0_addedCount;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_0, L_1));
|
|
int32_t L_2 = V_0;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_3 = __this->___Items;
|
|
NullCheck(L_3);
|
|
if ((((int32_t)L_2) <= ((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_4;
|
|
L_4 = cyt_1_get_Capacity_mBAB0C7E76D9BF3B1F51614FB50BD88B4CF2060B2(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
int32_t L_5;
|
|
L_5 = Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF(((int32_t)il2cpp_codegen_multiply(L_4, 2)), 4, NULL);
|
|
int32_t L_6 = V_0;
|
|
int32_t L_7;
|
|
L_7 = Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF(L_5, L_6, NULL);
|
|
cyt_1_set_Capacity_mF395B9D346B4FB470B2C5D29964B39C0E4ED4904(__this, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_RemoveAt_mED7ACB98EA17CBDB1C6D3A5109DB12E18766FC1F_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_index;
|
|
int32_t L_2 = __this->___Count;
|
|
if ((!(((uint32_t)L_1) >= ((uint32_t)L_2))))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
int32_t L_4 = ___0_index;
|
|
cyt_1_ids_m32F0E8A04ED56B0558D5567B4800E6CB67F2009F(__this, L_4, (-1), il2cpp_rgctx_method(method->klass->rgctx_data, 12));
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_5 = __this->___Items;
|
|
int32_t L_6 = __this->___Count;
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_5, L_6, 1, NULL);
|
|
int32_t L_7 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_fpr_m1292DB86C07C538A27CD392248645EEC6C208919_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
Comparer_1_tE191E68CB394DD255CCA7A56F4D1DEFED0BD3FDB* L_2;
|
|
L_2 = Comparer_1_get_Default_m274A64D04DB3423C1B692B26E7B2218981F713D4(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
Array_Sort_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m7FDDF374B16885120D44BAE29B0FC6700486F5CF(L_0, 0, L_1, (RuntimeObject*)L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
int32_t L_3 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_3, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_BinarySearch_m65EA9FD38E8615E4AEFDDFD9418DA957D2D58444_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, float ___0_item, RuntimeObject* ___1_comparer, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
float L_2 = ___0_item;
|
|
RuntimeObject* L_3 = ___1_comparer;
|
|
int32_t L_4;
|
|
L_4 = Array_BinarySearch_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m95B7C2BAA1A1E7FF65E4539C686A8F526F77E395(L_0, 0, L_1, L_2, L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 19));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_RemoveRange_mF247D64D74C8A43974A9C78893F21DB052CE4BA4_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_index, int32_t ___1_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1 = ___1_count;
|
|
cyt_1_idl_m9443E75977721CAA99CE6060F6826D5DE4E53417(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
int32_t L_2 = ___1_count;
|
|
if ((((int32_t)L_2) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = ___0_index;
|
|
int32_t L_4 = ___1_count;
|
|
cyt_1_ids_m32F0E8A04ED56B0558D5567B4800E6CB67F2009F(__this, L_3, ((-L_4)), il2cpp_rgctx_method(method->klass->rgctx_data, 12));
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_5 = __this->___Items;
|
|
int32_t L_6 = __this->___Count;
|
|
int32_t L_7 = ___1_count;
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_5, L_6, L_7, NULL);
|
|
int32_t L_8 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_8, 1));
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_ihk_mB97BA1B2BA9C7E93AE2A24D6F518A19FE07023C9_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, bool ___0_clearArray, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_clearArray;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_1 = __this->___Items;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_2 = __this->___Items;
|
|
NullCheck(L_2);
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_1, 0, ((int32_t)(((RuntimeArray*)L_2)->max_length)), NULL);
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
__this->___Count = 0;
|
|
int32_t L_3 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_3, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_LastIndexOf_mE39ACAB834DF1B2D7B0F86EFA669B6330A4B9C12_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, float ___0_item, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___1_index;
|
|
cyt_1_idt_m3D44776058675A4A3BB595C5D79485A7C7B468A8(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 21));
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_1 = __this->___Items;
|
|
float L_2 = ___0_item;
|
|
int32_t L_3 = ___1_index;
|
|
int32_t L_4 = ___1_index;
|
|
int32_t L_5;
|
|
L_5 = Array_LastIndexOf_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m5828CE6FEB3BA43326FFAC8DB31AB2828091E739(L_1, L_2, L_3, ((int32_t)il2cpp_codegen_add(L_4, 1)), il2cpp_rgctx_method(method->klass->rgctx_data, 22));
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool cyt_1_Remove_mD8C00AD11C1F136F3B292F6DC6966B948719ECED_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, float ___0_item, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
float L_0 = ___0_item;
|
|
int32_t L_1;
|
|
L_1 = cyt_1_IndexOf_m31A176E5E262CBD867751551FAE5C3827C3932AD(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 23));
|
|
V_0 = L_1;
|
|
int32_t L_2 = V_0;
|
|
if ((((int32_t)L_2) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = V_0;
|
|
cyt_1_RemoveAt_mED7ACB98EA17CBDB1C6D3A5109DB12E18766FC1F(__this, L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 24));
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
int32_t L_4 = V_0;
|
|
return (bool)((((int32_t)((((int32_t)L_4) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_get_Capacity_mBAB0C7E76D9BF3B1F51614FB50BD88B4CF2060B2_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_0 = __this->___Items;
|
|
NullCheck(L_0);
|
|
return ((int32_t)(((RuntimeArray*)L_0)->max_length));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_AddRange_m45071245DC247545FC150F8B17F9C43068485CE5_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* ___0_list, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* L_0 = ___0_list;
|
|
cyt_1_idu_m045460097664945547A819F2E2D01D661A7D1303(__this, (RuntimeObject*)L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
|
|
cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* L_1 = ___0_list;
|
|
NullCheck(L_1);
|
|
int32_t L_2 = L_1->___Count;
|
|
V_0 = L_2;
|
|
int32_t L_3 = V_0;
|
|
if (L_3)
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
int32_t L_4 = V_0;
|
|
cyt_1_GrowIfNeeded_m3028A12042A36ADC680C0375E149D27AC5C4031D(__this, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 25));
|
|
cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* L_5 = ___0_list;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_6 = __this->___Items;
|
|
int32_t L_7 = __this->___Count;
|
|
NullCheck(L_5);
|
|
cyt_1_CopyTo_mA2FCEB9EC414F6434BE7B3498737C6789E14FBB4(L_5, L_6, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 26));
|
|
int32_t L_8 = __this->___Count;
|
|
int32_t L_9 = V_0;
|
|
__this->___Count = ((int32_t)il2cpp_codegen_add(L_8, L_9));
|
|
int32_t L_10 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_10, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_mcl_m1F327A1DCBD8CE7339492C2A8BEDE9E0E33ACFFD_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_addedCount, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
int32_t L_1 = ___0_addedCount;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_0, L_1));
|
|
int32_t L_2 = V_0;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_3 = __this->___Items;
|
|
NullCheck(L_3);
|
|
if ((((int32_t)L_2) <= ((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_4;
|
|
L_4 = cyt_1_get_Capacity_mBAB0C7E76D9BF3B1F51614FB50BD88B4CF2060B2(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
int32_t L_5;
|
|
L_5 = Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF(((int32_t)il2cpp_codegen_multiply(L_4, 2)), 4, NULL);
|
|
int32_t L_6 = V_0;
|
|
int32_t L_7;
|
|
L_7 = Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF(L_5, L_6, NULL);
|
|
cyt_1_set_Capacity_mF395B9D346B4FB470B2C5D29964B39C0E4ED4904(__this, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float cyt_1_Pop_m8585E4C02F693F4B0401F97516B2327404F4ABB0_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
float V_1 = 0.0f;
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
if (L_0)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral57462D5D876383291750F779D30A75A0AD5ED4AE)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
int32_t L_2 = __this->___Count;
|
|
V_0 = ((int32_t)il2cpp_codegen_subtract(L_2, 1));
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_3 = __this->___Items;
|
|
int32_t L_4 = V_0;
|
|
NullCheck(L_3);
|
|
int32_t L_5 = L_4;
|
|
float L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_7 = __this->___Items;
|
|
int32_t L_8 = V_0;
|
|
il2cpp_codegen_initobj((&V_1), sizeof(float));
|
|
float L_9 = V_1;
|
|
NullCheck(L_7);
|
|
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(L_8), (float)L_9);
|
|
int32_t L_10 = __this->___Count;
|
|
__this->___Count = ((int32_t)il2cpp_codegen_subtract(L_10, 1));
|
|
int32_t L_11 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_11, 1));
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_LastIndexOf_m5A8AB8CEB9A3A12341234CFC741458A78742A024_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, float ___0_item, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_0 = __this->___Items;
|
|
float L_1 = ___0_item;
|
|
int32_t L_2 = __this->___Count;
|
|
int32_t L_3 = __this->___Count;
|
|
int32_t L_4;
|
|
L_4 = Array_LastIndexOf_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m5828CE6FEB3BA43326FFAC8DB31AB2828091E739(L_0, L_1, ((int32_t)il2cpp_codegen_subtract(L_2, 1)), L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 22));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_cdv_m8E1EF8FF965C501A817C7D80B4DCCE57A60F88DB_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
cyt_1_set_Capacity_mF395B9D346B4FB470B2C5D29964B39C0E4ED4904(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float cyt_1_Find_m9678403E40CA182D07568B50D14A7102709B5032_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* ___0_match, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
float V_1 = 0.0f;
|
|
{
|
|
Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* L_0 = ___0_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_m6C7C98A919E9A4A111E2B81C250FD8523C25E097(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
int32_t L_1 = __this->___Count;
|
|
Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* L_2 = ___0_match;
|
|
int32_t L_3;
|
|
L_3 = cyt_1_idq_mF2F1578B9ED97BCA37DE0953C6682E88DA40F257(__this, 0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 29));
|
|
V_0 = L_3;
|
|
int32_t L_4 = V_0;
|
|
if ((!(((uint32_t)L_4) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_initobj((&V_1), sizeof(float));
|
|
float L_5 = V_1;
|
|
return L_5;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_6 = __this->___Items;
|
|
int32_t L_7 = V_0;
|
|
NullCheck(L_6);
|
|
int32_t L_8 = L_7;
|
|
float L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
|
|
return L_9;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Clear_m7A17D1218AF175B3138C97146E78AD6F9B96DDBF_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, bool ___0_clearArray, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_clearArray;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_1 = __this->___Items;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_2 = __this->___Items;
|
|
NullCheck(L_2);
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_1, 0, ((int32_t)(((RuntimeArray*)L_2)->max_length)), NULL);
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
__this->___Count = 0;
|
|
int32_t L_3 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_3, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idl_m9443E75977721CAA99CE6060F6826D5DE4E53417_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_a, int32_t ___1_b, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
if ((((int32_t)L_0) >= ((int32_t)0)))
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_1 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
int32_t L_2 = ___1_b;
|
|
if ((((int32_t)L_2) >= ((int32_t)0)))
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral07624473F417C06C74D59C64840A1532FCE2C626)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
int32_t L_4 = ___0_a;
|
|
int32_t L_5 = ___1_b;
|
|
int32_t L_6 = __this->___Count;
|
|
if ((!(((uint32_t)((int32_t)il2cpp_codegen_add(L_4, L_5))) > ((uint32_t)L_6))))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_7 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8323D44D38CA9D8ED487159B21F762B262510EE5)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, method);
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_FindIndex_m7C7194F7743BC80F0A99F8F14302AB994C41DA25_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* ___0_match, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* L_0 = ___0_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_m6C7C98A919E9A4A111E2B81C250FD8523C25E097(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
int32_t L_1 = __this->___Count;
|
|
Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* L_2 = ___0_match;
|
|
int32_t L_3;
|
|
L_3 = cyt_1_idq_mF2F1578B9ED97BCA37DE0953C6682E88DA40F257(__this, 0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 29));
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_cql_mD98F810CDE853DB7E1E0C53244399DA0E8C3E1E7_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
cyt_1_set_Capacity_mF395B9D346B4FB470B2C5D29964B39C0E4ED4904(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool cyt_1_Exists_m071B62A1D77EC30563FFD61D8EC636BA1B407D7E_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* ___0_match, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* L_0 = ___0_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_m6C7C98A919E9A4A111E2B81C250FD8523C25E097(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
int32_t L_1 = __this->___Count;
|
|
Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* L_2 = ___0_match;
|
|
int32_t L_3;
|
|
L_3 = cyt_1_idq_mF2F1578B9ED97BCA37DE0953C6682E88DA40F257(__this, 0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 29));
|
|
return (bool)((((int32_t)((((int32_t)L_3) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Insert_m45C6FA082F2119F89278ABC7165007782B083892_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_index, float ___1_item, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
cyt_1_idt_m3D44776058675A4A3BB595C5D79485A7C7B468A8(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 21));
|
|
int32_t L_1 = __this->___Count;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_2 = __this->___Items;
|
|
NullCheck(L_2);
|
|
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)(((RuntimeArray*)L_2)->max_length))))))
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
cyt_1_GrowIfNeeded_m3028A12042A36ADC680C0375E149D27AC5C4031D(__this, 1, il2cpp_rgctx_method(method->klass->rgctx_data, 25));
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
int32_t L_3 = ___0_index;
|
|
cyt_1_ids_m32F0E8A04ED56B0558D5567B4800E6CB67F2009F(__this, L_3, 1, il2cpp_rgctx_method(method->klass->rgctx_data, 12));
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_4 = __this->___Items;
|
|
int32_t L_5 = ___0_index;
|
|
float L_6 = ___1_item;
|
|
NullCheck(L_4);
|
|
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (float)L_6);
|
|
int32_t L_7 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_iqf_m8695B2CA49016F1F169ED7DEA9F9E4C231E2331C_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_index, int32_t ___1_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1 = ___1_count;
|
|
cyt_1_idl_m9443E75977721CAA99CE6060F6826D5DE4E53417(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
int32_t L_2 = ___1_count;
|
|
if ((((int32_t)L_2) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = ___0_index;
|
|
int32_t L_4 = ___1_count;
|
|
cyt_1_ids_m32F0E8A04ED56B0558D5567B4800E6CB67F2009F(__this, L_3, ((-L_4)), il2cpp_rgctx_method(method->klass->rgctx_data, 12));
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_5 = __this->___Items;
|
|
int32_t L_6 = __this->___Count;
|
|
int32_t L_7 = ___1_count;
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_5, L_6, L_7, NULL);
|
|
int32_t L_8 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_8, 1));
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* cyt_1_FindAll_m79825AD497BEEDFAB51762952B9EA0726F4804F0_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* ___0_match, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* L_0 = ___0_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_m6C7C98A919E9A4A111E2B81C250FD8523C25E097(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* L_1 = ___0_match;
|
|
cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* L_2;
|
|
L_2 = cyt_1_idp_m495F06828A6D8CCE019C1C325C2613EB79FF89E5(__this, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 30));
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* cyt_1_idp_m495F06828A6D8CCE019C1C325C2613EB79FF89E5_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* L_0 = (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 0));
|
|
cyt_1__ctor_mE4B559B055FAAB946A46DF1717AD16B3AE43C9D2(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 31));
|
|
V_0 = L_0;
|
|
V_1 = 0;
|
|
goto IL_0034;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* L_1 = ___0_a;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_2 = __this->___Items;
|
|
int32_t L_3 = V_1;
|
|
NullCheck(L_2);
|
|
int32_t L_4 = L_3;
|
|
float L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
|
|
NullCheck(L_1);
|
|
bool L_6;
|
|
L_6 = Predicate_1_Invoke_m4E65B2A24A1D224A284A6E2ECCA25CD11AFDE9F3_inline(L_1, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 32));
|
|
if (!L_6)
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
{
|
|
cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* L_7 = V_0;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_8 = __this->___Items;
|
|
int32_t L_9 = V_1;
|
|
NullCheck(L_8);
|
|
int32_t L_10 = L_9;
|
|
float L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
|
|
NullCheck(L_7);
|
|
cyt_1_Add_m4C9039011EEBF361C4245CE00A68347276F8FA4F(L_7, L_11, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
int32_t L_12 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_12, 1));
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
int32_t L_13 = V_1;
|
|
int32_t L_14 = __this->___Count;
|
|
if ((((int32_t)L_13) < ((int32_t)L_14)))
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* L_15 = V_0;
|
|
return L_15;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_jxj_mEE1C18BE1F66DE2C9F7712577E835B5C2AA5DB8B_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_index, int32_t ___1_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1 = ___1_count;
|
|
cyt_1_idl_m9443E75977721CAA99CE6060F6826D5DE4E53417(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_2 = __this->___Items;
|
|
int32_t L_3 = ___0_index;
|
|
int32_t L_4 = ___1_count;
|
|
Array_Reverse_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mD41090447225BE17383C1E8369E166FB72991CE8(L_2, L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 34));
|
|
int32_t L_5 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_RemoveAll_mE228E819523D9BCE2225F0F3BFEB6D3FDA17E66A_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* ___0_match, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* L_0 = ___0_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_m6C7C98A919E9A4A111E2B81C250FD8523C25E097(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
V_0 = 0;
|
|
V_1 = 0;
|
|
V_0 = 0;
|
|
goto IL_0026;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* L_1 = ___0_match;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_2 = __this->___Items;
|
|
int32_t L_3 = V_0;
|
|
NullCheck(L_2);
|
|
int32_t L_4 = L_3;
|
|
float L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
|
|
NullCheck(L_1);
|
|
bool L_6;
|
|
L_6 = Predicate_1_Invoke_m4E65B2A24A1D224A284A6E2ECCA25CD11AFDE9F3_inline(L_1, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 32));
|
|
if (L_6)
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_7 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
int32_t L_8 = V_0;
|
|
int32_t L_9 = __this->___Count;
|
|
if ((((int32_t)L_8) < ((int32_t)L_9)))
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
int32_t L_10 = V_0;
|
|
int32_t L_11 = __this->___Count;
|
|
if ((!(((uint32_t)L_10) == ((uint32_t)L_11))))
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
int32_t L_12 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_12, 1));
|
|
int32_t L_13 = V_0;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_13, 1));
|
|
goto IL_0082;
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* L_14 = ___0_match;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_15 = __this->___Items;
|
|
int32_t L_16 = V_1;
|
|
NullCheck(L_15);
|
|
int32_t L_17 = L_16;
|
|
float L_18 = (L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_17));
|
|
NullCheck(L_14);
|
|
bool L_19;
|
|
L_19 = Predicate_1_Invoke_m4E65B2A24A1D224A284A6E2ECCA25CD11AFDE9F3_inline(L_14, L_18, il2cpp_rgctx_method(method->klass->rgctx_data, 32));
|
|
if (L_19)
|
|
{
|
|
goto IL_007e;
|
|
}
|
|
}
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_20 = __this->___Items;
|
|
int32_t L_21 = V_0;
|
|
int32_t L_22 = L_21;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_22, 1));
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_23 = __this->___Items;
|
|
int32_t L_24 = V_1;
|
|
NullCheck(L_23);
|
|
int32_t L_25 = L_24;
|
|
float L_26 = (L_23)->GetAt(static_cast<il2cpp_array_size_t>(L_25));
|
|
NullCheck(L_20);
|
|
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(L_22), (float)L_26);
|
|
}
|
|
|
|
IL_007e:
|
|
{
|
|
int32_t L_27 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_27, 1));
|
|
}
|
|
|
|
IL_0082:
|
|
{
|
|
int32_t L_28 = V_1;
|
|
int32_t L_29 = __this->___Count;
|
|
if ((((int32_t)L_28) < ((int32_t)L_29)))
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_30 = V_1;
|
|
int32_t L_31 = V_0;
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_30, L_31))) <= ((int32_t)0)))
|
|
{
|
|
goto IL_00a0;
|
|
}
|
|
}
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_32 = __this->___Items;
|
|
int32_t L_33 = V_0;
|
|
int32_t L_34 = V_1;
|
|
int32_t L_35 = V_0;
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_32, L_33, ((int32_t)il2cpp_codegen_subtract(L_34, L_35)), NULL);
|
|
}
|
|
|
|
IL_00a0:
|
|
{
|
|
int32_t L_36 = V_0;
|
|
__this->___Count = L_36;
|
|
int32_t L_37 = V_1;
|
|
int32_t L_38 = V_0;
|
|
return ((int32_t)il2cpp_codegen_subtract(L_37, L_38));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_FindIndex_mFDE57856D0A0720E2C001480E666CDEEC168840C_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_startIndex, int32_t ___1_count, Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* ___2_match, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* L_0 = ___2_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_m6C7C98A919E9A4A111E2B81C250FD8523C25E097(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
int32_t L_1 = ___0_startIndex;
|
|
int32_t L_2 = ___1_count;
|
|
cyt_1_idl_m9443E75977721CAA99CE6060F6826D5DE4E53417(__this, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
int32_t L_3 = ___0_startIndex;
|
|
int32_t L_4 = ___1_count;
|
|
Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* L_5 = ___2_match;
|
|
int32_t L_6;
|
|
L_6 = cyt_1_idq_mF2F1578B9ED97BCA37DE0953C6682E88DA40F257(__this, L_3, L_4, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 29));
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_idq_mF2F1578B9ED97BCA37DE0953C6682E88DA40F257_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_a, int32_t ___1_b, Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* ___2_c, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
int32_t L_1 = ___1_b;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_0, L_1));
|
|
int32_t L_2 = ___0_a;
|
|
V_1 = L_2;
|
|
goto IL_0022;
|
|
}
|
|
|
|
IL_0008:
|
|
{
|
|
Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* L_3 = ___2_c;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_4 = __this->___Items;
|
|
int32_t L_5 = V_1;
|
|
NullCheck(L_4);
|
|
int32_t L_6 = L_5;
|
|
float L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
|
|
NullCheck(L_3);
|
|
bool L_8;
|
|
L_8 = Predicate_1_Invoke_m4E65B2A24A1D224A284A6E2ECCA25CD11AFDE9F3_inline(L_3, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 32));
|
|
if (!L_8)
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_9 = V_1;
|
|
return L_9;
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
int32_t L_10 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_10, 1));
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
int32_t L_11 = V_1;
|
|
int32_t L_12 = V_0;
|
|
if ((((int32_t)L_11) < ((int32_t)L_12)))
|
|
{
|
|
goto IL_0008;
|
|
}
|
|
}
|
|
{
|
|
return (-1);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idw_mE89E5125CEC7A637F410B6F4BF741926610A39D0_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_a, RuntimeObject* ___1_b, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
float V_1 = 0.0f;
|
|
{
|
|
RuntimeObject* L_0 = ___1_b;
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_1;
|
|
L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 3), L_0);
|
|
V_0 = L_1;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0027:
|
|
{
|
|
{
|
|
RuntimeObject* L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = V_0;
|
|
NullCheck((RuntimeObject*)L_3);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_3);
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_001d_1;
|
|
}
|
|
|
|
IL_0009_1:
|
|
{
|
|
RuntimeObject* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
float L_5;
|
|
L_5 = InterfaceFuncInvoker0< float >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 36), L_4);
|
|
V_1 = L_5;
|
|
int32_t L_6 = ___0_a;
|
|
int32_t L_7 = L_6;
|
|
___0_a = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
float L_8 = V_1;
|
|
cyt_1_Insert_m45C6FA082F2119F89278ABC7165007782B083892(__this, L_7, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 38));
|
|
}
|
|
|
|
IL_001d_1:
|
|
{
|
|
RuntimeObject* L_9 = V_0;
|
|
NullCheck((RuntimeObject*)L_9);
|
|
bool L_10;
|
|
L_10 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_9);
|
|
if (L_10)
|
|
{
|
|
goto IL_0009_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1__ctor_m25ECE61ACD95871B1375F86C4DF54C56087A19D5_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___0_a, int32_t ___1_b, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_0 = ___0_a;
|
|
__this->___Items = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___Items), (void*)L_0);
|
|
int32_t L_1 = ___1_b;
|
|
__this->___Count = L_1;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_FindIndex_m06F4A1F0B3B43C1C90C0140626212C77E4326B41_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_startIndex, Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* ___1_match, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* L_0 = ___1_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_m6C7C98A919E9A4A111E2B81C250FD8523C25E097(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
int32_t L_1 = ___0_startIndex;
|
|
cyt_1_idt_m3D44776058675A4A3BB595C5D79485A7C7B468A8(__this, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 21));
|
|
int32_t L_2 = ___0_startIndex;
|
|
int32_t L_3 = __this->___Count;
|
|
int32_t L_4 = ___0_startIndex;
|
|
Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* L_5 = ___1_match;
|
|
int32_t L_6;
|
|
L_6 = cyt_1_idq_mF2F1578B9ED97BCA37DE0953C6682E88DA40F257(__this, L_2, ((int32_t)il2cpp_codegen_subtract(L_3, L_4)), L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 29));
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_ForEach_mDF7236F58419023611682B877E82158C51EBBE0D_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, Action_1_t310F18CB4338A2740CA701F160C62E2C3198E66A* ___0_action, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
Action_1_t310F18CB4338A2740CA701F160C62E2C3198E66A* L_0 = ___0_action;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF9010398F7F524C05AB19445BDCE02E617A3E267)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
V_0 = 0;
|
|
goto IL_0028;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
Action_1_t310F18CB4338A2740CA701F160C62E2C3198E66A* L_2 = ___0_action;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_3 = __this->___Items;
|
|
int32_t L_4 = V_0;
|
|
NullCheck(L_3);
|
|
int32_t L_5 = L_4;
|
|
float L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
|
|
NullCheck(L_2);
|
|
Action_1_Invoke_mA8F89FB04FEA0F48A4F22EC84B5F9ADB2914341F_inline(L_2, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 40));
|
|
int32_t L_7 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
int32_t L_8 = V_0;
|
|
int32_t L_9 = __this->___Count;
|
|
if ((((int32_t)L_8) < ((int32_t)L_9)))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idu_m045460097664945547A819F2E2D01D661A7D1303_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, RuntimeObject* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = ___0_a;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral469F05BE9BB4C7903C353D0EB9F6384C84A48B25)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_FindLastIndex_m2B90FE75A9A2960CBEE7506C3900CF887B13EB00_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* ___0_match, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* L_0 = ___0_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_m6C7C98A919E9A4A111E2B81C250FD8523C25E097(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
int32_t L_1 = __this->___Count;
|
|
Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* L_2 = ___0_match;
|
|
int32_t L_3;
|
|
L_3 = cyt_1_idr_m1658FDF970BCC0624BFC9706AF43BCC1D83AB0E2(__this, 0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 41));
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A cyt_1_GetEnumerator_mA49A91798755AC9B68256C6FC42F823B8261A1F9_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A L_0;
|
|
memset((&L_0), 0, sizeof(L_0));
|
|
cys__ctor_m776E11C882C387E994659DD659698D509DCF6466((&L_0), __this, il2cpp_rgctx_method(method->klass->rgctx_data, 43));
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_LastIndexOf_m65A59D12D89E8E9B094395CAB6A15F42BC16FE6D_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, float ___0_item, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___1_index;
|
|
if ((((int32_t)L_0) >= ((int32_t)0)))
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___1_index;
|
|
int32_t L_2 = L_1;
|
|
RuntimeObject* L_3 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)), &L_2);
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_4 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_m60B543A63AC8692C28096003FBF2AD124B9D5B85(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2D65EE85CADB9008DEE48BCD5A9E95E54D15F3FF)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, method);
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
int32_t L_5 = ___2_count;
|
|
if ((((int32_t)L_5) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_6 = ___2_count;
|
|
int32_t L_7 = L_6;
|
|
RuntimeObject* L_8 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)), &L_7);
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_9 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_m60B543A63AC8692C28096003FBF2AD124B9D5B85(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral07624473F417C06C74D59C64840A1532FCE2C626)), L_8, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral158BA1ED10A53D1BA59A2C5D9C58736662B34750)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, method);
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
int32_t L_10 = ___1_index;
|
|
int32_t L_11 = ___2_count;
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(L_10, L_11)), 1))) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0052;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_12 = ___2_count;
|
|
int32_t L_13 = L_12;
|
|
RuntimeObject* L_14 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)), &L_13);
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_15 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_m60B543A63AC8692C28096003FBF2AD124B9D5B85(L_15, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral07624473F417C06C74D59C64840A1532FCE2C626)), L_14, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral237DA396E8FE2D1C94C98875D84C7D661FF86FB6)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, method);
|
|
}
|
|
|
|
IL_0052:
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_16 = __this->___Items;
|
|
float L_17 = ___0_item;
|
|
int32_t L_18 = ___1_index;
|
|
int32_t L_19 = ___2_count;
|
|
int32_t L_20;
|
|
L_20 = Array_LastIndexOf_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m5828CE6FEB3BA43326FFAC8DB31AB2828091E739(L_16, L_17, L_18, L_19, il2cpp_rgctx_method(method->klass->rgctx_data, 22));
|
|
return L_20;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_fno_m811A6F62E88DD62B48EB7918FED046D3860B83CE_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_min, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t G_B4_0 = 0;
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_0 = __this->___Items;
|
|
NullCheck(L_0);
|
|
int32_t L_1 = ___0_min;
|
|
if ((((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))) >= ((int32_t)L_1)))
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_2 = __this->___Items;
|
|
NullCheck(L_2);
|
|
if (!(((RuntimeArray*)L_2)->max_length))
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_3 = __this->___Items;
|
|
NullCheck(L_3);
|
|
G_B4_0 = ((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_3)->max_length)), 2));
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
G_B4_0 = 4;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
V_0 = G_B4_0;
|
|
int32_t L_4 = V_0;
|
|
int32_t L_5 = ___0_min;
|
|
if ((((int32_t)L_4) >= ((int32_t)L_5)))
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_6 = ___0_min;
|
|
V_0 = L_6;
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
int32_t L_7 = V_0;
|
|
cyt_1_set_Capacity_mF395B9D346B4FB470B2C5D29964B39C0E4ED4904(__this, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_CopyTo_mA25646D2DD6D83F5B5B22BE0697636B5E9397018_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___0_array, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_0 = __this->___Items;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_1 = ___0_array;
|
|
int32_t L_2 = __this->___Count;
|
|
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_0, 0, (RuntimeArray*)L_1, 0, L_2, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_IndexOf_m4DEBDB2CCBCC841A6E8D523F370EAB4B4E747D67_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, float ___0_item, int32_t ___1_index, int32_t ___2_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___1_index;
|
|
if ((((int32_t)L_0) >= ((int32_t)0)))
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_1 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
int32_t L_2 = ___2_count;
|
|
if ((((int32_t)L_2) >= ((int32_t)0)))
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral07624473F417C06C74D59C64840A1532FCE2C626)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
int32_t L_4 = ___1_index;
|
|
int32_t L_5 = ___2_count;
|
|
int32_t L_6 = __this->___Count;
|
|
if ((!(((uint32_t)((int32_t)il2cpp_codegen_add(L_4, L_5))) > ((uint32_t)L_6))))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_7 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8323D44D38CA9D8ED487159B21F762B262510EE5)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, method);
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_8 = __this->___Items;
|
|
float L_9 = ___0_item;
|
|
int32_t L_10 = ___1_index;
|
|
int32_t L_11 = ___2_count;
|
|
int32_t L_12;
|
|
L_12 = Array_IndexOf_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m858F1C0E1DD59AF384654973FA814AC359896F57(L_8, L_9, L_10, L_11, il2cpp_rgctx_method(method->klass->rgctx_data, 44));
|
|
return L_12;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_FindLastIndex_m821A3CADF4FD64A975F8AD7E6B3A5E62C4A5B75A_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_startIndex, int32_t ___1_count, Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* ___2_match, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* L_0 = ___2_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_m6C7C98A919E9A4A111E2B81C250FD8523C25E097(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
int32_t L_1 = ___0_startIndex;
|
|
int32_t L_2 = ___1_count;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(L_1, L_2)), 1));
|
|
int32_t L_3 = V_0;
|
|
int32_t L_4 = ___1_count;
|
|
cyt_1_idl_m9443E75977721CAA99CE6060F6826D5DE4E53417(__this, L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
int32_t L_5 = V_0;
|
|
int32_t L_6 = ___1_count;
|
|
Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* L_7 = ___2_match;
|
|
int32_t L_8;
|
|
L_8 = cyt_1_idr_m1658FDF970BCC0624BFC9706AF43BCC1D83AB0E2(__this, L_5, L_6, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 41));
|
|
return L_8;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idt_m3D44776058675A4A3BB595C5D79485A7C7B468A8_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_a;
|
|
int32_t L_2 = __this->___Count;
|
|
if ((!(((uint32_t)L_1) > ((uint32_t)L_2))))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_ido_m6C7C98A919E9A4A111E2B81C250FD8523C25E097_gshared (Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* L_0 = ___0_a;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE2EEFB4BE0C9F57BA62E733F26387F8BA68AF67C)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_InsertRange_mCF448CCA591FD99B94F982D38F9AB9B087F4E193_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_index, RuntimeObject* ___1_collection, const RuntimeMethod* method)
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___1_collection;
|
|
cyt_1_idu_m045460097664945547A819F2E2D01D661A7D1303(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
|
|
int32_t L_1 = ___0_index;
|
|
cyt_1_idt_m3D44776058675A4A3BB595C5D79485A7C7B468A8(__this, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 21));
|
|
RuntimeObject* L_2 = ___1_collection;
|
|
if ((!(((RuntimeObject*)(RuntimeObject*)L_2) == ((RuntimeObject*)(cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C*)__this))))
|
|
{
|
|
goto IL_004f;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = __this->___Count;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_4 = (SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C*)(SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 8), (uint32_t)L_3);
|
|
V_0 = L_4;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_5 = V_0;
|
|
cyt_1_CopyTo_mA2FCEB9EC414F6434BE7B3498737C6789E14FBB4(__this, L_5, 0, il2cpp_rgctx_method(method->klass->rgctx_data, 26));
|
|
int32_t L_6 = __this->___Count;
|
|
cyt_1_GrowIfNeeded_m3028A12042A36ADC680C0375E149D27AC5C4031D(__this, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 25));
|
|
int32_t L_7 = ___0_index;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_8 = V_0;
|
|
NullCheck(L_8);
|
|
cyt_1_ids_m32F0E8A04ED56B0558D5567B4800E6CB67F2009F(__this, L_7, ((int32_t)(((RuntimeArray*)L_8)->max_length)), il2cpp_rgctx_method(method->klass->rgctx_data, 12));
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_9 = V_0;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_10 = __this->___Items;
|
|
int32_t L_11 = ___0_index;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_12 = V_0;
|
|
NullCheck(L_12);
|
|
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_9, 0, (RuntimeArray*)L_10, L_11, ((int32_t)(((RuntimeArray*)L_12)->max_length)), NULL);
|
|
goto IL_006b;
|
|
}
|
|
|
|
IL_004f:
|
|
{
|
|
RuntimeObject* L_13 = ___1_collection;
|
|
V_1 = ((RuntimeObject*)IsInst((RuntimeObject*)L_13, il2cpp_rgctx_data(method->klass->rgctx_data, 5)));
|
|
RuntimeObject* L_14 = V_1;
|
|
if (!L_14)
|
|
{
|
|
goto IL_0063;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_15 = ___0_index;
|
|
RuntimeObject* L_16 = V_1;
|
|
cyt_1_idv_m55E542B18F7CD8417F7B80E632165D39BB66AAAA(__this, L_15, L_16, il2cpp_rgctx_method(method->klass->rgctx_data, 45));
|
|
goto IL_006b;
|
|
}
|
|
|
|
IL_0063:
|
|
{
|
|
int32_t L_17 = ___0_index;
|
|
RuntimeObject* L_18 = ___1_collection;
|
|
cyt_1_idw_mE89E5125CEC7A637F410B6F4BF741926610A39D0(__this, L_17, L_18, il2cpp_rgctx_method(method->klass->rgctx_data, 46));
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
int32_t L_19 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_19, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_FindLastIndex_m2C6D27E2BA25C92BEDE2308ABAFB5C5C22DE8697_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_startIndex, Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* ___1_match, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* L_0 = ___1_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_m6C7C98A919E9A4A111E2B81C250FD8523C25E097(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
int32_t L_1 = ___0_startIndex;
|
|
cyt_1_idt_m3D44776058675A4A3BB595C5D79485A7C7B468A8(__this, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 21));
|
|
int32_t L_2 = ___0_startIndex;
|
|
Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* L_3 = ___1_match;
|
|
int32_t L_4;
|
|
L_4 = cyt_1_idr_m1658FDF970BCC0624BFC9706AF43BCC1D83AB0E2(__this, 0, ((int32_t)il2cpp_codegen_add(L_2, 1)), L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 41));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idm_m8577A86A9861B9C4FC4D6404B4BC48BE45294F22_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, RuntimeObject* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
RuntimeObject* L_0 = ___0_a;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_0);
|
|
V_0 = L_1;
|
|
int32_t L_2 = V_0;
|
|
if (L_2)
|
|
{
|
|
goto IL_000b;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
int32_t L_3 = V_0;
|
|
cyt_1_GrowIfNeeded_m3028A12042A36ADC680C0375E149D27AC5C4031D(__this, L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 25));
|
|
RuntimeObject* L_4 = ___0_a;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_5 = __this->___Items;
|
|
int32_t L_6 = __this->___Count;
|
|
NullCheck(L_4);
|
|
InterfaceActionInvoker2< SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C*, int32_t >::Invoke(5, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_4, L_5, L_6);
|
|
int32_t L_7 = __this->___Count;
|
|
int32_t L_8 = V_0;
|
|
__this->___Count = ((int32_t)il2cpp_codegen_add(L_7, L_8));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_lkm_mA059703873F5B49B4E1355FE143C66F32B5A52DB_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_addedCount, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
int32_t L_1 = ___0_addedCount;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_0, L_1));
|
|
int32_t L_2 = V_0;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_3 = __this->___Items;
|
|
NullCheck(L_3);
|
|
if ((((int32_t)L_2) <= ((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_4;
|
|
L_4 = cyt_1_get_Capacity_mBAB0C7E76D9BF3B1F51614FB50BD88B4CF2060B2(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
int32_t L_5;
|
|
L_5 = Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF(((int32_t)il2cpp_codegen_multiply(L_4, 2)), 4, NULL);
|
|
int32_t L_6 = V_0;
|
|
int32_t L_7;
|
|
L_7 = Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF(L_5, L_6, NULL);
|
|
cyt_1_set_Capacity_mF395B9D346B4FB470B2C5D29964B39C0E4ED4904(__this, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_IndexOf_m82FA8FB0BA4F08794ACBB18AD342DB0BFDBF7A05_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, float ___0_item, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___1_index;
|
|
cyt_1_idt_m3D44776058675A4A3BB595C5D79485A7C7B468A8(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 21));
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_1 = __this->___Items;
|
|
float L_2 = ___0_item;
|
|
int32_t L_3 = ___1_index;
|
|
int32_t L_4 = __this->___Count;
|
|
int32_t L_5 = ___1_index;
|
|
int32_t L_6;
|
|
L_6 = Array_IndexOf_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m858F1C0E1DD59AF384654973FA814AC359896F57(L_1, L_2, L_3, ((int32_t)il2cpp_codegen_subtract(L_4, L_5)), il2cpp_rgctx_method(method->klass->rgctx_data, 44));
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* cyt_1_idz_mD4CAA9290E26B74EE298664566707E4C45F8304E_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A L_0;
|
|
L_0 = cyt_1_GetEnumerator_mA49A91798755AC9B68256C6FC42F823B8261A1F9(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 48));
|
|
cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A L_1 = L_0;
|
|
RuntimeObject* L_2 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 42), &L_1);
|
|
return (RuntimeObject*)L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Reverse_m9A9E7B9525F95075D4B8B22C36F53E2AA1404112_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
Array_Reverse_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mD41090447225BE17383C1E8369E166FB72991CE8(L_0, 0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 34));
|
|
int32_t L_2 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_2, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* cyt_1_idy_m405C4D9DF6B74DD10DDF4B2F44A76E5E300558F5_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A L_0;
|
|
L_0 = cyt_1_GetEnumerator_mA49A91798755AC9B68256C6FC42F823B8261A1F9(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 48));
|
|
cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A L_1 = L_0;
|
|
RuntimeObject* L_2 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 42), &L_1);
|
|
return (RuntimeObject*)L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1__cctor_mB3C288294566177519F60ED8A52BEE73CCB98CDE_gshared (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_0 = (SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C*)(SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C*)SZArrayNew(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 8), (uint32_t)0);
|
|
((cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___ofe = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___ofe), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool cyt_1_TrueForAll_m260B2E6AC75FFFAE8A826D61F16CEE48912AF821_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* ___0_match, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* L_0 = ___0_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_m6C7C98A919E9A4A111E2B81C250FD8523C25E097(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
V_0 = 0;
|
|
goto IL_0024;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* L_1 = ___0_match;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_2 = __this->___Items;
|
|
int32_t L_3 = V_0;
|
|
NullCheck(L_2);
|
|
int32_t L_4 = L_3;
|
|
float L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
|
|
NullCheck(L_1);
|
|
bool L_6;
|
|
L_6 = Predicate_1_Invoke_m4E65B2A24A1D224A284A6E2ECCA25CD11AFDE9F3_inline(L_1, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 32));
|
|
if (L_6)
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
int32_t L_7 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
int32_t L_8 = V_0;
|
|
int32_t L_9 = __this->___Count;
|
|
if ((((int32_t)L_8) < ((int32_t)L_9)))
|
|
{
|
|
goto IL_000a;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Add_m4C9039011EEBF361C4245CE00A68347276F8FA4F_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, float ___0_item, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_1 = __this->___Items;
|
|
NullCheck(L_1);
|
|
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)(((RuntimeArray*)L_1)->max_length))))))
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
cyt_1_GrowIfNeeded_m3028A12042A36ADC680C0375E149D27AC5C4031D(__this, 1, il2cpp_rgctx_method(method->klass->rgctx_data, 25));
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_2 = __this->___Items;
|
|
int32_t L_3 = __this->___Count;
|
|
V_0 = L_3;
|
|
int32_t L_4 = V_0;
|
|
__this->___Count = ((int32_t)il2cpp_codegen_add(L_4, 1));
|
|
int32_t L_5 = V_0;
|
|
float L_6 = ___0_item;
|
|
NullCheck(L_2);
|
|
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (float)L_6);
|
|
int32_t L_7 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_lpf_m12CBBB289AF884A978FB7C3188037A55B8A20AE0_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
Comparer_1_tE191E68CB394DD255CCA7A56F4D1DEFED0BD3FDB* L_2;
|
|
L_2 = Comparer_1_get_Default_m274A64D04DB3423C1B692B26E7B2218981F713D4(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
Array_Sort_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m7FDDF374B16885120D44BAE29B0FC6700486F5CF(L_0, 0, L_1, (RuntimeObject*)L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
int32_t L_3 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_3, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* cyt_1_ToArray_mF5C13E02F045A4E9F6D077F917F0B0FA8EA34832_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, const RuntimeMethod* method)
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* V_0 = NULL;
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_1 = (SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C*)(SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 8), (uint32_t)L_0);
|
|
V_0 = L_1;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_2 = __this->___Items;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_3 = V_0;
|
|
int32_t L_4 = __this->___Count;
|
|
Array_Copy_m4233828B4E6288B6D815F539AAA38575DE627900((RuntimeArray*)L_2, (RuntimeArray*)L_3, L_4, NULL);
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_5 = V_0;
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_xn_m5CDE7B5F970A30227021488B153A1CB5C2F2F97C_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
Array_Reverse_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mD41090447225BE17383C1E8369E166FB72991CE8(L_0, 0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 34));
|
|
int32_t L_2 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_2, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1__ctor_mAF911E04E4AEDC0B163BE3AD0629EA01F51352E1_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
int32_t L_0 = ___0_a;
|
|
if ((((int32_t)L_0) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_1 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC37D78082ACFC8DEE7B32D9351C6E433A074FEC7)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
int32_t L_2 = ___0_a;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_3 = (SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C*)(SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 8), (uint32_t)L_2);
|
|
__this->___Items = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___Items), (void*)L_3);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Sort_m8913018CD7F594794B4FC78787C523DE0C2CC575_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, RuntimeObject* ___0_comparer, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
RuntimeObject* L_2 = ___0_comparer;
|
|
Array_Sort_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m7FDDF374B16885120D44BAE29B0FC6700486F5CF(L_0, 0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
int32_t L_3 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_3, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_CopyTo_m60D252D563874F6762C37B24ECEB75999C7A4E7A_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_index, SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___1_array, int32_t ___2_arrayIndex, int32_t ___3_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1 = ___3_count;
|
|
cyt_1_idl_m9443E75977721CAA99CE6060F6826D5DE4E53417(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_2 = __this->___Items;
|
|
int32_t L_3 = ___0_index;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_4 = ___1_array;
|
|
int32_t L_5 = ___2_arrayIndex;
|
|
int32_t L_6 = ___3_count;
|
|
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_2, L_3, (RuntimeArray*)L_4, L_5, L_6, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Sort_mB94443DABC318BE555C98288487761CE7D5699B3_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_index, int32_t ___1_count, RuntimeObject* ___2_comparer, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1 = ___1_count;
|
|
cyt_1_idl_m9443E75977721CAA99CE6060F6826D5DE4E53417(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_2 = __this->___Items;
|
|
int32_t L_3 = ___0_index;
|
|
int32_t L_4 = ___1_count;
|
|
RuntimeObject* L_5 = ___2_comparer;
|
|
Array_Sort_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m7FDDF374B16885120D44BAE29B0FC6700486F5CF(L_2, L_3, L_4, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
int32_t L_6 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_6, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_mmf_mD68759164C55545A189D6D0B1AFE8B132DCB3172_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
Comparer_1_tE191E68CB394DD255CCA7A56F4D1DEFED0BD3FDB* L_2;
|
|
L_2 = Comparer_1_get_Default_m274A64D04DB3423C1B692B26E7B2218981F713D4(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
Array_Sort_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m7FDDF374B16885120D44BAE29B0FC6700486F5CF(L_0, 0, L_1, (RuntimeObject*)L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
int32_t L_3 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_3, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idn_m2769E9B672B74E52436BF7223D50B494A54CDA53_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, RuntimeObject* ___0_a, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
float V_1 = 0.0f;
|
|
{
|
|
RuntimeObject* L_0 = ___0_a;
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_1;
|
|
L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 3), L_0);
|
|
V_0 = L_1;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0021:
|
|
{
|
|
{
|
|
RuntimeObject* L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = V_0;
|
|
NullCheck((RuntimeObject*)L_3);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_3);
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_0017_1;
|
|
}
|
|
|
|
IL_0009_1:
|
|
{
|
|
RuntimeObject* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
float L_5;
|
|
L_5 = InterfaceFuncInvoker0< float >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 36), L_4);
|
|
V_1 = L_5;
|
|
float L_6 = V_1;
|
|
cyt_1_Add_m4C9039011EEBF361C4245CE00A68347276F8FA4F(__this, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
|
|
}
|
|
|
|
IL_0017_1:
|
|
{
|
|
RuntimeObject* L_7 = V_0;
|
|
NullCheck((RuntimeObject*)L_7);
|
|
bool L_8;
|
|
L_8 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_7);
|
|
if (L_8)
|
|
{
|
|
goto IL_0009_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_002b;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_dm_m36B6B102046B69845042F4E24B56D34ECC06C62B_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
Array_Reverse_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mD41090447225BE17383C1E8369E166FB72991CE8(L_0, 0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 34));
|
|
int32_t L_2 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_2, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Sort_m77443B3F5CF0F708127FD0B17B7C567C30B4F534_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, Comparison_1_t11F78E54645546468696C9CAAB9785713FDD3C1D* ___0_comparison, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_0 = __this->___Items;
|
|
Comparison_1_t11F78E54645546468696C9CAAB9785713FDD3C1D* L_1 = ___0_comparison;
|
|
Array_Sort_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m4F0C5938E183315C342F727129047120834D2572(L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 50));
|
|
int32_t L_2 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_2, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_set_Capacity_mF395B9D346B4FB470B2C5D29964B39C0E4ED4904_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
int32_t L_1 = __this->___Count;
|
|
if ((!(((uint32_t)L_0) < ((uint32_t)L_1))))
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_2 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mB596C51BFA864B65C2CED275458FAE90F7CD29C9(L_2, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, method);
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C** L_3 = (SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C**)(&__this->___Items);
|
|
int32_t L_4 = ___0_value;
|
|
Array_Resize_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m879C2A54DAFE78F46D1185B50ED527EE182BFB04(L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 51));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_EnsureCapacity_m2F078F80DC5DD9DBC7AE24394431F7B5C238F820_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_min, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t G_B4_0 = 0;
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_0 = __this->___Items;
|
|
NullCheck(L_0);
|
|
int32_t L_1 = ___0_min;
|
|
if ((((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))) >= ((int32_t)L_1)))
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_2 = __this->___Items;
|
|
NullCheck(L_2);
|
|
if (!(((RuntimeArray*)L_2)->max_length))
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_3 = __this->___Items;
|
|
NullCheck(L_3);
|
|
G_B4_0 = ((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_3)->max_length)), 2));
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
G_B4_0 = 4;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
V_0 = G_B4_0;
|
|
int32_t L_4 = V_0;
|
|
int32_t L_5 = ___0_min;
|
|
if ((((int32_t)L_4) >= ((int32_t)L_5)))
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_6 = ___0_min;
|
|
V_0 = L_6;
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
int32_t L_7 = V_0;
|
|
cyt_1_set_Capacity_mF395B9D346B4FB470B2C5D29964B39C0E4ED4904(__this, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* cyt_1_Resize_mAC66D07D38CEB35DD685C8165544B34CAAB83E41_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_newSize, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
float V_3 = 0.0f;
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_0 = __this->___Items;
|
|
NullCheck(L_0);
|
|
V_0 = ((int32_t)(((RuntimeArray*)L_0)->max_length));
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_1 = __this->___Items;
|
|
V_1 = L_1;
|
|
int32_t L_2 = ___0_newSize;
|
|
int32_t L_3 = V_0;
|
|
if ((((int32_t)L_2) <= ((int32_t)L_3)))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C** L_4 = (SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C**)(&__this->___Items);
|
|
int32_t L_5 = ___0_newSize;
|
|
Array_Resize_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m879C2A54DAFE78F46D1185B50ED527EE182BFB04(L_4, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 51));
|
|
goto IL_0042;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
int32_t L_6 = ___0_newSize;
|
|
int32_t L_7 = V_0;
|
|
if ((((int32_t)L_6) >= ((int32_t)L_7)))
|
|
{
|
|
goto IL_0042;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_8 = ___0_newSize;
|
|
V_2 = L_8;
|
|
goto IL_003e;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_9 = V_1;
|
|
int32_t L_10 = V_2;
|
|
il2cpp_codegen_initobj((&V_3), sizeof(float));
|
|
float L_11 = V_3;
|
|
NullCheck(L_9);
|
|
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(L_10), (float)L_11);
|
|
int32_t L_12 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_12, 1));
|
|
}
|
|
|
|
IL_003e:
|
|
{
|
|
int32_t L_13 = V_2;
|
|
int32_t L_14 = V_0;
|
|
if ((((int32_t)L_13) < ((int32_t)L_14)))
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
|
|
IL_0042:
|
|
{
|
|
int32_t L_15 = ___0_newSize;
|
|
__this->___Count = L_15;
|
|
return __this;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_jz_mA7B52D580F2CB84C02AB085840653D56F02489B5_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
Comparer_1_tE191E68CB394DD255CCA7A56F4D1DEFED0BD3FDB* L_2;
|
|
L_2 = Comparer_1_get_Default_m274A64D04DB3423C1B692B26E7B2218981F713D4(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
Array_Sort_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m7FDDF374B16885120D44BAE29B0FC6700486F5CF(L_0, 0, L_1, (RuntimeObject*)L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
int32_t L_3 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_3, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_duz_m295580BA8473AA9C83BF4C6F2271DF8C10862A48_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_index;
|
|
int32_t L_2 = __this->___Count;
|
|
if ((!(((uint32_t)L_1) >= ((uint32_t)L_2))))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF30F85E4B9304912E404666CAD45979D3833BFAE)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
int32_t L_4 = ___0_index;
|
|
cyt_1_ids_m32F0E8A04ED56B0558D5567B4800E6CB67F2009F(__this, L_4, (-1), il2cpp_rgctx_method(method->klass->rgctx_data, 12));
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_5 = __this->___Items;
|
|
int32_t L_6 = __this->___Count;
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_5, L_6, 1, NULL);
|
|
int32_t L_7 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_bca_m06B6F0BC135D12BE6509BAB0805C24A51E688771_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_a, int32_t ___1_b, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
if ((((int32_t)L_0) >= ((int32_t)0)))
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_1 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral14E4A1F492301946015F0A6B1C40296CE46A4251)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
int32_t L_2 = ___1_b;
|
|
if ((((int32_t)L_2) >= ((int32_t)0)))
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral30B98916AF7031E9D83FB88E885E523F6A280F64)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
int32_t L_4 = ___0_a;
|
|
int32_t L_5 = ___1_b;
|
|
int32_t L_6 = __this->___Count;
|
|
if ((!(((uint32_t)((int32_t)il2cpp_codegen_add(L_4, L_5))) > ((uint32_t)L_6))))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_7 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral253F379CE43832F182E0F1922F84B2F9D7990EAE)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, method);
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_ik_m80511525D47EDB1B933C802EB0DE4D90A5807179_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_addedCount, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
int32_t L_1 = ___0_addedCount;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_0, L_1));
|
|
int32_t L_2 = V_0;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_3 = __this->___Items;
|
|
NullCheck(L_3);
|
|
if ((((int32_t)L_2) <= ((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_4;
|
|
L_4 = cyt_1_get_Capacity_mBAB0C7E76D9BF3B1F51614FB50BD88B4CF2060B2(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
int32_t L_5;
|
|
L_5 = Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF(((int32_t)il2cpp_codegen_multiply(L_4, 2)), 4, NULL);
|
|
int32_t L_6 = V_0;
|
|
int32_t L_7;
|
|
L_7 = Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF(L_5, L_6, NULL);
|
|
cyt_1_set_Capacity_mF395B9D346B4FB470B2C5D29964B39C0E4ED4904(__this, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_mzc_m150471A58756833B3B01B4D423D3F210B3382CFA_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
cyt_1_set_Capacity_mF395B9D346B4FB470B2C5D29964B39C0E4ED4904(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Reverse_m3FFCE2C82D3F8FE989AB2CCB0970E3F02070FB61_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_index, int32_t ___1_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1 = ___1_count;
|
|
cyt_1_idl_m9443E75977721CAA99CE6060F6826D5DE4E53417(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_2 = __this->___Items;
|
|
int32_t L_3 = ___0_index;
|
|
int32_t L_4 = ___1_count;
|
|
Array_Reverse_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mD41090447225BE17383C1E8369E166FB72991CE8(L_2, L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 34));
|
|
int32_t L_5 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_AddRange_m7024C1C00BF8341A1D68B42033E5AD1F7EDBFD1E_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, RuntimeObject* ___0_collection, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___0_collection;
|
|
cyt_1_idu_m045460097664945547A819F2E2D01D661A7D1303(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
|
|
RuntimeObject* L_1 = ___0_collection;
|
|
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 5)));
|
|
RuntimeObject* L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = V_0;
|
|
cyt_1_idm_m8577A86A9861B9C4FC4D6404B4BC48BE45294F22(__this, L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 9));
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
RuntimeObject* L_4 = ___0_collection;
|
|
cyt_1_idn_m2769E9B672B74E52436BF7223D50B494A54CDA53(__this, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 6));
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
int32_t L_5 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_lnb_m717916F417DA3663C3718329D7A820E908DC5616_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_index, int32_t ___1_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1 = ___1_count;
|
|
cyt_1_idl_m9443E75977721CAA99CE6060F6826D5DE4E53417(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_2 = __this->___Items;
|
|
int32_t L_3 = ___0_index;
|
|
int32_t L_4 = ___1_count;
|
|
Array_Reverse_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mD41090447225BE17383C1E8369E166FB72991CE8(L_2, L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 34));
|
|
int32_t L_5 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_CopyTo_mA2FCEB9EC414F6434BE7B3498737C6789E14FBB4_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___0_array, int32_t ___1_arrayIndex, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_0 = __this->___Items;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_1 = ___0_array;
|
|
int32_t L_2 = ___1_arrayIndex;
|
|
int32_t L_3 = __this->___Count;
|
|
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_0, 0, (RuntimeArray*)L_1, L_2, L_3, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_bqm_m1431600EE05B852EE5453C71C716E14B6DB81FA2_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_a;
|
|
int32_t L_2 = __this->___Count;
|
|
if ((!(((uint32_t)L_1) > ((uint32_t)L_2))))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9BAEE8262C16DE81112FD83C0BCDF8B9B7492766)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_ook_m534180FFDF36171A592E65C8876859C933496294_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_a;
|
|
int32_t L_2 = __this->___Count;
|
|
if ((!(((uint32_t)L_1) > ((uint32_t)L_2))))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral42D48467A5973EC464AB24EB0FCB81BA90632807)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool cyt_1_Contains_mE253F238771A6519AD50AF555AD911F3BF707360_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, float ___0_item, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_0 = __this->___Items;
|
|
float L_1 = ___0_item;
|
|
int32_t L_2 = __this->___Count;
|
|
int32_t L_3;
|
|
L_3 = Array_IndexOf_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m858F1C0E1DD59AF384654973FA814AC359896F57(L_0, L_1, 0, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 44));
|
|
return (bool)((((int32_t)((((int32_t)L_3) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_ids_m32F0E8A04ED56B0558D5567B4800E6CB67F2009F_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_a, int32_t ___1_b, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___1_b;
|
|
if ((((int32_t)L_0) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_a;
|
|
int32_t L_2 = ___1_b;
|
|
___0_a = ((int32_t)il2cpp_codegen_subtract(L_1, L_2));
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
int32_t L_3 = ___0_a;
|
|
int32_t L_4 = __this->___Count;
|
|
if ((((int32_t)L_3) >= ((int32_t)L_4)))
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_5 = __this->___Items;
|
|
int32_t L_6 = ___0_a;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_7 = __this->___Items;
|
|
int32_t L_8 = ___0_a;
|
|
int32_t L_9 = ___1_b;
|
|
int32_t L_10 = __this->___Count;
|
|
int32_t L_11 = ___0_a;
|
|
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_5, L_6, (RuntimeArray*)L_7, ((int32_t)il2cpp_codegen_add(L_8, L_9)), ((int32_t)il2cpp_codegen_subtract(L_10, L_11)), NULL);
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
int32_t L_12 = __this->___Count;
|
|
int32_t L_13 = ___1_b;
|
|
__this->___Count = ((int32_t)il2cpp_codegen_add(L_12, L_13));
|
|
int32_t L_14 = ___1_b;
|
|
if ((((int32_t)L_14) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0054;
|
|
}
|
|
}
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_15 = __this->___Items;
|
|
int32_t L_16 = __this->___Count;
|
|
int32_t L_17 = ___1_b;
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_15, L_16, ((-L_17)), NULL);
|
|
}
|
|
|
|
IL_0054:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_BinarySearch_m1C22870FD3152B73AAD80558D202BC14CB31B56E_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, float ___0_item, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
float L_2 = ___0_item;
|
|
int32_t L_3;
|
|
L_3 = Array_BinarySearch_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m9C818DD66A1602A12D30F5B73B7FB1929B02A37B(L_0, 0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 53));
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float cyt_1_FindLast_m4AA26AD16ECC5D4617C1BF68ADBA9D9D3AEA9BA9_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* ___0_match, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
float V_1 = 0.0f;
|
|
{
|
|
Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* L_0 = ___0_match;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
cyt_1_ido_m6C7C98A919E9A4A111E2B81C250FD8523C25E097(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
int32_t L_1 = __this->___Count;
|
|
Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* L_2 = ___0_match;
|
|
int32_t L_3;
|
|
L_3 = cyt_1_idr_m1658FDF970BCC0624BFC9706AF43BCC1D83AB0E2(__this, 0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 41));
|
|
V_0 = L_3;
|
|
int32_t L_4 = V_0;
|
|
if ((((int32_t)L_4) == ((int32_t)(-1))))
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_5 = __this->___Items;
|
|
int32_t L_6 = V_0;
|
|
NullCheck(L_5);
|
|
int32_t L_7 = L_6;
|
|
float L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
|
|
return L_8;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
il2cpp_codegen_initobj((&V_1), sizeof(float));
|
|
float L_9 = V_1;
|
|
return L_9;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_njz_m00DD9181A6866D67FEBEE6D01DC06AB9DD146DA7_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
Array_Reverse_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mD41090447225BE17383C1E8369E166FB72991CE8(L_0, 0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 34));
|
|
int32_t L_2 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_2, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_idv_m55E542B18F7CD8417F7B80E632165D39BB66AAAA_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_a, RuntimeObject* ___1_b, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
RuntimeObject* L_0 = ___1_b;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_0);
|
|
V_0 = L_1;
|
|
int32_t L_2 = V_0;
|
|
cyt_1_GrowIfNeeded_m3028A12042A36ADC680C0375E149D27AC5C4031D(__this, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 25));
|
|
int32_t L_3 = ___0_a;
|
|
int32_t L_4 = V_0;
|
|
cyt_1_ids_m32F0E8A04ED56B0558D5567B4800E6CB67F2009F(__this, L_3, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 12));
|
|
RuntimeObject* L_5 = ___1_b;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_6 = __this->___Items;
|
|
int32_t L_7 = ___0_a;
|
|
NullCheck(L_5);
|
|
InterfaceActionInvoker2< SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C*, int32_t >::Invoke(5, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_5, L_6, L_7);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_TrimExcess_mD813C84C1F95D50AD16389D5F10AA39213B689B3_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___Count;
|
|
cyt_1_set_Capacity_mF395B9D346B4FB470B2C5D29964B39C0E4ED4904(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_lbk_mDCF7BCE08E1DEFAA5F0B227D73E81B77517EC0FE_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_min, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t G_B4_0 = 0;
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_0 = __this->___Items;
|
|
NullCheck(L_0);
|
|
int32_t L_1 = ___0_min;
|
|
if ((((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))) >= ((int32_t)L_1)))
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_2 = __this->___Items;
|
|
NullCheck(L_2);
|
|
if (!(((RuntimeArray*)L_2)->max_length))
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_3 = __this->___Items;
|
|
NullCheck(L_3);
|
|
G_B4_0 = ((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_3)->max_length)), 2));
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
G_B4_0 = 4;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
V_0 = G_B4_0;
|
|
int32_t L_4 = V_0;
|
|
int32_t L_5 = ___0_min;
|
|
if ((((int32_t)L_4) >= ((int32_t)L_5)))
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_6 = ___0_min;
|
|
V_0 = L_6;
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
int32_t L_7 = V_0;
|
|
cyt_1_set_Capacity_mF395B9D346B4FB470B2C5D29964B39C0E4ED4904(__this, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_BinarySearch_m3EBB31F0EDAB6F7AA0DA80545342B94C5731D026_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_index, int32_t ___1_count, float ___2_item, RuntimeObject* ___3_comparer, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1 = ___1_count;
|
|
cyt_1_idl_m9443E75977721CAA99CE6060F6826D5DE4E53417(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_2 = __this->___Items;
|
|
int32_t L_3 = ___0_index;
|
|
int32_t L_4 = ___1_count;
|
|
float L_5 = ___2_item;
|
|
RuntimeObject* L_6 = ___3_comparer;
|
|
int32_t L_7;
|
|
L_7 = Array_BinarySearch_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m95B7C2BAA1A1E7FF65E4539C686A8F526F77E395(L_2, L_3, L_4, L_5, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 19));
|
|
return L_7;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_lpy_m91DA6163008130ACE1BC55167FB69B89D4177383_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_a;
|
|
int32_t L_2 = __this->___Count;
|
|
if ((!(((uint32_t)L_1) > ((uint32_t)L_2))))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEC97BB83DEFADDF866FC5F52CAC696C8CBA94929)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_Sort_mADAC313429FE60ACAA6D199F347ACA82DAB21317_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_0 = __this->___Items;
|
|
int32_t L_1 = __this->___Count;
|
|
Comparer_1_tE191E68CB394DD255CCA7A56F4D1DEFED0BD3FDB* L_2;
|
|
L_2 = Comparer_1_get_Default_m274A64D04DB3423C1B692B26E7B2218981F713D4(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
Array_Sort_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m7FDDF374B16885120D44BAE29B0FC6700486F5CF(L_0, 0, L_1, (RuntimeObject*)L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
int32_t L_3 = __this->___version;
|
|
__this->___version = ((int32_t)il2cpp_codegen_add(L_3, 1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_idr_m1658FDF970BCC0624BFC9706AF43BCC1D83AB0E2_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_a, int32_t ___1_b, Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* ___2_c, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
int32_t L_1 = ___1_b;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_0, L_1));
|
|
goto IL_0020;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* L_2 = ___2_c;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_3 = __this->___Items;
|
|
int32_t L_4 = V_0;
|
|
int32_t L_5 = ((int32_t)il2cpp_codegen_subtract(L_4, 1));
|
|
V_0 = L_5;
|
|
NullCheck(L_3);
|
|
int32_t L_6 = L_5;
|
|
float L_7 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
|
|
NullCheck(L_2);
|
|
bool L_8;
|
|
L_8 = Predicate_1_Invoke_m4E65B2A24A1D224A284A6E2ECCA25CD11AFDE9F3_inline(L_2, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 32));
|
|
if (!L_8)
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_9 = V_0;
|
|
return L_9;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
int32_t L_10 = V_0;
|
|
int32_t L_11 = ___0_a;
|
|
if ((!(((uint32_t)L_10) == ((uint32_t)L_11))))
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
return (-1);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* cyt_1_GetRange_mA041BAAA5D8B0C69277A126131ECCB88F19CD422_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_index, int32_t ___1_count, const RuntimeMethod* method)
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* V_0 = NULL;
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
int32_t L_1 = ___1_count;
|
|
cyt_1_idl_m9443E75977721CAA99CE6060F6826D5DE4E53417(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
int32_t L_2 = ___1_count;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_3 = (SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C*)(SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 8), (uint32_t)L_2);
|
|
V_0 = L_3;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_4 = __this->___Items;
|
|
int32_t L_5 = ___0_index;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_6 = V_0;
|
|
int32_t L_7 = ___1_count;
|
|
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_4, L_5, (RuntimeArray*)L_6, 0, L_7, NULL);
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_8 = V_0;
|
|
int32_t L_9 = ___1_count;
|
|
cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* L_10 = (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 0));
|
|
cyt_1__ctor_m25ECE61ACD95871B1375F86C4DF54C56087A19D5(L_10, L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 54));
|
|
return L_10;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t cyt_1_IndexOf_m31A176E5E262CBD867751551FAE5C3827C3932AD_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, float ___0_item, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_0 = __this->___Items;
|
|
float L_1 = ___0_item;
|
|
int32_t L_2 = __this->___Count;
|
|
int32_t L_3;
|
|
L_3 = Array_IndexOf_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m858F1C0E1DD59AF384654973FA814AC359896F57(L_0, L_1, 0, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 44));
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void cyt_1_llt_m8BEE0116E8D992E7B4CB4AEAE2F64DFAA8DA4C2E_gshared (cyt_1_tE9A88B07E73065F90C455BD5DF1F9E576AA7517C* __this, int32_t ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
if ((((int32_t)L_0) < ((int32_t)0)))
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___0_a;
|
|
int32_t L_2 = __this->___Count;
|
|
if ((!(((uint32_t)L_1) > ((uint32_t)L_2))))
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0EBE26183B9E5BF28E32247130C32FFD868B5565)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Rect__ctor_m18C3033D135097BEE424AAA68D91C706D2647F23_inline (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* __this, float ___0_x, float ___1_y, float ___2_width, float ___3_height, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = ___0_x;
|
|
__this->___m_XMin = L_0;
|
|
float L_1 = ___1_y;
|
|
__this->___m_YMin = L_1;
|
|
float L_2 = ___2_width;
|
|
__this->___m_Width = L_2;
|
|
float L_3 = ___3_height;
|
|
__this->___m_Height = L_3;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* __this, float ___0_x, float ___1_y, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = ___0_x;
|
|
__this->___x = L_0;
|
|
float L_1 = ___1_y;
|
|
__this->___y = L_1;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_get_one_mC9B289F1E15C42C597180C9FE6FB492495B51D02_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ((Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_StaticFields*)il2cpp_codegen_static_fields_for(Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_il2cpp_TypeInfo_var))->___oneVector;
|
|
V_0 = L_0;
|
|
goto IL_0009;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_get_zero_m0C1249C3F25B1C70EAD3CC8B31259975A457AE39_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ((Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_StaticFields*)il2cpp_codegen_static_fields_for(Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_il2cpp_TypeInfo_var))->___zeroVector;
|
|
V_0 = L_0;
|
|
goto IL_0009;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnityAction_1_Invoke_m777839BF9CB9F96B081106B47202D06FB35326CA_gshared_inline (UnityAction_1_t9C30BCD020745BF400CBACF22C6F34ADBA2DDA6A* __this, RuntimeObject* ___0_arg0, const RuntimeMethod* method)
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, const RuntimeMethod*);
|
|
((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_arg0, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
int32_t L_0 = __this->____version;
|
|
__this->____version = ((int32_t)il2cpp_codegen_add(L_0, 1));
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = __this->____items;
|
|
V_0 = L_1;
|
|
int32_t L_2 = __this->____size;
|
|
V_1 = L_2;
|
|
int32_t L_3 = V_1;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_5 = V_1;
|
|
__this->____size = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = V_0;
|
|
int32_t L_7 = V_1;
|
|
RuntimeObject* L_8 = ___0_item;
|
|
NullCheck(L_6);
|
|
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (RuntimeObject*)L_8);
|
|
return;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
RuntimeObject* L_9 = ___0_item;
|
|
List_1_AddWithResize_m79A9BF770BEF9C06BE40D5401E55E375F2726CC4(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 14));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->____size;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_gshared_inline (Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, const RuntimeMethod*);
|
|
((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_obj, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->____current;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Clear_m16C1F2C61FED5955F10EB36BC1CB2DF34B128994_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->____version;
|
|
__this->____version = ((int32_t)il2cpp_codegen_add(L_0, 1));
|
|
}
|
|
{
|
|
int32_t L_1 = __this->____size;
|
|
V_0 = L_1;
|
|
__this->____size = 0;
|
|
int32_t L_2 = V_0;
|
|
if ((((int32_t)L_2) <= ((int32_t)0)))
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = __this->____items;
|
|
int32_t L_4 = V_0;
|
|
Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB((RuntimeArray*)L_3, 0, L_4, NULL);
|
|
return;
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_2_Invoke_m05605BFAA1396765DE23112419D8E6F797B65101_gshared_inline (Action_2_t829FF86EEA250A853DF3A95B2C4DAC034707E20F* __this, int32_t ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, int32_t, RuntimeObject*, const RuntimeMethod*);
|
|
((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_arg1, ___1_arg2, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Clear_m4F220B4D805F163DF05F6FB4538DBC9D1610D16E_gshared_inline (List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = __this->____version;
|
|
__this->____version = ((int32_t)il2cpp_codegen_add(L_0, 1));
|
|
goto IL_0035;
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
__this->____size = 0;
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tF70DDE0C5A349727371FB070D433FA147032A13B Enumerator_get_Current_m12EE850D56E586DF121B059557CEAF4A7472995B_gshared_inline (Enumerator_t72F234BE749BE6BA202FC41626B5E819E4F208B4* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
KeyValuePair_2_tF70DDE0C5A349727371FB070D433FA147032A13B L_0 = __this->____current;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_m9698075D0C5F788A3B6AEBF1ABDFACCAB5854E90_gshared_inline (KeyValuePair_2_tF70DDE0C5A349727371FB070D433FA147032A13B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___key;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m809450298141D527D3A4FFAF77AE69D9B08CC17F_gshared_inline (List_1_tDA4D291C60B1EFA9EA50BBA3367C657CC9410576* __this, int32_t ___0_item, const RuntimeMethod* method)
|
|
{
|
|
Int32EnumU5BU5D_t87B7DB802810C38016332669039EF42C487A081F* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
int32_t L_0 = __this->____version;
|
|
__this->____version = ((int32_t)il2cpp_codegen_add(L_0, 1));
|
|
Int32EnumU5BU5D_t87B7DB802810C38016332669039EF42C487A081F* L_1 = __this->____items;
|
|
V_0 = L_1;
|
|
int32_t L_2 = __this->____size;
|
|
V_1 = L_2;
|
|
int32_t L_3 = V_1;
|
|
Int32EnumU5BU5D_t87B7DB802810C38016332669039EF42C487A081F* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_5 = V_1;
|
|
__this->____size = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
Int32EnumU5BU5D_t87B7DB802810C38016332669039EF42C487A081F* L_6 = V_0;
|
|
int32_t L_7 = V_1;
|
|
int32_t L_8 = ___0_item;
|
|
NullCheck(L_6);
|
|
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (int32_t)L_8);
|
|
return;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
int32_t L_9 = ___0_item;
|
|
List_1_AddWithResize_mAD159B09F28BD7914562E219CA52E2D4BDCF5530(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 14));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_mB6A201CD563FEF33A6BDA75B83C7BF2AA36CD98C_gshared_inline (Enumerator_t6209EE23CCD16838DA331AC87789A15508C6C72B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->____current;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void cap_1_gap_mE93FAC6F00779477B33B54CB5B22577C9F9A9E4F_gshared_inline (cap_1_t0DE2FBA65F8B89DBDCC8A8999240F8AF760D6908* __this, bool ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_a;
|
|
__this->___U3ClymU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void cap_1_gan_mE645AD5667C93818AD2D6842F4AA7F4D856F37BD_gshared_inline (cap_1_t0DE2FBA65F8B89DBDCC8A8999240F8AF760D6908* __this, bool ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_a;
|
|
__this->___U3ClykU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void cap_1_gao_mE65B7F3F00CEC909E65698271A3D2B2BF10B8C2F_gshared_inline (cap_1_t0DE2FBA65F8B89DBDCC8A8999240F8AF760D6908* __this, bool ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_a;
|
|
__this->___U3ClylU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Stack_1_get_Count_mD08AE71D49787D30DDD9D484BCD323D646744D2E_gshared_inline (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->____size;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ctv_1_get_CountAll_mEAF454516E2114D79C5798307857F106A3E5D89A_gshared_inline (ctv_1_t7F236C02AD9CB75CF11908268451E806428FE795* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3CnqjU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ctv_1_hwe_m59DE15D4036199E9634DEF8ACFEB36F11EFBAF46_gshared_inline (ctv_1_t7F236C02AD9CB75CF11908268451E806428FE795* __this, int32_t ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
__this->___U3CnqjU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t cxo_1_get_Peak_m3ADD6E62EAFD22208CBDE14134A9DACFD8890382_gshared_inline (cxo_1_tEF016A0E938797C525FDD409DDC7F211C2056789* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3CoadU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void cxo_1_icx_m74E83E3327BA169D702B8BF8F79C592E52B5ECF1_gshared_inline (cxo_1_tEF016A0E938797C525FDD409DDC7F211C2056789* __this, int32_t ___0_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
__this->___U3CoadU3Ek__BackingField = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool cys_get_Current_mFBD2535FC10EC841EB620E7553DA3402E9908821_gshared_inline (cys_t681DC5C039BA321919FE1F3D212F5EB8C267B3D5* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->___current;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B cys_get_Current_m06A3A3B5111455C6DD83171C34C359D7EBF0CEAF_gshared_inline (cys_tCD3F4AFDECC5CE8BD93AC94CBB4BACE88F8CC65E* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B L_0 = __this->___current;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t cys_get_Current_m04F1E8E43C0FE931BD84ED9D05E29CD561CB7E35_gshared_inline (cys_tB1A7C6F69178D6E21B1F658B68D68478C3F05065* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___current;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* cys_get_Current_mBF618832B19ECD7644087857AE13039362481B5C_gshared_inline (cys_t5C175AC37316489B63E81D97ADDDE3AAE3203857* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->___current;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float cys_get_Current_mDCFC317836094DBF4A2F23AF67AEC4505685C6BC_gshared_inline (cys_t0DC6BBDE30203344ACC43FB9CBCF8DCABC712D6A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = __this->___current;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 cys_get_Current_mDF53D0EC8DE9A04D8A6EBB01B063F4CF698AB87A_gshared_inline (cys_t5A6A43539E8B11FA5C02C8666BFC4DD1E100B09B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___current;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 cys_get_Current_mB80B9F698D53881E8BDE21444ADDBE6794BBD328_gshared_inline (cys_t77E50E15C644A5869C604882F1C802434F0A13BF* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = __this->___current;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void cys_get_Current_m3EBD976DFDC709C10833CE3C65A5CBF1183E81FF_gshared_inline (cys_tCC8D2EC1592E16A33111C5EBFB2D9E7BA354B2C6* __this, Il2CppFullySharedGenericAny* il2cppRetVal, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_a_t1F3B09BFC6039ED89FDC0B784290590512CABF82 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
const Il2CppFullySharedGenericAny L_0 = alloca(SizeOf_a_t1F3B09BFC6039ED89FDC0B784290590512CABF82);
|
|
{
|
|
il2cpp_codegen_memcpy(L_0, il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2),3)), SizeOf_a_t1F3B09BFC6039ED89FDC0B784290590512CABF82);
|
|
il2cpp_codegen_memcpy(il2cppRetVal, L_0, SizeOf_a_t1F3B09BFC6039ED89FDC0B784290590512CABF82);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR dbw_tEF892A66F1417E423BAA34A1EE22306A5B496ABE cys_get_Current_mD9E7BB9E8CDEACBA8743666545079A6A0EF018C9_gshared_inline (cys_t365734F47A79063EC450869FBF066C01AC209CAB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
dbw_tEF892A66F1417E423BAA34A1EE22306A5B496ABE L_0 = __this->___current;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m5EB17D73F75C175B835656A7C7C137A266E07928_gshared_inline (Predicate_1_tC0ECFF551C9E980E6022D575E9097589E010E584* __this, bool ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
typedef bool (*FunctionPointerType) (RuntimeObject*, bool, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_obj, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_m69C8773D6967F3B224777183E24EA621CE056F8F_gshared_inline (Action_1_t10DCB0C07D0D3C565CEACADC80D1152B35A45F6C* __this, bool ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, bool, const RuntimeMethod*);
|
|
((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_obj, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mDADE161CEBD2C998D731FDAEB5F81BFCD7F4B984_gshared_inline (Predicate_1_tC9C6851E26B700167C533F8020C5E001634C932B* __this, Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
typedef bool (*FunctionPointerType) (RuntimeObject*, Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_obj, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_m85DAE826CA357D0983BCC4F60DC807727254AC42_gshared_inline (Action_1_tA0F10A9285403FFE399C24B340DC3300881DE735* __this, Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, Color32_t73C5004937BF5BB8AD55323D51AAA40A898EF48B, const RuntimeMethod*);
|
|
((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_obj, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_mD16C664FFE93598D1C12AC86190D12B0F90B5419_gshared_inline (Predicate_1_t6CDE3111264F492F4F13277756366A07CA78A4C3* __this, int32_t ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
typedef bool (*FunctionPointerType) (RuntimeObject*, int32_t, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_obj, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_mAC3C34BA1905AB5B79E483CD9BB082B7D667F703_gshared_inline (Action_1_tD69A6DC9FBE94131E52F5A73B2A9D4AB51EEC404* __this, int32_t ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, int32_t, const RuntimeMethod*);
|
|
((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_obj, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m6AC449189DCEE89A4FA2A2B724DE296A1DFB6A9B_gshared_inline (Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
typedef bool (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_obj, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m4E65B2A24A1D224A284A6E2ECCA25CD11AFDE9F3_gshared_inline (Predicate_1_tECA06EB82DA6AEBC4F101B945A192111822901DD* __this, float ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
typedef bool (*FunctionPointerType) (RuntimeObject*, float, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_obj, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_mA8F89FB04FEA0F48A4F22EC84B5F9ADB2914341F_gshared_inline (Action_1_t310F18CB4338A2740CA701F160C62E2C3198E66A* __this, float ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, float, const RuntimeMethod*);
|
|
((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_obj, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|