#include "pch-cpp.hpp" #ifndef _MSC_VER # include #else # include #endif #include #include 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 struct VirtualActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template struct VirtualActionInvoker2 { typedef void (*Action)(void*, T1, T2, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template 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); } }; template struct VirtualFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template struct VirtualFuncInvoker3 { typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method); } }; struct GenericVirtualActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, invokeData.method); } }; template struct GenericVirtualActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; struct InterfaceActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, invokeData.method); } }; template struct InterfaceActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template 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 struct InterfaceFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template struct InterfaceFuncInvoker2 { typedef R (*Func)(void*, T1, T2, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; struct GenericInterfaceActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, invokeData.method); } }; template struct GenericInterfaceActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; struct InvokerActionInvoker0 { static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj) { method->invoker_method(methodPtr, method, obj, NULL, NULL); } }; template struct InvokerActionInvoker1; template struct InvokerActionInvoker1 { static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1) { void* params[1] = { p1 }; method->invoker_method(methodPtr, method, obj, params, NULL); } }; template struct InvokerActionInvoker2; template struct InvokerActionInvoker2 { 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, NULL); } }; template struct InvokerActionInvoker3; template struct InvokerActionInvoker3 { 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, NULL); } }; // System.Buffers.ArrayPool`1 struct ArrayPool_1_t645A9854926DCA747C654687A362AD03D55D2C07; // System.Comparison`1 struct Comparison_1_t62E531E7B8260E2C6C2718C3BDB8CF8655139645; // System.Comparison`1 struct Comparison_1_tE0312CC191F82BABE215D23E750095EE2E124301; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t9FA6D82CAFC18769F7515BB51D1C56DAE09381C3; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t87EDE08B2E48F793A22DE50D6B3CC2E7EBB2DB54; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tE1603CE612C16451D1E56FF4D4859D4FE4087C28; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588; // System.Func`2 struct Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F; // System.Collections.Generic.IEnumerable`1 struct IEnumerable_1_t0AFD6CF8DF742647C96B2C7BB9E9FAE42538D551; // System.Collections.Generic.IEnumerable`1 struct IEnumerable_1_t54BAC54AB2ADE190B60BF5A2A72312AD1BFBA7D5; // System.Collections.Generic.IEnumerable`1 struct IEnumerable_1_tF95C9E01A913DD50575531C8305932628663D9E9; // System.Collections.Generic.IEnumerable`1 struct IEnumerable_1_t5A8625C3E06B5978852C1025CF01299B35766803; // System.Collections.Generic.IList`1 struct IList_1_t584E66CD0123CFB6503AC3E597748948194AAA5E; // System.Collections.Generic.IList`1 struct IList_1_tCFDE4BD8548909F112CB197B5B2C3F1211D52014; // System.Collections.Generic.IList`1 struct IList_1_t6EE90D273EFCF5E7E4C37FAB712E70BB6F1B4BFF; // System.Collections.Generic.List`1 struct List_1_t9B4BB3EA8BB62F9777B029C3AAC4560C3EB0124A; // System.Collections.Generic.List`1 struct List_1_tA61E6ACDC88C89A9523D28C560996ABFF548352B; // System.Collections.Generic.List`1 struct List_1_t51CBE3470AD8637D621A307190A51C60E66F370B; // System.Collections.Generic.List`1 struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D; // System.Collections.Generic.List`1 struct List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD; // System.Collections.Generic.List`1 struct List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C; // System.Predicate`1 struct Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12; // System.Predicate`1 struct Predicate_1_tEB15485FDAFC48C82EE54427A8DBDB401213706C; // System.Collections.ObjectModel.ReadOnlyCollection`1 struct ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886; // System.Collections.ObjectModel.ReadOnlyCollection`1 struct ReadOnlyCollection_1_t5397DF0DB61D1090E7BBC89395CECB8D020CED92; // System.Buffers.SpanAction`2> struct SpanAction_2_t5AD9492C5DCDA0ABCE4EE25DCCF3EBD82BF591B7; // System.Buffers.SpanAction`2> struct SpanAction_2_t65B015FEFE1F64814AC2EFA0E19A38B1CFC53178; // System.AggregateException[] struct AggregateExceptionU5BU5D_tB7E3CD60DDA03EF1BCA7CB946EADDD18E6CD32B5; // System.Boolean[] struct BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4; // System.Byte[] struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031; // System.Char[] struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB; // System.DateTime[] struct DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1; // System.Delegate[] struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771; // System.Globalization.EraInfo[] struct EraInfoU5BU5D_t3FC74518173AF52EC901FC118D4BD9A11DE89BAC; // System.Exception[] struct ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C; // System.Runtime.ExceptionServices.ExceptionDispatchInfo[] struct ExceptionDispatchInfoU5BU5D_t98D150CF7B222A428B342E1D1F7B69D64BE1A536; // System.Int32[] struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C; // System.Int64[] struct Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D; // System.IntPtr[] struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832; // System.Object[] struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918; // System.SByte[] struct SByteU5BU5D_t88116DA68378C3333DB73E7D36C1A06AFAA91913; // System.Diagnostics.StackTrace[] struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF; // System.String[] struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248; // System.Type[] struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB; // System.TimeZoneInfo/AdjustmentRule[] struct AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA; // System.TimeZoneInfo/TZifType[] struct TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98; // System.AccessViolationException struct AccessViolationException_t2359EDFDD20FE77D56A496DB4F6854A3D2DC4190; // System.Action struct Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07; // System.AggregateException struct AggregateException_t51B6205846DFB356B94452702201DD239D44422F; // System.ApplicationException struct ApplicationException_tA744BED4E90266BD255285CD4CF909BAB3EE811A; // System.ArgumentException struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263; // System.ArgumentNullException struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129; // System.ArgumentOutOfRangeException struct ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F; // System.ArithmeticException struct ArithmeticException_t07E77822D0007642BC8959A671E70D1F33C84FEA; // System.ArrayTypeMismatchException struct ArrayTypeMismatchException_t95F1723A5A166E62D3FBEF9734DEFBF61594F8F1; // System.Reflection.Assembly struct Assembly_t; // System.AssemblyLoadEventArgs struct AssemblyLoadEventArgs_tC10453F666334D5174ADF95106DF0DB73F4B863E; // System.AssemblyLoadEventHandler struct AssemblyLoadEventHandler_t74AF5FF25F520B9786A20D862AE69BE733774A42; // System.AsyncCallback struct AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C; // System.Attribute struct Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA; // System.AttributeUsageAttribute struct AttributeUsageAttribute_t25F34EEA4F7DBA1A8EEFA0685E986AEECE621C49; // System.BadImageFormatException struct BadImageFormatException_t7EBAEDCD74D3274D00106EC0051755C18D20E552; // System.Reflection.Binder struct Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235; // System.Byte struct Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3; // System.CLSCompliantAttribute struct CLSCompliantAttribute_tEF2C88FA74E74FB1993CC6E03767A2478A6D2F20; // System.Globalization.Calendar struct Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B; // System.CharEnumerator struct CharEnumerator_tD01B8BB6885F5B73C03B665FA10D64B8B61B4A7D; // System.Globalization.CodePageDataItem struct CodePageDataItem_t52460FA30AE37F4F26ACB81055E58002262F19F2; // System.Globalization.CompareInfo struct CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57; // System.CultureAwareComparer struct CultureAwareComparer_t5822A6535A6EB4C448D1B7736067D1188BAEE8CD; // System.Globalization.CultureData struct CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D; // System.Globalization.CultureInfo struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0; // System.Globalization.DateTimeFormatInfo struct DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A; // System.Text.DecoderFallback struct DecoderFallback_t7324102215E4ED41EC065C02EB501CB0BC23CD90; // System.Delegate struct Delegate_t; // System.DelegateData struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E; // System.Text.EncoderFallback struct EncoderFallback_tD2C40CE114AA9D8E1F7196608B2D088548015293; // System.Text.Encoding struct Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095; // System.EventArgs struct EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377; // System.Exception struct Exception_t; // System.Runtime.ExceptionServices.ExceptionDispatchInfo struct ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757; // System.IO.FileStream struct FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8; // System.FormatException struct FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B; // System.IAsyncResult struct IAsyncResult_t7B9B5A0ECB35DCEC31B8A8122C37D687369253B5; // System.IConvertible struct IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515; // System.Collections.IDictionary struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220; // System.IFormatProvider struct IFormatProvider_tC202922D43BFF3525109ABF3FB79625F5646AB52; // System.Runtime.Serialization.IFormatterConverter struct IFormatterConverter_t726606DAC82C384B08C82471313C340968DDB609; // System.InvalidCastException struct InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E; // System.InvalidOperationException struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB; // System.InvalidTimeZoneException struct InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD; // System.Reflection.MemberFilter struct MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553; // System.Reflection.MethodInfo struct MethodInfo_t; // System.NotSupportedException struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A; // System.Globalization.NumberFormatInfo struct NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472; // System.OrdinalCaseSensitiveComparer struct OrdinalCaseSensitiveComparer_t581CA7CB51DCF00B6012A697A4B4B3067144521A; // System.OrdinalIgnoreCaseComparer struct OrdinalIgnoreCaseComparer_t8BAE11990A4C855D3BCBBFB42F4EF8D45088FBB0; // System.OutOfMemoryException struct OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F; // System.OverflowException struct OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C; // Microsoft.Win32.SafeHandles.SafeFileHandle struct SafeFileHandle_t033FA6AAAC65F4BB25F4CBA9A242A58C95CD406E; // System.Runtime.Serialization.SafeSerializationManager struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6; // System.Threading.SemaphoreSlim struct SemaphoreSlim_t0D5CB5685D9BFA5BF95CEC6E7395490F933E8DB2; // System.Runtime.Serialization.SerializationException struct SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7; // System.Runtime.Serialization.SerializationInfo struct SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37; // System.String struct String_t; // System.Text.StringBuilder struct StringBuilder_t; // System.StringComparer struct StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06; // System.SystemException struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295; // System.Globalization.TextInfo struct TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4; // System.TimeZoneInfo struct TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8; // System.Type struct Type_t; // System.Void struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915; // System.BitConverter/<>c struct U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0; // System.IO.Stream/ReadWriteTask struct ReadWriteTask_t0821BF49EE38596C7734E86E1A6A39D769BE2C05; // System.TimeZoneInfo/<>c struct U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124; // System.TimeZoneInfo/<>c__DisplayClass16_0 struct U3CU3Ec__DisplayClass16_0_t0745DC96E806B3099E8FA9EB0C1315DEDD5CBFC0; // System.TimeZoneInfo/AdjustmentRule struct AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07; // System.TimeZoneInfo/CachedData struct CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF; IL2CPP_EXTERN_C RuntimeClass* AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* AggregateException_t51B6205846DFB356B94452702201DD239D44422F_il2cpp_TypeInfo_var; 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* ArrayPool_1_t645A9854926DCA747C654687A362AD03D55D2C07_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* AttributeUsageAttribute_t25F34EEA4F7DBA1A8EEFA0685E986AEECE621C49_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Comparison_1_tE0312CC191F82BABE215D23E750095EE2E124301_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DayOfWeek_t726DBD527FF9B9D2A0352FB80C55EE2EBE56783D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* GregorianCalendarHelper_tC77507376E36EEDABC1786237BADF1BF459F9723_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ICollection_1_tA49162EB2B379AF4BD08239AE9D2590B6968B0BA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ICollection_1_tBBBA2F846C020160325D4741EE2DB343A7AEADE4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IFormattable_t235A539BD9771E1E118DB99384BA8385D2F971CA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IList_1_t584E66CD0123CFB6503AC3E597748948194AAA5E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IList_1_tCFDE4BD8548909F112CB197B5B2C3F1211D52014_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IntPtr_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_t51CBE3470AD8637D621A307190A51C60E66F370B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_t9B4BB3EA8BB62F9777B029C3AAC4560C3EB0124A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_tA61E6ACDC88C89A9523D28C560996ABFF548352B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_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* Number_tA71F95D4B9F046BDA97EFA91BC6517925969650A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Predicate_1_tEB15485FDAFC48C82EE54427A8DBDB401213706C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SByteU5BU5D_t88116DA68378C3333DB73E7D36C1A06AFAA91913_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SecurityException_t025CB4C23107E67E07CF085826B40EDE72F8165C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SpanAction_2_t5AD9492C5DCDA0ABCE4EE25DCCF3EBD82BF591B7_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* String_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Sys_tE4FBEFBB8F788192C8E494DA0EC7EFE86D952AD8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass16_0_t0745DC96E806B3099E8FA9EB0C1315DEDD5CBFC0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UnauthorizedAccessException_t8FC1F1DE7AA62456E9E25EFDFC658A623A626791_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____801494072CDD59E61F9AA9345A80D045378705DFDCE94902C22EAEAE049BE780_55_FieldInfo_var; IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____C9830DF6956357ACE51CE1F82298578B36EB45A0CFDB8AEC5B9FDA7DB17E8063_87_FieldInfo_var; IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____F2830F044682E33B39018B5912634835B641562914E192CA66C654F5E4492FA8_114_FieldInfo_var; IL2CPP_EXTERN_C String_t* _stringLiteral018504CD3A7D232B591A18D6B7B570DEE8B65BAB; IL2CPP_EXTERN_C String_t* _stringLiteral01B12D4BB9DCEC213EE52153F25C3475874C454D; IL2CPP_EXTERN_C String_t* _stringLiteral032CE4B2D2D7086FA0A51B767B66E2925BB4FC5D; IL2CPP_EXTERN_C String_t* _stringLiteral072BA90B274B502615639084DC3D7FCC63407A24; IL2CPP_EXTERN_C String_t* _stringLiteral0A2679566878DB123603B221EB69443EBD3A7BCB; IL2CPP_EXTERN_C String_t* _stringLiteral0A58A4491B2CAAC8B03975834049C51649A53FA2; IL2CPP_EXTERN_C String_t* _stringLiteral0BC57303021D0F5E73500A4048868718EB82784B; IL2CPP_EXTERN_C String_t* _stringLiteral1168E92C164109D6220480DEDA987085B2A21155; IL2CPP_EXTERN_C String_t* _stringLiteral13772F1D89F55EDAC4913EE35CA9BC5DB5CCC798; IL2CPP_EXTERN_C String_t* _stringLiteral14BA113F909A778600AFFC621877E1CDD109444A; IL2CPP_EXTERN_C String_t* _stringLiteral16C4C93B479961DF2612CEC287054707A7609904; IL2CPP_EXTERN_C String_t* _stringLiteral1885083B225A9C3413CEAE49DFF7E6B5770675FB; IL2CPP_EXTERN_C String_t* _stringLiteral1C0C9FCD992D47F7F8139E8C6E8743A057F3D0A8; IL2CPP_EXTERN_C String_t* _stringLiteral1C55B63DB181316212E6D01717E65E1FB557B6B8; IL2CPP_EXTERN_C String_t* _stringLiteral1E7A8A503AFD36DF33873AAF1E540F2FC2BC00F1; IL2CPP_EXTERN_C String_t* _stringLiteral22E516BA4349DCF48E59694431A666940C3804AC; IL2CPP_EXTERN_C String_t* _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745; IL2CPP_EXTERN_C String_t* _stringLiteral2390D6884F59E2E4EA04837AD7D6268548597633; IL2CPP_EXTERN_C String_t* _stringLiteral2565F69A6EDDD61DD4960B022D88743E25BCCD32; IL2CPP_EXTERN_C String_t* _stringLiteral27898ED9175E943FDE24F2BF2E86B60EEDFF15D2; IL2CPP_EXTERN_C String_t* _stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1; IL2CPP_EXTERN_C String_t* _stringLiteral2B9B6C84CC15492CCB290C4B79418FA6D7DD24C1; IL2CPP_EXTERN_C String_t* _stringLiteral2CEBE907F12753A3B74B3F049CD4FCCAD27EEB0D; IL2CPP_EXTERN_C String_t* _stringLiteral2D0BAF232D97D0ABBA1986C948E6B9DA38247EDD; IL2CPP_EXTERN_C String_t* _stringLiteral2DD54EF3C66B10F36F9AE6F20237BFAFA2C9E444; IL2CPP_EXTERN_C String_t* _stringLiteral300B73ED5344F3E06BA53DFEA13CECB98D33880A; IL2CPP_EXTERN_C String_t* _stringLiteral30D99F99F1F4688CE08A3BF1B034C9CD49C19174; IL2CPP_EXTERN_C String_t* _stringLiteral3522BB4F702C4C273D265239651571707FCCD42D; IL2CPP_EXTERN_C String_t* _stringLiteral36A2069F2EBB68A1BE4AF9D9FF3B475C9EE76A26; IL2CPP_EXTERN_C String_t* _stringLiteral3ABDC3BE0D4AE0A52AF73DB2F567C19CF2E6E875; IL2CPP_EXTERN_C String_t* _stringLiteral3AF0F65A629E1F9641A341CFA19B861690DA71B5; IL2CPP_EXTERN_C String_t* _stringLiteral3B9E3B5807482B6C32D7111C75D4826AEFC0F71F; IL2CPP_EXTERN_C String_t* _stringLiteral401602777C44EA69B5FF9AB6AB2D47AEEC89D2AA; IL2CPP_EXTERN_C String_t* _stringLiteral445399A595B24C0202D28AE23969D8FFF38F572A; IL2CPP_EXTERN_C String_t* _stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8; IL2CPP_EXTERN_C String_t* _stringLiteral491788442E76F5D7830F0DBFCF8EDD98854F636F; IL2CPP_EXTERN_C String_t* _stringLiteral4B63EF6929AE971A204D72191783C54436124C51; IL2CPP_EXTERN_C String_t* _stringLiteral4BAC3D20C34EF3D0825E7EAAE03BE6034C6297A9; IL2CPP_EXTERN_C String_t* _stringLiteral4DD3DE8CCECA489C7DDD3362FC292A3BE39B68F1; IL2CPP_EXTERN_C String_t* _stringLiteral4E6EACEF8019EA40E4CAD15A87CBACA290240853; IL2CPP_EXTERN_C String_t* _stringLiteral5081C2BB000D6FA0C2CDA4A8B7ED516A31C70DC6; IL2CPP_EXTERN_C String_t* _stringLiteral50EF455B956027DF24259B3FB1863653BB4878FD; IL2CPP_EXTERN_C String_t* _stringLiteral544DC80A2A82A08B6321F56F8987CB7E5DEED1C4; IL2CPP_EXTERN_C String_t* _stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4; IL2CPP_EXTERN_C String_t* _stringLiteral57A11AA8D8FC7CF3B0620CBC3C7E0CCA55D62E09; IL2CPP_EXTERN_C String_t* _stringLiteral592EDDBE99E3B537ABCB79EA8611A7CB7989097F; IL2CPP_EXTERN_C String_t* _stringLiteral59F5BD34B6C013DEACC784F69C67E95150033A84; IL2CPP_EXTERN_C String_t* _stringLiteral5A79F3D1E4364DD2D85949184118C9F76E3BE916; IL2CPP_EXTERN_C String_t* _stringLiteral5A7ADFD6756FB3736B5F1DD62B8C220E85E5A9A6; IL2CPP_EXTERN_C String_t* _stringLiteral5B41A58E45555854EC2026B9B5F8243AA9E7ED4B; IL2CPP_EXTERN_C String_t* _stringLiteral5BE4AA33C9F9269F3A5D8C902F7D37A6E28D6E38; IL2CPP_EXTERN_C String_t* _stringLiteral5D997905392A8A6AE6612065B56018B1C13345AF; IL2CPP_EXTERN_C String_t* _stringLiteral5EBC0FB5BE3EB09AC4B447C54FE6F9F6DFEEF586; IL2CPP_EXTERN_C String_t* _stringLiteral6348CDEC7DB6251FDA976EE379E172B4319202A3; IL2CPP_EXTERN_C String_t* _stringLiteral645F0B83FF7CADECF44AD1B83B13002DA97FBA1E; IL2CPP_EXTERN_C String_t* _stringLiteral6A23ADF57EB2DED6CFCDFC91DCA029274A860ECC; IL2CPP_EXTERN_C String_t* _stringLiteral6AE649B59ED8705B39B85FAAC10AF4962BCBA80C; IL2CPP_EXTERN_C String_t* _stringLiteral6B509C55C6A5F6BAE3FB3BB16126FD45B8B9B163; IL2CPP_EXTERN_C String_t* _stringLiteral6B876A297E470749B85E75AB089B8F37384700D8; IL2CPP_EXTERN_C String_t* _stringLiteral6C8C975CC62CF419550282B028FB7E3A1F591D06; IL2CPP_EXTERN_C String_t* _stringLiteral6E9AEBB5505B4A1DBC166711562BE9408419A24D; IL2CPP_EXTERN_C String_t* _stringLiteral6F1AD4518CCFE15EDA37B314B2AF64D13616FF7B; IL2CPP_EXTERN_C String_t* _stringLiteral6F96D91590C70C47BBC8C98A53B3B412C36447CE; IL2CPP_EXTERN_C String_t* _stringLiteral74D560302B70C9D57AC7C2692A505F648FD1B1A4; IL2CPP_EXTERN_C String_t* _stringLiteral76EE6AC9CE84AB75E1822F990EDC05A4A83E34CD; IL2CPP_EXTERN_C String_t* _stringLiteral79C59F2479E52A939A8A16D011943BDBDFBEE65E; IL2CPP_EXTERN_C String_t* _stringLiteral7C152F638579421698C1833EAD994B061F824CA0; IL2CPP_EXTERN_C String_t* _stringLiteral8043BDE873F3C6FC01E86F171710DD1F0E0ABC2D; IL2CPP_EXTERN_C String_t* _stringLiteral81FE848029299D2E16A8CD1E3C9267FBB8445B4B; IL2CPP_EXTERN_C String_t* _stringLiteral82FB2C32106F5100B6EBEBAAEBF1CE629068A5D9; IL2CPP_EXTERN_C String_t* _stringLiteral834F4B6837B71847C4048C946DF8754B323D6BF9; IL2CPP_EXTERN_C String_t* _stringLiteral8394D857C9752A2BD67DFFA7D56C3F3FF113C77A; IL2CPP_EXTERN_C String_t* _stringLiteral83A0203482067140327BBF852248E02658CAE786; IL2CPP_EXTERN_C String_t* _stringLiteral83DC2909B9E8CF20AD23217F95DC9967B22DD3F5; IL2CPP_EXTERN_C String_t* _stringLiteral8532458685731C44156899992CA7A144A15B177F; IL2CPP_EXTERN_C String_t* _stringLiteral8BABAAD88AAA5E60D93C31ED61C095184AFF093D; IL2CPP_EXTERN_C String_t* _stringLiteral8BB31BB6FEE4CFF323F9B357F30EDA29E1B5CBA7; IL2CPP_EXTERN_C String_t* _stringLiteral8C7519178C7F8017597493F458FE4E71F102399E; IL2CPP_EXTERN_C String_t* _stringLiteral904E141B4F250943BE820466C5ACAC36DFD71291; IL2CPP_EXTERN_C String_t* _stringLiteral91A84CFC28DE4E260ED3B9388BE19E585D150D7F; IL2CPP_EXTERN_C String_t* _stringLiteral92057E8211A0EA82031051D2B0E70ADB04D156C7; IL2CPP_EXTERN_C String_t* _stringLiteral93FFE29C2506591FD366855C12526B4678FB1953; IL2CPP_EXTERN_C String_t* _stringLiteral94175649577A71BF619AB00E3FD4DBB0DF7198CD; IL2CPP_EXTERN_C String_t* _stringLiteral970C23FDBBAD9A488898D5C3E419B934D2FB9545; IL2CPP_EXTERN_C String_t* _stringLiteral97788FC356CCFD978CEEDA2BF269D6954F4D0740; IL2CPP_EXTERN_C String_t* _stringLiteral98A58CDB5617DAD8D0AD263D8F93C5CB675C2163; IL2CPP_EXTERN_C String_t* _stringLiteral996E5360F80E16B2189CC1E536C91CE68083F694; IL2CPP_EXTERN_C String_t* _stringLiteral99B5662DE40E7115E2CDF8451429C50BAFBBCE93; IL2CPP_EXTERN_C String_t* _stringLiteralA17989F20B9C34D562A6D393FB4B7703C2FF6069; IL2CPP_EXTERN_C String_t* _stringLiteralA2E34A7DAEE39E18F61A4200A3E455B5B0924DC1; IL2CPP_EXTERN_C String_t* _stringLiteralA4236146F56D25D2D915B8BCD28F0936D3257EE6; IL2CPP_EXTERN_C String_t* _stringLiteralA44A39671D4B7FA8FBE50D795EAB52248D5C5469; IL2CPP_EXTERN_C String_t* _stringLiteralA50A38EF2D7858A83B908FDB41C862EF6FD5FAE1; IL2CPP_EXTERN_C String_t* _stringLiteralA595476C6F6D3E2C3406DD69BC73859EA4408F2F; IL2CPP_EXTERN_C String_t* _stringLiteralA7B00F7F25C375B2501A6ADBC86D092B23977085; IL2CPP_EXTERN_C String_t* _stringLiteralA7CB599B22D521F814BCCB6E5B683D86AA12640B; IL2CPP_EXTERN_C String_t* _stringLiteralAA1D7FE08F191E4056596171109A07D018736F00; IL2CPP_EXTERN_C String_t* _stringLiteralAA9D877CB849FA2C146CC4091473E628678EE371; IL2CPP_EXTERN_C String_t* _stringLiteralAEAB3D729B68F0D07CACB56068349A9D081F5BAD; IL2CPP_EXTERN_C String_t* _stringLiteralAED72E9EF0C042EAA3A3C7A43CA329E75FF933BD; IL2CPP_EXTERN_C String_t* _stringLiteralAFB36F69DD323FF604AB5F1235E31F803043EA10; IL2CPP_EXTERN_C String_t* _stringLiteralB13A221890A3415E7F693C07C26585D65E9EF870; IL2CPP_EXTERN_C String_t* _stringLiteralB657B9EBAD0A09A09ED1FD8D1CCD0E421CD7BDC7; IL2CPP_EXTERN_C String_t* _stringLiteralB6DE8EF43C1BC546AA303BA65584166F1FB051BE; IL2CPP_EXTERN_C String_t* _stringLiteralB6FCDFEE719933C778C60D472C00101F05CD7A79; IL2CPP_EXTERN_C String_t* _stringLiteralB77C51162F9B76C1135D72465C09B899FF505927; IL2CPP_EXTERN_C String_t* _stringLiteralB780ED358EA2512EAEC12C4AAB63B013F81BFB70; IL2CPP_EXTERN_C String_t* _stringLiteralB962868113B24F11FFA71569C21BD05B1CB60436; IL2CPP_EXTERN_C String_t* _stringLiteralBB9E2BA96D3F7F910549AC5DB6967191AC919101; IL2CPP_EXTERN_C String_t* _stringLiteralBF27849B63507F7B8C2FC6FE9C5EFB62BF8543C8; IL2CPP_EXTERN_C String_t* _stringLiteralBFF9324A7A4DB3E1D645999C8B9E2DA54472D42C; IL2CPP_EXTERN_C String_t* _stringLiteralBFFB60FFC1C16180DF4456004F7B34D2182A5649; IL2CPP_EXTERN_C String_t* _stringLiteralC087E631060AB76B7C814C0E1B92D5C7C4C4B924; IL2CPP_EXTERN_C String_t* _stringLiteralC093A43C681B135B2CCBFD21AF1C61BC84B52631; IL2CPP_EXTERN_C String_t* _stringLiteralC26DCD8294CF8DDECC03D1B5FEBFE3E8670F4219; IL2CPP_EXTERN_C String_t* _stringLiteralC34A0BD578D5D87BDB3C56E68B1AFBCEB0921C80; IL2CPP_EXTERN_C String_t* _stringLiteralC53E63D0484C54FA447F4E687330E5946C7E09F5; IL2CPP_EXTERN_C String_t* _stringLiteralC71EEB076C9C234A1E39FDB9B0DCFC8851BA4D7F; IL2CPP_EXTERN_C String_t* _stringLiteralC96B5F218B9F698B4A9CF59FF10289CAFC661C7A; IL2CPP_EXTERN_C String_t* _stringLiteralC99BA0F7C5275BAC3DB1C2977F176767DEE5F49E; IL2CPP_EXTERN_C String_t* _stringLiteralCF7DF948FC4905FED1A56776B9DFCCB86C46912A; IL2CPP_EXTERN_C String_t* _stringLiteralD1B787616D5CE0182CB13A50CA0FB55C49EAA951; IL2CPP_EXTERN_C String_t* _stringLiteralD1D800B26C6F9144AC6A1E10C149876FA99E3EBE; IL2CPP_EXTERN_C String_t* _stringLiteralD41010780259F355E00BAB0A989D365B9CD48A8F; IL2CPP_EXTERN_C String_t* _stringLiteralD539FFE7E4977C91A92DB478C9022FA2F1EEA698; IL2CPP_EXTERN_C String_t* _stringLiteralD5A945F93544696D2848D5F0D45241EFD7341DFC; IL2CPP_EXTERN_C String_t* _stringLiteralD5E0D3D064AAABFE3EC781EFE9126A80D40BED15; IL2CPP_EXTERN_C String_t* _stringLiteralD62A6E8579B9E226105A0C28889FEEC94AAE3E9A; IL2CPP_EXTERN_C String_t* _stringLiteralD7403858372506828AB1160BA0EFCF96B17133FE; IL2CPP_EXTERN_C String_t* _stringLiteralD80BD0A851B9B4C3B7389277DE499F6B156E3F9F; IL2CPP_EXTERN_C String_t* _stringLiteralD8BC2BD13ADDE8D5A4042FB0941980613775040D; IL2CPP_EXTERN_C String_t* _stringLiteralD94C250F2B1277449096D60BF52D91C01BC28947; IL2CPP_EXTERN_C String_t* _stringLiteralDA144A4546BA813419D20020C8E1F983163D5616; IL2CPP_EXTERN_C String_t* _stringLiteralDA595DC5A57F5E8916402DFA6D50EB60A7DF3F30; IL2CPP_EXTERN_C String_t* _stringLiteralDAF2BD03270A51BF9C135F3694DCAD2D3E66F465; IL2CPP_EXTERN_C String_t* _stringLiteralDBB6CDA4D5A47DA899D30151C0C04DB0958C5C1F; IL2CPP_EXTERN_C String_t* _stringLiteralDE55B43308212050F52D65FEF9469774AEB10590; IL2CPP_EXTERN_C String_t* _stringLiteralDFEB75073613366ED790055534C407E4105DE290; IL2CPP_EXTERN_C String_t* _stringLiteralE5A6B5B780158F734FA0A11A802E762EF7BDD272; IL2CPP_EXTERN_C String_t* _stringLiteralE727DF72D0C3BA2DAE3D6C100D91E4C8FF0471A3; IL2CPP_EXTERN_C String_t* _stringLiteralE75F4F4A9D67BC98BA7DB8DBE3C519516572DA4E; IL2CPP_EXTERN_C String_t* _stringLiteralE83E205B069FB6EB573A2EF371C8C84AB214E8A7; IL2CPP_EXTERN_C String_t* _stringLiteralE8744A8B8BD390EB66CA0CAE2376C973E6904FFB; IL2CPP_EXTERN_C String_t* _stringLiteralE895F499BC653C0CA36FB31C5936FC768CAD263E; IL2CPP_EXTERN_C String_t* _stringLiteralE9BC8412F7672BEDC75EB21FA08240175E04E871; IL2CPP_EXTERN_C String_t* _stringLiteralEA8C788F462D3BDFF1A2C0A8B053AAA9567571BA; IL2CPP_EXTERN_C String_t* _stringLiteralEB209907A052ABB2C21994BF17D3B45327D812D2; IL2CPP_EXTERN_C String_t* _stringLiteralEDEF72BF02D7DBDB7455CEDB9985B8D2A87B5FB3; IL2CPP_EXTERN_C String_t* _stringLiteralEE4EDD00A82071245CB66FD4E82F95F687C2E2CA; IL2CPP_EXTERN_C String_t* _stringLiteralF072EABB286891F7AE6ED11AF63686B8B0F5023E; IL2CPP_EXTERN_C String_t* _stringLiteralF13E4BFF086D4E511E68B0617B76ACC5BD5AFFE7; IL2CPP_EXTERN_C String_t* _stringLiteralF1D9D681ED3F17FB88D66F3F260041BE534C7879; IL2CPP_EXTERN_C String_t* _stringLiteralF1FA676B434A01F8B0C76AACD342F3261CDB272A; IL2CPP_EXTERN_C String_t* _stringLiteralF23D2D4F867416899FD1326311AC61D3AC3EFBE8; IL2CPP_EXTERN_C String_t* _stringLiteralF31022DF0C52AA301767F7877FB21D3C42BE84CE; IL2CPP_EXTERN_C String_t* _stringLiteralF38018A5E6704152C358CEE388C935AA44BFE927; IL2CPP_EXTERN_C String_t* _stringLiteralF413CEA9BAA458730567FE47F57CC3C94DDF63C0; IL2CPP_EXTERN_C String_t* _stringLiteralF5757B8984ECA25A84C0677373F5C2FACE97337A; IL2CPP_EXTERN_C String_t* _stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6; IL2CPP_EXTERN_C String_t* _stringLiteralF7C654A6F7651FC5597CD86E2E325E8384CCF203; IL2CPP_EXTERN_C String_t* _stringLiteralFA21AE346609B8F4B72E20E1720DE0FA22D72B0F; IL2CPP_EXTERN_C String_t* _stringLiteralFED3FDDE36BD8F8EFDC4080D205F010B8503EE53; IL2CPP_EXTERN_C const RuntimeMethod* AdjustmentRule_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_mB8F32624CFFFCC0C8DBDECAABCA58EC2F8F5AFB9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AdjustmentRule_System_Runtime_Serialization_ISerializable_GetObjectData_m764F67E36C8B7FE592310FBCF864FA72251304FF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AdjustmentRule_ValidateAdjustmentRule_m255624F8A6A4C3C98C0B27D23FEE70809A39FBBE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AdjustmentRule__ctor_m1315C12A85D7BCDBED55550CE87DF985D1FE8A65_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AdjustmentRule__ctor_m2E09EC98FE32A2C1FDF2BF1B8A63B909768A703D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AggregateException__ctor_m0DCA05A779599F1729B01D4FFAD989BFD2400FEC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AggregateException__ctor_m5D99D5EC65645030D21C35CEDDACF438222AFB0D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AggregateException__ctor_mB43F730C839D5521949BC1A63FE56DB3DA2B5D5A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ArrayPool_1_get_Shared_mF8BCD25CBF8FDFF0B3B34EA3845722E4E10F310F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_Empty_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m89F7B056854DF715AA3E2B78EB84D5FA3878E474_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_Empty_TisException_t_m43D697D5384221F788D1B6C09C348DDA90140574_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* BitConverter_ToString_m0C49607A2AB0AC978180D8E7D4B1A2053CA895BA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Boolean_CompareTo_mB21CF195A8AB25CA8C228FECCD17F3C4C37BFBBC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Boolean_Parse_m3976D37905686476C6AF3EA712C927C7D40DB21D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Boolean_Parse_mE3D8860431C87FBE1D7C6EACA665548AFE144F38_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Boolean_System_IConvertible_ToChar_m11EF01B2E6AF02F4520F83D54DA94E3CE44CD3F1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Boolean_System_IConvertible_ToDateTime_m8F60F703F679DB51AC6FCF35CE6633EC9B2087AC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Byte_CompareTo_m4F4B52E1A3F43E77E2054A5F2178DFBCB23DFF2C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Byte_Parse_m6F6F3E5A58CAD8E54F357EE7FC3F4F78AE6BF888_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Byte_System_IConvertible_ToDateTime_mC69B22A478E7F1D3B34FDD335DCC757BD8D9BE50_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CharEnumerator__ctor_mFAEB1FA3AE57D9D8265074397BCA22981C4D5FFD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CharEnumerator_get_Current_mCF74B5DF8F8017240ECBB935A02B2D0BDABCE9BB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Char_CompareTo_m8EA6F779C3E8158B00C31C6136699AD3DB8F49E8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Char_ConvertToUtf32_m6617D8645EA36A19789225AFB091CDB900C54FBE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Char_GetUnicodeCategory_m7097DCE781FF6F554FB74374D59F0D4BADED2003_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Char_IsHighSurrogate_m46DB19B60C8D6A5E9EC36D64A14A7460F55A75D9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Char_IsLetterOrDigit_m3CB80D9BE7A7D964BB81A9906B0757045A31C5FD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Char_IsNumber_mF099A82125A3ACA2FDD2B751B04504E9B4E44897_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Char_IsSurrogate_m02BBD51B248388127160E4005BAA411CAEC1B357_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Char_IsWhiteSpace_m3F4E1CAF8C0043068E02A5C3E9D87B6A99800F0A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Char_Parse_mF6DE281178725F2B4A13DF321846C0DD4CB36D23_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Char_System_IConvertible_ToBoolean_m0F898C7790A3D055C6171AA576920DB109108881_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Char_System_IConvertible_ToDateTime_m049E4F0DE75C1A8B7F9D6585ED227C3DBB381E9C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Char_System_IConvertible_ToDecimal_m8F8DC304778474C5F234C04893A7E435D3B8CBA2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Char_System_IConvertible_ToDouble_mCFFD243E00E63755A02502B3587AFED2871BA28B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Char_System_IConvertible_ToSingle_m6DF18561FBA23392B504A2F3014C560119D5572D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Char_ToLower_m78EEA18B8EA90C29C7F1082CBA19F0DCFE90E9D4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Char_ToUpper_mD26273F94C47579826EBDD1A30FD12CD3DF054A9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ChangeType_m237EF4F56EC5DE52FCDAD2E27DEEEBB21549B1F4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ChangeType_m80EA2815A26D7AD545FE89CFA9BF64FBF3AEB676_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_DefaultToType_mA9DEFD8F897A7E13EA62DA8052A509C46D60B04F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_FromBase64CharArray_m084747DF9F015CDE232656C475FB666FF57E45D9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_FromBase64CharPtr_mEBD260DAFC4D3A85D913F98F880472EA54801C67_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_FromBase64String_m421F8600CA5124E047E3D7C2BC1B653F67BC48A1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_FromBase64_ComputeResultLength_mC2C2F8FB18BB4F7D77CDB18D671237365A2C35D5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ThrowByteOverflowException_m3C5E6C6941B2C5B87B6082BC69F0ED13EDF6D644_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ThrowCharOverflowException_m3F094CB5AA3E325F9ED1A407021FCD13CADF117F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ThrowInt16OverflowException_m6DE53E843F3701BD4999A40674A44DF2280FFFC4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ThrowInt32OverflowException_m6BC145DD83A74DD22E28360B787FCF3FEEF125D3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ThrowInt64OverflowException_mA6ADF322807A2E2FCACCE80273B8E47E37626B40_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ThrowSByteOverflowException_m516C925A443481A76D7233C155E9AFBC1481E002_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ThrowUInt16OverflowException_m0B9408271B529B2C798687CE1C48DED0D2BB396F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ThrowUInt32OverflowException_m7A384673C2A1C80ADDE1013AFF3F15F0F210CBAD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ThrowUInt64OverflowException_mE098E118D47982640208F378D742B24DD1B91BFA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ToBase64CharArray_m4785D1B89A5EBB556E2F1ABA5B52674D8255B63C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ToBase64String_m0300A68A4642B54030682C839D4205628A9FB447_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ToBase64String_mB276B21511FB01CDE030619C81757E786F91B9F3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ToBase64String_mD54CB9A36EA0382194415F9FAA2D89DF34043D79_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ToBase64_CalculateAndValidateOutputLength_m53BDF9C19D8CBBECC4CD9556CA22483A8D023275_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ToByte_m200E739C754818844030F3E16CC31017926C853F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ToChar_m999DFF96BEC05D5CFDAAC59C19F125C6827E436C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ToInt16_mB19CE8A8A4BAFB372C5CDA374532B08CF0DB3654_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ToInt32_m8881C26C9DC63CBE2186F7180F780706A10283F6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ToInt32_mF5B01B9D8B48919B05632EBF8ED0553474803A19_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ToInt64_m5B707D520332D512D2B81C10D2F4044FA468C3A4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ToInt64_m6162CDF3331970FD93F6619040733A50E5766DDC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ToSByte_m817E5E7388C1B1865AE2C4E6923427F3FF60A0C3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ToString_m244C97184477B594D97652377A63F2A205EC9B1E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ToString_m58CEFC66D90B56A11C21C7B24BB856FD797C93A2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ToString_mBA879BD4E700EBD7E2E564C8F70B5DAD29F4FE44_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ToUInt16_m8360869713B8312B93D6849BA52B3870284CFAD0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ToUInt32_m704A8BBE2217B9D055D5A506F5197B946F51B812_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ToUInt32_mFDECCDA93B6FFF3EA3E3B874EAD954410AC8577A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ToUInt64_m3ACA160CA874AE9D0DB387453E0F6F029F64D2D7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Convert_ToUInt64_m4990F2CE28C4CE3079D458BA578EFBA46D875B3E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_AddRange_mEE4B468401806AB4034B11CF5474F8DAD42FCAEF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m8E3C27DE02A5C8D1AE01D55D6B325BFB693CF385_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mA36092D2F40F81F420E65D722073A5B6A49137FB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mC19688469DF392DB765D7CDC2E9382514E5EF7E7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_RemoveAt_m031D3A21689276A872FCA7566C8F2F79F9581F0D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Sort_mC93B7887EE66D34058CF27DA73282E7DC0CFC27C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_ToArray_m4C6A88B12B46631D06072C836E9D709251CFF260_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m45DECC4F6632B9350A27CF0A9D607FB7FE6F8DBF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mA4BC919FC386FA1CE115EF12A461A768D26C11F5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mCEDF6523E3BA0C75E3D188CFF88E1005D2AA7B03_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mD910536376B8EBB5BDB30088BE4FE395391592F3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mE368A11FD9D47BA833943E9593471D8336AF5C0A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m555A94A70E4F9F1DBC02B3B7A446EEAAAF6647A5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mBFBD3FBB9B3A4B06F450444AD3CDF71C1C2E09EC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mF1CB8635CFBBCDB0A6DFA0EE7D3D3E95959E0FD6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* MemoryMarshal_GetReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m59D122F4A8516149EE7D183E97926157DF41EA1B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* MemoryMarshal_GetReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mE630BC590135F8CE4B147BB7DF7DD45C759397E5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* MemoryMarshal_GetReference_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_m90426C97E513B64C17AE47E597545E6686B0900E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m57671EDBF4C8A3BEF5EF30DC71BE6C17C6A657AC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_mD63976C410D14373D6D1D3E713C09B1E152F2166_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_Value_mC7511CCEBD1BB6FEEA7903DBB81ED7290D00DDD3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyCollection_1_CopyTo_mAE2DC1F98E3AB1E56E53CA756E077277286C22C1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyCollection_1__ctor_m8A6150A70033BA587E3F51C2834162ED01FC8004_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyCollection_1_get_Count_mADB84925112BAD7AA74EBCE91BC3E4524CFC4549_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyCollection_1_get_Item_mC1EEC8BBCB1499BF66A65D6A669B809CF9292628_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlySpan_1_Slice_mBF43FC5284A77519BB9C3BAB34F66A0A4B78CFE2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlySpan_1_Slice_mDEEA4C304B13C8F7A63BC3D60B62FF17BBEE282B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlySpan_1__ctor_m1D3E8C5A560BE65D9A5C3E5D0D891C79F4895B0B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlySpan_1__ctor_m7B5C2765879EA5E8D1617D834CC465A39540A913_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlySpan_1__ctor_mB16A8EC9CCDE68A166108BE32B6DDA7D7C88BC17_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlySpan_1_get_Length_m54864A0BB817050A9110E85BB5FB31EF63699982_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlySpan_1_op_Implicit_mE8C60AF5247A6927ED5FB2E409C9BEA8881763A7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Span_1_Slice_m720734AA48ECB663CAA0594530927B9015A64341_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Span_1_Slice_mEFBC3C78FD443FFE23F9E841D43B7B0271622843_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Span_1_get_Length_m8E944E4954E037877A25B9FF6B901F1F901D4769_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Span_1_get_Length_mB79622153F80AD55A805C005842AF045F4FCF992_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Span_1_op_Implicit_mD65020B112814C67FED9F2C3DE2B0B78D4E2A486_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Span_1_op_Implicit_mDC0AC5B50ABB4FDDA74ADE064641DB22D560B357_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* String_Create_TisValueTuple_3_t572F29F9771D9B8B871C0C91213509EE16360375_m98861909E5319A911639DE0909DF306C05FF9FE1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TZifHead__ctor_m329594E5E291363A0A5C24A32DEAF3A794F8F96A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TZifType__ctor_m078CAF246330F151602C5CF9582E315296C4F179_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeZoneInfo_CompareTimeZoneFile_m6546651CDAEAC2021D8E93358C35ECA38B4DF96D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeZoneInfo_ConvertTime_mC00F8C764885B2F8061BAA840F9E36D04948060F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeZoneInfo_CreateLocalUnity_mA53736609A9CAF1A706FB94747FE37CE2FCF27AB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeZoneInfo_EnumerateFilesRecursively_mA8D6F92EA47A8CAD801822B93063477494248890_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeZoneInfo_HasSameRules_m924B2C9A9A701D8388C5B8877F9BC6D5C4BF1DBE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeZoneInfo_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m72C836AAD5728159255930F43DDA57217E6633B7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeZoneInfo_System_Runtime_Serialization_ISerializable_GetObjectData_m530C74071BC885ED139F52B6E63FE59E1F88D642_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeZoneInfo_TZif_CreateTransitionTimeFromPosixRule_m010A4CD46321B7ED89B3833048A44534F4E7873A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeZoneInfo_TZif_GetEarlyDateTransitionType_m95E0426F6E27E8BF7E47EC7B9CBCB211BF178C0C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeZoneInfo_TZif_ParseJulianDay_mB379BF3B1071727E2A2DC587890A20E69C59A7A7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeZoneInfo_ValidateTimeZoneInfo_m5E219078273AC961FA3D3B6CB9E08EAA51D3DFAB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeZoneInfo__ctor_m7B38419A290B32854FB6623A338755B01F675DEA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TimeZoneInfo__ctor_mB8BAAF49189BD56626C30B42565C3DEBF8CC0F01_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TransitionTime_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_mC0BA25E7364D621D11F85E1E551B50CB68E2621C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TransitionTime_System_Runtime_Serialization_ISerializable_GetObjectData_m15188D93E8934322C49D68A618FE36EC787DF2D5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TransitionTime_ValidateTransitionTime_mD25BF3922B6A12F7EEFFCCF23E9595B986E8889D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TransitionTime__ctor_mDA3962EC43A405307D2F615F8D410C4F2A499AD5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CCreateLocalUnityU3Eb__161_0_mA9458C06834209A6DFE01FB06549AACE3B802909_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CTZif_ParsePosixDateU3Eb__37_0_mC6BED99C1A523F14CFD99D29790BB8D344FA9FA0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CTZif_ParsePosixNameU3Eb__34_0_m330F3DBBD8442E7C750C501FC7AD30AFA1E37C61_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CTZif_ParsePosixNameU3Eb__34_1_m2E30736B187F0AD2BC51690B3BF56EF7C3760993_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CTZif_ParsePosixOffsetU3Eb__35_0_m1DE392C6D99137B561ED15787E46906DFFF0DE97_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CTZif_ParsePosixTimeU3Eb__38_0_m3D4C85CFF7BF829F7EE1938E5DEF2C3CAA2DA7BA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CToStringU3Eb__38_0_m4B2328B99D3091111D21A7621CA3569E91072AD6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass16_0_U3CFindTimeZoneIdU3Eb__0_m350FFDA5167F64EB01C41FACE2AF00F51F0054A8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueTuple_3__ctor_m699C78D670A60A3798B76C427563C939E56A2805_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeType* AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Char_t521A6F19B456D956AF452D926C32709DC03D6B17_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* DayOfWeek_t726DBD527FF9B9D2A0352FB80C55EE2EBE56783D_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Empty_t2092C4BE138E38CCF5F75C55C07985DEE23C0DAE_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* RuntimeObject_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* String_t_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_0_0_0_var; struct CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_com; struct CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_pinvoke; struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_com; struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_pinvoke; struct Delegate_t_marshaled_com; struct Delegate_t_marshaled_pinvoke; struct Exception_t_marshaled_com; struct Exception_t_marshaled_pinvoke; struct BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4; struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031; struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB; struct DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1; struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771; struct ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C; struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C; struct Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D; struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918; struct SByteU5BU5D_t88116DA68378C3333DB73E7D36C1A06AFAA91913; struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248; struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB; struct AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA; struct TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98; IL2CPP_EXTERN_C_BEGIN IL2CPP_EXTERN_C_END #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Buffers.ArrayPool`1 struct ArrayPool_1_t645A9854926DCA747C654687A362AD03D55D2C07 : public RuntimeObject { }; struct ArrayPool_1_t645A9854926DCA747C654687A362AD03D55D2C07_StaticFields { // System.Buffers.ArrayPool`1 System.Buffers.ArrayPool`1::k__BackingField ArrayPool_1_t645A9854926DCA747C654687A362AD03D55D2C07* ___U3CSharedU3Ek__BackingField_0; }; // System.EmptyArray`1 struct EmptyArray_1_t7187E746F328254739F076CFBCAABB28D4B4554C : public RuntimeObject { }; struct EmptyArray_1_t7187E746F328254739F076CFBCAABB28D4B4554C_StaticFields { // T[] System.EmptyArray`1::Value ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___Value_0; }; // System.EmptyArray`1 struct EmptyArray_1_tDF0DD7256B115243AA6BD5558417387A734240EE : public RuntimeObject { }; struct EmptyArray_1_tDF0DD7256B115243AA6BD5558417387A734240EE_StaticFields { // T[] System.EmptyArray`1::Value ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___Value_0; }; // System.Collections.Generic.List`1 struct List_1_t9B4BB3EA8BB62F9777B029C3AAC4560C3EB0124A : public RuntimeObject { // T[] System.Collections.Generic.List`1::_items AggregateExceptionU5BU5D_tB7E3CD60DDA03EF1BCA7CB946EADDD18E6CD32B5* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject* ____syncRoot_4; }; struct List_1_t9B4BB3EA8BB62F9777B029C3AAC4560C3EB0124A_StaticFields { // T[] System.Collections.Generic.List`1::s_emptyArray AggregateExceptionU5BU5D_tB7E3CD60DDA03EF1BCA7CB946EADDD18E6CD32B5* ___s_emptyArray_5; }; // System.Collections.Generic.List`1 struct List_1_tA61E6ACDC88C89A9523D28C560996ABFF548352B : public RuntimeObject { // T[] System.Collections.Generic.List`1::_items ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject* ____syncRoot_4; }; struct List_1_tA61E6ACDC88C89A9523D28C560996ABFF548352B_StaticFields { // T[] System.Collections.Generic.List`1::s_emptyArray ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* ___s_emptyArray_5; }; // System.Collections.Generic.List`1 struct List_1_t51CBE3470AD8637D621A307190A51C60E66F370B : public RuntimeObject { // T[] System.Collections.Generic.List`1::_items ExceptionDispatchInfoU5BU5D_t98D150CF7B222A428B342E1D1F7B69D64BE1A536* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject* ____syncRoot_4; }; struct List_1_t51CBE3470AD8637D621A307190A51C60E66F370B_StaticFields { // T[] System.Collections.Generic.List`1::s_emptyArray ExceptionDispatchInfoU5BU5D_t98D150CF7B222A428B342E1D1F7B69D64BE1A536* ___s_emptyArray_5; }; // System.Collections.Generic.List`1 struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D : public RuntimeObject { // T[] System.Collections.Generic.List`1::_items ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject* ____syncRoot_4; }; struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D_StaticFields { // T[] System.Collections.Generic.List`1::s_emptyArray ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___s_emptyArray_5; }; // System.Collections.Generic.List`1 struct List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD : public RuntimeObject { // T[] System.Collections.Generic.List`1::_items StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject* ____syncRoot_4; }; struct List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_StaticFields { // T[] System.Collections.Generic.List`1::s_emptyArray StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___s_emptyArray_5; }; // System.Collections.Generic.List`1 struct List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C : public RuntimeObject { // T[] System.Collections.Generic.List`1::_items AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject* ____syncRoot_4; }; struct List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C_StaticFields { // T[] System.Collections.Generic.List`1::s_emptyArray AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* ___s_emptyArray_5; }; // System.Collections.ObjectModel.ReadOnlyCollection`1 struct ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886 : public RuntimeObject { // System.Collections.Generic.IList`1 System.Collections.ObjectModel.ReadOnlyCollection`1::list RuntimeObject* ___list_0; // System.Object System.Collections.ObjectModel.ReadOnlyCollection`1::_syncRoot RuntimeObject* ____syncRoot_1; }; struct Il2CppArrayBounds; // System.Reflection.Assembly struct Assembly_t : public RuntimeObject { }; // Native definition for P/Invoke marshalling of System.Reflection.Assembly struct Assembly_t_marshaled_pinvoke { }; // Native definition for COM marshalling of System.Reflection.Assembly struct Assembly_t_marshaled_com { }; // System.Attribute struct Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA : public RuntimeObject { }; // System.BitConverter struct BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27 : public RuntimeObject { }; struct BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_StaticFields { // System.Boolean System.BitConverter::IsLittleEndian bool ___IsLittleEndian_0; }; // System.CharEnumerator struct CharEnumerator_tD01B8BB6885F5B73C03B665FA10D64B8B61B4A7D : public RuntimeObject { // System.String System.CharEnumerator::_str String_t* ____str_0; // System.Int32 System.CharEnumerator::_index int32_t ____index_1; // System.Char System.CharEnumerator::_currentElement Il2CppChar ____currentElement_2; }; // System.Convert struct Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC : public RuntimeObject { }; struct Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields { // System.SByte[] System.Convert::s_decodingMap SByteU5BU5D_t88116DA68378C3333DB73E7D36C1A06AFAA91913* ___s_decodingMap_0; // System.Type[] System.Convert::ConvertTypes TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___ConvertTypes_1; // System.Type System.Convert::EnumType Type_t* ___EnumType_2; // System.Char[] System.Convert::base64Table CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___base64Table_3; // System.Object System.Convert::DBNull RuntimeObject* ___DBNull_4; }; // System.Globalization.CultureInfo struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0 : public RuntimeObject { // System.Boolean System.Globalization.CultureInfo::m_isReadOnly bool ___m_isReadOnly_3; // System.Int32 System.Globalization.CultureInfo::cultureID int32_t ___cultureID_4; // System.Int32 System.Globalization.CultureInfo::parent_lcid int32_t ___parent_lcid_5; // System.Int32 System.Globalization.CultureInfo::datetime_index int32_t ___datetime_index_6; // System.Int32 System.Globalization.CultureInfo::number_index int32_t ___number_index_7; // System.Int32 System.Globalization.CultureInfo::default_calendar_type int32_t ___default_calendar_type_8; // System.Boolean System.Globalization.CultureInfo::m_useUserOverride bool ___m_useUserOverride_9; // System.Globalization.NumberFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::numInfo NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___numInfo_10; // System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::dateTimeInfo DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___dateTimeInfo_11; // System.Globalization.TextInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::textInfo TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___textInfo_12; // System.String System.Globalization.CultureInfo::m_name String_t* ___m_name_13; // System.String System.Globalization.CultureInfo::englishname String_t* ___englishname_14; // System.String System.Globalization.CultureInfo::nativename String_t* ___nativename_15; // System.String System.Globalization.CultureInfo::iso3lang String_t* ___iso3lang_16; // System.String System.Globalization.CultureInfo::iso2lang String_t* ___iso2lang_17; // System.String System.Globalization.CultureInfo::win3lang String_t* ___win3lang_18; // System.String System.Globalization.CultureInfo::territory String_t* ___territory_19; // System.String[] System.Globalization.CultureInfo::native_calendar_names StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___native_calendar_names_20; // System.Globalization.CompareInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::compareInfo CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___compareInfo_21; // System.Void* System.Globalization.CultureInfo::textinfo_data void* ___textinfo_data_22; // System.Int32 System.Globalization.CultureInfo::m_dataItem int32_t ___m_dataItem_23; // System.Globalization.Calendar System.Globalization.CultureInfo::calendar Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar_24; // System.Globalization.CultureInfo System.Globalization.CultureInfo::parent_culture CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___parent_culture_25; // System.Boolean System.Globalization.CultureInfo::constructed bool ___constructed_26; // System.Byte[] System.Globalization.CultureInfo::cached_serialized_form ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___cached_serialized_form_27; // System.Globalization.CultureData System.Globalization.CultureInfo::m_cultureData CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D* ___m_cultureData_28; // System.Boolean System.Globalization.CultureInfo::m_isInherited bool ___m_isInherited_29; }; struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_StaticFields { // System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::invariant_culture_info CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___invariant_culture_info_0; // System.Object System.Globalization.CultureInfo::shared_table_lock RuntimeObject* ___shared_table_lock_1; // System.Globalization.CultureInfo System.Globalization.CultureInfo::default_current_culture CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___default_current_culture_2; // System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentUICulture CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___s_DefaultThreadCurrentUICulture_34; // System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentCulture CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___s_DefaultThreadCurrentCulture_35; // System.Collections.Generic.Dictionary`2 System.Globalization.CultureInfo::shared_by_number Dictionary_2_t9FA6D82CAFC18769F7515BB51D1C56DAE09381C3* ___shared_by_number_36; // System.Collections.Generic.Dictionary`2 System.Globalization.CultureInfo::shared_by_name Dictionary_2_tE1603CE612C16451D1E56FF4D4859D4FE4087C28* ___shared_by_name_37; // System.Globalization.CultureInfo System.Globalization.CultureInfo::s_UserPreferredCultureInfoInAppX CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___s_UserPreferredCultureInfoInAppX_38; // System.Boolean System.Globalization.CultureInfo::IsTaiwanSku bool ___IsTaiwanSku_39; }; // Native definition for P/Invoke marshalling of System.Globalization.CultureInfo struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_pinvoke { int32_t ___m_isReadOnly_3; int32_t ___cultureID_4; int32_t ___parent_lcid_5; int32_t ___datetime_index_6; int32_t ___number_index_7; int32_t ___default_calendar_type_8; int32_t ___m_useUserOverride_9; NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___numInfo_10; DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___dateTimeInfo_11; TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___textInfo_12; char* ___m_name_13; char* ___englishname_14; char* ___nativename_15; char* ___iso3lang_16; char* ___iso2lang_17; char* ___win3lang_18; char* ___territory_19; char** ___native_calendar_names_20; CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___compareInfo_21; void* ___textinfo_data_22; int32_t ___m_dataItem_23; Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar_24; CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_pinvoke* ___parent_culture_25; int32_t ___constructed_26; Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27; CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_pinvoke* ___m_cultureData_28; int32_t ___m_isInherited_29; }; // Native definition for COM marshalling of System.Globalization.CultureInfo struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_com { int32_t ___m_isReadOnly_3; int32_t ___cultureID_4; int32_t ___parent_lcid_5; int32_t ___datetime_index_6; int32_t ___number_index_7; int32_t ___default_calendar_type_8; int32_t ___m_useUserOverride_9; NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___numInfo_10; DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___dateTimeInfo_11; TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___textInfo_12; Il2CppChar* ___m_name_13; Il2CppChar* ___englishname_14; Il2CppChar* ___nativename_15; Il2CppChar* ___iso3lang_16; Il2CppChar* ___iso2lang_17; Il2CppChar* ___win3lang_18; Il2CppChar* ___territory_19; Il2CppChar** ___native_calendar_names_20; CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___compareInfo_21; void* ___textinfo_data_22; int32_t ___m_dataItem_23; Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar_24; CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_com* ___parent_culture_25; int32_t ___constructed_26; Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27; CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_com* ___m_cultureData_28; int32_t ___m_isInherited_29; }; // System.DBNull struct DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC : public RuntimeObject { }; struct DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields { // System.DBNull System.DBNull::Value DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* ___Value_0; }; // System.Text.Encoding struct Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095 : public RuntimeObject { // System.Int32 System.Text.Encoding::m_codePage int32_t ___m_codePage_9; // System.Globalization.CodePageDataItem System.Text.Encoding::dataItem CodePageDataItem_t52460FA30AE37F4F26ACB81055E58002262F19F2* ___dataItem_10; // System.Boolean System.Text.Encoding::m_deserializedFromEverett bool ___m_deserializedFromEverett_11; // System.Boolean System.Text.Encoding::m_isReadOnly bool ___m_isReadOnly_12; // System.Text.EncoderFallback System.Text.Encoding::encoderFallback EncoderFallback_tD2C40CE114AA9D8E1F7196608B2D088548015293* ___encoderFallback_13; // System.Text.DecoderFallback System.Text.Encoding::decoderFallback DecoderFallback_t7324102215E4ED41EC065C02EB501CB0BC23CD90* ___decoderFallback_14; }; struct Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095_StaticFields { // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::defaultEncoding Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___defaultEncoding_0; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::unicodeEncoding Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___unicodeEncoding_1; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::bigEndianUnicode Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___bigEndianUnicode_2; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf7Encoding Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___utf7Encoding_3; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf8Encoding Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___utf8Encoding_4; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf32Encoding Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___utf32Encoding_5; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::asciiEncoding Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___asciiEncoding_6; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::latin1Encoding Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___latin1Encoding_7; // System.Collections.Generic.Dictionary`2 modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::encodings Dictionary_2_t87EDE08B2E48F793A22DE50D6B3CC2E7EBB2DB54* ___encodings_8; // System.Object System.Text.Encoding::s_InternalSyncObject RuntimeObject* ___s_InternalSyncObject_15; }; // System.EventArgs struct EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377 : public RuntimeObject { }; struct EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377_StaticFields { // System.EventArgs System.EventArgs::Empty EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377* ___Empty_0; }; // System.Runtime.ExceptionServices.ExceptionDispatchInfo struct ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757 : public RuntimeObject { // System.Exception System.Runtime.ExceptionServices.ExceptionDispatchInfo::m_Exception Exception_t* ___m_Exception_0; // System.Object System.Runtime.ExceptionServices.ExceptionDispatchInfo::m_stackTrace RuntimeObject* ___m_stackTrace_1; }; // System.MarshalByRefObject struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE : public RuntimeObject { // System.Object System.MarshalByRefObject::_identity RuntimeObject* ____identity_0; }; // Native definition for P/Invoke marshalling of System.MarshalByRefObject struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_pinvoke { Il2CppIUnknown* ____identity_0; }; // Native definition for COM marshalling of System.MarshalByRefObject struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_com { Il2CppIUnknown* ____identity_0; }; // System.Reflection.MemberInfo struct MemberInfo_t : public RuntimeObject { }; // System.IO.Path struct Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC : public RuntimeObject { }; struct Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_StaticFields { // System.Char[] System.IO.Path::InvalidPathChars CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___InvalidPathChars_0; // System.Char System.IO.Path::AltDirectorySeparatorChar Il2CppChar ___AltDirectorySeparatorChar_1; // System.Char System.IO.Path::DirectorySeparatorChar Il2CppChar ___DirectorySeparatorChar_2; // System.Char System.IO.Path::PathSeparator Il2CppChar ___PathSeparator_3; // System.String System.IO.Path::DirectorySeparatorStr String_t* ___DirectorySeparatorStr_4; // System.Char System.IO.Path::VolumeSeparatorChar Il2CppChar ___VolumeSeparatorChar_5; // System.Char[] System.IO.Path::PathSeparatorChars CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___PathSeparatorChars_6; // System.Boolean System.IO.Path::dirEqualsVolume bool ___dirEqualsVolume_7; // System.Char[] System.IO.Path::trimEndCharsWindows CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___trimEndCharsWindows_8; // System.Char[] System.IO.Path::trimEndCharsUnix CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___trimEndCharsUnix_9; }; // System.Runtime.Serialization.SerializationInfo struct SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37 : public RuntimeObject { // System.String[] System.Runtime.Serialization.SerializationInfo::m_members StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___m_members_3; // System.Object[] System.Runtime.Serialization.SerializationInfo::m_data ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___m_data_4; // System.Type[] System.Runtime.Serialization.SerializationInfo::m_types TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___m_types_5; // System.Collections.Generic.Dictionary`2 System.Runtime.Serialization.SerializationInfo::m_nameToIndex Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* ___m_nameToIndex_6; // System.Int32 System.Runtime.Serialization.SerializationInfo::m_currMember int32_t ___m_currMember_7; // System.Runtime.Serialization.IFormatterConverter System.Runtime.Serialization.SerializationInfo::m_converter RuntimeObject* ___m_converter_8; // System.String System.Runtime.Serialization.SerializationInfo::m_fullTypeName String_t* ___m_fullTypeName_9; // System.String System.Runtime.Serialization.SerializationInfo::m_assemName String_t* ___m_assemName_10; // System.Type System.Runtime.Serialization.SerializationInfo::objectType Type_t* ___objectType_11; // System.Boolean System.Runtime.Serialization.SerializationInfo::isFullTypeNameSetExplicit bool ___isFullTypeNameSetExplicit_12; // System.Boolean System.Runtime.Serialization.SerializationInfo::isAssemblyNameSetExplicit bool ___isAssemblyNameSetExplicit_13; // System.Boolean System.Runtime.Serialization.SerializationInfo::requireSameTokenInPartialTrust bool ___requireSameTokenInPartialTrust_14; }; // System.String struct String_t : public RuntimeObject { // System.Int32 System.String::_stringLength int32_t ____stringLength_4; // System.Char System.String::_firstChar Il2CppChar ____firstChar_5; }; struct String_t_StaticFields { // System.String System.String::Empty String_t* ___Empty_6; }; // System.Text.StringBuilder struct StringBuilder_t : public RuntimeObject { // System.Char[] System.Text.StringBuilder::m_ChunkChars CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___m_ChunkChars_0; // System.Text.StringBuilder System.Text.StringBuilder::m_ChunkPrevious StringBuilder_t* ___m_ChunkPrevious_1; // System.Int32 System.Text.StringBuilder::m_ChunkLength int32_t ___m_ChunkLength_2; // System.Int32 System.Text.StringBuilder::m_ChunkOffset int32_t ___m_ChunkOffset_3; // System.Int32 System.Text.StringBuilder::m_MaxCapacity int32_t ___m_MaxCapacity_4; }; // System.StringComparer struct StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06 : public RuntimeObject { }; struct StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06_StaticFields { // System.CultureAwareComparer System.StringComparer::s_invariantCulture CultureAwareComparer_t5822A6535A6EB4C448D1B7736067D1188BAEE8CD* ___s_invariantCulture_0; // System.CultureAwareComparer System.StringComparer::s_invariantCultureIgnoreCase CultureAwareComparer_t5822A6535A6EB4C448D1B7736067D1188BAEE8CD* ___s_invariantCultureIgnoreCase_1; // System.OrdinalCaseSensitiveComparer System.StringComparer::s_ordinal OrdinalCaseSensitiveComparer_t581CA7CB51DCF00B6012A697A4B4B3067144521A* ___s_ordinal_2; // System.OrdinalIgnoreCaseComparer System.StringComparer::s_ordinalIgnoreCase OrdinalIgnoreCaseComparer_t8BAE11990A4C855D3BCBBFB42F4EF8D45088FBB0* ___s_ordinalIgnoreCase_3; }; // System.ValueType struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject { }; // Native definition for P/Invoke marshalling of System.ValueType struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke { }; // Native definition for COM marshalling of System.ValueType struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com { }; // System.BitConverter/<>c struct U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0 : public RuntimeObject { }; struct U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0_StaticFields { // System.BitConverter/<>c System.BitConverter/<>c::<>9 U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0* ___U3CU3E9_0; // System.Buffers.SpanAction`2> System.BitConverter/<>c::<>9__38_0 SpanAction_2_t5AD9492C5DCDA0ABCE4EE25DCCF3EBD82BF591B7* ___U3CU3E9__38_0_1; }; // System.TimeZoneInfo/<>c struct U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124 : public RuntimeObject { }; struct U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields { // System.TimeZoneInfo/<>c System.TimeZoneInfo/<>c::<>9 U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124* ___U3CU3E9_0; // System.Func`2 System.TimeZoneInfo/<>c::<>9__34_1 Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* ___U3CU3E9__34_1_1; // System.Func`2 System.TimeZoneInfo/<>c::<>9__34_0 Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* ___U3CU3E9__34_0_2; // System.Func`2 System.TimeZoneInfo/<>c::<>9__35_0 Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* ___U3CU3E9__35_0_3; // System.Func`2 System.TimeZoneInfo/<>c::<>9__37_0 Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* ___U3CU3E9__37_0_4; // System.Func`2 System.TimeZoneInfo/<>c::<>9__38_0 Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* ___U3CU3E9__38_0_5; // System.Comparison`1 System.TimeZoneInfo/<>c::<>9__161_0 Comparison_1_tE0312CC191F82BABE215D23E750095EE2E124301* ___U3CU3E9__161_0_6; }; // System.TimeZoneInfo/<>c__DisplayClass16_0 struct U3CU3Ec__DisplayClass16_0_t0745DC96E806B3099E8FA9EB0C1315DEDD5CBFC0 : public RuntimeObject { // System.String System.TimeZoneInfo/<>c__DisplayClass16_0::localtimeFilePath String_t* ___localtimeFilePath_0; // System.String System.TimeZoneInfo/<>c__DisplayClass16_0::posixrulesFilePath String_t* ___posixrulesFilePath_1; // System.Byte[] System.TimeZoneInfo/<>c__DisplayClass16_0::buffer ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer_2; // System.Byte[] System.TimeZoneInfo/<>c__DisplayClass16_0::rawData ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___rawData_3; // System.String System.TimeZoneInfo/<>c__DisplayClass16_0::id String_t* ___id_4; // System.String System.TimeZoneInfo/<>c__DisplayClass16_0::timeZoneDirectory String_t* ___timeZoneDirectory_5; }; // System.TimeZoneInfo/CachedData struct CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF : public RuntimeObject { // System.TimeZoneInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeZoneInfo/CachedData::_localTimeZone TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ____localTimeZone_0; }; // System.Nullable`1 struct Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 { // System.Boolean System.Nullable`1::hasValue bool ___hasValue_0; // T System.Nullable`1::value bool ___value_1; }; // System.Nullable`1 struct Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 { // System.Boolean System.Nullable`1::hasValue bool ___hasValue_0; // T System.Nullable`1::value int32_t ___value_1; }; // System.ValueTuple`3 struct ValueTuple_3_t572F29F9771D9B8B871C0C91213509EE16360375 { // T1 System.ValueTuple`3::Item1 ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___Item1_0; // T2 System.ValueTuple`3::Item2 int32_t ___Item2_1; // T3 System.ValueTuple`3::Item3 int32_t ___Item3_2; }; // System.ValueTuple`3 struct ValueTuple_3_tFD2ADB3DA89E958885034AAFEF1ABDA8C814D987 { // T1 System.ValueTuple`3::Item1 RuntimeObject* ___Item1_0; // T2 System.ValueTuple`3::Item2 int32_t ___Item2_1; // T3 System.ValueTuple`3::Item3 int32_t ___Item3_2; }; // System.AssemblyLoadEventArgs struct AssemblyLoadEventArgs_tC10453F666334D5174ADF95106DF0DB73F4B863E : public EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377 { // System.Reflection.Assembly System.AssemblyLoadEventArgs::k__BackingField Assembly_t* ___U3CLoadedAssemblyU3Ek__BackingField_1; }; // System.Boolean struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22 { // System.Boolean System.Boolean::m_value bool ___m_value_0; }; struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields { // System.String System.Boolean::TrueString String_t* ___TrueString_5; // System.String System.Boolean::FalseString String_t* ___FalseString_6; }; // System.Byte struct Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3 { // System.Byte System.Byte::m_value uint8_t ___m_value_0; }; // System.CLSCompliantAttribute struct CLSCompliantAttribute_tEF2C88FA74E74FB1993CC6E03767A2478A6D2F20 : public Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA { // System.Boolean System.CLSCompliantAttribute::_compliant bool ____compliant_0; }; // System.Char struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17 { // System.Char System.Char::m_value Il2CppChar ___m_value_0; }; struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17_StaticFields { // System.Byte[] System.Char::s_categoryForLatin1 ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___s_categoryForLatin1_3; }; // System.DateTime struct DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D { // System.UInt64 System.DateTime::_dateData uint64_t ____dateData_46; }; struct DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields { // System.Int32[] System.DateTime::s_daysToMonth365 Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___s_daysToMonth365_30; // System.Int32[] System.DateTime::s_daysToMonth366 Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___s_daysToMonth366_31; // System.DateTime System.DateTime::MinValue DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___MinValue_32; // System.DateTime System.DateTime::MaxValue DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___MaxValue_33; // System.DateTime System.DateTime::UnixEpoch DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___UnixEpoch_34; }; // System.Decimal struct Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F { union { #pragma pack(push, tp, 1) struct { // System.Int32 System.Decimal::flags int32_t ___flags_8; }; #pragma pack(pop, tp) struct { int32_t ___flags_8_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___hi_9_OffsetPadding[4]; // System.Int32 System.Decimal::hi int32_t ___hi_9; }; #pragma pack(pop, tp) struct { char ___hi_9_OffsetPadding_forAlignmentOnly[4]; int32_t ___hi_9_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___lo_10_OffsetPadding[8]; // System.Int32 System.Decimal::lo int32_t ___lo_10; }; #pragma pack(pop, tp) struct { char ___lo_10_OffsetPadding_forAlignmentOnly[8]; int32_t ___lo_10_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___mid_11_OffsetPadding[12]; // System.Int32 System.Decimal::mid int32_t ___mid_11; }; #pragma pack(pop, tp) struct { char ___mid_11_OffsetPadding_forAlignmentOnly[12]; int32_t ___mid_11_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___ulomidLE_12_OffsetPadding[8]; // System.UInt64 System.Decimal::ulomidLE uint64_t ___ulomidLE_12; }; #pragma pack(pop, tp) struct { char ___ulomidLE_12_OffsetPadding_forAlignmentOnly[8]; uint64_t ___ulomidLE_12_forAlignmentOnly; }; }; }; struct Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_StaticFields { // System.Decimal System.Decimal::Zero Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___Zero_3; // System.Decimal System.Decimal::One Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___One_4; // System.Decimal System.Decimal::MinusOne Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___MinusOne_5; // System.Decimal System.Decimal::MaxValue Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___MaxValue_6; // System.Decimal System.Decimal::MinValue Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___MinValue_7; }; // System.Double struct Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F { // System.Double System.Double::m_value double ___m_value_0; }; // System.Enum struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2 : public ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F { }; struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_StaticFields { // System.Char[] System.Enum::enumSeperatorCharArray CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___enumSeperatorCharArray_0; }; // Native definition for P/Invoke marshalling of System.Enum struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_pinvoke { }; // Native definition for COM marshalling of System.Enum struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_com { }; // System.Int16 struct Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175 { // System.Int16 System.Int16::m_value int16_t ___m_value_0; }; // System.Int32 struct Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C { // System.Int32 System.Int32::m_value int32_t ___m_value_0; }; // System.Int64 struct Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3 { // System.Int64 System.Int64::m_value int64_t ___m_value_0; }; // System.IntPtr struct IntPtr_t { // System.Void* System.IntPtr::m_value void* ___m_value_0; }; struct IntPtr_t_StaticFields { // System.IntPtr System.IntPtr::Zero intptr_t ___Zero_1; }; // System.OrdinalComparer struct OrdinalComparer_tBB06915E213A5D4C8C617ED5478E8BF30C2B2170 : public StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06 { // System.Boolean System.OrdinalComparer::_ignoreCase bool ____ignoreCase_4; }; // System.SByte struct SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5 { // System.SByte System.SByte::m_value int8_t ___m_value_0; }; // System.Single struct Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C { // System.Single System.Single::m_value float ___m_value_0; }; // System.IO.Stream struct Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE { // System.IO.Stream/ReadWriteTask System.IO.Stream::_activeReadWriteTask ReadWriteTask_t0821BF49EE38596C7734E86E1A6A39D769BE2C05* ____activeReadWriteTask_2; // System.Threading.SemaphoreSlim System.IO.Stream::_asyncActiveSemaphore SemaphoreSlim_t0D5CB5685D9BFA5BF95CEC6E7395490F933E8DB2* ____asyncActiveSemaphore_3; }; struct Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_StaticFields { // System.IO.Stream System.IO.Stream::Null Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___Null_1; }; // System.TimeSpan struct TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A { // System.Int64 System.TimeSpan::_ticks int64_t ____ticks_22; }; struct TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields { // System.TimeSpan System.TimeSpan::Zero TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___Zero_19; // System.TimeSpan System.TimeSpan::MaxValue TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___MaxValue_20; // System.TimeSpan System.TimeSpan::MinValue TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___MinValue_21; }; // System.UInt16 struct UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455 { // System.UInt16 System.UInt16::m_value uint16_t ___m_value_0; }; // System.UInt32 struct UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B { // System.UInt32 System.UInt32::m_value uint32_t ___m_value_0; }; // System.UInt64 struct UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF { // System.UInt64 System.UInt64::m_value uint64_t ___m_value_0; }; // System.Void struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915 { union { struct { }; uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1]; }; }; // System.String/ProbabilisticMap struct ProbabilisticMap_t0DA8A558FAD7B468FD97F480BFF8CDFA5E1F024B { union { struct { union { }; }; uint8_t ProbabilisticMap_t0DA8A558FAD7B468FD97F480BFF8CDFA5E1F024B__padding[32]; }; }; // System.ByReference`1 struct ByReference_1_t9C85BCCAAF8C525B6C06B07E922D8D217BE8D6FC { // System.IntPtr System.ByReference`1::_value intptr_t ____value_0; }; // System.ByReference`1 struct ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 { // System.IntPtr System.ByReference`1::_value intptr_t ____value_0; }; // System.Nullable`1 struct Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272 { // System.Boolean System.Nullable`1::hasValue bool ___hasValue_0; // T System.Nullable`1::value TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___value_1; }; // System.AttributeTargets struct AttributeTargets_t2C5B67F2A92E96E1CBC764A0A9E3D73ABFB5F968 { // System.Int32 System.AttributeTargets::value__ int32_t ___value___2; }; // System.Base64FormattingOptions struct Base64FormattingOptions_t4164AA9B490B42621F23C8CAF1B798CDD582FB0F { // System.Int32 System.Base64FormattingOptions::value__ int32_t ___value___2; }; // System.Reflection.BindingFlags struct BindingFlags_t5DC2835E4AE9C1862B3AD172EF35B6A5F4F1812C { // System.Int32 System.Reflection.BindingFlags::value__ int32_t ___value___2; }; // System.DateTimeKind struct DateTimeKind_t3AD6DA06BEF8955A740777163FFB481C19089BBC { // System.Int32 System.DateTimeKind::value__ int32_t ___value___2; }; // System.DateTimeOffset struct DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 { // System.DateTime System.DateTimeOffset::_dateTime DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ____dateTime_3; // System.Int16 System.DateTimeOffset::_offsetMinutes int16_t ____offsetMinutes_4; }; struct DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_StaticFields { // System.DateTimeOffset System.DateTimeOffset::MinValue DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 ___MinValue_0; // System.DateTimeOffset System.DateTimeOffset::MaxValue DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 ___MaxValue_1; // System.DateTimeOffset System.DateTimeOffset::UnixEpoch DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 ___UnixEpoch_2; }; // System.DayOfWeek struct DayOfWeek_t726DBD527FF9B9D2A0352FB80C55EE2EBE56783D { // System.Int32 System.DayOfWeek::value__ int32_t ___value___2; }; // System.Globalization.DaylightTimeStruct struct DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 { // System.DateTime System.Globalization.DaylightTimeStruct::Start DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___Start_0; // System.DateTime System.Globalization.DaylightTimeStruct::End DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___End_1; // System.TimeSpan System.Globalization.DaylightTimeStruct::Delta TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___Delta_2; }; // Native definition for P/Invoke marshalling of System.Globalization.DaylightTimeStruct struct DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1_marshaled_pinvoke { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___Start_0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___End_1; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___Delta_2; }; // Native definition for COM marshalling of System.Globalization.DaylightTimeStruct struct DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1_marshaled_com { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___Start_0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___End_1; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___Delta_2; }; // System.Delegate struct Delegate_t : public RuntimeObject { // System.IntPtr System.Delegate::method_ptr Il2CppMethodPointer ___method_ptr_0; // System.IntPtr System.Delegate::invoke_impl intptr_t ___invoke_impl_1; // System.Object System.Delegate::m_target RuntimeObject* ___m_target_2; // System.IntPtr System.Delegate::method intptr_t ___method_3; // System.IntPtr System.Delegate::delegate_trampoline intptr_t ___delegate_trampoline_4; // System.IntPtr System.Delegate::extra_arg intptr_t ___extra_arg_5; // System.IntPtr System.Delegate::method_code intptr_t ___method_code_6; // System.IntPtr System.Delegate::interp_method intptr_t ___interp_method_7; // System.IntPtr System.Delegate::interp_invoke_impl intptr_t ___interp_invoke_impl_8; // System.Reflection.MethodInfo System.Delegate::method_info MethodInfo_t* ___method_info_9; // System.Reflection.MethodInfo System.Delegate::original_method_info MethodInfo_t* ___original_method_info_10; // System.DelegateData System.Delegate::data DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11; // System.Boolean System.Delegate::method_is_virtual bool ___method_is_virtual_12; }; // Native definition for P/Invoke marshalling of System.Delegate struct Delegate_t_marshaled_pinvoke { intptr_t ___method_ptr_0; intptr_t ___invoke_impl_1; Il2CppIUnknown* ___m_target_2; intptr_t ___method_3; intptr_t ___delegate_trampoline_4; intptr_t ___extra_arg_5; intptr_t ___method_code_6; intptr_t ___interp_method_7; intptr_t ___interp_invoke_impl_8; MethodInfo_t* ___method_info_9; MethodInfo_t* ___original_method_info_10; DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11; int32_t ___method_is_virtual_12; }; // Native definition for COM marshalling of System.Delegate struct Delegate_t_marshaled_com { intptr_t ___method_ptr_0; intptr_t ___invoke_impl_1; Il2CppIUnknown* ___m_target_2; intptr_t ___method_3; intptr_t ___delegate_trampoline_4; intptr_t ___extra_arg_5; intptr_t ___method_code_6; intptr_t ___interp_method_7; intptr_t ___interp_invoke_impl_8; MethodInfo_t* ___method_info_9; MethodInfo_t* ___original_method_info_10; DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11; int32_t ___method_is_virtual_12; }; // System.Exception struct Exception_t : public RuntimeObject { // System.String System.Exception::_className String_t* ____className_1; // System.String System.Exception::_message String_t* ____message_2; // System.Collections.IDictionary System.Exception::_data RuntimeObject* ____data_3; // System.Exception System.Exception::_innerException Exception_t* ____innerException_4; // System.String System.Exception::_helpURL String_t* ____helpURL_5; // System.Object System.Exception::_stackTrace RuntimeObject* ____stackTrace_6; // System.String System.Exception::_stackTraceString String_t* ____stackTraceString_7; // System.String System.Exception::_remoteStackTraceString String_t* ____remoteStackTraceString_8; // System.Int32 System.Exception::_remoteStackIndex int32_t ____remoteStackIndex_9; // System.Object System.Exception::_dynamicMethods RuntimeObject* ____dynamicMethods_10; // System.Int32 System.Exception::_HResult int32_t ____HResult_11; // System.String System.Exception::_source String_t* ____source_12; // System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13; // System.Diagnostics.StackTrace[] System.Exception::captured_traces StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14; // System.IntPtr[] System.Exception::native_trace_ips IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832* ___native_trace_ips_15; // System.Int32 System.Exception::caught_in_unmanaged int32_t ___caught_in_unmanaged_16; }; struct Exception_t_StaticFields { // System.Object System.Exception::s_EDILock RuntimeObject* ___s_EDILock_0; }; // Native definition for P/Invoke marshalling of System.Exception struct Exception_t_marshaled_pinvoke { char* ____className_1; char* ____message_2; RuntimeObject* ____data_3; Exception_t_marshaled_pinvoke* ____innerException_4; char* ____helpURL_5; Il2CppIUnknown* ____stackTrace_6; char* ____stackTraceString_7; char* ____remoteStackTraceString_8; int32_t ____remoteStackIndex_9; Il2CppIUnknown* ____dynamicMethods_10; int32_t ____HResult_11; char* ____source_12; SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13; StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14; Il2CppSafeArray/*NONE*/* ___native_trace_ips_15; int32_t ___caught_in_unmanaged_16; }; // Native definition for COM marshalling of System.Exception struct Exception_t_marshaled_com { Il2CppChar* ____className_1; Il2CppChar* ____message_2; RuntimeObject* ____data_3; Exception_t_marshaled_com* ____innerException_4; Il2CppChar* ____helpURL_5; Il2CppIUnknown* ____stackTrace_6; Il2CppChar* ____stackTraceString_7; Il2CppChar* ____remoteStackTraceString_8; int32_t ____remoteStackIndex_9; Il2CppIUnknown* ____dynamicMethods_10; int32_t ____HResult_11; Il2CppChar* ____source_12; SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13; StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14; Il2CppSafeArray/*NONE*/* ___native_trace_ips_15; int32_t ___caught_in_unmanaged_16; }; // System.ExceptionArgument struct ExceptionArgument_t60E7F8D9DE5362CBE9365893983C30302D83B778 { // System.Int32 System.ExceptionArgument::value__ int32_t ___value___2; }; // System.ExceptionResource struct ExceptionResource_t609A85E253A4E615583553D91D839E2E79FDFBD9 { // System.Int32 System.ExceptionResource::value__ int32_t ___value___2; }; // System.IO.FileAccess struct FileAccess_t3992FF4CCC61971B804DD291F06F696C3CF33C30 { // System.Int32 System.IO.FileAccess::value__ int32_t ___value___2; }; // System.IO.FileMode struct FileMode_t111B48D5347628AEFCBF9A0EC2833827A302ECBA { // System.Int32 System.IO.FileMode::value__ int32_t ___value___2; }; // System.IO.FileShare struct FileShare_t0A0E9739F5AB44D6B8026C9D2A2F1CEEE442733A { // System.Int32 System.IO.FileShare::value__ int32_t ___value___2; }; // System.Globalization.GregorianCalendarHelper struct GregorianCalendarHelper_tC77507376E36EEDABC1786237BADF1BF459F9723 : public RuntimeObject { // System.Int32 System.Globalization.GregorianCalendarHelper::m_maxYear int32_t ___m_maxYear_2; // System.Int32 System.Globalization.GregorianCalendarHelper::m_minYear int32_t ___m_minYear_3; // System.Globalization.Calendar System.Globalization.GregorianCalendarHelper::m_Cal Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___m_Cal_4; // System.Globalization.EraInfo[] System.Globalization.GregorianCalendarHelper::m_EraInfo EraInfoU5BU5D_t3FC74518173AF52EC901FC118D4BD9A11DE89BAC* ___m_EraInfo_5; // System.Int32[] System.Globalization.GregorianCalendarHelper::m_eras Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___m_eras_6; // System.DateTime System.Globalization.GregorianCalendarHelper::m_minDate DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___m_minDate_7; }; struct GregorianCalendarHelper_tC77507376E36EEDABC1786237BADF1BF459F9723_StaticFields { // System.Int32[] System.Globalization.GregorianCalendarHelper::DaysToMonth365 Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___DaysToMonth365_0; // System.Int32[] System.Globalization.GregorianCalendarHelper::DaysToMonth366 Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___DaysToMonth366_1; }; // System.Globalization.NumberStyles struct NumberStyles_t567C6CBC2A2B5B5A2C43B2855D158949984A810C { // System.Int32 System.Globalization.NumberStyles::value__ int32_t ___value___2; }; // System.OrdinalIgnoreCaseComparer struct OrdinalIgnoreCaseComparer_t8BAE11990A4C855D3BCBBFB42F4EF8D45088FBB0 : public OrdinalComparer_tBB06915E213A5D4C8C617ED5478E8BF30C2B2170 { }; // System.RuntimeFieldHandle struct RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 { // System.IntPtr System.RuntimeFieldHandle::value intptr_t ___value_0; }; // System.RuntimeTypeHandle struct RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B { // System.IntPtr System.RuntimeTypeHandle::value intptr_t ___value_0; }; // System.Runtime.Serialization.StreamingContextStates struct StreamingContextStates_t5EE358E619B251608A9327618C7BFE8638FC33C1 { // System.Int32 System.Runtime.Serialization.StreamingContextStates::value__ int32_t ___value___2; }; // System.StringComparison struct StringComparison_tE14A55CCFA001A5AC85D754179BF2888F45CC94D { // System.Int32 System.StringComparison::value__ int32_t ___value___2; }; // System.Globalization.TextInfo struct TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4 : public RuntimeObject { // System.String System.Globalization.TextInfo::m_listSeparator String_t* ___m_listSeparator_0; // System.Boolean System.Globalization.TextInfo::m_isReadOnly bool ___m_isReadOnly_1; // System.String System.Globalization.TextInfo::m_cultureName String_t* ___m_cultureName_2; // System.Globalization.CultureData System.Globalization.TextInfo::m_cultureData CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D* ___m_cultureData_3; // System.String System.Globalization.TextInfo::m_textInfoName String_t* ___m_textInfoName_4; // System.Nullable`1 System.Globalization.TextInfo::m_IsAsciiCasingSameAsInvariant Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 ___m_IsAsciiCasingSameAsInvariant_5; // System.String System.Globalization.TextInfo::customCultureName String_t* ___customCultureName_7; // System.Int32 System.Globalization.TextInfo::m_nDataItem int32_t ___m_nDataItem_8; // System.Boolean System.Globalization.TextInfo::m_useUserOverride bool ___m_useUserOverride_9; // System.Int32 System.Globalization.TextInfo::m_win32LangID int32_t ___m_win32LangID_10; }; struct TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4_StaticFields { // System.Globalization.TextInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.TextInfo::s_Invariant TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___s_Invariant_6; }; // System.TimeZoneInfo struct TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8 : public RuntimeObject { // System.String System.TimeZoneInfo::_id String_t* ____id_0; // System.String System.TimeZoneInfo::_displayName String_t* ____displayName_1; // System.String System.TimeZoneInfo::_standardDisplayName String_t* ____standardDisplayName_2; // System.String System.TimeZoneInfo::_daylightDisplayName String_t* ____daylightDisplayName_3; // System.TimeSpan System.TimeZoneInfo::_baseUtcOffset TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ____baseUtcOffset_4; // System.Boolean System.TimeZoneInfo::_supportsDaylightSavingTime bool ____supportsDaylightSavingTime_5; // System.TimeZoneInfo/AdjustmentRule[] System.TimeZoneInfo::_adjustmentRules AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* ____adjustmentRules_6; }; struct TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields { // System.TimeZoneInfo System.TimeZoneInfo::s_utcTimeZone TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___s_utcTimeZone_7; // System.TimeZoneInfo/CachedData System.TimeZoneInfo::s_cachedData CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* ___s_cachedData_8; // System.DateTime System.TimeZoneInfo::s_maxDateOnly DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___s_maxDateOnly_9; // System.DateTime System.TimeZoneInfo::s_minDateOnly DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___s_minDateOnly_10; // System.TimeSpan System.TimeZoneInfo::MaxOffset TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___MaxOffset_11; // System.TimeSpan System.TimeZoneInfo::MinOffset TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___MinOffset_12; }; // System.TimeZoneInfoOptions struct TimeZoneInfoOptions_t9AA92EAC7395567D8B804551E641CF11D98FA345 { // System.Int32 System.TimeZoneInfoOptions::value__ int32_t ___value___2; }; // System.TypeCode struct TypeCode_tBEF9BE86C8BCF5A6B82F3381219738D27804EF79 { // System.Int32 System.TypeCode::value__ int32_t ___value___2; }; // System.Globalization.UnicodeCategory struct UnicodeCategory_tC5D046642FA3366AD265B73F3F43140D8CD9CB2A { // System.Int32 System.Globalization.UnicodeCategory::value__ int32_t ___value___2; }; // System.Array/RawData struct RawData_t37CAF2D3F74B7723974ED7CEEE9B297D8FA64ED0 : public RuntimeObject { // System.IntPtr System.Array/RawData::Bounds intptr_t ___Bounds_0; // System.IntPtr System.Array/RawData::Count intptr_t ___Count_1; // System.Byte System.Array/RawData::Data uint8_t ___Data_2; }; // Native definition for P/Invoke marshalling of System.Array/RawData struct RawData_t37CAF2D3F74B7723974ED7CEEE9B297D8FA64ED0_marshaled_pinvoke { intptr_t ___Bounds_0; intptr_t ___Count_1; uint8_t ___Data_2; }; // Native definition for COM marshalling of System.Array/RawData struct RawData_t37CAF2D3F74B7723974ED7CEEE9B297D8FA64ED0_marshaled_com { intptr_t ___Bounds_0; intptr_t ___Count_1; uint8_t ___Data_2; }; // Interop/Error struct Error_tA96F6BC4A908C7D5F1E1C4A60CE2AC73DCA88D4A { // System.Int32 Interop/Error::value__ int32_t ___value___2; }; // System.String/TrimType struct TrimType_t81946A781778EF25C900B457CBC82E94409AC39A { // System.Int32 System.String/TrimType::value__ int32_t ___value___2; }; // System.TimeZoneInfo/TZVersion struct TZVersion_tCE6CB6F5EFCBC7981B41E372F45E875B5CF96B68 { // System.Byte System.TimeZoneInfo/TZVersion::value__ uint8_t ___value___2; }; // System.TimeZoneInfo/TZifType struct TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 { // System.TimeSpan System.TimeZoneInfo/TZifType::UtcOffset TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___UtcOffset_0; // System.Boolean System.TimeZoneInfo/TZifType::IsDst bool ___IsDst_1; // System.Byte System.TimeZoneInfo/TZifType::AbbreviationIndex uint8_t ___AbbreviationIndex_2; }; // Native definition for P/Invoke marshalling of System.TimeZoneInfo/TZifType struct TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4_marshaled_pinvoke { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___UtcOffset_0; int32_t ___IsDst_1; uint8_t ___AbbreviationIndex_2; }; // Native definition for COM marshalling of System.TimeZoneInfo/TZifType struct TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4_marshaled_com { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___UtcOffset_0; int32_t ___IsDst_1; uint8_t ___AbbreviationIndex_2; }; // Interop/Sys/FileStatusFlags struct FileStatusFlags_tB53E2B9A54305CDCEA49884DEEDB8C62C8ACC9C9 { // System.Int32 Interop/Sys/FileStatusFlags::value__ int32_t ___value___2; }; // Interop/Sys/NodeType struct NodeType_tA0667DBD8FC8EB3B1202CBEEEC3958E5BC14A76E { // System.Int32 Interop/Sys/NodeType::value__ int32_t ___value___2; }; // System.ReadOnlySpan`1 struct ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D { // System.ByReference`1 System.ReadOnlySpan`1::_pointer ByReference_1_t9C85BCCAAF8C525B6C06B07E922D8D217BE8D6FC ____pointer_0; // System.Int32 System.ReadOnlySpan`1::_length int32_t ____length_1; }; // System.ReadOnlySpan`1 struct ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 { // System.ByReference`1 System.ReadOnlySpan`1::_pointer ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 ____pointer_0; // System.Int32 System.ReadOnlySpan`1::_length int32_t ____length_1; }; // System.Span`1 struct Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 { // System.ByReference`1 System.Span`1::_pointer ByReference_1_t9C85BCCAAF8C525B6C06B07E922D8D217BE8D6FC ____pointer_0; // System.Int32 System.Span`1::_length int32_t ____length_1; }; // System.Span`1 struct Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D { // System.ByReference`1 System.Span`1::_pointer ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 ____pointer_0; // System.Int32 System.Span`1::_length int32_t ____length_1; }; // System.AggregateException struct AggregateException_t51B6205846DFB356B94452702201DD239D44422F : public Exception_t { // System.Collections.ObjectModel.ReadOnlyCollection`1 System.AggregateException::m_innerExceptions ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886* ___m_innerExceptions_18; }; // System.ApplicationException struct ApplicationException_tA744BED4E90266BD255285CD4CF909BAB3EE811A : public Exception_t { }; // System.AttributeUsageAttribute struct AttributeUsageAttribute_t25F34EEA4F7DBA1A8EEFA0685E986AEECE621C49 : public Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA { // System.AttributeTargets System.AttributeUsageAttribute::_attributeTarget int32_t ____attributeTarget_0; // System.Boolean System.AttributeUsageAttribute::_allowMultiple bool ____allowMultiple_1; // System.Boolean System.AttributeUsageAttribute::_inherited bool ____inherited_2; }; struct AttributeUsageAttribute_t25F34EEA4F7DBA1A8EEFA0685E986AEECE621C49_StaticFields { // System.AttributeUsageAttribute System.AttributeUsageAttribute::Default AttributeUsageAttribute_t25F34EEA4F7DBA1A8EEFA0685E986AEECE621C49* ___Default_3; }; // System.IO.FileStream struct FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8 : public Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE { // System.Byte[] System.IO.FileStream::buf ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buf_6; // System.String System.IO.FileStream::name String_t* ___name_7; // Microsoft.Win32.SafeHandles.SafeFileHandle System.IO.FileStream::safeHandle SafeFileHandle_t033FA6AAAC65F4BB25F4CBA9A242A58C95CD406E* ___safeHandle_8; // System.Boolean System.IO.FileStream::isExposed bool ___isExposed_9; // System.Int64 System.IO.FileStream::append_startpos int64_t ___append_startpos_10; // System.IO.FileAccess System.IO.FileStream::access int32_t ___access_11; // System.Boolean System.IO.FileStream::owner bool ___owner_12; // System.Boolean System.IO.FileStream::async bool ___async_13; // System.Boolean System.IO.FileStream::canseek bool ___canseek_14; // System.Boolean System.IO.FileStream::anonymous bool ___anonymous_15; // System.Boolean System.IO.FileStream::buf_dirty bool ___buf_dirty_16; // System.Int32 System.IO.FileStream::buf_size int32_t ___buf_size_17; // System.Int32 System.IO.FileStream::buf_length int32_t ___buf_length_18; // System.Int32 System.IO.FileStream::buf_offset int32_t ___buf_offset_19; // System.Int64 System.IO.FileStream::buf_start int64_t ___buf_start_20; }; struct FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8_StaticFields { // System.Byte[] System.IO.FileStream::buf_recycle ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buf_recycle_4; // System.Object System.IO.FileStream::buf_recycle_lock RuntimeObject* ___buf_recycle_lock_5; }; // System.InvalidTimeZoneException struct InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD : public Exception_t { }; // System.MulticastDelegate struct MulticastDelegate_t : public Delegate_t { // System.Delegate[] System.MulticastDelegate::delegates DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771* ___delegates_13; }; // Native definition for P/Invoke marshalling of System.MulticastDelegate struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke { Delegate_t_marshaled_pinvoke** ___delegates_13; }; // Native definition for COM marshalling of System.MulticastDelegate struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com { Delegate_t_marshaled_com** ___delegates_13; }; // System.Globalization.NumberFormatInfo struct NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472 : public RuntimeObject { // System.Int32[] System.Globalization.NumberFormatInfo::numberGroupSizes Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___numberGroupSizes_1; // System.Int32[] System.Globalization.NumberFormatInfo::currencyGroupSizes Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___currencyGroupSizes_2; // System.Int32[] System.Globalization.NumberFormatInfo::percentGroupSizes Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___percentGroupSizes_3; // System.String System.Globalization.NumberFormatInfo::positiveSign String_t* ___positiveSign_4; // System.String System.Globalization.NumberFormatInfo::negativeSign String_t* ___negativeSign_5; // System.String System.Globalization.NumberFormatInfo::numberDecimalSeparator String_t* ___numberDecimalSeparator_6; // System.String System.Globalization.NumberFormatInfo::numberGroupSeparator String_t* ___numberGroupSeparator_7; // System.String System.Globalization.NumberFormatInfo::currencyGroupSeparator String_t* ___currencyGroupSeparator_8; // System.String System.Globalization.NumberFormatInfo::currencyDecimalSeparator String_t* ___currencyDecimalSeparator_9; // System.String System.Globalization.NumberFormatInfo::currencySymbol String_t* ___currencySymbol_10; // System.String System.Globalization.NumberFormatInfo::ansiCurrencySymbol String_t* ___ansiCurrencySymbol_11; // System.String System.Globalization.NumberFormatInfo::nanSymbol String_t* ___nanSymbol_12; // System.String System.Globalization.NumberFormatInfo::positiveInfinitySymbol String_t* ___positiveInfinitySymbol_13; // System.String System.Globalization.NumberFormatInfo::negativeInfinitySymbol String_t* ___negativeInfinitySymbol_14; // System.String System.Globalization.NumberFormatInfo::percentDecimalSeparator String_t* ___percentDecimalSeparator_15; // System.String System.Globalization.NumberFormatInfo::percentGroupSeparator String_t* ___percentGroupSeparator_16; // System.String System.Globalization.NumberFormatInfo::percentSymbol String_t* ___percentSymbol_17; // System.String System.Globalization.NumberFormatInfo::perMilleSymbol String_t* ___perMilleSymbol_18; // System.String[] System.Globalization.NumberFormatInfo::nativeDigits StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___nativeDigits_19; // System.Int32 System.Globalization.NumberFormatInfo::m_dataItem int32_t ___m_dataItem_20; // System.Int32 System.Globalization.NumberFormatInfo::numberDecimalDigits int32_t ___numberDecimalDigits_21; // System.Int32 System.Globalization.NumberFormatInfo::currencyDecimalDigits int32_t ___currencyDecimalDigits_22; // System.Int32 System.Globalization.NumberFormatInfo::currencyPositivePattern int32_t ___currencyPositivePattern_23; // System.Int32 System.Globalization.NumberFormatInfo::currencyNegativePattern int32_t ___currencyNegativePattern_24; // System.Int32 System.Globalization.NumberFormatInfo::numberNegativePattern int32_t ___numberNegativePattern_25; // System.Int32 System.Globalization.NumberFormatInfo::percentPositivePattern int32_t ___percentPositivePattern_26; // System.Int32 System.Globalization.NumberFormatInfo::percentNegativePattern int32_t ___percentNegativePattern_27; // System.Int32 System.Globalization.NumberFormatInfo::percentDecimalDigits int32_t ___percentDecimalDigits_28; // System.Int32 System.Globalization.NumberFormatInfo::digitSubstitution int32_t ___digitSubstitution_29; // System.Boolean System.Globalization.NumberFormatInfo::isReadOnly bool ___isReadOnly_30; // System.Boolean System.Globalization.NumberFormatInfo::m_useUserOverride bool ___m_useUserOverride_31; // System.Boolean System.Globalization.NumberFormatInfo::m_isInvariant bool ___m_isInvariant_32; // System.Boolean System.Globalization.NumberFormatInfo::validForParseAsNumber bool ___validForParseAsNumber_33; // System.Boolean System.Globalization.NumberFormatInfo::validForParseAsCurrency bool ___validForParseAsCurrency_34; }; struct NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472_StaticFields { // System.Globalization.NumberFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.NumberFormatInfo::invariantInfo NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___invariantInfo_0; }; // System.Runtime.Serialization.StreamingContext struct StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 { // System.Object System.Runtime.Serialization.StreamingContext::m_additionalContext RuntimeObject* ___m_additionalContext_0; // System.Runtime.Serialization.StreamingContextStates System.Runtime.Serialization.StreamingContext::m_state int32_t ___m_state_1; }; // Native definition for P/Invoke marshalling of System.Runtime.Serialization.StreamingContext struct StreamingContext_t56760522A751890146EE45F82F866B55B7E33677_marshaled_pinvoke { Il2CppIUnknown* ___m_additionalContext_0; int32_t ___m_state_1; }; // Native definition for COM marshalling of System.Runtime.Serialization.StreamingContext struct StreamingContext_t56760522A751890146EE45F82F866B55B7E33677_marshaled_com { Il2CppIUnknown* ___m_additionalContext_0; int32_t ___m_state_1; }; // System.SystemException struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 : public Exception_t { }; // System.Type struct Type_t : public MemberInfo_t { // System.RuntimeTypeHandle System.Type::_impl RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ____impl_8; }; struct Type_t_StaticFields { // System.Reflection.Binder modreq(System.Runtime.CompilerServices.IsVolatile) System.Type::s_defaultBinder Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235* ___s_defaultBinder_0; // System.Char System.Type::Delimiter Il2CppChar ___Delimiter_1; // System.Type[] System.Type::EmptyTypes TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___EmptyTypes_2; // System.Object System.Type::Missing RuntimeObject* ___Missing_3; // System.Reflection.MemberFilter System.Type::FilterAttribute MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterAttribute_4; // System.Reflection.MemberFilter System.Type::FilterName MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterName_5; // System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterNameIgnoreCase_6; }; // Interop/ErrorInfo struct ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8 { // Interop/Error Interop/ErrorInfo::_error int32_t ____error_0; // System.Int32 Interop/ErrorInfo::_rawErrno int32_t ____rawErrno_1; }; // System.TimeZoneInfo/TZifHead struct TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852 { // System.UInt32 System.TimeZoneInfo/TZifHead::Magic uint32_t ___Magic_0; // System.TimeZoneInfo/TZVersion System.TimeZoneInfo/TZifHead::Version uint8_t ___Version_1; // System.UInt32 System.TimeZoneInfo/TZifHead::IsGmtCount uint32_t ___IsGmtCount_2; // System.UInt32 System.TimeZoneInfo/TZifHead::IsStdCount uint32_t ___IsStdCount_3; // System.UInt32 System.TimeZoneInfo/TZifHead::LeapCount uint32_t ___LeapCount_4; // System.UInt32 System.TimeZoneInfo/TZifHead::TimeCount uint32_t ___TimeCount_5; // System.UInt32 System.TimeZoneInfo/TZifHead::TypeCount uint32_t ___TypeCount_6; // System.UInt32 System.TimeZoneInfo/TZifHead::CharCount uint32_t ___CharCount_7; }; // System.TimeZoneInfo/TransitionTime struct TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 { // System.DateTime System.TimeZoneInfo/TransitionTime::_timeOfDay DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ____timeOfDay_0; // System.Byte System.TimeZoneInfo/TransitionTime::_month uint8_t ____month_1; // System.Byte System.TimeZoneInfo/TransitionTime::_week uint8_t ____week_2; // System.Byte System.TimeZoneInfo/TransitionTime::_day uint8_t ____day_3; // System.DayOfWeek System.TimeZoneInfo/TransitionTime::_dayOfWeek int32_t ____dayOfWeek_4; // System.Boolean System.TimeZoneInfo/TransitionTime::_isFixedDateRule bool ____isFixedDateRule_5; }; // Native definition for P/Invoke marshalling of System.TimeZoneInfo/TransitionTime struct TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_marshaled_pinvoke { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ____timeOfDay_0; uint8_t ____month_1; uint8_t ____week_2; uint8_t ____day_3; int32_t ____dayOfWeek_4; int32_t ____isFixedDateRule_5; }; // Native definition for COM marshalling of System.TimeZoneInfo/TransitionTime struct TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_marshaled_com { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ____timeOfDay_0; uint8_t ____month_1; uint8_t ____week_2; uint8_t ____day_3; int32_t ____dayOfWeek_4; int32_t ____isFixedDateRule_5; }; // Interop/Sys/DirectoryEntry struct DirectoryEntry_t4FE272EECFF03032105F6F23CB60435287DB1CA2 { // System.Byte* Interop/Sys/DirectoryEntry::Name uint8_t* ___Name_0; // System.Int32 Interop/Sys/DirectoryEntry::NameLength int32_t ___NameLength_1; // Interop/Sys/NodeType Interop/Sys/DirectoryEntry::InodeType int32_t ___InodeType_2; }; // Interop/Sys/FileStatus struct FileStatus_tCB96EDE0D0F945F685B9BBED6DBF0731207458C2 { // Interop/Sys/FileStatusFlags Interop/Sys/FileStatus::Flags int32_t ___Flags_0; // System.Int32 Interop/Sys/FileStatus::Mode int32_t ___Mode_1; // System.UInt32 Interop/Sys/FileStatus::Uid uint32_t ___Uid_2; // System.UInt32 Interop/Sys/FileStatus::Gid uint32_t ___Gid_3; // System.Int64 Interop/Sys/FileStatus::Size int64_t ___Size_4; // System.Int64 Interop/Sys/FileStatus::ATime int64_t ___ATime_5; // System.Int64 Interop/Sys/FileStatus::ATimeNsec int64_t ___ATimeNsec_6; // System.Int64 Interop/Sys/FileStatus::MTime int64_t ___MTime_7; // System.Int64 Interop/Sys/FileStatus::MTimeNsec int64_t ___MTimeNsec_8; // System.Int64 Interop/Sys/FileStatus::CTime int64_t ___CTime_9; // System.Int64 Interop/Sys/FileStatus::CTimeNsec int64_t ___CTimeNsec_10; // System.Int64 Interop/Sys/FileStatus::BirthTime int64_t ___BirthTime_11; // System.Int64 Interop/Sys/FileStatus::BirthTimeNsec int64_t ___BirthTimeNsec_12; // System.Int64 Interop/Sys/FileStatus::Dev int64_t ___Dev_13; // System.Int64 Interop/Sys/FileStatus::Ino int64_t ___Ino_14; // System.UInt32 Interop/Sys/FileStatus::UserFlags uint32_t ___UserFlags_15; }; // System.Comparison`1 struct Comparison_1_tE0312CC191F82BABE215D23E750095EE2E124301 : public MulticastDelegate_t { }; // System.Func`2 struct Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F : public MulticastDelegate_t { }; // System.Predicate`1 struct Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12 : public MulticastDelegate_t { }; // System.Predicate`1 struct Predicate_1_tEB15485FDAFC48C82EE54427A8DBDB401213706C : public MulticastDelegate_t { }; // System.Buffers.SpanAction`2> struct SpanAction_2_t5AD9492C5DCDA0ABCE4EE25DCCF3EBD82BF591B7 : public MulticastDelegate_t { }; // System.AccessViolationException struct AccessViolationException_t2359EDFDD20FE77D56A496DB4F6854A3D2DC4190 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 { }; // System.Action struct Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07 : public MulticastDelegate_t { }; // System.ArgumentException struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 { // System.String System.ArgumentException::_paramName String_t* ____paramName_18; }; // System.ArithmeticException struct ArithmeticException_t07E77822D0007642BC8959A671E70D1F33C84FEA : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 { }; // System.ArrayTypeMismatchException struct ArrayTypeMismatchException_t95F1723A5A166E62D3FBEF9734DEFBF61594F8F1 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 { }; // System.AssemblyLoadEventHandler struct AssemblyLoadEventHandler_t74AF5FF25F520B9786A20D862AE69BE733774A42 : public MulticastDelegate_t { }; // System.AsyncCallback struct AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C : public MulticastDelegate_t { }; // System.BadImageFormatException struct BadImageFormatException_t7EBAEDCD74D3274D00106EC0051755C18D20E552 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 { // System.String System.BadImageFormatException::_fileName String_t* ____fileName_18; // System.String System.BadImageFormatException::_fusionLog String_t* ____fusionLog_19; }; // System.FormatException struct FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 { }; // System.IO.IOException struct IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 { }; // System.InvalidCastException struct InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 { }; // System.InvalidOperationException struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 { }; // System.NotSupportedException struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 { }; // System.OutOfMemoryException struct OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 { }; // System.Security.SecurityException struct SecurityException_t025CB4C23107E67E07CF085826B40EDE72F8165C : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 { // System.String System.Security.SecurityException::permissionState String_t* ___permissionState_18; }; // System.Runtime.Serialization.SerializationException struct SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 { }; struct SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7_StaticFields { // System.String System.Runtime.Serialization.SerializationException::s_nullMessage String_t* ___s_nullMessage_18; }; // System.UnauthorizedAccessException struct UnauthorizedAccessException_t8FC1F1DE7AA62456E9E25EFDFC658A623A626791 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 { }; // System.TimeZoneInfo/AdjustmentRule struct AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07 : public RuntimeObject { // System.DateTime System.TimeZoneInfo/AdjustmentRule::_dateStart DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ____dateStart_0; // System.DateTime System.TimeZoneInfo/AdjustmentRule::_dateEnd DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ____dateEnd_1; // System.TimeSpan System.TimeZoneInfo/AdjustmentRule::_daylightDelta TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ____daylightDelta_2; // System.TimeZoneInfo/TransitionTime System.TimeZoneInfo/AdjustmentRule::_daylightTransitionStart TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ____daylightTransitionStart_3; // System.TimeZoneInfo/TransitionTime System.TimeZoneInfo/AdjustmentRule::_daylightTransitionEnd TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ____daylightTransitionEnd_4; // System.TimeSpan System.TimeZoneInfo/AdjustmentRule::_baseUtcOffsetDelta TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ____baseUtcOffsetDelta_5; // System.Boolean System.TimeZoneInfo/AdjustmentRule::_noDaylightTransitions bool ____noDaylightTransitions_6; }; // System.ArgumentNullException struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129 : public ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263 { }; // System.ArgumentOutOfRangeException struct ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F : public ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263 { // System.Object System.ArgumentOutOfRangeException::_actualValue RuntimeObject* ____actualValue_19; }; // System.OverflowException struct OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C : public ArithmeticException_t07E77822D0007642BC8959A671E70D1F33C84FEA { }; #ifdef __clang__ #pragma clang diagnostic pop #endif // System.Byte[] struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031 : public RuntimeArray { ALIGN_FIELD (8) uint8_t m_Items[1]; inline uint8_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline uint8_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, uint8_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value) { m_Items[index] = value; } }; // System.DateTime[] struct DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1 : public RuntimeArray { ALIGN_FIELD (8) DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D m_Items[1]; inline DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D value) { m_Items[index] = value; } }; // System.TimeZoneInfo/TZifType[] struct TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98 : public RuntimeArray { ALIGN_FIELD (8) TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 m_Items[1]; inline TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 value) { m_Items[index] = value; } }; // System.Boolean[] 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; } }; // System.TimeZoneInfo/AdjustmentRule[] struct AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA : public RuntimeArray { ALIGN_FIELD (8) AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* m_Items[1]; inline AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Int32[] 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; } }; // System.Int64[] struct Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D : public RuntimeArray { ALIGN_FIELD (8) int64_t m_Items[1]; inline int64_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline int64_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, int64_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline int64_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline int64_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, int64_t value) { m_Items[index] = value; } }; // System.String[] 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); } }; // System.Delegate[] struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771 : public RuntimeArray { ALIGN_FIELD (8) Delegate_t* m_Items[1]; inline Delegate_t* GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Delegate_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, Delegate_t* value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline Delegate_t* GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Delegate_t** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Delegate_t* value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Exception[] struct ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C : public RuntimeArray { ALIGN_FIELD (8) Exception_t* m_Items[1]; inline Exception_t* GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Exception_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, Exception_t* value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline Exception_t* GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Exception_t** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Exception_t* value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Char[] struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB : public RuntimeArray { ALIGN_FIELD (8) Il2CppChar m_Items[1]; inline Il2CppChar GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Il2CppChar* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Il2CppChar value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Il2CppChar GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Il2CppChar* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Il2CppChar value) { m_Items[index] = value; } }; // System.SByte[] struct SByteU5BU5D_t88116DA68378C3333DB73E7D36C1A06AFAA91913 : public RuntimeArray { ALIGN_FIELD (8) int8_t m_Items[1]; inline int8_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline int8_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, int8_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline int8_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline int8_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, int8_t value) { m_Items[index] = value; } }; // System.Type[] struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB : public RuntimeArray { ALIGN_FIELD (8) Type_t* m_Items[1]; inline Type_t* GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Type_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, Type_t* value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline Type_t* GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Type_t** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Type_t* value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Object[] 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); } }; // System.Void System.Span`1::.ctor(System.Void*,System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_gshared_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, void* ___pointer0, int32_t ___length1, const RuntimeMethod* method) ; // System.Int32 System.ReadOnlySpan`1::get_Length() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, const RuntimeMethod* method) ; // System.Buffers.ArrayPool`1 System.Buffers.ArrayPool`1::get_Shared() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ArrayPool_1_t645A9854926DCA747C654687A362AD03D55D2C07* ArrayPool_1_get_Shared_mF8BCD25CBF8FDFF0B3B34EA3845722E4E10F310F_gshared_inline (const RuntimeMethod* method) ; // System.Void System.Collections.Generic.List`1::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ; // System.Void System.Collections.Generic.List`1::Add(T) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___item0, const RuntimeMethod* method) ; // System.Boolean System.Predicate`1::Invoke(T) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m6AC449189DCEE89A4FA2A2B724DE296A1DFB6A9B_gshared_inline (Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* __this, RuntimeObject* ___obj0, const RuntimeMethod* method) ; // System.Int32 System.Collections.Generic.List`1::get_Count() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ; // T System.Collections.Generic.List`1::get_Item(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___index0, const RuntimeMethod* method) ; // System.Void System.Collections.Generic.List`1::RemoveAt(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveAt_m54F62297ADEE4D4FDA697F49ED807BF901201B54_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___index0, const RuntimeMethod* method) ; // System.Void System.Predicate`1::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m3E007299121A15DF80F4A210FF8C20E5DF688F20_gshared (Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ; // T[] System.Collections.Generic.List`1::ToArray() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* List_1_ToArray_mD7E4F8E7C11C3C67CB5739FCC0A6E86106A6291F_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ; // System.Boolean System.Nullable`1::get_HasValue() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mD63976C410D14373D6D1D3E713C09B1E152F2166_gshared_inline (Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272* __this, const RuntimeMethod* method) ; // T System.Nullable`1::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A Nullable_1_get_Value_mC7511CCEBD1BB6FEEA7903DBB81ED7290D00DDD3_gshared (Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272* __this, const RuntimeMethod* method) ; // System.Void System.Nullable`1::.ctor(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m57671EDBF4C8A3BEF5EF30DC71BE6C17C6A657AC_gshared (Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272* __this, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___value0, const RuntimeMethod* method) ; // System.Void System.Func`2::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_2__ctor_m86D272566839A59489924C367E316D2E516EC1F2_gshared (Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ; // TResult System.Func`2::Invoke(T) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Func_2_Invoke_m4733F0A0FE136C9F8DCE4963455215585E8BE2CD_gshared_inline (Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* __this, Il2CppChar ___arg0, const RuntimeMethod* method) ; // System.Boolean System.Nullable`1::get_HasValue() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_gshared_inline (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, const RuntimeMethod* method) ; // T System.Nullable`1::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_gshared (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, const RuntimeMethod* method) ; // System.Void System.Nullable`1::.ctor(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_gshared (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, int32_t ___value0, const RuntimeMethod* method) ; // System.Void System.Collections.Generic.List`1::AddRange(System.Collections.Generic.IEnumerable`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_AddRange_m1F76B300133150E6046C5FED00E88B5DE0A02E17_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___collection0, const RuntimeMethod* method) ; // System.Void System.Comparison`1::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Comparison_1__ctor_mC1E8799BBCE317B612875123C9C894BD470BFE6A_gshared (Comparison_1_t62E531E7B8260E2C6C2718C3BDB8CF8655139645* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ; // System.Void System.Collections.Generic.List`1::Sort(System.Comparison`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_mEB3B61CB86B1419919338B0668DC4E568C2FFF93_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, Comparison_1_t62E531E7B8260E2C6C2718C3BDB8CF8655139645* ___comparison0, const RuntimeMethod* method) ; // T[] System.Array::Empty() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* Array_Empty_TisRuntimeObject_m55011E8360A8199FB239A5787BA8631CDD6116FC_gshared_inline (const RuntimeMethod* method) ; // System.Void System.Collections.ObjectModel.ReadOnlyCollection`1::.ctor(System.Collections.Generic.IList`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1__ctor_mF2D2ACE0752C3B97343B72328D49200F45C14B65_gshared (ReadOnlyCollection_1_t5397DF0DB61D1090E7BBC89395CECB8D020CED92* __this, RuntimeObject* ___list0, const RuntimeMethod* method) ; // System.Void System.Collections.Generic.List`1::.ctor(System.Collections.Generic.IEnumerable`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mE097DBD72433D1AFC11733F5678602603A756424_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___collection0, const RuntimeMethod* method) ; // System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ReadOnlyCollection_1_get_Count_mE6BED30C94187FC8CC2C7E5CAF0163455240223C_gshared (ReadOnlyCollection_1_t5397DF0DB61D1090E7BBC89395CECB8D020CED92* __this, const RuntimeMethod* method) ; // System.Void System.Collections.ObjectModel.ReadOnlyCollection`1::CopyTo(T[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1_CopyTo_m2AB7AC16F5BDBFEB664040F852CC922277C872F2_gshared (ReadOnlyCollection_1_t5397DF0DB61D1090E7BBC89395CECB8D020CED92* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___array0, int32_t ___index1, const RuntimeMethod* method) ; // T System.Collections.ObjectModel.ReadOnlyCollection`1::get_Item(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ReadOnlyCollection_1_get_Item_m88FE6EF1106EAB22F63554956C77E25339159136_gshared (ReadOnlyCollection_1_t5397DF0DB61D1090E7BBC89395CECB8D020CED92* __this, int32_t ___index0, const RuntimeMethod* method) ; // System.Int32 System.Span`1::get_Length() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Span_1_get_Length_m8E944E4954E037877A25B9FF6B901F1F901D4769_gshared_inline (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305* __this, const RuntimeMethod* method) ; // T& System.Runtime.InteropServices.MemoryMarshal::GetReference(System.Span`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* MemoryMarshal_GetReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m59D122F4A8516149EE7D183E97926157DF41EA1B_gshared (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 ___span0, const RuntimeMethod* method) ; // System.Void System.ValueTuple`3::.ctor(T1,T2,T3) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_3__ctor_mE0A5AB1D30678D2D6913FC8C3E7EBEDB4D5B5801_gshared (ValueTuple_3_tFD2ADB3DA89E958885034AAFEF1ABDA8C814D987* __this, RuntimeObject* ___item10, int32_t ___item21, int32_t ___item32, const RuntimeMethod* method) ; // System.Void System.Buffers.SpanAction`2>::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SpanAction_2__ctor_m4BBCE8F9C0E8FCC935E1765742799AEAD48606AE_gshared (SpanAction_2_t65B015FEFE1F64814AC2EFA0E19A38B1CFC53178* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ; // System.String System.String::Create>(System.Int32,TState,System.Buffers.SpanAction`2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Create_TisValueTuple_3_tFD2ADB3DA89E958885034AAFEF1ABDA8C814D987_m5E409288A7637C431B8D0248F411CC1378386DE4_gshared (int32_t ___length0, ValueTuple_3_tFD2ADB3DA89E958885034AAFEF1ABDA8C814D987 ___state1, SpanAction_2_t65B015FEFE1F64814AC2EFA0E19A38B1CFC53178* ___action2, const RuntimeMethod* method) ; // System.Void System.ReadOnlySpan`1::.ctor(T[],System.Int32,System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReadOnlySpan_1__ctor_m7B5C2765879EA5E8D1617D834CC465A39540A913_gshared_inline (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___array0, int32_t ___start1, int32_t ___length2, const RuntimeMethod* method) ; // System.Int32 System.ReadOnlySpan`1::get_Length() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ReadOnlySpan_1_get_Length_m54864A0BB817050A9110E85BB5FB31EF63699982_gshared_inline (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D* __this, const RuntimeMethod* method) ; // System.ReadOnlySpan`1 System.ReadOnlySpan`1::Slice(System.Int32,System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ReadOnlySpan_1_Slice_mDEEA4C304B13C8F7A63BC3D60B62FF17BBEE282B_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, int32_t ___start0, int32_t ___length1, const RuntimeMethod* method) ; // System.ReadOnlySpan`1 System.ReadOnlySpan`1::op_Implicit(T[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ReadOnlySpan_1_op_Implicit_mE8C60AF5247A6927ED5FB2E409C9BEA8881763A7_gshared (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___array0, const RuntimeMethod* method) ; // T& System.Runtime.InteropServices.MemoryMarshal::GetReference(System.ReadOnlySpan`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar* MemoryMarshal_GetReference_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_m90426C97E513B64C17AE47E597545E6686B0900E_gshared (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___span0, const RuntimeMethod* method) ; // System.Void System.ReadOnlySpan`1::.ctor(T[]) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReadOnlySpan_1__ctor_m1D3E8C5A560BE65D9A5C3E5D0D891C79F4895B0B_gshared_inline (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___array0, const RuntimeMethod* method) ; // T& System.Runtime.InteropServices.MemoryMarshal::GetReference(System.ReadOnlySpan`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* MemoryMarshal_GetReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mE630BC590135F8CE4B147BB7DF7DD45C759397E5_gshared (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D ___span0, const RuntimeMethod* method) ; // System.ReadOnlySpan`1 System.ReadOnlySpan`1::Slice(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ReadOnlySpan_1_Slice_mBF43FC5284A77519BB9C3BAB34F66A0A4B78CFE2_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, int32_t ___start0, const RuntimeMethod* method) ; // System.Span`1 System.Span`1::Slice(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 Span_1_Slice_m720734AA48ECB663CAA0594530927B9015A64341_gshared_inline (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305* __this, int32_t ___start0, const RuntimeMethod* method) ; // System.Span`1 System.Span`1::Slice(System.Int32,System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D Span_1_Slice_mEFBC3C78FD443FFE23F9E841D43B7B0271622843_gshared_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, int32_t ___start0, int32_t ___length1, const RuntimeMethod* method) ; // System.ReadOnlySpan`1 System.Span`1::op_Implicit(System.Span`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 Span_1_op_Implicit_mD65020B112814C67FED9F2C3DE2B0B78D4E2A486_gshared (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___span0, const RuntimeMethod* method) ; // System.Int32 System.Span`1::get_Length() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Span_1_get_Length_mB79622153F80AD55A805C005842AF045F4FCF992_gshared_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, const RuntimeMethod* method) ; // T[] System.Array::Empty() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* Array_Empty_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m89F7B056854DF715AA3E2B78EB84D5FA3878E474_gshared_inline (const RuntimeMethod* method) ; // System.Void System.ReadOnlySpan`1::.ctor(System.Void*,System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReadOnlySpan_1__ctor_mB16A8EC9CCDE68A166108BE32B6DDA7D7C88BC17_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, void* ___pointer0, int32_t ___length1, const RuntimeMethod* method) ; // System.Span`1 System.Span`1::op_Implicit(T[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 Span_1_op_Implicit_mDC0AC5B50ABB4FDDA74ADE064641DB22D560B357_gshared (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___array0, const RuntimeMethod* method) ; // System.Void System.ReadOnlySpan`1::.ctor(T&,System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, Il2CppChar* ___ptr0, int32_t ___length1, const RuntimeMethod* method) ; // System.Void System.Span`1::.ctor(T&,System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Span_1__ctor_m947BF95D54571BF3897F96822B7A8FDA5853497B_gshared_inline (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305* __this, uint8_t* ___ptr0, int32_t ___length1, const RuntimeMethod* method) ; // System.Void System.Span`1::.ctor(T&,System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Span_1__ctor_mC9BE2938B716B46BB6B9070B94DBE5CE814BC0E2_gshared_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, Il2CppChar* ___ptr0, int32_t ___length1, const RuntimeMethod* method) ; // System.Void System.Object::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2 (RuntimeObject* __this, const RuntimeMethod* method) ; // System.Void System.TimeZoneInfo::TZif_ParseRaw(System.Byte[],System.TimeZoneInfo/TZifHead&,System.DateTime[]&,System.Byte[]&,System.TimeZoneInfo/TZifType[]&,System.String&,System.Boolean[]&,System.Boolean[]&,System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo_TZif_ParseRaw_mF15604A6DFAAE87C5D3E467430068ACBA59D18F4 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___data0, TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* ___t1, DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1** ___dts2, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** ___typeOfLocalTime3, TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98** ___transitionType4, String_t** ___zoneAbbreviations5, BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4** ___StandardTime6, BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4** ___GmtTime7, String_t** ___futureTransitionsPosixFormat8, const RuntimeMethod* method) ; // System.DateTime System.DateTime::get_UtcNow() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_get_UtcNow_m5D776FFEBC81592B361E4C7AF373297C5DFB46FD (const RuntimeMethod* method) ; // System.String System.TimeZoneInfo::TZif_GetZoneAbbreviation(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_TZif_GetZoneAbbreviation_m012CB3384D9B825AE2BB1C153B4BDD1E8F9FCB82 (String_t* ___zoneAbbreviations0, int32_t ___index1, const RuntimeMethod* method) ; // System.Boolean System.DateTime::op_LessThanOrEqual(System.DateTime,System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_op_LessThanOrEqual_m458241757285ECEABEDA1F8105546FBFCD9ECB80 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___t10, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___t21, const RuntimeMethod* method) ; // System.Int64 System.TimeSpan::get_Ticks() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t TimeSpan_get_Ticks_mC50131E57621F29FACC53B3241432ABB874FA1B5_inline (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* __this, const RuntimeMethod* method) ; // System.Int32 System.TimeSpan::get_Hours() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TimeSpan_get_Hours_m770B4B777A816E051EFDA317C28DA9A4F39D6CFB (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* __this, const RuntimeMethod* method) ; // System.Int32 System.TimeSpan::get_Minutes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TimeSpan_get_Minutes_m93E37D01CD6DA2DE5B35609D740D322E270B678F (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* __this, const RuntimeMethod* method) ; // System.Void System.TimeSpan::.ctor(System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeSpan__ctor_mF8B85616C009D35D860DA0254327E8AAF54822A1 (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* __this, int32_t ___hours0, int32_t ___minutes1, int32_t ___seconds2, const RuntimeMethod* method) ; // System.Void System.TimeZoneInfo::TZif_GenerateAdjustmentRules(System.TimeZoneInfo/AdjustmentRule[]&,System.TimeSpan,System.DateTime[],System.Byte[],System.TimeZoneInfo/TZifType[],System.Boolean[],System.Boolean[],System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo_TZif_GenerateAdjustmentRules_mD65E889C847FAAF4D63D73E7D2BEBE8009C5B4DB (AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA** ___rules0, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___baseUtcOffset1, DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1* ___dts2, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___typeOfLocalTime3, TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* ___transitionType4, BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___StandardTime5, BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___GmtTime6, String_t* ___futureTransitionsPosixFormat7, const RuntimeMethod* method) ; // System.Void System.TimeZoneInfo::ValidateTimeZoneInfo(System.String,System.TimeSpan,System.TimeZoneInfo/AdjustmentRule[],System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo_ValidateTimeZoneInfo_m5E219078273AC961FA3D3B6CB9E08EAA51D3DFAB (String_t* ___id0, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___baseUtcOffset1, AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* ___adjustmentRules2, bool* ___adjustmentRulesSupportDst3, const RuntimeMethod* method) ; // System.TimeZoneInfo System.TimeZoneInfo::GetLocalTimeZoneFromTzFile() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* TimeZoneInfo_GetLocalTimeZoneFromTzFile_m45F363F7BFD6B14EBB317C91549D44E0CC6612B0 (const RuntimeMethod* method) ; // System.String System.TimeZoneInfo::GetTzEnvironmentVariable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_GetTzEnvironmentVariable_m14F07770089099DAEAA48A8822F55DAC7C84A04E (const RuntimeMethod* method) ; // System.Boolean System.TimeZoneInfo::TryLoadTzFile(System.String,System.Byte[]&,System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_TryLoadTzFile_m22A1EEE66F39ED2A427544602FA8916E2924D574 (String_t* ___tzFilePath0, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** ___rawData1, String_t** ___id2, const RuntimeMethod* method) ; // System.String System.TimeZoneInfo::GetTimeZoneDirectory() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_GetTimeZoneDirectory_m253A7A85E31FC7295048725DDDEF0F8016A47995 (const RuntimeMethod* method) ; // System.String System.IO.Path::Combine(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Path_Combine_m64754D4E08990CE1EBC41CDF197807EE4B115474 (String_t* ___path10, String_t* ___path21, const RuntimeMethod* method) ; // System.Int32 System.String::get_Length() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline (String_t* __this, const RuntimeMethod* method) ; // System.Char System.String::get_Chars(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3 (String_t* __this, int32_t ___index0, const RuntimeMethod* method) ; // System.String System.Environment::GetEnvironmentVariable(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetEnvironmentVariable_mFA1E83F28F2E74EF3312F9D4B582FFBE38804ED8 (String_t* ___variable0, const RuntimeMethod* method) ; // System.Boolean System.String::IsNullOrEmpty(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_IsNullOrEmpty_m54CF0907E7C4F3AFB2E796A13DC751ECBB8DB64A (String_t* ___value0, const RuntimeMethod* method) ; // System.String System.String::Substring(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472 (String_t* __this, int32_t ___startIndex0, const RuntimeMethod* method) ; // System.Boolean System.IO.File::Exists(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool File_Exists_mD7E7A84A6B9E9A9BADBDA7C46AAE0624EF106D85 (String_t* ___path0, const RuntimeMethod* method) ; // System.Byte[] System.IO.File::ReadAllBytes(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* File_ReadAllBytes_mE0C2C5A0270CD40C496E85B1D8BA15C607E7011E (String_t* ___path0, const RuntimeMethod* method) ; // System.String System.TimeZoneInfo::FindTimeZoneIdUsingReadLink(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_FindTimeZoneIdUsingReadLink_m403C0CCEB85A050804FFD3B26D3D5BC067CC2D2A (String_t* ___tzFilePath0, const RuntimeMethod* method) ; // System.String System.TimeZoneInfo::FindTimeZoneId(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_FindTimeZoneId_mC9688C587F7307F76398952BACE3DBBFA8CCC6CD (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___rawData0, const RuntimeMethod* method) ; // System.String Interop/Sys::ReadLink(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Sys_ReadLink_m2E8E48F6B7D1683E255387834625816C3FAE9D01 (String_t* ___path0, const RuntimeMethod* method) ; // System.Boolean System.String::StartsWith(System.String,System.StringComparison) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_StartsWith_mA2A4405B1B9F3653A6A9AA7F223F68D86A0C6264 (String_t* __this, String_t* ___value0, int32_t ___comparisonType1, const RuntimeMethod* method) ; // System.Void System.Span`1::.ctor(System.Void*,System.Int32) inline void Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, void* ___pointer0, int32_t ___length1, const RuntimeMethod* method) { (( void (*) (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D*, void*, int32_t, const RuntimeMethod*))Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_gshared_inline)(__this, ___pointer0, ___length1, method); } // System.ReadOnlySpan`1 Interop/Sys/DirectoryEntry::GetName(System.Span`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 DirectoryEntry_GetName_mF08AE47152428B103C9ADC1C339DD5FA41BAE996 (DirectoryEntry_t4FE272EECFF03032105F6F23CB60435287DB1CA2* __this, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___buffer0, const RuntimeMethod* method) ; // System.Int32 System.ReadOnlySpan`1::get_Length() inline int32_t ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, const RuntimeMethod* method) { return (( int32_t (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1*, const RuntimeMethod*))ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_gshared_inline)(__this, method); } // System.ReadOnlySpan`1 System.MemoryExtensions::AsSpan(System.String) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 MemoryExtensions_AsSpan_m738C019A02A3B4B8BFEACFFA013409898B81D4FB_inline (String_t* ___text0, const RuntimeMethod* method) ; // System.String System.IO.Path::Join(System.ReadOnlySpan`1,System.ReadOnlySpan`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Path_Join_mF50F1A95C4CAA518E8CDFA265E834D118B6915B1 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___path10, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___path21, const RuntimeMethod* method) ; // System.Int32 Interop/Sys::GetReadDirRBufferSize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Sys_GetReadDirRBufferSize_mC5C8CAAAC42CF6C03F3C51977A7589837230D426 (const RuntimeMethod* method) ; // System.Buffers.ArrayPool`1 System.Buffers.ArrayPool`1::get_Shared() inline ArrayPool_1_t645A9854926DCA747C654687A362AD03D55D2C07* ArrayPool_1_get_Shared_mF8BCD25CBF8FDFF0B3B34EA3845722E4E10F310F_inline (const RuntimeMethod* method) { return (( ArrayPool_1_t645A9854926DCA747C654687A362AD03D55D2C07* (*) (const RuntimeMethod*))ArrayPool_1_get_Shared_mF8BCD25CBF8FDFF0B3B34EA3845722E4E10F310F_gshared_inline)(method); } // System.IntPtr Interop/Sys::OpenDir(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t Sys_OpenDir_m833D40C63F67EC4A08D47DBFB4F74833F5B26969 (String_t* ___path0, const RuntimeMethod* method) ; // System.Boolean System.IntPtr::op_Equality(System.IntPtr,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IntPtr_op_Equality_m73759B51FE326460AC87A0E386480226EF2FABED (intptr_t ___value10, intptr_t ___value21, const RuntimeMethod* method) ; // Interop/ErrorInfo Interop/Sys::GetLastErrorInfo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8 Sys_GetLastErrorInfo_m73FA29F9719F04859AD886D1EAC99FE23380130F (const RuntimeMethod* method) ; // System.Exception Interop::GetExceptionForIoErrno(Interop/ErrorInfo,System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* Interop_GetExceptionForIoErrno_m4C5DFA9F3A7942A0DF7D8D9828557D14F5503190 (ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8 ___errorInfo0, String_t* ___path1, bool ___isDirectory2, const RuntimeMethod* method) ; // System.Boolean System.IntPtr::op_Inequality(System.IntPtr,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IntPtr_op_Inequality_m2F715312CBFCE7E1A81D0689F68B97218E37E5D1 (intptr_t ___value10, intptr_t ___value21, const RuntimeMethod* method) ; // System.Int32 Interop/Sys::CloseDir(System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Sys_CloseDir_m8A869EE865D22CB3F96F35A28E6423E768EC501B (intptr_t ___dir0, const RuntimeMethod* method) ; // System.String System.TimeZoneInfo::GetDirectoryEntryFullPath(Interop/Sys/DirectoryEntry&,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_GetDirectoryEntryFullPath_mF11D4B63B73A0FF654C28A7D28BC1065836D4F96 (DirectoryEntry_t4FE272EECFF03032105F6F23CB60435287DB1CA2* ___dirent0, String_t* ___currentPath1, const RuntimeMethod* method) ; // System.Int32 Interop/Sys::Stat(System.String,Interop/Sys/FileStatus&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Sys_Stat_m63486C657CE0FA95CCFD5EC5833F8D55022AEE0D (String_t* ___path0, FileStatus_tCB96EDE0D0F945F685B9BBED6DBF0731207458C2* ___output1, const RuntimeMethod* method) ; // System.Void System.Collections.Generic.List`1::.ctor() inline void List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* __this, const RuntimeMethod* method) { (( void (*) (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1::Add(T) inline void List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_inline (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* __this, String_t* ___item0, const RuntimeMethod* method) { (( void (*) (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*, String_t*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___item0, method); } // System.Boolean System.Predicate`1::Invoke(T) inline bool Predicate_1_Invoke_m180565420FDCD7211D85CB31534D98770D88A4FF_inline (Predicate_1_tEB15485FDAFC48C82EE54427A8DBDB401213706C* __this, String_t* ___obj0, const RuntimeMethod* method) { return (( bool (*) (Predicate_1_tEB15485FDAFC48C82EE54427A8DBDB401213706C*, String_t*, const RuntimeMethod*))Predicate_1_Invoke_m6AC449189DCEE89A4FA2A2B724DE296A1DFB6A9B_gshared_inline)(__this, ___obj0, method); } // System.Int32 Interop/Sys::ReadDirR(System.IntPtr,System.Byte*,System.Int32,Interop/Sys/DirectoryEntry&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Sys_ReadDirR_m8D9D19A917770B6F8A98573021A68C0CCBE18C4F (intptr_t ___dir0, uint8_t* ___buffer1, int32_t ___bufferSize2, DirectoryEntry_t4FE272EECFF03032105F6F23CB60435287DB1CA2* ___outputEntry3, const RuntimeMethod* method) ; // System.Int32 System.Collections.Generic.List`1::get_Count() inline int32_t List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_inline (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* __this, const RuntimeMethod* method) { return (( int32_t (*) (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method); } // T System.Collections.Generic.List`1::get_Item(System.Int32) inline String_t* List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8 (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* __this, int32_t ___index0, const RuntimeMethod* method) { return (( String_t* (*) (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___index0, method); } // System.Void System.Collections.Generic.List`1::RemoveAt(System.Int32) inline void List_1_RemoveAt_m031D3A21689276A872FCA7566C8F2F79F9581F0D (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* __this, int32_t ___index0, const RuntimeMethod* method) { (( void (*) (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*, int32_t, const RuntimeMethod*))List_1_RemoveAt_m54F62297ADEE4D4FDA697F49ED807BF901201B54_gshared)(__this, ___index0, method); } // System.Void System.TimeZoneInfo/<>c__DisplayClass16_0::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass16_0__ctor_mBA6BC752E40ECF2E8E0A473CF1B047F750FF5171 (U3CU3Ec__DisplayClass16_0_t0745DC96E806B3099E8FA9EB0C1315DEDD5CBFC0* __this, const RuntimeMethod* method) ; // System.Void System.Predicate`1::.ctor(System.Object,System.IntPtr) inline void Predicate_1__ctor_m792445D8ACC019EE3CE897994AF6C04721045A7E (Predicate_1_tEB15485FDAFC48C82EE54427A8DBDB401213706C* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Predicate_1_tEB15485FDAFC48C82EE54427A8DBDB401213706C*, RuntimeObject*, intptr_t, const RuntimeMethod*))Predicate_1__ctor_m3E007299121A15DF80F4A210FF8C20E5DF688F20_gshared)(__this, ___object0, ___method1, method); } // System.Void System.TimeZoneInfo::EnumerateFilesRecursively(System.String,System.Predicate`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo_EnumerateFilesRecursively_mA8D6F92EA47A8CAD801822B93063477494248890 (String_t* ___path0, Predicate_1_tEB15485FDAFC48C82EE54427A8DBDB401213706C* ___condition1, const RuntimeMethod* method) ; // System.Void System.IO.FileStream::.ctor(System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileStream__ctor_m059A8F48B2F463D020113605765EC40F2D54E928 (FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* __this, String_t* ___path0, int32_t ___mode1, int32_t ___access2, int32_t ___share3, int32_t ___bufferSize4, const RuntimeMethod* method) ; // System.Exception System.IO.Error::GetEndOfFile() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* Error_GetEndOfFile_m183A2B9C5B75DA64D1D0A547EE542A41D0477DE3 (const RuntimeMethod* method) ; // System.Boolean System.TimeZoneInfo::TryGetLocalTzFile(System.Byte[]&,System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_TryGetLocalTzFile_m94DCFB1FC02C5CFB3B278C9C0273873D88BEDAC7 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** ___rawData0, String_t** ___id1, const RuntimeMethod* method) ; // System.TimeZoneInfo System.TimeZoneInfo::GetTimeZoneFromTzData(System.Byte[],System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* TimeZoneInfo_GetTimeZoneFromTzData_m5DDA48CBB6FFBA2C0C27F6B393A77EFD3FAB1B59 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___rawData0, String_t* ___id1, const RuntimeMethod* method) ; // System.TimeZoneInfo System.TimeZoneInfo::CreateLocalUnity() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* TimeZoneInfo_CreateLocalUnity_mA53736609A9CAF1A706FB94747FE37CE2FCF27AB (const RuntimeMethod* method) ; // System.TimeZoneInfo System.TimeZoneInfo::get_Utc() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* TimeZoneInfo_get_Utc_m482B36736E8BCDACAD739CFEB993B7BD7AADA726_inline (const RuntimeMethod* method) ; // System.Void System.TimeZoneInfo::.ctor(System.Byte[],System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo__ctor_mE3FB264716A8CF7BD4F9CB48F2CA6628E3EFE2F5 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___data0, String_t* ___id1, bool ___dstDisabled2, const RuntimeMethod* method) ; // System.String System.TimeZoneInfo::GetTimeZoneDirectoryUnity() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_GetTimeZoneDirectoryUnity_m5B6F71D50A7694A5E7B1015AE1ACFACD938F15FE_inline (const RuntimeMethod* method) ; // System.Boolean System.String::EndsWith(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_EndsWith_m1345909BD17FAD2AE0F70BC1B5CFC2010CF226B0 (String_t* __this, Il2CppChar ___value0, const RuntimeMethod* method) ; // System.String System.Char::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Char_ToString_m2A308731F9577C06AF3C0901234E2EAC8327410C (Il2CppChar* __this, const RuntimeMethod* method) ; // System.String System.String::Concat(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D (String_t* ___str00, String_t* ___str11, const RuntimeMethod* method) ; // System.TimeZoneInfo System.TimeZoneInfo::get_Local() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* TimeZoneInfo_get_Local_mFE5FE1C25C014521B6BCC9BE11AA67A1AF3C91B0 (const RuntimeMethod* method) ; // System.TimeSpan System.TimeZoneInfo::GetUtcOffsetFromUtc(System.DateTime,System.TimeZoneInfo,System.Boolean&,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_GetUtcOffsetFromUtc_m56457555F1923B673BDA645C17CBE6E7547B13EE (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___time0, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___zone1, bool* ___isDaylightSavings2, bool* ___isAmbiguousLocalDst3, const RuntimeMethod* method) ; // System.Void System.Collections.Generic.List`1::.ctor() inline void List_1__ctor_mE368A11FD9D47BA833943E9593471D8336AF5C0A (List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* __this, const RuntimeMethod* method) { (( void (*) (List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method); } // System.Void System.TimeZoneInfo::TZif_GenerateAdjustmentRule(System.Int32&,System.TimeSpan,System.Collections.Generic.List`1,System.DateTime[],System.Byte[],System.TimeZoneInfo/TZifType[],System.Boolean[],System.Boolean[],System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo_TZif_GenerateAdjustmentRule_m1D35DBFF85D3EF07FE7C1F6B25CBC0F0D8681EF2 (int32_t* ___index0, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___timeZoneBaseUtcOffset1, List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* ___rulesList2, DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1* ___dts3, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___typeOfLocalTime4, TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* ___transitionTypes5, BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___StandardTime6, BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___GmtTime7, String_t* ___futureTransitionsPosixFormat8, const RuntimeMethod* method) ; // T[] System.Collections.Generic.List`1::ToArray() inline AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* List_1_ToArray_m4C6A88B12B46631D06072C836E9D709251CFF260 (List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* __this, const RuntimeMethod* method) { return (( AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* (*) (List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C*, const RuntimeMethod*))List_1_ToArray_mD7E4F8E7C11C3C67CB5739FCC0A6E86106A6291F_gshared)(__this, method); } // System.Boolean System.DateTime::op_Equality(System.DateTime,System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_op_Equality_mFB772D884EA91082BFC51212E79B9D33A67CA66F (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___d10, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___d21, const RuntimeMethod* method) ; // System.Int32 System.Collections.Generic.List`1::get_Count() inline int32_t List_1_get_Count_m555A94A70E4F9F1DBC02B3B7A446EEAAAF6647A5_inline (List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* __this, const RuntimeMethod* method) { return (( int32_t (*) (List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method); } // System.TimeZoneInfo/TZifType System.TimeZoneInfo::TZif_GetEarlyDateTransitionType(System.TimeZoneInfo/TZifType[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 TimeZoneInfo_TZif_GetEarlyDateTransitionType_m95E0426F6E27E8BF7E47EC7B9CBCB211BF178C0C (TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* ___transitionTypes0, const RuntimeMethod* method) ; // System.TimeSpan System.TimeZoneInfo::TZif_CalculateTransitionOffsetFromBase(System.TimeSpan,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_TZif_CalculateTransitionOffsetFromBase_mDD1FD808E96DCC4FF8D07A47147DE7EE7A0549B5 (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___transitionOffset0, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___timeZoneBaseUtcOffset1, const RuntimeMethod* method) ; // System.DateTime System.DateTime::AddTicks(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_AddTicks_m76D145EA6924296227BB2DD9A5A18C8A2B72EF1D (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, int64_t ___value0, const RuntimeMethod* method) ; // System.TimeZoneInfo/AdjustmentRule System.TimeZoneInfo/AdjustmentRule::CreateAdjustmentRule(System.DateTime,System.DateTime,System.TimeSpan,System.TimeZoneInfo/TransitionTime,System.TimeZoneInfo/TransitionTime,System.TimeSpan,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* AdjustmentRule_CreateAdjustmentRule_mE8192F76B0E396ECFFBDF0A90ED7DB3F70B7C87F (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateStart0, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateEnd1, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___daylightDelta2, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ___daylightTransitionStart3, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ___daylightTransitionEnd4, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___baseUtcOffsetDelta5, bool ___noDaylightTransitions6, const RuntimeMethod* method) ; // System.Boolean System.TimeZoneInfo::IsValidAdjustmentRuleOffest(System.TimeSpan,System.TimeZoneInfo/AdjustmentRule) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_IsValidAdjustmentRuleOffest_m04FC4314480C802208E96C633F7B812BD964AB80 (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___baseUtcOffset0, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___adjustmentRule1, const RuntimeMethod* method) ; // System.Void System.TimeZoneInfo::NormalizeAdjustmentRuleOffset(System.TimeSpan,System.TimeZoneInfo/AdjustmentRule&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo_NormalizeAdjustmentRuleOffset_mB2F0C2208D45713F1907FB1E1E523C26762B89A1 (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___baseUtcOffset0, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07** ___adjustmentRule1, const RuntimeMethod* method) ; // System.Void System.Collections.Generic.List`1::Add(T) inline void List_1_Add_mC19688469DF392DB765D7CDC2E9382514E5EF7E7_inline (List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* __this, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___item0, const RuntimeMethod* method) { (( void (*) (List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C*, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___item0, method); } // System.DateTime System.DateTime::AddMilliseconds(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_AddMilliseconds_mEF44A0EE635A478B7B0CDAA438D2240C14C88D05 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, double ___value0, const RuntimeMethod* method) ; // System.TimeZoneInfo/TransitionTime System.TimeZoneInfo/TransitionTime::CreateFixedDateRule(System.DateTime,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 TransitionTime_CreateFixedDateRule_m67417DBC5A7651EFC46B9719E75984AA61073122 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___timeOfDay0, int32_t ___month1, int32_t ___day2, const RuntimeMethod* method) ; // System.TimeZoneInfo/AdjustmentRule System.TimeZoneInfo::TZif_CreateAdjustmentRuleForPosixFormat(System.String,System.DateTime,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* TimeZoneInfo_TZif_CreateAdjustmentRuleForPosixFormat_m2CCD38F3E19C6156F300665022B195CCD270E92E (String_t* ___posixFormat0, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___startTransitionDate1, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___timeZoneBaseUtcOffset2, const RuntimeMethod* method) ; // System.TimeSpan System.TimeSpan::op_Subtraction(System.TimeSpan,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeSpan_op_Subtraction_mFFB8933364C5E1E2187CA0605445893F2872FBB8 (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___t10, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___t21, const RuntimeMethod* method) ; // System.Void System.InvalidTimeZoneException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidTimeZoneException__ctor_m4B7D809BE84CD42FF08EA16752B6BAC7F90D4C1A (InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD* __this, String_t* ___message0, const RuntimeMethod* method) ; // System.Boolean System.TimeZoneInfo::TZif_ParsePosixFormat(System.String,System.String&,System.String&,System.String&,System.String&,System.String&,System.String&,System.String&,System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_TZif_ParsePosixFormat_m8E26F5D9DAC682523891080DB685C3F1C7DC57EC (String_t* ___posixFormat0, String_t** ___standardName1, String_t** ___standardOffset2, String_t** ___daylightSavingsName3, String_t** ___daylightSavingsOffset4, String_t** ___start5, String_t** ___startTime6, String_t** ___end7, String_t** ___endTime8, const RuntimeMethod* method) ; // System.Nullable`1 System.TimeZoneInfo::TZif_ParseOffsetString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272 TimeZoneInfo_TZif_ParseOffsetString_mB3960BE508DC9FB327ECE8D61F14D784BC6AA3B8 (String_t* ___offset0, const RuntimeMethod* method) ; // System.Boolean System.Nullable`1::get_HasValue() inline bool Nullable_1_get_HasValue_mD63976C410D14373D6D1D3E713C09B1E152F2166_inline (Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272* __this, const RuntimeMethod* method) { return (( bool (*) (Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272*, const RuntimeMethod*))Nullable_1_get_HasValue_mD63976C410D14373D6D1D3E713C09B1E152F2166_gshared_inline)(__this, method); } // T System.Nullable`1::get_Value() inline TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A Nullable_1_get_Value_mC7511CCEBD1BB6FEEA7903DBB81ED7290D00DDD3 (Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272* __this, const RuntimeMethod* method) { return (( TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A (*) (Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272*, const RuntimeMethod*))Nullable_1_get_Value_mC7511CCEBD1BB6FEEA7903DBB81ED7290D00DDD3_gshared)(__this, method); } // System.TimeSpan System.TimeSpan::Negate() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeSpan_Negate_m3BF3036191A2FDC35250891CD82AD3283A13ABB4 (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* __this, const RuntimeMethod* method) ; // System.TimeZoneInfo/TransitionTime System.TimeZoneInfo::TZif_CreateTransitionTimeFromPosixRule(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 TimeZoneInfo_TZif_CreateTransitionTimeFromPosixRule_m010A4CD46321B7ED89B3833048A44534F4E7873A (String_t* ___date0, String_t* ___time1, const RuntimeMethod* method) ; // System.Boolean System.Int32::TryParse(System.String,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int32_TryParse_mFC6BFCB86964E2BCA4052155B10983837A695EA4 (String_t* ___s0, int32_t* ___result1, const RuntimeMethod* method) ; // System.Void System.Nullable`1::.ctor(T) inline void Nullable_1__ctor_m57671EDBF4C8A3BEF5EF30DC71BE6C17C6A657AC (Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272* __this, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___value0, const RuntimeMethod* method) { (( void (*) (Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272*, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A, const RuntimeMethod*))Nullable_1__ctor_m57671EDBF4C8A3BEF5EF30DC71BE6C17C6A657AC_gshared)(__this, ___value0, method); } // System.Globalization.CultureInfo System.Globalization.CultureInfo::get_InvariantCulture() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425 (const RuntimeMethod* method) ; // System.Boolean System.TimeSpan::TryParseExact(System.String,System.String,System.IFormatProvider,System.TimeSpan&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeSpan_TryParseExact_mCDE71F17CABEA4B9E21C58A08A82DCF423D560A8 (String_t* ___input0, String_t* ___format1, RuntimeObject* ___formatProvider2, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* ___result3, const RuntimeMethod* method) ; // System.Int32 System.TimeSpan::get_Seconds() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TimeSpan_get_Seconds_m8CA21613DC31BD025C5D30D41BAD0ED50827578B (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* __this, const RuntimeMethod* method) ; // System.Boolean System.TimeSpan::op_LessThan(System.TimeSpan,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeSpan_op_LessThan_mCBD324D4CB69C45EF34ABEBE7B19BB23528897BA (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___t10, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___t21, const RuntimeMethod* method) ; // System.Void System.DateTime::.ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTime__ctor_m1F66A4327FE6B127F0F0E83A70CED25DB0DFFB00 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, int32_t ___year0, int32_t ___month1, int32_t ___day2, int32_t ___hour3, int32_t ___minute4, int32_t ___second5, const RuntimeMethod* method) ; // System.DateTime System.DateTime::op_Addition(System.DateTime,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_op_Addition_m23FACB2D207CB24BE0E9C06AB4CF8CE0C4F0CAD8 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___d0, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___t1, const RuntimeMethod* method) ; // System.Boolean System.TimeZoneInfo::TZif_ParseMDateRule(System.String,System.Int32&,System.Int32&,System.DayOfWeek&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_TZif_ParseMDateRule_m6947E5E89F7DA99F1D073316ED30A10209B5A962 (String_t* ___dateRule0, int32_t* ___month1, int32_t* ___week2, int32_t* ___dayOfWeek3, const RuntimeMethod* method) ; // System.String SR::Format(System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_Format_mB99C6F1BE061EA1427A45176E0CAFB2A2C76D03F (String_t* ___resourceFormat0, RuntimeObject* ___p11, const RuntimeMethod* method) ; // System.DateTime System.TimeZoneInfo::ParseTimeOfDay(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D TimeZoneInfo_ParseTimeOfDay_m528CB6592E9A28BAD457BBCE2B9DA4C8A76905CB (String_t* ___time0, const RuntimeMethod* method) ; // System.TimeZoneInfo/TransitionTime System.TimeZoneInfo/TransitionTime::CreateFloatingDateRule(System.DateTime,System.Int32,System.Int32,System.DayOfWeek) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 TransitionTime_CreateFloatingDateRule_m1859EDF4DCD24D07D78FD3B1E67BB89636374C67 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___timeOfDay0, int32_t ___month1, int32_t ___week2, int32_t ___dayOfWeek3, const RuntimeMethod* method) ; // System.Void System.TimeZoneInfo::TZif_ParseJulianDay(System.String,System.Int32&,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo_TZif_ParseJulianDay_mB379BF3B1071727E2A2DC587890A20E69C59A7A7 (String_t* ___date0, int32_t* ___month1, int32_t* ___day2, const RuntimeMethod* method) ; // System.Int32 System.String::IndexOf(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966 (String_t* __this, Il2CppChar ___value0, const RuntimeMethod* method) ; // System.Int32 System.String::IndexOf(System.Char,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_m15B90A59047584420D227EE3A7EAC0C5EAF676F4 (String_t* __this, Il2CppChar ___value0, int32_t ___startIndex1, const RuntimeMethod* method) ; // System.ReadOnlySpan`1 System.MemoryExtensions::AsSpan(System.String,System.Int32,System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 MemoryExtensions_AsSpan_m5164781404FE3D882902D92409C003B29659A049_inline (String_t* ___text0, int32_t ___start1, int32_t ___length2, const RuntimeMethod* method) ; // System.Boolean System.Int32::TryParse(System.ReadOnlySpan`1,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int32_TryParse_m863CE63C2AB86C191164FC83708DF44B9010E0AE (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___s0, int32_t* ___result1, const RuntimeMethod* method) ; // System.ReadOnlySpan`1 System.MemoryExtensions::AsSpan(System.String,System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 MemoryExtensions_AsSpan_m814C0C68F0B84884C83C32C1DCBBC59069F07CAF_inline (String_t* ___text0, int32_t ___start1, const RuntimeMethod* method) ; // System.String System.TimeZoneInfo::TZif_ParsePosixName(System.String,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_TZif_ParsePosixName_m07D06D9BA63F479F887000F66FF6D53D544A58A6 (String_t* ___posixFormat0, int32_t* ___index1, const RuntimeMethod* method) ; // System.String System.TimeZoneInfo::TZif_ParsePosixOffset(System.String,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_TZif_ParsePosixOffset_mC8A3B2CF45DDC42BE6D0A414EF6A4168CC752BC9 (String_t* ___posixFormat0, int32_t* ___index1, const RuntimeMethod* method) ; // System.Void System.TimeZoneInfo::TZif_ParsePosixDateTime(System.String,System.Int32&,System.String&,System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo_TZif_ParsePosixDateTime_mD70E2D3536C187304D64FCCEDA1933A81C04B7F2 (String_t* ___posixFormat0, int32_t* ___index1, String_t** ___date2, String_t** ___time3, const RuntimeMethod* method) ; // System.Void System.Func`2::.ctor(System.Object,System.IntPtr) inline void Func_2__ctor_m86D272566839A59489924C367E316D2E516EC1F2 (Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F*, RuntimeObject*, intptr_t, const RuntimeMethod*))Func_2__ctor_m86D272566839A59489924C367E316D2E516EC1F2_gshared)(__this, ___object0, ___method1, method); } // System.String System.TimeZoneInfo::TZif_ParsePosixString(System.String,System.Int32&,System.Func`2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_TZif_ParsePosixString_m6D45D9F1A972031FF1311643C89BCCF08106F60B (String_t* ___posixFormat0, int32_t* ___index1, Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* ___breakCondition2, const RuntimeMethod* method) ; // System.String System.TimeZoneInfo::TZif_ParsePosixDate(System.String,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_TZif_ParsePosixDate_m6AA9DA907258180AE2FF150B9E2662F5B756A4DF (String_t* ___posixFormat0, int32_t* ___index1, const RuntimeMethod* method) ; // System.String System.TimeZoneInfo::TZif_ParsePosixTime(System.String,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_TZif_ParsePosixTime_m04F4633BA2FEC467E3F035595EA7885A297ADBFF (String_t* ___posixFormat0, int32_t* ___index1, const RuntimeMethod* method) ; // TResult System.Func`2::Invoke(T) inline bool Func_2_Invoke_m4733F0A0FE136C9F8DCE4963455215585E8BE2CD_inline (Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* __this, Il2CppChar ___arg0, const RuntimeMethod* method) { return (( bool (*) (Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F*, Il2CppChar, const RuntimeMethod*))Func_2_Invoke_m4733F0A0FE136C9F8DCE4963455215585E8BE2CD_gshared_inline)(__this, ___arg0, method); } // System.String System.String::Substring(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE (String_t* __this, int32_t ___startIndex0, int32_t ___length1, const RuntimeMethod* method) ; // System.Int32 System.TimeZoneInfo::TZif_ToInt32(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TimeZoneInfo_TZif_ToInt32_m93D4A73EBB7F61C19E9E51FD7A2FE6ED91DB68AA (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___value0, int32_t ___startIndex1, const RuntimeMethod* method) ; // System.Int64 System.TimeZoneInfo::TZif_ToInt64(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t TimeZoneInfo_TZif_ToInt64_m49A1A7BAB343B1FFC553987CE7CE67C9CA8BA618 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___value0, int32_t ___startIndex1, const RuntimeMethod* method) ; // System.DateTimeOffset System.DateTimeOffset::FromUnixTimeSeconds(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 DateTimeOffset_FromUnixTimeSeconds_m6B1B34845B27417D9BB528A75D123A50FB5F75AC (int64_t ___seconds0, const RuntimeMethod* method) ; // System.DateTime System.DateTimeOffset::get_UtcDateTime() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTimeOffset_get_UtcDateTime_mE7EB39F361C89E1367CBC03C3410BA34F194DA40 (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* __this, const RuntimeMethod* method) ; // System.Void System.TimeZoneInfo/TZifHead::.ctor(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TZifHead__ctor_m329594E5E291363A0A5C24A32DEAF3A794F8F96A (TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___data0, int32_t ___index1, const RuntimeMethod* method) ; // System.Int64 System.TimeZoneInfo::TZif_ToUnixTime(System.Byte[],System.Int32,System.TimeZoneInfo/TZVersion) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t TimeZoneInfo_TZif_ToUnixTime_m0A7E48994CE805B06F6180A35DC6299BF1408B22 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___value0, int32_t ___startIndex1, uint8_t ___version2, const RuntimeMethod* method) ; // System.DateTime System.TimeZoneInfo::TZif_UnixTimeToDateTime(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D TimeZoneInfo_TZif_UnixTimeToDateTime_m8335F8736D23560BCA8D6FF2F8C9B6478C912785 (int64_t ___unixTime0, const RuntimeMethod* method) ; // System.Void System.TimeZoneInfo/TZifType::.ctor(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TZifType__ctor_m078CAF246330F151602C5CF9582E315296C4F179 (TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___data0, int32_t ___index1, const RuntimeMethod* method) ; // System.Text.Encoding System.Text.Encoding::get_UTF8() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* Encoding_get_UTF8_m9700ADA8E0F244002B2A89B483F1B2133B8FE336 (const RuntimeMethod* method) ; // System.Boolean System.Nullable`1::get_HasValue() inline bool Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, const RuntimeMethod* method) { return (( bool (*) (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*, const RuntimeMethod*))Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_gshared_inline)(__this, method); } // T System.Nullable`1::get_Value() inline int32_t Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, const RuntimeMethod* method) { return (( int32_t (*) (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*, const RuntimeMethod*))Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_gshared)(__this, method); } // System.TimeSpan System.TimeZoneInfo::GetUtcOffset(System.DateTime,System.TimeZoneInfoOptions,System.TimeZoneInfo/CachedData) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_GetUtcOffset_m83C48C0C8A92AC5D8FBEF08B5E3DEF64FA191B69 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateTime0, int32_t ___flags1, CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* ___cachedData2, const RuntimeMethod* method) ; // System.TimeZoneInfo System.TimeZoneInfo/CachedData::get_Local() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* CachedData_get_Local_mBD5BE85DE59BDDEC2CEE51EA6882BA57C70D6392 (CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* __this, const RuntimeMethod* method) ; // System.DateTimeKind System.DateTime::get_Kind() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) ; // System.DateTimeKind System.TimeZoneInfo/CachedData::GetCorrespondingKind(System.TimeZoneInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CachedData_GetCorrespondingKind_m7BA6947269257DF9A5B992A820E4C80E895DC86E (CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* __this, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___timeZone0, const RuntimeMethod* method) ; // System.DateTime System.TimeZoneInfo::ConvertTime(System.DateTime,System.TimeZoneInfo,System.TimeZoneInfo,System.TimeZoneInfoOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D TimeZoneInfo_ConvertTime_m3F2FB9B76E60906E47D367CEC3FFECB2BD2C2EFD (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateTime0, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___sourceTimeZone1, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___destinationTimeZone2, int32_t ___flags3, const RuntimeMethod* method) ; // System.TimeSpan System.TimeZoneInfo::GetUtcOffsetFromUtc(System.DateTime,System.TimeZoneInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_GetUtcOffsetFromUtc_m08FA9FF65B63CBC79D89AF11551D992499821260 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___time0, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___zone1, const RuntimeMethod* method) ; // System.TimeSpan System.TimeZoneInfo::GetUtcOffset(System.DateTime,System.TimeZoneInfo,System.TimeZoneInfoOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_GetUtcOffset_m3741D53BA21882EBC2C804CB7B9145CD12171C43 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___time0, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___zone1, int32_t ___flags2, const RuntimeMethod* method) ; // System.DateTime System.TimeZoneInfo::ConvertTime(System.DateTime,System.TimeZoneInfo,System.TimeZoneInfo,System.TimeZoneInfoOptions,System.TimeZoneInfo/CachedData) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D TimeZoneInfo_ConvertTime_mC00F8C764885B2F8061BAA840F9E36D04948060F (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateTime0, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___sourceTimeZone1, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___destinationTimeZone2, int32_t ___flags3, CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* ___cachedData4, const RuntimeMethod* method) ; // System.Void System.ArgumentNullException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* __this, String_t* ___paramName0, const RuntimeMethod* method) ; // System.Void System.ArgumentException::.ctor(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, String_t* ___message0, String_t* ___paramName1, const RuntimeMethod* method) ; // System.TimeZoneInfo/AdjustmentRule System.TimeZoneInfo::GetAdjustmentRuleForTime(System.DateTime,System.Nullable`1&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* TimeZoneInfo_GetAdjustmentRuleForTime_mDFC301B0D8E40FC4212536302A370F137239ADAB (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateTime0, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* ___ruleIndex1, const RuntimeMethod* method) ; // System.TimeSpan System.TimeZoneInfo::get_BaseUtcOffset() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_get_BaseUtcOffset_m285A2D1E313B50B51A13F499192CDCEDBC702AE3_inline (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, const RuntimeMethod* method) ; // System.TimeSpan System.TimeZoneInfo/AdjustmentRule::get_BaseUtcOffsetDelta() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A AdjustmentRule_get_BaseUtcOffsetDelta_m0A089D2D9C6A8C6D4460BE4403DDE16FD0D97075_inline (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) ; // System.TimeSpan System.TimeSpan::op_Addition(System.TimeSpan,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeSpan_op_Addition_m4CA781FA121EB39944AE59C6BDD9304C42E74DFB (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___t10, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___t21, const RuntimeMethod* method) ; // System.Boolean System.TimeZoneInfo/AdjustmentRule::get_HasDaylightSaving() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AdjustmentRule_get_HasDaylightSaving_m3A74F6D064246B8CF21908A39055325FBE9DA73F (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) ; // System.Int32 System.DateTime::get_Year() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) ; // System.Globalization.DaylightTimeStruct System.TimeZoneInfo::GetDaylightTime(System.Int32,System.TimeZoneInfo/AdjustmentRule,System.Nullable`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 TimeZoneInfo_GetDaylightTime_m85B0522E746DC6A8C5052F613BEA936BF329B7AD (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, int32_t ___year0, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___rule1, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___ruleIndex2, const RuntimeMethod* method) ; // System.Boolean System.TimeZoneInfo::GetIsInvalidTime(System.DateTime,System.TimeZoneInfo/AdjustmentRule,System.Globalization.DaylightTimeStruct) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_GetIsInvalidTime_mF07394DEEBAAF33C8AC0DB10EE1D5E68DA99BD79 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___time0, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___rule1, DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 ___daylightTime2, const RuntimeMethod* method) ; // System.Boolean System.TimeZoneInfo::GetIsDaylightSavings(System.DateTime,System.TimeZoneInfo/AdjustmentRule,System.Globalization.DaylightTimeStruct,System.TimeZoneInfoOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_GetIsDaylightSavings_mB03A7532D229FDC74C3A720C3918C57E3CDB9C0A (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___time0, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___rule1, DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 ___daylightTime2, int32_t ___flags3, const RuntimeMethod* method) ; // System.TimeSpan System.TimeZoneInfo/AdjustmentRule::get_DaylightDelta() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) ; // System.Int64 System.DateTime::get_Ticks() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) ; // System.DateTime System.TimeZoneInfo::ConvertUtcToTimeZone(System.Int64,System.TimeZoneInfo,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D TimeZoneInfo_ConvertUtcToTimeZone_m43C4BE693F13D1D7E5357326A37628C869D6E3F7 (int64_t ___ticks0, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___destinationTimeZone1, bool* ___isAmbiguousLocalDst2, const RuntimeMethod* method) ; // System.Void System.DateTime::.ctor(System.Int64,System.DateTimeKind,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTime__ctor_m8CFD20DDCCB14AB28392A047FC4EE3F11929B8F2 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, int64_t ___ticks0, int32_t ___kind1, bool ___isAmbiguousDst2, const RuntimeMethod* method) ; // System.Void System.DateTime::.ctor(System.Int64,System.DateTimeKind) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTime__ctor_mF724D343E82431D326EF70E1A31B3B3C4295AFFE (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, int64_t ___ticks0, int32_t ___kind1, const RuntimeMethod* method) ; // System.Boolean System.String::Equals(System.String,System.String,System.StringComparison) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Equals_m80124ECC809968E69F952E2A49EBC03F81A23E43 (String_t* ___a0, String_t* ___b1, int32_t ___comparisonType2, const RuntimeMethod* method) ; // System.Boolean System.TimeZoneInfo::HasSameRules(System.TimeZoneInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_HasSameRules_m924B2C9A9A701D8388C5B8877F9BC6D5C4BF1DBE (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___other0, const RuntimeMethod* method) ; // System.Boolean System.TimeZoneInfo::Equals(System.TimeZoneInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_Equals_m986E0F7F5DF0E9FFE14F6D56BCE8742DE1C5A873 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___other0, const RuntimeMethod* method) ; // System.StringComparer System.StringComparer::get_OrdinalIgnoreCase() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06* StringComparer_get_OrdinalIgnoreCase_m4206775241793096770A30CE686D3B342AEDDE6E_inline (const RuntimeMethod* method) ; // System.Boolean System.TimeSpan::op_Inequality(System.TimeSpan,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeSpan_op_Inequality_m702FEB395C90D5B23E2F7CD61B44846CD9B2C808 (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___t10, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___t21, const RuntimeMethod* method) ; // System.Boolean System.TimeZoneInfo/AdjustmentRule::Equals(System.TimeZoneInfo/AdjustmentRule) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AdjustmentRule_Equals_m5DF61E016305C51AC3468B26C32BDFD68E8C1CAD (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___other0, const RuntimeMethod* method) ; // System.String System.TimeZoneInfo::get_DisplayName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_get_DisplayName_m11B9CDA1B2BCE55E313D7D06D43DF635C7C87A79 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, const RuntimeMethod* method) ; // System.Void System.TimeZoneInfo::.ctor(System.String,System.TimeSpan,System.String,System.String,System.String,System.TimeZoneInfo/AdjustmentRule[],System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo__ctor_mC3ECEF5D3FAD82C4E2FE5FCE0024C061CD492715 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, String_t* ___id0, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___baseUtcOffset1, String_t* ___displayName2, String_t* ___standardDisplayName3, String_t* ___daylightDisplayName4, AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* ___adjustmentRules5, bool ___disableDaylightSavingTime6, const RuntimeMethod* method) ; // System.Object System.Array::Clone() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Array_Clone_m66C9D0727C9BAA0995E4142F29B45BC03582E042 (RuntimeArray* __this, const RuntimeMethod* method) ; // System.Void System.Runtime.Serialization.SerializationException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationException__ctor_m0AAFE2ABD0A74F3E783AD5B5FE842DE460168DB0 (SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7* __this, String_t* ___message0, const RuntimeMethod* method) ; // System.Void System.Runtime.Serialization.SerializationException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationException__ctor_m8CF86DA30D4F95904BF5C1A9CF646DE92EB8C161 (SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7* __this, String_t* ___message0, Exception_t* ___innerException1, const RuntimeMethod* method) ; // System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_m28FE9B110F21DDB8FF5F5E35A0EABD659DB22C2F (SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* __this, String_t* ___name0, RuntimeObject* ___value1, const RuntimeMethod* method) ; // System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_mC52253CB19C98F82A26E32C941F8F20E106D4C0D (SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* __this, String_t* ___name0, bool ___value1, const RuntimeMethod* method) ; // System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E (RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ___handle0, const RuntimeMethod* method) ; // System.Object System.Runtime.Serialization.SerializationInfo::GetValue(System.String,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034 (SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* __this, String_t* ___name0, Type_t* ___type1, const RuntimeMethod* method) ; // System.TimeZoneInfo/AdjustmentRule System.TimeZoneInfo::GetAdjustmentRuleForTime(System.DateTime,System.Boolean,System.Nullable`1&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* TimeZoneInfo_GetAdjustmentRuleForTime_mCBA5D97CD7A86677CC6E7F4AE9ADDF83096398F0 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateTime0, bool ___dateTimeisUtc1, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* ___ruleIndex2, const RuntimeMethod* method) ; // System.DateTime System.DateTime::get_Date() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_get_Date_m24A9ECCD369D892A2D6B01B30066E50E50584A7D (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) ; // System.Int32 System.TimeZoneInfo::CompareAdjustmentRuleToDateTime(System.TimeZoneInfo/AdjustmentRule,System.TimeZoneInfo/AdjustmentRule,System.DateTime,System.DateTime,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TimeZoneInfo_CompareAdjustmentRuleToDateTime_m742CAFF4CFBB4F4A172D2B99095AA2003D995472 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___rule0, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___previousRule1, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateTime2, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateOnly3, bool ___dateTimeisUtc4, const RuntimeMethod* method) ; // System.Void System.Nullable`1::.ctor(T) inline void Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703 (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, int32_t ___value0, const RuntimeMethod* method) { (( void (*) (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*, int32_t, const RuntimeMethod*))Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_gshared)(__this, ___value0, method); } // System.DateTime System.TimeZoneInfo/AdjustmentRule::get_DateStart() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D AdjustmentRule_get_DateStart_m89981208F272F07A4D46956A501E18C579BFBAFF_inline (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) ; // System.DateTime System.TimeZoneInfo::ConvertToUtc(System.DateTime,System.TimeSpan,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D TimeZoneInfo_ConvertToUtc_mED8C0F810B74D29A1D9F64A8EE867315FDDA4C03 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateTime0, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___daylightDelta1, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___baseUtcOffsetDelta2, const RuntimeMethod* method) ; // System.Boolean System.DateTime::op_GreaterThanOrEqual(System.DateTime,System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_op_GreaterThanOrEqual_mBEEE5CB06F515D621E03D91F54AB26EEA73F1D09 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___t10, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___t21, const RuntimeMethod* method) ; // System.DateTime System.TimeZoneInfo/AdjustmentRule::get_DateEnd() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D AdjustmentRule_get_DateEnd_mFF744CCAA5537C7992B23C8F56A90FCD85846B8D_inline (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) ; // System.DateTime System.TimeZoneInfo::ConvertToFromUtc(System.DateTime,System.TimeSpan,System.TimeSpan,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D TimeZoneInfo_ConvertToFromUtc_mD867ED0F69C8996949E527C0125DD2EDA46DA583 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateTime0, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___daylightDelta1, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___baseUtcOffsetDelta2, bool ___convertToUtc3, const RuntimeMethod* method) ; // System.Void System.DateTime::.ctor(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTime__ctor_m64AFCE84ABB24698256EB9F635EFD0A221823441 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, int64_t ___ticks0, const RuntimeMethod* method) ; // System.TimeSpan System.TimeZoneInfo::GetUtcOffsetFromUtc(System.DateTime,System.TimeZoneInfo,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_GetUtcOffsetFromUtc_m12F3C1464D6486EB6CD46471EA5D071EEE19913B (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___time0, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___zone1, bool* ___isDaylightSavings2, const RuntimeMethod* method) ; // System.Boolean System.TimeZoneInfo/AdjustmentRule::get_NoDaylightTransitions() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool AdjustmentRule_get_NoDaylightTransitions_mA92395F5741FACBEE835A929B37B6BE7D50CE3FF_inline (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) ; // System.TimeZoneInfo/AdjustmentRule System.TimeZoneInfo::GetPreviousAdjustmentRule(System.TimeZoneInfo/AdjustmentRule,System.Nullable`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* TimeZoneInfo_GetPreviousAdjustmentRule_m9F74F6192D83D4ABDD55587AA045AE3B3FB7ABB3 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___rule0, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___ruleIndex1, const RuntimeMethod* method) ; // System.DateTime System.TimeZoneInfo::ConvertFromUtc(System.DateTime,System.TimeSpan,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D TimeZoneInfo_ConvertFromUtc_m1F7CA14CBA9DFE117BE63277941BCC7954C9598D (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateTime0, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___daylightDelta1, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___baseUtcOffsetDelta2, const RuntimeMethod* method) ; // System.TimeZoneInfo/TransitionTime System.TimeZoneInfo/AdjustmentRule::get_DaylightTransitionStart() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 AdjustmentRule_get_DaylightTransitionStart_mB13755B6F594ECC706B3946F17159E84F23E20D1_inline (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) ; // System.DateTime System.TimeZoneInfo::TransitionTimeToDateTime(System.Int32,System.TimeZoneInfo/TransitionTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D TimeZoneInfo_TransitionTimeToDateTime_m925017F99E4907CECD8FE5D5C3763E5BCCBFEB3E (int32_t ___year0, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ___transitionTime1, const RuntimeMethod* method) ; // System.TimeZoneInfo/TransitionTime System.TimeZoneInfo/AdjustmentRule::get_DaylightTransitionEnd() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 AdjustmentRule_get_DaylightTransitionEnd_m3DE90DB3CB36F38AFD5EA7F16719BE0013A1CF74_inline (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) ; // System.Void System.Globalization.DaylightTimeStruct::.ctor(System.DateTime,System.DateTime,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DaylightTimeStruct__ctor_m1A00C6B8123F9F3DD3D739155355DFC1E2ACA0CE (DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___start0, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___end1, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___delta2, const RuntimeMethod* method) ; // System.Boolean System.TimeZoneInfo/AdjustmentRule::IsStartDateMarkerForBeginningOfYear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AdjustmentRule_IsStartDateMarkerForBeginningOfYear_mC7ED256DEBA978E209CD4DFD12F55CFB15C4FF23 (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) ; // System.Boolean System.TimeZoneInfo/AdjustmentRule::IsEndDateMarkerForEndOfYear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AdjustmentRule_IsEndDateMarkerForEndOfYear_m35FDE7810F68D5CB9F22899015ADFE1617A3B964 (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) ; // System.Boolean System.TimeSpan::op_GreaterThan(System.TimeSpan,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeSpan_op_GreaterThan_m8DAC0E8CCA11AFD73BAA4BE5BFB2FA4D65CFB78B (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___t10, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___t21, const RuntimeMethod* method) ; // System.TimeSpan System.TimeSpan::op_UnaryNegation(System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeSpan_op_UnaryNegation_m48BDA8280B7A09AD8DB90844AAD1DB7C0F473607 (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___t0, const RuntimeMethod* method) ; // System.Boolean System.TimeZoneInfo::CheckIsDst(System.DateTime,System.DateTime,System.DateTime,System.Boolean,System.TimeZoneInfo/AdjustmentRule) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_CheckIsDst_mB9BFB34A7B7B00BCFE1041B85A3A471527BAB6C9 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___startTime0, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___time1, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___endTime2, bool ___ignoreYearAdjustment3, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___rule4, const RuntimeMethod* method) ; // System.Boolean System.TimeZoneInfo::GetIsAmbiguousTime(System.DateTime,System.TimeZoneInfo/AdjustmentRule,System.Globalization.DaylightTimeStruct) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_GetIsAmbiguousTime_m2C85523FAD6DD18D294FEDD55EF94F1F7BFB090B (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___time0, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___rule1, DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 ___daylightTime2, const RuntimeMethod* method) ; // System.Boolean System.DateTime::IsAmbiguousDaylightSavingTime() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_IsAmbiguousDaylightSavingTime_m64C6D8280BA8A65E63FBE5F84F52702ABE15CE27 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) ; // System.TimeSpan System.TimeZoneInfo::GetDaylightSavingsStartOffsetFromUtc(System.TimeSpan,System.TimeZoneInfo/AdjustmentRule,System.Nullable`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_GetDaylightSavingsStartOffsetFromUtc_m51CDB9591A7421A0CB8C410FCEA93544772F7710 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___baseUtcOffset0, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___rule1, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___ruleIndex2, const RuntimeMethod* method) ; // System.Void System.DateTime::.ctor(System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTime__ctor_mA3BF7CE28807F0A02634FD43913FAAFD989CEE88 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, int32_t ___year0, int32_t ___month1, int32_t ___day2, const RuntimeMethod* method) ; // System.DateTime System.DateTime::op_Subtraction(System.DateTime,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_op_Subtraction_m325B9AE4DB04038087427DEDF0687D6F95305817 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___d0, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___t1, const RuntimeMethod* method) ; // System.TimeSpan System.TimeZoneInfo::GetDaylightSavingsEndOffsetFromUtc(System.TimeSpan,System.TimeZoneInfo/AdjustmentRule) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_GetDaylightSavingsEndOffsetFromUtc_m8B8363BCFB2A08847D34732523F0A6262A3EC78D (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___baseUtcOffset0, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___rule1, const RuntimeMethod* method) ; // System.Boolean System.DateTime::op_LessThan(System.DateTime,System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_op_LessThan_mC39C4E1CDE23ED2ABA8D1DC9B4283B1BC1ACDB36 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___t10, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___t21, const RuntimeMethod* method) ; // System.DateTime System.DateTime::AddYears(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_AddYears_mA68B1642A84DA30E21F6279BE5196FC07B578DEE (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, int32_t ___value0, const RuntimeMethod* method) ; // System.Boolean System.DateTime::op_GreaterThan(System.DateTime,System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_op_GreaterThan_mA9021939CEE6D93308C1CFB63C7E6D5CA58F7B92 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___t10, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___t21, const RuntimeMethod* method) ; // System.Boolean System.TimeSpan::op_Equality(System.TimeSpan,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeSpan_op_Equality_m482BBD58F00FA3924F9AFD66F249274039197F1C (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___t10, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___t21, const RuntimeMethod* method) ; // System.Boolean System.TimeZoneInfo::GetIsDaylightSavingsFromUtc(System.DateTime,System.Int32,System.TimeSpan,System.TimeZoneInfo/AdjustmentRule,System.Nullable`1,System.Boolean&,System.TimeZoneInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_GetIsDaylightSavingsFromUtc_m3BFA7CFCB8A3AF1B6665D3CD83FB846ACCEF3BD9 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___time0, int32_t ___year1, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___utc2, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___rule3, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___ruleIndex4, bool* ___isAmbiguousLocalDst5, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___zone6, const RuntimeMethod* method) ; // System.DateTime System.TimeZoneInfo/TransitionTime::get_TimeOfDay() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D TransitionTime_get_TimeOfDay_m21DF682C87AF1B2B28F275583E344BDBFA5787E9_inline (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, const RuntimeMethod* method) ; // System.Boolean System.TimeZoneInfo/TransitionTime::get_IsFixedDateRule() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TransitionTime_get_IsFixedDateRule_m8F920A7E971E18F7E165AF20C831208D14861379_inline (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, const RuntimeMethod* method) ; // System.Int32 System.TimeZoneInfo/TransitionTime::get_Month() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TransitionTime_get_Month_m02516607C5B0FD478086A021F73796C71EB0D444_inline (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, const RuntimeMethod* method) ; // System.Int32 System.DateTime::DaysInMonth(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_DaysInMonth_m0D32B96A924B642096EAA09FFDE74F1B6568714C (int32_t ___year0, int32_t ___month1, const RuntimeMethod* method) ; // System.Int32 System.TimeZoneInfo/TransitionTime::get_Day() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TransitionTime_get_Day_m0F83551F1C84F28AF5516225277AFE94CDE98445_inline (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, const RuntimeMethod* method) ; // System.Int32 System.DateTime::get_Hour() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_get_Hour_m350B2AEB6ED8AAD80F0779C1FD37EEE13952A7F3 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) ; // System.Int32 System.DateTime::get_Minute() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_get_Minute_m73003491DA85D2C9951ECCF890D9BF6AFFB9E973 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) ; // System.Int32 System.DateTime::get_Second() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_get_Second_mC860BA28DED65249BE9EA46E4898730C7828B3EA (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) ; // System.Int32 System.DateTime::get_Millisecond() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_get_Millisecond_mD47CAACAF231AA82552DA9F71836784AF8E27878 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) ; // System.Void System.DateTime::.ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTime__ctor_mA66CE5141E86C5BC75F79543F99A7BD77B420201 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, int32_t ___year0, int32_t ___month1, int32_t ___day2, int32_t ___hour3, int32_t ___minute4, int32_t ___second5, int32_t ___millisecond6, const RuntimeMethod* method) ; // System.Int32 System.TimeZoneInfo/TransitionTime::get_Week() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TransitionTime_get_Week_mE32FFDD98D43B11CFBBC1C182601D6F167B392FC_inline (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, const RuntimeMethod* method) ; // System.DayOfWeek System.DateTime::get_DayOfWeek() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_get_DayOfWeek_mAC680139BCAA1613FC134454D1AD1B502CB1BB68 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) ; // System.DayOfWeek System.TimeZoneInfo/TransitionTime::get_DayOfWeek() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TransitionTime_get_DayOfWeek_mD78344AF8C9889C418F0ADAE412D1FD746D031FA_inline (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, const RuntimeMethod* method) ; // System.DateTime System.DateTime::AddDays(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_AddDays_m9DC06105845A82FEAF697D5E30308ABD49E5721B (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, double ___value0, const RuntimeMethod* method) ; // System.Boolean System.TimeZoneInfo::UtcOffsetOutOfRange(System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_UtcOffsetOutOfRange_m9C0E0CF4DF97E37FDD985E90E42EDA9F55247C9E (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___offset0, const RuntimeMethod* method) ; // System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66 (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* __this, String_t* ___paramName0, String_t* ___message1, const RuntimeMethod* method) ; // System.TimeSpan System.TimeZoneInfo::GetUtcOffset(System.TimeSpan,System.TimeZoneInfo/AdjustmentRule) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_GetUtcOffset_mFCA4CA49ADBEADEA64D197ABB65538CC5F53EB3E (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___baseUtcOffset0, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___adjustmentRule1, const RuntimeMethod* method) ; // System.Boolean System.CurrentSystemTimeZone::GetTimeZoneData(System.Int32,System.Int64[]&,System.String[]&,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CurrentSystemTimeZone_GetTimeZoneData_m0E00967018A4C6D626257D014889DAFBFF56C21A (int32_t ___year0, Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D** ___data1, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248** ___names2, bool* ___daylight_inverted3, const RuntimeMethod* method) ; // System.Void System.TimeSpan::.ctor(System.Int64) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TimeSpan__ctor_m061B122FA11D2063FE751C1F1D019DF1C8B10B1F_inline (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* __this, int64_t ___ticks0, const RuntimeMethod* method) ; // System.Boolean System.String::op_Inequality(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method) ; // System.Boolean System.DateTime::Equals(System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_Equals_m83D001F1C86DC58C2B0AE99DD2FAB12669B10C1B (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___value0, const RuntimeMethod* method) ; // System.TimeSpan System.DateTime::get_TimeOfDay() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A DateTime_get_TimeOfDay_mE8933E5F62C0369E4BA6AF928283A00CA9D54D04 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) ; // System.DateTime System.DateTime::Add(System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_Add_mC882C6BBE75862360A1A0C733B4FFE3210D4B9B1 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___value0, const RuntimeMethod* method) ; // System.Int32 System.DateTime::get_Month() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_get_Month_m899C6602DE8198990B2CAF5EBC04CC67764E3DA2 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) ; // System.Int32 System.DateTime::get_Day() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_get_Day_m872DBCA4C79955EC1E27EB68746B6C2F6A183B28 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) ; // System.TimeZoneInfo/AdjustmentRule System.TimeZoneInfo/AdjustmentRule::CreateAdjustmentRule(System.DateTime,System.DateTime,System.TimeSpan,System.TimeZoneInfo/TransitionTime,System.TimeZoneInfo/TransitionTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* AdjustmentRule_CreateAdjustmentRule_m43C4E67BA80C8DF56B78D123FB70E1C1869FC863 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateStart0, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateEnd1, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___daylightDelta2, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ___daylightTransitionStart3, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ___daylightTransitionEnd4, const RuntimeMethod* method) ; // System.Void System.NotSupportedException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* __this, String_t* ___message0, const RuntimeMethod* method) ; // System.TimeSpan System.TimeSpan::FromTicks(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeSpan_FromTicks_mFA529928E79B4BF5EC0265418844B196D8979A73 (int64_t ___value0, const RuntimeMethod* method) ; // System.Boolean System.TimeSpan::op_GreaterThanOrEqual(System.TimeSpan,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeSpan_op_GreaterThanOrEqual_mD172326B8A60D9B6585C5AF7EBB1E7D72C6C099A (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___t10, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___t21, const RuntimeMethod* method) ; // System.String System.TimeSpan::ToString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeSpan_ToString_m5B50613FCD29547F04EAE305B2226CB9F490C432 (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* __this, String_t* ___format0, const RuntimeMethod* method) ; // System.String System.String::Concat(System.String,System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mF8B69BE42B5C5ABCAD3C176FBBE3010E0815D65D (String_t* ___str00, String_t* ___str11, String_t* ___str22, String_t* ___str33, const RuntimeMethod* method) ; // System.Collections.Generic.List`1 System.TimeZoneInfo::CreateAdjustmentRule(System.Int32,System.Int64[]&,System.String[]&,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* TimeZoneInfo_CreateAdjustmentRule_m73F7A84E2E23FFB17362C870ACC5BC6F96E98664 (int32_t ___year0, Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D** ___data1, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248** ___names2, String_t* ___standardNameCurrentYear3, String_t* ___daylightNameCurrentYear4, const RuntimeMethod* method) ; // System.Void System.Collections.Generic.List`1::AddRange(System.Collections.Generic.IEnumerable`1) inline void List_1_AddRange_mEE4B468401806AB4034B11CF5474F8DAD42FCAEF (List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* __this, RuntimeObject* ___collection0, const RuntimeMethod* method) { (( void (*) (List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C*, RuntimeObject*, const RuntimeMethod*))List_1_AddRange_m1F76B300133150E6046C5FED00E88B5DE0A02E17_gshared)(__this, ___collection0, method); } // System.Void System.Comparison`1::.ctor(System.Object,System.IntPtr) inline void Comparison_1__ctor_m7A877570D0AD7F3AAC5D08B1E242799C783C6323 (Comparison_1_tE0312CC191F82BABE215D23E750095EE2E124301* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Comparison_1_tE0312CC191F82BABE215D23E750095EE2E124301*, RuntimeObject*, intptr_t, const RuntimeMethod*))Comparison_1__ctor_mC1E8799BBCE317B612875123C9C894BD470BFE6A_gshared)(__this, ___object0, ___method1, method); } // System.Void System.Collections.Generic.List`1::Sort(System.Comparison`1) inline void List_1_Sort_mC93B7887EE66D34058CF27DA73282E7DC0CFC27C (List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* __this, Comparison_1_tE0312CC191F82BABE215D23E750095EE2E124301* ___comparison0, const RuntimeMethod* method) { (( void (*) (List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C*, Comparison_1_tE0312CC191F82BABE215D23E750095EE2E124301*, const RuntimeMethod*))List_1_Sort_mEB3B61CB86B1419919338B0668DC4E568C2FFF93_gshared)(__this, ___comparison0, method); } // System.TimeZoneInfo System.TimeZoneInfo::CreateCustomTimeZone(System.String,System.TimeSpan,System.String,System.String,System.String,System.TimeZoneInfo/AdjustmentRule[],System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* TimeZoneInfo_CreateCustomTimeZone_mE6CD9C2D2B4E776997B0791E75792D1C971B091D (String_t* ___id0, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___baseUtcOffset1, String_t* ___displayName2, String_t* ___standardDisplayName3, String_t* ___daylightDisplayName4, AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* ___adjustmentRules5, bool ___disableDaylightSavingTime6, const RuntimeMethod* method) ; // System.TimeZoneInfo System.TimeZoneInfo::CreateCustomTimeZone(System.String,System.TimeSpan,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* TimeZoneInfo_CreateCustomTimeZone_mA4B219D7787155D6BBC73C424CBBF0C044713CC9 (String_t* ___id0, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___baseUtcOffset1, String_t* ___displayName2, String_t* ___standardDisplayName3, const RuntimeMethod* method) ; // System.Void System.TimeZoneInfo/CachedData::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CachedData__ctor_m0B9484D26A9B27A4B34444C869F3F29F1908B6D4 (CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* __this, const RuntimeMethod* method) ; // System.TimeSpan System.TimeSpan::FromHours(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeSpan_FromHours_mE752300A91D97AB8CCC53CB38547BBEFF601E2C6 (double ___value0, const RuntimeMethod* method) ; // System.Boolean System.TimeZoneInfo/TransitionTime::op_Inequality(System.TimeZoneInfo/TransitionTime,System.TimeZoneInfo/TransitionTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TransitionTime_op_Inequality_m2646FABD4F674967E5CD5E2FBB071390DC07FF32 (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ___t10, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ___t21, const RuntimeMethod* method) ; // System.Boolean System.DateTime::op_Inequality(System.DateTime,System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_op_Inequality_mC39C15A648628974D533B4E2D4EDBD091EA3E1B7 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___d10, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___d21, const RuntimeMethod* method) ; // System.Boolean System.TimeZoneInfo/TransitionTime::Equals(System.TimeZoneInfo/TransitionTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TransitionTime_Equals_m78333D636EC147FF011B87AB4E11140CC0E56455 (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ___other0, const RuntimeMethod* method) ; // System.Int32 System.DateTime::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_GetHashCode_m206A3B9394E6D089311A1A81305A5A1AB30B2D99 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, const RuntimeMethod* method) ; // System.Void System.TimeZoneInfo/AdjustmentRule::ValidateAdjustmentRule(System.DateTime,System.DateTime,System.TimeSpan,System.TimeZoneInfo/TransitionTime,System.TimeZoneInfo/TransitionTime,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AdjustmentRule_ValidateAdjustmentRule_m255624F8A6A4C3C98C0B27D23FEE70809A39FBBE (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateStart0, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateEnd1, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___daylightDelta2, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ___daylightTransitionStart3, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ___daylightTransitionEnd4, bool ___noDaylightTransitions5, const RuntimeMethod* method) ; // System.Void System.TimeZoneInfo/AdjustmentRule::.ctor(System.DateTime,System.DateTime,System.TimeSpan,System.TimeZoneInfo/TransitionTime,System.TimeZoneInfo/TransitionTime,System.TimeSpan,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AdjustmentRule__ctor_m23CD0235426C2F62801839E5DBFD24666565EF5F (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateStart0, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateEnd1, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___daylightDelta2, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ___daylightTransitionStart3, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ___daylightTransitionEnd4, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___baseUtcOffsetDelta5, bool ___noDaylightTransitions6, const RuntimeMethod* method) ; // System.Double System.TimeSpan::get_TotalHours() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double TimeSpan_get_TotalHours_m753DFC812CEC8F9214EF5F9839C5B4A4DB0D2883 (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* __this, const RuntimeMethod* method) ; // System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.Object,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m60B543A63AC8692C28096003FBF2AD124B9D5B85 (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* __this, String_t* ___paramName0, RuntimeObject* ___actualValue1, String_t* ___message2, const RuntimeMethod* method) ; // System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_m820C29058E845C4A30DDA9D7A235F693469C0358 (SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* __this, String_t* ___name0, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___value1, const RuntimeMethod* method) ; // System.Object System.Runtime.Serialization.SerializationInfo::GetValueNoThrow(System.String,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SerializationInfo_GetValueNoThrow_mC2AB5CF14F11B0C67E384D5CEF15C9ADDC754D06 (SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* __this, String_t* ___name0, Type_t* ___type1, const RuntimeMethod* method) ; // System.Boolean System.TimeZoneInfo/TransitionTime::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TransitionTime_Equals_m291DF01B4B0E82236E7792B4C582307DA0640D35 (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, RuntimeObject* ___obj0, const RuntimeMethod* method) ; // System.Int32 System.TimeZoneInfo/TransitionTime::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TransitionTime_GetHashCode_mA421896976B38A28F6779F670883BB9EE895AE60 (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, const RuntimeMethod* method) ; // System.Void System.TimeZoneInfo/TransitionTime::ValidateTransitionTime(System.DateTime,System.Int32,System.Int32,System.Int32,System.DayOfWeek) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransitionTime_ValidateTransitionTime_mD25BF3922B6A12F7EEFFCCF23E9595B986E8889D (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___timeOfDay0, int32_t ___month1, int32_t ___week2, int32_t ___day3, int32_t ___dayOfWeek4, const RuntimeMethod* method) ; // System.Void System.TimeZoneInfo/TransitionTime::.ctor(System.DateTime,System.Int32,System.Int32,System.Int32,System.DayOfWeek,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransitionTime__ctor_m4792CF1086877E744BE6428F33E6119F044D7FF6 (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___timeOfDay0, int32_t ___month1, int32_t ___week2, int32_t ___day3, int32_t ___dayOfWeek4, bool ___isFixedDateRule5, const RuntimeMethod* method) ; // System.Void System.DateTime::GetDatePart(System.Int32&,System.Int32&,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTime_GetDatePart_m85E7446E253F012D1662467EAEFB4CD9C50AE86D (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, int32_t* ___year0, int32_t* ___month1, int32_t* ___day2, const RuntimeMethod* method) ; // System.Void System.TimeZoneInfo/TransitionTime::System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransitionTime_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_mC0BA25E7364D621D11F85E1E551B50CB68E2621C (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, RuntimeObject* ___sender0, const RuntimeMethod* method) ; // System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_m65B91D3CD967B3B7DDFA528021B50D44BC52F2CB (SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* __this, String_t* ___name0, uint8_t ___value1, const RuntimeMethod* method) ; // System.Void System.TimeZoneInfo/TransitionTime::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransitionTime_System_Runtime_Serialization_ISerializable_GetObjectData_m15188D93E8934322C49D68A618FE36EC787DF2D5 (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___info0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___context1, const RuntimeMethod* method) ; // System.Void System.TimeZoneInfo/TransitionTime::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransitionTime__ctor_mDA3962EC43A405307D2F615F8D410C4F2A499AD5 (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___info0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___context1, const RuntimeMethod* method) ; // System.Void System.Threading.Monitor::Exit(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9 (RuntimeObject* ___obj0, const RuntimeMethod* method) ; // System.Void System.Threading.Monitor::Enter(System.Object,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4 (RuntimeObject* ___obj0, bool* ___lockTaken1, const RuntimeMethod* method) ; // System.TimeZoneInfo System.TimeZoneInfo::GetLocalTimeZone(System.TimeZoneInfo/CachedData) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* TimeZoneInfo_GetLocalTimeZone_m3C79A307508C1B1CC223CF32AB3C5B3A291ECE66 (CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* ___cachedData0, const RuntimeMethod* method) ; // System.TimeZoneInfo System.TimeZoneInfo/CachedData::CreateLocal() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* CachedData_CreateLocal_mD7DC783B2F7E554AD9C1513CE83D01D197707564 (CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* __this, const RuntimeMethod* method) ; // System.Boolean System.TimeZoneInfo::CompareTimeZoneFile(System.String,System.Byte[],System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_CompareTimeZoneFile_m6546651CDAEAC2021D8E93358C35ECA38B4DF96D (String_t* ___filePath0, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer1, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___rawData2, const RuntimeMethod* method) ; // System.Void System.TimeZoneInfo/<>c::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m735BCFFD24463BD5C90C9B0A386C9BCF979B4DA5 (U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124* __this, const RuntimeMethod* method) ; // System.Boolean System.Char::IsDigit(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsDigit_mC98DAF907860EFB7D26C3E126D80AD3A2CE72715 (Il2CppChar ___c0, const RuntimeMethod* method) ; // System.Int32 System.DateTime::CompareTo(System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_CompareTo_m4A3000CD4FF15EA7CA2E9C5C95A9D07F3AA8D35D (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___value0, const RuntimeMethod* method) ; // System.Void System.SystemException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemException__ctor_mC481DFD60F19362A0B3523FBD5E429EC4F1F3FB5 (SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295* __this, String_t* ___message0, const RuntimeMethod* method) ; // System.Void System.Exception::set_HResult(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline (Exception_t* __this, int32_t ___value0, const RuntimeMethod* method) ; // System.Void System.SystemException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemException__ctor_mA2BB392E0F4CD8A4C132984F76B7A9FBDB3B6879 (SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___info0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___context1, const RuntimeMethod* method) ; // System.Void System.Exception::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_m9B2BD92CD68916245A75109105D9071C9D430E7F (Exception_t* __this, String_t* ___message0, const RuntimeMethod* method) ; // T[] System.Array::Empty() inline ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* Array_Empty_TisException_t_m43D697D5384221F788D1B6C09C348DDA90140574_inline (const RuntimeMethod* method) { return (( ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* (*) (const RuntimeMethod*))Array_Empty_TisRuntimeObject_m55011E8360A8199FB239A5787BA8631CDD6116FC_gshared_inline)(method); } // System.Void System.Collections.ObjectModel.ReadOnlyCollection`1::.ctor(System.Collections.Generic.IList`1) inline void ReadOnlyCollection_1__ctor_m8A6150A70033BA587E3F51C2834162ED01FC8004 (ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886* __this, RuntimeObject* ___list0, const RuntimeMethod* method) { (( void (*) (ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886*, RuntimeObject*, const RuntimeMethod*))ReadOnlyCollection_1__ctor_mF2D2ACE0752C3B97343B72328D49200F45C14B65_gshared)(__this, ___list0, method); } // System.Void System.AggregateException::.ctor(System.String,System.Collections.Generic.IEnumerable`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException__ctor_m4D9F61E91F24BDFF09932C33BBB931DC620A52B4 (AggregateException_t51B6205846DFB356B94452702201DD239D44422F* __this, String_t* ___message0, RuntimeObject* ___innerExceptions1, const RuntimeMethod* method) ; // System.Void System.AggregateException::.ctor(System.String,System.Exception[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException__ctor_m484E445B9CF69C95E9FF2286BD03F445EDB8B688 (AggregateException_t51B6205846DFB356B94452702201DD239D44422F* __this, String_t* ___message0, ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* ___innerExceptions1, const RuntimeMethod* method) ; // System.Void System.Collections.Generic.List`1::.ctor(System.Collections.Generic.IEnumerable`1) inline void List_1__ctor_mCEDF6523E3BA0C75E3D188CFF88E1005D2AA7B03 (List_1_tA61E6ACDC88C89A9523D28C560996ABFF548352B* __this, RuntimeObject* ___collection0, const RuntimeMethod* method) { (( void (*) (List_1_tA61E6ACDC88C89A9523D28C560996ABFF548352B*, RuntimeObject*, const RuntimeMethod*))List_1__ctor_mE097DBD72433D1AFC11733F5678602603A756424_gshared)(__this, ___collection0, method); } // System.Void System.AggregateException::.ctor(System.String,System.Collections.Generic.IList`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException__ctor_m5D99D5EC65645030D21C35CEDDACF438222AFB0D (AggregateException_t51B6205846DFB356B94452702201DD239D44422F* __this, String_t* ___message0, RuntimeObject* ___innerExceptions1, const RuntimeMethod* method) ; // System.Void System.Exception::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_m9BC141AAB08F47C34B7ED40C1A6C0C1ADDEC5CB3 (Exception_t* __this, String_t* ___message0, Exception_t* ___innerException1, const RuntimeMethod* method) ; // System.Void System.ArgumentException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, String_t* ___message0, const RuntimeMethod* method) ; // System.Void System.AggregateException::.ctor(System.String,System.Collections.Generic.IEnumerable`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException__ctor_m49BC0CD4DE05E205244170A24F20295004C9721F (AggregateException_t51B6205846DFB356B94452702201DD239D44422F* __this, String_t* ___message0, RuntimeObject* ___innerExceptionInfos1, const RuntimeMethod* method) ; // System.Void System.Collections.Generic.List`1::.ctor(System.Collections.Generic.IEnumerable`1) inline void List_1__ctor_m45DECC4F6632B9350A27CF0A9D607FB7FE6F8DBF (List_1_t51CBE3470AD8637D621A307190A51C60E66F370B* __this, RuntimeObject* ___collection0, const RuntimeMethod* method) { (( void (*) (List_1_t51CBE3470AD8637D621A307190A51C60E66F370B*, RuntimeObject*, const RuntimeMethod*))List_1__ctor_mE097DBD72433D1AFC11733F5678602603A756424_gshared)(__this, ___collection0, method); } // System.Void System.AggregateException::.ctor(System.String,System.Collections.Generic.IList`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException__ctor_m0DCA05A779599F1729B01D4FFAD989BFD2400FEC (AggregateException_t51B6205846DFB356B94452702201DD239D44422F* __this, String_t* ___message0, RuntimeObject* ___innerExceptionInfos1, const RuntimeMethod* method) ; // System.Exception System.Runtime.ExceptionServices.ExceptionDispatchInfo::get_SourceException() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Exception_t* ExceptionDispatchInfo_get_SourceException_m981DC7F90598BE65BD4FA1A8340025A3A7CC3DBE_inline (ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* __this, const RuntimeMethod* method) ; // System.Void System.Exception::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_m412D5FC4D69035738F1DB88FD771ABD6B0E9E120 (Exception_t* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___info0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___context1, const RuntimeMethod* method) ; // System.Void System.Exception::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception_GetObjectData_mD69929DB0BB2512240908B9EEE21778CB7B72DA9 (Exception_t* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___info0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___context1, const RuntimeMethod* method) ; // System.Int32 System.Collections.ObjectModel.ReadOnlyCollection`1::get_Count() inline int32_t ReadOnlyCollection_1_get_Count_mADB84925112BAD7AA74EBCE91BC3E4524CFC4549 (ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886* __this, const RuntimeMethod* method) { return (( int32_t (*) (ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886*, const RuntimeMethod*))ReadOnlyCollection_1_get_Count_mE6BED30C94187FC8CC2C7E5CAF0163455240223C_gshared)(__this, method); } // System.Void System.Collections.ObjectModel.ReadOnlyCollection`1::CopyTo(T[],System.Int32) inline void ReadOnlyCollection_1_CopyTo_mAE2DC1F98E3AB1E56E53CA756E077277286C22C1 (ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886* __this, ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* ___array0, int32_t ___index1, const RuntimeMethod* method) { (( void (*) (ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886*, ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C*, int32_t, const RuntimeMethod*))ReadOnlyCollection_1_CopyTo_m2AB7AC16F5BDBFEB664040F852CC922277C872F2_gshared)(__this, ___array0, ___index1, method); } // System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Object,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_m1AD59BBF8C3129142943D3F298ADF09FF123C199 (SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* __this, String_t* ___name0, RuntimeObject* ___value1, Type_t* ___type2, const RuntimeMethod* method) ; // System.Void System.Collections.Generic.List`1::.ctor() inline void List_1__ctor_mD910536376B8EBB5BDB30088BE4FE395391592F3 (List_1_tA61E6ACDC88C89A9523D28C560996ABFF548352B* __this, const RuntimeMethod* method) { (( void (*) (List_1_tA61E6ACDC88C89A9523D28C560996ABFF548352B*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1::.ctor() inline void List_1__ctor_mA4BC919FC386FA1CE115EF12A461A768D26C11F5 (List_1_t9B4BB3EA8BB62F9777B029C3AAC4560C3EB0124A* __this, const RuntimeMethod* method) { (( void (*) (List_1_t9B4BB3EA8BB62F9777B029C3AAC4560C3EB0124A*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1::Add(T) inline void List_1_Add_mA36092D2F40F81F420E65D722073A5B6A49137FB_inline (List_1_t9B4BB3EA8BB62F9777B029C3AAC4560C3EB0124A* __this, AggregateException_t51B6205846DFB356B94452702201DD239D44422F* ___item0, const RuntimeMethod* method) { (( void (*) (List_1_t9B4BB3EA8BB62F9777B029C3AAC4560C3EB0124A*, AggregateException_t51B6205846DFB356B94452702201DD239D44422F*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___item0, method); } // T System.Collections.Generic.List`1::get_Item(System.Int32) inline AggregateException_t51B6205846DFB356B94452702201DD239D44422F* List_1_get_Item_mF1CB8635CFBBCDB0A6DFA0EE7D3D3E95959E0FD6 (List_1_t9B4BB3EA8BB62F9777B029C3AAC4560C3EB0124A* __this, int32_t ___index0, const RuntimeMethod* method) { return (( AggregateException_t51B6205846DFB356B94452702201DD239D44422F* (*) (List_1_t9B4BB3EA8BB62F9777B029C3AAC4560C3EB0124A*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___index0, method); } // System.Collections.ObjectModel.ReadOnlyCollection`1 System.AggregateException::get_InnerExceptions() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886* AggregateException_get_InnerExceptions_m3044DE61416F827389F2975C67AC1AD89EA050A5_inline (AggregateException_t51B6205846DFB356B94452702201DD239D44422F* __this, const RuntimeMethod* method) ; // System.Void System.Collections.Generic.List`1::Add(T) inline void List_1_Add_m8E3C27DE02A5C8D1AE01D55D6B325BFB693CF385_inline (List_1_tA61E6ACDC88C89A9523D28C560996ABFF548352B* __this, Exception_t* ___item0, const RuntimeMethod* method) { (( void (*) (List_1_tA61E6ACDC88C89A9523D28C560996ABFF548352B*, Exception_t*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___item0, method); } // System.Int32 System.Collections.Generic.List`1::get_Count() inline int32_t List_1_get_Count_mBFBD3FBB9B3A4B06F450444AD3CDF71C1C2E09EC_inline (List_1_t9B4BB3EA8BB62F9777B029C3AAC4560C3EB0124A* __this, const RuntimeMethod* method) { return (( int32_t (*) (List_1_t9B4BB3EA8BB62F9777B029C3AAC4560C3EB0124A*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method); } // System.String System.Exception::get_Message() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Exception_get_Message_mCFE0D38FDF9001405299AAE43BBE2A9AD806C441 (Exception_t* __this, const RuntimeMethod* method) ; // System.Text.StringBuilder System.Text.StringBuilderCache::Acquire(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilderCache_Acquire_m6E2B81795F398D214356982DB78955434EA835B1 (int32_t ___capacity0, const RuntimeMethod* method) ; // System.Text.StringBuilder System.Text.StringBuilder::Append(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D (StringBuilder_t* __this, String_t* ___value0, const RuntimeMethod* method) ; // System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1 (StringBuilder_t* __this, Il2CppChar ___value0, const RuntimeMethod* method) ; // T System.Collections.ObjectModel.ReadOnlyCollection`1::get_Item(System.Int32) inline Exception_t* ReadOnlyCollection_1_get_Item_mC1EEC8BBCB1499BF66A65D6A669B809CF9292628 (ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886* __this, int32_t ___index0, const RuntimeMethod* method) { return (( Exception_t* (*) (ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886*, int32_t, const RuntimeMethod*))ReadOnlyCollection_1_get_Item_m88FE6EF1106EAB22F63554956C77E25339159136_gshared)(__this, ___index0, method); } // System.Int32 System.Text.StringBuilder::get_Length() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8 (StringBuilder_t* __this, const RuntimeMethod* method) ; // System.Void System.Text.StringBuilder::set_Length(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder_set_Length_mE2427BDAEF91C4E4A6C80F3BDF1F6E01DBCC2414 (StringBuilder_t* __this, int32_t ___value0, const RuntimeMethod* method) ; // System.String System.Text.StringBuilderCache::GetStringAndRelease(System.Text.StringBuilder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StringBuilderCache_GetStringAndRelease_mE88D25734085D6BA6F1D82C692CC059D90EDF50F (StringBuilder_t* ___sb0, const RuntimeMethod* method) ; // System.Void System.Text.StringBuilder::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D (StringBuilder_t* __this, const RuntimeMethod* method) ; // System.String System.Exception::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Exception_ToString_m86C837E2A0387AD13424708D0F9292A27FA06A4B (Exception_t* __this, const RuntimeMethod* method) ; // System.Text.StringBuilder System.Text.StringBuilder::AppendLine() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_AppendLine_m3BC704C4E6A8531027D8C9287D0AB2AA0188AC4E (StringBuilder_t* __this, const RuntimeMethod* method) ; // System.Text.StringBuilder System.Text.StringBuilder::AppendFormat(System.IFormatProvider,System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_AppendFormat_m91278D58CD695B07613B9A3941B745B815542E1E (StringBuilder_t* __this, RuntimeObject* ___provider0, String_t* ___format1, RuntimeObject* ___arg02, const RuntimeMethod* method) ; // System.Void System.SystemException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemException__ctor_m0FC84CACD2A5D66222998AA601A5C41CEC36A611 (SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295* __this, String_t* ___message0, Exception_t* ___innerException1, const RuntimeMethod* method) ; // System.String System.Runtime.Serialization.SerializationInfo::GetString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SerializationInfo_GetString_mF0753AFAA13AABF8A30B8F0890AEC52BFBBC73E9 (SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* __this, String_t* ___name0, const RuntimeMethod* method) ; // System.String System.Environment::get_NewLine() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_get_NewLine_m86172FA1FF2F93F740EFB5760938B35750DD35C0 (const RuntimeMethod* method) ; // System.String System.String::Concat(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0 (String_t* ___str00, String_t* ___str11, String_t* ___str22, const RuntimeMethod* method) ; // System.Void System.ArgumentException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_mB4FA5CCA0CDB08730E9ED40FA935BA38C032D83A (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___info0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___context1, const RuntimeMethod* method) ; // System.Void System.ArgumentException::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException_GetObjectData_m203105469CF041A816427B18882BCFAF7193EA67 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___info0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___context1, const RuntimeMethod* method) ; // System.String System.ArgumentException::get_Message() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ArgumentException_get_Message_m78A896B7D565DAFF78B1987C12FB40374EE1C628 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, const RuntimeMethod* method) ; // System.Void System.EventArgs::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventArgs__ctor_mC6F9412D03203ADEF854117542C8EBF61624C8C3 (EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377* __this, const RuntimeMethod* method) ; // System.Void System.Attribute::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Attribute__ctor_m79ED1BF1EE36D1E417BA89A0D9F91F8AAD8D19E2 (Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA* __this, const RuntimeMethod* method) ; // System.Void System.AttributeUsageAttribute::.ctor(System.AttributeTargets) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeUsageAttribute__ctor_mB1DAD99081C9A5BFCC36040E1979D6CDB6F0BEA0 (AttributeUsageAttribute_t25F34EEA4F7DBA1A8EEFA0685E986AEECE621C49* __this, int32_t ___validOn0, const RuntimeMethod* method) ; // System.Void System.BadImageFormatException::SetMessageField() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BadImageFormatException_SetMessageField_m2CF6F9D64962C849553996493715CBE21F6D970A (BadImageFormatException_t7EBAEDCD74D3274D00106EC0051755C18D20E552* __this, const RuntimeMethod* method) ; // System.Int32 System.Exception::get_HResult() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Exception_get_HResult_mBA9CD3C01C2F0C68DFA6ED7824F7371D7E1A4163_inline (Exception_t* __this, const RuntimeMethod* method) ; // System.String System.IO.FileLoadException::FormatFileLoadExceptionMessage(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* FileLoadException_FormatFileLoadExceptionMessage_m592E09AF619AB6FC5E33B34B2107CB3FBDD11E86 (String_t* ___fileName0, int32_t ___hResult1, const RuntimeMethod* method) ; // System.Type System.Exception::GetType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Exception_GetType_mAD1230385BDC06119C339187CC37F22B6A79CF09 (Exception_t* __this, const RuntimeMethod* method) ; // System.Exception System.Exception::get_InnerException() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Exception_t* Exception_get_InnerException_m0C1BDB339C786BA4DA7D2C1AD214571CFBBB1410_inline (Exception_t* __this, const RuntimeMethod* method) ; // System.Int32 System.Span`1::get_Length() inline int32_t Span_1_get_Length_m8E944E4954E037877A25B9FF6B901F1F901D4769_inline (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305* __this, const RuntimeMethod* method) { return (( int32_t (*) (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305*, const RuntimeMethod*))Span_1_get_Length_m8E944E4954E037877A25B9FF6B901F1F901D4769_gshared_inline)(__this, method); } // T& System.Runtime.InteropServices.MemoryMarshal::GetReference(System.Span`1) inline uint8_t* MemoryMarshal_GetReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m59D122F4A8516149EE7D183E97926157DF41EA1B (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 ___span0, const RuntimeMethod* method) { return (( uint8_t* (*) (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, const RuntimeMethod*))MemoryMarshal_GetReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m59D122F4A8516149EE7D183E97926157DF41EA1B_gshared)(___span0, method); } // System.Void System.ThrowHelper::ThrowArgumentNullException(System.ExceptionArgument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentNullException_m37384675C99E588A5288DECAE9BD7AD7849B22FF (int32_t ___argument0, const RuntimeMethod* method) ; // System.Void System.ThrowHelper::ThrowArgumentOutOfRangeException(System.ExceptionArgument,System.ExceptionResource) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_m94B5049F1DBC694448E5A84D3BA96CBCC0D385C4 (int32_t ___argument0, int32_t ___resource1, const RuntimeMethod* method) ; // System.Void System.ThrowHelper::ThrowArgumentException(System.ExceptionResource,System.ExceptionArgument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentException_m189859F565AD2842BEFC9BE2F39282B7F8112F38 (int32_t ___resource0, int32_t ___argument1, const RuntimeMethod* method) ; // System.Int16 System.BitConverter::ToInt16(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t BitConverter_ToInt16_mC4F4FF7F02DC025F64047372BD5B25540F3EFC62 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___value0, int32_t ___startIndex1, const RuntimeMethod* method) ; // System.Int32 System.BitConverter::ToInt32(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BitConverter_ToInt32_m745DF4DCC23461AB3035A92BC0C4D59AE12E6880 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___value0, int32_t ___startIndex1, const RuntimeMethod* method) ; // System.Int64 System.BitConverter::ToInt64(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BitConverter_ToInt64_m1CDA079BFD3222894DB58B69449E0110ED37AB1C (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___value0, int32_t ___startIndex1, const RuntimeMethod* method) ; // System.Void System.ValueTuple`3::.ctor(T1,T2,T3) inline void ValueTuple_3__ctor_m699C78D670A60A3798B76C427563C939E56A2805 (ValueTuple_3_t572F29F9771D9B8B871C0C91213509EE16360375* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___item10, int32_t ___item21, int32_t ___item32, const RuntimeMethod* method) { (( void (*) (ValueTuple_3_t572F29F9771D9B8B871C0C91213509EE16360375*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t, const RuntimeMethod*))ValueTuple_3__ctor_mE0A5AB1D30678D2D6913FC8C3E7EBEDB4D5B5801_gshared)(__this, ___item10, ___item21, ___item32, method); } // System.Void System.Buffers.SpanAction`2>::.ctor(System.Object,System.IntPtr) inline void SpanAction_2__ctor_m7DE67E22936D164FE13C5FCFFE399831076A0226 (SpanAction_2_t5AD9492C5DCDA0ABCE4EE25DCCF3EBD82BF591B7* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (SpanAction_2_t5AD9492C5DCDA0ABCE4EE25DCCF3EBD82BF591B7*, RuntimeObject*, intptr_t, const RuntimeMethod*))SpanAction_2__ctor_m4BBCE8F9C0E8FCC935E1765742799AEAD48606AE_gshared)(__this, ___object0, ___method1, method); } // System.String System.String::Create>(System.Int32,TState,System.Buffers.SpanAction`2) inline String_t* String_Create_TisValueTuple_3_t572F29F9771D9B8B871C0C91213509EE16360375_m98861909E5319A911639DE0909DF306C05FF9FE1 (int32_t ___length0, ValueTuple_3_t572F29F9771D9B8B871C0C91213509EE16360375 ___state1, SpanAction_2_t5AD9492C5DCDA0ABCE4EE25DCCF3EBD82BF591B7* ___action2, const RuntimeMethod* method) { return (( String_t* (*) (int32_t, ValueTuple_3_t572F29F9771D9B8B871C0C91213509EE16360375, SpanAction_2_t5AD9492C5DCDA0ABCE4EE25DCCF3EBD82BF591B7*, const RuntimeMethod*))String_Create_TisValueTuple_3_tFD2ADB3DA89E958885034AAFEF1ABDA8C814D987_m5E409288A7637C431B8D0248F411CC1378386DE4_gshared)(___length0, ___state1, ___action2, method); } // System.String System.BitConverter::ToString(System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* BitConverter_ToString_m0C49607A2AB0AC978180D8E7D4B1A2053CA895BA (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___value0, int32_t ___startIndex1, int32_t ___length2, const RuntimeMethod* method) ; // System.Void System.BitConverter/<>c::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m4E600C7D4528546FBD5BCE19298A337E85EA5B0C (U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0* __this, const RuntimeMethod* method) ; // System.Void System.ReadOnlySpan`1::.ctor(T[],System.Int32,System.Int32) inline void ReadOnlySpan_1__ctor_m7B5C2765879EA5E8D1617D834CC465A39540A913_inline (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___array0, int32_t ___start1, int32_t ___length2, const RuntimeMethod* method) { (( void (*) (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t, const RuntimeMethod*))ReadOnlySpan_1__ctor_m7B5C2765879EA5E8D1617D834CC465A39540A913_gshared_inline)(__this, ___array0, ___start1, ___length2, method); } // System.Int32 System.ReadOnlySpan`1::get_Length() inline int32_t ReadOnlySpan_1_get_Length_m54864A0BB817050A9110E85BB5FB31EF63699982_inline (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D* __this, const RuntimeMethod* method) { return (( int32_t (*) (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D*, const RuntimeMethod*))ReadOnlySpan_1_get_Length_m54864A0BB817050A9110E85BB5FB31EF63699982_gshared_inline)(__this, method); } // System.Int32 System.Boolean::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_GetHashCode_mEDB6904770C962BAF4510E5D24F08083C33900E3 (bool* __this, const RuntimeMethod* method) ; // System.String System.Boolean::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Boolean_ToString_m6646C8026B1DF381A1EE8CD13549175E9703CC63 (bool* __this, const RuntimeMethod* method) ; // System.String System.Boolean::ToString(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Boolean_ToString_m8A8E8910575F649AA72E01649BACE16F0F362FF4 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ; // System.Boolean System.Boolean::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_Equals_m09E29FD8CDADF609FD8CF4145BFD4843174569A1 (bool* __this, RuntimeObject* ___obj0, const RuntimeMethod* method) ; // System.Boolean System.Boolean::Equals(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_Equals_mC020D5EB2F64274CD623E8449E8777A70BEC6CC9 (bool* __this, bool ___obj0, const RuntimeMethod* method) ; // System.Int32 System.Boolean::CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_CompareTo_mB21CF195A8AB25CA8C228FECCD17F3C4C37BFBBC (bool* __this, RuntimeObject* ___obj0, const RuntimeMethod* method) ; // System.Int32 System.Boolean::CompareTo(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_CompareTo_mB0D677674E0298E4BDE996739648EE53CA883C52 (bool* __this, bool ___value0, const RuntimeMethod* method) ; // System.Boolean System.Boolean::Parse(System.ReadOnlySpan`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_Parse_m3976D37905686476C6AF3EA712C927C7D40DB21D (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___value0, const RuntimeMethod* method) ; // System.Boolean System.Boolean::TryParse(System.ReadOnlySpan`1,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_TryParse_mF9EC88EF35F6CD83185B8F0BA99938148299AB92 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___value0, bool* ___result1, const RuntimeMethod* method) ; // System.Void System.FormatException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* __this, String_t* ___message0, const RuntimeMethod* method) ; // System.Boolean System.MemoryExtensions::EqualsOrdinalIgnoreCase(System.ReadOnlySpan`1,System.ReadOnlySpan`1) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool MemoryExtensions_EqualsOrdinalIgnoreCase_m17DF830414F61377682B8C06BE2AC0DB76558B90_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___span0, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___value1, const RuntimeMethod* method) ; // System.ReadOnlySpan`1 System.Boolean::TrimWhiteSpaceAndNull(System.ReadOnlySpan`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 Boolean_TrimWhiteSpaceAndNull_m7047DFFC82934CC7462E89DC17C80C90286037F5 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___value0, const RuntimeMethod* method) ; // System.Boolean System.Char::IsWhiteSpace(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsWhiteSpace_m9CE0F6685DB2502ABE106D160F95A287EFC07EF9 (Il2CppChar ___c0, const RuntimeMethod* method) ; // System.ReadOnlySpan`1 System.ReadOnlySpan`1::Slice(System.Int32,System.Int32) inline ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ReadOnlySpan_1_Slice_mDEEA4C304B13C8F7A63BC3D60B62FF17BBEE282B_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, int32_t ___start0, int32_t ___length1, const RuntimeMethod* method) { return (( ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1*, int32_t, int32_t, const RuntimeMethod*))ReadOnlySpan_1_Slice_mDEEA4C304B13C8F7A63BC3D60B62FF17BBEE282B_gshared_inline)(__this, ___start0, ___length1, method); } // System.TypeCode System.Boolean::GetTypeCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_GetTypeCode_m44CC6F7DBD0AF3C141F05CB0C759E4EF9155F8F5 (bool* __this, const RuntimeMethod* method) ; // System.Boolean System.Boolean::System.IConvertible.ToBoolean(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_System_IConvertible_ToBoolean_m6FA1BEA60768B38DCEDF07BBA1EDBA2BCAF0B6FA (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ; // System.String SR::Format(System.String,System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_Format_mCBC2E13309DB2E03F48F50E5189DD215B5BA7186 (String_t* ___resourceFormat0, RuntimeObject* ___p11, RuntimeObject* ___p22, const RuntimeMethod* method) ; // System.Void System.InvalidCastException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644 (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* __this, String_t* ___message0, const RuntimeMethod* method) ; // System.Char System.Boolean::System.IConvertible.ToChar(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Boolean_System_IConvertible_ToChar_m11EF01B2E6AF02F4520F83D54DA94E3CE44CD3F1 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ; // System.SByte System.Convert::ToSByte(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m793BA82EEDEE734D5A0CD1F01234A350EFDB7829 (bool ___value0, const RuntimeMethod* method) ; // System.SByte System.Boolean::System.IConvertible.ToSByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Boolean_System_IConvertible_ToSByte_mE55D7971DC11850115853FEBECF40FED2DF5F9D5 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ; // System.Byte System.Convert::ToByte(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_mF977257DBAD4FAD9FF78232B33DF37121800834D (bool ___value0, const RuntimeMethod* method) ; // System.Byte System.Boolean::System.IConvertible.ToByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Boolean_System_IConvertible_ToByte_m9CE5C2837DCD7DAAF77243AD8E326AE2A3EBFE7E (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ; // System.Int16 System.Convert::ToInt16(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_m6D47CE7EDD54438C5E8984E46BD5D7BC75B4C018 (bool ___value0, const RuntimeMethod* method) ; // System.Int16 System.Boolean::System.IConvertible.ToInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Boolean_System_IConvertible_ToInt16_m043BADB1BAB71F37DFD281BD133E37C399E313A7 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ; // System.UInt16 System.Convert::ToUInt16(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_m61CCF77302806BC465D3E04BAF75636FC67E6EB6 (bool ___value0, const RuntimeMethod* method) ; // System.UInt16 System.Boolean::System.IConvertible.ToUInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Boolean_System_IConvertible_ToUInt16_mC7F31B7A47C65A874C5F2C86CB1A2463175361C0 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ; // System.Int32 System.Convert::ToInt32(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_mD16970C5EE189AB763DADA2434A719FDB3FBF542 (bool ___value0, const RuntimeMethod* method) ; // System.Int32 System.Boolean::System.IConvertible.ToInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_System_IConvertible_ToInt32_mFAEA5CA1BAE330DED08F93A22110EDCBD2A6DA9E (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ; // System.UInt32 System.Convert::ToUInt32(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_mD579DB6F3E99722DCE6756D9330B6435B931CBEF (bool ___value0, const RuntimeMethod* method) ; // System.UInt32 System.Boolean::System.IConvertible.ToUInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Boolean_System_IConvertible_ToUInt32_m5969D8115377AB4D915ACCF79F8FDFC3170B2C2F (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ; // System.Int64 System.Convert::ToInt64(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m088C96D2D0B6081065FF8EF0FBF63C7EBC7DC4AF (bool ___value0, const RuntimeMethod* method) ; // System.Int64 System.Boolean::System.IConvertible.ToInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Boolean_System_IConvertible_ToInt64_m6F7839559287DB36883AAE26CF34AC334267049D (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ; // System.UInt64 System.Convert::ToUInt64(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_m9F4FD0FE25118FD7C277B50B09A40FABA35DB514 (bool ___value0, const RuntimeMethod* method) ; // System.UInt64 System.Boolean::System.IConvertible.ToUInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Boolean_System_IConvertible_ToUInt64_mCA5A3F60E9E47C069CD826FC314D4894D6081C26 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ; // System.Single System.Convert::ToSingle(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_m470635428DF749574A86F69989ADB846AA58CA31 (bool ___value0, const RuntimeMethod* method) ; // System.Single System.Boolean::System.IConvertible.ToSingle(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Boolean_System_IConvertible_ToSingle_m7EC922C30450D3B13FD86EA6274E83599E45D34D (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ; // System.Double System.Convert::ToDouble(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Convert_ToDouble_m93A191AA94D0296FA0B89683200BC2ED2C0A4236 (bool ___value0, const RuntimeMethod* method) ; // System.Double System.Boolean::System.IConvertible.ToDouble(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Boolean_System_IConvertible_ToDouble_m946A32A438C782545C5227FF8F2DD42CCAB23BD3 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ; // System.Decimal System.Convert::ToDecimal(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Convert_ToDecimal_mB6256B91DD8809CDE9D6AD1A974C747DA2154F54 (bool ___value0, const RuntimeMethod* method) ; // System.Decimal System.Boolean::System.IConvertible.ToDecimal(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Boolean_System_IConvertible_ToDecimal_m61C64DC150DBF19B1902706164C853E071DF2CAF (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ; // System.DateTime System.Boolean::System.IConvertible.ToDateTime(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D Boolean_System_IConvertible_ToDateTime_m8F60F703F679DB51AC6FCF35CE6633EC9B2087AC (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ; // System.Object System.Convert::DefaultToType(System.IConvertible,System.Type,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Convert_DefaultToType_mA9DEFD8F897A7E13EA62DA8052A509C46D60B04F (RuntimeObject* ___value0, Type_t* ___targetType1, RuntimeObject* ___provider2, const RuntimeMethod* method) ; // System.Object System.Boolean::System.IConvertible.ToType(System.Type,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Boolean_System_IConvertible_ToType_mC58A3CF5D8EF4A62F8046D390CC58755424F02B5 (bool* __this, Type_t* ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method) ; // System.Int32 System.Byte::CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_CompareTo_m4F4B52E1A3F43E77E2054A5F2178DFBCB23DFF2C (uint8_t* __this, RuntimeObject* ___value0, const RuntimeMethod* method) ; // System.Int32 System.Byte::CompareTo(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_CompareTo_m188EF2F51CA95A2820D240FE282E165FAEF8A5B8 (uint8_t* __this, uint8_t ___value0, const RuntimeMethod* method) ; // System.Boolean System.Byte::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Byte_Equals_m07028241299798697EB8ECAD879B956B0C6F406C (uint8_t* __this, RuntimeObject* ___obj0, const RuntimeMethod* method) ; // System.Boolean System.Byte::Equals(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Byte_Equals_m25D9E26BA4A7457D39CC3E870C2B33070D731E85 (uint8_t* __this, uint8_t ___obj0, const RuntimeMethod* method) ; // System.Int32 System.Byte::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_GetHashCode_mB42A844E310593D124CE92EBA90F3755C9B10678 (uint8_t* __this, const RuntimeMethod* method) ; // System.ReadOnlySpan`1 System.String::op_Implicit(System.String) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 String_op_Implicit_m43FB5A30521770D4C28C1307CF89F80BA3535CAC_inline (String_t* ___value0, const RuntimeMethod* method) ; // System.Globalization.NumberFormatInfo System.Globalization.NumberFormatInfo::GetInstance(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* NumberFormatInfo_GetInstance_m68D84692285114DC53C752EFC2A559319D117E71 (RuntimeObject* ___formatProvider0, const RuntimeMethod* method) ; // System.Byte System.Byte::Parse(System.ReadOnlySpan`1,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Byte_Parse_m6F6F3E5A58CAD8E54F357EE7FC3F4F78AE6BF888 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___s0, int32_t ___style1, NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___info2, const RuntimeMethod* method) ; // System.Void System.Globalization.NumberFormatInfo::ValidateParseStyleInteger(System.Globalization.NumberStyles) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatInfo_ValidateParseStyleInteger_m18EE5C87FC4B9AEEDC834D4715ADE74F2A4A2F89 (int32_t ___style0, const RuntimeMethod* method) ; // System.Int32 System.Number::ParseInt32(System.ReadOnlySpan`1,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Number_ParseInt32_m2CCF8EEB897DD48FD55F19438A939E4A1268E2D1 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___value0, int32_t ___styles1, NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___info2, const RuntimeMethod* method) ; // System.Void System.OverflowException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OverflowException__ctor_mB00A07CDB7E5230B8D2BB31696E63F3CB1C36EF9 (OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C* __this, String_t* ___message0, Exception_t* ___innerException1, const RuntimeMethod* method) ; // System.Void System.OverflowException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OverflowException__ctor_m2B99D79236B7B87C0BB6C9AB2E557DECE481C264 (OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C* __this, String_t* ___message0, const RuntimeMethod* method) ; // System.Boolean System.Byte::TryParse(System.ReadOnlySpan`1,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo,System.Byte&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Byte_TryParse_m14EF6D154EAE44467AA895E709A8EC0B5FADC1BB (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___s0, int32_t ___style1, NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___info2, uint8_t* ___result3, const RuntimeMethod* method) ; // System.Boolean System.Number::TryParseInt32(System.ReadOnlySpan`1,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Number_TryParseInt32_m1CA7E6F0DFA4A6CE89BAE9339DE36439D6CE242F (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___value0, int32_t ___styles1, NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___info2, int32_t* ___result3, const RuntimeMethod* method) ; // System.ReadOnlySpan`1 System.ReadOnlySpan`1::op_Implicit(T[]) inline ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ReadOnlySpan_1_op_Implicit_mE8C60AF5247A6927ED5FB2E409C9BEA8881763A7 (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___array0, const RuntimeMethod* method) { return (( ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 (*) (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, const RuntimeMethod*))ReadOnlySpan_1_op_Implicit_mE8C60AF5247A6927ED5FB2E409C9BEA8881763A7_gshared)(___array0, method); } // System.String System.Number::FormatInt32(System.Int32,System.ReadOnlySpan`1,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Number_FormatInt32_mE15A3C8421BBF412ED9A4F746917B7CFEB7F482F (int32_t ___value0, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___format1, RuntimeObject* ___provider2, const RuntimeMethod* method) ; // System.String System.Byte::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Byte_ToString_mB80CE094B94215119578E4D796566E71D7277EE4 (uint8_t* __this, const RuntimeMethod* method) ; // System.String System.Byte::ToString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Byte_ToString_m793A41EEEB7B422F6FE658E99D2F7683F59EE310 (uint8_t* __this, String_t* ___format0, const RuntimeMethod* method) ; // System.String System.Byte::ToString(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Byte_ToString_m3F9787FE9A306FE63F388635DEE2733F91588A86 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ; // System.String System.Byte::ToString(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Byte_ToString_m64EE358F20093EE61D30F9A21638D9E9EE8F87EC (uint8_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method) ; // System.Boolean System.Number::TryFormatInt32(System.Int32,System.ReadOnlySpan`1,System.IFormatProvider,System.Span`1,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Number_TryFormatInt32_m764B3C1C5B6B800E62FFAA1639E060545D462B73 (int32_t ___value0, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___format1, RuntimeObject* ___provider2, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___destination3, int32_t* ___charsWritten4, const RuntimeMethod* method) ; // System.Boolean System.Byte::TryFormat(System.Span`1,System.Int32&,System.ReadOnlySpan`1,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Byte_TryFormat_m001551267A8748E3D23C0DE0AF5FEB2BF06A463E (uint8_t* __this, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___destination0, int32_t* ___charsWritten1, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___format2, RuntimeObject* ___provider3, const RuntimeMethod* method) ; // System.TypeCode System.Byte::GetTypeCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_GetTypeCode_m6912C4FFCA77C451D472C49BF11B6DF23D19DD5A (uint8_t* __this, const RuntimeMethod* method) ; // System.Boolean System.Convert::ToBoolean(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_ToBoolean_m15C298BDE61E3537C216A843315CD45862704BBD (uint8_t ___value0, const RuntimeMethod* method) ; // System.Boolean System.Byte::System.IConvertible.ToBoolean(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Byte_System_IConvertible_ToBoolean_m15AAAD9A718AB9FAD0A94F5043F8346972CFC1AC (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ; // System.Char System.Convert::ToChar(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Convert_ToChar_mD0979A5230E20EFC1B1F98ED8BE59DBF823F74D1 (uint8_t ___value0, const RuntimeMethod* method) ; // System.Char System.Byte::System.IConvertible.ToChar(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Byte_System_IConvertible_ToChar_m16900E3F6F5018EA82822F2189EDF5D7170BBEC5 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ; // System.SByte System.Convert::ToSByte(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m9D76A66E6BB33DBF659E7447ED25F1A72E8501A0 (uint8_t ___value0, const RuntimeMethod* method) ; // System.SByte System.Byte::System.IConvertible.ToSByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Byte_System_IConvertible_ToSByte_mB1DD8E73C6048E7FDEF4DC93E02A61ABFD000473 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ; // System.Byte System.Byte::System.IConvertible.ToByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Byte_System_IConvertible_ToByte_m98B7242B033E411F5A138C706C462E3FF30C06B5 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ; // System.Int16 System.Convert::ToInt16(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_mB3F7CAFE06DD8DEDCA63A9AED26F753E92FB0CEF (uint8_t ___value0, const RuntimeMethod* method) ; // System.Int16 System.Byte::System.IConvertible.ToInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Byte_System_IConvertible_ToInt16_mA8520BBFAE4C4A49FA94E5DF881CE2DD48D1D24C (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ; // System.UInt16 System.Convert::ToUInt16(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_m06D1DFA8EB77970F1736CEF33904EBEE476B7860 (uint8_t ___value0, const RuntimeMethod* method) ; // System.UInt16 System.Byte::System.IConvertible.ToUInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Byte_System_IConvertible_ToUInt16_m331997ACA7849890AF2574C7027A6B87CF5E30B0 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ; // System.Int32 System.Convert::ToInt32(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_mD6F4F8BC8041480EBBF52F8CA11D1386A5EE019D (uint8_t ___value0, const RuntimeMethod* method) ; // System.Int32 System.Byte::System.IConvertible.ToInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_System_IConvertible_ToInt32_m24AC7525BCFC9E027B736C4B89F982B0BE065589 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ; // System.UInt32 System.Convert::ToUInt32(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_mF374B8C0AFCF94DA41B29ED55B03DE0EA45D0C86 (uint8_t ___value0, const RuntimeMethod* method) ; // System.UInt32 System.Byte::System.IConvertible.ToUInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Byte_System_IConvertible_ToUInt32_m3259A51E651A2B052656396CE0D2E085E084BFA8 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ; // System.Int64 System.Convert::ToInt64(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m07CC879AB17B027757C66B87C50DEB0322589382 (uint8_t ___value0, const RuntimeMethod* method) ; // System.Int64 System.Byte::System.IConvertible.ToInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Byte_System_IConvertible_ToInt64_m7D04DF58D64EB154C4FD6F96F3D311D16836FFBA (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ; // System.UInt64 System.Convert::ToUInt64(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_mF93EE9B4E26F1E75F6A4AB861CE607B4617E1647 (uint8_t ___value0, const RuntimeMethod* method) ; // System.UInt64 System.Byte::System.IConvertible.ToUInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Byte_System_IConvertible_ToUInt64_m6EE1C6C9A086A1946E4E565C0F8ADAC0CB65BDA2 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ; // System.Single System.Convert::ToSingle(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_mB480FA1431E5AE1B4CF7656C8F1793ABB1BCF510 (uint8_t ___value0, const RuntimeMethod* method) ; // System.Single System.Byte::System.IConvertible.ToSingle(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Byte_System_IConvertible_ToSingle_m59853A1358A49ADA1E5EF642A98FDB823F7662D2 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ; // System.Double System.Convert::ToDouble(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Convert_ToDouble_m7228B357220BA95839878BF7ED5E80E240C1DF2C (uint8_t ___value0, const RuntimeMethod* method) ; // System.Double System.Byte::System.IConvertible.ToDouble(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Byte_System_IConvertible_ToDouble_mA2A33181FC392A7297024AF6C3CC8741C662C369 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ; // System.Decimal System.Convert::ToDecimal(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Convert_ToDecimal_m7234AEE7D565341F354FB129BB3293C6DA52B406 (uint8_t ___value0, const RuntimeMethod* method) ; // System.Decimal System.Byte::System.IConvertible.ToDecimal(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Byte_System_IConvertible_ToDecimal_m26448B959796B46664E0EA46CE830A4DFF87B0BF (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ; // System.DateTime System.Byte::System.IConvertible.ToDateTime(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D Byte_System_IConvertible_ToDateTime_mC69B22A478E7F1D3B34FDD335DCC757BD8D9BE50 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ; // System.Object System.Byte::System.IConvertible.ToType(System.Type,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Byte_System_IConvertible_ToType_mD135EC369A750E53243454D77179B00DE1C772C6 (uint8_t* __this, Type_t* ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method) ; // System.Int32 System.Char::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_GetHashCode_mB5406F7D8B6D7545CD1CE6FCA0567BD7217E6B93 (Il2CppChar* __this, const RuntimeMethod* method) ; // System.Boolean System.Char::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_Equals_mE997ECE5A71CDA6C3C9AFA6EF22EE50BED8EE8E0 (Il2CppChar* __this, RuntimeObject* ___obj0, const RuntimeMethod* method) ; // System.Boolean System.Char::Equals(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_Equals_mEA7BFB45790C973DF6352091FA924B3FB2EFCE4B (Il2CppChar* __this, Il2CppChar ___obj0, const RuntimeMethod* method) ; // System.Int32 System.Char::CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_CompareTo_m8EA6F779C3E8158B00C31C6136699AD3DB8F49E8 (Il2CppChar* __this, RuntimeObject* ___value0, const RuntimeMethod* method) ; // System.Int32 System.Char::CompareTo(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_CompareTo_m2C1EEB369FD610EA9278085CF0076DB7EF4ABAD7 (Il2CppChar* __this, Il2CppChar ___value0, const RuntimeMethod* method) ; // System.String System.Char::ToString(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Char_ToString_m0B6C7DF5A285D4F8F62CCBA35A2B92E48C3AD288 (Il2CppChar ___c0, const RuntimeMethod* method) ; // System.String System.Char::ToString(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Char_ToString_m34499826F048A38EB8216D5844A5DA49F54719C8 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ; // System.String System.String::CreateFromChar(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateFromChar_m95EB2869FFD1A844B0F4236BAB2107EECA5B4883 (Il2CppChar ___c0, const RuntimeMethod* method) ; // System.Boolean System.Char::IsLatin1(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsLatin1_mDAE3647705C0623050B979F91708EDA6765F61A4 (Il2CppChar ___ch0, const RuntimeMethod* method) ; // System.Globalization.UnicodeCategory System.Globalization.CharUnicodeInfo::GetUnicodeCategory(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CharUnicodeInfo_GetUnicodeCategory_m1EA8314CF89D9C744D5B2BED9F3479C7C5467319 (Il2CppChar ___ch0, const RuntimeMethod* method) ; // System.Boolean System.Char::IsAscii(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsAscii_mE9DB6271D433C5A5DF8C466A9A9E1F3DEA4AEB46 (Il2CppChar ___ch0, const RuntimeMethod* method) ; // System.Globalization.UnicodeCategory System.Char::GetLatin1UnicodeCategory(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_GetLatin1UnicodeCategory_m2865763AF77B942390649E0025297D76DE9326EB (Il2CppChar ___ch0, const RuntimeMethod* method) ; // System.Boolean System.Char::CheckLetter(System.Globalization.UnicodeCategory) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_CheckLetter_m385BC1412538723AF7FAD5C1DA3E0A51DE1E686E (int32_t ___uc0, const RuntimeMethod* method) ; // System.Boolean System.Char::IsWhiteSpaceLatin1(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsWhiteSpaceLatin1_mC6DDF00F21F333592133A5A8A01318EDD2512578 (Il2CppChar ___c0, const RuntimeMethod* method) ; // System.Boolean System.Globalization.CharUnicodeInfo::IsWhiteSpace(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CharUnicodeInfo_IsWhiteSpace_m0E3553DF0D1B7875EBFBB6573BFBDB281722929E (Il2CppChar ___c0, const RuntimeMethod* method) ; // System.Boolean System.Char::CheckPunctuation(System.Globalization.UnicodeCategory) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_CheckPunctuation_mB7F1127D3371870A7A431548E6866FF9CE19741E (int32_t ___uc0, const RuntimeMethod* method) ; // System.Boolean System.Char::CheckLetterOrDigit(System.Globalization.UnicodeCategory) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_CheckLetterOrDigit_m76D5839A6AAFF507180AE5F42AD106E77887AFFC (int32_t ___uc0, const RuntimeMethod* method) ; // System.Globalization.CultureInfo System.Globalization.CultureInfo::get_CurrentCulture() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* CultureInfo_get_CurrentCulture_m43D1E4E50AB1F62ADC7C1884F28F918B53871522 (const RuntimeMethod* method) ; // System.TypeCode System.Char::GetTypeCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_GetTypeCode_mDEFAE6F74D10A05F17AA43B3B11B273407B51C0C (Il2CppChar* __this, const RuntimeMethod* method) ; // System.Boolean System.Char::System.IConvertible.ToBoolean(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_System_IConvertible_ToBoolean_m0F898C7790A3D055C6171AA576920DB109108881 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ; // System.Char System.Char::System.IConvertible.ToChar(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_System_IConvertible_ToChar_m48EAFBEF2A0F20A3DA4BF679C1BDE132F9773635 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ; // System.SByte System.Convert::ToSByte(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m3F6B0BF98A8529D37624CE40648F73CB10E01FFF (Il2CppChar ___value0, const RuntimeMethod* method) ; // System.SByte System.Char::System.IConvertible.ToSByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Char_System_IConvertible_ToSByte_m82846B92375A52EDB7036F6B9E6A1C9802DC9B81 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ; // System.Byte System.Convert::ToByte(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_m16B87AC88052BB919DB0750F93819AAEDFCA5328 (Il2CppChar ___value0, const RuntimeMethod* method) ; // System.Byte System.Char::System.IConvertible.ToByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Char_System_IConvertible_ToByte_mB1A4849624C4CF1A8F96A6B38F8F650FB1CA307E (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ; // System.Int16 System.Convert::ToInt16(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_m68A8B475F8B3DB23BBDB85E60FCD399337C3FB5A (Il2CppChar ___value0, const RuntimeMethod* method) ; // System.Int16 System.Char::System.IConvertible.ToInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Char_System_IConvertible_ToInt16_mAC73E0A96AFF406F4FBCD0DC58EC8ACBF75944BB (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ; // System.UInt16 System.Convert::ToUInt16(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_m0FB860828DC5FD0B84FF8AF8B56E3E20107595FE (Il2CppChar ___value0, const RuntimeMethod* method) ; // System.UInt16 System.Char::System.IConvertible.ToUInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Char_System_IConvertible_ToUInt16_m6498AA03AB1C7B3C3533BE8451B5D3776551F304 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ; // System.Int32 System.Convert::ToInt32(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m7B23BC2572EEB2B03EDAA26D2D9232C4A00DA00C (Il2CppChar ___value0, const RuntimeMethod* method) ; // System.Int32 System.Char::System.IConvertible.ToInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_System_IConvertible_ToInt32_mAE1897F49E270263A7E4DC0EDDCDECF8C7CC9D9B (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ; // System.UInt32 System.Convert::ToUInt32(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_m6C49ADD250ABFA39D54638C9EF14DAB913915EF4 (Il2CppChar ___value0, const RuntimeMethod* method) ; // System.UInt32 System.Char::System.IConvertible.ToUInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Char_System_IConvertible_ToUInt32_mD12DB02DE1D5DFB0AA9C0714F5CC9ECD2CD90838 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ; // System.Int64 System.Convert::ToInt64(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m78EE47584CDC6753BC193CC3E469BECEF305DE2E (Il2CppChar ___value0, const RuntimeMethod* method) ; // System.Int64 System.Char::System.IConvertible.ToInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Char_System_IConvertible_ToInt64_m62BC0D4913BE6CB22D2560BC2B5AEC37CC6F9C2B (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ; // System.UInt64 System.Convert::ToUInt64(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_mDD6727751D6284FE0BCFCE3B3195DBFEDB6F8A74 (Il2CppChar ___value0, const RuntimeMethod* method) ; // System.UInt64 System.Char::System.IConvertible.ToUInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Char_System_IConvertible_ToUInt64_mE92B98ED642D7F54C31683FA4D0839AAA2C5B08F (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ; // System.Single System.Char::System.IConvertible.ToSingle(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Char_System_IConvertible_ToSingle_m6DF18561FBA23392B504A2F3014C560119D5572D (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ; // System.Double System.Char::System.IConvertible.ToDouble(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Char_System_IConvertible_ToDouble_mCFFD243E00E63755A02502B3587AFED2871BA28B (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ; // System.Decimal System.Char::System.IConvertible.ToDecimal(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Char_System_IConvertible_ToDecimal_m8F8DC304778474C5F234C04893A7E435D3B8CBA2 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ; // System.DateTime System.Char::System.IConvertible.ToDateTime(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D Char_System_IConvertible_ToDateTime_m049E4F0DE75C1A8B7F9D6585ED227C3DBB381E9C (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ; // System.Object System.Char::System.IConvertible.ToType(System.Type,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Char_System_IConvertible_ToType_m573727F6924194290136ED9FDC123736729AEAA3 (Il2CppChar* __this, Type_t* ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method) ; // System.Void System.ArgumentOutOfRangeException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* __this, String_t* ___paramName0, const RuntimeMethod* method) ; // System.Globalization.UnicodeCategory System.Globalization.CharUnicodeInfo::GetUnicodeCategory(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CharUnicodeInfo_GetUnicodeCategory_m21403628A021BF1367C3E7CFE9AB1475F7A60DB7 (String_t* ___s0, int32_t ___index1, const RuntimeMethod* method) ; // System.Boolean System.Char::CheckNumber(System.Globalization.UnicodeCategory) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_CheckNumber_m193CAE991460253C044BCBCFCAFAC112FF568837 (int32_t ___uc0, const RuntimeMethod* method) ; // System.Boolean System.Char::IsSeparatorLatin1(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsSeparatorLatin1_m4F7F173D5F045AF010207CABC5E3E75A4C54E534 (Il2CppChar ___c0, const RuntimeMethod* method) ; // System.Boolean System.Char::CheckSeparator(System.Globalization.UnicodeCategory) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_CheckSeparator_m0A26D7961EDCF82ED1457F3D64C0A5C00878899B (int32_t ___uc0, const RuntimeMethod* method) ; // System.Boolean System.Char::IsSurrogate(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsSurrogate_mAA37183DD9C3A6CB9B8107F24D00BCB9B76ECA02 (Il2CppChar ___c0, const RuntimeMethod* method) ; // System.Boolean System.Globalization.CharUnicodeInfo::IsWhiteSpace(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CharUnicodeInfo_IsWhiteSpace_m7C33B1C929F586A8061CB6A4BC44EADF4717288A (String_t* ___s0, int32_t ___index1, const RuntimeMethod* method) ; // System.Globalization.UnicodeCategory System.Globalization.CharUnicodeInfo::GetUnicodeCategory(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CharUnicodeInfo_GetUnicodeCategory_m9D7EA7AEB2B282195ECCFE164A7BDC40AA3D6F96 (int32_t ___codePoint0, const RuntimeMethod* method) ; // System.Globalization.UnicodeCategory System.Globalization.CharUnicodeInfo::InternalGetUnicodeCategory(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CharUnicodeInfo_InternalGetUnicodeCategory_m35376C53151052BC2CE08F47EB98F1C476F7F417 (String_t* ___value0, int32_t ___index1, const RuntimeMethod* method) ; // System.Boolean System.Char::IsHighSurrogate(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsHighSurrogate_m8842F5E950FC9EAE3B20556630C2AA5CA9FEB6D4 (Il2CppChar ___c0, const RuntimeMethod* method) ; // System.Boolean System.Char::IsLowSurrogate(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsLowSurrogate_m9B21C320DB62482E16DA5952B93E5EDEA269AD62 (Il2CppChar ___c0, const RuntimeMethod* method) ; // System.Void System.Runtime.CompilerServices.RuntimeHelpers::InitializeArray(System.Array,System.RuntimeFieldHandle) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeHelpers_InitializeArray_mE10C3436BA703E4D9D41B3F8F365E4C34F9926EF (RuntimeArray* ___array0, RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 ___fldHandle1, const RuntimeMethod* method) ; // System.Object System.Object::MemberwiseClone() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Object_MemberwiseClone_m0676AEE25C3CF7C09F15ECF9EC5CC407863617B3 (RuntimeObject* __this, const RuntimeMethod* method) ; // System.Char System.CharEnumerator::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar CharEnumerator_get_Current_mCF74B5DF8F8017240ECBB935A02B2D0BDABCE9BB (CharEnumerator_tD01B8BB6885F5B73C03B665FA10D64B8B61B4A7D* __this, const RuntimeMethod* method) ; // System.Void System.InvalidOperationException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162 (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* __this, String_t* ___message0, const RuntimeMethod* method) ; // T& System.Runtime.InteropServices.MemoryMarshal::GetReference(System.ReadOnlySpan`1) inline Il2CppChar* MemoryMarshal_GetReference_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_m90426C97E513B64C17AE47E597545E6686B0900E (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___span0, const RuntimeMethod* method) { return (( Il2CppChar* (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, const RuntimeMethod*))MemoryMarshal_GetReference_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_m90426C97E513B64C17AE47E597545E6686B0900E_gshared)(___span0, method); } // System.Int32 System.Convert::Decode(System.Char&,System.SByte&) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Convert_Decode_mD9AF0DB8679568C1727F60583567F7669AE8FDDF_inline (Il2CppChar* ___encodedChars0, int8_t* ___decodingMap1, const RuntimeMethod* method) ; // System.Void System.Convert::WriteThreeLowOrderBytes(System.Byte&,System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Convert_WriteThreeLowOrderBytes_mB8A6D6DA8A0990B72ABE97AAF4D965F1A33E375F_inline (uint8_t* ___destination0, int32_t ___value1, const RuntimeMethod* method) ; // System.Boolean System.Type::op_Equality(System.Type,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7 (Type_t* ___left0, Type_t* ___right1, const RuntimeMethod* method) ; // System.Type System.Object::GetType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3 (RuntimeObject* __this, const RuntimeMethod* method) ; // System.String System.String::Format(System.String,System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m9499958F4B0BB6089C75760AB647AB3CA4D55806 (String_t* ___format0, RuntimeObject* ___arg01, RuntimeObject* ___arg12, const RuntimeMethod* method) ; // System.Object System.Convert::ChangeType(System.Object,System.Type,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Convert_ChangeType_m237EF4F56EC5DE52FCDAD2E27DEEEBB21549B1F4 (RuntimeObject* ___value0, Type_t* ___conversionType1, RuntimeObject* ___provider2, const RuntimeMethod* method) ; // System.Boolean System.Type::get_IsValueType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsValueType_m59AE2E0439DC06347B8D6B38548F3CBA54D38318 (Type_t* __this, const RuntimeMethod* method) ; // System.Boolean System.Boolean::Parse(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_Parse_mE3D8860431C87FBE1D7C6EACA665548AFE144F38 (String_t* ___value0, const RuntimeMethod* method) ; // System.Boolean System.Decimal::op_Inequality(System.Decimal,System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Decimal_op_Inequality_m11FF862E6156770CB52AEC78AB4D7D96358B25AA (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___d10, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___d21, const RuntimeMethod* method) ; // System.Void System.Convert::ThrowCharOverflowException() IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Convert_ThrowCharOverflowException_m3F094CB5AA3E325F9ED1A407021FCD13CADF117F (const RuntimeMethod* method) ; // System.Char System.Convert::ToChar(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Convert_ToChar_m999DFF96BEC05D5CFDAAC59C19F125C6827E436C (String_t* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) ; // System.Void System.Convert::ThrowSByteOverflowException() IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Convert_ThrowSByteOverflowException_m516C925A443481A76D7233C155E9AFBC1481E002 (const RuntimeMethod* method) ; // System.SByte System.Convert::ToSByte(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_mBCCAF04076C6D3383BC131F564B19833A81D4D12 (double ___value0, const RuntimeMethod* method) ; // System.Int32 System.Convert::ToInt32(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_mF5B01B9D8B48919B05632EBF8ED0553474803A19 (double ___value0, const RuntimeMethod* method) ; // System.SByte System.Convert::ToSByte(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m48FEC408BB749C81B91BAB51AC744EF05C7B1B25 (int32_t ___value0, const RuntimeMethod* method) ; // System.Decimal System.Decimal::Round(System.Decimal,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Decimal_Round_m9B0A87CF450C8D99BBBC46FD35B3664842AAF28A (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___d0, int32_t ___decimals1, const RuntimeMethod* method) ; // System.SByte System.Decimal::ToSByte(System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Decimal_ToSByte_m328338DE187B3851D34BCC74571781719A6E5C48 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___value0, const RuntimeMethod* method) ; // System.SByte System.SByte::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t SByte_Parse_m5A860BD359C3C985A5CF31F10CA605EDBA9EA158 (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, const RuntimeMethod* method) ; // System.Void System.Convert::ThrowByteOverflowException() IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Convert_ThrowByteOverflowException_m3C5E6C6941B2C5B87B6082BC69F0ED13EDF6D644 (const RuntimeMethod* method) ; // System.Byte System.Convert::ToByte(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_m5E53D009F58FF2D7D9AC5F9FCC76EB30AEBBE8D9 (double ___value0, const RuntimeMethod* method) ; // System.Byte System.Convert::ToByte(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_mFF10E9758B7414E9C187C95ECB27FB1DFD7904B2 (int32_t ___value0, const RuntimeMethod* method) ; // System.Byte System.Decimal::ToByte(System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Decimal_ToByte_mC871EEA6064601E69B10B8E3231B43B83878842F (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___value0, const RuntimeMethod* method) ; // System.Byte System.Byte::Parse(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Byte_Parse_mDF4F9DCA4919350FCFA6014D44DA6AC5D40C9665 (String_t* ___s0, RuntimeObject* ___provider1, const RuntimeMethod* method) ; // System.Byte System.Byte::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Byte_Parse_mB145C7CF0F7A3BBB0D8D19F3B69FE647C71D20DD (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, const RuntimeMethod* method) ; // System.Void System.Convert::ThrowInt16OverflowException() IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Convert_ThrowInt16OverflowException_m6DE53E843F3701BD4999A40674A44DF2280FFFC4 (const RuntimeMethod* method) ; // System.Int16 System.Convert::ToInt16(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_mACA2633040D9B9900FC6AA265F4477146BB83CBD (double ___value0, const RuntimeMethod* method) ; // System.Int16 System.Convert::ToInt16(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_m01293E1E7E09858C74DE663E5EE1819A5D75FADB (int32_t ___value0, const RuntimeMethod* method) ; // System.Int16 System.Decimal::ToInt16(System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Decimal_ToInt16_m876A3F7D9FABB104373211ED85B347573F21C70A (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___value0, const RuntimeMethod* method) ; // System.Int16 System.Int16::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Int16_Parse_mB29053BDDF0F3B521B0DC59AD3A1276F0891AB2E (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, const RuntimeMethod* method) ; // System.Void System.Convert::ThrowUInt16OverflowException() IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Convert_ThrowUInt16OverflowException_m0B9408271B529B2C798687CE1C48DED0D2BB396F (const RuntimeMethod* method) ; // System.UInt16 System.Convert::ToUInt16(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_mDA628B7AA6344EFFC65CBD431CB05249C1DA032C (double ___value0, const RuntimeMethod* method) ; // System.UInt16 System.Convert::ToUInt16(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_m574A6C8E905EEADA4FC733AE24C6DFCB8CAB0017 (int32_t ___value0, const RuntimeMethod* method) ; // System.UInt16 System.Decimal::ToUInt16(System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Decimal_ToUInt16_m1623E741A0EAA351EF1E9493887DB60815CEEC4A (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___value0, const RuntimeMethod* method) ; // System.UInt16 System.UInt16::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t UInt16_Parse_m611A8B68FDAB6B48A9E5DBB44CD0230DE9C57586 (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, const RuntimeMethod* method) ; // System.Void System.Convert::ThrowInt32OverflowException() IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Convert_ThrowInt32OverflowException_m6BC145DD83A74DD22E28360B787FCF3FEEF125D3 (const RuntimeMethod* method) ; // System.Int32 System.Decimal::ToInt32(System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Decimal_ToInt32_m683C06E2C4596EC3BD7106B222AAA161D07F423A (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___d0, const RuntimeMethod* method) ; // System.Int32 System.Int32::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int32_Parse_m4E0F64712C08AC41AF6A692207E90020BC6BD7BE (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, const RuntimeMethod* method) ; // System.Void System.Convert::ThrowUInt32OverflowException() IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Convert_ThrowUInt32OverflowException_m7A384673C2A1C80ADDE1013AFF3F15F0F210CBAD (const RuntimeMethod* method) ; // System.UInt32 System.Convert::ToUInt32(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_mFDECCDA93B6FFF3EA3E3B874EAD954410AC8577A (double ___value0, const RuntimeMethod* method) ; // System.UInt32 System.Decimal::ToUInt32(System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Decimal_ToUInt32_mF5CF64E6C53BECACD3DBD091FC6C0608D1C41B29 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___d0, const RuntimeMethod* method) ; // System.UInt32 System.UInt32::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t UInt32_Parse_mDAD25C8FC2F1A9AC06A4542C93718D939890B545 (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, const RuntimeMethod* method) ; // System.Void System.Convert::ThrowInt64OverflowException() IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Convert_ThrowInt64OverflowException_mA6ADF322807A2E2FCACCE80273B8E47E37626B40 (const RuntimeMethod* method) ; // System.Int64 System.Convert::ToInt64(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m5B707D520332D512D2B81C10D2F4044FA468C3A4 (double ___value0, const RuntimeMethod* method) ; // System.Int64 System.Decimal::ToInt64(System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Decimal_ToInt64_mA97479D4AC61BC0E51DD9552C78EAC2B13C6F347 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___d0, const RuntimeMethod* method) ; // System.Int64 System.Int64::Parse(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Int64_Parse_mB5F8E4FC206A9A8445F6A81076C2885BDD2BFF04 (String_t* ___s0, RuntimeObject* ___provider1, const RuntimeMethod* method) ; // System.Int64 System.Int64::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Int64_Parse_m29E349CD0EFA58F997622CB547FE9F0DD130A027 (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, const RuntimeMethod* method) ; // System.Void System.Convert::ThrowUInt64OverflowException() IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Convert_ThrowUInt64OverflowException_mE098E118D47982640208F378D742B24DD1B91BFA (const RuntimeMethod* method) ; // System.UInt64 System.Convert::ToUInt64(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_m4990F2CE28C4CE3079D458BA578EFBA46D875B3E (double ___value0, const RuntimeMethod* method) ; // System.UInt64 System.Decimal::ToUInt64(System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Decimal_ToUInt64_m291071E9749B7651271F3F11026A6A7DE7DA4D3A (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___d0, const RuntimeMethod* method) ; // System.UInt64 System.UInt64::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t UInt64_Parse_m742469A6A10955F7633E2D897B33309B264427E1 (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, const RuntimeMethod* method) ; // System.Single System.Decimal::op_Explicit(System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Decimal_op_Explicit_m52A93EB0AC4766C64D68DB6947D9D2770EFE8A93 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___value0, const RuntimeMethod* method) ; // System.Single System.Single::Parse(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Single_Parse_m4CCF536F9DA447D8822618DF5C6F8F31494B2909 (String_t* ___s0, RuntimeObject* ___provider1, const RuntimeMethod* method) ; // System.Single System.Single::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Single_Parse_mE704971BEA03C08E6259D9CA407E2FB3126A7CBB (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, const RuntimeMethod* method) ; // System.Double System.Decimal::op_Explicit(System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Decimal_op_Explicit_mD8E11417E7C50756B8243840D18275050ABABBC6 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___value0, const RuntimeMethod* method) ; // System.Double System.Double::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Double_Parse_m282A37E997C8F446BD373A4DE4673B8FECC37866 (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, const RuntimeMethod* method) ; // System.Decimal System.Decimal::op_Implicit(System.SByte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Decimal_op_Implicit_m5BC5C13C135EABB3CF37747F482B145443829DE0 (int8_t ___value0, const RuntimeMethod* method) ; // System.Decimal System.Decimal::op_Implicit(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Decimal_op_Implicit_m5DD7A9790E3CCD50837323E4B362DC76B38E50CA (uint8_t ___value0, const RuntimeMethod* method) ; // System.Decimal System.Decimal::op_Implicit(System.Int16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Decimal_op_Implicit_m5F6C73D0A9E5387BCBA54C8F60658A7462133874 (int16_t ___value0, const RuntimeMethod* method) ; // System.Decimal System.Decimal::op_Implicit(System.UInt16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Decimal_op_Implicit_mEDBC0300897C0AF80C6C12561B2C2AEF2E70A869 (uint16_t ___value0, const RuntimeMethod* method) ; // System.Decimal System.Decimal::op_Implicit(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Decimal_op_Implicit_mE5A73A41E53B29C29A49359A2B5D0615A867B7C7 (int32_t ___value0, const RuntimeMethod* method) ; // System.Decimal System.Decimal::op_Implicit(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Decimal_op_Implicit_m58428521A30CF198AB5C13110AF042A739E1B3D0 (uint32_t ___value0, const RuntimeMethod* method) ; // System.Decimal System.Decimal::op_Implicit(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Decimal_op_Implicit_m7982D3FD5E6426B823F4EF5993013760731F3CA6 (int64_t ___value0, const RuntimeMethod* method) ; // System.Decimal System.Decimal::op_Implicit(System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Decimal_op_Implicit_m9F78741BD83192AF00055F382D82BC2E64604C8F (uint64_t ___value0, const RuntimeMethod* method) ; // System.Decimal System.Decimal::op_Explicit(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Decimal_op_Explicit_mDF02276E12CC6D2D0285A8D0843ACA0743F42DEC (float ___value0, const RuntimeMethod* method) ; // System.Decimal System.Decimal::op_Explicit(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Decimal_op_Explicit_mD6A0AB17D1C7D2FF325DFBD733CCA7A00AD245DC (double ___value0, const RuntimeMethod* method) ; // System.Decimal System.Decimal::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Decimal_Parse_m7B7D828F53BFF2B330B5857A143D3F92B6449F50 (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, const RuntimeMethod* method) ; // System.DateTime System.DateTime::Parse(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D DateTime_Parse_mFC060EFBF6C9D9FF7E17E23800E3CB14D04B322A (String_t* ___s0, RuntimeObject* ___provider1, const RuntimeMethod* method) ; // System.String System.Int32::ToString(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m3B2730D9F5B0C1C57DCCC8B8DCFB8E5EC4E8979B (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) ; // System.Int32 System.ParseNumbers::StringToInt(System.ReadOnlySpan`1,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ParseNumbers_StringToInt_mE397CFF0BD46555202198D774148AE64023464F4 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___s0, int32_t ___radix1, int32_t ___flags2, const RuntimeMethod* method) ; // System.Int64 System.ParseNumbers::StringToLong(System.ReadOnlySpan`1,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t ParseNumbers_StringToLong_mACCCAE314AD001D74B32792CBA615BDCCB0CE620 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___s0, int32_t ___radix1, int32_t ___flags2, const RuntimeMethod* method) ; // System.String System.ParseNumbers::IntToString(System.Int32,System.Int32,System.Int32,System.Char,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ParseNumbers_IntToString_mBA9B8DE63AD27B0E70D7EBC6E84242CEF32C3F5E (int32_t ___n0, int32_t ___radix1, int32_t ___width2, Il2CppChar ___paddingChar3, int32_t ___flags4, const RuntimeMethod* method) ; // System.String System.ParseNumbers::LongToString(System.Int64,System.Int32,System.Int32,System.Char,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ParseNumbers_LongToString_m2DBAB614263BCD34EA907677B2DBCFDD16FD1017 (int64_t ___n0, int32_t ___radix1, int32_t ___width2, Il2CppChar ___paddingChar3, int32_t ___flags4, const RuntimeMethod* method) ; // System.Void System.ReadOnlySpan`1::.ctor(T[]) inline void ReadOnlySpan_1__ctor_m1D3E8C5A560BE65D9A5C3E5D0D891C79F4895B0B_inline (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___array0, const RuntimeMethod* method) { (( void (*) (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, const RuntimeMethod*))ReadOnlySpan_1__ctor_m1D3E8C5A560BE65D9A5C3E5D0D891C79F4895B0B_gshared_inline)(__this, ___array0, method); } // System.String System.Convert::ToBase64String(System.ReadOnlySpan`1,System.Base64FormattingOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Convert_ToBase64String_mD54CB9A36EA0382194415F9FAA2D89DF34043D79 (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D ___bytes0, int32_t ___options1, const RuntimeMethod* method) ; // System.String System.Convert::ToBase64String(System.Byte[],System.Int32,System.Int32,System.Base64FormattingOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Convert_ToBase64String_m0300A68A4642B54030682C839D4205628A9FB447 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___inArray0, int32_t ___offset1, int32_t ___length2, int32_t ___options3, const RuntimeMethod* method) ; // System.String System.String::Format(System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30 (String_t* ___format0, RuntimeObject* ___arg01, const RuntimeMethod* method) ; // System.Int32 System.Convert::ToBase64_CalculateAndValidateOutputLength(System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToBase64_CalculateAndValidateOutputLength_m53BDF9C19D8CBBECC4CD9556CA22483A8D023275 (int32_t ___inputLength0, bool ___insertLineBreaks1, const RuntimeMethod* method) ; // System.String System.String::FastAllocateString(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_FastAllocateString_mF8E983B7ABC42CA6EB80C5052243D21E81CC2112 (int32_t ___length0, const RuntimeMethod* method) ; // T& System.Runtime.InteropServices.MemoryMarshal::GetReference(System.ReadOnlySpan`1) inline uint8_t* MemoryMarshal_GetReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mE630BC590135F8CE4B147BB7DF7DD45C759397E5 (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D ___span0, const RuntimeMethod* method) { return (( uint8_t* (*) (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D, const RuntimeMethod*))MemoryMarshal_GetReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mE630BC590135F8CE4B147BB7DF7DD45C759397E5_gshared)(___span0, method); } // System.Int32 System.Runtime.CompilerServices.RuntimeHelpers::get_OffsetToStringData() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RuntimeHelpers_get_OffsetToStringData_mBBE58AEA702864FB006771F4600D1D99B1234460 (const RuntimeMethod* method) ; // System.Int32 System.Convert::ConvertToBase64Array(System.Char*,System.Byte*,System.Int32,System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ConvertToBase64Array_m608BE6205D415103EFDFD3A40D6A8A353B529722 (Il2CppChar* ___outChars0, uint8_t* ___inData1, int32_t ___offset2, int32_t ___length3, bool ___insertLineBreaks4, const RuntimeMethod* method) ; // System.Int32 System.Convert::ToBase64CharArray(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32,System.Base64FormattingOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToBase64CharArray_m4785D1B89A5EBB556E2F1ABA5B52674D8255B63C (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___inArray0, int32_t ___offsetIn1, int32_t ___length2, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___outArray3, int32_t ___offsetOut4, int32_t ___options5, const RuntimeMethod* method) ; // System.Void System.OutOfMemoryException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OutOfMemoryException__ctor_m2CDADA05A6304090686E8D5E3E99A1596FAF5951 (OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F* __this, const RuntimeMethod* method) ; // System.Byte[] System.Convert::FromBase64CharPtr(System.Char*,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* Convert_FromBase64CharPtr_mEBD260DAFC4D3A85D913F98F880472EA54801C67 (Il2CppChar* ___inputPtr0, int32_t ___inputLength1, const RuntimeMethod* method) ; // System.Boolean System.Convert::TryDecodeFromUtf16(System.ReadOnlySpan`1,System.Span`1,System.Int32&,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_TryDecodeFromUtf16_m2BD6E50ED7F7CF66CA230283FB137D067863D819 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___utf160, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 ___bytes1, int32_t* ___consumed2, int32_t* ___written3, const RuntimeMethod* method) ; // System.ReadOnlySpan`1 System.ReadOnlySpan`1::Slice(System.Int32) inline ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ReadOnlySpan_1_Slice_mBF43FC5284A77519BB9C3BAB34F66A0A4B78CFE2_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, int32_t ___start0, const RuntimeMethod* method) { return (( ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1*, int32_t, const RuntimeMethod*))ReadOnlySpan_1_Slice_mBF43FC5284A77519BB9C3BAB34F66A0A4B78CFE2_gshared_inline)(__this, ___start0, method); } // System.Span`1 System.Span`1::Slice(System.Int32) inline Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 Span_1_Slice_m720734AA48ECB663CAA0594530927B9015A64341_inline (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305* __this, int32_t ___start0, const RuntimeMethod* method) { return (( Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 (*) (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305*, int32_t, const RuntimeMethod*))Span_1_Slice_m720734AA48ECB663CAA0594530927B9015A64341_gshared_inline)(__this, ___start0, method); } // System.Boolean System.Convert::IsSpace(System.Char) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Convert_IsSpace_m03DCDC8A577EF1BE381C7C0D42550BE85CFFD4F0_inline (Il2CppChar ___c0, const RuntimeMethod* method) ; // System.Void System.Convert::CopyToTempBufferWithoutWhiteSpace(System.ReadOnlySpan`1,System.Span`1,System.Int32&,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Convert_CopyToTempBufferWithoutWhiteSpace_m72FBE2654DACD3D1822F0695CB52A550AE9BEAFD (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___chars0, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___tempBuffer1, int32_t* ___consumed2, int32_t* ___charsWritten3, const RuntimeMethod* method) ; // System.Span`1 System.Span`1::Slice(System.Int32,System.Int32) inline Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D Span_1_Slice_mEFBC3C78FD443FFE23F9E841D43B7B0271622843_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, int32_t ___start0, int32_t ___length1, const RuntimeMethod* method) { return (( Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D (*) (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D*, int32_t, int32_t, const RuntimeMethod*))Span_1_Slice_mEFBC3C78FD443FFE23F9E841D43B7B0271622843_gshared_inline)(__this, ___start0, ___length1, method); } // System.ReadOnlySpan`1 System.Span`1::op_Implicit(System.Span`1) inline ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 Span_1_op_Implicit_mD65020B112814C67FED9F2C3DE2B0B78D4E2A486 (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___span0, const RuntimeMethod* method) { return (( ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 (*) (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D, const RuntimeMethod*))Span_1_op_Implicit_mD65020B112814C67FED9F2C3DE2B0B78D4E2A486_gshared)(___span0, method); } // System.Int32 System.Span`1::get_Length() inline int32_t Span_1_get_Length_mB79622153F80AD55A805C005842AF045F4FCF992_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, const RuntimeMethod* method) { return (( int32_t (*) (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D*, const RuntimeMethod*))Span_1_get_Length_mB79622153F80AD55A805C005842AF045F4FCF992_gshared_inline)(__this, method); } // T[] System.Array::Empty() inline ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* Array_Empty_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m89F7B056854DF715AA3E2B78EB84D5FA3878E474_inline (const RuntimeMethod* method) { return (( ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* (*) (const RuntimeMethod*))Array_Empty_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m89F7B056854DF715AA3E2B78EB84D5FA3878E474_gshared_inline)(method); } // System.Int32 System.Convert::FromBase64_ComputeResultLength(System.Char*,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_FromBase64_ComputeResultLength_mC2C2F8FB18BB4F7D77CDB18D671237365A2C35D5 (Il2CppChar* ___inputPtr0, int32_t ___inputLength1, const RuntimeMethod* method) ; // System.Void System.ReadOnlySpan`1::.ctor(System.Void*,System.Int32) inline void ReadOnlySpan_1__ctor_mB16A8EC9CCDE68A166108BE32B6DDA7D7C88BC17_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, void* ___pointer0, int32_t ___length1, const RuntimeMethod* method) { (( void (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1*, void*, int32_t, const RuntimeMethod*))ReadOnlySpan_1__ctor_mB16A8EC9CCDE68A166108BE32B6DDA7D7C88BC17_gshared_inline)(__this, ___pointer0, ___length1, method); } // System.Span`1 System.Span`1::op_Implicit(T[]) inline Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 Span_1_op_Implicit_mDC0AC5B50ABB4FDDA74ADE064641DB22D560B357 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___array0, const RuntimeMethod* method) { return (( Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 (*) (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, const RuntimeMethod*))Span_1_op_Implicit_mDC0AC5B50ABB4FDDA74ADE064641DB22D560B357_gshared)(___array0, method); } // System.Boolean System.Convert::TryFromBase64Chars(System.ReadOnlySpan`1,System.Span`1,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_TryFromBase64Chars_m5D27F0EC18CB2A01CBC3C9EE4C865A6228C2E6CF (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___chars0, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 ___bytes1, int32_t* ___bytesWritten2, const RuntimeMethod* method) ; // System.Char& System.String::GetRawStringData() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar* String_GetRawStringData_m87BC50B7B314C055E27A28032D1003D42FDE411D (String_t* __this, const RuntimeMethod* method) ; // System.Void System.ReadOnlySpan`1::.ctor(T&,System.Int32) inline void ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, Il2CppChar* ___ptr0, int32_t ___length1, const RuntimeMethod* method) { (( void (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1*, Il2CppChar*, int32_t, const RuntimeMethod*))ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_gshared_inline)(__this, ___ptr0, ___length1, method); } // System.Void System.ThrowHelper::ThrowArgumentOutOfRangeException(System.ExceptionArgument) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_m4657A9146F3788E9A174B3E47105BCFC5551149E (int32_t ___argument0, const RuntimeMethod* method) ; // System.Int32 System.Globalization.CompareInfo::CompareOrdinalIgnoreCase(System.ReadOnlySpan`1,System.ReadOnlySpan`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_CompareOrdinalIgnoreCase_m1B8CBA3C3313A79EAD2C2321B311334283887D05 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___strA0, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___strB1, const RuntimeMethod* method) ; // System.Void System.ThrowHelper::ThrowInvalidTypeWithPointersNotSupported(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowInvalidTypeWithPointersNotSupported_m6A58AD8706EDDB4CE9C309A6085249B6377C8CB5 (Type_t* ___targetType0, const RuntimeMethod* method) ; // System.Void System.ThrowHelper::ThrowArgumentOutOfRangeException() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_m272CE1B3040BA89B2C478E2CF629670574F30353 (const RuntimeMethod* method) ; // System.Byte& System.Array::GetRawSzArrayData() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint8_t* Array_GetRawSzArrayData_m2F8F5B2A381AEF971F12866D9C0A6C4FBA59F6BB_inline (RuntimeArray* __this, const RuntimeMethod* method) ; // System.Void System.Span`1::.ctor(T&,System.Int32) inline void Span_1__ctor_m947BF95D54571BF3897F96822B7A8FDA5853497B_inline (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305* __this, uint8_t* ___ptr0, int32_t ___length1, const RuntimeMethod* method) { (( void (*) (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305*, uint8_t*, int32_t, const RuntimeMethod*))Span_1__ctor_m947BF95D54571BF3897F96822B7A8FDA5853497B_gshared_inline)(__this, ___ptr0, ___length1, method); } // System.Void System.Span`1::.ctor(T&,System.Int32) inline void Span_1__ctor_mC9BE2938B716B46BB6B9070B94DBE5CE814BC0E2_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, Il2CppChar* ___ptr0, int32_t ___length1, const RuntimeMethod* method) { (( void (*) (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D*, Il2CppChar*, int32_t, const RuntimeMethod*))Span_1__ctor_mC9BE2938B716B46BB6B9070B94DBE5CE814BC0E2_gshared_inline)(__this, ___ptr0, ___length1, method); } #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.TimeZoneInfo::.ctor(System.Byte[],System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo__ctor_mE3FB264716A8CF7BD4F9CB48F2CA6628E3EFE2F5 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___data0, String_t* ___id1, bool ___dstDisabled2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBB9E2BA96D3F7F910549AC5DB6967191AC919101); s_Il2CppMethodInitialized = true; } TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852 V_0; memset((&V_0), 0, sizeof(V_0)); DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1* V_1 = NULL; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_2 = NULL; TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* V_3 = NULL; String_t* V_4 = NULL; BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* V_5 = NULL; BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* V_6 = NULL; String_t* V_7 = NULL; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_8; memset((&V_8), 0, sizeof(V_8)); int32_t V_9 = 0; int32_t V_10 = 0; int32_t V_11 = 0; { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___data0; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeZoneInfo_TZif_ParseRaw_mF15604A6DFAAE87C5D3E467430068ACBA59D18F4(L_0, (&V_0), (&V_1), (&V_2), (&V_3), (&V_4), (&V_5), (&V_6), (&V_7), NULL); String_t* L_1 = ___id1; __this->____id_0 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->____id_0), (void*)L_1); __this->____displayName_1 = _stringLiteralBB9E2BA96D3F7F910549AC5DB6967191AC919101; Il2CppCodeGenWriteBarrier((void**)(&__this->____displayName_1), (void*)_stringLiteralBB9E2BA96D3F7F910549AC5DB6967191AC919101); il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_2 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; __this->____baseUtcOffset_4 = L_2; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_3; L_3 = DateTime_get_UtcNow_m5D776FFEBC81592B361E4C7AF373297C5DFB46FD(NULL); V_8 = L_3; V_9 = 0; goto IL_00a9; } IL_0045: { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = V_2; int32_t L_5 = V_9; NullCheck(L_4); int32_t L_6 = L_5; uint8_t L_7 = (L_4)->GetAt(static_cast(L_6)); V_10 = L_7; TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* L_8 = V_3; int32_t L_9 = V_10; NullCheck(L_8); bool L_10 = ((L_8)->GetAddressAt(static_cast(L_9)))->___IsDst_1; if (L_10) { goto IL_0089; } } { TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* L_11 = V_3; int32_t L_12 = V_10; NullCheck(L_11); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_13 = ((L_11)->GetAddressAt(static_cast(L_12)))->___UtcOffset_0; __this->____baseUtcOffset_4 = L_13; String_t* L_14 = V_4; TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* L_15 = V_3; int32_t L_16 = V_10; NullCheck(L_15); uint8_t L_17 = ((L_15)->GetAddressAt(static_cast(L_16)))->___AbbreviationIndex_2; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); String_t* L_18; L_18 = TimeZoneInfo_TZif_GetZoneAbbreviation_m012CB3384D9B825AE2BB1C153B4BDD1E8F9FCB82(L_14, L_17, NULL); __this->____standardDisplayName_2 = L_18; Il2CppCodeGenWriteBarrier((void**)(&__this->____standardDisplayName_2), (void*)L_18); goto IL_00a3; } IL_0089: { String_t* L_19 = V_4; TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* L_20 = V_3; int32_t L_21 = V_10; NullCheck(L_20); uint8_t L_22 = ((L_20)->GetAddressAt(static_cast(L_21)))->___AbbreviationIndex_2; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); String_t* L_23; L_23 = TimeZoneInfo_TZif_GetZoneAbbreviation_m012CB3384D9B825AE2BB1C153B4BDD1E8F9FCB82(L_19, L_22, NULL); __this->____daylightDisplayName_3 = L_23; Il2CppCodeGenWriteBarrier((void**)(&__this->____daylightDisplayName_3), (void*)L_23); } IL_00a3: { int32_t L_24 = V_9; V_9 = ((int32_t)il2cpp_codegen_add(L_24, 1)); } IL_00a9: { int32_t L_25 = V_9; DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1* L_26 = V_1; NullCheck(L_26); if ((((int32_t)L_25) >= ((int32_t)((int32_t)(((RuntimeArray*)L_26)->max_length))))) { goto IL_00c1; } } { DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1* L_27 = V_1; int32_t L_28 = V_9; NullCheck(L_27); int32_t L_29 = L_28; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_30 = (L_27)->GetAt(static_cast(L_29)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_31 = V_8; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_32; L_32 = DateTime_op_LessThanOrEqual_m458241757285ECEABEDA1F8105546FBFCD9ECB80(L_30, L_31, NULL); if (L_32) { goto IL_0045; } } IL_00c1: { DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1* L_33 = V_1; NullCheck(L_33); if ((((RuntimeArray*)L_33)->max_length)) { goto IL_012f; } } { V_11 = 0; goto IL_0128; } IL_00ca: { TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* L_34 = V_3; int32_t L_35 = V_11; NullCheck(L_34); bool L_36 = ((L_34)->GetAddressAt(static_cast(L_35)))->___IsDst_1; if (L_36) { goto IL_0108; } } { TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* L_37 = V_3; int32_t L_38 = V_11; NullCheck(L_37); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_39 = ((L_37)->GetAddressAt(static_cast(L_38)))->___UtcOffset_0; __this->____baseUtcOffset_4 = L_39; String_t* L_40 = V_4; TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* L_41 = V_3; int32_t L_42 = V_11; NullCheck(L_41); uint8_t L_43 = ((L_41)->GetAddressAt(static_cast(L_42)))->___AbbreviationIndex_2; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); String_t* L_44; L_44 = TimeZoneInfo_TZif_GetZoneAbbreviation_m012CB3384D9B825AE2BB1C153B4BDD1E8F9FCB82(L_40, L_43, NULL); __this->____standardDisplayName_2 = L_44; Il2CppCodeGenWriteBarrier((void**)(&__this->____standardDisplayName_2), (void*)L_44); goto IL_0122; } IL_0108: { String_t* L_45 = V_4; TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* L_46 = V_3; int32_t L_47 = V_11; NullCheck(L_46); uint8_t L_48 = ((L_46)->GetAddressAt(static_cast(L_47)))->___AbbreviationIndex_2; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); String_t* L_49; L_49 = TimeZoneInfo_TZif_GetZoneAbbreviation_m012CB3384D9B825AE2BB1C153B4BDD1E8F9FCB82(L_45, L_48, NULL); __this->____daylightDisplayName_3 = L_49; Il2CppCodeGenWriteBarrier((void**)(&__this->____daylightDisplayName_3), (void*)L_49); } IL_0122: { int32_t L_50 = V_11; V_11 = ((int32_t)il2cpp_codegen_add(L_50, 1)); } IL_0128: { int32_t L_51 = V_11; TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* L_52 = V_3; NullCheck(L_52); if ((((int32_t)L_51) < ((int32_t)((int32_t)(((RuntimeArray*)L_52)->max_length))))) { goto IL_00ca; } } IL_012f: { String_t* L_53 = __this->____standardDisplayName_2; __this->____displayName_1 = L_53; Il2CppCodeGenWriteBarrier((void**)(&__this->____displayName_1), (void*)L_53); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* L_54 = (&__this->____baseUtcOffset_4); int64_t L_55; L_55 = TimeSpan_get_Ticks_mC50131E57621F29FACC53B3241432ABB874FA1B5_inline(L_54, NULL); if (!((int64_t)(L_55%((int64_t)((int32_t)600000000))))) { goto IL_0171; } } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* L_56 = (&__this->____baseUtcOffset_4); int32_t L_57; L_57 = TimeSpan_get_Hours_m770B4B777A816E051EFDA317C28DA9A4F39D6CFB(L_56, NULL); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* L_58 = (&__this->____baseUtcOffset_4); int32_t L_59; L_59 = TimeSpan_get_Minutes_m93E37D01CD6DA2DE5B35609D740D322E270B678F(L_58, NULL); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_60; memset((&L_60), 0, sizeof(L_60)); TimeSpan__ctor_mF8B85616C009D35D860DA0254327E8AAF54822A1((&L_60), L_57, L_59, 0, /*hidden argument*/NULL); __this->____baseUtcOffset_4 = L_60; } IL_0171: { bool L_61 = ___dstDisabled2; if (L_61) { goto IL_018e; } } { AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA** L_62 = (&__this->____adjustmentRules_6); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_63 = __this->____baseUtcOffset_4; DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1* L_64 = V_1; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_65 = V_2; TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* L_66 = V_3; BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_67 = V_5; BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_68 = V_6; String_t* L_69 = V_7; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeZoneInfo_TZif_GenerateAdjustmentRules_mD65E889C847FAAF4D63D73E7D2BEBE8009C5B4DB(L_62, L_63, L_64, L_65, L_66, L_67, L_68, L_69, NULL); } IL_018e: { String_t* L_70 = __this->____id_0; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_71 = __this->____baseUtcOffset_4; AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_72 = __this->____adjustmentRules_6; bool* L_73 = (&__this->____supportsDaylightSavingTime_5); il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeZoneInfo_ValidateTimeZoneInfo_m5E219078273AC961FA3D3B6CB9E08EAA51D3DFAB(L_70, L_71, L_72, L_73, NULL); return; } } // System.TimeZoneInfo System.TimeZoneInfo::GetLocalTimeZone(System.TimeZoneInfo/CachedData) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* TimeZoneInfo_GetLocalTimeZone_m3C79A307508C1B1CC223CF32AB3C5B3A291ECE66 (CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* ___cachedData0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_0; L_0 = TimeZoneInfo_GetLocalTimeZoneFromTzFile_m45F363F7BFD6B14EBB317C91549D44E0CC6612B0(NULL); return L_0; } } // System.Boolean System.TimeZoneInfo::TryGetLocalTzFile(System.Byte[]&,System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_TryGetLocalTzFile_m94DCFB1FC02C5CFB3B278C9C0273873D88BEDAC7 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** ___rawData0, String_t** ___id1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB13A221890A3415E7F693C07C26585D65E9EF870); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD5A945F93544696D2848D5F0D45241EFD7341DFC); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; String_t* V_1 = NULL; { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** L_0 = ___rawData0; *((RuntimeObject**)L_0) = (RuntimeObject*)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_0, (void*)(RuntimeObject*)NULL); String_t** L_1 = ___id1; *((RuntimeObject**)L_1) = (RuntimeObject*)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_1, (void*)(RuntimeObject*)NULL); il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); String_t* L_2; L_2 = TimeZoneInfo_GetTzEnvironmentVariable_m14F07770089099DAEAA48A8822F55DAC7C84A04E(NULL); V_0 = L_2; String_t* L_3 = V_0; if (L_3) { goto IL_0036; } } { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** L_4 = ___rawData0; String_t** L_5 = ___id1; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); bool L_6; L_6 = TimeZoneInfo_TryLoadTzFile_m22A1EEE66F39ED2A427544602FA8916E2924D574(_stringLiteralB13A221890A3415E7F693C07C26585D65E9EF870, L_4, L_5, NULL); if (L_6) { goto IL_0034; } } { il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); String_t* L_7; L_7 = TimeZoneInfo_GetTimeZoneDirectory_m253A7A85E31FC7295048725DDDEF0F8016A47995(NULL); il2cpp_codegen_runtime_class_init_inline(Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var); String_t* L_8; L_8 = Path_Combine_m64754D4E08990CE1EBC41CDF197807EE4B115474(L_7, _stringLiteralD5A945F93544696D2848D5F0D45241EFD7341DFC, NULL); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** L_9 = ___rawData0; String_t** L_10 = ___id1; bool L_11; L_11 = TimeZoneInfo_TryLoadTzFile_m22A1EEE66F39ED2A427544602FA8916E2924D574(L_8, L_9, L_10, NULL); return L_11; } IL_0034: { return (bool)1; } IL_0036: { String_t* L_12 = V_0; NullCheck(L_12); int32_t L_13; L_13 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_12, NULL); if (L_13) { goto IL_0040; } } { return (bool)0; } IL_0040: { String_t* L_14 = V_0; NullCheck(L_14); Il2CppChar L_15; L_15 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_14, 0, NULL); if ((((int32_t)L_15) == ((int32_t)((int32_t)47)))) { goto IL_005c; } } { String_t** L_16 = ___id1; String_t* L_17 = V_0; *((RuntimeObject**)L_16) = (RuntimeObject*)L_17; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_16, (void*)(RuntimeObject*)L_17); il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); String_t* L_18; L_18 = TimeZoneInfo_GetTimeZoneDirectory_m253A7A85E31FC7295048725DDDEF0F8016A47995(NULL); String_t* L_19 = V_0; il2cpp_codegen_runtime_class_init_inline(Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var); String_t* L_20; L_20 = Path_Combine_m64754D4E08990CE1EBC41CDF197807EE4B115474(L_18, L_19, NULL); V_1 = L_20; goto IL_005e; } IL_005c: { String_t* L_21 = V_0; V_1 = L_21; } IL_005e: { String_t* L_22 = V_1; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** L_23 = ___rawData0; String_t** L_24 = ___id1; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); bool L_25; L_25 = TimeZoneInfo_TryLoadTzFile_m22A1EEE66F39ED2A427544602FA8916E2924D574(L_22, L_23, L_24, NULL); return L_25; } } // System.String System.TimeZoneInfo::GetTzEnvironmentVariable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_GetTzEnvironmentVariable_m14F07770089099DAEAA48A8822F55DAC7C84A04E (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF23D2D4F867416899FD1326311AC61D3AC3EFBE8); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { String_t* L_0; L_0 = Environment_GetEnvironmentVariable_mFA1E83F28F2E74EF3312F9D4B582FFBE38804ED8(_stringLiteralF23D2D4F867416899FD1326311AC61D3AC3EFBE8, NULL); V_0 = L_0; String_t* L_1 = V_0; bool L_2; L_2 = String_IsNullOrEmpty_m54CF0907E7C4F3AFB2E796A13DC751ECBB8DB64A(L_1, NULL); if (L_2) { goto IL_0026; } } { String_t* L_3 = V_0; NullCheck(L_3); Il2CppChar L_4; L_4 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_3, 0, NULL); if ((!(((uint32_t)L_4) == ((uint32_t)((int32_t)58))))) { goto IL_0026; } } { String_t* L_5 = V_0; NullCheck(L_5); String_t* L_6; L_6 = String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472(L_5, 1, NULL); V_0 = L_6; } IL_0026: { String_t* L_7 = V_0; return L_7; } } // System.Boolean System.TimeZoneInfo::TryLoadTzFile(System.String,System.Byte[]&,System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_TryLoadTzFile_m22A1EEE66F39ED2A427544602FA8916E2924D574 (String_t* ___tzFilePath0, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** ___rawData1, String_t** ___id2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; il2cpp::utils::ExceptionSupportStack __active_exceptions; { String_t* L_0 = ___tzFilePath0; bool L_1; L_1 = File_Exists_mD7E7A84A6B9E9A9BADBDA7C46AAE0624EF106D85(L_0, NULL); if (!L_1) { goto IL_0040; } } try {// begin try (depth: 1) { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** L_2 = ___rawData1; String_t* L_3 = ___tzFilePath0; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4; L_4 = File_ReadAllBytes_mE0C2C5A0270CD40C496E85B1D8BA15C607E7011E(L_3, NULL); *((RuntimeObject**)L_2) = (RuntimeObject*)L_4; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_2, (void*)(RuntimeObject*)L_4); String_t** L_5 = ___id2; String_t* L_6 = *((String_t**)L_5); bool L_7; L_7 = String_IsNullOrEmpty_m54CF0907E7C4F3AFB2E796A13DC751ECBB8DB64A(L_6, NULL); if (!L_7) { goto IL_0033_1; } } { String_t** L_8 = ___id2; String_t* L_9 = ___tzFilePath0; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); String_t* L_10; L_10 = TimeZoneInfo_FindTimeZoneIdUsingReadLink_m403C0CCEB85A050804FFD3B26D3D5BC067CC2D2A(L_9, NULL); *((RuntimeObject**)L_8) = (RuntimeObject*)L_10; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_8, (void*)(RuntimeObject*)L_10); String_t** L_11 = ___id2; String_t* L_12 = *((String_t**)L_11); bool L_13; L_13 = String_IsNullOrEmpty_m54CF0907E7C4F3AFB2E796A13DC751ECBB8DB64A(L_12, NULL); if (!L_13) { goto IL_0033_1; } } { String_t** L_14 = ___id2; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** L_15 = ___rawData1; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_16 = *((ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031**)L_15); il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); String_t* L_17; L_17 = TimeZoneInfo_FindTimeZoneId_mC9688C587F7307F76398952BACE3DBBFA8CCC6CD(L_16, NULL); *((RuntimeObject**)L_14) = (RuntimeObject*)L_17; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_14, (void*)(RuntimeObject*)L_17); } IL_0033_1: { V_0 = (bool)1; goto IL_0042; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0037; } if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SecurityException_t025CB4C23107E67E07CF085826B40EDE72F8165C_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_003a; } if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnauthorizedAccessException_t8FC1F1DE7AA62456E9E25EFDFC658A623A626791_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_003d; } throw e; } CATCH_0037: {// begin catch(System.IO.IOException) IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_0040; }// end catch (depth: 1) CATCH_003a: {// begin catch(System.Security.SecurityException) IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_0040; }// end catch (depth: 1) CATCH_003d: {// begin catch(System.UnauthorizedAccessException) IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_0040; }// end catch (depth: 1) IL_0040: { return (bool)0; } IL_0042: { bool L_18 = V_0; return L_18; } } // System.String System.TimeZoneInfo::FindTimeZoneIdUsingReadLink(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_FindTimeZoneIdUsingReadLink_m403C0CCEB85A050804FFD3B26D3D5BC067CC2D2A (String_t* ___tzFilePath0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Sys_tE4FBEFBB8F788192C8E494DA0EC7EFE86D952AD8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; String_t* V_1 = NULL; String_t* V_2 = NULL; { V_0 = (String_t*)NULL; String_t* L_0 = ___tzFilePath0; il2cpp_codegen_runtime_class_init_inline(Sys_tE4FBEFBB8F788192C8E494DA0EC7EFE86D952AD8_il2cpp_TypeInfo_var); String_t* L_1; L_1 = Sys_ReadLink_m2E8E48F6B7D1683E255387834625816C3FAE9D01(L_0, NULL); V_1 = L_1; String_t* L_2 = V_1; if (!L_2) { goto IL_0031; } } { String_t* L_3 = ___tzFilePath0; String_t* L_4 = V_1; il2cpp_codegen_runtime_class_init_inline(Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var); String_t* L_5; L_5 = Path_Combine_m64754D4E08990CE1EBC41CDF197807EE4B115474(L_3, L_4, NULL); V_1 = L_5; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); String_t* L_6; L_6 = TimeZoneInfo_GetTimeZoneDirectory_m253A7A85E31FC7295048725DDDEF0F8016A47995(NULL); V_2 = L_6; String_t* L_7 = V_1; String_t* L_8 = V_2; NullCheck(L_7); bool L_9; L_9 = String_StartsWith_mA2A4405B1B9F3653A6A9AA7F223F68D86A0C6264(L_7, L_8, 4, NULL); if (!L_9) { goto IL_0031; } } { String_t* L_10 = V_1; String_t* L_11 = V_2; NullCheck(L_11); int32_t L_12; L_12 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_11, NULL); NullCheck(L_10); String_t* L_13; L_13 = String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472(L_10, L_12, NULL); V_0 = L_13; } IL_0031: { String_t* L_14 = V_0; return L_14; } } // System.String System.TimeZoneInfo::GetDirectoryEntryFullPath(Interop/Sys/DirectoryEntry&,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_GetDirectoryEntryFullPath_mF11D4B63B73A0FF654C28A7D28BC1065836D4F96 (DirectoryEntry_t4FE272EECFF03032105F6F23CB60435287DB1CA2* ___dirent0, String_t* ___currentPath1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D V_0; memset((&V_0), 0, sizeof(V_0)); ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 V_1; memset((&V_1), 0, sizeof(V_1)); { int8_t* L_0 = (int8_t*) alloca(((uintptr_t)((int32_t)512))); memset(L_0, 0, ((uintptr_t)((int32_t)512))); Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_1; memset((&L_1), 0, sizeof(L_1)); Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_inline((&L_1), (void*)(L_0), ((int32_t)256), /*hidden argument*/Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_RuntimeMethod_var); V_0 = L_1; DirectoryEntry_t4FE272EECFF03032105F6F23CB60435287DB1CA2* L_2 = ___dirent0; Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_3 = V_0; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_4; L_4 = DirectoryEntry_GetName_mF08AE47152428B103C9ADC1C339DD5FA41BAE996(L_2, L_3, NULL); V_1 = L_4; int32_t L_5; L_5 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&V_1), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var); if ((!(((uint32_t)L_5) == ((uint32_t)1)))) { goto IL_0032; } } { Il2CppChar* L_6; L_6 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&V_1))->____pointer_0))->value, (0), ((&V_1))->____length_1); int32_t L_7 = *((uint16_t*)L_6); if ((((int32_t)L_7) == ((int32_t)((int32_t)46)))) { goto IL_0056; } } IL_0032: { int32_t L_8; L_8 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&V_1), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var); if ((!(((uint32_t)L_8) == ((uint32_t)2)))) { goto IL_0058; } } { Il2CppChar* L_9; L_9 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&V_1))->____pointer_0))->value, (0), ((&V_1))->____length_1); int32_t L_10 = *((uint16_t*)L_9); if ((!(((uint32_t)L_10) == ((uint32_t)((int32_t)46))))) { goto IL_0058; } } { Il2CppChar* L_11; L_11 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&V_1))->____pointer_0))->value, (1), ((&V_1))->____length_1); int32_t L_12 = *((uint16_t*)L_11); if ((!(((uint32_t)L_12) == ((uint32_t)((int32_t)46))))) { goto IL_0058; } } IL_0056: { return (String_t*)NULL; } IL_0058: { String_t* L_13 = ___currentPath1; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_14; L_14 = MemoryExtensions_AsSpan_m738C019A02A3B4B8BFEACFFA013409898B81D4FB_inline(L_13, NULL); ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_15 = V_1; il2cpp_codegen_runtime_class_init_inline(Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var); String_t* L_16; L_16 = Path_Join_mF50F1A95C4CAA518E8CDFA265E834D118B6915B1(L_14, L_15, NULL); return L_16; } } // System.Void System.TimeZoneInfo::EnumerateFilesRecursively(System.String,System.Predicate`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo_EnumerateFilesRecursively_mA8D6F92EA47A8CAD801822B93063477494248890 (String_t* ___path0, Predicate_1_tEB15485FDAFC48C82EE54427A8DBDB401213706C* ___condition1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayPool_1_get_Shared_mF8BCD25CBF8FDFF0B3B34EA3845722E4E10F310F_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayPool_1_t645A9854926DCA747C654687A362AD03D55D2C07_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_RemoveAt_m031D3A21689276A872FCA7566C8F2F79F9581F0D_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Sys_tE4FBEFBB8F788192C8E494DA0EC7EFE86D952AD8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* V_0 = NULL; int32_t V_1 = 0; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_2 = NULL; String_t* V_3 = NULL; uint8_t* V_4 = NULL; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_5 = NULL; intptr_t V_6; memset((&V_6), 0, sizeof(V_6)); DirectoryEntry_t4FE272EECFF03032105F6F23CB60435287DB1CA2 V_7; memset((&V_7), 0, sizeof(V_7)); String_t* V_8 = NULL; bool V_9 = false; FileStatus_tCB96EDE0D0F945F685B9BBED6DBF0731207458C2 V_10; memset((&V_10), 0, sizeof(V_10)); { V_0 = (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*)NULL; il2cpp_codegen_runtime_class_init_inline(Sys_tE4FBEFBB8F788192C8E494DA0EC7EFE86D952AD8_il2cpp_TypeInfo_var); int32_t L_0; L_0 = Sys_GetReadDirRBufferSize_mC5C8CAAAC42CF6C03F3C51977A7589837230D426(NULL); V_1 = L_0; V_2 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)NULL; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_013d: {// begin finally (depth: 1) { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = V_2; if (!L_1) { goto IL_014c; } } { il2cpp_codegen_runtime_class_init_inline(ArrayPool_1_t645A9854926DCA747C654687A362AD03D55D2C07_il2cpp_TypeInfo_var); ArrayPool_1_t645A9854926DCA747C654687A362AD03D55D2C07* L_2; L_2 = ArrayPool_1_get_Shared_mF8BCD25CBF8FDFF0B3B34EA3845722E4E10F310F_inline(ArrayPool_1_get_Shared_mF8BCD25CBF8FDFF0B3B34EA3845722E4E10F310F_RuntimeMethod_var); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = V_2; NullCheck(L_2); VirtualActionInvoker2< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, bool >::Invoke(5 /* System.Void System.Buffers.ArrayPool`1::Return(T[],System.Boolean) */, L_2, L_3, (bool)0); } IL_014c: { return; } }// end finally (depth: 1) }); try {// begin try (depth: 1) { il2cpp_codegen_runtime_class_init_inline(ArrayPool_1_t645A9854926DCA747C654687A362AD03D55D2C07_il2cpp_TypeInfo_var); ArrayPool_1_t645A9854926DCA747C654687A362AD03D55D2C07* L_4; L_4 = ArrayPool_1_get_Shared_mF8BCD25CBF8FDFF0B3B34EA3845722E4E10F310F_inline(ArrayPool_1_get_Shared_mF8BCD25CBF8FDFF0B3B34EA3845722E4E10F310F_RuntimeMethod_var); int32_t L_5 = V_1; NullCheck(L_4); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6; L_6 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t >::Invoke(4 /* T[] System.Buffers.ArrayPool`1::Rent(System.Int32) */, L_4, L_5); V_2 = L_6; String_t* L_7 = ___path0; V_3 = L_7; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_0139_1: {// begin finally (depth: 2) V_5 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)NULL; return; }// end finally (depth: 2) }); try {// begin try (depth: 2) { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_8 = V_2; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_9 = L_8; V_5 = L_9; if (!L_9) { goto IL_0024_2; } } { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_10 = V_5; NullCheck(L_10); if (((int32_t)(((RuntimeArray*)L_10)->max_length))) { goto IL_002a_2; } } IL_0024_2: { V_4 = (uint8_t*)((uintptr_t)0); goto IL_0035_2; } IL_002a_2: { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11 = V_5; NullCheck(L_11); V_4 = (uint8_t*)((uintptr_t)((L_11)->GetAddressAt(static_cast(0)))); } IL_0035_2: { String_t* L_12 = V_3; il2cpp_codegen_runtime_class_init_inline(Sys_tE4FBEFBB8F788192C8E494DA0EC7EFE86D952AD8_il2cpp_TypeInfo_var); intptr_t L_13; L_13 = Sys_OpenDir_m833D40C63F67EC4A08D47DBFB4F74833F5B26969(L_12, NULL); V_6 = L_13; intptr_t L_14 = V_6; bool L_15; L_15 = IntPtr_op_Equality_m73759B51FE326460AC87A0E386480226EF2FABED(L_14, (0), NULL); if (!L_15) { goto IL_0058_2; } } { il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Sys_tE4FBEFBB8F788192C8E494DA0EC7EFE86D952AD8_il2cpp_TypeInfo_var))); ErrorInfo_t776D0DEFF42C5321EB2548D87ED238CBE55467F8 L_16; L_16 = Sys_GetLastErrorInfo_m73FA29F9719F04859AD886D1EAC99FE23380130F(NULL); String_t* L_17 = V_3; Exception_t* L_18; L_18 = Interop_GetExceptionForIoErrno_m4C5DFA9F3A7942A0DF7D8D9828557D14F5503190(L_16, L_17, (bool)1, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_18, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeZoneInfo_EnumerateFilesRecursively_mA8D6F92EA47A8CAD801822B93063477494248890_RuntimeMethod_var))); } IL_0058_2: { } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_00f1_2: {// begin finally (depth: 3) { intptr_t L_19 = V_6; bool L_20; L_20 = IntPtr_op_Inequality_m2F715312CBFCE7E1A81D0689F68B97218E37E5D1(L_19, (0), NULL); if (!L_20) { goto IL_0107_2; } } { intptr_t L_21 = V_6; il2cpp_codegen_runtime_class_init_inline(Sys_tE4FBEFBB8F788192C8E494DA0EC7EFE86D952AD8_il2cpp_TypeInfo_var); int32_t L_22; L_22 = Sys_CloseDir_m8A869EE865D22CB3F96F35A28E6423E768EC501B(L_21, NULL); } IL_0107_2: { return; } }// end finally (depth: 3) }); try {// begin try (depth: 3) { goto IL_00de_3; } IL_005e_3: { String_t* L_23 = V_3; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); String_t* L_24; L_24 = TimeZoneInfo_GetDirectoryEntryFullPath_mF11D4B63B73A0FF654C28A7D28BC1065836D4F96((&V_7), L_23, NULL); V_8 = L_24; String_t* L_25 = V_8; if (!L_25) { goto IL_00de_3; } } { DirectoryEntry_t4FE272EECFF03032105F6F23CB60435287DB1CA2 L_26 = V_7; int32_t L_27 = L_26.___InodeType_2; if ((!(((uint32_t)L_27) == ((uint32_t)4)))) { goto IL_007b_3; } } { V_9 = (bool)1; goto IL_00bb_3; } IL_007b_3: { DirectoryEntry_t4FE272EECFF03032105F6F23CB60435287DB1CA2 L_28 = V_7; int32_t L_29 = L_28.___InodeType_2; if ((((int32_t)L_29) == ((int32_t)((int32_t)10)))) { goto IL_008f_3; } } { DirectoryEntry_t4FE272EECFF03032105F6F23CB60435287DB1CA2 L_30 = V_7; int32_t L_31 = L_30.___InodeType_2; if (L_31) { goto IL_00b8_3; } } IL_008f_3: { String_t* L_32 = V_8; il2cpp_codegen_runtime_class_init_inline(Sys_tE4FBEFBB8F788192C8E494DA0EC7EFE86D952AD8_il2cpp_TypeInfo_var); int32_t L_33; L_33 = Sys_Stat_m63486C657CE0FA95CCFD5EC5833F8D55022AEE0D(L_32, (&V_10), NULL); if ((((int32_t)L_33) < ((int32_t)0))) { goto IL_00b3_3; } } { FileStatus_tCB96EDE0D0F945F685B9BBED6DBF0731207458C2 L_34 = V_10; int32_t L_35 = L_34.___Mode_1; V_9 = (bool)((((int32_t)((int32_t)(L_35&((int32_t)61440)))) == ((int32_t)((int32_t)16384)))? 1 : 0); goto IL_00bb_3; } IL_00b3_3: { V_9 = (bool)0; goto IL_00bb_3; } IL_00b8_3: { V_9 = (bool)0; } IL_00bb_3: { bool L_36 = V_9; if (!L_36) { goto IL_00d2_3; } } { List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_37 = V_0; if (L_37) { goto IL_00c8_3; } } { List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_38 = (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*)il2cpp_codegen_object_new(List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var); NullCheck(L_38); List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E(L_38, List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E_RuntimeMethod_var); V_0 = L_38; } IL_00c8_3: { List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_39 = V_0; String_t* L_40 = V_8; NullCheck(L_39); List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_inline(L_39, L_40, List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var); goto IL_00de_3; } IL_00d2_3: { Predicate_1_tEB15485FDAFC48C82EE54427A8DBDB401213706C* L_41 = ___condition1; String_t* L_42 = V_8; NullCheck(L_41); bool L_43; L_43 = Predicate_1_Invoke_m180565420FDCD7211D85CB31534D98770D88A4FF_inline(L_41, L_42, NULL); if (!L_43) { goto IL_00de_3; } } { goto IL_014d; } IL_00de_3: { intptr_t L_44 = V_6; uint8_t* L_45 = V_4; int32_t L_46 = V_1; il2cpp_codegen_runtime_class_init_inline(Sys_tE4FBEFBB8F788192C8E494DA0EC7EFE86D952AD8_il2cpp_TypeInfo_var); int32_t L_47; L_47 = Sys_ReadDirR_m8D9D19A917770B6F8A98573021A68C0CCBE18C4F(L_44, L_45, L_46, (&V_7), NULL); if (!L_47) { goto IL_005e_3; } } { goto IL_0108_2; } }// end try (depth: 3) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_0108_2: { List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_48 = V_0; if (!L_48) { goto IL_0137_2; } } { List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_49 = V_0; NullCheck(L_49); int32_t L_50; L_50 = List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_inline(L_49, List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_RuntimeMethod_var); if (L_50) { goto IL_0115_2; } } { goto IL_014d; } IL_0115_2: { List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_51 = V_0; List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_52 = V_0; NullCheck(L_52); int32_t L_53; L_53 = List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_inline(L_52, List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_RuntimeMethod_var); NullCheck(L_51); String_t* L_54; L_54 = List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8(L_51, ((int32_t)il2cpp_codegen_subtract(L_53, 1)), List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var); V_3 = L_54; List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_55 = V_0; List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_56 = V_0; NullCheck(L_56); int32_t L_57; L_57 = List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_inline(L_56, List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_RuntimeMethod_var); NullCheck(L_55); List_1_RemoveAt_m031D3A21689276A872FCA7566C8F2F79F9581F0D(L_55, ((int32_t)il2cpp_codegen_subtract(L_57, 1)), List_1_RemoveAt_m031D3A21689276A872FCA7566C8F2F79F9581F0D_RuntimeMethod_var); goto IL_0035_2; } IL_0137_2: { goto IL_014d; } }// end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_014d: { return; } } // System.String System.TimeZoneInfo::FindTimeZoneId(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_FindTimeZoneId_mC9688C587F7307F76398952BACE3DBBFA8CCC6CD (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___rawData0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Predicate_1_tEB15485FDAFC48C82EE54427A8DBDB401213706C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass16_0_U3CFindTimeZoneIdU3Eb__0_m350FFDA5167F64EB01C41FACE2AF00F51F0054A8_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass16_0_t0745DC96E806B3099E8FA9EB0C1315DEDD5CBFC0_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBB9E2BA96D3F7F910549AC5DB6967191AC919101); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD5A945F93544696D2848D5F0D45241EFD7341DFC); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFED3FDDE36BD8F8EFDC4080D205F010B8503EE53); s_Il2CppMethodInitialized = true; } U3CU3Ec__DisplayClass16_0_t0745DC96E806B3099E8FA9EB0C1315DEDD5CBFC0* V_0 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; { U3CU3Ec__DisplayClass16_0_t0745DC96E806B3099E8FA9EB0C1315DEDD5CBFC0* L_0 = (U3CU3Ec__DisplayClass16_0_t0745DC96E806B3099E8FA9EB0C1315DEDD5CBFC0*)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass16_0_t0745DC96E806B3099E8FA9EB0C1315DEDD5CBFC0_il2cpp_TypeInfo_var); NullCheck(L_0); U3CU3Ec__DisplayClass16_0__ctor_mBA6BC752E40ECF2E8E0A473CF1B047F750FF5171(L_0, NULL); V_0 = L_0; U3CU3Ec__DisplayClass16_0_t0745DC96E806B3099E8FA9EB0C1315DEDD5CBFC0* L_1 = V_0; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = ___rawData0; NullCheck(L_1); L_1->___rawData_3 = L_2; Il2CppCodeGenWriteBarrier((void**)(&L_1->___rawData_3), (void*)L_2); U3CU3Ec__DisplayClass16_0_t0745DC96E806B3099E8FA9EB0C1315DEDD5CBFC0* L_3 = V_0; NullCheck(L_3); L_3->___id_4 = _stringLiteralBB9E2BA96D3F7F910549AC5DB6967191AC919101; Il2CppCodeGenWriteBarrier((void**)(&L_3->___id_4), (void*)_stringLiteralBB9E2BA96D3F7F910549AC5DB6967191AC919101); U3CU3Ec__DisplayClass16_0_t0745DC96E806B3099E8FA9EB0C1315DEDD5CBFC0* L_4 = V_0; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); String_t* L_5; L_5 = TimeZoneInfo_GetTimeZoneDirectory_m253A7A85E31FC7295048725DDDEF0F8016A47995(NULL); NullCheck(L_4); L_4->___timeZoneDirectory_5 = L_5; Il2CppCodeGenWriteBarrier((void**)(&L_4->___timeZoneDirectory_5), (void*)L_5); U3CU3Ec__DisplayClass16_0_t0745DC96E806B3099E8FA9EB0C1315DEDD5CBFC0* L_6 = V_0; U3CU3Ec__DisplayClass16_0_t0745DC96E806B3099E8FA9EB0C1315DEDD5CBFC0* L_7 = V_0; NullCheck(L_7); String_t* L_8 = L_7->___timeZoneDirectory_5; il2cpp_codegen_runtime_class_init_inline(Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var); String_t* L_9; L_9 = Path_Combine_m64754D4E08990CE1EBC41CDF197807EE4B115474(L_8, _stringLiteralD5A945F93544696D2848D5F0D45241EFD7341DFC, NULL); NullCheck(L_6); L_6->___localtimeFilePath_0 = L_9; Il2CppCodeGenWriteBarrier((void**)(&L_6->___localtimeFilePath_0), (void*)L_9); U3CU3Ec__DisplayClass16_0_t0745DC96E806B3099E8FA9EB0C1315DEDD5CBFC0* L_10 = V_0; U3CU3Ec__DisplayClass16_0_t0745DC96E806B3099E8FA9EB0C1315DEDD5CBFC0* L_11 = V_0; NullCheck(L_11); String_t* L_12 = L_11->___timeZoneDirectory_5; String_t* L_13; L_13 = Path_Combine_m64754D4E08990CE1EBC41CDF197807EE4B115474(L_12, _stringLiteralFED3FDDE36BD8F8EFDC4080D205F010B8503EE53, NULL); NullCheck(L_10); L_10->___posixrulesFilePath_1 = L_13; Il2CppCodeGenWriteBarrier((void**)(&L_10->___posixrulesFilePath_1), (void*)L_13); U3CU3Ec__DisplayClass16_0_t0745DC96E806B3099E8FA9EB0C1315DEDD5CBFC0* L_14 = V_0; U3CU3Ec__DisplayClass16_0_t0745DC96E806B3099E8FA9EB0C1315DEDD5CBFC0* L_15 = V_0; NullCheck(L_15); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_16 = L_15->___rawData_3; NullCheck(L_16); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_17 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)((int32_t)(((RuntimeArray*)L_16)->max_length))); NullCheck(L_14); L_14->___buffer_2 = L_17; Il2CppCodeGenWriteBarrier((void**)(&L_14->___buffer_2), (void*)L_17); } try {// begin try (depth: 1) U3CU3Ec__DisplayClass16_0_t0745DC96E806B3099E8FA9EB0C1315DEDD5CBFC0* L_18 = V_0; NullCheck(L_18); String_t* L_19 = L_18->___timeZoneDirectory_5; U3CU3Ec__DisplayClass16_0_t0745DC96E806B3099E8FA9EB0C1315DEDD5CBFC0* L_20 = V_0; Predicate_1_tEB15485FDAFC48C82EE54427A8DBDB401213706C* L_21 = (Predicate_1_tEB15485FDAFC48C82EE54427A8DBDB401213706C*)il2cpp_codegen_object_new(Predicate_1_tEB15485FDAFC48C82EE54427A8DBDB401213706C_il2cpp_TypeInfo_var); NullCheck(L_21); Predicate_1__ctor_m792445D8ACC019EE3CE897994AF6C04721045A7E(L_21, L_20, (intptr_t)((void*)U3CU3Ec__DisplayClass16_0_U3CFindTimeZoneIdU3Eb__0_m350FFDA5167F64EB01C41FACE2AF00F51F0054A8_RuntimeMethod_var), NULL); il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeZoneInfo_EnumerateFilesRecursively_mA8D6F92EA47A8CAD801822B93063477494248890(L_19, L_21, NULL); goto IL_0084; }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_007b; } if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SecurityException_t025CB4C23107E67E07CF085826B40EDE72F8165C_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_007e; } if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnauthorizedAccessException_t8FC1F1DE7AA62456E9E25EFDFC658A623A626791_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0081; } throw e; } CATCH_007b: {// begin catch(System.IO.IOException) IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_0084; }// end catch (depth: 1) CATCH_007e: {// begin catch(System.Security.SecurityException) IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_0084; }// end catch (depth: 1) CATCH_0081: {// begin catch(System.UnauthorizedAccessException) IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_0084; }// end catch (depth: 1) IL_0084: { U3CU3Ec__DisplayClass16_0_t0745DC96E806B3099E8FA9EB0C1315DEDD5CBFC0* L_22 = V_0; NullCheck(L_22); String_t* L_23 = L_22->___id_4; return L_23; } } // System.Boolean System.TimeZoneInfo::CompareTimeZoneFile(System.String,System.Byte[],System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_CompareTimeZoneFile_m6546651CDAEAC2021D8E93358C35ECA38B4DF96D (String_t* ___filePath0, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___buffer1, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___rawData2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; bool V_5 = false; il2cpp::utils::ExceptionSupportStack __active_exceptions; try {// begin try (depth: 1) { String_t* L_0 = ___filePath0; FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_1 = (FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8*)il2cpp_codegen_object_new(FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8_il2cpp_TypeInfo_var); NullCheck(L_1); FileStream__ctor_m059A8F48B2F463D020113605765EC40F2D54E928(L_1, L_0, 3, 1, 1, 1, NULL); V_0 = L_1; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_005e_1: {// begin finally (depth: 2) { FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_2 = V_0; if (!L_2) { goto IL_0067_1; } } { FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_3 = V_0; NullCheck(L_3); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_3); } IL_0067_1: { return; } }// end finally (depth: 2) }); try {// begin try (depth: 2) { FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_4 = V_0; NullCheck(L_4); int64_t L_5; L_5 = VirtualFuncInvoker0< int64_t >::Invoke(11 /* System.Int64 System.IO.Stream::get_Length() */, L_4); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6 = ___rawData2; NullCheck(L_6); if ((!(((uint64_t)L_5) == ((uint64_t)((int64_t)((int32_t)(((RuntimeArray*)L_6)->max_length))))))) { goto IL_005c_2; } } { V_1 = 0; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_7 = ___rawData2; NullCheck(L_7); V_2 = ((int32_t)(((RuntimeArray*)L_7)->max_length)); goto IL_0053_2; } IL_001f_2: { FileStream_t07C7222EE10B75F352B89B76E60820160FF10AD8* L_8 = V_0; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_9 = ___buffer1; int32_t L_10 = V_1; int32_t L_11 = V_2; NullCheck(L_8); int32_t L_12; L_12 = VirtualFuncInvoker3< int32_t, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(31 /* System.Int32 System.IO.Stream::Read(System.Byte[],System.Int32,System.Int32) */, L_8, L_9, L_10, L_11); V_3 = L_12; int32_t L_13 = V_3; if (L_13) { goto IL_0032_2; } } { Exception_t* L_14; L_14 = Error_GetEndOfFile_m183A2B9C5B75DA64D1D0A547EE542A41D0477DE3(NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeZoneInfo_CompareTimeZoneFile_m6546651CDAEAC2021D8E93358C35ECA38B4DF96D_RuntimeMethod_var))); } IL_0032_2: { int32_t L_15 = V_1; int32_t L_16 = V_3; V_4 = ((int32_t)il2cpp_codegen_add(L_15, L_16)); goto IL_004a_2; } IL_0039_2: { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_17 = ___buffer1; int32_t L_18 = V_1; NullCheck(L_17); int32_t L_19 = L_18; uint8_t L_20 = (L_17)->GetAt(static_cast(L_19)); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_21 = ___rawData2; int32_t L_22 = V_1; NullCheck(L_21); int32_t L_23 = L_22; uint8_t L_24 = (L_21)->GetAt(static_cast(L_23)); if ((((int32_t)L_20) == ((int32_t)L_24))) { goto IL_0046_2; } } { V_5 = (bool)0; goto IL_0075; } IL_0046_2: { int32_t L_25 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_25, 1)); } IL_004a_2: { int32_t L_26 = V_1; int32_t L_27 = V_4; if ((((int32_t)L_26) < ((int32_t)L_27))) { goto IL_0039_2; } } { int32_t L_28 = V_2; int32_t L_29 = V_3; V_2 = ((int32_t)il2cpp_codegen_subtract(L_28, L_29)); } IL_0053_2: { int32_t L_30 = V_2; if ((((int32_t)L_30) > ((int32_t)0))) { goto IL_001f_2; } } { V_5 = (bool)1; goto IL_0075; } IL_005c_2: { goto IL_0068_1; } }// end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_0068_1: { goto IL_0073; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IOException_t5D599190B003D41D45D4839A9B6B9AB53A755910_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_006a; } if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SecurityException_t025CB4C23107E67E07CF085826B40EDE72F8165C_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_006d; } if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnauthorizedAccessException_t8FC1F1DE7AA62456E9E25EFDFC658A623A626791_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0070; } throw e; } CATCH_006a: {// begin catch(System.IO.IOException) IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_0073; }// end catch (depth: 1) CATCH_006d: {// begin catch(System.Security.SecurityException) IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_0073; }// end catch (depth: 1) CATCH_0070: {// begin catch(System.UnauthorizedAccessException) IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_0073; }// end catch (depth: 1) IL_0073: { return (bool)0; } IL_0075: { bool L_31 = V_5; return L_31; } } // System.TimeZoneInfo System.TimeZoneInfo::GetLocalTimeZoneFromTzFile() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* TimeZoneInfo_GetLocalTimeZoneFromTzFile_m45F363F7BFD6B14EBB317C91549D44E0CC6612B0 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_0 = NULL; String_t* V_1 = NULL; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* V_2 = NULL; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* V_3 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; { il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); bool L_0; L_0 = TimeZoneInfo_TryGetLocalTzFile_m94DCFB1FC02C5CFB3B278C9C0273873D88BEDAC7((&V_0), (&V_1), NULL); if (!L_0) { goto IL_0018; } } { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = V_0; String_t* L_2 = V_1; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_3; L_3 = TimeZoneInfo_GetTimeZoneFromTzData_m5DDA48CBB6FFBA2C0C27F6B393A77EFD3FAB1B59(L_1, L_2, NULL); V_3 = L_3; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_4 = V_3; if (!L_4) { goto IL_0018; } } { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_5 = V_3; return L_5; } IL_0018: { V_2 = (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8*)NULL; } try {// begin try (depth: 1) il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_6; L_6 = TimeZoneInfo_CreateLocalUnity_mA53736609A9CAF1A706FB94747FE37CE2FCF27AB(NULL); V_2 = L_6; goto IL_0027; }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0022; } throw e; } CATCH_0022: {// begin catch(System.Object) V_2 = (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8*)NULL; IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_0027; }// end catch (depth: 1) IL_0027: { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_7 = V_2; if (!L_7) { goto IL_002c; } } { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_8 = V_2; return L_8; } IL_002c: { il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_9; L_9 = TimeZoneInfo_get_Utc_m482B36736E8BCDACAD739CFEB993B7BD7AADA726_inline(NULL); return L_9; } } // System.TimeZoneInfo System.TimeZoneInfo::GetTimeZoneFromTzData(System.Byte[],System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* TimeZoneInfo_GetTimeZoneFromTzData_m5DDA48CBB6FFBA2C0C27F6B393A77EFD3FAB1B59 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___rawData0, String_t* ___id1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* V_0 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___rawData0; if (!L_0) { goto IL_0026; } } try {// begin try (depth: 1) ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___rawData0; String_t* L_2 = ___id1; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_3 = (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8*)il2cpp_codegen_object_new(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); NullCheck(L_3); TimeZoneInfo__ctor_mE3FB264716A8CF7BD4F9CB48F2CA6628E3EFE2F5(L_3, L_1, L_2, (bool)0, NULL); V_0 = L_3; goto IL_0028; }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_000e; } if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0011; } throw e; } CATCH_000e: {// begin catch(System.ArgumentException) IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_0014; }// end catch (depth: 1) CATCH_0011: {// begin catch(System.InvalidTimeZoneException) IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_0014; }// end catch (depth: 1) IL_0014: { } try {// begin try (depth: 1) ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = ___rawData0; String_t* L_5 = ___id1; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_6 = (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8*)il2cpp_codegen_object_new(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); NullCheck(L_6); TimeZoneInfo__ctor_mE3FB264716A8CF7BD4F9CB48F2CA6628E3EFE2F5(L_6, L_4, L_5, (bool)1, NULL); V_0 = L_6; goto IL_0028; }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0020; } if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0023; } throw e; } CATCH_0020: {// begin catch(System.ArgumentException) IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_0026; }// end catch (depth: 1) CATCH_0023: {// begin catch(System.InvalidTimeZoneException) IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_0026; }// end catch (depth: 1) IL_0026: { return (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8*)NULL; } IL_0028: { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_7 = V_0; return L_7; } } // System.String System.TimeZoneInfo::GetTimeZoneDirectory() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_GetTimeZoneDirectory_m253A7A85E31FC7295048725DDDEF0F8016A47995 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5BE4AA33C9F9269F3A5D8C902F7D37A6E28D6E38); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral970C23FDBBAD9A488898D5C3E419B934D2FB9545); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); String_t* L_0; L_0 = TimeZoneInfo_GetTimeZoneDirectoryUnity_m5B6F71D50A7694A5E7B1015AE1ACFACD938F15FE_inline(NULL); V_0 = L_0; String_t* L_1 = V_0; bool L_2; L_2 = String_IsNullOrEmpty_m54CF0907E7C4F3AFB2E796A13DC751ECBB8DB64A(L_1, NULL); if (L_2) { goto IL_0010; } } { String_t* L_3 = V_0; return L_3; } IL_0010: { String_t* L_4; L_4 = Environment_GetEnvironmentVariable_mFA1E83F28F2E74EF3312F9D4B582FFBE38804ED8(_stringLiteral5BE4AA33C9F9269F3A5D8C902F7D37A6E28D6E38, NULL); V_0 = L_4; String_t* L_5 = V_0; if (L_5) { goto IL_0026; } } { V_0 = _stringLiteral970C23FDBBAD9A488898D5C3E419B934D2FB9545; goto IL_0044; } IL_0026: { String_t* L_6 = V_0; il2cpp_codegen_runtime_class_init_inline(Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var); Il2CppChar L_7 = ((Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_StaticFields*)il2cpp_codegen_static_fields_for(Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var))->___DirectorySeparatorChar_2; NullCheck(L_6); bool L_8; L_8 = String_EndsWith_m1345909BD17FAD2AE0F70BC1B5CFC2010CF226B0(L_6, L_7, NULL); if (L_8) { goto IL_0044; } } { String_t* L_9 = V_0; il2cpp_codegen_runtime_class_init_inline(Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var); String_t* L_10; L_10 = Char_ToString_m2A308731F9577C06AF3C0901234E2EAC8327410C((&((Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_StaticFields*)il2cpp_codegen_static_fields_for(Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var))->___DirectorySeparatorChar_2), NULL); String_t* L_11; L_11 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(L_9, L_10, NULL); V_0 = L_11; } IL_0044: { String_t* L_12 = V_0; return L_12; } } // System.TimeSpan System.TimeZoneInfo::GetDateTimeNowUtcOffsetFromUtc(System.DateTime,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_GetDateTimeNowUtcOffsetFromUtc_m3F895CC77AC7FC3FD44C6E488DD4F0A48AB5E94D (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___time0, bool* ___isAmbiguousLocalDst1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = ___time0; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_1; L_1 = TimeZoneInfo_get_Local_mFE5FE1C25C014521B6BCC9BE11AA67A1AF3C91B0(NULL); bool* L_2 = ___isAmbiguousLocalDst1; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_3; L_3 = TimeZoneInfo_GetUtcOffsetFromUtc_m56457555F1923B673BDA645C17CBE6E7547B13EE(L_0, L_1, (&V_0), L_2, NULL); return L_3; } } // System.Void System.TimeZoneInfo::TZif_GenerateAdjustmentRules(System.TimeZoneInfo/AdjustmentRule[]&,System.TimeSpan,System.DateTime[],System.Byte[],System.TimeZoneInfo/TZifType[],System.Boolean[],System.Boolean[],System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo_TZif_GenerateAdjustmentRules_mD65E889C847FAAF4D63D73E7D2BEBE8009C5B4DB (AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA** ___rules0, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___baseUtcOffset1, DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1* ___dts2, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___typeOfLocalTime3, TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* ___transitionType4, BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___StandardTime5, BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___GmtTime6, String_t* ___futureTransitionsPosixFormat7, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_ToArray_m4C6A88B12B46631D06072C836E9D709251CFF260_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mE368A11FD9D47BA833943E9593471D8336AF5C0A_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* V_1 = NULL; { AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA** L_0 = ___rules0; *((RuntimeObject**)L_0) = (RuntimeObject*)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_0, (void*)(RuntimeObject*)NULL); DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1* L_1 = ___dts2; NullCheck(L_1); if (!(((RuntimeArray*)L_1)->max_length)) { goto IL_003e; } } { V_0 = 0; List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_2 = (List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C*)il2cpp_codegen_object_new(List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C_il2cpp_TypeInfo_var); NullCheck(L_2); List_1__ctor_mE368A11FD9D47BA833943E9593471D8336AF5C0A(L_2, List_1__ctor_mE368A11FD9D47BA833943E9593471D8336AF5C0A_RuntimeMethod_var); V_1 = L_2; goto IL_0024; } IL_0011: { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_3 = ___baseUtcOffset1; List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_4 = V_1; DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1* L_5 = ___dts2; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6 = ___typeOfLocalTime3; TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* L_7 = ___transitionType4; BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_8 = ___StandardTime5; BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_9 = ___GmtTime6; String_t* L_10 = ___futureTransitionsPosixFormat7; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeZoneInfo_TZif_GenerateAdjustmentRule_m1D35DBFF85D3EF07FE7C1F6B25CBC0F0D8681EF2((&V_0), L_3, L_4, L_5, L_6, L_7, L_8, L_9, L_10, NULL); } IL_0024: { int32_t L_11 = V_0; DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1* L_12 = ___dts2; NullCheck(L_12); if ((((int32_t)L_11) <= ((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length))))) { goto IL_0011; } } { AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA** L_13 = ___rules0; List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_14 = V_1; NullCheck(L_14); AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_15; L_15 = List_1_ToArray_m4C6A88B12B46631D06072C836E9D709251CFF260(L_14, List_1_ToArray_m4C6A88B12B46631D06072C836E9D709251CFF260_RuntimeMethod_var); *((RuntimeObject**)L_13) = (RuntimeObject*)L_15; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_13, (void*)(RuntimeObject*)L_15); AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA** L_16 = ___rules0; AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_17 = *((AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA**)L_16); if (!L_17) { goto IL_003e; } } { AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA** L_18 = ___rules0; AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_19 = *((AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA**)L_18); NullCheck(L_19); if ((((RuntimeArray*)L_19)->max_length)) { goto IL_003e; } } { AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA** L_20 = ___rules0; *((RuntimeObject**)L_20) = (RuntimeObject*)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_20, (void*)(RuntimeObject*)NULL); } IL_003e: { return; } } // System.Void System.TimeZoneInfo::TZif_GenerateAdjustmentRule(System.Int32&,System.TimeSpan,System.Collections.Generic.List`1,System.DateTime[],System.Byte[],System.TimeZoneInfo/TZifType[],System.Boolean[],System.Boolean[],System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo_TZif_GenerateAdjustmentRule_m1D35DBFF85D3EF07FE7C1F6B25CBC0F0D8681EF2 (int32_t* ___index0, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___timeZoneBaseUtcOffset1, List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* ___rulesList2, DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1* ___dts3, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___typeOfLocalTime4, TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* ___transitionTypes5, BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___StandardTime6, BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___GmtTime7, String_t* ___futureTransitionsPosixFormat8, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mC19688469DF392DB765D7CDC2E9382514E5EF7E7_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m555A94A70E4F9F1DBC02B3B7A446EEAAAF6647A5_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_0; memset((&V_0), 0, sizeof(V_0)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_1; memset((&V_1), 0, sizeof(V_1)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_2; memset((&V_2), 0, sizeof(V_2)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_3; memset((&V_3), 0, sizeof(V_3)); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* V_4 = NULL; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 V_5; memset((&V_5), 0, sizeof(V_5)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_6; memset((&V_6), 0, sizeof(V_6)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_7; memset((&V_7), 0, sizeof(V_7)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_8; memset((&V_8), 0, sizeof(V_8)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_9; memset((&V_9), 0, sizeof(V_9)); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 V_10; memset((&V_10), 0, sizeof(V_10)); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* V_11 = NULL; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_12; memset((&V_12), 0, sizeof(V_12)); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* V_13 = NULL; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_14; memset((&V_14), 0, sizeof(V_14)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_15; memset((&V_15), 0, sizeof(V_15)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_16; memset((&V_16), 0, sizeof(V_16)); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* V_17 = NULL; TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 G_B8_0; memset((&G_B8_0), 0, sizeof(G_B8_0)); TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 G_B7_0; memset((&G_B7_0), 0, sizeof(G_B7_0)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A G_B9_0; memset((&G_B9_0), 0, sizeof(G_B9_0)); TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 G_B9_1; memset((&G_B9_1), 0, sizeof(G_B9_1)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A G_B12_0; memset((&G_B12_0), 0, sizeof(G_B12_0)); TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 G_B18_0; memset((&G_B18_0), 0, sizeof(G_B18_0)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D G_B18_1; memset((&G_B18_1), 0, sizeof(G_B18_1)); TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 G_B17_0; memset((&G_B17_0), 0, sizeof(G_B17_0)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D G_B17_1; memset((&G_B17_1), 0, sizeof(G_B17_1)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A G_B19_0; memset((&G_B19_0), 0, sizeof(G_B19_0)); TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 G_B19_1; memset((&G_B19_1), 0, sizeof(G_B19_1)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D G_B19_2; memset((&G_B19_2), 0, sizeof(G_B19_2)); TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 G_B21_0; memset((&G_B21_0), 0, sizeof(G_B21_0)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D G_B21_1; memset((&G_B21_1), 0, sizeof(G_B21_1)); TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 G_B20_0; memset((&G_B20_0), 0, sizeof(G_B20_0)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D G_B20_1; memset((&G_B20_1), 0, sizeof(G_B20_1)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A G_B22_0; memset((&G_B22_0), 0, sizeof(G_B22_0)); TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 G_B22_1; memset((&G_B22_1), 0, sizeof(G_B22_1)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D G_B22_2; memset((&G_B22_2), 0, sizeof(G_B22_2)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D G_B24_0; memset((&G_B24_0), 0, sizeof(G_B24_0)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D G_B23_0; memset((&G_B23_0), 0, sizeof(G_B23_0)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D G_B25_0; memset((&G_B25_0), 0, sizeof(G_B25_0)); TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 G_B35_0; memset((&G_B35_0), 0, sizeof(G_B35_0)); TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 G_B34_0; memset((&G_B34_0), 0, sizeof(G_B34_0)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A G_B36_0; memset((&G_B36_0), 0, sizeof(G_B36_0)); TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 G_B36_1; memset((&G_B36_1), 0, sizeof(G_B36_1)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A G_B39_0; memset((&G_B39_0), 0, sizeof(G_B39_0)); { goto IL_0008; } IL_0002: { int32_t* L_0 = ___index0; int32_t* L_1 = ___index0; int32_t L_2 = *((int32_t*)L_1); *((int32_t*)L_0) = (int32_t)((int32_t)il2cpp_codegen_add(L_2, 1)); } IL_0008: { int32_t* L_3 = ___index0; int32_t L_4 = *((int32_t*)L_3); DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1* L_5 = ___dts3; NullCheck(L_5); if ((((int32_t)L_4) >= ((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length))))) { goto IL_0023; } } { DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1* L_6 = ___dts3; int32_t* L_7 = ___index0; int32_t L_8 = *((int32_t*)L_7); NullCheck(L_6); int32_t L_9 = L_8; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_10 = (L_6)->GetAt(static_cast(L_9)); il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_11 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MinValue_32; bool L_12; L_12 = DateTime_op_Equality_mFB772D884EA91082BFC51212E79B9D33A67CA66F(L_10, L_11, NULL); if (L_12) { goto IL_0002; } } IL_0023: { List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_13 = ___rulesList2; NullCheck(L_13); int32_t L_14; L_14 = List_1_get_Count_m555A94A70E4F9F1DBC02B3B7A446EEAAAF6647A5_inline(L_13, List_1_get_Count_m555A94A70E4F9F1DBC02B3B7A446EEAAAF6647A5_RuntimeMethod_var); if (L_14) { goto IL_00c1; } } { int32_t* L_15 = ___index0; int32_t L_16 = *((int32_t*)L_15); DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1* L_17 = ___dts3; NullCheck(L_17); if ((((int32_t)L_16) >= ((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length))))) { goto IL_00c1; } } { TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* L_18 = ___transitionTypes5; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 L_19; L_19 = TimeZoneInfo_TZif_GetEarlyDateTransitionType_m95E0426F6E27E8BF7E47EC7B9CBCB211BF178C0C(L_18, NULL); DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1* L_20 = ___dts3; int32_t* L_21 = ___index0; int32_t L_22 = *((int32_t*)L_21); NullCheck(L_20); int32_t L_23 = L_22; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_24 = (L_20)->GetAt(static_cast(L_23)); V_0 = L_24; TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 L_25 = L_19; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_26 = L_25.___UtcOffset_0; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_27 = ___timeZoneBaseUtcOffset1; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_28; L_28 = TimeZoneInfo_TZif_CalculateTransitionOffsetFromBase_mDD1FD808E96DCC4FF8D07A47147DE7EE7A0549B5(L_26, L_27, NULL); V_1 = L_28; TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 L_29 = L_25; bool L_30 = L_29.___IsDst_1; G_B7_0 = L_29; if (L_30) { G_B8_0 = L_29; goto IL_0064; } } { il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_31 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; G_B9_0 = L_31; G_B9_1 = G_B7_0; goto IL_0065; } IL_0064: { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_32 = V_1; G_B9_0 = L_32; G_B9_1 = G_B8_0; } IL_0065: { V_2 = G_B9_0; bool L_33 = G_B9_1.___IsDst_1; if (L_33) { goto IL_0070; } } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_34 = V_1; G_B12_0 = L_34; goto IL_0075; } IL_0070: { il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_35 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; G_B12_0 = L_35; } IL_0075: { V_3 = G_B12_0; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_36 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MinValue_32; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_37; L_37 = DateTime_AddTicks_m76D145EA6924296227BB2DD9A5A18C8A2B72EF1D((&V_0), ((int64_t)(-1)), NULL); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_38 = V_2; il2cpp_codegen_initobj((&V_5), sizeof(TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823)); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_39 = V_5; il2cpp_codegen_initobj((&V_5), sizeof(TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823)); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_40 = V_5; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_41 = V_3; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_42; L_42 = AdjustmentRule_CreateAdjustmentRule_mE8192F76B0E396ECFFBDF0A90ED7DB3F70B7C87F(L_36, L_37, L_38, L_39, L_40, L_41, (bool)1, NULL); V_4 = L_42; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_43 = ___timeZoneBaseUtcOffset1; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_44 = V_4; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); bool L_45; L_45 = TimeZoneInfo_IsValidAdjustmentRuleOffest_m04FC4314480C802208E96C633F7B812BD964AB80(L_43, L_44, NULL); if (L_45) { goto IL_00b4; } } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_46 = ___timeZoneBaseUtcOffset1; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeZoneInfo_NormalizeAdjustmentRuleOffset_mB2F0C2208D45713F1907FB1E1E523C26762B89A1(L_46, (&V_4), NULL); } IL_00b4: { List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_47 = ___rulesList2; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_48 = V_4; NullCheck(L_47); List_1_Add_mC19688469DF392DB765D7CDC2E9382514E5EF7E7_inline(L_47, L_48, List_1_Add_mC19688469DF392DB765D7CDC2E9382514E5EF7E7_RuntimeMethod_var); goto IL_0257; } IL_00c1: { int32_t* L_49 = ___index0; int32_t L_50 = *((int32_t*)L_49); DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1* L_51 = ___dts3; NullCheck(L_51); if ((((int32_t)L_50) >= ((int32_t)((int32_t)(((RuntimeArray*)L_51)->max_length))))) { goto IL_018e; } } { DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1* L_52 = ___dts3; int32_t* L_53 = ___index0; int32_t L_54 = *((int32_t*)L_53); NullCheck(L_52); int32_t L_55 = ((int32_t)il2cpp_codegen_subtract(L_54, 1)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_56 = (L_52)->GetAt(static_cast(L_55)); TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* L_57 = ___transitionTypes5; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_58 = ___typeOfLocalTime4; int32_t* L_59 = ___index0; int32_t L_60 = *((int32_t*)L_59); NullCheck(L_58); int32_t L_61 = ((int32_t)il2cpp_codegen_subtract(L_60, 1)); uint8_t L_62 = (L_58)->GetAt(static_cast(L_61)); NullCheck(L_57); uint8_t L_63 = L_62; TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 L_64 = (L_57)->GetAt(static_cast(L_63)); DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1* L_65 = ___dts3; int32_t* L_66 = ___index0; int32_t L_67 = *((int32_t*)L_66); NullCheck(L_65); int32_t L_68 = L_67; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_69 = (L_65)->GetAt(static_cast(L_68)); V_6 = L_69; TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 L_70 = L_64; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_71 = L_70.___UtcOffset_0; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_72 = ___timeZoneBaseUtcOffset1; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_73; L_73 = TimeZoneInfo_TZif_CalculateTransitionOffsetFromBase_mDD1FD808E96DCC4FF8D07A47147DE7EE7A0549B5(L_71, L_72, NULL); V_7 = L_73; TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 L_74 = L_70; bool L_75 = L_74.___IsDst_1; G_B17_0 = L_74; G_B17_1 = L_56; if (L_75) { G_B18_0 = L_74; G_B18_1 = L_56; goto IL_010a; } } { il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_76 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; G_B19_0 = L_76; G_B19_1 = G_B17_0; G_B19_2 = G_B17_1; goto IL_010c; } IL_010a: { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_77 = V_7; G_B19_0 = L_77; G_B19_1 = G_B18_0; G_B19_2 = G_B18_1; } IL_010c: { V_8 = G_B19_0; TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 L_78 = G_B19_1; bool L_79 = L_78.___IsDst_1; G_B20_0 = L_78; G_B20_1 = G_B19_2; if (L_79) { G_B21_0 = L_78; G_B21_1 = G_B19_2; goto IL_011a; } } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_80 = V_7; G_B22_0 = L_80; G_B22_1 = G_B20_0; G_B22_2 = G_B20_1; goto IL_011f; } IL_011a: { il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_81 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; G_B22_0 = L_81; G_B22_1 = G_B21_0; G_B22_2 = G_B21_1; } IL_011f: { V_9 = G_B22_0; bool L_82 = G_B22_1.___IsDst_1; G_B23_0 = G_B22_2; if (!L_82) { G_B24_0 = G_B22_2; goto IL_0146; } } { il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_83; L_83 = DateTime_AddMilliseconds_mEF44A0EE635A478B7B0CDAA438D2240C14C88D05((&((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MinValue_32), (2.0), NULL); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_84; L_84 = TransitionTime_CreateFixedDateRule_m67417DBC5A7651EFC46B9719E75984AA61073122(L_83, 1, 1, NULL); V_10 = L_84; G_B25_0 = G_B23_0; goto IL_014e; } IL_0146: { il2cpp_codegen_initobj((&V_10), sizeof(TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823)); G_B25_0 = G_B24_0; } IL_014e: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_85; L_85 = DateTime_AddTicks_m76D145EA6924296227BB2DD9A5A18C8A2B72EF1D((&V_6), ((int64_t)(-1)), NULL); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_86 = V_8; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_87 = V_10; il2cpp_codegen_initobj((&V_5), sizeof(TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823)); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_88 = V_5; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_89 = V_9; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_90; L_90 = AdjustmentRule_CreateAdjustmentRule_mE8192F76B0E396ECFFBDF0A90ED7DB3F70B7C87F(G_B25_0, L_85, L_86, L_87, L_88, L_89, (bool)1, NULL); V_11 = L_90; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_91 = ___timeZoneBaseUtcOffset1; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_92 = V_11; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); bool L_93; L_93 = TimeZoneInfo_IsValidAdjustmentRuleOffest_m04FC4314480C802208E96C633F7B812BD964AB80(L_91, L_92, NULL); if (L_93) { goto IL_0181; } } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_94 = ___timeZoneBaseUtcOffset1; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeZoneInfo_NormalizeAdjustmentRuleOffset_mB2F0C2208D45713F1907FB1E1E523C26762B89A1(L_94, (&V_11), NULL); } IL_0181: { List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_95 = ___rulesList2; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_96 = V_11; NullCheck(L_95); List_1_Add_mC19688469DF392DB765D7CDC2E9382514E5EF7E7_inline(L_95, L_96, List_1_Add_mC19688469DF392DB765D7CDC2E9382514E5EF7E7_RuntimeMethod_var); goto IL_0257; } IL_018e: { DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1* L_97 = ___dts3; int32_t* L_98 = ___index0; int32_t L_99 = *((int32_t*)L_98); NullCheck(L_97); int32_t L_100 = ((int32_t)il2cpp_codegen_subtract(L_99, 1)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_101 = (L_97)->GetAt(static_cast(L_100)); V_12 = L_101; String_t* L_102 = ___futureTransitionsPosixFormat8; bool L_103; L_103 = String_IsNullOrEmpty_m54CF0907E7C4F3AFB2E796A13DC751ECBB8DB64A(L_102, NULL); if (L_103) { goto IL_01d5; } } { String_t* L_104 = ___futureTransitionsPosixFormat8; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_105 = V_12; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_106 = ___timeZoneBaseUtcOffset1; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_107; L_107 = TimeZoneInfo_TZif_CreateAdjustmentRuleForPosixFormat_m2CCD38F3E19C6156F300665022B195CCD270E92E(L_104, L_105, L_106, NULL); V_13 = L_107; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_108 = V_13; if (!L_108) { goto IL_0257; } } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_109 = ___timeZoneBaseUtcOffset1; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_110 = V_13; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); bool L_111; L_111 = TimeZoneInfo_IsValidAdjustmentRuleOffest_m04FC4314480C802208E96C633F7B812BD964AB80(L_109, L_110, NULL); if (L_111) { goto IL_01c8; } } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_112 = ___timeZoneBaseUtcOffset1; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeZoneInfo_NormalizeAdjustmentRuleOffset_mB2F0C2208D45713F1907FB1E1E523C26762B89A1(L_112, (&V_13), NULL); } IL_01c8: { List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_113 = ___rulesList2; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_114 = V_13; NullCheck(L_113); List_1_Add_mC19688469DF392DB765D7CDC2E9382514E5EF7E7_inline(L_113, L_114, List_1_Add_mC19688469DF392DB765D7CDC2E9382514E5EF7E7_RuntimeMethod_var); goto IL_0257; } IL_01d5: { TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* L_115 = ___transitionTypes5; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_116 = ___typeOfLocalTime4; int32_t* L_117 = ___index0; int32_t L_118 = *((int32_t*)L_117); NullCheck(L_116); int32_t L_119 = ((int32_t)il2cpp_codegen_subtract(L_118, 1)); uint8_t L_120 = (L_116)->GetAt(static_cast(L_119)); NullCheck(L_115); uint8_t L_121 = L_120; TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 L_122 = (L_115)->GetAt(static_cast(L_121)); TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 L_123 = L_122; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_124 = L_123.___UtcOffset_0; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_125 = ___timeZoneBaseUtcOffset1; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_126; L_126 = TimeZoneInfo_TZif_CalculateTransitionOffsetFromBase_mDD1FD808E96DCC4FF8D07A47147DE7EE7A0549B5(L_124, L_125, NULL); V_14 = L_126; TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 L_127 = L_123; bool L_128 = L_127.___IsDst_1; G_B34_0 = L_127; if (L_128) { G_B35_0 = L_127; goto IL_0200; } } { il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_129 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; G_B36_0 = L_129; G_B36_1 = G_B34_0; goto IL_0202; } IL_0200: { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_130 = V_14; G_B36_0 = L_130; G_B36_1 = G_B35_0; } IL_0202: { V_15 = G_B36_0; bool L_131 = G_B36_1.___IsDst_1; if (L_131) { goto IL_020f; } } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_132 = V_14; G_B39_0 = L_132; goto IL_0214; } IL_020f: { il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_133 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; G_B39_0 = L_133; } IL_0214: { V_16 = G_B39_0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_134 = V_12; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_135 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MaxValue_33; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_136 = V_15; il2cpp_codegen_initobj((&V_5), sizeof(TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823)); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_137 = V_5; il2cpp_codegen_initobj((&V_5), sizeof(TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823)); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_138 = V_5; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_139 = V_16; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_140; L_140 = AdjustmentRule_CreateAdjustmentRule_mE8192F76B0E396ECFFBDF0A90ED7DB3F70B7C87F(L_134, L_135, L_136, L_137, L_138, L_139, (bool)1, NULL); V_17 = L_140; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_141 = ___timeZoneBaseUtcOffset1; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_142 = V_17; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); bool L_143; L_143 = TimeZoneInfo_IsValidAdjustmentRuleOffest_m04FC4314480C802208E96C633F7B812BD964AB80(L_141, L_142, NULL); if (L_143) { goto IL_024f; } } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_144 = ___timeZoneBaseUtcOffset1; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeZoneInfo_NormalizeAdjustmentRuleOffset_mB2F0C2208D45713F1907FB1E1E523C26762B89A1(L_144, (&V_17), NULL); } IL_024f: { List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_145 = ___rulesList2; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_146 = V_17; NullCheck(L_145); List_1_Add_mC19688469DF392DB765D7CDC2E9382514E5EF7E7_inline(L_145, L_146, List_1_Add_mC19688469DF392DB765D7CDC2E9382514E5EF7E7_RuntimeMethod_var); } IL_0257: { int32_t* L_147 = ___index0; int32_t* L_148 = ___index0; int32_t L_149 = *((int32_t*)L_148); *((int32_t*)L_147) = (int32_t)((int32_t)il2cpp_codegen_add(L_149, 1)); return; } } // System.TimeSpan System.TimeZoneInfo::TZif_CalculateTransitionOffsetFromBase(System.TimeSpan,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_TZif_CalculateTransitionOffsetFromBase_mDD1FD808E96DCC4FF8D07A47147DE7EE7A0549B5 (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___transitionOffset0, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___timeZoneBaseUtcOffset1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_0; memset((&V_0), 0, sizeof(V_0)); { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_0 = ___transitionOffset0; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_1 = ___timeZoneBaseUtcOffset1; il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_2; L_2 = TimeSpan_op_Subtraction_mFFB8933364C5E1E2187CA0605445893F2872FBB8(L_0, L_1, NULL); V_0 = L_2; int64_t L_3; L_3 = TimeSpan_get_Ticks_mC50131E57621F29FACC53B3241432ABB874FA1B5_inline((&V_0), NULL); if (!((int64_t)(L_3%((int64_t)((int32_t)600000000))))) { goto IL_002e; } } { int32_t L_4; L_4 = TimeSpan_get_Hours_m770B4B777A816E051EFDA317C28DA9A4F39D6CFB((&V_0), NULL); int32_t L_5; L_5 = TimeSpan_get_Minutes_m93E37D01CD6DA2DE5B35609D740D322E270B678F((&V_0), NULL); TimeSpan__ctor_mF8B85616C009D35D860DA0254327E8AAF54822A1((&V_0), L_4, L_5, 0, NULL); } IL_002e: { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_6 = V_0; return L_6; } } // System.TimeZoneInfo/TZifType System.TimeZoneInfo::TZif_GetEarlyDateTransitionType(System.TimeZoneInfo/TZifType[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 TimeZoneInfo_TZif_GetEarlyDateTransitionType_m95E0426F6E27E8BF7E47EC7B9CBCB211BF178C0C (TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* ___transitionTypes0, const RuntimeMethod* method) { TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* V_0 = NULL; int32_t V_1 = 0; TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 V_2; memset((&V_2), 0, sizeof(V_2)); { TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* L_0 = ___transitionTypes0; V_0 = L_0; V_1 = 0; goto IL_001c; } IL_0006: { TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* L_1 = V_0; int32_t L_2 = V_1; NullCheck(L_1); int32_t L_3 = L_2; TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 L_4 = (L_1)->GetAt(static_cast(L_3)); V_2 = L_4; TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 L_5 = V_2; bool L_6 = L_5.___IsDst_1; if (L_6) { goto IL_0018; } } { TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 L_7 = V_2; return L_7; } IL_0018: { int32_t L_8 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_8, 1)); } IL_001c: { int32_t L_9 = V_1; TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* L_10 = V_0; NullCheck(L_10); if ((((int32_t)L_9) < ((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length))))) { goto IL_0006; } } { TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* L_11 = ___transitionTypes0; NullCheck(L_11); if (!(((RuntimeArray*)L_11)->max_length)) { goto IL_002e; } } { TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* L_12 = ___transitionTypes0; NullCheck(L_12); int32_t L_13 = 0; TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 L_14 = (L_12)->GetAt(static_cast(L_13)); return L_14; } IL_002e: { InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD* L_15 = (InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD_il2cpp_TypeInfo_var))); NullCheck(L_15); InvalidTimeZoneException__ctor_m4B7D809BE84CD42FF08EA16752B6BAC7F90D4C1A(L_15, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3ABDC3BE0D4AE0A52AF73DB2F567C19CF2E6E875)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeZoneInfo_TZif_GetEarlyDateTransitionType_m95E0426F6E27E8BF7E47EC7B9CBCB211BF178C0C_RuntimeMethod_var))); } } // System.TimeZoneInfo/AdjustmentRule System.TimeZoneInfo::TZif_CreateAdjustmentRuleForPosixFormat(System.String,System.DateTime,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* TimeZoneInfo_TZif_CreateAdjustmentRuleForPosixFormat_m2CCD38F3E19C6156F300665022B195CCD270E92E (String_t* ___posixFormat0, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___startTransitionDate1, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___timeZoneBaseUtcOffset2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_mD63976C410D14373D6D1D3E713C09B1E152F2166_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_Value_mC7511CCEBD1BB6FEEA7903DBB81ED7290D00DDD3_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; String_t* V_1 = NULL; String_t* V_2 = NULL; String_t* V_3 = NULL; String_t* V_4 = NULL; String_t* V_5 = NULL; String_t* V_6 = NULL; String_t* V_7 = NULL; Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272 V_8; memset((&V_8), 0, sizeof(V_8)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_9; memset((&V_9), 0, sizeof(V_9)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_10; memset((&V_10), 0, sizeof(V_10)); Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272 V_11; memset((&V_11), 0, sizeof(V_11)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_12; memset((&V_12), 0, sizeof(V_12)); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 V_13; memset((&V_13), 0, sizeof(V_13)); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 V_14; memset((&V_14), 0, sizeof(V_14)); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 V_15; memset((&V_15), 0, sizeof(V_15)); { String_t* L_0 = ___posixFormat0; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); bool L_1; L_1 = TimeZoneInfo_TZif_ParsePosixFormat_m8E26F5D9DAC682523891080DB685C3F1C7DC57EC(L_0, (&V_0), (&V_1), (&V_2), (&V_3), (&V_4), (&V_5), (&V_6), (&V_7), NULL); if (!L_1) { goto IL_00ea; } } { String_t* L_2 = V_1; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272 L_3; L_3 = TimeZoneInfo_TZif_ParseOffsetString_mB3960BE508DC9FB327ECE8D61F14D784BC6AA3B8(L_2, NULL); V_8 = L_3; bool L_4; L_4 = Nullable_1_get_HasValue_mD63976C410D14373D6D1D3E713C09B1E152F2166_inline((&V_8), Nullable_1_get_HasValue_mD63976C410D14373D6D1D3E713C09B1E152F2166_RuntimeMethod_var); if (!L_4) { goto IL_00ea; } } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_5; L_5 = Nullable_1_get_Value_mC7511CCEBD1BB6FEEA7903DBB81ED7290D00DDD3((&V_8), Nullable_1_get_Value_mC7511CCEBD1BB6FEEA7903DBB81ED7290D00DDD3_RuntimeMethod_var); V_10 = L_5; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_6; L_6 = TimeSpan_Negate_m3BF3036191A2FDC35250891CD82AD3283A13ABB4((&V_10), NULL); V_9 = L_6; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_7 = V_9; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_8 = ___timeZoneBaseUtcOffset2; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_9; L_9 = TimeZoneInfo_TZif_CalculateTransitionOffsetFromBase_mDD1FD808E96DCC4FF8D07A47147DE7EE7A0549B5(L_7, L_8, NULL); V_9 = L_9; String_t* L_10 = V_2; bool L_11; L_11 = String_IsNullOrEmpty_m54CF0907E7C4F3AFB2E796A13DC751ECBB8DB64A(L_10, NULL); if (L_11) { goto IL_00c2; } } { String_t* L_12 = V_3; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272 L_13; L_13 = TimeZoneInfo_TZif_ParseOffsetString_mB3960BE508DC9FB327ECE8D61F14D784BC6AA3B8(L_12, NULL); V_11 = L_13; bool L_14; L_14 = Nullable_1_get_HasValue_mD63976C410D14373D6D1D3E713C09B1E152F2166_inline((&V_11), Nullable_1_get_HasValue_mD63976C410D14373D6D1D3E713C09B1E152F2166_RuntimeMethod_var); if (L_14) { goto IL_0070; } } { TimeSpan__ctor_mF8B85616C009D35D860DA0254327E8AAF54822A1((&V_12), 1, 0, 0, NULL); goto IL_0097; } IL_0070: { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_15; L_15 = Nullable_1_get_Value_mC7511CCEBD1BB6FEEA7903DBB81ED7290D00DDD3((&V_11), Nullable_1_get_Value_mC7511CCEBD1BB6FEEA7903DBB81ED7290D00DDD3_RuntimeMethod_var); V_10 = L_15; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_16; L_16 = TimeSpan_Negate_m3BF3036191A2FDC35250891CD82AD3283A13ABB4((&V_10), NULL); V_12 = L_16; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_17 = V_12; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_18 = ___timeZoneBaseUtcOffset2; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_19; L_19 = TimeZoneInfo_TZif_CalculateTransitionOffsetFromBase_mDD1FD808E96DCC4FF8D07A47147DE7EE7A0549B5(L_17, L_18, NULL); V_12 = L_19; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_20 = V_12; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_21 = V_9; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_22; L_22 = TimeZoneInfo_TZif_CalculateTransitionOffsetFromBase_mDD1FD808E96DCC4FF8D07A47147DE7EE7A0549B5(L_20, L_21, NULL); V_12 = L_22; } IL_0097: { String_t* L_23 = V_4; String_t* L_24 = V_5; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_25; L_25 = TimeZoneInfo_TZif_CreateTransitionTimeFromPosixRule_m010A4CD46321B7ED89B3833048A44534F4E7873A(L_23, L_24, NULL); V_13 = L_25; String_t* L_26 = V_6; String_t* L_27 = V_7; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_28; L_28 = TimeZoneInfo_TZif_CreateTransitionTimeFromPosixRule_m010A4CD46321B7ED89B3833048A44534F4E7873A(L_26, L_27, NULL); V_14 = L_28; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_29 = ___startTransitionDate1; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_30 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MaxValue_33; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_31 = V_12; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_32 = V_13; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_33 = V_14; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_34 = V_9; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_35; L_35 = AdjustmentRule_CreateAdjustmentRule_mE8192F76B0E396ECFFBDF0A90ED7DB3F70B7C87F(L_29, L_30, L_31, L_32, L_33, L_34, (bool)0, NULL); return L_35; } IL_00c2: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_36 = ___startTransitionDate1; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_37 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MaxValue_33; il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_38 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; il2cpp_codegen_initobj((&V_15), sizeof(TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823)); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_39 = V_15; il2cpp_codegen_initobj((&V_15), sizeof(TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823)); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_40 = V_15; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_41 = V_9; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_42; L_42 = AdjustmentRule_CreateAdjustmentRule_mE8192F76B0E396ECFFBDF0A90ED7DB3F70B7C87F(L_36, L_37, L_38, L_39, L_40, L_41, (bool)1, NULL); return L_42; } IL_00ea: { return (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07*)NULL; } } // System.Nullable`1 System.TimeZoneInfo::TZif_ParseOffsetString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272 TimeZoneInfo_TZif_ParseOffsetString_mB3960BE508DC9FB327ECE8D61F14D784BC6AA3B8 (String_t* ___offset0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m57671EDBF4C8A3BEF5EF30DC71BE6C17C6A657AC_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_mD63976C410D14373D6D1D3E713C09B1E152F2166_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_Value_mC7511CCEBD1BB6FEEA7903DBB81ED7290D00DDD3_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2B9B6C84CC15492CCB290C4B79418FA6D7DD24C1); s_Il2CppMethodInitialized = true; } Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272 V_0; memset((&V_0), 0, sizeof(V_0)); bool V_1 = false; int32_t V_2 = 0; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_3; memset((&V_3), 0, sizeof(V_3)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_4; memset((&V_4), 0, sizeof(V_4)); { il2cpp_codegen_initobj((&V_0), sizeof(Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272)); String_t* L_0 = ___offset0; bool L_1; L_1 = String_IsNullOrEmpty_m54CF0907E7C4F3AFB2E796A13DC751ECBB8DB64A(L_0, NULL); if (L_1) { goto IL_008c; } } { String_t* L_2 = ___offset0; NullCheck(L_2); Il2CppChar L_3; L_3 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_2, 0, NULL); V_1 = (bool)((((int32_t)L_3) == ((int32_t)((int32_t)45)))? 1 : 0); bool L_4 = V_1; if (L_4) { goto IL_002a; } } { String_t* L_5 = ___offset0; NullCheck(L_5); Il2CppChar L_6; L_6 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_5, 0, NULL); if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)43))))) { goto IL_0033; } } IL_002a: { String_t* L_7 = ___offset0; NullCheck(L_7); String_t* L_8; L_8 = String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472(L_7, 1, NULL); ___offset0 = L_8; } IL_0033: { String_t* L_9 = ___offset0; bool L_10; L_10 = Int32_TryParse_mFC6BFCB86964E2BCA4052155B10983837A695EA4(L_9, (&V_2), NULL); if (!L_10) { goto IL_004e; } } { int32_t L_11 = V_2; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_12; memset((&L_12), 0, sizeof(L_12)); TimeSpan__ctor_mF8B85616C009D35D860DA0254327E8AAF54822A1((&L_12), L_11, 0, 0, /*hidden argument*/NULL); Nullable_1__ctor_m57671EDBF4C8A3BEF5EF30DC71BE6C17C6A657AC((&V_0), L_12, Nullable_1__ctor_m57671EDBF4C8A3BEF5EF30DC71BE6C17C6A657AC_RuntimeMethod_var); goto IL_006a; } IL_004e: { String_t* L_13 = ___offset0; il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var); CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_14; L_14 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL); il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); bool L_15; L_15 = TimeSpan_TryParseExact_mCDE71F17CABEA4B9E21C58A08A82DCF423D560A8(L_13, _stringLiteral2B9B6C84CC15492CCB290C4B79418FA6D7DD24C1, L_14, (&V_3), NULL); if (!L_15) { goto IL_006a; } } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_16 = V_3; Nullable_1__ctor_m57671EDBF4C8A3BEF5EF30DC71BE6C17C6A657AC((&V_0), L_16, Nullable_1__ctor_m57671EDBF4C8A3BEF5EF30DC71BE6C17C6A657AC_RuntimeMethod_var); } IL_006a: { bool L_17; L_17 = Nullable_1_get_HasValue_mD63976C410D14373D6D1D3E713C09B1E152F2166_inline((&V_0), Nullable_1_get_HasValue_mD63976C410D14373D6D1D3E713C09B1E152F2166_RuntimeMethod_var); bool L_18 = V_1; if (!((int32_t)((int32_t)L_17&(int32_t)L_18))) { goto IL_008c; } } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_19; L_19 = Nullable_1_get_Value_mC7511CCEBD1BB6FEEA7903DBB81ED7290D00DDD3((&V_0), Nullable_1_get_Value_mC7511CCEBD1BB6FEEA7903DBB81ED7290D00DDD3_RuntimeMethod_var); V_4 = L_19; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_20; L_20 = TimeSpan_Negate_m3BF3036191A2FDC35250891CD82AD3283A13ABB4((&V_4), NULL); Nullable_1__ctor_m57671EDBF4C8A3BEF5EF30DC71BE6C17C6A657AC((&V_0), L_20, Nullable_1__ctor_m57671EDBF4C8A3BEF5EF30DC71BE6C17C6A657AC_RuntimeMethod_var); } IL_008c: { Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272 L_21 = V_0; return L_21; } } // System.DateTime System.TimeZoneInfo::ParseTimeOfDay(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D TimeZoneInfo_ParseTimeOfDay_m528CB6592E9A28BAD457BBCE2B9DA4C8A76905CB (String_t* ___time0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m57671EDBF4C8A3BEF5EF30DC71BE6C17C6A657AC_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_mD63976C410D14373D6D1D3E713C09B1E152F2166_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_Value_mC7511CCEBD1BB6FEEA7903DBB81ED7290D00DDD3_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_0; memset((&V_0), 0, sizeof(V_0)); Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272 V_1; memset((&V_1), 0, sizeof(V_1)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_2; memset((&V_2), 0, sizeof(V_2)); { String_t* L_0 = ___time0; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272 L_1; L_1 = TimeZoneInfo_TZif_ParseOffsetString_mB3960BE508DC9FB327ECE8D61F14D784BC6AA3B8(L_0, NULL); V_1 = L_1; bool L_2; L_2 = Nullable_1_get_HasValue_mD63976C410D14373D6D1D3E713C09B1E152F2166_inline((&V_1), Nullable_1_get_HasValue_mD63976C410D14373D6D1D3E713C09B1E152F2166_RuntimeMethod_var); if (!L_2) { goto IL_0088; } } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_3; L_3 = Nullable_1_get_Value_mC7511CCEBD1BB6FEEA7903DBB81ED7290D00DDD3((&V_1), Nullable_1_get_Value_mC7511CCEBD1BB6FEEA7903DBB81ED7290D00DDD3_RuntimeMethod_var); V_2 = L_3; int32_t L_4; L_4 = TimeSpan_get_Hours_m770B4B777A816E051EFDA317C28DA9A4F39D6CFB((&V_2), NULL); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_5; L_5 = Nullable_1_get_Value_mC7511CCEBD1BB6FEEA7903DBB81ED7290D00DDD3((&V_1), Nullable_1_get_Value_mC7511CCEBD1BB6FEEA7903DBB81ED7290D00DDD3_RuntimeMethod_var); V_2 = L_5; int32_t L_6; L_6 = TimeSpan_get_Minutes_m93E37D01CD6DA2DE5B35609D740D322E270B678F((&V_2), NULL); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_7; L_7 = Nullable_1_get_Value_mC7511CCEBD1BB6FEEA7903DBB81ED7290D00DDD3((&V_1), Nullable_1_get_Value_mC7511CCEBD1BB6FEEA7903DBB81ED7290D00DDD3_RuntimeMethod_var); V_2 = L_7; int32_t L_8; L_8 = TimeSpan_get_Seconds_m8CA21613DC31BD025C5D30D41BAD0ED50827578B((&V_2), NULL); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_9; memset((&L_9), 0, sizeof(L_9)); TimeSpan__ctor_mF8B85616C009D35D860DA0254327E8AAF54822A1((&L_9), L_4, L_6, L_8, /*hidden argument*/NULL); Nullable_1__ctor_m57671EDBF4C8A3BEF5EF30DC71BE6C17C6A657AC((&V_1), L_9, Nullable_1__ctor_m57671EDBF4C8A3BEF5EF30DC71BE6C17C6A657AC_RuntimeMethod_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_10; L_10 = Nullable_1_get_Value_mC7511CCEBD1BB6FEEA7903DBB81ED7290D00DDD3((&V_1), Nullable_1_get_Value_mC7511CCEBD1BB6FEEA7903DBB81ED7290D00DDD3_RuntimeMethod_var); il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_11 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; bool L_12; L_12 = TimeSpan_op_LessThan_mCBD324D4CB69C45EF34ABEBE7B19BB23528897BA(L_10, L_11, NULL); if (!L_12) { goto IL_006b; } } { DateTime__ctor_m1F66A4327FE6B127F0F0E83A70CED25DB0DFFB00((&V_0), 1, 1, 2, 0, 0, 0, NULL); goto IL_0078; } IL_006b: { DateTime__ctor_m1F66A4327FE6B127F0F0E83A70CED25DB0DFFB00((&V_0), 1, 1, 1, 0, 0, 0, NULL); } IL_0078: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_13 = V_0; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_14; L_14 = Nullable_1_get_Value_mC7511CCEBD1BB6FEEA7903DBB81ED7290D00DDD3((&V_1), Nullable_1_get_Value_mC7511CCEBD1BB6FEEA7903DBB81ED7290D00DDD3_RuntimeMethod_var); il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_15; L_15 = DateTime_op_Addition_m23FACB2D207CB24BE0E9C06AB4CF8CE0C4F0CAD8(L_13, L_14, NULL); V_0 = L_15; goto IL_0095; } IL_0088: { DateTime__ctor_m1F66A4327FE6B127F0F0E83A70CED25DB0DFFB00((&V_0), 1, 1, 1, 2, 0, 0, NULL); } IL_0095: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_16 = V_0; return L_16; } } // System.TimeZoneInfo/TransitionTime System.TimeZoneInfo::TZif_CreateTransitionTimeFromPosixRule(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 TimeZoneInfo_TZif_CreateTransitionTimeFromPosixRule_m010A4CD46321B7ED89B3833048A44534F4E7873A (String_t* ___date0, String_t* ___time1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 V_0; memset((&V_0), 0, sizeof(V_0)); int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; int32_t V_5 = 0; { String_t* L_0 = ___date0; bool L_1; L_1 = String_IsNullOrEmpty_m54CF0907E7C4F3AFB2E796A13DC751ECBB8DB64A(L_0, NULL); if (!L_1) { goto IL_0012; } } { il2cpp_codegen_initobj((&V_0), sizeof(TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823)); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_2 = V_0; return L_2; } IL_0012: { String_t* L_3 = ___date0; NullCheck(L_3); Il2CppChar L_4; L_4 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_3, 0, NULL); if ((!(((uint32_t)L_4) == ((uint32_t)((int32_t)77))))) { goto IL_004b; } } { String_t* L_5 = ___date0; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); bool L_6; L_6 = TimeZoneInfo_TZif_ParseMDateRule_m6947E5E89F7DA99F1D073316ED30A10209B5A962(L_5, (&V_1), (&V_2), (&V_3), NULL); if (L_6) { goto IL_003c; } } { String_t* L_7 = ___date0; String_t* L_8; L_8 = SR_Format_mB99C6F1BE061EA1427A45176E0CAFB2A2C76D03F(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5EBC0FB5BE3EB09AC4B447C54FE6F9F6DFEEF586)), L_7, NULL); InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD* L_9 = (InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD_il2cpp_TypeInfo_var))); NullCheck(L_9); InvalidTimeZoneException__ctor_m4B7D809BE84CD42FF08EA16752B6BAC7F90D4C1A(L_9, L_8, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeZoneInfo_TZif_CreateTransitionTimeFromPosixRule_m010A4CD46321B7ED89B3833048A44534F4E7873A_RuntimeMethod_var))); } IL_003c: { String_t* L_10 = ___time1; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_11; L_11 = TimeZoneInfo_ParseTimeOfDay_m528CB6592E9A28BAD457BBCE2B9DA4C8A76905CB(L_10, NULL); int32_t L_12 = V_1; int32_t L_13 = V_2; int32_t L_14 = V_3; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_15; L_15 = TransitionTime_CreateFloatingDateRule_m1859EDF4DCD24D07D78FD3B1E67BB89636374C67(L_11, L_12, L_13, L_14, NULL); return L_15; } IL_004b: { String_t* L_16 = ___date0; NullCheck(L_16); Il2CppChar L_17; L_17 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_16, 0, NULL); if ((((int32_t)L_17) == ((int32_t)((int32_t)74)))) { goto IL_0061; } } { InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD* L_18 = (InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD_il2cpp_TypeInfo_var))); NullCheck(L_18); InvalidTimeZoneException__ctor_m4B7D809BE84CD42FF08EA16752B6BAC7F90D4C1A(L_18, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD539FFE7E4977C91A92DB478C9022FA2F1EEA698)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_18, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeZoneInfo_TZif_CreateTransitionTimeFromPosixRule_m010A4CD46321B7ED89B3833048A44534F4E7873A_RuntimeMethod_var))); } IL_0061: { String_t* L_19 = ___date0; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeZoneInfo_TZif_ParseJulianDay_mB379BF3B1071727E2A2DC587890A20E69C59A7A7(L_19, (&V_4), (&V_5), NULL); String_t* L_20 = ___time1; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_21; L_21 = TimeZoneInfo_ParseTimeOfDay_m528CB6592E9A28BAD457BBCE2B9DA4C8A76905CB(L_20, NULL); int32_t L_22 = V_4; int32_t L_23 = V_5; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_24; L_24 = TransitionTime_CreateFixedDateRule_m67417DBC5A7651EFC46B9719E75984AA61073122(L_21, L_22, L_23, NULL); return L_24; } } // System.Void System.TimeZoneInfo::TZif_ParseJulianDay(System.String,System.Int32&,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo_TZif_ParseJulianDay_mB379BF3B1071727E2A2DC587890A20E69C59A7A7 (String_t* ___date0, int32_t* ___month1, int32_t* ___day2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GregorianCalendarHelper_tC77507376E36EEDABC1786237BADF1BF459F9723_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_2 = NULL; int32_t V_3 = 0; int32_t V_4 = 0; { int32_t* L_0 = ___month1; int32_t* L_1 = ___day2; int32_t L_2 = 0; V_4 = L_2; *((int32_t*)L_1) = (int32_t)L_2; int32_t L_3 = V_4; *((int32_t*)L_0) = (int32_t)L_3; V_0 = 1; int32_t L_4 = V_0; String_t* L_5 = ___date0; NullCheck(L_5); int32_t L_6; L_6 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_5, NULL); if ((((int32_t)L_4) >= ((int32_t)L_6))) { goto IL_0023; } } { String_t* L_7 = ___date0; int32_t L_8 = V_0; NullCheck(L_7); Il2CppChar L_9; L_9 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_7, L_8, NULL); if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, ((int32_t)48)))) > ((uint32_t)((int32_t)9))))) { goto IL_002e; } } IL_0023: { InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD* L_10 = (InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD_il2cpp_TypeInfo_var))); NullCheck(L_10); InvalidTimeZoneException__ctor_m4B7D809BE84CD42FF08EA16752B6BAC7F90D4C1A(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral16C4C93B479961DF2612CEC287054707A7609904)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeZoneInfo_TZif_ParseJulianDay_mB379BF3B1071727E2A2DC587890A20E69C59A7A7_RuntimeMethod_var))); } IL_002e: { V_1 = 0; } IL_0030: { int32_t L_11 = V_1; String_t* L_12 = ___date0; int32_t L_13 = V_0; NullCheck(L_12); Il2CppChar L_14; L_14 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_12, L_13, NULL); V_1 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(L_11, ((int32_t)10))), ((int32_t)il2cpp_codegen_subtract((int32_t)L_14, ((int32_t)48))))); int32_t L_15 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_15, 1)); int32_t L_16 = V_0; String_t* L_17 = ___date0; NullCheck(L_17); int32_t L_18; L_18 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_17, NULL); if ((((int32_t)L_16) >= ((int32_t)L_18))) { goto IL_005b; } } { String_t* L_19 = ___date0; int32_t L_20 = V_0; NullCheck(L_19); Il2CppChar L_21; L_21 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_19, L_20, NULL); if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_21, ((int32_t)48)))) > ((uint32_t)((int32_t)9))))) { goto IL_0030; } } IL_005b: { il2cpp_codegen_runtime_class_init_inline(GregorianCalendarHelper_tC77507376E36EEDABC1786237BADF1BF459F9723_il2cpp_TypeInfo_var); Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_22 = ((GregorianCalendarHelper_tC77507376E36EEDABC1786237BADF1BF459F9723_StaticFields*)il2cpp_codegen_static_fields_for(GregorianCalendarHelper_tC77507376E36EEDABC1786237BADF1BF459F9723_il2cpp_TypeInfo_var))->___DaysToMonth365_0; V_2 = L_22; int32_t L_23 = V_1; if (!L_23) { goto IL_006e; } } { int32_t L_24 = V_1; Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_25 = V_2; Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_26 = V_2; NullCheck(L_26); NullCheck(L_25); int32_t L_27 = ((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_26)->max_length)), 1)); int32_t L_28 = (L_25)->GetAt(static_cast(L_27)); if ((((int32_t)L_24) <= ((int32_t)L_28))) { goto IL_0079; } } IL_006e: { InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD* L_29 = (InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD_il2cpp_TypeInfo_var))); NullCheck(L_29); InvalidTimeZoneException__ctor_m4B7D809BE84CD42FF08EA16752B6BAC7F90D4C1A(L_29, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral16C4C93B479961DF2612CEC287054707A7609904)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_29, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeZoneInfo_TZif_ParseJulianDay_mB379BF3B1071727E2A2DC587890A20E69C59A7A7_RuntimeMethod_var))); } IL_0079: { V_3 = 1; goto IL_0081; } IL_007d: { int32_t L_30 = V_3; V_3 = ((int32_t)il2cpp_codegen_add(L_30, 1)); } IL_0081: { int32_t L_31 = V_3; Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_32 = V_2; NullCheck(L_32); if ((((int32_t)L_31) >= ((int32_t)((int32_t)(((RuntimeArray*)L_32)->max_length))))) { goto IL_008d; } } { int32_t L_33 = V_1; Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_34 = V_2; int32_t L_35 = V_3; NullCheck(L_34); int32_t L_36 = L_35; int32_t L_37 = (L_34)->GetAt(static_cast(L_36)); if ((((int32_t)L_33) > ((int32_t)L_37))) { goto IL_007d; } } IL_008d: { int32_t* L_38 = ___month1; int32_t L_39 = V_3; *((int32_t*)L_38) = (int32_t)L_39; int32_t* L_40 = ___day2; int32_t L_41 = V_1; Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_42 = V_2; int32_t L_43 = V_3; NullCheck(L_42); int32_t L_44 = ((int32_t)il2cpp_codegen_subtract(L_43, 1)); int32_t L_45 = (L_42)->GetAt(static_cast(L_44)); *((int32_t*)L_40) = (int32_t)((int32_t)il2cpp_codegen_subtract(L_41, L_45)); return; } } // System.Boolean System.TimeZoneInfo::TZif_ParseMDateRule(System.String,System.Int32&,System.Int32&,System.DayOfWeek&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_TZif_ParseMDateRule_m6947E5E89F7DA99F1D073316ED30A10209B5A962 (String_t* ___dateRule0, int32_t* ___month1, int32_t* ___week2, int32_t* ___dayOfWeek3, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { String_t* L_0 = ___dateRule0; NullCheck(L_0); Il2CppChar L_1; L_1 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_0, 0, NULL); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)77))))) { goto IL_0067; } } { String_t* L_2 = ___dateRule0; NullCheck(L_2); int32_t L_3; L_3 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(L_2, ((int32_t)46), NULL); V_0 = L_3; int32_t L_4 = V_0; if ((((int32_t)L_4) <= ((int32_t)0))) { goto IL_0067; } } { String_t* L_5 = ___dateRule0; int32_t L_6 = V_0; NullCheck(L_5); int32_t L_7; L_7 = String_IndexOf_m15B90A59047584420D227EE3A7EAC0C5EAF676F4(L_5, ((int32_t)46), ((int32_t)il2cpp_codegen_add(L_6, 1)), NULL); V_1 = L_7; int32_t L_8 = V_1; if ((((int32_t)L_8) <= ((int32_t)0))) { goto IL_0067; } } { String_t* L_9 = ___dateRule0; int32_t L_10 = V_0; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_11; L_11 = MemoryExtensions_AsSpan_m5164781404FE3D882902D92409C003B29659A049_inline(L_9, 1, ((int32_t)il2cpp_codegen_subtract(L_10, 1)), NULL); int32_t* L_12 = ___month1; bool L_13; L_13 = Int32_TryParse_m863CE63C2AB86C191164FC83708DF44B9010E0AE(L_11, L_12, NULL); if (!L_13) { goto IL_0067; } } { String_t* L_14 = ___dateRule0; int32_t L_15 = V_0; int32_t L_16 = V_1; int32_t L_17 = V_0; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_18; L_18 = MemoryExtensions_AsSpan_m5164781404FE3D882902D92409C003B29659A049_inline(L_14, ((int32_t)il2cpp_codegen_add(L_15, 1)), ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(L_16, L_17)), 1)), NULL); int32_t* L_19 = ___week2; bool L_20; L_20 = Int32_TryParse_m863CE63C2AB86C191164FC83708DF44B9010E0AE(L_18, L_19, NULL); if (!L_20) { goto IL_0067; } } { String_t* L_21 = ___dateRule0; int32_t L_22 = V_1; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_23; L_23 = MemoryExtensions_AsSpan_m814C0C68F0B84884C83C32C1DCBBC59069F07CAF_inline(L_21, ((int32_t)il2cpp_codegen_add(L_22, 1)), NULL); bool L_24; L_24 = Int32_TryParse_m863CE63C2AB86C191164FC83708DF44B9010E0AE(L_23, (&V_2), NULL); if (!L_24) { goto IL_0067; } } { int32_t* L_25 = ___dayOfWeek3; int32_t L_26 = V_2; *((int32_t*)L_25) = (int32_t)L_26; return (bool)1; } IL_0067: { int32_t* L_27 = ___month1; *((int32_t*)L_27) = (int32_t)0; int32_t* L_28 = ___week2; *((int32_t*)L_28) = (int32_t)0; int32_t* L_29 = ___dayOfWeek3; *((int32_t*)L_29) = (int32_t)0; return (bool)0; } } // System.Boolean System.TimeZoneInfo::TZif_ParsePosixFormat(System.String,System.String&,System.String&,System.String&,System.String&,System.String&,System.String&,System.String&,System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_TZif_ParsePosixFormat_m8E26F5D9DAC682523891080DB685C3F1C7DC57EC (String_t* ___posixFormat0, String_t** ___standardName1, String_t** ___standardOffset2, String_t** ___daylightSavingsName3, String_t** ___daylightSavingsOffset4, String_t** ___start5, String_t** ___startTime6, String_t** ___end7, String_t** ___endTime8, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { String_t** L_0 = ___standardName1; *((RuntimeObject**)L_0) = (RuntimeObject*)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_0, (void*)(RuntimeObject*)NULL); String_t** L_1 = ___standardOffset2; *((RuntimeObject**)L_1) = (RuntimeObject*)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_1, (void*)(RuntimeObject*)NULL); String_t** L_2 = ___daylightSavingsName3; *((RuntimeObject**)L_2) = (RuntimeObject*)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_2, (void*)(RuntimeObject*)NULL); String_t** L_3 = ___daylightSavingsOffset4; *((RuntimeObject**)L_3) = (RuntimeObject*)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_3, (void*)(RuntimeObject*)NULL); String_t** L_4 = ___start5; *((RuntimeObject**)L_4) = (RuntimeObject*)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_4, (void*)(RuntimeObject*)NULL); String_t** L_5 = ___startTime6; *((RuntimeObject**)L_5) = (RuntimeObject*)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_5, (void*)(RuntimeObject*)NULL); String_t** L_6 = ___end7; *((RuntimeObject**)L_6) = (RuntimeObject*)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_6, (void*)(RuntimeObject*)NULL); String_t** L_7 = ___endTime8; *((RuntimeObject**)L_7) = (RuntimeObject*)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_7, (void*)(RuntimeObject*)NULL); V_0 = 0; String_t** L_8 = ___standardName1; String_t* L_9 = ___posixFormat0; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); String_t* L_10; L_10 = TimeZoneInfo_TZif_ParsePosixName_m07D06D9BA63F479F887000F66FF6D53D544A58A6(L_9, (&V_0), NULL); *((RuntimeObject**)L_8) = (RuntimeObject*)L_10; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_8, (void*)(RuntimeObject*)L_10); String_t** L_11 = ___standardOffset2; String_t* L_12 = ___posixFormat0; String_t* L_13; L_13 = TimeZoneInfo_TZif_ParsePosixOffset_mC8A3B2CF45DDC42BE6D0A414EF6A4168CC752BC9(L_12, (&V_0), NULL); *((RuntimeObject**)L_11) = (RuntimeObject*)L_13; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_11, (void*)(RuntimeObject*)L_13); String_t** L_14 = ___daylightSavingsName3; String_t* L_15 = ___posixFormat0; String_t* L_16; L_16 = TimeZoneInfo_TZif_ParsePosixName_m07D06D9BA63F479F887000F66FF6D53D544A58A6(L_15, (&V_0), NULL); *((RuntimeObject**)L_14) = (RuntimeObject*)L_16; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_14, (void*)(RuntimeObject*)L_16); String_t** L_17 = ___daylightSavingsName3; String_t* L_18 = *((String_t**)L_17); bool L_19; L_19 = String_IsNullOrEmpty_m54CF0907E7C4F3AFB2E796A13DC751ECBB8DB64A(L_18, NULL); if (L_19) { goto IL_0099; } } { String_t** L_20 = ___daylightSavingsOffset4; String_t* L_21 = ___posixFormat0; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); String_t* L_22; L_22 = TimeZoneInfo_TZif_ParsePosixOffset_mC8A3B2CF45DDC42BE6D0A414EF6A4168CC752BC9(L_21, (&V_0), NULL); *((RuntimeObject**)L_20) = (RuntimeObject*)L_22; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_20, (void*)(RuntimeObject*)L_22); int32_t L_23 = V_0; String_t* L_24 = ___posixFormat0; NullCheck(L_24); int32_t L_25; L_25 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_24, NULL); if ((((int32_t)L_23) >= ((int32_t)L_25))) { goto IL_0099; } } { String_t* L_26 = ___posixFormat0; int32_t L_27 = V_0; NullCheck(L_26); Il2CppChar L_28; L_28 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_26, L_27, NULL); if ((!(((uint32_t)L_28) == ((uint32_t)((int32_t)44))))) { goto IL_0099; } } { int32_t L_29 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_29, 1)); String_t* L_30 = ___posixFormat0; String_t** L_31 = ___start5; String_t** L_32 = ___startTime6; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeZoneInfo_TZif_ParsePosixDateTime_mD70E2D3536C187304D64FCCEDA1933A81C04B7F2(L_30, (&V_0), L_31, L_32, NULL); int32_t L_33 = V_0; String_t* L_34 = ___posixFormat0; NullCheck(L_34); int32_t L_35; L_35 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_34, NULL); if ((((int32_t)L_33) >= ((int32_t)L_35))) { goto IL_0099; } } { String_t* L_36 = ___posixFormat0; int32_t L_37 = V_0; NullCheck(L_36); Il2CppChar L_38; L_38 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_36, L_37, NULL); if ((!(((uint32_t)L_38) == ((uint32_t)((int32_t)44))))) { goto IL_0099; } } { int32_t L_39 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_39, 1)); String_t* L_40 = ___posixFormat0; String_t** L_41 = ___end7; String_t** L_42 = ___endTime8; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeZoneInfo_TZif_ParsePosixDateTime_mD70E2D3536C187304D64FCCEDA1933A81C04B7F2(L_40, (&V_0), L_41, L_42, NULL); } IL_0099: { String_t** L_43 = ___standardName1; String_t* L_44 = *((String_t**)L_43); bool L_45; L_45 = String_IsNullOrEmpty_m54CF0907E7C4F3AFB2E796A13DC751ECBB8DB64A(L_44, NULL); if (L_45) { goto IL_00ad; } } { String_t** L_46 = ___standardOffset2; String_t* L_47 = *((String_t**)L_46); bool L_48; L_48 = String_IsNullOrEmpty_m54CF0907E7C4F3AFB2E796A13DC751ECBB8DB64A(L_47, NULL); return (bool)((((int32_t)L_48) == ((int32_t)0))? 1 : 0); } IL_00ad: { return (bool)0; } } // System.String System.TimeZoneInfo::TZif_ParsePosixName(System.String,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_TZif_ParsePosixName_m07D06D9BA63F479F887000F66FF6D53D544A58A6 (String_t* ___posixFormat0, int32_t* ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CTZif_ParsePosixNameU3Eb__34_0_m330F3DBBD8442E7C750C501FC7AD30AFA1E37C61_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CTZif_ParsePosixNameU3Eb__34_1_m2E30736B187F0AD2BC51690B3BF56EF7C3760993_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t G_B3_0 = 0; Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* G_B6_0 = NULL; int32_t* G_B6_1 = NULL; String_t* G_B6_2 = NULL; Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* G_B5_0 = NULL; int32_t* G_B5_1 = NULL; String_t* G_B5_2 = NULL; String_t* G_B9_0 = NULL; String_t* G_B7_0 = NULL; String_t* G_B8_0 = NULL; Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* G_B12_0 = NULL; int32_t* G_B12_1 = NULL; String_t* G_B12_2 = NULL; Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* G_B11_0 = NULL; int32_t* G_B11_1 = NULL; String_t* G_B11_2 = NULL; { int32_t* L_0 = ___index1; int32_t L_1 = *((int32_t*)L_0); String_t* L_2 = ___posixFormat0; NullCheck(L_2); int32_t L_3; L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_2, NULL); if ((((int32_t)L_1) >= ((int32_t)L_3))) { goto IL_0018; } } { String_t* L_4 = ___posixFormat0; int32_t* L_5 = ___index1; int32_t L_6 = *((int32_t*)L_5); NullCheck(L_4); Il2CppChar L_7; L_7 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_4, L_6, NULL); G_B3_0 = ((((int32_t)L_7) == ((int32_t)((int32_t)60)))? 1 : 0); goto IL_0019; } IL_0018: { G_B3_0 = 0; } IL_0019: { if (!G_B3_0) { goto IL_0064; } } { int32_t* L_8 = ___index1; int32_t* L_9 = ___index1; int32_t L_10 = *((int32_t*)L_9); *((int32_t*)L_8) = (int32_t)((int32_t)il2cpp_codegen_add(L_10, 1)); String_t* L_11 = ___posixFormat0; int32_t* L_12 = ___index1; il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var); Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* L_13 = ((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9__34_1_1; Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* L_14 = L_13; G_B5_0 = L_14; G_B5_1 = L_12; G_B5_2 = L_11; if (L_14) { G_B6_0 = L_14; G_B6_1 = L_12; G_B6_2 = L_11; goto IL_0042; } } { il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var); U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124* L_15 = ((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9_0; Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* L_16 = (Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F*)il2cpp_codegen_object_new(Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F_il2cpp_TypeInfo_var); NullCheck(L_16); Func_2__ctor_m86D272566839A59489924C367E316D2E516EC1F2(L_16, L_15, (intptr_t)((void*)U3CU3Ec_U3CTZif_ParsePosixNameU3Eb__34_1_m2E30736B187F0AD2BC51690B3BF56EF7C3760993_RuntimeMethod_var), NULL); Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* L_17 = L_16; ((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9__34_1_1 = L_17; Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9__34_1_1), (void*)L_17); G_B6_0 = L_17; G_B6_1 = G_B5_1; G_B6_2 = G_B5_2; } IL_0042: { il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); String_t* L_18; L_18 = TimeZoneInfo_TZif_ParsePosixString_m6D45D9F1A972031FF1311643C89BCCF08106F60B(G_B6_2, G_B6_1, G_B6_0, NULL); int32_t* L_19 = ___index1; int32_t L_20 = *((int32_t*)L_19); String_t* L_21 = ___posixFormat0; NullCheck(L_21); int32_t L_22; L_22 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_21, NULL); G_B7_0 = L_18; if ((((int32_t)L_20) >= ((int32_t)L_22))) { G_B9_0 = L_18; goto IL_0063; } } { String_t* L_23 = ___posixFormat0; int32_t* L_24 = ___index1; int32_t L_25 = *((int32_t*)L_24); NullCheck(L_23); Il2CppChar L_26; L_26 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_23, L_25, NULL); G_B8_0 = G_B7_0; if ((!(((uint32_t)L_26) == ((uint32_t)((int32_t)62))))) { G_B9_0 = G_B7_0; goto IL_0063; } } { int32_t* L_27 = ___index1; int32_t* L_28 = ___index1; int32_t L_29 = *((int32_t*)L_28); *((int32_t*)L_27) = (int32_t)((int32_t)il2cpp_codegen_add(L_29, 1)); G_B9_0 = G_B8_0; } IL_0063: { return G_B9_0; } IL_0064: { String_t* L_30 = ___posixFormat0; int32_t* L_31 = ___index1; il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var); Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* L_32 = ((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9__34_0_2; Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* L_33 = L_32; G_B11_0 = L_33; G_B11_1 = L_31; G_B11_2 = L_30; if (L_33) { G_B12_0 = L_33; G_B12_1 = L_31; G_B12_2 = L_30; goto IL_0085; } } { il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var); U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124* L_34 = ((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9_0; Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* L_35 = (Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F*)il2cpp_codegen_object_new(Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F_il2cpp_TypeInfo_var); NullCheck(L_35); Func_2__ctor_m86D272566839A59489924C367E316D2E516EC1F2(L_35, L_34, (intptr_t)((void*)U3CU3Ec_U3CTZif_ParsePosixNameU3Eb__34_0_m330F3DBBD8442E7C750C501FC7AD30AFA1E37C61_RuntimeMethod_var), NULL); Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* L_36 = L_35; ((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9__34_0_2 = L_36; Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9__34_0_2), (void*)L_36); G_B12_0 = L_36; G_B12_1 = G_B11_1; G_B12_2 = G_B11_2; } IL_0085: { il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); String_t* L_37; L_37 = TimeZoneInfo_TZif_ParsePosixString_m6D45D9F1A972031FF1311643C89BCCF08106F60B(G_B12_2, G_B12_1, G_B12_0, NULL); return L_37; } } // System.String System.TimeZoneInfo::TZif_ParsePosixOffset(System.String,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_TZif_ParsePosixOffset_mC8A3B2CF45DDC42BE6D0A414EF6A4168CC752BC9 (String_t* ___posixFormat0, int32_t* ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CTZif_ParsePosixOffsetU3Eb__35_0_m1DE392C6D99137B561ED15787E46906DFFF0DE97_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* G_B2_0 = NULL; int32_t* G_B2_1 = NULL; String_t* G_B2_2 = NULL; Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* G_B1_0 = NULL; int32_t* G_B1_1 = NULL; String_t* G_B1_2 = NULL; { String_t* L_0 = ___posixFormat0; int32_t* L_1 = ___index1; il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var); Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* L_2 = ((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9__35_0_3; Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* L_3 = L_2; G_B1_0 = L_3; G_B1_1 = L_1; G_B1_2 = L_0; if (L_3) { G_B2_0 = L_3; G_B2_1 = L_1; G_B2_2 = L_0; goto IL_0021; } } { il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var); U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124* L_4 = ((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9_0; Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* L_5 = (Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F*)il2cpp_codegen_object_new(Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F_il2cpp_TypeInfo_var); NullCheck(L_5); Func_2__ctor_m86D272566839A59489924C367E316D2E516EC1F2(L_5, L_4, (intptr_t)((void*)U3CU3Ec_U3CTZif_ParsePosixOffsetU3Eb__35_0_m1DE392C6D99137B561ED15787E46906DFFF0DE97_RuntimeMethod_var), NULL); Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* L_6 = L_5; ((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9__35_0_3 = L_6; Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9__35_0_3), (void*)L_6); G_B2_0 = L_6; G_B2_1 = G_B1_1; G_B2_2 = G_B1_2; } IL_0021: { il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); String_t* L_7; L_7 = TimeZoneInfo_TZif_ParsePosixString_m6D45D9F1A972031FF1311643C89BCCF08106F60B(G_B2_2, G_B2_1, G_B2_0, NULL); return L_7; } } // System.Void System.TimeZoneInfo::TZif_ParsePosixDateTime(System.String,System.Int32&,System.String&,System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo_TZif_ParsePosixDateTime_mD70E2D3536C187304D64FCCEDA1933A81C04B7F2 (String_t* ___posixFormat0, int32_t* ___index1, String_t** ___date2, String_t** ___time3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t** L_0 = ___time3; *((RuntimeObject**)L_0) = (RuntimeObject*)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_0, (void*)(RuntimeObject*)NULL); String_t** L_1 = ___date2; String_t* L_2 = ___posixFormat0; int32_t* L_3 = ___index1; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); String_t* L_4; L_4 = TimeZoneInfo_TZif_ParsePosixDate_m6AA9DA907258180AE2FF150B9E2662F5B756A4DF(L_2, L_3, NULL); *((RuntimeObject**)L_1) = (RuntimeObject*)L_4; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_1, (void*)(RuntimeObject*)L_4); int32_t* L_5 = ___index1; int32_t L_6 = *((int32_t*)L_5); String_t* L_7 = ___posixFormat0; NullCheck(L_7); int32_t L_8; L_8 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_7, NULL); if ((((int32_t)L_6) >= ((int32_t)L_8))) { goto IL_0031; } } { String_t* L_9 = ___posixFormat0; int32_t* L_10 = ___index1; int32_t L_11 = *((int32_t*)L_10); NullCheck(L_9); Il2CppChar L_12; L_12 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_9, L_11, NULL); if ((!(((uint32_t)L_12) == ((uint32_t)((int32_t)47))))) { goto IL_0031; } } { int32_t* L_13 = ___index1; int32_t* L_14 = ___index1; int32_t L_15 = *((int32_t*)L_14); *((int32_t*)L_13) = (int32_t)((int32_t)il2cpp_codegen_add(L_15, 1)); String_t** L_16 = ___time3; String_t* L_17 = ___posixFormat0; int32_t* L_18 = ___index1; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); String_t* L_19; L_19 = TimeZoneInfo_TZif_ParsePosixTime_m04F4633BA2FEC467E3F035595EA7885A297ADBFF(L_17, L_18, NULL); *((RuntimeObject**)L_16) = (RuntimeObject*)L_19; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_16, (void*)(RuntimeObject*)L_19); } IL_0031: { return; } } // System.String System.TimeZoneInfo::TZif_ParsePosixDate(System.String,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_TZif_ParsePosixDate_m6AA9DA907258180AE2FF150B9E2662F5B756A4DF (String_t* ___posixFormat0, int32_t* ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CTZif_ParsePosixDateU3Eb__37_0_mC6BED99C1A523F14CFD99D29790BB8D344FA9FA0_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* G_B2_0 = NULL; int32_t* G_B2_1 = NULL; String_t* G_B2_2 = NULL; Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* G_B1_0 = NULL; int32_t* G_B1_1 = NULL; String_t* G_B1_2 = NULL; { String_t* L_0 = ___posixFormat0; int32_t* L_1 = ___index1; il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var); Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* L_2 = ((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9__37_0_4; Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* L_3 = L_2; G_B1_0 = L_3; G_B1_1 = L_1; G_B1_2 = L_0; if (L_3) { G_B2_0 = L_3; G_B2_1 = L_1; G_B2_2 = L_0; goto IL_0021; } } { il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var); U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124* L_4 = ((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9_0; Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* L_5 = (Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F*)il2cpp_codegen_object_new(Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F_il2cpp_TypeInfo_var); NullCheck(L_5); Func_2__ctor_m86D272566839A59489924C367E316D2E516EC1F2(L_5, L_4, (intptr_t)((void*)U3CU3Ec_U3CTZif_ParsePosixDateU3Eb__37_0_mC6BED99C1A523F14CFD99D29790BB8D344FA9FA0_RuntimeMethod_var), NULL); Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* L_6 = L_5; ((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9__37_0_4 = L_6; Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9__37_0_4), (void*)L_6); G_B2_0 = L_6; G_B2_1 = G_B1_1; G_B2_2 = G_B1_2; } IL_0021: { il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); String_t* L_7; L_7 = TimeZoneInfo_TZif_ParsePosixString_m6D45D9F1A972031FF1311643C89BCCF08106F60B(G_B2_2, G_B2_1, G_B2_0, NULL); return L_7; } } // System.String System.TimeZoneInfo::TZif_ParsePosixTime(System.String,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_TZif_ParsePosixTime_m04F4633BA2FEC467E3F035595EA7885A297ADBFF (String_t* ___posixFormat0, int32_t* ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CTZif_ParsePosixTimeU3Eb__38_0_m3D4C85CFF7BF829F7EE1938E5DEF2C3CAA2DA7BA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* G_B2_0 = NULL; int32_t* G_B2_1 = NULL; String_t* G_B2_2 = NULL; Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* G_B1_0 = NULL; int32_t* G_B1_1 = NULL; String_t* G_B1_2 = NULL; { String_t* L_0 = ___posixFormat0; int32_t* L_1 = ___index1; il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var); Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* L_2 = ((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9__38_0_5; Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* L_3 = L_2; G_B1_0 = L_3; G_B1_1 = L_1; G_B1_2 = L_0; if (L_3) { G_B2_0 = L_3; G_B2_1 = L_1; G_B2_2 = L_0; goto IL_0021; } } { il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var); U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124* L_4 = ((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9_0; Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* L_5 = (Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F*)il2cpp_codegen_object_new(Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F_il2cpp_TypeInfo_var); NullCheck(L_5); Func_2__ctor_m86D272566839A59489924C367E316D2E516EC1F2(L_5, L_4, (intptr_t)((void*)U3CU3Ec_U3CTZif_ParsePosixTimeU3Eb__38_0_m3D4C85CFF7BF829F7EE1938E5DEF2C3CAA2DA7BA_RuntimeMethod_var), NULL); Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* L_6 = L_5; ((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9__38_0_5 = L_6; Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9__38_0_5), (void*)L_6); G_B2_0 = L_6; G_B2_1 = G_B1_1; G_B2_2 = G_B1_2; } IL_0021: { il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); String_t* L_7; L_7 = TimeZoneInfo_TZif_ParsePosixString_m6D45D9F1A972031FF1311643C89BCCF08106F60B(G_B2_2, G_B2_1, G_B2_0, NULL); return L_7; } } // System.String System.TimeZoneInfo::TZif_ParsePosixString(System.String,System.Int32&,System.Func`2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_TZif_ParsePosixString_m6D45D9F1A972031FF1311643C89BCCF08106F60B (String_t* ___posixFormat0, int32_t* ___index1, Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* ___breakCondition2, const RuntimeMethod* method) { int32_t V_0 = 0; Il2CppChar V_1 = 0x0; { int32_t* L_0 = ___index1; int32_t L_1 = *((int32_t*)L_0); V_0 = L_1; goto IL_001d; } IL_0005: { String_t* L_2 = ___posixFormat0; int32_t* L_3 = ___index1; int32_t L_4 = *((int32_t*)L_3); NullCheck(L_2); Il2CppChar L_5; L_5 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_2, L_4, NULL); V_1 = L_5; Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* L_6 = ___breakCondition2; Il2CppChar L_7 = V_1; NullCheck(L_6); bool L_8; L_8 = Func_2_Invoke_m4733F0A0FE136C9F8DCE4963455215585E8BE2CD_inline(L_6, L_7, NULL); if (L_8) { goto IL_0027; } } { int32_t* L_9 = ___index1; int32_t* L_10 = ___index1; int32_t L_11 = *((int32_t*)L_10); *((int32_t*)L_9) = (int32_t)((int32_t)il2cpp_codegen_add(L_11, 1)); } IL_001d: { int32_t* L_12 = ___index1; int32_t L_13 = *((int32_t*)L_12); String_t* L_14 = ___posixFormat0; NullCheck(L_14); int32_t L_15; L_15 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_14, NULL); if ((((int32_t)L_13) < ((int32_t)L_15))) { goto IL_0005; } } IL_0027: { String_t* L_16 = ___posixFormat0; int32_t L_17 = V_0; int32_t* L_18 = ___index1; int32_t L_19 = *((int32_t*)L_18); int32_t L_20 = V_0; NullCheck(L_16); String_t* L_21; L_21 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_16, L_17, ((int32_t)il2cpp_codegen_subtract(L_19, L_20)), NULL); return L_21; } } // System.String System.TimeZoneInfo::TZif_GetZoneAbbreviation(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_TZif_GetZoneAbbreviation_m012CB3384D9B825AE2BB1C153B4BDD1E8F9FCB82 (String_t* ___zoneAbbreviations0, int32_t ___index1, const RuntimeMethod* method) { int32_t V_0 = 0; { String_t* L_0 = ___zoneAbbreviations0; int32_t L_1 = ___index1; NullCheck(L_0); int32_t L_2; L_2 = String_IndexOf_m15B90A59047584420D227EE3A7EAC0C5EAF676F4(L_0, 0, L_1, NULL); V_0 = L_2; int32_t L_3 = V_0; if ((((int32_t)L_3) > ((int32_t)0))) { goto IL_0015; } } { String_t* L_4 = ___zoneAbbreviations0; int32_t L_5 = ___index1; NullCheck(L_4); String_t* L_6; L_6 = String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472(L_4, L_5, NULL); return L_6; } IL_0015: { String_t* L_7 = ___zoneAbbreviations0; int32_t L_8 = ___index1; int32_t L_9 = V_0; int32_t L_10 = ___index1; NullCheck(L_7); String_t* L_11; L_11 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_7, L_8, ((int32_t)il2cpp_codegen_subtract(L_9, L_10)), NULL); return L_11; } } // System.Int32 System.TimeZoneInfo::TZif_ToInt32(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TimeZoneInfo_TZif_ToInt32_m93D4A73EBB7F61C19E9E51FD7A2FE6ED91DB68AA (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___value0, int32_t ___startIndex1, const RuntimeMethod* method) { uint8_t* V_0 = NULL; uint8_t* V_1 = NULL; { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___value0; int32_t L_1 = ___startIndex1; NullCheck(L_0); V_1 = ((L_0)->GetAddressAt(static_cast(L_1))); uint8_t* L_2 = V_1; V_0 = (uint8_t*)((uintptr_t)L_2); uint8_t* L_3 = V_0; int32_t L_4 = *((uint8_t*)L_3); uint8_t* L_5 = V_0; int32_t L_6 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_5, 1))); uint8_t* L_7 = V_0; int32_t L_8 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_7, 2))); uint8_t* L_9 = V_0; int32_t L_10 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_9, 3))); return ((int32_t)(((int32_t)(((int32_t)(((int32_t)(L_4<<((int32_t)24)))|((int32_t)(L_6<<((int32_t)16)))))|((int32_t)(L_8<<8))))|L_10)); } } // System.Int64 System.TimeZoneInfo::TZif_ToInt64(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t TimeZoneInfo_TZif_ToInt64_m49A1A7BAB343B1FFC553987CE7CE67C9CA8BA618 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___value0, int32_t ___startIndex1, const RuntimeMethod* method) { uint8_t* V_0 = NULL; uint8_t* V_1 = NULL; int32_t V_2 = 0; { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___value0; int32_t L_1 = ___startIndex1; NullCheck(L_0); V_1 = ((L_0)->GetAddressAt(static_cast(L_1))); uint8_t* L_2 = V_1; V_0 = (uint8_t*)((uintptr_t)L_2); uint8_t* L_3 = V_0; int32_t L_4 = *((uint8_t*)L_3); uint8_t* L_5 = V_0; int32_t L_6 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_5, 1))); uint8_t* L_7 = V_0; int32_t L_8 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_7, 2))); uint8_t* L_9 = V_0; int32_t L_10 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_9, 3))); V_2 = ((int32_t)(((int32_t)(((int32_t)(((int32_t)(L_4<<((int32_t)24)))|((int32_t)(L_6<<((int32_t)16)))))|((int32_t)(L_8<<8))))|L_10)); uint8_t* L_11 = V_0; int32_t L_12 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_11, 4))); uint8_t* L_13 = V_0; int32_t L_14 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_13, 5))); uint8_t* L_15 = V_0; int32_t L_16 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_15, 6))); uint8_t* L_17 = V_0; int32_t L_18 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_17, 7))); int32_t L_19 = V_2; return ((int64_t)(((int64_t)(uint64_t)((uint32_t)((int32_t)(((int32_t)(((int32_t)(((int32_t)(L_12<<((int32_t)24)))|((int32_t)(L_14<<((int32_t)16)))))|((int32_t)(L_16<<8))))|L_18))))|((int64_t)(((int64_t)L_19)<<((int32_t)32))))); } } // System.Int64 System.TimeZoneInfo::TZif_ToUnixTime(System.Byte[],System.Int32,System.TimeZoneInfo/TZVersion) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t TimeZoneInfo_TZif_ToUnixTime_m0A7E48994CE805B06F6180A35DC6299BF1408B22 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___value0, int32_t ___startIndex1, uint8_t ___version2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { uint8_t L_0 = ___version2; if (L_0) { goto IL_000c; } } { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___value0; int32_t L_2 = ___startIndex1; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); int32_t L_3; L_3 = TimeZoneInfo_TZif_ToInt32_m93D4A73EBB7F61C19E9E51FD7A2FE6ED91DB68AA(L_1, L_2, NULL); return ((int64_t)L_3); } IL_000c: { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = ___value0; int32_t L_5 = ___startIndex1; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); int64_t L_6; L_6 = TimeZoneInfo_TZif_ToInt64_m49A1A7BAB343B1FFC553987CE7CE67C9CA8BA618(L_4, L_5, NULL); return L_6; } } // System.DateTime System.TimeZoneInfo::TZif_UnixTimeToDateTime(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D TimeZoneInfo_TZif_UnixTimeToDateTime_m8335F8736D23560BCA8D6FF2F8C9B6478C912785 (int64_t ___unixTime0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 V_0; memset((&V_0), 0, sizeof(V_0)); { int64_t L_0 = ___unixTime0; if ((((int64_t)L_0) < ((int64_t)((int64_t)-62135596800LL)))) { goto IL_002d; } } { int64_t L_1 = ___unixTime0; if ((((int64_t)L_1) > ((int64_t)((int64_t)253402300799LL)))) { goto IL_0027; } } { int64_t L_2 = ___unixTime0; il2cpp_codegen_runtime_class_init_inline(DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var); DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 L_3; L_3 = DateTimeOffset_FromUnixTimeSeconds_m6B1B34845B27417D9BB528A75D123A50FB5F75AC(L_2, NULL); V_0 = L_3; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_4; L_4 = DateTimeOffset_get_UtcDateTime_mE7EB39F361C89E1367CBC03C3410BA34F194DA40((&V_0), NULL); return L_4; } IL_0027: { il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_5 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MaxValue_33; return L_5; } IL_002d: { il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_6 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MinValue_32; return L_6; } } // System.Void System.TimeZoneInfo::TZif_ParseRaw(System.Byte[],System.TimeZoneInfo/TZifHead&,System.DateTime[]&,System.Byte[]&,System.TimeZoneInfo/TZifType[]&,System.String&,System.Boolean[]&,System.Boolean[]&,System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo_TZif_ParseRaw_mF15604A6DFAAE87C5D3E467430068ACBA59D18F4 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___data0, TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* ___t1, DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1** ___dts2, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** ___typeOfLocalTime3, TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98** ___transitionType4, String_t** ___zoneAbbreviations5, BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4** ___StandardTime6, BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4** ___GmtTime7, String_t** ___futureTransitionsPosixFormat8, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* V_2 = NULL; int32_t V_3 = 0; int64_t V_4 = 0; int32_t V_5 = 0; int32_t V_6 = 0; int32_t V_7 = 0; int32_t V_8 = 0; { DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1** L_0 = ___dts2; *((RuntimeObject**)L_0) = (RuntimeObject*)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_0, (void*)(RuntimeObject*)NULL); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** L_1 = ___typeOfLocalTime3; *((RuntimeObject**)L_1) = (RuntimeObject*)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_1, (void*)(RuntimeObject*)NULL); TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98** L_2 = ___transitionType4; *((RuntimeObject**)L_2) = (RuntimeObject*)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_2, (void*)(RuntimeObject*)NULL); String_t** L_3 = ___zoneAbbreviations5; String_t* L_4 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; *((RuntimeObject**)L_3) = (RuntimeObject*)L_4; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_3, (void*)(RuntimeObject*)L_4); BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4** L_5 = ___StandardTime6; *((RuntimeObject**)L_5) = (RuntimeObject*)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_5, (void*)(RuntimeObject*)NULL); BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4** L_6 = ___GmtTime7; *((RuntimeObject**)L_6) = (RuntimeObject*)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_6, (void*)(RuntimeObject*)NULL); String_t** L_7 = ___futureTransitionsPosixFormat8; *((RuntimeObject**)L_7) = (RuntimeObject*)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_7, (void*)(RuntimeObject*)NULL); V_0 = 0; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_8 = ___t1; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_9 = ___data0; int32_t L_10 = V_0; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852 L_11; memset((&L_11), 0, sizeof(L_11)); TZifHead__ctor_m329594E5E291363A0A5C24A32DEAF3A794F8F96A((&L_11), L_9, L_10, /*hidden argument*/NULL); *(TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852*)L_8 = L_11; int32_t L_12 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_12, ((int32_t)44))); V_1 = 4; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_13 = ___t1; uint8_t L_14 = L_13->___Version_1; if (!L_14) { goto IL_0095; } } { int32_t L_15 = V_0; int32_t L_16 = V_1; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_17 = ___t1; uint32_t L_18 = L_17->___TimeCount_5; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_19 = ___t1; uint32_t L_20 = L_19->___TimeCount_5; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_21 = ___t1; uint32_t L_22 = L_21->___TypeCount_6; int32_t L_23 = V_1; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_24 = ___t1; uint32_t L_25 = L_24->___LeapCount_4; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_26 = ___t1; uint32_t L_27 = L_26->___IsStdCount_3; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_28 = ___t1; uint32_t L_29 = L_28->___IsGmtCount_2; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_30 = ___t1; uint32_t L_31 = L_30->___CharCount_7; V_0 = ((int32_t)il2cpp_codegen_add(L_15, ((int32_t)((int64_t)il2cpp_codegen_add(((int64_t)il2cpp_codegen_add(((int64_t)il2cpp_codegen_add(((int64_t)il2cpp_codegen_add(((int64_t)il2cpp_codegen_add(((int64_t)il2cpp_codegen_add(((int64_t)il2cpp_codegen_multiply(((int64_t)L_16), ((int64_t)(uint64_t)L_18))), ((int64_t)(uint64_t)L_20))), ((int64_t)(uint64_t)((uint32_t)((int32_t)il2cpp_codegen_multiply(6, (int32_t)L_22)))))), ((int64_t)il2cpp_codegen_multiply(((int64_t)((int32_t)il2cpp_codegen_add(L_23, 4))), ((int64_t)(uint64_t)L_25))))), ((int64_t)(uint64_t)L_27))), ((int64_t)(uint64_t)L_29))), ((int64_t)(uint64_t)L_31)))))); TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_32 = ___t1; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_33 = ___data0; int32_t L_34 = V_0; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852 L_35; memset((&L_35), 0, sizeof(L_35)); TZifHead__ctor_m329594E5E291363A0A5C24A32DEAF3A794F8F96A((&L_35), L_33, L_34, /*hidden argument*/NULL); *(TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852*)L_32 = L_35; int32_t L_36 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_36, ((int32_t)44))); V_1 = 8; } IL_0095: { DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1** L_37 = ___dts2; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_38 = ___t1; uint32_t L_39 = L_38->___TimeCount_5; DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1* L_40 = (DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1*)(DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1*)SZArrayNew(DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1_il2cpp_TypeInfo_var, (uint32_t)L_39); *((RuntimeObject**)L_37) = (RuntimeObject*)L_40; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_37, (void*)(RuntimeObject*)L_40); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** L_41 = ___typeOfLocalTime3; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_42 = ___t1; uint32_t L_43 = L_42->___TimeCount_5; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_44 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)L_43); *((RuntimeObject**)L_41) = (RuntimeObject*)L_44; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_41, (void*)(RuntimeObject*)L_44); TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98** L_45 = ___transitionType4; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_46 = ___t1; uint32_t L_47 = L_46->___TypeCount_6; TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* L_48 = (TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98*)(TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98*)SZArrayNew(TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98_il2cpp_TypeInfo_var, (uint32_t)L_47); *((RuntimeObject**)L_45) = (RuntimeObject*)L_48; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_45, (void*)(RuntimeObject*)L_48); String_t** L_49 = ___zoneAbbreviations5; String_t* L_50 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; *((RuntimeObject**)L_49) = (RuntimeObject*)L_50; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_49, (void*)(RuntimeObject*)L_50); BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4** L_51 = ___StandardTime6; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_52 = ___t1; uint32_t L_53 = L_52->___TypeCount_6; BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_54 = (BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*)(BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*)SZArrayNew(BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4_il2cpp_TypeInfo_var, (uint32_t)L_53); *((RuntimeObject**)L_51) = (RuntimeObject*)L_54; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_51, (void*)(RuntimeObject*)L_54); BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4** L_55 = ___GmtTime7; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_56 = ___t1; uint32_t L_57 = L_56->___TypeCount_6; BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_58 = (BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*)(BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*)SZArrayNew(BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4_il2cpp_TypeInfo_var, (uint32_t)L_57); *((RuntimeObject**)L_55) = (RuntimeObject*)L_58; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_55, (void*)(RuntimeObject*)L_58); V_3 = 0; goto IL_010b; } IL_00e5: { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_59 = ___data0; int32_t L_60 = V_0; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_61 = ___t1; uint8_t L_62 = L_61->___Version_1; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); int64_t L_63; L_63 = TimeZoneInfo_TZif_ToUnixTime_m0A7E48994CE805B06F6180A35DC6299BF1408B22(L_59, L_60, L_62, NULL); V_4 = L_63; DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1** L_64 = ___dts2; DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1* L_65 = *((DateTimeU5BU5D_t8F9285FE729A200A620421ED546CFB3DCF386EA1**)L_64); int32_t L_66 = V_3; int64_t L_67 = V_4; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_68; L_68 = TimeZoneInfo_TZif_UnixTimeToDateTime_m8335F8736D23560BCA8D6FF2F8C9B6478C912785(L_67, NULL); NullCheck(L_65); (L_65)->SetAt(static_cast(L_66), (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D)L_68); int32_t L_69 = V_0; int32_t L_70 = V_1; V_0 = ((int32_t)il2cpp_codegen_add(L_69, L_70)); int32_t L_71 = V_3; V_3 = ((int32_t)il2cpp_codegen_add(L_71, 1)); } IL_010b: { int32_t L_72 = V_3; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_73 = ___t1; uint32_t L_74 = L_73->___TimeCount_5; if ((((int64_t)((int64_t)L_72)) < ((int64_t)((int64_t)(uint64_t)L_74)))) { goto IL_00e5; } } { V_5 = 0; goto IL_012d; } IL_011b: { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031** L_75 = ___typeOfLocalTime3; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_76 = *((ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031**)L_75); int32_t L_77 = V_5; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_78 = ___data0; int32_t L_79 = V_0; NullCheck(L_78); int32_t L_80 = L_79; uint8_t L_81 = (L_78)->GetAt(static_cast(L_80)); NullCheck(L_76); (L_76)->SetAt(static_cast(L_77), (uint8_t)L_81); int32_t L_82 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_82, 1)); int32_t L_83 = V_5; V_5 = ((int32_t)il2cpp_codegen_add(L_83, 1)); } IL_012d: { int32_t L_84 = V_5; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_85 = ___t1; uint32_t L_86 = L_85->___TimeCount_5; if ((((int64_t)((int64_t)L_84)) < ((int64_t)((int64_t)(uint64_t)L_86)))) { goto IL_011b; } } { V_6 = 0; goto IL_0159; } IL_013e: { TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98** L_87 = ___transitionType4; TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98* L_88 = *((TZifTypeU5BU5D_tE399ACB8300400499E8949CFB73AE9BA3F21CD98**)L_87); int32_t L_89 = V_6; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_90 = ___data0; int32_t L_91 = V_0; TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4 L_92; memset((&L_92), 0, sizeof(L_92)); TZifType__ctor_m078CAF246330F151602C5CF9582E315296C4F179((&L_92), L_90, L_91, /*hidden argument*/NULL); NullCheck(L_88); (L_88)->SetAt(static_cast(L_89), (TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4)L_92); int32_t L_93 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_93, 6)); int32_t L_94 = V_6; V_6 = ((int32_t)il2cpp_codegen_add(L_94, 1)); } IL_0159: { int32_t L_95 = V_6; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_96 = ___t1; uint32_t L_97 = L_96->___TypeCount_6; if ((((int64_t)((int64_t)L_95)) < ((int64_t)((int64_t)(uint64_t)L_97)))) { goto IL_013e; } } { Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_98; L_98 = Encoding_get_UTF8_m9700ADA8E0F244002B2A89B483F1B2133B8FE336(NULL); V_2 = L_98; String_t** L_99 = ___zoneAbbreviations5; Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_100 = V_2; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_101 = ___data0; int32_t L_102 = V_0; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_103 = ___t1; uint32_t L_104 = L_103->___CharCount_7; NullCheck(L_100); String_t* L_105; L_105 = VirtualFuncInvoker3< String_t*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(36 /* System.String System.Text.Encoding::GetString(System.Byte[],System.Int32,System.Int32) */, L_100, L_101, L_102, L_104); *((RuntimeObject**)L_99) = (RuntimeObject*)L_105; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_99, (void*)(RuntimeObject*)L_105); int32_t L_106 = V_0; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_107 = ___t1; uint32_t L_108 = L_107->___CharCount_7; V_0 = ((int32_t)il2cpp_codegen_add(L_106, (int32_t)L_108)); int32_t L_109 = V_0; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_110 = ___t1; uint32_t L_111 = L_110->___LeapCount_4; int32_t L_112 = V_1; V_0 = ((int32_t)il2cpp_codegen_add(L_109, ((int32_t)((int64_t)il2cpp_codegen_multiply(((int64_t)(uint64_t)L_111), ((int64_t)((int32_t)il2cpp_codegen_add(L_112, 4)))))))); V_7 = 0; goto IL_01b0; } IL_019a: { BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4** L_113 = ___StandardTime6; BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_114 = *((BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4**)L_113); int32_t L_115 = V_7; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_116 = ___data0; int32_t L_117 = V_0; int32_t L_118 = L_117; V_0 = ((int32_t)il2cpp_codegen_add(L_118, 1)); NullCheck(L_116); int32_t L_119 = L_118; uint8_t L_120 = (L_116)->GetAt(static_cast(L_119)); NullCheck(L_114); (L_114)->SetAt(static_cast(L_115), (bool)((!(((uint32_t)L_120) <= ((uint32_t)0)))? 1 : 0)); int32_t L_121 = V_7; V_7 = ((int32_t)il2cpp_codegen_add(L_121, 1)); } IL_01b0: { int32_t L_122 = V_7; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_123 = ___t1; uint32_t L_124 = L_123->___IsStdCount_3; if ((((int64_t)((int64_t)L_122)) >= ((int64_t)((int64_t)(uint64_t)L_124)))) { goto IL_01ce; } } { int32_t L_125 = V_7; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_126 = ___t1; uint32_t L_127 = L_126->___TypeCount_6; if ((((int64_t)((int64_t)L_125)) >= ((int64_t)((int64_t)(uint64_t)L_127)))) { goto IL_01ce; } } { int32_t L_128 = V_0; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_129 = ___data0; NullCheck(L_129); if ((((int32_t)L_128) < ((int32_t)((int32_t)(((RuntimeArray*)L_129)->max_length))))) { goto IL_019a; } } IL_01ce: { V_8 = 0; goto IL_01e9; } IL_01d3: { BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4** L_130 = ___GmtTime7; BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_131 = *((BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4**)L_130); int32_t L_132 = V_8; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_133 = ___data0; int32_t L_134 = V_0; int32_t L_135 = L_134; V_0 = ((int32_t)il2cpp_codegen_add(L_135, 1)); NullCheck(L_133); int32_t L_136 = L_135; uint8_t L_137 = (L_133)->GetAt(static_cast(L_136)); NullCheck(L_131); (L_131)->SetAt(static_cast(L_132), (bool)((!(((uint32_t)L_137) <= ((uint32_t)0)))? 1 : 0)); int32_t L_138 = V_8; V_8 = ((int32_t)il2cpp_codegen_add(L_138, 1)); } IL_01e9: { int32_t L_139 = V_8; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_140 = ___t1; uint32_t L_141 = L_140->___IsGmtCount_2; if ((((int64_t)((int64_t)L_139)) >= ((int64_t)((int64_t)(uint64_t)L_141)))) { goto IL_0207; } } { int32_t L_142 = V_8; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_143 = ___t1; uint32_t L_144 = L_143->___TypeCount_6; if ((((int64_t)((int64_t)L_142)) >= ((int64_t)((int64_t)(uint64_t)L_144)))) { goto IL_0207; } } { int32_t L_145 = V_0; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_146 = ___data0; NullCheck(L_146); if ((((int32_t)L_145) < ((int32_t)((int32_t)(((RuntimeArray*)L_146)->max_length))))) { goto IL_01d3; } } IL_0207: { TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* L_147 = ___t1; uint8_t L_148 = L_147->___Version_1; if (!L_148) { goto IL_0237; } } { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_149 = ___data0; int32_t L_150 = V_0; int32_t L_151 = L_150; V_0 = ((int32_t)il2cpp_codegen_add(L_151, 1)); NullCheck(L_149); int32_t L_152 = L_151; uint8_t L_153 = (L_149)->GetAt(static_cast(L_152)); if ((!(((uint32_t)L_153) == ((uint32_t)((int32_t)10))))) { goto IL_0237; } } { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_154 = ___data0; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_155 = ___data0; NullCheck(L_155); NullCheck(L_154); int32_t L_156 = ((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_155)->max_length)), 1)); uint8_t L_157 = (L_154)->GetAt(static_cast(L_156)); if ((!(((uint32_t)L_157) == ((uint32_t)((int32_t)10))))) { goto IL_0237; } } { String_t** L_158 = ___futureTransitionsPosixFormat8; Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_159 = V_2; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_160 = ___data0; int32_t L_161 = V_0; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_162 = ___data0; NullCheck(L_162); int32_t L_163 = V_0; NullCheck(L_159); String_t* L_164; L_164 = VirtualFuncInvoker3< String_t*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(36 /* System.String System.Text.Encoding::GetString(System.Byte[],System.Int32,System.Int32) */, L_159, L_160, L_161, ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_162)->max_length)), L_163)), 1))); *((RuntimeObject**)L_158) = (RuntimeObject*)L_164; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_158, (void*)(RuntimeObject*)L_164); } IL_0237: { return; } } // System.String System.TimeZoneInfo::get_DisplayName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_get_DisplayName_m11B9CDA1B2BCE55E313D7D06D43DF635C7C87A79 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } String_t* G_B2_0 = NULL; String_t* G_B1_0 = NULL; { String_t* L_0 = __this->____displayName_1; String_t* L_1 = L_0; G_B1_0 = L_1; if (L_1) { G_B2_0 = L_1; goto IL_000f; } } { String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; G_B2_0 = L_2; } IL_000f: { return G_B2_0; } } // System.String System.TimeZoneInfo::get_StandardName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_get_StandardName_mE9A075A18964E355D7AFF3A85C3C8EEDBB464A49 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } String_t* G_B2_0 = NULL; String_t* G_B1_0 = NULL; { String_t* L_0 = __this->____standardDisplayName_2; String_t* L_1 = L_0; G_B1_0 = L_1; if (L_1) { G_B2_0 = L_1; goto IL_000f; } } { String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; G_B2_0 = L_2; } IL_000f: { return G_B2_0; } } // System.String System.TimeZoneInfo::get_DaylightName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_get_DaylightName_m02E7E08179ACFB3544A0AE8E9C8B0040E8422764 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } String_t* G_B2_0 = NULL; String_t* G_B1_0 = NULL; { String_t* L_0 = __this->____daylightDisplayName_3; String_t* L_1 = L_0; G_B1_0 = L_1; if (L_1) { G_B2_0 = L_1; goto IL_000f; } } { String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; G_B2_0 = L_2; } IL_000f: { return G_B2_0; } } // System.TimeSpan System.TimeZoneInfo::get_BaseUtcOffset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_get_BaseUtcOffset_m285A2D1E313B50B51A13F499192CDCEDBC702AE3 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, const RuntimeMethod* method) { { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_0 = __this->____baseUtcOffset_4; return L_0; } } // System.TimeZoneInfo/AdjustmentRule System.TimeZoneInfo::GetPreviousAdjustmentRule(System.TimeZoneInfo/AdjustmentRule,System.Nullable`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* TimeZoneInfo_GetPreviousAdjustmentRule_m9F74F6192D83D4ABDD55587AA045AE3B3FB7ABB3 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___rule0, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___ruleIndex1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* V_0 = NULL; int32_t V_1 = 0; { bool L_0; L_0 = Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_inline((&___ruleIndex1), Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_RuntimeMethod_var); if (!L_0) { goto IL_0035; } } { int32_t L_1; L_1 = Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA((&___ruleIndex1), Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var); if ((((int32_t)0) >= ((int32_t)L_1))) { goto IL_0035; } } { int32_t L_2; L_2 = Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA((&___ruleIndex1), Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var); AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_3 = __this->____adjustmentRules_6; NullCheck(L_3); if ((((int32_t)L_2) >= ((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length))))) { goto IL_0035; } } { AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_4 = __this->____adjustmentRules_6; int32_t L_5; L_5 = Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA((&___ruleIndex1), Nullable_1_get_Value_m0DF3B826A745419D26A168689AEB4BE6F8698ECA_RuntimeMethod_var); NullCheck(L_4); int32_t L_6 = ((int32_t)il2cpp_codegen_subtract(L_5, 1)); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_7 = (L_4)->GetAt(static_cast(L_6)); return L_7; } IL_0035: { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_8 = ___rule0; V_0 = L_8; V_1 = 1; goto IL_0057; } IL_003b: { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_9 = ___rule0; AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_10 = __this->____adjustmentRules_6; int32_t L_11 = V_1; NullCheck(L_10); int32_t L_12 = L_11; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_13 = (L_10)->GetAt(static_cast(L_12)); if ((!(((RuntimeObject*)(AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07*)L_9) == ((RuntimeObject*)(AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07*)L_13)))) { goto IL_0053; } } { AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_14 = __this->____adjustmentRules_6; int32_t L_15 = V_1; NullCheck(L_14); int32_t L_16 = ((int32_t)il2cpp_codegen_subtract(L_15, 1)); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_17 = (L_14)->GetAt(static_cast(L_16)); V_0 = L_17; goto IL_0062; } IL_0053: { int32_t L_18 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_18, 1)); } IL_0057: { int32_t L_19 = V_1; AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_20 = __this->____adjustmentRules_6; NullCheck(L_20); if ((((int32_t)L_19) < ((int32_t)((int32_t)(((RuntimeArray*)L_20)->max_length))))) { goto IL_003b; } } IL_0062: { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_21 = V_0; return L_21; } } // System.TimeSpan System.TimeZoneInfo::GetUtcOffset(System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_GetUtcOffset_mFAA1957ED9222C7526A197E6FF1AE0D05B46EDB0 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateTime0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = ___dateTime0; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* L_1 = ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___s_cachedData_8; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_2; L_2 = TimeZoneInfo_GetUtcOffset_m83C48C0C8A92AC5D8FBEF08B5E3DEF64FA191B69(__this, L_0, 2, L_1, NULL); return L_2; } } // System.TimeSpan System.TimeZoneInfo::GetLocalUtcOffset(System.DateTime,System.TimeZoneInfoOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_GetLocalUtcOffset_m9F9CD0276FC458225F33C992E8B4CD6B3C81E0CC (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateTime0, int32_t ___flags1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* V_0 = NULL; { il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* L_0 = ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___s_cachedData_8; V_0 = L_0; CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* L_1 = V_0; NullCheck(L_1); TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_2; L_2 = CachedData_get_Local_mBD5BE85DE59BDDEC2CEE51EA6882BA57C70D6392(L_1, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_3 = ___dateTime0; int32_t L_4 = ___flags1; CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* L_5 = V_0; NullCheck(L_2); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_6; L_6 = TimeZoneInfo_GetUtcOffset_m83C48C0C8A92AC5D8FBEF08B5E3DEF64FA191B69(L_2, L_3, L_4, L_5, NULL); return L_6; } } // System.TimeSpan System.TimeZoneInfo::GetUtcOffset(System.DateTime,System.TimeZoneInfoOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_GetUtcOffset_m0BDDBF392737305C4A4AA517DD3CB0DA40C7D375 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateTime0, int32_t ___flags1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = ___dateTime0; int32_t L_1 = ___flags1; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* L_2 = ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___s_cachedData_8; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_3; L_3 = TimeZoneInfo_GetUtcOffset_m83C48C0C8A92AC5D8FBEF08B5E3DEF64FA191B69(__this, L_0, L_1, L_2, NULL); return L_3; } } // System.TimeSpan System.TimeZoneInfo::GetUtcOffset(System.DateTime,System.TimeZoneInfoOptions,System.TimeZoneInfo/CachedData) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_GetUtcOffset_m83C48C0C8A92AC5D8FBEF08B5E3DEF64FA191B69 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateTime0, int32_t ___flags1, CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* ___cachedData2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0; L_0 = DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993((&___dateTime0), NULL); if ((!(((uint32_t)L_0) == ((uint32_t)2)))) { goto IL_002d; } } { CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* L_1 = ___cachedData2; NullCheck(L_1); int32_t L_2; L_2 = CachedData_GetCorrespondingKind_m7BA6947269257DF9A5B992A820E4C80E895DC86E(L_1, __this, NULL); if ((((int32_t)L_2) == ((int32_t)2))) { goto IL_0050; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_3 = ___dateTime0; CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* L_4 = ___cachedData2; NullCheck(L_4); TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_5; L_5 = CachedData_get_Local_mBD5BE85DE59BDDEC2CEE51EA6882BA57C70D6392(L_4, NULL); il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_6 = ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___s_utcTimeZone_7; int32_t L_7 = ___flags1; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_8; L_8 = TimeZoneInfo_ConvertTime_m3F2FB9B76E60906E47D367CEC3FFECB2BD2C2EFD(L_3, L_5, L_6, L_7, NULL); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_9; L_9 = TimeZoneInfo_GetUtcOffsetFromUtc_m08FA9FF65B63CBC79D89AF11551D992499821260(L_8, __this, NULL); return L_9; } IL_002d: { int32_t L_10; L_10 = DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993((&___dateTime0), NULL); if ((!(((uint32_t)L_10) == ((uint32_t)1)))) { goto IL_0050; } } { CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* L_11 = ___cachedData2; NullCheck(L_11); int32_t L_12; L_12 = CachedData_GetCorrespondingKind_m7BA6947269257DF9A5B992A820E4C80E895DC86E(L_11, __this, NULL); if ((!(((uint32_t)L_12) == ((uint32_t)1)))) { goto IL_0048; } } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_13 = __this->____baseUtcOffset_4; return L_13; } IL_0048: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_14 = ___dateTime0; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_15; L_15 = TimeZoneInfo_GetUtcOffsetFromUtc_m08FA9FF65B63CBC79D89AF11551D992499821260(L_14, __this, NULL); return L_15; } IL_0050: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_16 = ___dateTime0; int32_t L_17 = ___flags1; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_18; L_18 = TimeZoneInfo_GetUtcOffset_m3741D53BA21882EBC2C804CB7B9145CD12171C43(L_16, __this, L_17, NULL); return L_18; } } // System.DateTime System.TimeZoneInfo::ConvertTime(System.DateTime,System.TimeZoneInfo,System.TimeZoneInfo,System.TimeZoneInfoOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D TimeZoneInfo_ConvertTime_m3F2FB9B76E60906E47D367CEC3FFECB2BD2C2EFD (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateTime0, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___sourceTimeZone1, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___destinationTimeZone2, int32_t ___flags3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = ___dateTime0; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_1 = ___sourceTimeZone1; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_2 = ___destinationTimeZone2; int32_t L_3 = ___flags3; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* L_4 = ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___s_cachedData_8; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_5; L_5 = TimeZoneInfo_ConvertTime_mC00F8C764885B2F8061BAA840F9E36D04948060F(L_0, L_1, L_2, L_3, L_4, NULL); return L_5; } } // System.DateTime System.TimeZoneInfo::ConvertTime(System.DateTime,System.TimeZoneInfo,System.TimeZoneInfo,System.TimeZoneInfoOptions,System.TimeZoneInfo/CachedData) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D TimeZoneInfo_ConvertTime_mC00F8C764885B2F8061BAA840F9E36D04948060F (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateTime0, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___sourceTimeZone1, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___destinationTimeZone2, int32_t ___flags3, CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* ___cachedData4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 V_1; memset((&V_1), 0, sizeof(V_1)); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* V_2 = NULL; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_3; memset((&V_3), 0, sizeof(V_3)); int32_t V_4 = 0; bool V_5 = false; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_6; memset((&V_6), 0, sizeof(V_6)); bool V_7 = false; DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 V_8; memset((&V_8), 0, sizeof(V_8)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A G_B15_0; memset((&G_B15_0), 0, sizeof(G_B15_0)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A G_B14_0; memset((&G_B14_0), 0, sizeof(G_B14_0)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A G_B16_0; memset((&G_B16_0), 0, sizeof(G_B16_0)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A G_B16_1; memset((&G_B16_1), 0, sizeof(G_B16_1)); { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_0 = ___sourceTimeZone1; 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))); NullCheck(L_1); ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6B509C55C6A5F6BAE3FB3BB16126FD45B8B9B163)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeZoneInfo_ConvertTime_mC00F8C764885B2F8061BAA840F9E36D04948060F_RuntimeMethod_var))); } IL_000e: { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_2 = ___destinationTimeZone2; if (L_2) { goto IL_001c; } } { ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_3 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var))); NullCheck(L_3); ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral14BA113F909A778600AFFC621877E1CDD109444A)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeZoneInfo_ConvertTime_mC00F8C764885B2F8061BAA840F9E36D04948060F_RuntimeMethod_var))); } IL_001c: { CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* L_4 = ___cachedData4; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_5 = ___sourceTimeZone1; NullCheck(L_4); int32_t L_6; L_6 = CachedData_GetCorrespondingKind_m7BA6947269257DF9A5B992A820E4C80E895DC86E(L_4, L_5, NULL); V_0 = L_6; int32_t L_7 = ___flags3; if (((int32_t)((int32_t)L_7&2))) { goto IL_004d; } } { int32_t L_8; L_8 = DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993((&___dateTime0), NULL); if (!L_8) { goto IL_004d; } } { int32_t L_9; L_9 = DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993((&___dateTime0), NULL); int32_t L_10 = V_0; if ((((int32_t)L_9) == ((int32_t)L_10))) { goto IL_004d; } } { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_11 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_11); ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_11, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA17989F20B9C34D562A6D393FB4B7703C2FF6069)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6B509C55C6A5F6BAE3FB3BB16126FD45B8B9B163)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeZoneInfo_ConvertTime_mC00F8C764885B2F8061BAA840F9E36D04948060F_RuntimeMethod_var))); } IL_004d: { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_12 = ___sourceTimeZone1; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_13 = ___dateTime0; NullCheck(L_12); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_14; L_14 = TimeZoneInfo_GetAdjustmentRuleForTime_mDFC301B0D8E40FC4212536302A370F137239ADAB(L_12, L_13, (&V_1), NULL); V_2 = L_14; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_15 = ___sourceTimeZone1; NullCheck(L_15); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_16; L_16 = TimeZoneInfo_get_BaseUtcOffset_m285A2D1E313B50B51A13F499192CDCEDBC702AE3_inline(L_15, NULL); V_3 = L_16; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_17 = V_2; if (!L_17) { goto IL_00ce; } } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_18 = V_3; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_19 = V_2; NullCheck(L_19); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_20; L_20 = AdjustmentRule_get_BaseUtcOffsetDelta_m0A089D2D9C6A8C6D4460BE4403DDE16FD0D97075_inline(L_19, NULL); il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_21; L_21 = TimeSpan_op_Addition_m4CA781FA121EB39944AE59C6BDD9304C42E74DFB(L_18, L_20, NULL); V_3 = L_21; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_22 = V_2; NullCheck(L_22); bool L_23; L_23 = AdjustmentRule_get_HasDaylightSaving_m3A74F6D064246B8CF21908A39055325FBE9DA73F(L_22, NULL); if (!L_23) { goto IL_00ce; } } { V_7 = (bool)0; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_24 = ___sourceTimeZone1; int32_t L_25; L_25 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138((&___dateTime0), NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_26 = V_2; Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_27 = V_1; NullCheck(L_24); DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_28; L_28 = TimeZoneInfo_GetDaylightTime_m85B0522E746DC6A8C5052F613BEA936BF329B7AD(L_24, L_25, L_26, L_27, NULL); V_8 = L_28; int32_t L_29 = ___flags3; if (((int32_t)((int32_t)L_29&2))) { goto IL_00aa; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_30 = ___dateTime0; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_31 = V_2; DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_32 = V_8; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); bool L_33; L_33 = TimeZoneInfo_GetIsInvalidTime_mF07394DEEBAAF33C8AC0DB10EE1D5E68DA99BD79(L_30, L_31, L_32, NULL); if (!L_33) { goto IL_00aa; } } { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_34 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_34); ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_34, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1C0C9FCD992D47F7F8139E8C6E8743A057F3D0A8)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5081C2BB000D6FA0C2CDA4A8B7ED516A31C70DC6)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_34, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeZoneInfo_ConvertTime_mC00F8C764885B2F8061BAA840F9E36D04948060F_RuntimeMethod_var))); } IL_00aa: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_35 = ___dateTime0; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_36 = V_2; DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_37 = V_8; int32_t L_38 = ___flags3; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); bool L_39; L_39 = TimeZoneInfo_GetIsDaylightSavings_mB03A7532D229FDC74C3A720C3918C57E3CDB9C0A(L_35, L_36, L_37, L_38, NULL); V_7 = L_39; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_40 = V_3; bool L_41 = V_7; G_B14_0 = L_40; if (L_41) { G_B15_0 = L_40; goto IL_00c2; } } { il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_42 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; G_B16_0 = L_42; G_B16_1 = G_B14_0; goto IL_00c8; } IL_00c2: { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_43 = V_2; NullCheck(L_43); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_44; L_44 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(L_43, NULL); G_B16_0 = L_44; G_B16_1 = G_B15_0; } IL_00c8: { il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_45; L_45 = TimeSpan_op_Addition_m4CA781FA121EB39944AE59C6BDD9304C42E74DFB(G_B16_1, G_B16_0, NULL); V_3 = L_45; } IL_00ce: { CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* L_46 = ___cachedData4; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_47 = ___destinationTimeZone2; NullCheck(L_46); int32_t L_48; L_48 = CachedData_GetCorrespondingKind_m7BA6947269257DF9A5B992A820E4C80E895DC86E(L_46, L_47, NULL); V_4 = L_48; int32_t L_49; L_49 = DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993((&___dateTime0), NULL); if (!L_49) { goto IL_00eb; } } { int32_t L_50 = V_0; if (!L_50) { goto IL_00eb; } } { int32_t L_51 = V_0; int32_t L_52 = V_4; if ((!(((uint32_t)L_51) == ((uint32_t)L_52)))) { goto IL_00eb; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_53 = ___dateTime0; return L_53; } IL_00eb: { int64_t L_54; L_54 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6((&___dateTime0), NULL); int64_t L_55; L_55 = TimeSpan_get_Ticks_mC50131E57621F29FACC53B3241432ABB874FA1B5_inline((&V_3), NULL); TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_56 = ___destinationTimeZone2; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_57; L_57 = TimeZoneInfo_ConvertUtcToTimeZone_m43C4BE693F13D1D7E5357326A37628C869D6E3F7(((int64_t)il2cpp_codegen_subtract(L_54, L_55)), L_56, (&V_5), NULL); V_6 = L_57; int32_t L_58 = V_4; if ((!(((uint32_t)L_58) == ((uint32_t)2)))) { goto IL_0119; } } { int64_t L_59; L_59 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6((&V_6), NULL); bool L_60 = V_5; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_61; memset((&L_61), 0, sizeof(L_61)); DateTime__ctor_m8CFD20DDCCB14AB28392A047FC4EE3F11929B8F2((&L_61), L_59, 2, L_60, /*hidden argument*/NULL); return L_61; } IL_0119: { int64_t L_62; L_62 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6((&V_6), NULL); int32_t L_63 = V_4; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_64; memset((&L_64), 0, sizeof(L_64)); DateTime__ctor_mF724D343E82431D326EF70E1A31B3B3C4295AFFE((&L_64), L_62, L_63, /*hidden argument*/NULL); return L_64; } } // System.DateTime System.TimeZoneInfo::ConvertTimeToUtc(System.DateTime,System.TimeZoneInfoOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D TimeZoneInfo_ConvertTimeToUtc_m2C20D00BA24D082A2EA7A3C648C1A2952305E979 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateTime0, int32_t ___flags1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* V_0 = NULL; { int32_t L_0; L_0 = DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993((&___dateTime0), NULL); if ((!(((uint32_t)L_0) == ((uint32_t)1)))) { goto IL_000c; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_1 = ___dateTime0; return L_1; } IL_000c: { il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* L_2 = ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___s_cachedData_8; V_0 = L_2; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_3 = ___dateTime0; CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* L_4 = V_0; NullCheck(L_4); TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_5; L_5 = CachedData_get_Local_mBD5BE85DE59BDDEC2CEE51EA6882BA57C70D6392(L_4, NULL); TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_6 = ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___s_utcTimeZone_7; int32_t L_7 = ___flags1; CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* L_8 = V_0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_9; L_9 = TimeZoneInfo_ConvertTime_mC00F8C764885B2F8061BAA840F9E36D04948060F(L_3, L_5, L_6, L_7, L_8, NULL); return L_9; } } // System.Boolean System.TimeZoneInfo::Equals(System.TimeZoneInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_Equals_m986E0F7F5DF0E9FFE14F6D56BCE8742DE1C5A873 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___other0, const RuntimeMethod* method) { { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_0 = ___other0; if (!L_0) { goto IL_001f; } } { String_t* L_1 = __this->____id_0; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_2 = ___other0; NullCheck(L_2); String_t* L_3 = L_2->____id_0; bool L_4; L_4 = String_Equals_m80124ECC809968E69F952E2A49EBC03F81A23E43(L_1, L_3, 5, NULL); if (!L_4) { goto IL_001f; } } { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_5 = ___other0; bool L_6; L_6 = TimeZoneInfo_HasSameRules_m924B2C9A9A701D8388C5B8877F9BC6D5C4BF1DBE(__this, L_5, NULL); return L_6; } IL_001f: { return (bool)0; } } // System.Boolean System.TimeZoneInfo::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_Equals_mCF6AE9E7BB04906CD262DBC4646F3A9E49E7ACD1 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, RuntimeObject* ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___obj0; bool L_1; L_1 = TimeZoneInfo_Equals_m986E0F7F5DF0E9FFE14F6D56BCE8742DE1C5A873(__this, ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8*)IsInstSealed((RuntimeObject*)L_0, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var)), NULL); return L_1; } } // System.Int32 System.TimeZoneInfo::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TimeZoneInfo_GetHashCode_m6AF228B01A4A7B629BE38E5D69897A774B6C6957 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_runtime_class_init_inline(StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06_il2cpp_TypeInfo_var); StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06* L_0; L_0 = StringComparer_get_OrdinalIgnoreCase_m4206775241793096770A30CE686D3B342AEDDE6E_inline(NULL); String_t* L_1 = __this->____id_0; NullCheck(L_0); int32_t L_2; L_2 = VirtualFuncInvoker1< int32_t, String_t* >::Invoke(12 /* System.Int32 System.StringComparer::GetHashCode(System.String) */, L_0, L_1); return L_2; } } // System.Boolean System.TimeZoneInfo::HasSameRules(System.TimeZoneInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_HasSameRules_m924B2C9A9A701D8388C5B8877F9BC6D5C4BF1DBE (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* V_1 = NULL; AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* V_2 = NULL; int32_t V_3 = 0; int32_t G_B11_0 = 0; { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_0 = ___other0; 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))); NullCheck(L_1); ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeZoneInfo_HasSameRules_m924B2C9A9A701D8388C5B8877F9BC6D5C4BF1DBE_RuntimeMethod_var))); } IL_000e: { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_2 = __this->____baseUtcOffset_4; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_3 = ___other0; NullCheck(L_3); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_4 = L_3->____baseUtcOffset_4; il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); bool L_5; L_5 = TimeSpan_op_Inequality_m702FEB395C90D5B23E2F7CD61B44846CD9B2C808(L_2, L_4, NULL); if (L_5) { goto IL_002f; } } { bool L_6 = __this->____supportsDaylightSavingTime_5; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_7 = ___other0; NullCheck(L_7); bool L_8 = L_7->____supportsDaylightSavingTime_5; if ((((int32_t)L_6) == ((int32_t)L_8))) { goto IL_0031; } } IL_002f: { return (bool)0; } IL_0031: { AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_9 = __this->____adjustmentRules_6; V_1 = L_9; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_10 = ___other0; NullCheck(L_10); AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_11 = L_10->____adjustmentRules_6; V_2 = L_11; AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_12 = V_1; if (L_12) { goto IL_0045; } } { AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_13 = V_2; if (!L_13) { goto IL_0051; } } IL_0045: { AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_14 = V_1; if (!L_14) { goto IL_004e; } } { AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_15 = V_2; G_B11_0 = ((!(((RuntimeObject*)(AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA*)L_15) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0); goto IL_0052; } IL_004e: { G_B11_0 = 0; goto IL_0052; } IL_0051: { G_B11_0 = 1; } IL_0052: { V_0 = (bool)G_B11_0; bool L_16 = V_0; if (L_16) { goto IL_0058; } } { return (bool)0; } IL_0058: { AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_17 = V_1; if (!L_17) { goto IL_0082; } } { AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_18 = V_1; NullCheck(L_18); AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_19 = V_2; NullCheck(L_19); if ((((int32_t)((int32_t)(((RuntimeArray*)L_18)->max_length))) == ((int32_t)((int32_t)(((RuntimeArray*)L_19)->max_length))))) { goto IL_0065; } } { return (bool)0; } IL_0065: { V_3 = 0; goto IL_007c; } IL_0069: { AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_20 = V_1; int32_t L_21 = V_3; NullCheck(L_20); int32_t L_22 = L_21; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_23 = (L_20)->GetAt(static_cast(L_22)); AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_24 = V_2; int32_t L_25 = V_3; NullCheck(L_24); int32_t L_26 = L_25; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_27 = (L_24)->GetAt(static_cast(L_26)); NullCheck(L_23); bool L_28; L_28 = AdjustmentRule_Equals_m5DF61E016305C51AC3468B26C32BDFD68E8C1CAD(L_23, L_27, NULL); if (L_28) { goto IL_0078; } } { return (bool)0; } IL_0078: { int32_t L_29 = V_3; V_3 = ((int32_t)il2cpp_codegen_add(L_29, 1)); } IL_007c: { int32_t L_30 = V_3; AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_31 = V_1; NullCheck(L_31); if ((((int32_t)L_30) < ((int32_t)((int32_t)(((RuntimeArray*)L_31)->max_length))))) { goto IL_0069; } } IL_0082: { bool L_32 = V_0; return L_32; } } // System.TimeZoneInfo System.TimeZoneInfo::get_Local() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* TimeZoneInfo_get_Local_mFE5FE1C25C014521B6BCC9BE11AA67A1AF3C91B0 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* L_0 = ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___s_cachedData_8; NullCheck(L_0); TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_1; L_1 = CachedData_get_Local_mBD5BE85DE59BDDEC2CEE51EA6882BA57C70D6392(L_0, NULL); return L_1; } } // System.String System.TimeZoneInfo::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_ToString_mEA9C721E15FD1651E86AED367B859BD44CF519E8 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, const RuntimeMethod* method) { { String_t* L_0; L_0 = TimeZoneInfo_get_DisplayName_m11B9CDA1B2BCE55E313D7D06D43DF635C7C87A79(__this, NULL); return L_0; } } // System.TimeZoneInfo System.TimeZoneInfo::get_Utc() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* TimeZoneInfo_get_Utc_m482B36736E8BCDACAD739CFEB993B7BD7AADA726 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_0 = ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___s_utcTimeZone_7; return L_0; } } // System.Void System.TimeZoneInfo::.ctor(System.String,System.TimeSpan,System.String,System.String,System.String,System.TimeZoneInfo/AdjustmentRule[],System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo__ctor_mC3ECEF5D3FAD82C4E2FE5FCE0024C061CD492715 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, String_t* ___id0, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___baseUtcOffset1, String_t* ___displayName2, String_t* ___standardDisplayName3, String_t* ___daylightDisplayName4, AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* ___adjustmentRules5, bool ___disableDaylightSavingTime6, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* G_B2_0 = NULL; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* G_B1_0 = NULL; String_t* G_B3_0 = NULL; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* G_B3_1 = NULL; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* G_B5_0 = NULL; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* G_B4_0 = NULL; int32_t G_B6_0 = 0; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* G_B6_1 = NULL; { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); String_t* L_0 = ___id0; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_1 = ___baseUtcOffset1; AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_2 = ___adjustmentRules5; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeZoneInfo_ValidateTimeZoneInfo_m5E219078273AC961FA3D3B6CB9E08EAA51D3DFAB(L_0, L_1, L_2, (&V_0), NULL); String_t* L_3 = ___id0; __this->____id_0 = L_3; Il2CppCodeGenWriteBarrier((void**)(&__this->____id_0), (void*)L_3); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_4 = ___baseUtcOffset1; __this->____baseUtcOffset_4 = L_4; String_t* L_5 = ___displayName2; __this->____displayName_1 = L_5; Il2CppCodeGenWriteBarrier((void**)(&__this->____displayName_1), (void*)L_5); String_t* L_6 = ___standardDisplayName3; __this->____standardDisplayName_2 = L_6; Il2CppCodeGenWriteBarrier((void**)(&__this->____standardDisplayName_2), (void*)L_6); bool L_7 = ___disableDaylightSavingTime6; G_B1_0 = __this; if (L_7) { G_B2_0 = __this; goto IL_0037; } } { String_t* L_8 = ___daylightDisplayName4; G_B3_0 = L_8; G_B3_1 = G_B1_0; goto IL_0038; } IL_0037: { G_B3_0 = ((String_t*)(NULL)); G_B3_1 = G_B2_0; } IL_0038: { NullCheck(G_B3_1); G_B3_1->____daylightDisplayName_3 = G_B3_0; Il2CppCodeGenWriteBarrier((void**)(&G_B3_1->____daylightDisplayName_3), (void*)G_B3_0); bool L_9 = V_0; G_B4_0 = __this; if (!L_9) { G_B5_0 = __this; goto IL_0048; } } { bool L_10 = ___disableDaylightSavingTime6; G_B6_0 = ((((int32_t)L_10) == ((int32_t)0))? 1 : 0); G_B6_1 = G_B4_0; goto IL_0049; } IL_0048: { G_B6_0 = 0; G_B6_1 = G_B5_0; } IL_0049: { NullCheck(G_B6_1); G_B6_1->____supportsDaylightSavingTime_5 = (bool)G_B6_0; AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_11 = ___adjustmentRules5; __this->____adjustmentRules_6 = L_11; Il2CppCodeGenWriteBarrier((void**)(&__this->____adjustmentRules_6), (void*)L_11); return; } } // System.TimeZoneInfo System.TimeZoneInfo::CreateCustomTimeZone(System.String,System.TimeSpan,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* TimeZoneInfo_CreateCustomTimeZone_mA4B219D7787155D6BBC73C424CBBF0C044713CC9 (String_t* ___id0, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___baseUtcOffset1, String_t* ___displayName2, String_t* ___standardDisplayName3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___id0; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_1 = ___baseUtcOffset1; String_t* L_2 = ___displayName2; String_t* L_3 = ___standardDisplayName3; String_t* L_4 = ___standardDisplayName3; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_5 = (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8*)il2cpp_codegen_object_new(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); NullCheck(L_5); TimeZoneInfo__ctor_mC3ECEF5D3FAD82C4E2FE5FCE0024C061CD492715(L_5, L_0, L_1, L_2, L_3, L_4, (AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA*)NULL, (bool)0, NULL); return L_5; } } // System.TimeZoneInfo System.TimeZoneInfo::CreateCustomTimeZone(System.String,System.TimeSpan,System.String,System.String,System.String,System.TimeZoneInfo/AdjustmentRule[],System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* TimeZoneInfo_CreateCustomTimeZone_mE6CD9C2D2B4E776997B0791E75792D1C971B091D (String_t* ___id0, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___baseUtcOffset1, String_t* ___displayName2, String_t* ___standardDisplayName3, String_t* ___daylightDisplayName4, AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* ___adjustmentRules5, bool ___disableDaylightSavingTime6, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { bool L_0 = ___disableDaylightSavingTime6; if (L_0) { goto IL_001b; } } { AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_1 = ___adjustmentRules5; if (!L_1) { goto IL_001b; } } { AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_2 = ___adjustmentRules5; NullCheck(L_2); if (!(((RuntimeArray*)L_2)->max_length)) { goto IL_001b; } } { AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_3 = ___adjustmentRules5; NullCheck((RuntimeArray*)L_3); RuntimeObject* L_4; L_4 = Array_Clone_m66C9D0727C9BAA0995E4142F29B45BC03582E042((RuntimeArray*)L_3, NULL); ___adjustmentRules5 = ((AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA*)Castclass((RuntimeObject*)L_4, AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA_il2cpp_TypeInfo_var)); } IL_001b: { String_t* L_5 = ___id0; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_6 = ___baseUtcOffset1; String_t* L_7 = ___displayName2; String_t* L_8 = ___standardDisplayName3; String_t* L_9 = ___daylightDisplayName4; AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_10 = ___adjustmentRules5; bool L_11 = ___disableDaylightSavingTime6; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_12 = (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8*)il2cpp_codegen_object_new(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); NullCheck(L_12); TimeZoneInfo__ctor_mC3ECEF5D3FAD82C4E2FE5FCE0024C061CD492715(L_12, L_5, L_6, L_7, L_8, L_9, L_10, L_11, NULL); return L_12; } } // System.Void System.TimeZoneInfo::System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m72C836AAD5728159255930F43DDA57217E6633B7 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, RuntimeObject* ___sender0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* V_1 = NULL; InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD* V_2 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; try {// begin try (depth: 1) { String_t* L_0 = __this->____id_0; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_1 = __this->____baseUtcOffset_4; AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_2 = __this->____adjustmentRules_6; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeZoneInfo_ValidateTimeZoneInfo_m5E219078273AC961FA3D3B6CB9E08EAA51D3DFAB(L_0, L_1, L_2, (&V_0), NULL); bool L_3 = V_0; bool L_4 = __this->____supportsDaylightSavingTime_5; if ((((int32_t)L_3) == ((int32_t)L_4))) { goto IL_0037_1; } } { String_t* L_5; L_5 = SR_Format_mB99C6F1BE061EA1427A45176E0CAFB2A2C76D03F(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8C7519178C7F8017597493F458FE4E71F102399E)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD1D800B26C6F9144AC6A1E10C149876FA99E3EBE)), NULL); SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7* L_6 = (SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7_il2cpp_TypeInfo_var))); NullCheck(L_6); SerializationException__ctor_m0AAFE2ABD0A74F3E783AD5B5FE842DE460168DB0(L_6, L_5, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeZoneInfo_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m72C836AAD5728159255930F43DDA57217E6633B7_RuntimeMethod_var))); } IL_0037_1: { goto IL_0053; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0039; } if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0046; } throw e; } CATCH_0039: {// begin catch(System.ArgumentException) V_1 = ((ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)IL2CPP_GET_ACTIVE_EXCEPTION(ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)); ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_7 = V_1; SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7* L_8 = (SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7_il2cpp_TypeInfo_var))); NullCheck(L_8); SerializationException__ctor_m8CF86DA30D4F95904BF5C1A9CF646DE92EB8C161(L_8, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA595476C6F6D3E2C3406DD69BC73859EA4408F2F)), L_7, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeZoneInfo_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m72C836AAD5728159255930F43DDA57217E6633B7_RuntimeMethod_var))); }// end catch (depth: 1) CATCH_0046: {// begin catch(System.InvalidTimeZoneException) V_2 = ((InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD*)IL2CPP_GET_ACTIVE_EXCEPTION(InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD*)); InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD* L_9 = V_2; SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7* L_10 = (SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7_il2cpp_TypeInfo_var))); NullCheck(L_10); SerializationException__ctor_m8CF86DA30D4F95904BF5C1A9CF646DE92EB8C161(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA595476C6F6D3E2C3406DD69BC73859EA4408F2F)), L_9, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeZoneInfo_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m72C836AAD5728159255930F43DDA57217E6633B7_RuntimeMethod_var))); }// end catch (depth: 1) IL_0053: { return; } } // System.Void System.TimeZoneInfo::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo_System_Runtime_Serialization_ISerializable_GetObjectData_m530C74071BC885ED139F52B6E63FE59E1F88D642 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___info0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0A58A4491B2CAAC8B03975834049C51649A53FA2); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2CEBE907F12753A3B74B3F049CD4FCCAD27EEB0D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7C152F638579421698C1833EAD994B061F824CA0); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAED72E9EF0C042EAA3A3C7A43CA329E75FF933BD); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBFF9324A7A4DB3E1D645999C8B9E2DA54472D42C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD1D800B26C6F9144AC6A1E10C149876FA99E3EBE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF413CEA9BAA458730567FE47F57CC3C94DDF63C0); s_Il2CppMethodInitialized = true; } { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___info0; 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))); NullCheck(L_1); ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA7B00F7F25C375B2501A6ADBC86D092B23977085)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeZoneInfo_System_Runtime_Serialization_ISerializable_GetObjectData_m530C74071BC885ED139F52B6E63FE59E1F88D642_RuntimeMethod_var))); } IL_000e: { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_2 = ___info0; String_t* L_3 = __this->____id_0; NullCheck(L_2); SerializationInfo_AddValue_m28FE9B110F21DDB8FF5F5E35A0EABD659DB22C2F(L_2, _stringLiteralBFF9324A7A4DB3E1D645999C8B9E2DA54472D42C, L_3, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_4 = ___info0; String_t* L_5 = __this->____displayName_1; NullCheck(L_4); SerializationInfo_AddValue_m28FE9B110F21DDB8FF5F5E35A0EABD659DB22C2F(L_4, _stringLiteralF413CEA9BAA458730567FE47F57CC3C94DDF63C0, L_5, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_6 = ___info0; String_t* L_7 = __this->____standardDisplayName_2; NullCheck(L_6); SerializationInfo_AddValue_m28FE9B110F21DDB8FF5F5E35A0EABD659DB22C2F(L_6, _stringLiteral7C152F638579421698C1833EAD994B061F824CA0, L_7, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_8 = ___info0; String_t* L_9 = __this->____daylightDisplayName_3; NullCheck(L_8); SerializationInfo_AddValue_m28FE9B110F21DDB8FF5F5E35A0EABD659DB22C2F(L_8, _stringLiteral0A58A4491B2CAAC8B03975834049C51649A53FA2, L_9, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_10 = ___info0; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_11 = __this->____baseUtcOffset_4; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_12 = L_11; RuntimeObject* L_13 = Box(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var, &L_12); NullCheck(L_10); SerializationInfo_AddValue_m28FE9B110F21DDB8FF5F5E35A0EABD659DB22C2F(L_10, _stringLiteral2CEBE907F12753A3B74B3F049CD4FCCAD27EEB0D, L_13, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_14 = ___info0; AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_15 = __this->____adjustmentRules_6; NullCheck(L_14); SerializationInfo_AddValue_m28FE9B110F21DDB8FF5F5E35A0EABD659DB22C2F(L_14, _stringLiteralAED72E9EF0C042EAA3A3C7A43CA329E75FF933BD, (RuntimeObject*)L_15, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_16 = ___info0; bool L_17 = __this->____supportsDaylightSavingTime_5; NullCheck(L_16); SerializationInfo_AddValue_mC52253CB19C98F82A26E32C941F8F20E106D4C0D(L_16, _stringLiteralD1D800B26C6F9144AC6A1E10C149876FA99E3EBE, L_17, NULL); return; } } // System.Void System.TimeZoneInfo::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo__ctor_m7B38419A290B32854FB6623A338755B01F675DEA (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___info0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0A58A4491B2CAAC8B03975834049C51649A53FA2); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2CEBE907F12753A3B74B3F049CD4FCCAD27EEB0D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7C152F638579421698C1833EAD994B061F824CA0); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAED72E9EF0C042EAA3A3C7A43CA329E75FF933BD); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBFF9324A7A4DB3E1D645999C8B9E2DA54472D42C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD1D800B26C6F9144AC6A1E10C149876FA99E3EBE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF413CEA9BAA458730567FE47F57CC3C94DDF63C0); s_Il2CppMethodInitialized = true; } { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___info0; if (L_0) { goto IL_0014; } } { ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var))); NullCheck(L_1); ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA7B00F7F25C375B2501A6ADBC86D092B23977085)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeZoneInfo__ctor_m7B38419A290B32854FB6623A338755B01F675DEA_RuntimeMethod_var))); } IL_0014: { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_2 = ___info0; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_3 = { reinterpret_cast (String_t_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_4; L_4 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_3, NULL); NullCheck(L_2); RuntimeObject* L_5; L_5 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_2, _stringLiteralBFF9324A7A4DB3E1D645999C8B9E2DA54472D42C, L_4, NULL); __this->____id_0 = ((String_t*)CastclassSealed((RuntimeObject*)L_5, String_t_il2cpp_TypeInfo_var)); Il2CppCodeGenWriteBarrier((void**)(&__this->____id_0), (void*)((String_t*)CastclassSealed((RuntimeObject*)L_5, String_t_il2cpp_TypeInfo_var))); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_6 = ___info0; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_7 = { reinterpret_cast (String_t_0_0_0_var) }; Type_t* L_8; L_8 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_7, NULL); NullCheck(L_6); RuntimeObject* L_9; L_9 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_6, _stringLiteralF413CEA9BAA458730567FE47F57CC3C94DDF63C0, L_8, NULL); __this->____displayName_1 = ((String_t*)CastclassSealed((RuntimeObject*)L_9, String_t_il2cpp_TypeInfo_var)); Il2CppCodeGenWriteBarrier((void**)(&__this->____displayName_1), (void*)((String_t*)CastclassSealed((RuntimeObject*)L_9, String_t_il2cpp_TypeInfo_var))); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_10 = ___info0; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_11 = { reinterpret_cast (String_t_0_0_0_var) }; Type_t* L_12; L_12 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_11, NULL); NullCheck(L_10); RuntimeObject* L_13; L_13 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_10, _stringLiteral7C152F638579421698C1833EAD994B061F824CA0, L_12, NULL); __this->____standardDisplayName_2 = ((String_t*)CastclassSealed((RuntimeObject*)L_13, String_t_il2cpp_TypeInfo_var)); Il2CppCodeGenWriteBarrier((void**)(&__this->____standardDisplayName_2), (void*)((String_t*)CastclassSealed((RuntimeObject*)L_13, String_t_il2cpp_TypeInfo_var))); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_14 = ___info0; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_15 = { reinterpret_cast (String_t_0_0_0_var) }; Type_t* L_16; L_16 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_15, NULL); NullCheck(L_14); RuntimeObject* L_17; L_17 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_14, _stringLiteral0A58A4491B2CAAC8B03975834049C51649A53FA2, L_16, NULL); __this->____daylightDisplayName_3 = ((String_t*)CastclassSealed((RuntimeObject*)L_17, String_t_il2cpp_TypeInfo_var)); Il2CppCodeGenWriteBarrier((void**)(&__this->____daylightDisplayName_3), (void*)((String_t*)CastclassSealed((RuntimeObject*)L_17, String_t_il2cpp_TypeInfo_var))); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_18 = ___info0; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_19 = { reinterpret_cast (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_0_0_0_var) }; Type_t* L_20; L_20 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_19, NULL); NullCheck(L_18); RuntimeObject* L_21; L_21 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_18, _stringLiteral2CEBE907F12753A3B74B3F049CD4FCCAD27EEB0D, L_20, NULL); __this->____baseUtcOffset_4 = ((*(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)UnBox(L_21, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var)))); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_22 = ___info0; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_23 = { reinterpret_cast (AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA_0_0_0_var) }; Type_t* L_24; L_24 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_23, NULL); NullCheck(L_22); RuntimeObject* L_25; L_25 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_22, _stringLiteralAED72E9EF0C042EAA3A3C7A43CA329E75FF933BD, L_24, NULL); __this->____adjustmentRules_6 = ((AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA*)Castclass((RuntimeObject*)L_25, AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA_il2cpp_TypeInfo_var)); Il2CppCodeGenWriteBarrier((void**)(&__this->____adjustmentRules_6), (void*)((AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA*)Castclass((RuntimeObject*)L_25, AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA_il2cpp_TypeInfo_var))); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_26 = ___info0; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_27 = { reinterpret_cast (Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_0_0_0_var) }; Type_t* L_28; L_28 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_27, NULL); NullCheck(L_26); RuntimeObject* L_29; L_29 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_26, _stringLiteralD1D800B26C6F9144AC6A1E10C149876FA99E3EBE, L_28, NULL); __this->____supportsDaylightSavingTime_5 = ((*(bool*)((bool*)(bool*)UnBox(L_29, Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var)))); return; } } // System.TimeZoneInfo/AdjustmentRule System.TimeZoneInfo::GetAdjustmentRuleForTime(System.DateTime,System.Nullable`1&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* TimeZoneInfo_GetAdjustmentRuleForTime_mDFC301B0D8E40FC4212536302A370F137239ADAB (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateTime0, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* ___ruleIndex1, const RuntimeMethod* method) { { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = ___dateTime0; Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_1 = ___ruleIndex1; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_2; L_2 = TimeZoneInfo_GetAdjustmentRuleForTime_mCBA5D97CD7A86677CC6E7F4AE9ADDF83096398F0(__this, L_0, (bool)0, L_1, NULL); return L_2; } } // System.TimeZoneInfo/AdjustmentRule System.TimeZoneInfo::GetAdjustmentRuleForTime(System.DateTime,System.Boolean,System.Nullable`1&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* TimeZoneInfo_GetAdjustmentRuleForTime_mCBA5D97CD7A86677CC6E7F4AE9ADDF83096398F0 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateTime0, bool ___dateTimeisUtc1, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* ___ruleIndex2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_0; memset((&V_0), 0, sizeof(V_0)); int32_t V_1 = 0; int32_t V_2 = 0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_3; memset((&V_3), 0, sizeof(V_3)); int32_t V_4 = 0; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* V_5 = NULL; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* V_6 = NULL; int32_t V_7 = 0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D G_B6_0; memset((&G_B6_0), 0, sizeof(G_B6_0)); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* G_B10_0 = NULL; { AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_0 = __this->____adjustmentRules_6; if (!L_0) { goto IL_0011; } } { AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_1 = __this->____adjustmentRules_6; NullCheck(L_1); if ((((RuntimeArray*)L_1)->max_length)) { goto IL_001a; } } IL_0011: { Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_2 = ___ruleIndex2; il2cpp_codegen_initobj(L_2, sizeof(Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28)); return (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07*)NULL; } IL_001a: { bool L_3 = ___dateTimeisUtc1; if (L_3) { goto IL_0026; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_4; L_4 = DateTime_get_Date_m24A9ECCD369D892A2D6B01B30066E50E50584A7D((&___dateTime0), NULL); G_B6_0 = L_4; goto IL_003a; } IL_0026: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_5 = ___dateTime0; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_6; L_6 = TimeZoneInfo_get_BaseUtcOffset_m285A2D1E313B50B51A13F499192CDCEDBC702AE3_inline(__this, NULL); il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_7; L_7 = DateTime_op_Addition_m23FACB2D207CB24BE0E9C06AB4CF8CE0C4F0CAD8(L_5, L_6, NULL); V_3 = L_7; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_8; L_8 = DateTime_get_Date_m24A9ECCD369D892A2D6B01B30066E50E50584A7D((&V_3), NULL); G_B6_0 = L_8; } IL_003a: { V_0 = G_B6_0; V_1 = 0; AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_9 = __this->____adjustmentRules_6; NullCheck(L_9); V_2 = ((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_9)->max_length)), 1)); goto IL_00a8; } IL_004a: { int32_t L_10 = V_1; int32_t L_11 = V_2; int32_t L_12 = V_1; V_4 = ((int32_t)il2cpp_codegen_add(L_10, ((int32_t)(((int32_t)il2cpp_codegen_subtract(L_11, L_12))>>1)))); AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_13 = __this->____adjustmentRules_6; int32_t L_14 = V_4; NullCheck(L_13); int32_t L_15 = L_14; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_16 = (L_13)->GetAt(static_cast(L_15)); V_5 = L_16; int32_t L_17 = V_4; if ((((int32_t)L_17) > ((int32_t)0))) { goto IL_0067; } } { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_18 = V_5; G_B10_0 = L_18; goto IL_0072; } IL_0067: { AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_19 = __this->____adjustmentRules_6; int32_t L_20 = V_4; NullCheck(L_19); int32_t L_21 = ((int32_t)il2cpp_codegen_subtract(L_20, 1)); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_22 = (L_19)->GetAt(static_cast(L_21)); G_B10_0 = L_22; } IL_0072: { V_6 = G_B10_0; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_23 = V_5; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_24 = V_6; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_25 = ___dateTime0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_26 = V_0; bool L_27 = ___dateTimeisUtc1; int32_t L_28; L_28 = TimeZoneInfo_CompareAdjustmentRuleToDateTime_m742CAFF4CFBB4F4A172D2B99095AA2003D995472(__this, L_23, L_24, L_25, L_26, L_27, NULL); V_7 = L_28; int32_t L_29 = V_7; if (L_29) { goto IL_0097; } } { Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_30 = ___ruleIndex2; int32_t L_31 = V_4; Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_32; memset((&L_32), 0, sizeof(L_32)); Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703((&L_32), L_31, /*hidden argument*/Nullable_1__ctor_m141FA88563AC0B5179132FB929EABD02C47FF703_RuntimeMethod_var); *(Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28*)L_30 = L_32; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_33 = V_5; return L_33; } IL_0097: { int32_t L_34 = V_7; if ((((int32_t)L_34) >= ((int32_t)0))) { goto IL_00a3; } } { int32_t L_35 = V_4; V_1 = ((int32_t)il2cpp_codegen_add(L_35, 1)); goto IL_00a8; } IL_00a3: { int32_t L_36 = V_4; V_2 = ((int32_t)il2cpp_codegen_subtract(L_36, 1)); } IL_00a8: { int32_t L_37 = V_1; int32_t L_38 = V_2; if ((((int32_t)L_37) <= ((int32_t)L_38))) { goto IL_004a; } } { Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* L_39 = ___ruleIndex2; il2cpp_codegen_initobj(L_39, sizeof(Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28)); return (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07*)NULL; } } // System.Int32 System.TimeZoneInfo::CompareAdjustmentRuleToDateTime(System.TimeZoneInfo/AdjustmentRule,System.TimeZoneInfo/AdjustmentRule,System.DateTime,System.DateTime,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TimeZoneInfo_CompareAdjustmentRuleToDateTime_m742CAFF4CFBB4F4A172D2B99095AA2003D995472 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___rule0, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___previousRule1, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateTime2, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateOnly3, bool ___dateTimeisUtc4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; bool V_1 = false; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_2; memset((&V_2), 0, sizeof(V_2)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D G_B4_0; memset((&G_B4_0), 0, sizeof(G_B4_0)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D G_B12_0; memset((&G_B12_0), 0, sizeof(G_B12_0)); { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_0 = ___rule0; NullCheck(L_0); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_1; L_1 = AdjustmentRule_get_DateStart_m89981208F272F07A4D46956A501E18C579BFBAFF_inline(L_0, NULL); V_2 = L_1; int32_t L_2; L_2 = DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993((&V_2), NULL); if ((!(((uint32_t)L_2) == ((uint32_t)1)))) { goto IL_0039; } } { bool L_3 = ___dateTimeisUtc4; if (L_3) { goto IL_002a; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_4 = ___dateTime2; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_5 = ___previousRule1; NullCheck(L_5); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_6; L_6 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(L_5, NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_7 = ___previousRule1; NullCheck(L_7); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_8; L_8 = AdjustmentRule_get_BaseUtcOffsetDelta_m0A089D2D9C6A8C6D4460BE4403DDE16FD0D97075_inline(L_7, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_9; L_9 = TimeZoneInfo_ConvertToUtc_mED8C0F810B74D29A1D9F64A8EE867315FDDA4C03(__this, L_4, L_6, L_8, NULL); G_B4_0 = L_9; goto IL_002b; } IL_002a: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_10 = ___dateTime2; G_B4_0 = L_10; } IL_002b: { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_11 = ___rule0; NullCheck(L_11); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_12; L_12 = AdjustmentRule_get_DateStart_m89981208F272F07A4D46956A501E18C579BFBAFF_inline(L_11, NULL); il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_13; L_13 = DateTime_op_GreaterThanOrEqual_mBEEE5CB06F515D621E03D91F54AB26EEA73F1D09(G_B4_0, L_12, NULL); V_0 = L_13; goto IL_0047; } IL_0039: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_14 = ___dateOnly3; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_15 = ___rule0; NullCheck(L_15); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_16; L_16 = AdjustmentRule_get_DateStart_m89981208F272F07A4D46956A501E18C579BFBAFF_inline(L_15, NULL); il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_17; L_17 = DateTime_op_GreaterThanOrEqual_mBEEE5CB06F515D621E03D91F54AB26EEA73F1D09(L_14, L_16, NULL); V_0 = L_17; } IL_0047: { bool L_18 = V_0; if (L_18) { goto IL_004c; } } { return 1; } IL_004c: { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_19 = ___rule0; NullCheck(L_19); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_20; L_20 = AdjustmentRule_get_DateEnd_mFF744CCAA5537C7992B23C8F56A90FCD85846B8D_inline(L_19, NULL); V_2 = L_20; int32_t L_21; L_21 = DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993((&V_2), NULL); if ((!(((uint32_t)L_21) == ((uint32_t)1)))) { goto IL_0085; } } { bool L_22 = ___dateTimeisUtc4; if (L_22) { goto IL_0076; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_23 = ___dateTime2; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_24 = ___rule0; NullCheck(L_24); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_25; L_25 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(L_24, NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_26 = ___rule0; NullCheck(L_26); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_27; L_27 = AdjustmentRule_get_BaseUtcOffsetDelta_m0A089D2D9C6A8C6D4460BE4403DDE16FD0D97075_inline(L_26, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_28; L_28 = TimeZoneInfo_ConvertToUtc_mED8C0F810B74D29A1D9F64A8EE867315FDDA4C03(__this, L_23, L_25, L_27, NULL); G_B12_0 = L_28; goto IL_0077; } IL_0076: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_29 = ___dateTime2; G_B12_0 = L_29; } IL_0077: { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_30 = ___rule0; NullCheck(L_30); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_31; L_31 = AdjustmentRule_get_DateEnd_mFF744CCAA5537C7992B23C8F56A90FCD85846B8D_inline(L_30, NULL); il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_32; L_32 = DateTime_op_LessThanOrEqual_m458241757285ECEABEDA1F8105546FBFCD9ECB80(G_B12_0, L_31, NULL); V_1 = L_32; goto IL_0093; } IL_0085: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_33 = ___dateOnly3; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_34 = ___rule0; NullCheck(L_34); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_35; L_35 = AdjustmentRule_get_DateEnd_mFF744CCAA5537C7992B23C8F56A90FCD85846B8D_inline(L_34, NULL); il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_36; L_36 = DateTime_op_LessThanOrEqual_m458241757285ECEABEDA1F8105546FBFCD9ECB80(L_33, L_35, NULL); V_1 = L_36; } IL_0093: { bool L_37 = V_1; if (L_37) { goto IL_0098; } } { return (-1); } IL_0098: { return 0; } } // System.DateTime System.TimeZoneInfo::ConvertToUtc(System.DateTime,System.TimeSpan,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D TimeZoneInfo_ConvertToUtc_mED8C0F810B74D29A1D9F64A8EE867315FDDA4C03 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateTime0, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___daylightDelta1, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___baseUtcOffsetDelta2, const RuntimeMethod* method) { { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = ___dateTime0; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_1 = ___daylightDelta1; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_2 = ___baseUtcOffsetDelta2; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_3; L_3 = TimeZoneInfo_ConvertToFromUtc_mD867ED0F69C8996949E527C0125DD2EDA46DA583(__this, L_0, L_1, L_2, (bool)1, NULL); return L_3; } } // System.DateTime System.TimeZoneInfo::ConvertFromUtc(System.DateTime,System.TimeSpan,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D TimeZoneInfo_ConvertFromUtc_m1F7CA14CBA9DFE117BE63277941BCC7954C9598D (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateTime0, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___daylightDelta1, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___baseUtcOffsetDelta2, const RuntimeMethod* method) { { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = ___dateTime0; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_1 = ___daylightDelta1; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_2 = ___baseUtcOffsetDelta2; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_3; L_3 = TimeZoneInfo_ConvertToFromUtc_mD867ED0F69C8996949E527C0125DD2EDA46DA583(__this, L_0, L_1, L_2, (bool)0, NULL); return L_3; } } // System.DateTime System.TimeZoneInfo::ConvertToFromUtc(System.DateTime,System.TimeSpan,System.TimeSpan,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D TimeZoneInfo_ConvertToFromUtc_mD867ED0F69C8996949E527C0125DD2EDA46DA583 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateTime0, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___daylightDelta1, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___baseUtcOffsetDelta2, bool ___convertToUtc3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_0; memset((&V_0), 0, sizeof(V_0)); int64_t V_1 = 0; { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_0; L_0 = TimeZoneInfo_get_BaseUtcOffset_m285A2D1E313B50B51A13F499192CDCEDBC702AE3_inline(__this, NULL); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_1 = ___daylightDelta1; il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_2; L_2 = TimeSpan_op_Addition_m4CA781FA121EB39944AE59C6BDD9304C42E74DFB(L_0, L_1, NULL); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_3 = ___baseUtcOffsetDelta2; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_4; L_4 = TimeSpan_op_Addition_m4CA781FA121EB39944AE59C6BDD9304C42E74DFB(L_2, L_3, NULL); V_0 = L_4; bool L_5 = ___convertToUtc3; if (!L_5) { goto IL_001f; } } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_6; L_6 = TimeSpan_Negate_m3BF3036191A2FDC35250891CD82AD3283A13ABB4((&V_0), NULL); V_0 = L_6; } IL_001f: { int64_t L_7; L_7 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6((&___dateTime0), NULL); int64_t L_8; L_8 = TimeSpan_get_Ticks_mC50131E57621F29FACC53B3241432ABB874FA1B5_inline((&V_0), NULL); V_1 = ((int64_t)il2cpp_codegen_add(L_7, L_8)); int64_t L_9 = V_1; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); int64_t L_10; L_10 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6((&((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MaxValue_33), NULL); if ((((int64_t)L_9) > ((int64_t)L_10))) { goto IL_0056; } } { int64_t L_11 = V_1; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); int64_t L_12; L_12 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6((&((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MinValue_32), NULL); if ((((int64_t)L_11) < ((int64_t)L_12))) { goto IL_0050; } } { int64_t L_13 = V_1; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_14; memset((&L_14), 0, sizeof(L_14)); DateTime__ctor_m64AFCE84ABB24698256EB9F635EFD0A221823441((&L_14), L_13, /*hidden argument*/NULL); return L_14; } IL_0050: { il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_15 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MinValue_32; return L_15; } IL_0056: { il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_16 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MaxValue_33; return L_16; } } // System.DateTime System.TimeZoneInfo::ConvertUtcToTimeZone(System.Int64,System.TimeZoneInfo,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D TimeZoneInfo_ConvertUtcToTimeZone_m43C4BE693F13D1D7E5357326A37628C869D6E3F7 (int64_t ___ticks0, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___destinationTimeZone1, bool* ___isAmbiguousLocalDst2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_0; memset((&V_0), 0, sizeof(V_0)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D G_B5_0; memset((&G_B5_0), 0, sizeof(G_B5_0)); { int64_t L_0 = ___ticks0; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); int64_t L_1; L_1 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6((&((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MaxValue_33), NULL); if ((((int64_t)L_0) > ((int64_t)L_1))) { goto IL_0029; } } { int64_t L_2 = ___ticks0; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); int64_t L_3; L_3 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6((&((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MinValue_32), NULL); if ((((int64_t)L_2) < ((int64_t)L_3))) { goto IL_0022; } } { int64_t L_4 = ___ticks0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_5; memset((&L_5), 0, sizeof(L_5)); DateTime__ctor_m64AFCE84ABB24698256EB9F635EFD0A221823441((&L_5), L_4, /*hidden argument*/NULL); G_B5_0 = L_5; goto IL_002e; } IL_0022: { il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_6 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MinValue_32; G_B5_0 = L_6; goto IL_002e; } IL_0029: { il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_7 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MaxValue_33; G_B5_0 = L_7; } IL_002e: { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_8 = ___destinationTimeZone1; bool* L_9 = ___isAmbiguousLocalDst2; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_10; L_10 = TimeZoneInfo_GetUtcOffsetFromUtc_m12F3C1464D6486EB6CD46471EA5D071EEE19913B(G_B5_0, L_8, L_9, NULL); V_0 = L_10; int64_t L_11 = ___ticks0; int64_t L_12; L_12 = TimeSpan_get_Ticks_mC50131E57621F29FACC53B3241432ABB874FA1B5_inline((&V_0), NULL); ___ticks0 = ((int64_t)il2cpp_codegen_add(L_11, L_12)); int64_t L_13 = ___ticks0; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); int64_t L_14; L_14 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6((&((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MaxValue_33), NULL); if ((((int64_t)L_13) > ((int64_t)L_14))) { goto IL_0068; } } { int64_t L_15 = ___ticks0; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); int64_t L_16; L_16 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6((&((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MinValue_32), NULL); if ((((int64_t)L_15) < ((int64_t)L_16))) { goto IL_0062; } } { int64_t L_17 = ___ticks0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_18; memset((&L_18), 0, sizeof(L_18)); DateTime__ctor_m64AFCE84ABB24698256EB9F635EFD0A221823441((&L_18), L_17, /*hidden argument*/NULL); return L_18; } IL_0062: { il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_19 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MinValue_32; return L_19; } IL_0068: { il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_20 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MaxValue_33; return L_20; } } // System.Globalization.DaylightTimeStruct System.TimeZoneInfo::GetDaylightTime(System.Int32,System.TimeZoneInfo/AdjustmentRule,System.Nullable`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 TimeZoneInfo_GetDaylightTime_m85B0522E746DC6A8C5052F613BEA936BF329B7AD (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, int32_t ___year0, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___rule1, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___ruleIndex2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_0; memset((&V_0), 0, sizeof(V_0)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_1; memset((&V_1), 0, sizeof(V_1)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_2; memset((&V_2), 0, sizeof(V_2)); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* V_3 = NULL; { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_0 = ___rule1; NullCheck(L_0); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_1; L_1 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(L_0, NULL); V_0 = L_1; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_2 = ___rule1; NullCheck(L_2); bool L_3; L_3 = AdjustmentRule_get_NoDaylightTransitions_mA92395F5741FACBEE835A929B37B6BE7D50CE3FF_inline(L_2, NULL); if (!L_3) { goto IL_004c; } } { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_4 = ___rule1; Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_5 = ___ruleIndex2; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_6; L_6 = TimeZoneInfo_GetPreviousAdjustmentRule_m9F74F6192D83D4ABDD55587AA045AE3B3FB7ABB3(__this, L_4, L_5, NULL); V_3 = L_6; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_7 = ___rule1; NullCheck(L_7); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_8; L_8 = AdjustmentRule_get_DateStart_m89981208F272F07A4D46956A501E18C579BFBAFF_inline(L_7, NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_9 = V_3; NullCheck(L_9); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_10; L_10 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(L_9, NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_11 = V_3; NullCheck(L_11); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_12; L_12 = AdjustmentRule_get_BaseUtcOffsetDelta_m0A089D2D9C6A8C6D4460BE4403DDE16FD0D97075_inline(L_11, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_13; L_13 = TimeZoneInfo_ConvertFromUtc_m1F7CA14CBA9DFE117BE63277941BCC7954C9598D(__this, L_8, L_10, L_12, NULL); V_1 = L_13; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_14 = ___rule1; NullCheck(L_14); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_15; L_15 = AdjustmentRule_get_DateEnd_mFF744CCAA5537C7992B23C8F56A90FCD85846B8D_inline(L_14, NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_16 = ___rule1; NullCheck(L_16); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_17; L_17 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(L_16, NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_18 = ___rule1; NullCheck(L_18); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_19; L_19 = AdjustmentRule_get_BaseUtcOffsetDelta_m0A089D2D9C6A8C6D4460BE4403DDE16FD0D97075_inline(L_18, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_20; L_20 = TimeZoneInfo_ConvertFromUtc_m1F7CA14CBA9DFE117BE63277941BCC7954C9598D(__this, L_15, L_17, L_19, NULL); V_2 = L_20; goto IL_0066; } IL_004c: { int32_t L_21 = ___year0; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_22 = ___rule1; NullCheck(L_22); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_23; L_23 = AdjustmentRule_get_DaylightTransitionStart_mB13755B6F594ECC706B3946F17159E84F23E20D1_inline(L_22, NULL); il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_24; L_24 = TimeZoneInfo_TransitionTimeToDateTime_m925017F99E4907CECD8FE5D5C3763E5BCCBFEB3E(L_21, L_23, NULL); V_1 = L_24; int32_t L_25 = ___year0; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_26 = ___rule1; NullCheck(L_26); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_27; L_27 = AdjustmentRule_get_DaylightTransitionEnd_m3DE90DB3CB36F38AFD5EA7F16719BE0013A1CF74_inline(L_26, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_28; L_28 = TimeZoneInfo_TransitionTimeToDateTime_m925017F99E4907CECD8FE5D5C3763E5BCCBFEB3E(L_25, L_27, NULL); V_2 = L_28; } IL_0066: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_29 = V_1; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_30 = V_2; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_31 = V_0; DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_32; memset((&L_32), 0, sizeof(L_32)); DaylightTimeStruct__ctor_m1A00C6B8123F9F3DD3D739155355DFC1E2ACA0CE((&L_32), L_29, L_30, L_31, /*hidden argument*/NULL); return L_32; } } // System.Boolean System.TimeZoneInfo::GetIsDaylightSavings(System.DateTime,System.TimeZoneInfo/AdjustmentRule,System.Globalization.DaylightTimeStruct,System.TimeZoneInfoOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_GetIsDaylightSavings_mB03A7532D229FDC74C3A720C3918C57E3CDB9C0A (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___time0, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___rule1, DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 ___daylightTime2, int32_t ___flags3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_0; memset((&V_0), 0, sizeof(V_0)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_1; memset((&V_1), 0, sizeof(V_1)); bool V_2 = false; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_3; memset((&V_3), 0, sizeof(V_3)); bool V_4 = false; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D G_B6_0; memset((&G_B6_0), 0, sizeof(G_B6_0)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D G_B9_0; memset((&G_B9_0), 0, sizeof(G_B9_0)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D G_B13_0; memset((&G_B13_0), 0, sizeof(G_B13_0)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D G_B12_0; memset((&G_B12_0), 0, sizeof(G_B12_0)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A G_B14_0; memset((&G_B14_0), 0, sizeof(G_B14_0)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D G_B14_1; memset((&G_B14_1), 0, sizeof(G_B14_1)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D G_B16_0; memset((&G_B16_0), 0, sizeof(G_B16_0)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D G_B19_0; memset((&G_B19_0), 0, sizeof(G_B19_0)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D G_B18_0; memset((&G_B18_0), 0, sizeof(G_B18_0)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A G_B20_0; memset((&G_B20_0), 0, sizeof(G_B20_0)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D G_B20_1; memset((&G_B20_1), 0, sizeof(G_B20_1)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D G_B22_0; memset((&G_B22_0), 0, sizeof(G_B22_0)); { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_0 = ___rule1; if (L_0) { goto IL_0005; } } { return (bool)0; } IL_0005: { int32_t L_1; L_1 = DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993((&___time0), NULL); if ((!(((uint32_t)L_1) == ((uint32_t)2)))) { goto IL_0079; } } { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_2 = ___rule1; NullCheck(L_2); bool L_3; L_3 = AdjustmentRule_IsStartDateMarkerForBeginningOfYear_mC7ED256DEBA978E209CD4DFD12F55CFB15C4FF23(L_2, NULL); if (L_3) { goto IL_002a; } } { DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_4 = ___daylightTime2; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_5 = L_4.___Start_0; DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_6 = ___daylightTime2; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_7 = L_6.___Delta_2; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_8; L_8 = DateTime_op_Addition_m23FACB2D207CB24BE0E9C06AB4CF8CE0C4F0CAD8(L_5, L_7, NULL); G_B6_0 = L_8; goto IL_0040; } IL_002a: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_9 = (&(&___daylightTime2)->___Start_0); int32_t L_10; L_10 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138(L_9, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_11; memset((&L_11), 0, sizeof(L_11)); DateTime__ctor_m1F66A4327FE6B127F0F0E83A70CED25DB0DFFB00((&L_11), L_10, 1, 1, 0, 0, 0, /*hidden argument*/NULL); G_B6_0 = L_11; } IL_0040: { V_0 = G_B6_0; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_12 = ___rule1; NullCheck(L_12); bool L_13; L_13 = AdjustmentRule_IsEndDateMarkerForEndOfYear_m35FDE7810F68D5CB9F22899015ADFE1617A3B964(L_12, NULL); if (L_13) { goto IL_0051; } } { DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_14 = ___daylightTime2; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_15 = L_14.___End_1; G_B9_0 = L_15; goto IL_0073; } IL_0051: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_16 = (&(&___daylightTime2)->___End_1); int32_t L_17; L_17 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138(L_16, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_18; memset((&L_18), 0, sizeof(L_18)); DateTime__ctor_m1F66A4327FE6B127F0F0E83A70CED25DB0DFFB00((&L_18), ((int32_t)il2cpp_codegen_add(L_17, 1)), 1, 1, 0, 0, 0, /*hidden argument*/NULL); V_3 = L_18; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_19; L_19 = DateTime_AddTicks_m76D145EA6924296227BB2DD9A5A18C8A2B72EF1D((&V_3), ((int64_t)(-1)), NULL); G_B9_0 = L_19; } IL_0073: { V_1 = G_B9_0; goto IL_0116; } IL_0079: { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_20 = ___rule1; NullCheck(L_20); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_21; L_21 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(L_20, NULL); il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_22 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; bool L_23; L_23 = TimeSpan_op_GreaterThan_m8DAC0E8CCA11AFD73BAA4BE5BFB2FA4D65CFB78B(L_21, L_22, NULL); V_4 = L_23; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_24 = ___rule1; NullCheck(L_24); bool L_25; L_25 = AdjustmentRule_IsStartDateMarkerForBeginningOfYear_mC7ED256DEBA978E209CD4DFD12F55CFB15C4FF23(L_24, NULL); if (L_25) { goto IL_00b1; } } { DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_26 = ___daylightTime2; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_27 = L_26.___Start_0; bool L_28 = V_4; G_B12_0 = L_27; if (L_28) { G_B13_0 = L_27; goto IL_00a4; } } { il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_29 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; G_B14_0 = L_29; G_B14_1 = G_B12_0; goto IL_00aa; } IL_00a4: { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_30 = ___rule1; NullCheck(L_30); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_31; L_31 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(L_30, NULL); G_B14_0 = L_31; G_B14_1 = G_B13_0; } IL_00aa: { il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_32; L_32 = DateTime_op_Addition_m23FACB2D207CB24BE0E9C06AB4CF8CE0C4F0CAD8(G_B14_1, G_B14_0, NULL); G_B16_0 = L_32; goto IL_00c7; } IL_00b1: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_33 = (&(&___daylightTime2)->___Start_0); int32_t L_34; L_34 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138(L_33, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_35; memset((&L_35), 0, sizeof(L_35)); DateTime__ctor_m1F66A4327FE6B127F0F0E83A70CED25DB0DFFB00((&L_35), L_34, 1, 1, 0, 0, 0, /*hidden argument*/NULL); G_B16_0 = L_35; } IL_00c7: { V_0 = G_B16_0; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_36 = ___rule1; NullCheck(L_36); bool L_37; L_37 = AdjustmentRule_IsEndDateMarkerForEndOfYear_m35FDE7810F68D5CB9F22899015ADFE1617A3B964(L_36, NULL); if (L_37) { goto IL_00f3; } } { DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_38 = ___daylightTime2; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_39 = L_38.___End_1; bool L_40 = V_4; G_B18_0 = L_39; if (L_40) { G_B19_0 = L_39; goto IL_00e1; } } { il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_41 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; G_B20_0 = L_41; G_B20_1 = G_B18_0; goto IL_00ec; } IL_00e1: { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_42 = ___rule1; NullCheck(L_42); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_43; L_43 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(L_42, NULL); il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_44; L_44 = TimeSpan_op_UnaryNegation_m48BDA8280B7A09AD8DB90844AAD1DB7C0F473607(L_43, NULL); G_B20_0 = L_44; G_B20_1 = G_B19_0; } IL_00ec: { il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_45; L_45 = DateTime_op_Addition_m23FACB2D207CB24BE0E9C06AB4CF8CE0C4F0CAD8(G_B20_1, G_B20_0, NULL); G_B22_0 = L_45; goto IL_0115; } IL_00f3: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_46 = (&(&___daylightTime2)->___End_1); int32_t L_47; L_47 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138(L_46, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_48; memset((&L_48), 0, sizeof(L_48)); DateTime__ctor_m1F66A4327FE6B127F0F0E83A70CED25DB0DFFB00((&L_48), ((int32_t)il2cpp_codegen_add(L_47, 1)), 1, 1, 0, 0, 0, /*hidden argument*/NULL); V_3 = L_48; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_49; L_49 = DateTime_AddTicks_m76D145EA6924296227BB2DD9A5A18C8A2B72EF1D((&V_3), ((int64_t)(-1)), NULL); G_B22_0 = L_49; } IL_0115: { V_1 = G_B22_0; } IL_0116: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_50 = V_0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_51 = ___time0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_52 = V_1; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_53 = ___rule1; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); bool L_54; L_54 = TimeZoneInfo_CheckIsDst_mB9BFB34A7B7B00BCFE1041B85A3A471527BAB6C9(L_50, L_51, L_52, (bool)0, L_53, NULL); V_2 = L_54; bool L_55 = V_2; if (!L_55) { goto IL_0140; } } { int32_t L_56; L_56 = DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993((&___time0), NULL); if ((!(((uint32_t)L_56) == ((uint32_t)2)))) { goto IL_0140; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_57 = ___time0; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_58 = ___rule1; DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_59 = ___daylightTime2; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); bool L_60; L_60 = TimeZoneInfo_GetIsAmbiguousTime_m2C85523FAD6DD18D294FEDD55EF94F1F7BFB090B(L_57, L_58, L_59, NULL); if (!L_60) { goto IL_0140; } } { bool L_61; L_61 = DateTime_IsAmbiguousDaylightSavingTime_m64C6D8280BA8A65E63FBE5F84F52702ABE15CE27((&___time0), NULL); V_2 = L_61; } IL_0140: { bool L_62 = V_2; return L_62; } } // System.TimeSpan System.TimeZoneInfo::GetDaylightSavingsStartOffsetFromUtc(System.TimeSpan,System.TimeZoneInfo/AdjustmentRule,System.Nullable`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_GetDaylightSavingsStartOffsetFromUtc_m51CDB9591A7421A0CB8C410FCEA93544772F7710 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___baseUtcOffset0, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___rule1, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___ruleIndex2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* V_0 = NULL; { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_0 = ___rule1; NullCheck(L_0); bool L_1; L_1 = AdjustmentRule_get_NoDaylightTransitions_mA92395F5741FACBEE835A929B37B6BE7D50CE3FF_inline(L_0, NULL); if (!L_1) { goto IL_0029; } } { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_2 = ___rule1; Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_3 = ___ruleIndex2; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_4; L_4 = TimeZoneInfo_GetPreviousAdjustmentRule_m9F74F6192D83D4ABDD55587AA045AE3B3FB7ABB3(__this, L_2, L_3, NULL); V_0 = L_4; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_5 = ___baseUtcOffset0; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_6 = V_0; NullCheck(L_6); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_7; L_7 = AdjustmentRule_get_BaseUtcOffsetDelta_m0A089D2D9C6A8C6D4460BE4403DDE16FD0D97075_inline(L_6, NULL); il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_8; L_8 = TimeSpan_op_Addition_m4CA781FA121EB39944AE59C6BDD9304C42E74DFB(L_5, L_7, NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_9 = V_0; NullCheck(L_9); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_10; L_10 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(L_9, NULL); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_11; L_11 = TimeSpan_op_Addition_m4CA781FA121EB39944AE59C6BDD9304C42E74DFB(L_8, L_10, NULL); return L_11; } IL_0029: { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_12 = ___baseUtcOffset0; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_13 = ___rule1; NullCheck(L_13); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_14; L_14 = AdjustmentRule_get_BaseUtcOffsetDelta_m0A089D2D9C6A8C6D4460BE4403DDE16FD0D97075_inline(L_13, NULL); il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_15; L_15 = TimeSpan_op_Addition_m4CA781FA121EB39944AE59C6BDD9304C42E74DFB(L_12, L_14, NULL); return L_15; } } // System.TimeSpan System.TimeZoneInfo::GetDaylightSavingsEndOffsetFromUtc(System.TimeSpan,System.TimeZoneInfo/AdjustmentRule) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_GetDaylightSavingsEndOffsetFromUtc_m8B8363BCFB2A08847D34732523F0A6262A3EC78D (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___baseUtcOffset0, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___rule1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_0 = ___baseUtcOffset0; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_1 = ___rule1; NullCheck(L_1); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_2; L_2 = AdjustmentRule_get_BaseUtcOffsetDelta_m0A089D2D9C6A8C6D4460BE4403DDE16FD0D97075_inline(L_1, NULL); il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_3; L_3 = TimeSpan_op_Addition_m4CA781FA121EB39944AE59C6BDD9304C42E74DFB(L_0, L_2, NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_4 = ___rule1; NullCheck(L_4); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_5; L_5 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(L_4, NULL); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_6; L_6 = TimeSpan_op_Addition_m4CA781FA121EB39944AE59C6BDD9304C42E74DFB(L_3, L_5, NULL); return L_6; } } // System.Boolean System.TimeZoneInfo::GetIsDaylightSavingsFromUtc(System.DateTime,System.Int32,System.TimeSpan,System.TimeZoneInfo/AdjustmentRule,System.Nullable`1,System.Boolean&,System.TimeZoneInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_GetIsDaylightSavingsFromUtc_m3BFA7CFCB8A3AF1B6665D3CD83FB846ACCEF3BD9 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___time0, int32_t ___year1, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___utc2, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___rule3, Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___ruleIndex4, bool* ___isAmbiguousLocalDst5, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___zone6, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 V_0; memset((&V_0), 0, sizeof(V_0)); bool V_1 = false; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_2; memset((&V_2), 0, sizeof(V_2)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_3; memset((&V_3), 0, sizeof(V_3)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_4; memset((&V_4), 0, sizeof(V_4)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_5; memset((&V_5), 0, sizeof(V_5)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_6; memset((&V_6), 0, sizeof(V_6)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_7; memset((&V_7), 0, sizeof(V_7)); bool V_8 = false; Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 V_9; memset((&V_9), 0, sizeof(V_9)); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* V_10 = NULL; Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 V_11; memset((&V_11), 0, sizeof(V_11)); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* V_12 = NULL; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_13; memset((&V_13), 0, sizeof(V_13)); il2cpp::utils::ExceptionSupportStack __active_exceptions; bool* G_B25_0 = NULL; bool* G_B24_0 = NULL; int32_t G_B26_0 = 0; bool* G_B26_1 = NULL; bool* G_B30_0 = NULL; bool* G_B29_0 = NULL; int32_t G_B31_0 = 0; bool* G_B31_1 = NULL; bool* G_B36_0 = NULL; bool* G_B35_0 = NULL; int32_t G_B37_0 = 0; bool* G_B37_1 = NULL; { bool* L_0 = ___isAmbiguousLocalDst5; *((int8_t*)L_0) = (int8_t)0; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_1 = ___rule3; if (L_1) { goto IL_0009; } } { return (bool)0; } IL_0009: { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_2 = ___zone6; int32_t L_3 = ___year1; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_4 = ___rule3; Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_5 = ___ruleIndex4; NullCheck(L_2); DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_6; L_6 = TimeZoneInfo_GetDaylightTime_m85B0522E746DC6A8C5052F613BEA936BF329B7AD(L_2, L_3, L_4, L_5, NULL); V_0 = L_6; V_1 = (bool)0; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_7 = ___zone6; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_8 = ___utc2; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_9 = ___rule3; Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_10 = ___ruleIndex4; NullCheck(L_7); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_11; L_11 = TimeZoneInfo_GetDaylightSavingsStartOffsetFromUtc_m51CDB9591A7421A0CB8C410FCEA93544772F7710(L_7, L_8, L_9, L_10, NULL); V_2 = L_11; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_12 = ___rule3; NullCheck(L_12); bool L_13; L_13 = AdjustmentRule_IsStartDateMarkerForBeginningOfYear_mC7ED256DEBA978E209CD4DFD12F55CFB15C4FF23(L_12, NULL); if (!L_13) { goto IL_00cc; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_14 = (&(&V_0)->___Start_0); int32_t L_15; L_15 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138(L_14, NULL); il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); int32_t L_16; L_16 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138((&((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MinValue_32), NULL); if ((((int32_t)L_15) <= ((int32_t)L_16))) { goto IL_00cc; } } { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_17 = ___zone6; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_18 = (&(&V_0)->___Start_0); int32_t L_19; L_19 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138(L_18, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_20; memset((&L_20), 0, sizeof(L_20)); DateTime__ctor_mA3BF7CE28807F0A02634FD43913FAAFD989CEE88((&L_20), ((int32_t)il2cpp_codegen_subtract(L_19, 1)), ((int32_t)12), ((int32_t)31), /*hidden argument*/NULL); NullCheck(L_17); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_21; L_21 = TimeZoneInfo_GetAdjustmentRuleForTime_mDFC301B0D8E40FC4212536302A370F137239ADAB(L_17, L_20, (&V_9), NULL); V_10 = L_21; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_22 = V_10; if (!L_22) { goto IL_00ad; } } { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_23 = V_10; NullCheck(L_23); bool L_24; L_24 = AdjustmentRule_IsEndDateMarkerForEndOfYear_m35FDE7810F68D5CB9F22899015ADFE1617A3B964(L_23, NULL); if (!L_24) { goto IL_00ad; } } { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_25 = ___zone6; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_26 = (&(&V_0)->___Start_0); int32_t L_27; L_27 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138(L_26, NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_28 = V_10; Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_29 = V_9; NullCheck(L_25); DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_30; L_30 = TimeZoneInfo_GetDaylightTime_m85B0522E746DC6A8C5052F613BEA936BF329B7AD(L_25, ((int32_t)il2cpp_codegen_subtract(L_27, 1)), L_28, L_29, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_31 = L_30.___Start_0; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_32 = ___utc2; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_33; L_33 = DateTime_op_Subtraction_m325B9AE4DB04038087427DEDF0687D6F95305817(L_31, L_32, NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_34 = V_10; NullCheck(L_34); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_35; L_35 = AdjustmentRule_get_BaseUtcOffsetDelta_m0A089D2D9C6A8C6D4460BE4403DDE16FD0D97075_inline(L_34, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_36; L_36 = DateTime_op_Subtraction_m325B9AE4DB04038087427DEDF0687D6F95305817(L_33, L_35, NULL); V_3 = L_36; V_1 = (bool)1; goto IL_00d9; } IL_00ad: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_37 = (&(&V_0)->___Start_0); int32_t L_38; L_38 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138(L_37, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_39; memset((&L_39), 0, sizeof(L_39)); DateTime__ctor_m1F66A4327FE6B127F0F0E83A70CED25DB0DFFB00((&L_39), L_38, 1, 1, 0, 0, 0, /*hidden argument*/NULL); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_40 = V_2; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_41; L_41 = DateTime_op_Subtraction_m325B9AE4DB04038087427DEDF0687D6F95305817(L_39, L_40, NULL); V_3 = L_41; goto IL_00d9; } IL_00cc: { DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_42 = V_0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_43 = L_42.___Start_0; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_44 = V_2; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_45; L_45 = DateTime_op_Subtraction_m325B9AE4DB04038087427DEDF0687D6F95305817(L_43, L_44, NULL); V_3 = L_45; } IL_00d9: { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_46 = ___zone6; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_47 = ___utc2; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_48 = ___rule3; NullCheck(L_46); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_49; L_49 = TimeZoneInfo_GetDaylightSavingsEndOffsetFromUtc_m8B8363BCFB2A08847D34732523F0A6262A3EC78D(L_46, L_47, L_48, NULL); V_4 = L_49; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_50 = ___rule3; NullCheck(L_50); bool L_51; L_51 = AdjustmentRule_IsEndDateMarkerForEndOfYear_m35FDE7810F68D5CB9F22899015ADFE1617A3B964(L_50, NULL); if (!L_51) { goto IL_01ef; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_52 = (&(&V_0)->___End_1); int32_t L_53; L_53 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138(L_52, NULL); il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); int32_t L_54; L_54 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138((&((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MaxValue_33), NULL); if ((((int32_t)L_53) >= ((int32_t)L_54))) { goto IL_01ef; } } { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_55 = ___zone6; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_56 = (&(&V_0)->___End_1); int32_t L_57; L_57 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138(L_56, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_58; memset((&L_58), 0, sizeof(L_58)); DateTime__ctor_mA3BF7CE28807F0A02634FD43913FAAFD989CEE88((&L_58), ((int32_t)il2cpp_codegen_add(L_57, 1)), 1, 1, /*hidden argument*/NULL); NullCheck(L_55); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_59; L_59 = TimeZoneInfo_GetAdjustmentRuleForTime_mDFC301B0D8E40FC4212536302A370F137239ADAB(L_55, L_58, (&V_11), NULL); V_12 = L_59; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_60 = V_12; if (!L_60) { goto IL_01c1; } } { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_61 = V_12; NullCheck(L_61); bool L_62; L_62 = AdjustmentRule_IsStartDateMarkerForBeginningOfYear_mC7ED256DEBA978E209CD4DFD12F55CFB15C4FF23(L_61, NULL); if (!L_62) { goto IL_01c1; } } { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_63 = V_12; NullCheck(L_63); bool L_64; L_64 = AdjustmentRule_IsEndDateMarkerForEndOfYear_m35FDE7810F68D5CB9F22899015ADFE1617A3B964(L_63, NULL); if (!L_64) { goto IL_017f; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_65 = (&(&V_0)->___End_1); int32_t L_66; L_66 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138(L_65, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_67; memset((&L_67), 0, sizeof(L_67)); DateTime__ctor_mA3BF7CE28807F0A02634FD43913FAAFD989CEE88((&L_67), ((int32_t)il2cpp_codegen_add(L_66, 1)), ((int32_t)12), ((int32_t)31), /*hidden argument*/NULL); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_68 = ___utc2; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_69; L_69 = DateTime_op_Subtraction_m325B9AE4DB04038087427DEDF0687D6F95305817(L_67, L_68, NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_70 = V_12; NullCheck(L_70); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_71; L_71 = AdjustmentRule_get_BaseUtcOffsetDelta_m0A089D2D9C6A8C6D4460BE4403DDE16FD0D97075_inline(L_70, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_72; L_72 = DateTime_op_Subtraction_m325B9AE4DB04038087427DEDF0687D6F95305817(L_69, L_71, NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_73 = V_12; NullCheck(L_73); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_74; L_74 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(L_73, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_75; L_75 = DateTime_op_Subtraction_m325B9AE4DB04038087427DEDF0687D6F95305817(L_72, L_74, NULL); V_5 = L_75; goto IL_01bd; } IL_017f: { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_76 = ___zone6; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_77 = (&(&V_0)->___End_1); int32_t L_78; L_78 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138(L_77, NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_79 = V_12; Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_80 = V_11; NullCheck(L_76); DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_81; L_81 = TimeZoneInfo_GetDaylightTime_m85B0522E746DC6A8C5052F613BEA936BF329B7AD(L_76, ((int32_t)il2cpp_codegen_add(L_78, 1)), L_79, L_80, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_82 = L_81.___End_1; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_83 = ___utc2; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_84; L_84 = DateTime_op_Subtraction_m325B9AE4DB04038087427DEDF0687D6F95305817(L_82, L_83, NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_85 = V_12; NullCheck(L_85); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_86; L_86 = AdjustmentRule_get_BaseUtcOffsetDelta_m0A089D2D9C6A8C6D4460BE4403DDE16FD0D97075_inline(L_85, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_87; L_87 = DateTime_op_Subtraction_m325B9AE4DB04038087427DEDF0687D6F95305817(L_84, L_86, NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_88 = V_12; NullCheck(L_88); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_89; L_89 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(L_88, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_90; L_90 = DateTime_op_Subtraction_m325B9AE4DB04038087427DEDF0687D6F95305817(L_87, L_89, NULL); V_5 = L_90; } IL_01bd: { V_1 = (bool)1; goto IL_01fe; } IL_01c1: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_91 = (&(&V_0)->___End_1); int32_t L_92; L_92 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138(L_91, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_93; memset((&L_93), 0, sizeof(L_93)); DateTime__ctor_m1F66A4327FE6B127F0F0E83A70CED25DB0DFFB00((&L_93), ((int32_t)il2cpp_codegen_add(L_92, 1)), 1, 1, 0, 0, 0, /*hidden argument*/NULL); V_13 = L_93; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_94; L_94 = DateTime_AddTicks_m76D145EA6924296227BB2DD9A5A18C8A2B72EF1D((&V_13), ((int64_t)(-1)), NULL); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_95 = V_4; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_96; L_96 = DateTime_op_Subtraction_m325B9AE4DB04038087427DEDF0687D6F95305817(L_94, L_95, NULL); V_5 = L_96; goto IL_01fe; } IL_01ef: { DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_97 = V_0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_98 = L_97.___End_1; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_99 = V_4; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_100; L_100 = DateTime_op_Subtraction_m325B9AE4DB04038087427DEDF0687D6F95305817(L_98, L_99, NULL); V_5 = L_100; } IL_01fe: { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* L_101 = (&(&V_0)->___Delta_2); int64_t L_102; L_102 = TimeSpan_get_Ticks_mC50131E57621F29FACC53B3241432ABB874FA1B5_inline(L_101, NULL); if ((((int64_t)L_102) <= ((int64_t)((int64_t)0)))) { goto IL_0223; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_103 = V_5; DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_104 = V_0; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_105 = L_104.___Delta_2; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_106; L_106 = DateTime_op_Subtraction_m325B9AE4DB04038087427DEDF0687D6F95305817(L_103, L_105, NULL); V_6 = L_106; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_107 = V_5; V_7 = L_107; goto IL_0234; } IL_0223: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_108 = V_3; V_6 = L_108; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_109 = V_3; DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_110 = V_0; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_111 = L_110.___Delta_2; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_112; L_112 = DateTime_op_Subtraction_m325B9AE4DB04038087427DEDF0687D6F95305817(L_109, L_111, NULL); V_7 = L_112; } IL_0234: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_113 = V_3; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_114 = ___time0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_115 = V_5; bool L_116 = V_1; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_117 = ___rule3; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); bool L_118; L_118 = TimeZoneInfo_CheckIsDst_mB9BFB34A7B7B00BCFE1041B85A3A471527BAB6C9(L_113, L_114, L_115, L_116, L_117, NULL); V_8 = L_118; bool L_119 = V_8; if (!L_119) { goto IL_02d8; } } { bool* L_120 = ___isAmbiguousLocalDst5; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_121 = ___time0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_122 = V_6; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_123; L_123 = DateTime_op_GreaterThanOrEqual_mBEEE5CB06F515D621E03D91F54AB26EEA73F1D09(L_121, L_122, NULL); G_B24_0 = L_120; if (!L_123) { G_B25_0 = L_120; goto IL_025e; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_124 = ___time0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_125 = V_7; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_126; L_126 = DateTime_op_LessThan_mC39C4E1CDE23ED2ABA8D1DC9B4283B1BC1ACDB36(L_124, L_125, NULL); G_B26_0 = ((int32_t)(L_126)); G_B26_1 = G_B24_0; goto IL_025f; } IL_025e: { G_B26_0 = 0; G_B26_1 = G_B25_0; } IL_025f: { *((int8_t*)G_B26_1) = (int8_t)G_B26_0; bool* L_127 = ___isAmbiguousLocalDst5; int32_t L_128 = *((uint8_t*)L_127); if (L_128) { goto IL_02d8; } } { int32_t L_129; L_129 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138((&V_6), NULL); int32_t L_130; L_130 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138((&V_7), NULL); if ((((int32_t)L_129) == ((int32_t)L_130))) { goto IL_02d8; } } try {// begin try (depth: 1) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_131; L_131 = DateTime_AddYears_mA68B1642A84DA30E21F6279BE5196FC07B578DEE((&V_6), 1, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_132; L_132 = DateTime_AddYears_mA68B1642A84DA30E21F6279BE5196FC07B578DEE((&V_7), 1, NULL); bool* L_133 = ___isAmbiguousLocalDst5; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_134 = ___time0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_135 = V_6; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_136; L_136 = DateTime_op_GreaterThanOrEqual_mBEEE5CB06F515D621E03D91F54AB26EEA73F1D09(L_134, L_135, NULL); G_B29_0 = L_133; if (!L_136) { G_B30_0 = L_133; goto IL_029d_1; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_137 = ___time0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_138 = V_7; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_139; L_139 = DateTime_op_LessThan_mC39C4E1CDE23ED2ABA8D1DC9B4283B1BC1ACDB36(L_137, L_138, NULL); G_B31_0 = ((int32_t)(L_139)); G_B31_1 = G_B29_0; goto IL_029e_1; } IL_029d_1: { G_B31_0 = 0; G_B31_1 = G_B30_0; } IL_029e_1: { *((int8_t*)G_B31_1) = (int8_t)G_B31_0; goto IL_02a4; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_02a1; } throw e; } CATCH_02a1: {// begin catch(System.ArgumentOutOfRangeException) IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_02a4; }// end catch (depth: 1) IL_02a4: { bool* L_140 = ___isAmbiguousLocalDst5; int32_t L_141 = *((uint8_t*)L_140); if (L_141) { goto IL_02d8; } } try {// begin try (depth: 1) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_142; L_142 = DateTime_AddYears_mA68B1642A84DA30E21F6279BE5196FC07B578DEE((&V_6), (-1), NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_143; L_143 = DateTime_AddYears_mA68B1642A84DA30E21F6279BE5196FC07B578DEE((&V_7), (-1), NULL); bool* L_144 = ___isAmbiguousLocalDst5; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_145 = ___time0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_146 = V_6; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_147; L_147 = DateTime_op_GreaterThanOrEqual_mBEEE5CB06F515D621E03D91F54AB26EEA73F1D09(L_145, L_146, NULL); G_B35_0 = L_144; if (!L_147) { G_B36_0 = L_144; goto IL_02d1_1; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_148 = ___time0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_149 = V_7; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_150; L_150 = DateTime_op_LessThan_mC39C4E1CDE23ED2ABA8D1DC9B4283B1BC1ACDB36(L_148, L_149, NULL); G_B37_0 = ((int32_t)(L_150)); G_B37_1 = G_B35_0; goto IL_02d2_1; } IL_02d1_1: { G_B37_0 = 0; G_B37_1 = G_B36_0; } IL_02d2_1: { *((int8_t*)G_B37_1) = (int8_t)G_B37_0; goto IL_02d8; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_02d5; } throw e; } CATCH_02d5: {// begin catch(System.ArgumentOutOfRangeException) IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_02d8; }// end catch (depth: 1) IL_02d8: { bool L_151 = V_8; return L_151; } } // System.Boolean System.TimeZoneInfo::CheckIsDst(System.DateTime,System.DateTime,System.DateTime,System.Boolean,System.TimeZoneInfo/AdjustmentRule) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_CheckIsDst_mB9BFB34A7B7B00BCFE1041B85A3A471527BAB6C9 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___startTime0, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___time1, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___endTime2, bool ___ignoreYearAdjustment3, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___rule4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { bool L_0 = ___ignoreYearAdjustment3; if (L_0) { goto IL_0044; } } { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_1 = ___rule4; NullCheck(L_1); bool L_2; L_2 = AdjustmentRule_get_NoDaylightTransitions_mA92395F5741FACBEE835A929B37B6BE7D50CE3FF_inline(L_1, NULL); if (L_2) { goto IL_0044; } } { int32_t L_3; L_3 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138((&___startTime0), NULL); V_0 = L_3; int32_t L_4; L_4 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138((&___endTime2), NULL); V_1 = L_4; int32_t L_5 = V_0; int32_t L_6 = V_1; if ((((int32_t)L_5) == ((int32_t)L_6))) { goto IL_002c; } } { int32_t L_7 = V_0; int32_t L_8 = V_1; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_9; L_9 = DateTime_AddYears_mA68B1642A84DA30E21F6279BE5196FC07B578DEE((&___endTime2), ((int32_t)il2cpp_codegen_subtract(L_7, L_8)), NULL); ___endTime2 = L_9; } IL_002c: { int32_t L_10; L_10 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138((&___time1), NULL); V_2 = L_10; int32_t L_11 = V_0; int32_t L_12 = V_2; if ((((int32_t)L_11) == ((int32_t)L_12))) { goto IL_0044; } } { int32_t L_13 = V_0; int32_t L_14 = V_2; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_15; L_15 = DateTime_AddYears_mA68B1642A84DA30E21F6279BE5196FC07B578DEE((&___time1), ((int32_t)il2cpp_codegen_subtract(L_13, L_14)), NULL); ___time1 = L_15; } IL_0044: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_16 = ___startTime0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_17 = ___endTime2; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_18; L_18 = DateTime_op_GreaterThan_mA9021939CEE6D93308C1CFB63C7E6D5CA58F7B92(L_16, L_17, NULL); if (!L_18) { goto IL_0060; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_19 = ___time1; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_20 = ___endTime2; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_21; L_21 = DateTime_op_LessThan_mC39C4E1CDE23ED2ABA8D1DC9B4283B1BC1ACDB36(L_19, L_20, NULL); if (L_21) { goto IL_005e; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_22 = ___time1; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_23 = ___startTime0; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_24; L_24 = DateTime_op_GreaterThanOrEqual_mBEEE5CB06F515D621E03D91F54AB26EEA73F1D09(L_22, L_23, NULL); return L_24; } IL_005e: { return (bool)1; } IL_0060: { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_25 = ___rule4; NullCheck(L_25); bool L_26; L_26 = AdjustmentRule_get_NoDaylightTransitions_mA92395F5741FACBEE835A929B37B6BE7D50CE3FF_inline(L_25, NULL); if (!L_26) { goto IL_007c; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_27 = ___time1; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_28 = ___startTime0; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_29; L_29 = DateTime_op_GreaterThanOrEqual_mBEEE5CB06F515D621E03D91F54AB26EEA73F1D09(L_27, L_28, NULL); if (!L_29) { goto IL_007a; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_30 = ___time1; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_31 = ___endTime2; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_32; L_32 = DateTime_op_LessThanOrEqual_m458241757285ECEABEDA1F8105546FBFCD9ECB80(L_30, L_31, NULL); return L_32; } IL_007a: { return (bool)0; } IL_007c: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_33 = ___time1; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_34 = ___startTime0; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_35; L_35 = DateTime_op_GreaterThanOrEqual_mBEEE5CB06F515D621E03D91F54AB26EEA73F1D09(L_33, L_34, NULL); if (!L_35) { goto IL_008d; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_36 = ___time1; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_37 = ___endTime2; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_38; L_38 = DateTime_op_LessThan_mC39C4E1CDE23ED2ABA8D1DC9B4283B1BC1ACDB36(L_36, L_37, NULL); return L_38; } IL_008d: { return (bool)0; } } // System.Boolean System.TimeZoneInfo::GetIsAmbiguousTime(System.DateTime,System.TimeZoneInfo/AdjustmentRule,System.Globalization.DaylightTimeStruct) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_GetIsAmbiguousTime_m2C85523FAD6DD18D294FEDD55EF94F1F7BFB090B (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___time0, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___rule1, DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 ___daylightTime2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_1; memset((&V_1), 0, sizeof(V_1)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_2; memset((&V_2), 0, sizeof(V_2)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_3; memset((&V_3), 0, sizeof(V_3)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_4; memset((&V_4), 0, sizeof(V_4)); il2cpp::utils::ExceptionSupportStack __active_exceptions; int32_t G_B13_0 = 0; int32_t G_B18_0 = 0; int32_t G_B24_0 = 0; { V_0 = (bool)0; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_0 = ___rule1; if (!L_0) { goto IL_0017; } } { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_1 = ___rule1; NullCheck(L_1); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_2; L_2 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(L_1, NULL); il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_3 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; bool L_4; L_4 = TimeSpan_op_Equality_m482BBD58F00FA3924F9AFD66F249274039197F1C(L_2, L_3, NULL); if (!L_4) { goto IL_0019; } } IL_0017: { bool L_5 = V_0; return L_5; } IL_0019: { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_6 = ___rule1; NullCheck(L_6); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_7; L_7 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(L_6, NULL); il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_8 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; bool L_9; L_9 = TimeSpan_op_GreaterThan_m8DAC0E8CCA11AFD73BAA4BE5BFB2FA4D65CFB78B(L_7, L_8, NULL); if (!L_9) { goto IL_0050; } } { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_10 = ___rule1; NullCheck(L_10); bool L_11; L_11 = AdjustmentRule_IsEndDateMarkerForEndOfYear_m35FDE7810F68D5CB9F22899015ADFE1617A3B964(L_10, NULL); if (!L_11) { goto IL_0035; } } { return (bool)0; } IL_0035: { DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_12 = ___daylightTime2; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_13 = L_12.___End_1; V_1 = L_13; DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_14 = ___daylightTime2; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_15 = L_14.___End_1; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_16 = ___rule1; NullCheck(L_16); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_17; L_17 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(L_16, NULL); il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_18; L_18 = DateTime_op_Subtraction_m325B9AE4DB04038087427DEDF0687D6F95305817(L_15, L_17, NULL); V_2 = L_18; goto IL_0073; } IL_0050: { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_19 = ___rule1; NullCheck(L_19); bool L_20; L_20 = AdjustmentRule_IsStartDateMarkerForBeginningOfYear_mC7ED256DEBA978E209CD4DFD12F55CFB15C4FF23(L_19, NULL); if (!L_20) { goto IL_005a; } } { return (bool)0; } IL_005a: { DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_21 = ___daylightTime2; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_22 = L_21.___Start_0; V_1 = L_22; DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_23 = ___daylightTime2; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_24 = L_23.___Start_0; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_25 = ___rule1; NullCheck(L_25); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_26; L_26 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(L_25, NULL); il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_27; L_27 = DateTime_op_Addition_m23FACB2D207CB24BE0E9C06AB4CF8CE0C4F0CAD8(L_24, L_26, NULL); V_2 = L_27; } IL_0073: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_28 = ___time0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_29 = V_2; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_30; L_30 = DateTime_op_GreaterThanOrEqual_mBEEE5CB06F515D621E03D91F54AB26EEA73F1D09(L_28, L_29, NULL); if (!L_30) { goto IL_0085; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_31 = ___time0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_32 = V_1; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_33; L_33 = DateTime_op_LessThan_mC39C4E1CDE23ED2ABA8D1DC9B4283B1BC1ACDB36(L_31, L_32, NULL); G_B13_0 = ((int32_t)(L_33)); goto IL_0086; } IL_0085: { G_B13_0 = 0; } IL_0086: { V_0 = (bool)G_B13_0; bool L_34 = V_0; if (L_34) { goto IL_00f7; } } { int32_t L_35; L_35 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138((&V_1), NULL); int32_t L_36; L_36 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138((&V_2), NULL); if ((((int32_t)L_35) == ((int32_t)L_36))) { goto IL_00f7; } } try {// begin try (depth: 1) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_37; L_37 = DateTime_AddYears_mA68B1642A84DA30E21F6279BE5196FC07B578DEE((&V_1), 1, NULL); V_3 = L_37; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_38; L_38 = DateTime_AddYears_mA68B1642A84DA30E21F6279BE5196FC07B578DEE((&V_2), 1, NULL); V_4 = L_38; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_39 = ___time0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_40 = V_4; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_41; L_41 = DateTime_op_GreaterThanOrEqual_mBEEE5CB06F515D621E03D91F54AB26EEA73F1D09(L_39, L_40, NULL); if (!L_41) { goto IL_00c0_1; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_42 = ___time0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_43 = V_3; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_44; L_44 = DateTime_op_LessThan_mC39C4E1CDE23ED2ABA8D1DC9B4283B1BC1ACDB36(L_42, L_43, NULL); G_B18_0 = ((int32_t)(L_44)); goto IL_00c1_1; } IL_00c0_1: { G_B18_0 = 0; } IL_00c1_1: { V_0 = (bool)G_B18_0; goto IL_00c7; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_00c4; } throw e; } CATCH_00c4: {// begin catch(System.ArgumentOutOfRangeException) IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_00c7; }// end catch (depth: 1) IL_00c7: { bool L_45 = V_0; if (L_45) { goto IL_00f7; } } try {// begin try (depth: 1) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_46; L_46 = DateTime_AddYears_mA68B1642A84DA30E21F6279BE5196FC07B578DEE((&V_1), (-1), NULL); V_3 = L_46; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_47; L_47 = DateTime_AddYears_mA68B1642A84DA30E21F6279BE5196FC07B578DEE((&V_2), (-1), NULL); V_4 = L_47; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_48 = ___time0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_49 = V_4; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_50; L_50 = DateTime_op_GreaterThanOrEqual_mBEEE5CB06F515D621E03D91F54AB26EEA73F1D09(L_48, L_49, NULL); if (!L_50) { goto IL_00f0_1; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_51 = ___time0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_52 = V_3; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_53; L_53 = DateTime_op_LessThan_mC39C4E1CDE23ED2ABA8D1DC9B4283B1BC1ACDB36(L_51, L_52, NULL); G_B24_0 = ((int32_t)(L_53)); goto IL_00f1_1; } IL_00f0_1: { G_B24_0 = 0; } IL_00f1_1: { V_0 = (bool)G_B24_0; goto IL_00f7; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_00f4; } throw e; } CATCH_00f4: {// begin catch(System.ArgumentOutOfRangeException) IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_00f7; }// end catch (depth: 1) IL_00f7: { bool L_54 = V_0; return L_54; } } // System.Boolean System.TimeZoneInfo::GetIsInvalidTime(System.DateTime,System.TimeZoneInfo/AdjustmentRule,System.Globalization.DaylightTimeStruct) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_GetIsInvalidTime_mF07394DEEBAAF33C8AC0DB10EE1D5E68DA99BD79 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___time0, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___rule1, DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 ___daylightTime2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_1; memset((&V_1), 0, sizeof(V_1)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_2; memset((&V_2), 0, sizeof(V_2)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_3; memset((&V_3), 0, sizeof(V_3)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_4; memset((&V_4), 0, sizeof(V_4)); il2cpp::utils::ExceptionSupportStack __active_exceptions; int32_t G_B13_0 = 0; int32_t G_B18_0 = 0; int32_t G_B24_0 = 0; { V_0 = (bool)0; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_0 = ___rule1; if (!L_0) { goto IL_0017; } } { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_1 = ___rule1; NullCheck(L_1); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_2; L_2 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(L_1, NULL); il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_3 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; bool L_4; L_4 = TimeSpan_op_Equality_m482BBD58F00FA3924F9AFD66F249274039197F1C(L_2, L_3, NULL); if (!L_4) { goto IL_0019; } } IL_0017: { bool L_5 = V_0; return L_5; } IL_0019: { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_6 = ___rule1; NullCheck(L_6); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_7; L_7 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(L_6, NULL); il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_8 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; bool L_9; L_9 = TimeSpan_op_LessThan_mCBD324D4CB69C45EF34ABEBE7B19BB23528897BA(L_7, L_8, NULL); if (!L_9) { goto IL_0050; } } { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_10 = ___rule1; NullCheck(L_10); bool L_11; L_11 = AdjustmentRule_IsEndDateMarkerForEndOfYear_m35FDE7810F68D5CB9F22899015ADFE1617A3B964(L_10, NULL); if (!L_11) { goto IL_0035; } } { return (bool)0; } IL_0035: { DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_12 = ___daylightTime2; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_13 = L_12.___End_1; V_1 = L_13; DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_14 = ___daylightTime2; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_15 = L_14.___End_1; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_16 = ___rule1; NullCheck(L_16); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_17; L_17 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(L_16, NULL); il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_18; L_18 = DateTime_op_Subtraction_m325B9AE4DB04038087427DEDF0687D6F95305817(L_15, L_17, NULL); V_2 = L_18; goto IL_0073; } IL_0050: { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_19 = ___rule1; NullCheck(L_19); bool L_20; L_20 = AdjustmentRule_IsStartDateMarkerForBeginningOfYear_mC7ED256DEBA978E209CD4DFD12F55CFB15C4FF23(L_19, NULL); if (!L_20) { goto IL_005a; } } { return (bool)0; } IL_005a: { DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_21 = ___daylightTime2; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_22 = L_21.___Start_0; V_1 = L_22; DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_23 = ___daylightTime2; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_24 = L_23.___Start_0; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_25 = ___rule1; NullCheck(L_25); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_26; L_26 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(L_25, NULL); il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_27; L_27 = DateTime_op_Addition_m23FACB2D207CB24BE0E9C06AB4CF8CE0C4F0CAD8(L_24, L_26, NULL); V_2 = L_27; } IL_0073: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_28 = ___time0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_29 = V_1; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_30; L_30 = DateTime_op_GreaterThanOrEqual_mBEEE5CB06F515D621E03D91F54AB26EEA73F1D09(L_28, L_29, NULL); if (!L_30) { goto IL_0085; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_31 = ___time0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_32 = V_2; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_33; L_33 = DateTime_op_LessThan_mC39C4E1CDE23ED2ABA8D1DC9B4283B1BC1ACDB36(L_31, L_32, NULL); G_B13_0 = ((int32_t)(L_33)); goto IL_0086; } IL_0085: { G_B13_0 = 0; } IL_0086: { V_0 = (bool)G_B13_0; bool L_34 = V_0; if (L_34) { goto IL_00f7; } } { int32_t L_35; L_35 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138((&V_1), NULL); int32_t L_36; L_36 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138((&V_2), NULL); if ((((int32_t)L_35) == ((int32_t)L_36))) { goto IL_00f7; } } try {// begin try (depth: 1) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_37; L_37 = DateTime_AddYears_mA68B1642A84DA30E21F6279BE5196FC07B578DEE((&V_1), 1, NULL); V_3 = L_37; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_38; L_38 = DateTime_AddYears_mA68B1642A84DA30E21F6279BE5196FC07B578DEE((&V_2), 1, NULL); V_4 = L_38; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_39 = ___time0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_40 = V_3; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_41; L_41 = DateTime_op_GreaterThanOrEqual_mBEEE5CB06F515D621E03D91F54AB26EEA73F1D09(L_39, L_40, NULL); if (!L_41) { goto IL_00c0_1; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_42 = ___time0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_43 = V_4; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_44; L_44 = DateTime_op_LessThan_mC39C4E1CDE23ED2ABA8D1DC9B4283B1BC1ACDB36(L_42, L_43, NULL); G_B18_0 = ((int32_t)(L_44)); goto IL_00c1_1; } IL_00c0_1: { G_B18_0 = 0; } IL_00c1_1: { V_0 = (bool)G_B18_0; goto IL_00c7; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_00c4; } throw e; } CATCH_00c4: {// begin catch(System.ArgumentOutOfRangeException) IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_00c7; }// end catch (depth: 1) IL_00c7: { bool L_45 = V_0; if (L_45) { goto IL_00f7; } } try {// begin try (depth: 1) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_46; L_46 = DateTime_AddYears_mA68B1642A84DA30E21F6279BE5196FC07B578DEE((&V_1), (-1), NULL); V_3 = L_46; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_47; L_47 = DateTime_AddYears_mA68B1642A84DA30E21F6279BE5196FC07B578DEE((&V_2), (-1), NULL); V_4 = L_47; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_48 = ___time0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_49 = V_3; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_50; L_50 = DateTime_op_GreaterThanOrEqual_mBEEE5CB06F515D621E03D91F54AB26EEA73F1D09(L_48, L_49, NULL); if (!L_50) { goto IL_00f0_1; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_51 = ___time0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_52 = V_4; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_53; L_53 = DateTime_op_LessThan_mC39C4E1CDE23ED2ABA8D1DC9B4283B1BC1ACDB36(L_51, L_52, NULL); G_B24_0 = ((int32_t)(L_53)); goto IL_00f1_1; } IL_00f0_1: { G_B24_0 = 0; } IL_00f1_1: { V_0 = (bool)G_B24_0; goto IL_00f7; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_00f4; } throw e; } CATCH_00f4: {// begin catch(System.ArgumentOutOfRangeException) IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_00f7; }// end catch (depth: 1) IL_00f7: { bool L_54 = V_0; return L_54; } } // System.TimeSpan System.TimeZoneInfo::GetUtcOffset(System.DateTime,System.TimeZoneInfo,System.TimeZoneInfoOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_GetUtcOffset_m3741D53BA21882EBC2C804CB7B9145CD12171C43 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___time0, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___zone1, int32_t ___flags2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_0; memset((&V_0), 0, sizeof(V_0)); Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 V_1; memset((&V_1), 0, sizeof(V_1)); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* V_2 = NULL; DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 V_3; memset((&V_3), 0, sizeof(V_3)); bool V_4 = false; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A G_B4_0; memset((&G_B4_0), 0, sizeof(G_B4_0)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A G_B3_0; memset((&G_B3_0), 0, sizeof(G_B3_0)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A G_B5_0; memset((&G_B5_0), 0, sizeof(G_B5_0)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A G_B5_1; memset((&G_B5_1), 0, sizeof(G_B5_1)); { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_0 = ___zone1; NullCheck(L_0); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_1; L_1 = TimeZoneInfo_get_BaseUtcOffset_m285A2D1E313B50B51A13F499192CDCEDBC702AE3_inline(L_0, NULL); V_0 = L_1; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_2 = ___zone1; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_3 = ___time0; NullCheck(L_2); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_4; L_4 = TimeZoneInfo_GetAdjustmentRuleForTime_mDFC301B0D8E40FC4212536302A370F137239ADAB(L_2, L_3, (&V_1), NULL); V_2 = L_4; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_5 = V_2; if (!L_5) { goto IL_005c; } } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_6 = V_0; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_7 = V_2; NullCheck(L_7); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_8; L_8 = AdjustmentRule_get_BaseUtcOffsetDelta_m0A089D2D9C6A8C6D4460BE4403DDE16FD0D97075_inline(L_7, NULL); il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_9; L_9 = TimeSpan_op_Addition_m4CA781FA121EB39944AE59C6BDD9304C42E74DFB(L_6, L_8, NULL); V_0 = L_9; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_10 = V_2; NullCheck(L_10); bool L_11; L_11 = AdjustmentRule_get_HasDaylightSaving_m3A74F6D064246B8CF21908A39055325FBE9DA73F(L_10, NULL); if (!L_11) { goto IL_005c; } } { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_12 = ___zone1; int32_t L_13; L_13 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138((&___time0), NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_14 = V_2; Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_15 = V_1; NullCheck(L_12); DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_16; L_16 = TimeZoneInfo_GetDaylightTime_m85B0522E746DC6A8C5052F613BEA936BF329B7AD(L_12, L_13, L_14, L_15, NULL); V_3 = L_16; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_17 = ___time0; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_18 = V_2; DaylightTimeStruct_tB667DCA32C2FA55FEFB2D8D3A871D4A5BF97CED1 L_19 = V_3; int32_t L_20 = ___flags2; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); bool L_21; L_21 = TimeZoneInfo_GetIsDaylightSavings_mB03A7532D229FDC74C3A720C3918C57E3CDB9C0A(L_17, L_18, L_19, L_20, NULL); V_4 = L_21; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_22 = V_0; bool L_23 = V_4; G_B3_0 = L_22; if (L_23) { G_B4_0 = L_22; goto IL_0050; } } { il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_24 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; G_B5_0 = L_24; G_B5_1 = G_B3_0; goto IL_0056; } IL_0050: { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_25 = V_2; NullCheck(L_25); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_26; L_26 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(L_25, NULL); G_B5_0 = L_26; G_B5_1 = G_B4_0; } IL_0056: { il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_27; L_27 = TimeSpan_op_Addition_m4CA781FA121EB39944AE59C6BDD9304C42E74DFB(G_B5_1, G_B5_0, NULL); V_0 = L_27; } IL_005c: { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_28 = V_0; return L_28; } } // System.TimeSpan System.TimeZoneInfo::GetUtcOffsetFromUtc(System.DateTime,System.TimeZoneInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_GetUtcOffsetFromUtc_m08FA9FF65B63CBC79D89AF11551D992499821260 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___time0, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___zone1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = ___time0; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_1 = ___zone1; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_2; L_2 = TimeZoneInfo_GetUtcOffsetFromUtc_m12F3C1464D6486EB6CD46471EA5D071EEE19913B(L_0, L_1, (&V_0), NULL); return L_2; } } // System.TimeSpan System.TimeZoneInfo::GetUtcOffsetFromUtc(System.DateTime,System.TimeZoneInfo,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_GetUtcOffsetFromUtc_m12F3C1464D6486EB6CD46471EA5D071EEE19913B (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___time0, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___zone1, bool* ___isDaylightSavings2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = ___time0; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_1 = ___zone1; bool* L_2 = ___isDaylightSavings2; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_3; L_3 = TimeZoneInfo_GetUtcOffsetFromUtc_m56457555F1923B673BDA645C17CBE6E7547B13EE(L_0, L_1, L_2, (&V_0), NULL); return L_3; } } // System.TimeSpan System.TimeZoneInfo::GetUtcOffsetFromUtc(System.DateTime,System.TimeZoneInfo,System.Boolean&,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_GetUtcOffsetFromUtc_m56457555F1923B673BDA645C17CBE6E7547B13EE (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___time0, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___zone1, bool* ___isDaylightSavings2, bool* ___isAmbiguousLocalDst3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_0; memset((&V_0), 0, sizeof(V_0)); int32_t V_1 = 0; Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 V_2; memset((&V_2), 0, sizeof(V_2)); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* V_3 = NULL; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_4; memset((&V_4), 0, sizeof(V_4)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A G_B9_0; memset((&G_B9_0), 0, sizeof(G_B9_0)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A G_B8_0; memset((&G_B8_0), 0, sizeof(G_B8_0)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A G_B10_0; memset((&G_B10_0), 0, sizeof(G_B10_0)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A G_B10_1; memset((&G_B10_1), 0, sizeof(G_B10_1)); { bool* L_0 = ___isDaylightSavings2; *((int8_t*)L_0) = (int8_t)0; bool* L_1 = ___isAmbiguousLocalDst3; *((int8_t*)L_1) = (int8_t)0; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_2 = ___zone1; NullCheck(L_2); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_3; L_3 = TimeZoneInfo_get_BaseUtcOffset_m285A2D1E313B50B51A13F499192CDCEDBC702AE3_inline(L_2, NULL); V_0 = L_3; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_4 = ___time0; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_5 = ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___s_maxDateOnly_9; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_6; L_6 = DateTime_op_GreaterThan_mA9021939CEE6D93308C1CFB63C7E6D5CA58F7B92(L_4, L_5, NULL); if (!L_6) { goto IL_0030; } } { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_7 = ___zone1; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_8 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MaxValue_33; NullCheck(L_7); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_9; L_9 = TimeZoneInfo_GetAdjustmentRuleForTime_mDFC301B0D8E40FC4212536302A370F137239ADAB(L_7, L_8, (&V_2), NULL); V_3 = L_9; V_1 = ((int32_t)9999); goto IL_006b; } IL_0030: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_10 = ___time0; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_11 = ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___s_minDateOnly_10; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_12; L_12 = DateTime_op_LessThan_mC39C4E1CDE23ED2ABA8D1DC9B4283B1BC1ACDB36(L_10, L_11, NULL); if (!L_12) { goto IL_004f; } } { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_13 = ___zone1; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_14 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MinValue_32; NullCheck(L_13); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_15; L_15 = TimeZoneInfo_GetAdjustmentRuleForTime_mDFC301B0D8E40FC4212536302A370F137239ADAB(L_13, L_14, (&V_2), NULL); V_3 = L_15; V_1 = 1; goto IL_006b; } IL_004f: { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_16 = ___zone1; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_17 = ___time0; NullCheck(L_16); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_18; L_18 = TimeZoneInfo_GetAdjustmentRuleForTime_mCBA5D97CD7A86677CC6E7F4AE9ADDF83096398F0(L_16, L_17, (bool)1, (&V_2), NULL); V_3 = L_18; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_19 = ___time0; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_20 = V_0; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_21; L_21 = DateTime_op_Addition_m23FACB2D207CB24BE0E9C06AB4CF8CE0C4F0CAD8(L_19, L_20, NULL); V_4 = L_21; int32_t L_22; L_22 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138((&V_4), NULL); V_1 = L_22; } IL_006b: { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_23 = V_3; if (!L_23) { goto IL_00ae; } } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_24 = V_0; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_25 = V_3; NullCheck(L_25); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_26; L_26 = AdjustmentRule_get_BaseUtcOffsetDelta_m0A089D2D9C6A8C6D4460BE4403DDE16FD0D97075_inline(L_25, NULL); il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_27; L_27 = TimeSpan_op_Addition_m4CA781FA121EB39944AE59C6BDD9304C42E74DFB(L_24, L_26, NULL); V_0 = L_27; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_28 = V_3; NullCheck(L_28); bool L_29; L_29 = AdjustmentRule_get_HasDaylightSaving_m3A74F6D064246B8CF21908A39055325FBE9DA73F(L_28, NULL); if (!L_29) { goto IL_00ae; } } { bool* L_30 = ___isDaylightSavings2; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_31 = ___time0; int32_t L_32 = V_1; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_33 = ___zone1; NullCheck(L_33); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_34 = L_33->____baseUtcOffset_4; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_35 = V_3; Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_36 = V_2; bool* L_37 = ___isAmbiguousLocalDst3; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_38 = ___zone1; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); bool L_39; L_39 = TimeZoneInfo_GetIsDaylightSavingsFromUtc_m3BFA7CFCB8A3AF1B6665D3CD83FB846ACCEF3BD9(L_31, L_32, L_34, L_35, L_36, L_37, L_38, NULL); *((int8_t*)L_30) = (int8_t)L_39; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_40 = V_0; bool* L_41 = ___isDaylightSavings2; int32_t L_42 = *((uint8_t*)L_41); G_B8_0 = L_40; if (L_42) { G_B9_0 = L_40; goto IL_00a2; } } { il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_43 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; G_B10_0 = L_43; G_B10_1 = G_B8_0; goto IL_00a8; } IL_00a2: { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_44 = V_3; NullCheck(L_44); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_45; L_45 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(L_44, NULL); G_B10_0 = L_45; G_B10_1 = G_B9_0; } IL_00a8: { il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_46; L_46 = TimeSpan_op_Addition_m4CA781FA121EB39944AE59C6BDD9304C42E74DFB(G_B10_1, G_B10_0, NULL); V_0 = L_46; } IL_00ae: { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_47 = V_0; return L_47; } } // System.DateTime System.TimeZoneInfo::TransitionTimeToDateTime(System.Int32,System.TimeZoneInfo/TransitionTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D TimeZoneInfo_TransitionTimeToDateTime_m925017F99E4907CECD8FE5D5C3763E5BCCBFEB3E (int32_t ___year0, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ___transitionTime1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_0; memset((&V_0), 0, sizeof(V_0)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_1; memset((&V_1), 0, sizeof(V_1)); int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; int32_t V_5 = 0; int32_t V_6 = 0; int32_t G_B3_0 = 0; int32_t G_B3_1 = 0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* G_B3_2 = NULL; int32_t G_B2_0 = 0; int32_t G_B2_1 = 0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* G_B2_2 = NULL; int32_t G_B4_0 = 0; int32_t G_B4_1 = 0; int32_t G_B4_2 = 0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* G_B4_3 = NULL; { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0; L_0 = TransitionTime_get_TimeOfDay_m21DF682C87AF1B2B28F275583E344BDBFA5787E9_inline((&___transitionTime1), NULL); V_1 = L_0; bool L_1; L_1 = TransitionTime_get_IsFixedDateRule_m8F920A7E971E18F7E165AF20C831208D14861379_inline((&___transitionTime1), NULL); if (!L_1) { goto IL_0063; } } { int32_t L_2 = ___year0; int32_t L_3; L_3 = TransitionTime_get_Month_m02516607C5B0FD478086A021F73796C71EB0D444_inline((&___transitionTime1), NULL); il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); int32_t L_4; L_4 = DateTime_DaysInMonth_m0D32B96A924B642096EAA09FFDE74F1B6568714C(L_2, L_3, NULL); V_2 = L_4; int32_t L_5 = ___year0; int32_t L_6; L_6 = TransitionTime_get_Month_m02516607C5B0FD478086A021F73796C71EB0D444_inline((&___transitionTime1), NULL); int32_t L_7 = V_2; int32_t L_8; L_8 = TransitionTime_get_Day_m0F83551F1C84F28AF5516225277AFE94CDE98445_inline((&___transitionTime1), NULL); G_B2_0 = L_6; G_B2_1 = L_5; G_B2_2 = (&V_0); if ((((int32_t)L_7) < ((int32_t)L_8))) { G_B3_0 = L_6; G_B3_1 = L_5; G_B3_2 = (&V_0); goto IL_003c; } } { int32_t L_9; L_9 = TransitionTime_get_Day_m0F83551F1C84F28AF5516225277AFE94CDE98445_inline((&___transitionTime1), NULL); G_B4_0 = L_9; G_B4_1 = G_B2_0; G_B4_2 = G_B2_1; G_B4_3 = G_B2_2; goto IL_003d; } IL_003c: { int32_t L_10 = V_2; G_B4_0 = L_10; G_B4_1 = G_B3_0; G_B4_2 = G_B3_1; G_B4_3 = G_B3_2; } IL_003d: { int32_t L_11; L_11 = DateTime_get_Hour_m350B2AEB6ED8AAD80F0779C1FD37EEE13952A7F3((&V_1), NULL); int32_t L_12; L_12 = DateTime_get_Minute_m73003491DA85D2C9951ECCF890D9BF6AFFB9E973((&V_1), NULL); int32_t L_13; L_13 = DateTime_get_Second_mC860BA28DED65249BE9EA46E4898730C7828B3EA((&V_1), NULL); int32_t L_14; L_14 = DateTime_get_Millisecond_mD47CAACAF231AA82552DA9F71836784AF8E27878((&V_1), NULL); DateTime__ctor_mA66CE5141E86C5BC75F79543F99A7BD77B420201(G_B4_3, G_B4_2, G_B4_1, G_B4_0, L_11, L_12, L_13, L_14, NULL); goto IL_0142; } IL_0063: { int32_t L_15; L_15 = TransitionTime_get_Week_mE32FFDD98D43B11CFBBC1C182601D6F167B392FC_inline((&___transitionTime1), NULL); if ((((int32_t)L_15) > ((int32_t)4))) { goto IL_00d9; } } { int32_t L_16 = ___year0; int32_t L_17; L_17 = TransitionTime_get_Month_m02516607C5B0FD478086A021F73796C71EB0D444_inline((&___transitionTime1), NULL); int32_t L_18; L_18 = DateTime_get_Hour_m350B2AEB6ED8AAD80F0779C1FD37EEE13952A7F3((&V_1), NULL); int32_t L_19; L_19 = DateTime_get_Minute_m73003491DA85D2C9951ECCF890D9BF6AFFB9E973((&V_1), NULL); int32_t L_20; L_20 = DateTime_get_Second_mC860BA28DED65249BE9EA46E4898730C7828B3EA((&V_1), NULL); int32_t L_21; L_21 = DateTime_get_Millisecond_mD47CAACAF231AA82552DA9F71836784AF8E27878((&V_1), NULL); DateTime__ctor_mA66CE5141E86C5BC75F79543F99A7BD77B420201((&V_0), L_16, L_17, 1, L_18, L_19, L_20, L_21, NULL); int32_t L_22; L_22 = DateTime_get_DayOfWeek_mAC680139BCAA1613FC134454D1AD1B502CB1BB68((&V_0), NULL); V_3 = L_22; int32_t L_23; L_23 = TransitionTime_get_DayOfWeek_mD78344AF8C9889C418F0ADAE412D1FD746D031FA_inline((&___transitionTime1), NULL); int32_t L_24 = V_3; V_4 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_23, L_24)); int32_t L_25 = V_4; if ((((int32_t)L_25) >= ((int32_t)0))) { goto IL_00b7; } } { int32_t L_26 = V_4; V_4 = ((int32_t)il2cpp_codegen_add(L_26, 7)); } IL_00b7: { int32_t L_27 = V_4; int32_t L_28; L_28 = TransitionTime_get_Week_mE32FFDD98D43B11CFBBC1C182601D6F167B392FC_inline((&___transitionTime1), NULL); V_4 = ((int32_t)il2cpp_codegen_add(L_27, ((int32_t)il2cpp_codegen_multiply(7, ((int32_t)il2cpp_codegen_subtract(L_28, 1)))))); int32_t L_29 = V_4; if ((((int32_t)L_29) <= ((int32_t)0))) { goto IL_0142; } } { int32_t L_30 = V_4; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_31; L_31 = DateTime_AddDays_m9DC06105845A82FEAF697D5E30308ABD49E5721B((&V_0), ((double)L_30), NULL); V_0 = L_31; goto IL_0142; } IL_00d9: { int32_t L_32 = ___year0; int32_t L_33; L_33 = TransitionTime_get_Month_m02516607C5B0FD478086A021F73796C71EB0D444_inline((&___transitionTime1), NULL); il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); int32_t L_34; L_34 = DateTime_DaysInMonth_m0D32B96A924B642096EAA09FFDE74F1B6568714C(L_32, L_33, NULL); V_5 = L_34; int32_t L_35 = ___year0; int32_t L_36; L_36 = TransitionTime_get_Month_m02516607C5B0FD478086A021F73796C71EB0D444_inline((&___transitionTime1), NULL); int32_t L_37 = V_5; int32_t L_38; L_38 = DateTime_get_Hour_m350B2AEB6ED8AAD80F0779C1FD37EEE13952A7F3((&V_1), NULL); int32_t L_39; L_39 = DateTime_get_Minute_m73003491DA85D2C9951ECCF890D9BF6AFFB9E973((&V_1), NULL); int32_t L_40; L_40 = DateTime_get_Second_mC860BA28DED65249BE9EA46E4898730C7828B3EA((&V_1), NULL); int32_t L_41; L_41 = DateTime_get_Millisecond_mD47CAACAF231AA82552DA9F71836784AF8E27878((&V_1), NULL); DateTime__ctor_mA66CE5141E86C5BC75F79543F99A7BD77B420201((&V_0), L_35, L_36, L_37, L_38, L_39, L_40, L_41, NULL); int32_t L_42; L_42 = DateTime_get_DayOfWeek_mAC680139BCAA1613FC134454D1AD1B502CB1BB68((&V_0), NULL); int32_t L_43; L_43 = TransitionTime_get_DayOfWeek_mD78344AF8C9889C418F0ADAE412D1FD746D031FA_inline((&___transitionTime1), NULL); V_6 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_42, (int32_t)L_43)); int32_t L_44 = V_6; if ((((int32_t)L_44) >= ((int32_t)0))) { goto IL_0131; } } { int32_t L_45 = V_6; V_6 = ((int32_t)il2cpp_codegen_add(L_45, 7)); } IL_0131: { int32_t L_46 = V_6; if ((((int32_t)L_46) <= ((int32_t)0))) { goto IL_0142; } } { int32_t L_47 = V_6; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_48; L_48 = DateTime_AddDays_m9DC06105845A82FEAF697D5E30308ABD49E5721B((&V_0), ((double)((-L_47))), NULL); V_0 = L_48; } IL_0142: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_49 = V_0; return L_49; } } // System.Void System.TimeZoneInfo::ValidateTimeZoneInfo(System.String,System.TimeSpan,System.TimeZoneInfo/AdjustmentRule[],System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo_ValidateTimeZoneInfo_m5E219078273AC961FA3D3B6CB9E08EAA51D3DFAB (String_t* ___id0, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___baseUtcOffset1, AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* ___adjustmentRules2, bool* ___adjustmentRulesSupportDst3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* V_0 = NULL; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* V_1 = NULL; int32_t V_2 = 0; { String_t* L_0 = ___id0; 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))); NullCheck(L_1); ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral996E5360F80E16B2189CC1E536C91CE68083F694)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeZoneInfo_ValidateTimeZoneInfo_m5E219078273AC961FA3D3B6CB9E08EAA51D3DFAB_RuntimeMethod_var))); } IL_000e: { String_t* L_2 = ___id0; NullCheck(L_2); int32_t L_3; L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_2, NULL); if (L_3) { goto IL_002c; } } { String_t* L_4 = ___id0; String_t* L_5; L_5 = SR_Format_mB99C6F1BE061EA1427A45176E0CAFB2A2C76D03F(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD80BD0A851B9B4C3B7389277DE499F6B156E3F9F)), L_4, NULL); ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_6 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_6); ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_6, L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral996E5360F80E16B2189CC1E536C91CE68083F694)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeZoneInfo_ValidateTimeZoneInfo_m5E219078273AC961FA3D3B6CB9E08EAA51D3DFAB_RuntimeMethod_var))); } IL_002c: { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_7 = ___baseUtcOffset1; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); bool L_8; L_8 = TimeZoneInfo_UtcOffsetOutOfRange_m9C0E0CF4DF97E37FDD985E90E42EDA9F55247C9E(L_7, NULL); if (!L_8) { goto IL_0044; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_9 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_9); ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral57A11AA8D8FC7CF3B0620CBC3C7E0CCA55D62E09)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral74D560302B70C9D57AC7C2692A505F648FD1B1A4)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeZoneInfo_ValidateTimeZoneInfo_m5E219078273AC961FA3D3B6CB9E08EAA51D3DFAB_RuntimeMethod_var))); } IL_0044: { int64_t L_10; L_10 = TimeSpan_get_Ticks_mC50131E57621F29FACC53B3241432ABB874FA1B5_inline((&___baseUtcOffset1), NULL); if (!((int64_t)(L_10%((int64_t)((int32_t)600000000))))) { goto IL_0064; } } { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_11 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_11); ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_11, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC093A43C681B135B2CCBFD21AF1C61BC84B52631)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral57A11AA8D8FC7CF3B0620CBC3C7E0CCA55D62E09)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeZoneInfo_ValidateTimeZoneInfo_m5E219078273AC961FA3D3B6CB9E08EAA51D3DFAB_RuntimeMethod_var))); } IL_0064: { bool* L_12 = ___adjustmentRulesSupportDst3; *((int8_t*)L_12) = (int8_t)0; AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_13 = ___adjustmentRules2; if (!L_13) { goto IL_00cc; } } { AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_14 = ___adjustmentRules2; NullCheck(L_14); if (!(((RuntimeArray*)L_14)->max_length)) { goto IL_00cc; } } { bool* L_15 = ___adjustmentRulesSupportDst3; *((int8_t*)L_15) = (int8_t)1; V_0 = (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07*)NULL; V_1 = (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07*)NULL; V_2 = 0; goto IL_00c6; } IL_0079: { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_16 = V_1; V_0 = L_16; AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_17 = ___adjustmentRules2; int32_t L_18 = V_2; NullCheck(L_17); int32_t L_19 = L_18; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_20 = (L_17)->GetAt(static_cast(L_19)); V_1 = L_20; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_21 = V_1; if (L_21) { goto IL_008d; } } { InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD* L_22 = (InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD_il2cpp_TypeInfo_var))); NullCheck(L_22); InvalidTimeZoneException__ctor_m4B7D809BE84CD42FF08EA16752B6BAC7F90D4C1A(L_22, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA2E34A7DAEE39E18F61A4200A3E455B5B0924DC1)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_22, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeZoneInfo_ValidateTimeZoneInfo_m5E219078273AC961FA3D3B6CB9E08EAA51D3DFAB_RuntimeMethod_var))); } IL_008d: { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_23 = ___baseUtcOffset1; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_24 = V_1; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); bool L_25; L_25 = TimeZoneInfo_IsValidAdjustmentRuleOffest_m04FC4314480C802208E96C633F7B812BD964AB80(L_23, L_24, NULL); if (L_25) { goto IL_00a1; } } { InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD* L_26 = (InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD_il2cpp_TypeInfo_var))); NullCheck(L_26); InvalidTimeZoneException__ctor_m4B7D809BE84CD42FF08EA16752B6BAC7F90D4C1A(L_26, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral300B73ED5344F3E06BA53DFEA13CECB98D33880A)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_26, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeZoneInfo_ValidateTimeZoneInfo_m5E219078273AC961FA3D3B6CB9E08EAA51D3DFAB_RuntimeMethod_var))); } IL_00a1: { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_27 = V_0; if (!L_27) { goto IL_00c2; } } { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_28 = V_1; NullCheck(L_28); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_29; L_29 = AdjustmentRule_get_DateStart_m89981208F272F07A4D46956A501E18C579BFBAFF_inline(L_28, NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_30 = V_0; NullCheck(L_30); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_31; L_31 = AdjustmentRule_get_DateEnd_mFF744CCAA5537C7992B23C8F56A90FCD85846B8D_inline(L_30, NULL); il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_32; L_32 = DateTime_op_LessThanOrEqual_m458241757285ECEABEDA1F8105546FBFCD9ECB80(L_29, L_31, NULL); if (!L_32) { goto IL_00c2; } } { InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD* L_33 = (InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidTimeZoneException_tAF2832EB9825C2AF85B06F1AB69AD1FEE54F99AD_il2cpp_TypeInfo_var))); NullCheck(L_33); InvalidTimeZoneException__ctor_m4B7D809BE84CD42FF08EA16752B6BAC7F90D4C1A(L_33, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB6FCDFEE719933C778C60D472C00101F05CD7A79)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_33, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeZoneInfo_ValidateTimeZoneInfo_m5E219078273AC961FA3D3B6CB9E08EAA51D3DFAB_RuntimeMethod_var))); } IL_00c2: { int32_t L_34 = V_2; V_2 = ((int32_t)il2cpp_codegen_add(L_34, 1)); } IL_00c6: { int32_t L_35 = V_2; AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_36 = ___adjustmentRules2; NullCheck(L_36); if ((((int32_t)L_35) < ((int32_t)((int32_t)(((RuntimeArray*)L_36)->max_length))))) { goto IL_0079; } } IL_00cc: { return; } } // System.Boolean System.TimeZoneInfo::UtcOffsetOutOfRange(System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_UtcOffsetOutOfRange_m9C0E0CF4DF97E37FDD985E90E42EDA9F55247C9E (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___offset0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_0 = ___offset0; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_1 = ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___MinOffset_12; il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); bool L_2; L_2 = TimeSpan_op_LessThan_mCBD324D4CB69C45EF34ABEBE7B19BB23528897BA(L_0, L_1, NULL); if (L_2) { goto IL_0019; } } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_3 = ___offset0; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_4 = ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___MaxOffset_11; il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); bool L_5; L_5 = TimeSpan_op_GreaterThan_m8DAC0E8CCA11AFD73BAA4BE5BFB2FA4D65CFB78B(L_3, L_4, NULL); return L_5; } IL_0019: { return (bool)1; } } // System.TimeSpan System.TimeZoneInfo::GetUtcOffset(System.TimeSpan,System.TimeZoneInfo/AdjustmentRule) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_GetUtcOffset_mFCA4CA49ADBEADEA64D197ABB65538CC5F53EB3E (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___baseUtcOffset0, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___adjustmentRule1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A G_B2_0; memset((&G_B2_0), 0, sizeof(G_B2_0)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A G_B1_0; memset((&G_B1_0), 0, sizeof(G_B1_0)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A G_B3_0; memset((&G_B3_0), 0, sizeof(G_B3_0)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A G_B3_1; memset((&G_B3_1), 0, sizeof(G_B3_1)); { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_0 = ___baseUtcOffset0; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_1 = ___adjustmentRule1; NullCheck(L_1); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_2; L_2 = AdjustmentRule_get_BaseUtcOffsetDelta_m0A089D2D9C6A8C6D4460BE4403DDE16FD0D97075_inline(L_1, NULL); il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_3; L_3 = TimeSpan_op_Addition_m4CA781FA121EB39944AE59C6BDD9304C42E74DFB(L_0, L_2, NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_4 = ___adjustmentRule1; NullCheck(L_4); bool L_5; L_5 = AdjustmentRule_get_HasDaylightSaving_m3A74F6D064246B8CF21908A39055325FBE9DA73F(L_4, NULL); G_B1_0 = L_3; if (L_5) { G_B2_0 = L_3; goto IL_001b; } } { il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_6 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; G_B3_0 = L_6; G_B3_1 = G_B1_0; goto IL_0021; } IL_001b: { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_7 = ___adjustmentRule1; NullCheck(L_7); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_8; L_8 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(L_7, NULL); G_B3_0 = L_8; G_B3_1 = G_B2_0; } IL_0021: { il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_9; L_9 = TimeSpan_op_Addition_m4CA781FA121EB39944AE59C6BDD9304C42E74DFB(G_B3_1, G_B3_0, NULL); return L_9; } } // System.Boolean System.TimeZoneInfo::IsValidAdjustmentRuleOffest(System.TimeSpan,System.TimeZoneInfo/AdjustmentRule) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeZoneInfo_IsValidAdjustmentRuleOffest_m04FC4314480C802208E96C633F7B812BD964AB80 (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___baseUtcOffset0, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___adjustmentRule1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_0 = ___baseUtcOffset0; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_1 = ___adjustmentRule1; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_2; L_2 = TimeZoneInfo_GetUtcOffset_mFCA4CA49ADBEADEA64D197ABB65538CC5F53EB3E(L_0, L_1, NULL); bool L_3; L_3 = TimeZoneInfo_UtcOffsetOutOfRange_m9C0E0CF4DF97E37FDD985E90E42EDA9F55247C9E(L_2, NULL); return (bool)((((int32_t)L_3) == ((int32_t)0))? 1 : 0); } } // System.Void System.TimeZoneInfo::NormalizeAdjustmentRuleOffset(System.TimeSpan,System.TimeZoneInfo/AdjustmentRule&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo_NormalizeAdjustmentRuleOffset_mB2F0C2208D45713F1907FB1E1E523C26762B89A1 (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___baseUtcOffset0, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07** ___adjustmentRule1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_0; memset((&V_0), 0, sizeof(V_0)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_1; memset((&V_1), 0, sizeof(V_1)); { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_0 = ___baseUtcOffset0; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07** L_1 = ___adjustmentRule1; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_2 = *((AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07**)L_1); il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_3; L_3 = TimeZoneInfo_GetUtcOffset_mFCA4CA49ADBEADEA64D197ABB65538CC5F53EB3E(L_0, L_2, NULL); V_0 = L_3; il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_4 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; V_1 = L_4; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_5 = V_0; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_6 = ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___MaxOffset_11; bool L_7; L_7 = TimeSpan_op_GreaterThan_m8DAC0E8CCA11AFD73BAA4BE5BFB2FA4D65CFB78B(L_5, L_6, NULL); if (!L_7) { goto IL_002a; } } { il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_8 = ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___MaxOffset_11; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_9 = V_0; il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_10; L_10 = TimeSpan_op_Subtraction_mFFB8933364C5E1E2187CA0605445893F2872FBB8(L_8, L_9, NULL); V_1 = L_10; goto IL_0043; } IL_002a: { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_11 = V_0; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_12 = ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___MinOffset_12; il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); bool L_13; L_13 = TimeSpan_op_LessThan_mCBD324D4CB69C45EF34ABEBE7B19BB23528897BA(L_11, L_12, NULL); if (!L_13) { goto IL_0043; } } { il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_14 = ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___MinOffset_12; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_15 = V_0; il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_16; L_16 = TimeSpan_op_Subtraction_mFFB8933364C5E1E2187CA0605445893F2872FBB8(L_14, L_15, NULL); V_1 = L_16; } IL_0043: { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_17 = V_1; il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_18 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; bool L_19; L_19 = TimeSpan_op_Inequality_m702FEB395C90D5B23E2F7CD61B44846CD9B2C808(L_17, L_18, NULL); if (!L_19) { goto IL_008e; } } { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07** L_20 = ___adjustmentRule1; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07** L_21 = ___adjustmentRule1; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_22 = *((AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07**)L_21); NullCheck(L_22); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_23; L_23 = AdjustmentRule_get_DateStart_m89981208F272F07A4D46956A501E18C579BFBAFF_inline(L_22, NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07** L_24 = ___adjustmentRule1; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_25 = *((AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07**)L_24); NullCheck(L_25); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_26; L_26 = AdjustmentRule_get_DateEnd_mFF744CCAA5537C7992B23C8F56A90FCD85846B8D_inline(L_25, NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07** L_27 = ___adjustmentRule1; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_28 = *((AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07**)L_27); NullCheck(L_28); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_29; L_29 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(L_28, NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07** L_30 = ___adjustmentRule1; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_31 = *((AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07**)L_30); NullCheck(L_31); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_32; L_32 = AdjustmentRule_get_DaylightTransitionStart_mB13755B6F594ECC706B3946F17159E84F23E20D1_inline(L_31, NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07** L_33 = ___adjustmentRule1; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_34 = *((AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07**)L_33); NullCheck(L_34); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_35; L_35 = AdjustmentRule_get_DaylightTransitionEnd_m3DE90DB3CB36F38AFD5EA7F16719BE0013A1CF74_inline(L_34, NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07** L_36 = ___adjustmentRule1; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_37 = *((AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07**)L_36); NullCheck(L_37); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_38; L_38 = AdjustmentRule_get_BaseUtcOffsetDelta_m0A089D2D9C6A8C6D4460BE4403DDE16FD0D97075_inline(L_37, NULL); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_39 = V_1; il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_40; L_40 = TimeSpan_op_Addition_m4CA781FA121EB39944AE59C6BDD9304C42E74DFB(L_38, L_39, NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07** L_41 = ___adjustmentRule1; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_42 = *((AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07**)L_41); NullCheck(L_42); bool L_43; L_43 = AdjustmentRule_get_NoDaylightTransitions_mA92395F5741FACBEE835A929B37B6BE7D50CE3FF_inline(L_42, NULL); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_44; L_44 = AdjustmentRule_CreateAdjustmentRule_mE8192F76B0E396ECFFBDF0A90ED7DB3F70B7C87F(L_23, L_26, L_29, L_32, L_35, L_40, L_43, NULL); *((RuntimeObject**)L_20) = (RuntimeObject*)L_44; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_20, (void*)(RuntimeObject*)L_44); } IL_008e: { return; } } // System.String System.TimeZoneInfo::GetTimeZoneDirectoryUnity() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_GetTimeZoneDirectoryUnity_m5B6F71D50A7694A5E7B1015AE1ACFACD938F15FE (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; return L_0; } } // System.Collections.Generic.List`1 System.TimeZoneInfo::CreateAdjustmentRule(System.Int32,System.Int64[]&,System.String[]&,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* TimeZoneInfo_CreateAdjustmentRule_m73F7A84E2E23FFB17362C870ACC5BC6F96E98664 (int32_t ___year0, Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D** ___data1, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248** ___names2, String_t* ___standardNameCurrentYear3, String_t* ___daylightNameCurrentYear4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mC19688469DF392DB765D7CDC2E9382514E5EF7E7_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mE368A11FD9D47BA833943E9593471D8336AF5C0A_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* V_0 = NULL; bool V_1 = false; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_2; memset((&V_2), 0, sizeof(V_2)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_3; memset((&V_3), 0, sizeof(V_3)); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_4; memset((&V_4), 0, sizeof(V_4)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_5; memset((&V_5), 0, sizeof(V_5)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_6; memset((&V_6), 0, sizeof(V_6)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_7; memset((&V_7), 0, sizeof(V_7)); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 V_8; memset((&V_8), 0, sizeof(V_8)); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 V_9; memset((&V_9), 0, sizeof(V_9)); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* V_10 = NULL; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_11; memset((&V_11), 0, sizeof(V_11)); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 V_12; memset((&V_12), 0, sizeof(V_12)); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 V_13; memset((&V_13), 0, sizeof(V_13)); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* V_14 = NULL; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 V_15; memset((&V_15), 0, sizeof(V_15)); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 V_16; memset((&V_16), 0, sizeof(V_16)); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* V_17 = NULL; { List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_0 = (List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C*)il2cpp_codegen_object_new(List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C_il2cpp_TypeInfo_var); NullCheck(L_0); List_1__ctor_mE368A11FD9D47BA833943E9593471D8336AF5C0A(L_0, List_1__ctor_mE368A11FD9D47BA833943E9593471D8336AF5C0A_RuntimeMethod_var); V_0 = L_0; int32_t L_1 = ___year0; Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D** L_2 = ___data1; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248** L_3 = ___names2; bool L_4; L_4 = CurrentSystemTimeZone_GetTimeZoneData_m0E00967018A4C6D626257D014889DAFBFF56C21A(L_1, L_2, L_3, (&V_1), NULL); if (L_4) { goto IL_0014; } } { List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_5 = V_0; return L_5; } IL_0014: { Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D** L_6 = ___data1; Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D* L_7 = *((Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D**)L_6); NullCheck(L_7); int32_t L_8 = 0; int64_t L_9 = (L_7)->GetAt(static_cast(L_8)); DateTime__ctor_m64AFCE84ABB24698256EB9F635EFD0A221823441((&V_2), L_9, NULL); Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D** L_10 = ___data1; Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D* L_11 = *((Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D**)L_10); NullCheck(L_11); int32_t L_12 = 1; int64_t L_13 = (L_11)->GetAt(static_cast(L_12)); DateTime__ctor_m64AFCE84ABB24698256EB9F635EFD0A221823441((&V_3), L_13, NULL); Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D** L_14 = ___data1; Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D* L_15 = *((Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D**)L_14); NullCheck(L_15); int32_t L_16 = 3; int64_t L_17 = (L_15)->GetAt(static_cast(L_16)); TimeSpan__ctor_m061B122FA11D2063FE751C1F1D019DF1C8B10B1F_inline((&V_4), L_17, NULL); String_t* L_18 = ___standardNameCurrentYear3; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248** L_19 = ___names2; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_20 = *((StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248**)L_19); NullCheck(L_20); int32_t L_21 = 0; String_t* L_22 = (L_20)->GetAt(static_cast(L_21)); bool L_23; L_23 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_18, L_22, NULL); if (!L_23) { goto IL_0043; } } { List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_24 = V_0; return L_24; } IL_0043: { String_t* L_25 = ___daylightNameCurrentYear4; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248** L_26 = ___names2; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_27 = *((StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248**)L_26); NullCheck(L_27); int32_t L_28 = 1; String_t* L_29 = (L_27)->GetAt(static_cast(L_28)); bool L_30; L_30 = String_op_Inequality_m0FBE5AC4931D312E5B347BAA603755676E6DA2FE(L_25, L_29, NULL); if (!L_30) { goto IL_0052; } } { List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_31 = V_0; return L_31; } IL_0052: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_32 = V_3; bool L_33; L_33 = DateTime_Equals_m83D001F1C86DC58C2B0AE99DD2FAB12669B10C1B((&V_2), L_32, NULL); if (!L_33) { goto IL_005e; } } { List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_34 = V_0; return L_34; } IL_005e: { int32_t L_35 = ___year0; DateTime__ctor_mA66CE5141E86C5BC75F79543F99A7BD77B420201((&V_5), L_35, 1, 1, 0, 0, 0, 0, NULL); int32_t L_36 = ___year0; int32_t L_37 = ___year0; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); int32_t L_38; L_38 = DateTime_DaysInMonth_m0D32B96A924B642096EAA09FFDE74F1B6568714C(L_37, ((int32_t)12), NULL); DateTime__ctor_mA3BF7CE28807F0A02634FD43913FAAFD989CEE88((&V_6), L_36, ((int32_t)12), L_38, NULL); int32_t L_39 = ___year0; int32_t L_40 = ___year0; int32_t L_41; L_41 = DateTime_DaysInMonth_m0D32B96A924B642096EAA09FFDE74F1B6568714C(L_40, ((int32_t)12), NULL); DateTime__ctor_mA66CE5141E86C5BC75F79543F99A7BD77B420201((&V_7), L_39, ((int32_t)12), L_41, ((int32_t)23), ((int32_t)59), ((int32_t)59), ((int32_t)999), NULL); bool L_42 = V_1; if (L_42) { goto IL_0116; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_43; memset((&L_43), 0, sizeof(L_43)); DateTime__ctor_mA3BF7CE28807F0A02634FD43913FAAFD989CEE88((&L_43), 1, 1, 1, /*hidden argument*/NULL); V_11 = L_43; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_44; L_44 = DateTime_get_TimeOfDay_mE8933E5F62C0369E4BA6AF928283A00CA9D54D04((&V_2), NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_45; L_45 = DateTime_Add_mC882C6BBE75862360A1A0C733B4FFE3210D4B9B1((&V_11), L_44, NULL); int32_t L_46; L_46 = DateTime_get_Month_m899C6602DE8198990B2CAF5EBC04CC67764E3DA2((&V_2), NULL); int32_t L_47; L_47 = DateTime_get_Day_m872DBCA4C79955EC1E27EB68746B6C2F6A183B28((&V_2), NULL); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_48; L_48 = TransitionTime_CreateFixedDateRule_m67417DBC5A7651EFC46B9719E75984AA61073122(L_45, L_46, L_47, NULL); V_8 = L_48; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_49; memset((&L_49), 0, sizeof(L_49)); DateTime__ctor_mA3BF7CE28807F0A02634FD43913FAAFD989CEE88((&L_49), 1, 1, 1, /*hidden argument*/NULL); V_11 = L_49; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_50; L_50 = DateTime_get_TimeOfDay_mE8933E5F62C0369E4BA6AF928283A00CA9D54D04((&V_3), NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_51; L_51 = DateTime_Add_mC882C6BBE75862360A1A0C733B4FFE3210D4B9B1((&V_11), L_50, NULL); int32_t L_52; L_52 = DateTime_get_Month_m899C6602DE8198990B2CAF5EBC04CC67764E3DA2((&V_3), NULL); int32_t L_53; L_53 = DateTime_get_Day_m872DBCA4C79955EC1E27EB68746B6C2F6A183B28((&V_3), NULL); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_54; L_54 = TransitionTime_CreateFixedDateRule_m67417DBC5A7651EFC46B9719E75984AA61073122(L_51, L_52, L_53, NULL); V_9 = L_54; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_55 = V_5; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_56 = V_6; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_57 = V_4; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_58 = V_8; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_59 = V_9; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_60; L_60 = AdjustmentRule_CreateAdjustmentRule_m43C4E67BA80C8DF56B78D123FB70E1C1869FC863(L_55, L_56, L_57, L_58, L_59, NULL); V_10 = L_60; List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_61 = V_0; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_62 = V_10; NullCheck(L_61); List_1_Add_mC19688469DF392DB765D7CDC2E9382514E5EF7E7_inline(L_61, L_62, List_1_Add_mC19688469DF392DB765D7CDC2E9382514E5EF7E7_RuntimeMethod_var); goto IL_0228; } IL_0116: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_63; memset((&L_63), 0, sizeof(L_63)); DateTime__ctor_mA3BF7CE28807F0A02634FD43913FAAFD989CEE88((&L_63), 1, 1, 1, /*hidden argument*/NULL); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_64; L_64 = TransitionTime_CreateFixedDateRule_m67417DBC5A7651EFC46B9719E75984AA61073122(L_63, 1, 1, NULL); V_12 = L_64; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_65; memset((&L_65), 0, sizeof(L_65)); DateTime__ctor_mA3BF7CE28807F0A02634FD43913FAAFD989CEE88((&L_65), 1, 1, 1, /*hidden argument*/NULL); V_11 = L_65; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_66; L_66 = DateTime_get_TimeOfDay_mE8933E5F62C0369E4BA6AF928283A00CA9D54D04((&V_2), NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_67; L_67 = DateTime_Add_mC882C6BBE75862360A1A0C733B4FFE3210D4B9B1((&V_11), L_66, NULL); int32_t L_68; L_68 = DateTime_get_Month_m899C6602DE8198990B2CAF5EBC04CC67764E3DA2((&V_2), NULL); int32_t L_69; L_69 = DateTime_get_Day_m872DBCA4C79955EC1E27EB68746B6C2F6A183B28((&V_2), NULL); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_70; L_70 = TransitionTime_CreateFixedDateRule_m67417DBC5A7651EFC46B9719E75984AA61073122(L_67, L_68, L_69, NULL); V_13 = L_70; int32_t L_71 = ___year0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_72; memset((&L_72), 0, sizeof(L_72)); DateTime__ctor_mA3BF7CE28807F0A02634FD43913FAAFD989CEE88((&L_72), L_71, 1, 1, /*hidden argument*/NULL); int32_t L_73; L_73 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138((&V_2), NULL); int32_t L_74; L_74 = DateTime_get_Month_m899C6602DE8198990B2CAF5EBC04CC67764E3DA2((&V_2), NULL); int32_t L_75; L_75 = DateTime_get_Day_m872DBCA4C79955EC1E27EB68746B6C2F6A183B28((&V_2), NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_76; memset((&L_76), 0, sizeof(L_76)); DateTime__ctor_mA3BF7CE28807F0A02634FD43913FAAFD989CEE88((&L_76), L_73, L_74, L_75, /*hidden argument*/NULL); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_77 = V_4; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_78 = V_12; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_79 = V_13; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_80; L_80 = AdjustmentRule_CreateAdjustmentRule_m43C4E67BA80C8DF56B78D123FB70E1C1869FC863(L_72, L_76, L_77, L_78, L_79, NULL); V_14 = L_80; List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_81 = V_0; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_82 = V_14; NullCheck(L_81); List_1_Add_mC19688469DF392DB765D7CDC2E9382514E5EF7E7_inline(L_81, L_82, List_1_Add_mC19688469DF392DB765D7CDC2E9382514E5EF7E7_RuntimeMethod_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_83; memset((&L_83), 0, sizeof(L_83)); DateTime__ctor_mA3BF7CE28807F0A02634FD43913FAAFD989CEE88((&L_83), 1, 1, 1, /*hidden argument*/NULL); V_11 = L_83; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_84; L_84 = DateTime_get_TimeOfDay_mE8933E5F62C0369E4BA6AF928283A00CA9D54D04((&V_3), NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_85; L_85 = DateTime_Add_mC882C6BBE75862360A1A0C733B4FFE3210D4B9B1((&V_11), L_84, NULL); int32_t L_86; L_86 = DateTime_get_Month_m899C6602DE8198990B2CAF5EBC04CC67764E3DA2((&V_3), NULL); int32_t L_87; L_87 = DateTime_get_Day_m872DBCA4C79955EC1E27EB68746B6C2F6A183B28((&V_3), NULL); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_88; L_88 = TransitionTime_CreateFixedDateRule_m67417DBC5A7651EFC46B9719E75984AA61073122(L_85, L_86, L_87, NULL); V_15 = L_88; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_89; memset((&L_89), 0, sizeof(L_89)); DateTime__ctor_mA3BF7CE28807F0A02634FD43913FAAFD989CEE88((&L_89), 1, 1, 1, /*hidden argument*/NULL); V_11 = L_89; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_90; L_90 = DateTime_get_TimeOfDay_mE8933E5F62C0369E4BA6AF928283A00CA9D54D04((&V_7), NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_91; L_91 = DateTime_Add_mC882C6BBE75862360A1A0C733B4FFE3210D4B9B1((&V_11), L_90, NULL); int32_t L_92; L_92 = DateTime_get_Month_m899C6602DE8198990B2CAF5EBC04CC67764E3DA2((&V_7), NULL); int32_t L_93; L_93 = DateTime_get_Day_m872DBCA4C79955EC1E27EB68746B6C2F6A183B28((&V_7), NULL); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_94; L_94 = TransitionTime_CreateFixedDateRule_m67417DBC5A7651EFC46B9719E75984AA61073122(L_91, L_92, L_93, NULL); V_16 = L_94; int32_t L_95; L_95 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138((&V_2), NULL); int32_t L_96; L_96 = DateTime_get_Month_m899C6602DE8198990B2CAF5EBC04CC67764E3DA2((&V_2), NULL); int32_t L_97; L_97 = DateTime_get_Day_m872DBCA4C79955EC1E27EB68746B6C2F6A183B28((&V_2), NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_98; memset((&L_98), 0, sizeof(L_98)); DateTime__ctor_mA3BF7CE28807F0A02634FD43913FAAFD989CEE88((&L_98), L_95, L_96, L_97, /*hidden argument*/NULL); V_11 = L_98; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_99; L_99 = DateTime_AddDays_m9DC06105845A82FEAF697D5E30308ABD49E5721B((&V_11), (1.0), NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_100 = V_6; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_101 = V_4; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_102 = V_15; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_103 = V_16; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_104; L_104 = AdjustmentRule_CreateAdjustmentRule_m43C4E67BA80C8DF56B78D123FB70E1C1869FC863(L_99, L_100, L_101, L_102, L_103, NULL); V_17 = L_104; List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_105 = V_0; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_106 = V_17; NullCheck(L_105); List_1_Add_mC19688469DF392DB765D7CDC2E9382514E5EF7E7_inline(L_105, L_106, List_1_Add_mC19688469DF392DB765D7CDC2E9382514E5EF7E7_RuntimeMethod_var); } IL_0228: { List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_107 = V_0; return L_107; } } // System.TimeZoneInfo System.TimeZoneInfo::CreateLocalUnity() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* TimeZoneInfo_CreateLocalUnity_mA53736609A9CAF1A706FB94747FE37CE2FCF27AB (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparison_1_tE0312CC191F82BABE215D23E750095EE2E124301_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_AddRange_mEE4B468401806AB4034B11CF5474F8DAD42FCAEF_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Sort_mC93B7887EE66D34058CF27DA73282E7DC0CFC27C_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_ToArray_m4C6A88B12B46631D06072C836E9D709251CFF260_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mE368A11FD9D47BA833943E9593471D8336AF5C0A_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m555A94A70E4F9F1DBC02B3B7A446EEAAAF6647A5_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CCreateLocalUnityU3Eb__161_0_mA9458C06834209A6DFE01FB06549AACE3B802909_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8BABAAD88AAA5E60D93C31ED61C095184AFF093D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral904E141B4F250943BE820466C5ACAC36DFD71291); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBB9E2BA96D3F7F910549AC5DB6967191AC919101); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEDEF72BF02D7DBDB7455CEDB9985B8D2A87B5FB3); s_Il2CppMethodInitialized = true; } Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D* V_0 = NULL; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_1 = NULL; bool V_2 = false; int32_t V_3 = 0; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_4; memset((&V_4), 0, sizeof(V_4)); Il2CppChar V_5 = 0x0; String_t* V_6 = NULL; String_t* V_7 = NULL; String_t* V_8 = NULL; List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* V_9 = NULL; bool V_10 = false; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_11; memset((&V_11), 0, sizeof(V_11)); int32_t V_12 = 0; int32_t V_13 = 0; int32_t V_14 = 0; List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* V_15 = NULL; int32_t V_16 = 0; List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* V_17 = NULL; int32_t G_B5_0 = 0; Comparison_1_tE0312CC191F82BABE215D23E750095EE2E124301* G_B16_0 = NULL; List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* G_B16_1 = NULL; Comparison_1_tE0312CC191F82BABE215D23E750095EE2E124301* G_B15_0 = NULL; List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* G_B15_1 = NULL; { il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0; L_0 = DateTime_get_UtcNow_m5D776FFEBC81592B361E4C7AF373297C5DFB46FD(NULL); V_11 = L_0; int32_t L_1; L_1 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138((&V_11), NULL); V_3 = L_1; int32_t L_2 = V_3; bool L_3; L_3 = CurrentSystemTimeZone_GetTimeZoneData_m0E00967018A4C6D626257D014889DAFBFF56C21A(L_2, (&V_0), (&V_1), (&V_2), NULL); if (L_3) { goto IL_0028; } } { NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_4 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var))); NullCheck(L_4); NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral94175649577A71BF619AB00E3FD4DBB0DF7198CD)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeZoneInfo_CreateLocalUnity_mA53736609A9CAF1A706FB94747FE37CE2FCF27AB_RuntimeMethod_var))); } IL_0028: { Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D* L_5 = V_0; NullCheck(L_5); int32_t L_6 = 2; int64_t L_7 = (L_5)->GetAt(static_cast(L_6)); il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_8; L_8 = TimeSpan_FromTicks_mFA529928E79B4BF5EC0265418844B196D8979A73(L_7, NULL); V_4 = L_8; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_9 = V_4; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_10 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; bool L_11; L_11 = TimeSpan_op_GreaterThanOrEqual_mD172326B8A60D9B6585C5AF7EBB1E7D72C6C099A(L_9, L_10, NULL); if (L_11) { goto IL_0044; } } { G_B5_0 = ((int32_t)45); goto IL_0046; } IL_0044: { G_B5_0 = ((int32_t)43); } IL_0046: { V_5 = G_B5_0; String_t* L_12; L_12 = Char_ToString_m2A308731F9577C06AF3C0901234E2EAC8327410C((&V_5), NULL); String_t* L_13; L_13 = TimeSpan_ToString_m5B50613FCD29547F04EAE305B2226CB9F490C432((&V_4), _stringLiteral8BABAAD88AAA5E60D93C31ED61C095184AFF093D, NULL); String_t* L_14; L_14 = String_Concat_mF8B69BE42B5C5ABCAD3C176FBBE3010E0815D65D(_stringLiteralEDEF72BF02D7DBDB7455CEDB9985B8D2A87B5FB3, L_12, L_13, _stringLiteral904E141B4F250943BE820466C5ACAC36DFD71291, NULL); V_6 = L_14; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_15 = V_1; NullCheck(L_15); int32_t L_16 = 0; String_t* L_17 = (L_15)->GetAt(static_cast(L_16)); V_7 = L_17; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_18 = V_1; NullCheck(L_18); int32_t L_19 = 1; String_t* L_20 = (L_18)->GetAt(static_cast(L_19)); V_8 = L_20; List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_21 = (List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C*)il2cpp_codegen_object_new(List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C_il2cpp_TypeInfo_var); NullCheck(L_21); List_1__ctor_mE368A11FD9D47BA833943E9593471D8336AF5C0A(L_21, List_1__ctor_mE368A11FD9D47BA833943E9593471D8336AF5C0A_RuntimeMethod_var); V_9 = L_21; Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D* L_22 = V_0; NullCheck(L_22); int32_t L_23 = 3; int64_t L_24 = (L_22)->GetAt(static_cast(L_23)); V_10 = (bool)((((int64_t)L_24) == ((int64_t)((int64_t)0)))? 1 : 0); bool L_25 = V_10; if (L_25) { goto IL_012d; } } { V_12 = ((int32_t)1971); V_13 = ((int32_t)2037); int32_t L_26 = V_3; V_14 = L_26; goto IL_00ca; } IL_00a0: { int32_t L_27 = V_14; String_t* L_28 = V_7; String_t* L_29 = V_8; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_30; L_30 = TimeZoneInfo_CreateAdjustmentRule_m73F7A84E2E23FFB17362C870ACC5BC6F96E98664(L_27, (&V_0), (&V_1), L_28, L_29, NULL); V_15 = L_30; List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_31 = V_15; NullCheck(L_31); int32_t L_32; L_32 = List_1_get_Count_m555A94A70E4F9F1DBC02B3B7A446EEAAAF6647A5_inline(L_31, List_1_get_Count_m555A94A70E4F9F1DBC02B3B7A446EEAAAF6647A5_RuntimeMethod_var); if ((((int32_t)L_32) <= ((int32_t)0))) { goto IL_00d0; } } { List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_33 = V_9; List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_34 = V_15; NullCheck(L_33); List_1_AddRange_mEE4B468401806AB4034B11CF5474F8DAD42FCAEF(L_33, L_34, List_1_AddRange_mEE4B468401806AB4034B11CF5474F8DAD42FCAEF_RuntimeMethod_var); int32_t L_35 = V_14; V_14 = ((int32_t)il2cpp_codegen_add(L_35, 1)); } IL_00ca: { int32_t L_36 = V_14; int32_t L_37 = V_13; if ((((int32_t)L_36) <= ((int32_t)L_37))) { goto IL_00a0; } } IL_00d0: { int32_t L_38 = V_3; V_16 = ((int32_t)il2cpp_codegen_subtract(L_38, 1)); goto IL_0101; } IL_00d7: { int32_t L_39 = V_16; String_t* L_40 = V_7; String_t* L_41 = V_8; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_42; L_42 = TimeZoneInfo_CreateAdjustmentRule_m73F7A84E2E23FFB17362C870ACC5BC6F96E98664(L_39, (&V_0), (&V_1), L_40, L_41, NULL); V_17 = L_42; List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_43 = V_17; NullCheck(L_43); int32_t L_44; L_44 = List_1_get_Count_m555A94A70E4F9F1DBC02B3B7A446EEAAAF6647A5_inline(L_43, List_1_get_Count_m555A94A70E4F9F1DBC02B3B7A446EEAAAF6647A5_RuntimeMethod_var); if ((((int32_t)L_44) <= ((int32_t)0))) { goto IL_0107; } } { List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_45 = V_9; List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_46 = V_17; NullCheck(L_45); List_1_AddRange_mEE4B468401806AB4034B11CF5474F8DAD42FCAEF(L_45, L_46, List_1_AddRange_mEE4B468401806AB4034B11CF5474F8DAD42FCAEF_RuntimeMethod_var); int32_t L_47 = V_16; V_16 = ((int32_t)il2cpp_codegen_subtract(L_47, 1)); } IL_0101: { int32_t L_48 = V_16; int32_t L_49 = V_12; if ((((int32_t)L_48) >= ((int32_t)L_49))) { goto IL_00d7; } } IL_0107: { List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_50 = V_9; il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var); Comparison_1_tE0312CC191F82BABE215D23E750095EE2E124301* L_51 = ((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9__161_0_6; Comparison_1_tE0312CC191F82BABE215D23E750095EE2E124301* L_52 = L_51; G_B15_0 = L_52; G_B15_1 = L_50; if (L_52) { G_B16_0 = L_52; G_B16_1 = L_50; goto IL_0128; } } { il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var); U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124* L_53 = ((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9_0; Comparison_1_tE0312CC191F82BABE215D23E750095EE2E124301* L_54 = (Comparison_1_tE0312CC191F82BABE215D23E750095EE2E124301*)il2cpp_codegen_object_new(Comparison_1_tE0312CC191F82BABE215D23E750095EE2E124301_il2cpp_TypeInfo_var); NullCheck(L_54); Comparison_1__ctor_m7A877570D0AD7F3AAC5D08B1E242799C783C6323(L_54, L_53, (intptr_t)((void*)U3CU3Ec_U3CCreateLocalUnityU3Eb__161_0_mA9458C06834209A6DFE01FB06549AACE3B802909_RuntimeMethod_var), NULL); Comparison_1_tE0312CC191F82BABE215D23E750095EE2E124301* L_55 = L_54; ((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9__161_0_6 = L_55; Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9__161_0_6), (void*)L_55); G_B16_0 = L_55; G_B16_1 = G_B15_1; } IL_0128: { NullCheck(G_B16_1); List_1_Sort_mC93B7887EE66D34058CF27DA73282E7DC0CFC27C(G_B16_1, G_B16_0, List_1_Sort_mC93B7887EE66D34058CF27DA73282E7DC0CFC27C_RuntimeMethod_var); } IL_012d: { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_56 = V_4; String_t* L_57 = V_6; String_t* L_58 = V_7; String_t* L_59 = V_8; List_1_tB5B245324D580D60EA9BF0044CE976C57670EF4C* L_60 = V_9; NullCheck(L_60); AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_61; L_61 = List_1_ToArray_m4C6A88B12B46631D06072C836E9D709251CFF260(L_60, List_1_ToArray_m4C6A88B12B46631D06072C836E9D709251CFF260_RuntimeMethod_var); bool L_62 = V_10; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_63; L_63 = TimeZoneInfo_CreateCustomTimeZone_mE6CD9C2D2B4E776997B0791E75792D1C971B091D(_stringLiteralBB9E2BA96D3F7F910549AC5DB6967191AC919101, L_56, L_57, L_58, L_59, L_61, L_62, NULL); return L_63; } } // System.Void System.TimeZoneInfo::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo__cctor_m4D85ED99540219BB5AB2613D46C9349DDD7AA286 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBFFB60FFC1C16180DF4456004F7B34D2182A5649); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_0 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_1; L_1 = TimeZoneInfo_CreateCustomTimeZone_mA4B219D7787155D6BBC73C424CBBF0C044713CC9(_stringLiteralBFFB60FFC1C16180DF4456004F7B34D2182A5649, L_0, _stringLiteralBFFB60FFC1C16180DF4456004F7B34D2182A5649, _stringLiteralBFFB60FFC1C16180DF4456004F7B34D2182A5649, NULL); ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___s_utcTimeZone_7 = L_1; Il2CppCodeGenWriteBarrier((void**)(&((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___s_utcTimeZone_7), (void*)L_1); CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* L_2 = (CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF*)il2cpp_codegen_object_new(CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF_il2cpp_TypeInfo_var); NullCheck(L_2); CachedData__ctor_m0B9484D26A9B27A4B34444C869F3F29F1908B6D4(L_2, NULL); ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___s_cachedData_8 = L_2; Il2CppCodeGenWriteBarrier((void**)(&((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___s_cachedData_8), (void*)L_2); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_3; memset((&L_3), 0, sizeof(L_3)); DateTime__ctor_mA3BF7CE28807F0A02634FD43913FAAFD989CEE88((&L_3), ((int32_t)9999), ((int32_t)12), ((int32_t)31), /*hidden argument*/NULL); ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___s_maxDateOnly_9 = L_3; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_4; memset((&L_4), 0, sizeof(L_4)); DateTime__ctor_mA3BF7CE28807F0A02634FD43913FAAFD989CEE88((&L_4), 1, 1, 2, /*hidden argument*/NULL); ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___s_minDateOnly_10 = L_4; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_5; L_5 = TimeSpan_FromHours_mE752300A91D97AB8CCC53CB38547BBEFF601E2C6((14.0), NULL); ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___MaxOffset_11 = L_5; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_6 = ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___MaxOffset_11; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_7; L_7 = TimeSpan_op_UnaryNegation_m48BDA8280B7A09AD8DB90844AAD1DB7C0F473607(L_6, NULL); ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___MinOffset_12 = L_7; return; } } // System.Void System.TimeZoneInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeZoneInfo__ctor_mB8BAAF49189BD56626C30B42565C3DEBF8CC0F01 (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo__ctor_mB8BAAF49189BD56626C30B42565C3DEBF8CC0F01_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(TimeZoneInfo__ctor_mB8BAAF49189BD56626C30B42565C3DEBF8CC0F01_RuntimeMethod_var); 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 // Conversion methods for marshalling of: System.TimeZoneInfo/TZifType IL2CPP_EXTERN_C void TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4_marshal_pinvoke(const TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4& unmarshaled, TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4_marshaled_pinvoke& marshaled) { marshaled.___UtcOffset_0 = unmarshaled.___UtcOffset_0; marshaled.___IsDst_1 = static_cast(unmarshaled.___IsDst_1); marshaled.___AbbreviationIndex_2 = unmarshaled.___AbbreviationIndex_2; } IL2CPP_EXTERN_C void TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4_marshal_pinvoke_back(const TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4_marshaled_pinvoke& marshaled, TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4& unmarshaled) { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A unmarshaledUtcOffset_temp_0; memset((&unmarshaledUtcOffset_temp_0), 0, sizeof(unmarshaledUtcOffset_temp_0)); unmarshaledUtcOffset_temp_0 = marshaled.___UtcOffset_0; unmarshaled.___UtcOffset_0 = unmarshaledUtcOffset_temp_0; bool unmarshaledIsDst_temp_1 = false; unmarshaledIsDst_temp_1 = static_cast(marshaled.___IsDst_1); unmarshaled.___IsDst_1 = unmarshaledIsDst_temp_1; uint8_t unmarshaledAbbreviationIndex_temp_2 = 0x0; unmarshaledAbbreviationIndex_temp_2 = marshaled.___AbbreviationIndex_2; unmarshaled.___AbbreviationIndex_2 = unmarshaledAbbreviationIndex_temp_2; } // Conversion method for clean up from marshalling of: System.TimeZoneInfo/TZifType IL2CPP_EXTERN_C void TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4_marshal_pinvoke_cleanup(TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: System.TimeZoneInfo/TZifType IL2CPP_EXTERN_C void TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4_marshal_com(const TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4& unmarshaled, TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4_marshaled_com& marshaled) { marshaled.___UtcOffset_0 = unmarshaled.___UtcOffset_0; marshaled.___IsDst_1 = static_cast(unmarshaled.___IsDst_1); marshaled.___AbbreviationIndex_2 = unmarshaled.___AbbreviationIndex_2; } IL2CPP_EXTERN_C void TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4_marshal_com_back(const TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4_marshaled_com& marshaled, TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4& unmarshaled) { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A unmarshaledUtcOffset_temp_0; memset((&unmarshaledUtcOffset_temp_0), 0, sizeof(unmarshaledUtcOffset_temp_0)); unmarshaledUtcOffset_temp_0 = marshaled.___UtcOffset_0; unmarshaled.___UtcOffset_0 = unmarshaledUtcOffset_temp_0; bool unmarshaledIsDst_temp_1 = false; unmarshaledIsDst_temp_1 = static_cast(marshaled.___IsDst_1); unmarshaled.___IsDst_1 = unmarshaledIsDst_temp_1; uint8_t unmarshaledAbbreviationIndex_temp_2 = 0x0; unmarshaledAbbreviationIndex_temp_2 = marshaled.___AbbreviationIndex_2; unmarshaled.___AbbreviationIndex_2 = unmarshaledAbbreviationIndex_temp_2; } // Conversion method for clean up from marshalling of: System.TimeZoneInfo/TZifType IL2CPP_EXTERN_C void TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4_marshal_com_cleanup(TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4_marshaled_com& marshaled) { } // System.Void System.TimeZoneInfo/TZifType::.ctor(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TZifType__ctor_m078CAF246330F151602C5CF9582E315296C4F179 (TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___data0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___data0; if (!L_0) { goto IL_000b; } } { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___data0; NullCheck(L_1); int32_t L_2 = ___index1; if ((((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length))) >= ((int32_t)((int32_t)il2cpp_codegen_add(L_2, 6))))) { goto IL_001b; } } IL_000b: { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_3 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_3); ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3B9E3B5807482B6C32D7111C75D4826AEFC0F71F)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA44A39671D4B7FA8FBE50D795EAB52248D5C5469)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TZifType__ctor_m078CAF246330F151602C5CF9582E315296C4F179_RuntimeMethod_var))); } IL_001b: { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = ___data0; int32_t L_5 = ___index1; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); int32_t L_6; L_6 = TimeZoneInfo_TZif_ToInt32_m93D4A73EBB7F61C19E9E51FD7A2FE6ED91DB68AA(L_4, L_5, NULL); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_7; memset((&L_7), 0, sizeof(L_7)); TimeSpan__ctor_mF8B85616C009D35D860DA0254327E8AAF54822A1((&L_7), 0, 0, L_6, /*hidden argument*/NULL); __this->___UtcOffset_0 = L_7; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_8 = ___data0; int32_t L_9 = ___index1; NullCheck(L_8); int32_t L_10 = ((int32_t)il2cpp_codegen_add(L_9, 4)); uint8_t L_11 = (L_8)->GetAt(static_cast(L_10)); __this->___IsDst_1 = (bool)((!(((uint32_t)L_11) <= ((uint32_t)0)))? 1 : 0); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_12 = ___data0; int32_t L_13 = ___index1; NullCheck(L_12); int32_t L_14 = ((int32_t)il2cpp_codegen_add(L_13, 5)); uint8_t L_15 = (L_12)->GetAt(static_cast(L_14)); __this->___AbbreviationIndex_2 = L_15; return; } } IL2CPP_EXTERN_C void TZifType__ctor_m078CAF246330F151602C5CF9582E315296C4F179_AdjustorThunk (RuntimeObject* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___data0, int32_t ___index1, const RuntimeMethod* method) { TZifType_t3ACBE0BB45077721E9D8DAF1414503F7990621D4* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); TZifType__ctor_m078CAF246330F151602C5CF9582E315296C4F179(_thisAdjusted, ___data0, ___index1, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.TimeZoneInfo/TZifHead::.ctor(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TZifHead__ctor_m329594E5E291363A0A5C24A32DEAF3A794F8F96A (TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___data0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } uint8_t V_0 = 0x0; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* G_B9_0 = NULL; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* G_B6_0 = NULL; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* G_B8_0 = NULL; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* G_B7_0 = NULL; int32_t G_B10_0 = 0; TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* G_B10_1 = NULL; { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___data0; if (!L_0) { goto IL_000a; } } { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___data0; NullCheck(L_1); if ((((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length))) >= ((int32_t)((int32_t)44)))) { goto IL_001a; } } IL_000a: { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_2 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_2); ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB6DE8EF43C1BC546AA303BA65584166F1FB051BE)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA44A39671D4B7FA8FBE50D795EAB52248D5C5469)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TZifHead__ctor_m329594E5E291363A0A5C24A32DEAF3A794F8F96A_RuntimeMethod_var))); } IL_001a: { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = ___data0; int32_t L_4 = ___index1; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); int32_t L_5; L_5 = TimeZoneInfo_TZif_ToInt32_m93D4A73EBB7F61C19E9E51FD7A2FE6ED91DB68AA(L_3, L_4, NULL); __this->___Magic_0 = L_5; uint32_t L_6 = __this->___Magic_0; if ((((int32_t)L_6) == ((int32_t)((int32_t)1415211366)))) { goto IL_0044; } } { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_7 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_7); ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral81FE848029299D2E16A8CD1E3C9267FBB8445B4B)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA44A39671D4B7FA8FBE50D795EAB52248D5C5469)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TZifHead__ctor_m329594E5E291363A0A5C24A32DEAF3A794F8F96A_RuntimeMethod_var))); } IL_0044: { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_8 = ___data0; int32_t L_9 = ___index1; NullCheck(L_8); int32_t L_10 = ((int32_t)il2cpp_codegen_add(L_9, 4)); uint8_t L_11 = (L_8)->GetAt(static_cast(L_10)); V_0 = L_11; uint8_t L_12 = V_0; G_B6_0 = __this; if ((((int32_t)L_12) == ((int32_t)((int32_t)50)))) { G_B9_0 = __this; goto IL_005b; } } { uint8_t L_13 = V_0; G_B7_0 = G_B6_0; if ((((int32_t)L_13) == ((int32_t)((int32_t)51)))) { G_B8_0 = G_B6_0; goto IL_0058; } } { G_B10_0 = 0; G_B10_1 = G_B7_0; goto IL_005c; } IL_0058: { G_B10_0 = 2; G_B10_1 = G_B8_0; goto IL_005c; } IL_005b: { G_B10_0 = 1; G_B10_1 = G_B9_0; } IL_005c: { G_B10_1->___Version_1 = G_B10_0; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_14 = ___data0; int32_t L_15 = ___index1; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); int32_t L_16; L_16 = TimeZoneInfo_TZif_ToInt32_m93D4A73EBB7F61C19E9E51FD7A2FE6ED91DB68AA(L_14, ((int32_t)il2cpp_codegen_add(L_15, ((int32_t)20))), NULL); __this->___IsGmtCount_2 = L_16; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_17 = ___data0; int32_t L_18 = ___index1; int32_t L_19; L_19 = TimeZoneInfo_TZif_ToInt32_m93D4A73EBB7F61C19E9E51FD7A2FE6ED91DB68AA(L_17, ((int32_t)il2cpp_codegen_add(L_18, ((int32_t)24))), NULL); __this->___IsStdCount_3 = L_19; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_20 = ___data0; int32_t L_21 = ___index1; int32_t L_22; L_22 = TimeZoneInfo_TZif_ToInt32_m93D4A73EBB7F61C19E9E51FD7A2FE6ED91DB68AA(L_20, ((int32_t)il2cpp_codegen_add(L_21, ((int32_t)28))), NULL); __this->___LeapCount_4 = L_22; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_23 = ___data0; int32_t L_24 = ___index1; int32_t L_25; L_25 = TimeZoneInfo_TZif_ToInt32_m93D4A73EBB7F61C19E9E51FD7A2FE6ED91DB68AA(L_23, ((int32_t)il2cpp_codegen_add(L_24, ((int32_t)32))), NULL); __this->___TimeCount_5 = L_25; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_26 = ___data0; int32_t L_27 = ___index1; int32_t L_28; L_28 = TimeZoneInfo_TZif_ToInt32_m93D4A73EBB7F61C19E9E51FD7A2FE6ED91DB68AA(L_26, ((int32_t)il2cpp_codegen_add(L_27, ((int32_t)36))), NULL); __this->___TypeCount_6 = L_28; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_29 = ___data0; int32_t L_30 = ___index1; int32_t L_31; L_31 = TimeZoneInfo_TZif_ToInt32_m93D4A73EBB7F61C19E9E51FD7A2FE6ED91DB68AA(L_29, ((int32_t)il2cpp_codegen_add(L_30, ((int32_t)40))), NULL); __this->___CharCount_7 = L_31; return; } } IL2CPP_EXTERN_C void TZifHead__ctor_m329594E5E291363A0A5C24A32DEAF3A794F8F96A_AdjustorThunk (RuntimeObject* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___data0, int32_t ___index1, const RuntimeMethod* method) { TZifHead_tCE3B6453694DFA5CC267A302DBC5CB8AF9ECD852* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); TZifHead__ctor_m329594E5E291363A0A5C24A32DEAF3A794F8F96A(_thisAdjusted, ___data0, ___index1, 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 #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.DateTime System.TimeZoneInfo/AdjustmentRule::get_DateStart() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D AdjustmentRule_get_DateStart_m89981208F272F07A4D46956A501E18C579BFBAFF (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) { { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = __this->____dateStart_0; return L_0; } } // System.DateTime System.TimeZoneInfo/AdjustmentRule::get_DateEnd() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D AdjustmentRule_get_DateEnd_mFF744CCAA5537C7992B23C8F56A90FCD85846B8D (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) { { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = __this->____dateEnd_1; return L_0; } } // System.TimeSpan System.TimeZoneInfo/AdjustmentRule::get_DaylightDelta() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1 (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) { { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_0 = __this->____daylightDelta_2; return L_0; } } // System.TimeZoneInfo/TransitionTime System.TimeZoneInfo/AdjustmentRule::get_DaylightTransitionStart() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 AdjustmentRule_get_DaylightTransitionStart_mB13755B6F594ECC706B3946F17159E84F23E20D1 (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) { { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_0 = __this->____daylightTransitionStart_3; return L_0; } } // System.TimeZoneInfo/TransitionTime System.TimeZoneInfo/AdjustmentRule::get_DaylightTransitionEnd() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 AdjustmentRule_get_DaylightTransitionEnd_m3DE90DB3CB36F38AFD5EA7F16719BE0013A1CF74 (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) { { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_0 = __this->____daylightTransitionEnd_4; return L_0; } } // System.TimeSpan System.TimeZoneInfo/AdjustmentRule::get_BaseUtcOffsetDelta() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A AdjustmentRule_get_BaseUtcOffsetDelta_m0A089D2D9C6A8C6D4460BE4403DDE16FD0D97075 (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) { { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_0 = __this->____baseUtcOffsetDelta_5; return L_0; } } // System.Boolean System.TimeZoneInfo/AdjustmentRule::get_NoDaylightTransitions() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AdjustmentRule_get_NoDaylightTransitions_mA92395F5741FACBEE835A929B37B6BE7D50CE3FF (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) { { bool L_0 = __this->____noDaylightTransitions_6; return L_0; } } // System.Boolean System.TimeZoneInfo/AdjustmentRule::get_HasDaylightSaving() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AdjustmentRule_get_HasDaylightSaving_m3A74F6D064246B8CF21908A39055325FBE9DA73F (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 V_0; memset((&V_0), 0, sizeof(V_0)); { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_0; L_0 = AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline(__this, NULL); il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_1 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; bool L_2; L_2 = TimeSpan_op_Inequality_m702FEB395C90D5B23E2F7CD61B44846CD9B2C808(L_0, L_1, NULL); if (L_2) { goto IL_0081; } } { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_3; L_3 = AdjustmentRule_get_DaylightTransitionStart_mB13755B6F594ECC706B3946F17159E84F23E20D1_inline(__this, NULL); il2cpp_codegen_initobj((&V_0), sizeof(TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823)); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_4 = V_0; bool L_5; L_5 = TransitionTime_op_Inequality_m2646FABD4F674967E5CD5E2FBB071390DC07FF32(L_3, L_4, NULL); if (!L_5) { goto IL_0042; } } { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_6; L_6 = AdjustmentRule_get_DaylightTransitionStart_mB13755B6F594ECC706B3946F17159E84F23E20D1_inline(__this, NULL); V_0 = L_6; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_7; L_7 = TransitionTime_get_TimeOfDay_m21DF682C87AF1B2B28F275583E344BDBFA5787E9_inline((&V_0), NULL); il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_8 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MinValue_32; bool L_9; L_9 = DateTime_op_Inequality_mC39C15A648628974D533B4E2D4EDBD091EA3E1B7(L_7, L_8, NULL); if (L_9) { goto IL_0081; } } IL_0042: { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_10; L_10 = AdjustmentRule_get_DaylightTransitionEnd_m3DE90DB3CB36F38AFD5EA7F16719BE0013A1CF74_inline(__this, NULL); il2cpp_codegen_initobj((&V_0), sizeof(TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823)); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_11 = V_0; bool L_12; L_12 = TransitionTime_op_Inequality_m2646FABD4F674967E5CD5E2FBB071390DC07FF32(L_10, L_11, NULL); if (!L_12) { goto IL_007f; } } { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_13; L_13 = AdjustmentRule_get_DaylightTransitionEnd_m3DE90DB3CB36F38AFD5EA7F16719BE0013A1CF74_inline(__this, NULL); V_0 = L_13; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_14; L_14 = TransitionTime_get_TimeOfDay_m21DF682C87AF1B2B28F275583E344BDBFA5787E9_inline((&V_0), NULL); il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_15; L_15 = DateTime_AddMilliseconds_mEF44A0EE635A478B7B0CDAA438D2240C14C88D05((&((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MinValue_32), (1.0), NULL); bool L_16; L_16 = DateTime_op_Inequality_mC39C15A648628974D533B4E2D4EDBD091EA3E1B7(L_14, L_15, NULL); return L_16; } IL_007f: { return (bool)0; } IL_0081: { return (bool)1; } } // System.Boolean System.TimeZoneInfo/AdjustmentRule::Equals(System.TimeZoneInfo/AdjustmentRule) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AdjustmentRule_Equals_m5DF61E016305C51AC3468B26C32BDFD68E8C1CAD (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_0 = ___other0; if (!L_0) { goto IL_0074; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_1 = __this->____dateStart_0; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_2 = ___other0; NullCheck(L_2); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_3 = L_2->____dateStart_0; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_4; L_4 = DateTime_op_Equality_mFB772D884EA91082BFC51212E79B9D33A67CA66F(L_1, L_3, NULL); if (!L_4) { goto IL_0074; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_5 = __this->____dateEnd_1; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_6 = ___other0; NullCheck(L_6); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_7 = L_6->____dateEnd_1; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_8; L_8 = DateTime_op_Equality_mFB772D884EA91082BFC51212E79B9D33A67CA66F(L_5, L_7, NULL); if (!L_8) { goto IL_0074; } } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_9 = __this->____daylightDelta_2; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_10 = ___other0; NullCheck(L_10); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_11 = L_10->____daylightDelta_2; il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); bool L_12; L_12 = TimeSpan_op_Equality_m482BBD58F00FA3924F9AFD66F249274039197F1C(L_9, L_11, NULL); if (!L_12) { goto IL_0074; } } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_13 = __this->____baseUtcOffsetDelta_5; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_14 = ___other0; NullCheck(L_14); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_15 = L_14->____baseUtcOffsetDelta_5; il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); bool L_16; L_16 = TimeSpan_op_Equality_m482BBD58F00FA3924F9AFD66F249274039197F1C(L_13, L_15, NULL); if (!L_16) { goto IL_0074; } } { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* L_17 = (&__this->____daylightTransitionEnd_4); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_18 = ___other0; NullCheck(L_18); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_19 = L_18->____daylightTransitionEnd_4; bool L_20; L_20 = TransitionTime_Equals_m78333D636EC147FF011B87AB4E11140CC0E56455(L_17, L_19, NULL); if (!L_20) { goto IL_0074; } } { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* L_21 = (&__this->____daylightTransitionStart_3); AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_22 = ___other0; NullCheck(L_22); TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_23 = L_22->____daylightTransitionStart_3; bool L_24; L_24 = TransitionTime_Equals_m78333D636EC147FF011B87AB4E11140CC0E56455(L_21, L_23, NULL); return L_24; } IL_0074: { return (bool)0; } } // System.Int32 System.TimeZoneInfo/AdjustmentRule::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AdjustmentRule_GetHashCode_mD8C22D580DDE7E6FF60B4DD8508FCF515F5458AC (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) { { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_0 = (&__this->____dateStart_0); int32_t L_1; L_1 = DateTime_GetHashCode_m206A3B9394E6D089311A1A81305A5A1AB30B2D99(L_0, NULL); return L_1; } } // System.Void System.TimeZoneInfo/AdjustmentRule::.ctor(System.DateTime,System.DateTime,System.TimeSpan,System.TimeZoneInfo/TransitionTime,System.TimeZoneInfo/TransitionTime,System.TimeSpan,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AdjustmentRule__ctor_m23CD0235426C2F62801839E5DBFD24666565EF5F (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateStart0, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateEnd1, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___daylightDelta2, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ___daylightTransitionStart3, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ___daylightTransitionEnd4, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___baseUtcOffsetDelta5, bool ___noDaylightTransitions6, const RuntimeMethod* method) { { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = ___dateStart0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_1 = ___dateEnd1; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_2 = ___daylightDelta2; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_3 = ___daylightTransitionStart3; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_4 = ___daylightTransitionEnd4; bool L_5 = ___noDaylightTransitions6; AdjustmentRule_ValidateAdjustmentRule_m255624F8A6A4C3C98C0B27D23FEE70809A39FBBE(L_0, L_1, L_2, L_3, L_4, L_5, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_6 = ___dateStart0; __this->____dateStart_0 = L_6; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_7 = ___dateEnd1; __this->____dateEnd_1 = L_7; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_8 = ___daylightDelta2; __this->____daylightDelta_2 = L_8; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_9 = ___daylightTransitionStart3; __this->____daylightTransitionStart_3 = L_9; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_10 = ___daylightTransitionEnd4; __this->____daylightTransitionEnd_4 = L_10; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_11 = ___baseUtcOffsetDelta5; __this->____baseUtcOffsetDelta_5 = L_11; bool L_12 = ___noDaylightTransitions6; __this->____noDaylightTransitions_6 = L_12; return; } } // System.TimeZoneInfo/AdjustmentRule System.TimeZoneInfo/AdjustmentRule::CreateAdjustmentRule(System.DateTime,System.DateTime,System.TimeSpan,System.TimeZoneInfo/TransitionTime,System.TimeZoneInfo/TransitionTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* AdjustmentRule_CreateAdjustmentRule_m43C4E67BA80C8DF56B78D123FB70E1C1869FC863 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateStart0, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateEnd1, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___daylightDelta2, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ___daylightTransitionStart3, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ___daylightTransitionEnd4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = ___dateStart0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_1 = ___dateEnd1; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_2 = ___daylightDelta2; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_3 = ___daylightTransitionStart3; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_4 = ___daylightTransitionEnd4; il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_5 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_6 = (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07*)il2cpp_codegen_object_new(AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07_il2cpp_TypeInfo_var); NullCheck(L_6); AdjustmentRule__ctor_m23CD0235426C2F62801839E5DBFD24666565EF5F(L_6, L_0, L_1, L_2, L_3, L_4, L_5, (bool)0, NULL); return L_6; } } // System.TimeZoneInfo/AdjustmentRule System.TimeZoneInfo/AdjustmentRule::CreateAdjustmentRule(System.DateTime,System.DateTime,System.TimeSpan,System.TimeZoneInfo/TransitionTime,System.TimeZoneInfo/TransitionTime,System.TimeSpan,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* AdjustmentRule_CreateAdjustmentRule_mE8192F76B0E396ECFFBDF0A90ED7DB3F70B7C87F (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateStart0, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateEnd1, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___daylightDelta2, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ___daylightTransitionStart3, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ___daylightTransitionEnd4, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___baseUtcOffsetDelta5, bool ___noDaylightTransitions6, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = ___dateStart0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_1 = ___dateEnd1; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_2 = ___daylightDelta2; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_3 = ___daylightTransitionStart3; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_4 = ___daylightTransitionEnd4; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_5 = ___baseUtcOffsetDelta5; bool L_6 = ___noDaylightTransitions6; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_7 = (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07*)il2cpp_codegen_object_new(AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07_il2cpp_TypeInfo_var); NullCheck(L_7); AdjustmentRule__ctor_m23CD0235426C2F62801839E5DBFD24666565EF5F(L_7, L_0, L_1, L_2, L_3, L_4, L_5, L_6, NULL); return L_7; } } // System.Boolean System.TimeZoneInfo/AdjustmentRule::IsStartDateMarkerForBeginningOfYear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AdjustmentRule_IsStartDateMarkerForBeginningOfYear_mC7ED256DEBA978E209CD4DFD12F55CFB15C4FF23 (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 V_0; memset((&V_0), 0, sizeof(V_0)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_1; memset((&V_1), 0, sizeof(V_1)); { bool L_0; L_0 = AdjustmentRule_get_NoDaylightTransitions_mA92395F5741FACBEE835A929B37B6BE7D50CE3FF_inline(__this, NULL); if (L_0) { goto IL_008e; } } { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_1; L_1 = AdjustmentRule_get_DaylightTransitionStart_mB13755B6F594ECC706B3946F17159E84F23E20D1_inline(__this, NULL); V_0 = L_1; int32_t L_2; L_2 = TransitionTime_get_Month_m02516607C5B0FD478086A021F73796C71EB0D444_inline((&V_0), NULL); if ((!(((uint32_t)L_2) == ((uint32_t)1)))) { goto IL_008e; } } { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_3; L_3 = AdjustmentRule_get_DaylightTransitionStart_mB13755B6F594ECC706B3946F17159E84F23E20D1_inline(__this, NULL); V_0 = L_3; int32_t L_4; L_4 = TransitionTime_get_Day_m0F83551F1C84F28AF5516225277AFE94CDE98445_inline((&V_0), NULL); if ((!(((uint32_t)L_4) == ((uint32_t)1)))) { goto IL_008e; } } { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_5; L_5 = AdjustmentRule_get_DaylightTransitionStart_mB13755B6F594ECC706B3946F17159E84F23E20D1_inline(__this, NULL); V_0 = L_5; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_6; L_6 = TransitionTime_get_TimeOfDay_m21DF682C87AF1B2B28F275583E344BDBFA5787E9_inline((&V_0), NULL); V_1 = L_6; int32_t L_7; L_7 = DateTime_get_Hour_m350B2AEB6ED8AAD80F0779C1FD37EEE13952A7F3((&V_1), NULL); if (L_7) { goto IL_008e; } } { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_8; L_8 = AdjustmentRule_get_DaylightTransitionStart_mB13755B6F594ECC706B3946F17159E84F23E20D1_inline(__this, NULL); V_0 = L_8; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_9; L_9 = TransitionTime_get_TimeOfDay_m21DF682C87AF1B2B28F275583E344BDBFA5787E9_inline((&V_0), NULL); V_1 = L_9; int32_t L_10; L_10 = DateTime_get_Minute_m73003491DA85D2C9951ECCF890D9BF6AFFB9E973((&V_1), NULL); if (L_10) { goto IL_008e; } } { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_11; L_11 = AdjustmentRule_get_DaylightTransitionStart_mB13755B6F594ECC706B3946F17159E84F23E20D1_inline(__this, NULL); V_0 = L_11; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_12; L_12 = TransitionTime_get_TimeOfDay_m21DF682C87AF1B2B28F275583E344BDBFA5787E9_inline((&V_0), NULL); V_1 = L_12; int32_t L_13; L_13 = DateTime_get_Second_mC860BA28DED65249BE9EA46E4898730C7828B3EA((&V_1), NULL); if (L_13) { goto IL_008e; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_14 = (&__this->____dateStart_0); int32_t L_15; L_15 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138(L_14, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_16 = (&__this->____dateEnd_1); int32_t L_17; L_17 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138(L_16, NULL); return (bool)((((int32_t)L_15) == ((int32_t)L_17))? 1 : 0); } IL_008e: { return (bool)0; } } // System.Boolean System.TimeZoneInfo/AdjustmentRule::IsEndDateMarkerForEndOfYear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AdjustmentRule_IsEndDateMarkerForEndOfYear_m35FDE7810F68D5CB9F22899015ADFE1617A3B964 (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 V_0; memset((&V_0), 0, sizeof(V_0)); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_1; memset((&V_1), 0, sizeof(V_1)); { bool L_0; L_0 = AdjustmentRule_get_NoDaylightTransitions_mA92395F5741FACBEE835A929B37B6BE7D50CE3FF_inline(__this, NULL); if (L_0) { goto IL_008e; } } { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_1; L_1 = AdjustmentRule_get_DaylightTransitionEnd_m3DE90DB3CB36F38AFD5EA7F16719BE0013A1CF74_inline(__this, NULL); V_0 = L_1; int32_t L_2; L_2 = TransitionTime_get_Month_m02516607C5B0FD478086A021F73796C71EB0D444_inline((&V_0), NULL); if ((!(((uint32_t)L_2) == ((uint32_t)1)))) { goto IL_008e; } } { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_3; L_3 = AdjustmentRule_get_DaylightTransitionEnd_m3DE90DB3CB36F38AFD5EA7F16719BE0013A1CF74_inline(__this, NULL); V_0 = L_3; int32_t L_4; L_4 = TransitionTime_get_Day_m0F83551F1C84F28AF5516225277AFE94CDE98445_inline((&V_0), NULL); if ((!(((uint32_t)L_4) == ((uint32_t)1)))) { goto IL_008e; } } { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_5; L_5 = AdjustmentRule_get_DaylightTransitionEnd_m3DE90DB3CB36F38AFD5EA7F16719BE0013A1CF74_inline(__this, NULL); V_0 = L_5; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_6; L_6 = TransitionTime_get_TimeOfDay_m21DF682C87AF1B2B28F275583E344BDBFA5787E9_inline((&V_0), NULL); V_1 = L_6; int32_t L_7; L_7 = DateTime_get_Hour_m350B2AEB6ED8AAD80F0779C1FD37EEE13952A7F3((&V_1), NULL); if (L_7) { goto IL_008e; } } { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_8; L_8 = AdjustmentRule_get_DaylightTransitionEnd_m3DE90DB3CB36F38AFD5EA7F16719BE0013A1CF74_inline(__this, NULL); V_0 = L_8; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_9; L_9 = TransitionTime_get_TimeOfDay_m21DF682C87AF1B2B28F275583E344BDBFA5787E9_inline((&V_0), NULL); V_1 = L_9; int32_t L_10; L_10 = DateTime_get_Minute_m73003491DA85D2C9951ECCF890D9BF6AFFB9E973((&V_1), NULL); if (L_10) { goto IL_008e; } } { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_11; L_11 = AdjustmentRule_get_DaylightTransitionEnd_m3DE90DB3CB36F38AFD5EA7F16719BE0013A1CF74_inline(__this, NULL); V_0 = L_11; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_12; L_12 = TransitionTime_get_TimeOfDay_m21DF682C87AF1B2B28F275583E344BDBFA5787E9_inline((&V_0), NULL); V_1 = L_12; int32_t L_13; L_13 = DateTime_get_Second_mC860BA28DED65249BE9EA46E4898730C7828B3EA((&V_1), NULL); if (L_13) { goto IL_008e; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_14 = (&__this->____dateStart_0); int32_t L_15; L_15 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138(L_14, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* L_16 = (&__this->____dateEnd_1); int32_t L_17; L_17 = DateTime_get_Year_m00A88C4CEE07B7906F5F7F75C254B769808F5138(L_16, NULL); return (bool)((((int32_t)L_15) == ((int32_t)L_17))? 1 : 0); } IL_008e: { return (bool)0; } } // System.Void System.TimeZoneInfo/AdjustmentRule::ValidateAdjustmentRule(System.DateTime,System.DateTime,System.TimeSpan,System.TimeZoneInfo/TransitionTime,System.TimeZoneInfo/TransitionTime,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AdjustmentRule_ValidateAdjustmentRule_m255624F8A6A4C3C98C0B27D23FEE70809A39FBBE (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateStart0, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dateEnd1, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___daylightDelta2, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ___daylightTransitionStart3, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ___daylightTransitionEnd4, bool ___noDaylightTransitions5, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0; L_0 = DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993((&___dateStart0), NULL); if (!L_0) { goto IL_0023; } } { int32_t L_1; L_1 = DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993((&___dateStart0), NULL); if ((((int32_t)L_1) == ((int32_t)1))) { goto IL_0023; } } { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_2 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_2); ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral01B12D4BB9DCEC213EE52153F25C3475874C454D)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF1FA676B434A01F8B0C76AACD342F3261CDB272A)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AdjustmentRule_ValidateAdjustmentRule_m255624F8A6A4C3C98C0B27D23FEE70809A39FBBE_RuntimeMethod_var))); } IL_0023: { int32_t L_3; L_3 = DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993((&___dateEnd1), NULL); if (!L_3) { goto IL_0046; } } { int32_t L_4; L_4 = DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993((&___dateEnd1), NULL); if ((((int32_t)L_4) == ((int32_t)1))) { goto IL_0046; } } { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_5 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_5); ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral01B12D4BB9DCEC213EE52153F25C3475874C454D)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral445399A595B24C0202D28AE23969D8FFF38F572A)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AdjustmentRule_ValidateAdjustmentRule_m255624F8A6A4C3C98C0B27D23FEE70809A39FBBE_RuntimeMethod_var))); } IL_0046: { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_6 = ___daylightTransitionEnd4; bool L_7; L_7 = TransitionTime_Equals_m78333D636EC147FF011B87AB4E11140CC0E56455((&___daylightTransitionStart3), L_6, NULL); if (!L_7) { goto IL_0065; } } { bool L_8 = ___noDaylightTransitions5; if (L_8) { goto IL_0065; } } { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_9 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_9); ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEA8C788F462D3BDFF1A2C0A8B053AAA9567571BA)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA4236146F56D25D2D915B8BCD28F0936D3257EE6)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AdjustmentRule_ValidateAdjustmentRule_m255624F8A6A4C3C98C0B27D23FEE70809A39FBBE_RuntimeMethod_var))); } IL_0065: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_10 = ___dateStart0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_11 = ___dateEnd1; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_12; L_12 = DateTime_op_GreaterThan_mA9021939CEE6D93308C1CFB63C7E6D5CA58F7B92(L_10, L_11, NULL); if (!L_12) { goto IL_007e; } } { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_13 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_13); ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_13, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral018504CD3A7D232B591A18D6B7B570DEE8B65BAB)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF1FA676B434A01F8B0C76AACD342F3261CDB272A)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AdjustmentRule_ValidateAdjustmentRule_m255624F8A6A4C3C98C0B27D23FEE70809A39FBBE_RuntimeMethod_var))); } IL_007e: { double L_14; L_14 = TimeSpan_get_TotalHours_m753DFC812CEC8F9214EF5F9839C5B4A4DB0D2883((&___daylightDelta2), NULL); if ((((double)L_14) < ((double)(-23.0)))) { goto IL_00a2; } } { double L_15; L_15 = TimeSpan_get_TotalHours_m753DFC812CEC8F9214EF5F9839C5B4A4DB0D2883((&___daylightDelta2), NULL); if ((!(((double)L_15) > ((double)(14.0))))) { goto IL_00b8; } } IL_00a2: { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_16 = ___daylightDelta2; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_17 = L_16; RuntimeObject* L_18 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var)), &L_17); ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_19 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_19); ArgumentOutOfRangeException__ctor_m60B543A63AC8692C28096003FBF2AD124B9D5B85(L_19, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral97788FC356CCFD978CEEDA2BF269D6954F4D0740)), L_18, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral74D560302B70C9D57AC7C2692A505F648FD1B1A4)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AdjustmentRule_ValidateAdjustmentRule_m255624F8A6A4C3C98C0B27D23FEE70809A39FBBE_RuntimeMethod_var))); } IL_00b8: { int64_t L_20; L_20 = TimeSpan_get_Ticks_mC50131E57621F29FACC53B3241432ABB874FA1B5_inline((&___daylightDelta2), NULL); if (!((int64_t)(L_20%((int64_t)((int32_t)600000000))))) { goto IL_00d8; } } { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_21 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_21); ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_21, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC093A43C681B135B2CCBFD21AF1C61BC84B52631)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral97788FC356CCFD978CEEDA2BF269D6954F4D0740)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AdjustmentRule_ValidateAdjustmentRule_m255624F8A6A4C3C98C0B27D23FEE70809A39FBBE_RuntimeMethod_var))); } IL_00d8: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_22 = ___dateStart0; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_23 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MinValue_32; bool L_24; L_24 = DateTime_op_Inequality_mC39C15A648628974D533B4E2D4EDBD091EA3E1B7(L_22, L_23, NULL); if (!L_24) { goto IL_0111; } } { int32_t L_25; L_25 = DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993((&___dateStart0), NULL); if (L_25) { goto IL_0111; } } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_26; L_26 = DateTime_get_TimeOfDay_mE8933E5F62C0369E4BA6AF928283A00CA9D54D04((&___dateStart0), NULL); il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_27 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; bool L_28; L_28 = TimeSpan_op_Inequality_m702FEB395C90D5B23E2F7CD61B44846CD9B2C808(L_26, L_27, NULL); if (!L_28) { goto IL_0111; } } { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_29 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_29); ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_29, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA7CB599B22D521F814BCCB6E5B683D86AA12640B)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF1FA676B434A01F8B0C76AACD342F3261CDB272A)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_29, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AdjustmentRule_ValidateAdjustmentRule_m255624F8A6A4C3C98C0B27D23FEE70809A39FBBE_RuntimeMethod_var))); } IL_0111: { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_30 = ___dateEnd1; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_31 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MaxValue_33; bool L_32; L_32 = DateTime_op_Inequality_mC39C15A648628974D533B4E2D4EDBD091EA3E1B7(L_30, L_31, NULL); if (!L_32) { goto IL_014a; } } { int32_t L_33; L_33 = DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993((&___dateEnd1), NULL); if (L_33) { goto IL_014a; } } { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_34; L_34 = DateTime_get_TimeOfDay_mE8933E5F62C0369E4BA6AF928283A00CA9D54D04((&___dateEnd1), NULL); il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_35 = ((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))->___Zero_19; bool L_36; L_36 = TimeSpan_op_Inequality_m702FEB395C90D5B23E2F7CD61B44846CD9B2C808(L_34, L_35, NULL); if (!L_36) { goto IL_014a; } } { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_37 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_37); ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_37, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA7CB599B22D521F814BCCB6E5B683D86AA12640B)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral445399A595B24C0202D28AE23969D8FFF38F572A)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_37, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AdjustmentRule_ValidateAdjustmentRule_m255624F8A6A4C3C98C0B27D23FEE70809A39FBBE_RuntimeMethod_var))); } IL_014a: { return; } } // System.Void System.TimeZoneInfo/AdjustmentRule::System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AdjustmentRule_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_mB8F32624CFFFCC0C8DBDECAABCA58EC2F8F5AFB9 (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, RuntimeObject* ___sender0, const RuntimeMethod* method) { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* V_0 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; try {// begin try (depth: 1) DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = __this->____dateStart_0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_1 = __this->____dateEnd_1; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_2 = __this->____daylightDelta_2; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_3 = __this->____daylightTransitionStart_3; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_4 = __this->____daylightTransitionEnd_4; bool L_5 = __this->____noDaylightTransitions_6; AdjustmentRule_ValidateAdjustmentRule_m255624F8A6A4C3C98C0B27D23FEE70809A39FBBE(L_0, L_1, L_2, L_3, L_4, L_5, NULL); goto IL_0038; }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_002b; } throw e; } CATCH_002b: {// begin catch(System.ArgumentException) V_0 = ((ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)IL2CPP_GET_ACTIVE_EXCEPTION(ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)); ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_6 = V_0; SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7* L_7 = (SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7_il2cpp_TypeInfo_var))); NullCheck(L_7); SerializationException__ctor_m8CF86DA30D4F95904BF5C1A9CF646DE92EB8C161(L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA595476C6F6D3E2C3406DD69BC73859EA4408F2F)), L_6, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AdjustmentRule_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_mB8F32624CFFFCC0C8DBDECAABCA58EC2F8F5AFB9_RuntimeMethod_var))); }// end catch (depth: 1) IL_0038: { return; } } // System.Void System.TimeZoneInfo/AdjustmentRule::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AdjustmentRule_System_Runtime_Serialization_ISerializable_GetObjectData_m764F67E36C8B7FE592310FBCF864FA72251304FF (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___info0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral592EDDBE99E3B537ABCB79EA8611A7CB7989097F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral76EE6AC9CE84AB75E1822F990EDC05A4A83E34CD); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8BB31BB6FEE4CFF323F9B357F30EDA29E1B5CBA7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral92057E8211A0EA82031051D2B0E70ADB04D156C7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral98A58CDB5617DAD8D0AD263D8F93C5CB675C2163); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD62A6E8579B9E226105A0C28889FEEC94AAE3E9A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF38018A5E6704152C358CEE388C935AA44BFE927); s_Il2CppMethodInitialized = true; } { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___info0; 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))); NullCheck(L_1); ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA7B00F7F25C375B2501A6ADBC86D092B23977085)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AdjustmentRule_System_Runtime_Serialization_ISerializable_GetObjectData_m764F67E36C8B7FE592310FBCF864FA72251304FF_RuntimeMethod_var))); } IL_000e: { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_2 = ___info0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_3 = __this->____dateStart_0; NullCheck(L_2); SerializationInfo_AddValue_m820C29058E845C4A30DDA9D7A235F693469C0358(L_2, _stringLiteralD62A6E8579B9E226105A0C28889FEEC94AAE3E9A, L_3, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_4 = ___info0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_5 = __this->____dateEnd_1; NullCheck(L_4); SerializationInfo_AddValue_m820C29058E845C4A30DDA9D7A235F693469C0358(L_4, _stringLiteralF38018A5E6704152C358CEE388C935AA44BFE927, L_5, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_6 = ___info0; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_7 = __this->____daylightDelta_2; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_8 = L_7; RuntimeObject* L_9 = Box(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var, &L_8); NullCheck(L_6); SerializationInfo_AddValue_m28FE9B110F21DDB8FF5F5E35A0EABD659DB22C2F(L_6, _stringLiteral76EE6AC9CE84AB75E1822F990EDC05A4A83E34CD, L_9, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_10 = ___info0; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_11 = __this->____daylightTransitionStart_3; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_12 = L_11; RuntimeObject* L_13 = Box(TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_il2cpp_TypeInfo_var, &L_12); NullCheck(L_10); SerializationInfo_AddValue_m28FE9B110F21DDB8FF5F5E35A0EABD659DB22C2F(L_10, _stringLiteral592EDDBE99E3B537ABCB79EA8611A7CB7989097F, L_13, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_14 = ___info0; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_15 = __this->____daylightTransitionEnd_4; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_16 = L_15; RuntimeObject* L_17 = Box(TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_il2cpp_TypeInfo_var, &L_16); NullCheck(L_14); SerializationInfo_AddValue_m28FE9B110F21DDB8FF5F5E35A0EABD659DB22C2F(L_14, _stringLiteral92057E8211A0EA82031051D2B0E70ADB04D156C7, L_17, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_18 = ___info0; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_19 = __this->____baseUtcOffsetDelta_5; TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_20 = L_19; RuntimeObject* L_21 = Box(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var, &L_20); NullCheck(L_18); SerializationInfo_AddValue_m28FE9B110F21DDB8FF5F5E35A0EABD659DB22C2F(L_18, _stringLiteral8BB31BB6FEE4CFF323F9B357F30EDA29E1B5CBA7, L_21, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_22 = ___info0; bool L_23 = __this->____noDaylightTransitions_6; NullCheck(L_22); SerializationInfo_AddValue_mC52253CB19C98F82A26E32C941F8F20E106D4C0D(L_22, _stringLiteral98A58CDB5617DAD8D0AD263D8F93C5CB675C2163, L_23, NULL); return; } } // System.Void System.TimeZoneInfo/AdjustmentRule::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AdjustmentRule__ctor_m1315C12A85D7BCDBED55550CE87DF985D1FE8A65 (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___info0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral592EDDBE99E3B537ABCB79EA8611A7CB7989097F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral76EE6AC9CE84AB75E1822F990EDC05A4A83E34CD); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8BB31BB6FEE4CFF323F9B357F30EDA29E1B5CBA7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral92057E8211A0EA82031051D2B0E70ADB04D156C7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral98A58CDB5617DAD8D0AD263D8F93C5CB675C2163); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD62A6E8579B9E226105A0C28889FEEC94AAE3E9A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF38018A5E6704152C358CEE388C935AA44BFE927); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___info0; if (L_0) { goto IL_0014; } } { ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var))); NullCheck(L_1); ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA7B00F7F25C375B2501A6ADBC86D092B23977085)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AdjustmentRule__ctor_m1315C12A85D7BCDBED55550CE87DF985D1FE8A65_RuntimeMethod_var))); } IL_0014: { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_2 = ___info0; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_3 = { reinterpret_cast (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_4; L_4 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_3, NULL); NullCheck(L_2); RuntimeObject* L_5; L_5 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_2, _stringLiteralD62A6E8579B9E226105A0C28889FEEC94AAE3E9A, L_4, NULL); __this->____dateStart_0 = ((*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)UnBox(L_5, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var)))); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_6 = ___info0; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_7 = { reinterpret_cast (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_0_0_0_var) }; Type_t* L_8; L_8 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_7, NULL); NullCheck(L_6); RuntimeObject* L_9; L_9 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_6, _stringLiteralF38018A5E6704152C358CEE388C935AA44BFE927, L_8, NULL); __this->____dateEnd_1 = ((*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)UnBox(L_9, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var)))); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_10 = ___info0; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_11 = { reinterpret_cast (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_0_0_0_var) }; Type_t* L_12; L_12 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_11, NULL); NullCheck(L_10); RuntimeObject* L_13; L_13 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_10, _stringLiteral76EE6AC9CE84AB75E1822F990EDC05A4A83E34CD, L_12, NULL); __this->____daylightDelta_2 = ((*(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)UnBox(L_13, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var)))); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_14 = ___info0; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_15 = { reinterpret_cast (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_0_0_0_var) }; Type_t* L_16; L_16 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_15, NULL); NullCheck(L_14); RuntimeObject* L_17; L_17 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_14, _stringLiteral592EDDBE99E3B537ABCB79EA8611A7CB7989097F, L_16, NULL); __this->____daylightTransitionStart_3 = ((*(TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823*)((TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823*)(TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823*)UnBox(L_17, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_il2cpp_TypeInfo_var)))); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_18 = ___info0; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_19 = { reinterpret_cast (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_0_0_0_var) }; Type_t* L_20; L_20 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_19, NULL); NullCheck(L_18); RuntimeObject* L_21; L_21 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_18, _stringLiteral92057E8211A0EA82031051D2B0E70ADB04D156C7, L_20, NULL); __this->____daylightTransitionEnd_4 = ((*(TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823*)((TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823*)(TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823*)UnBox(L_21, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_il2cpp_TypeInfo_var)))); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_22 = ___info0; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_23 = { reinterpret_cast (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_0_0_0_var) }; Type_t* L_24; L_24 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_23, NULL); NullCheck(L_22); RuntimeObject* L_25; L_25 = SerializationInfo_GetValueNoThrow_mC2AB5CF14F11B0C67E384D5CEF15C9ADDC754D06(L_22, _stringLiteral8BB31BB6FEE4CFF323F9B357F30EDA29E1B5CBA7, L_24, NULL); V_0 = L_25; RuntimeObject* L_26 = V_0; if (!L_26) { goto IL_00d9; } } { RuntimeObject* L_27 = V_0; __this->____baseUtcOffsetDelta_5 = ((*(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)UnBox(L_27, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var)))); } IL_00d9: { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_28 = ___info0; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_29 = { reinterpret_cast (Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_30; L_30 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_29, NULL); NullCheck(L_28); RuntimeObject* L_31; L_31 = SerializationInfo_GetValueNoThrow_mC2AB5CF14F11B0C67E384D5CEF15C9ADDC754D06(L_28, _stringLiteral98A58CDB5617DAD8D0AD263D8F93C5CB675C2163, L_30, NULL); V_0 = L_31; RuntimeObject* L_32 = V_0; if (!L_32) { goto IL_00fe; } } { RuntimeObject* L_33 = V_0; __this->____noDaylightTransitions_6 = ((*(bool*)((bool*)(bool*)UnBox(L_33, Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var)))); } IL_00fe: { return; } } // System.Void System.TimeZoneInfo/AdjustmentRule::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AdjustmentRule__ctor_m2E09EC98FE32A2C1FDF2BF1B8A63B909768A703D (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AdjustmentRule__ctor_m2E09EC98FE32A2C1FDF2BF1B8A63B909768A703D_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(AdjustmentRule__ctor_m2E09EC98FE32A2C1FDF2BF1B8A63B909768A703D_RuntimeMethod_var); 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 // Conversion methods for marshalling of: System.TimeZoneInfo/TransitionTime IL2CPP_EXTERN_C void TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_marshal_pinvoke(const TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823& unmarshaled, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_marshaled_pinvoke& marshaled) { Exception_t* ____timeOfDay_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '_timeOfDay' of type 'TransitionTime'."); IL2CPP_RAISE_MANAGED_EXCEPTION(____timeOfDay_0Exception, NULL); } IL2CPP_EXTERN_C void TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_marshal_pinvoke_back(const TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_marshaled_pinvoke& marshaled, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823& unmarshaled) { Exception_t* ____timeOfDay_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '_timeOfDay' of type 'TransitionTime'."); IL2CPP_RAISE_MANAGED_EXCEPTION(____timeOfDay_0Exception, NULL); } // Conversion method for clean up from marshalling of: System.TimeZoneInfo/TransitionTime IL2CPP_EXTERN_C void TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_marshal_pinvoke_cleanup(TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: System.TimeZoneInfo/TransitionTime IL2CPP_EXTERN_C void TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_marshal_com(const TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823& unmarshaled, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_marshaled_com& marshaled) { Exception_t* ____timeOfDay_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '_timeOfDay' of type 'TransitionTime'."); IL2CPP_RAISE_MANAGED_EXCEPTION(____timeOfDay_0Exception, NULL); } IL2CPP_EXTERN_C void TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_marshal_com_back(const TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_marshaled_com& marshaled, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823& unmarshaled) { Exception_t* ____timeOfDay_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '_timeOfDay' of type 'TransitionTime'."); IL2CPP_RAISE_MANAGED_EXCEPTION(____timeOfDay_0Exception, NULL); } // Conversion method for clean up from marshalling of: System.TimeZoneInfo/TransitionTime IL2CPP_EXTERN_C void TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_marshal_com_cleanup(TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_marshaled_com& marshaled) { } // System.DateTime System.TimeZoneInfo/TransitionTime::get_TimeOfDay() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D TransitionTime_get_TimeOfDay_m21DF682C87AF1B2B28F275583E344BDBFA5787E9 (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, const RuntimeMethod* method) { { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = __this->____timeOfDay_0; return L_0; } } IL2CPP_EXTERN_C DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D TransitionTime_get_TimeOfDay_m21DF682C87AF1B2B28F275583E344BDBFA5787E9_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D _returnValue; _returnValue = TransitionTime_get_TimeOfDay_m21DF682C87AF1B2B28F275583E344BDBFA5787E9_inline(_thisAdjusted, method); return _returnValue; } // System.Int32 System.TimeZoneInfo/TransitionTime::get_Month() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TransitionTime_get_Month_m02516607C5B0FD478086A021F73796C71EB0D444 (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, const RuntimeMethod* method) { { uint8_t L_0 = __this->____month_1; return L_0; } } IL2CPP_EXTERN_C int32_t TransitionTime_get_Month_m02516607C5B0FD478086A021F73796C71EB0D444_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = TransitionTime_get_Month_m02516607C5B0FD478086A021F73796C71EB0D444_inline(_thisAdjusted, method); return _returnValue; } // System.Int32 System.TimeZoneInfo/TransitionTime::get_Week() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TransitionTime_get_Week_mE32FFDD98D43B11CFBBC1C182601D6F167B392FC (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, const RuntimeMethod* method) { { uint8_t L_0 = __this->____week_2; return L_0; } } IL2CPP_EXTERN_C int32_t TransitionTime_get_Week_mE32FFDD98D43B11CFBBC1C182601D6F167B392FC_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = TransitionTime_get_Week_mE32FFDD98D43B11CFBBC1C182601D6F167B392FC_inline(_thisAdjusted, method); return _returnValue; } // System.Int32 System.TimeZoneInfo/TransitionTime::get_Day() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TransitionTime_get_Day_m0F83551F1C84F28AF5516225277AFE94CDE98445 (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, const RuntimeMethod* method) { { uint8_t L_0 = __this->____day_3; return L_0; } } IL2CPP_EXTERN_C int32_t TransitionTime_get_Day_m0F83551F1C84F28AF5516225277AFE94CDE98445_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = TransitionTime_get_Day_m0F83551F1C84F28AF5516225277AFE94CDE98445_inline(_thisAdjusted, method); return _returnValue; } // System.DayOfWeek System.TimeZoneInfo/TransitionTime::get_DayOfWeek() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TransitionTime_get_DayOfWeek_mD78344AF8C9889C418F0ADAE412D1FD746D031FA (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->____dayOfWeek_4; return L_0; } } IL2CPP_EXTERN_C int32_t TransitionTime_get_DayOfWeek_mD78344AF8C9889C418F0ADAE412D1FD746D031FA_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = TransitionTime_get_DayOfWeek_mD78344AF8C9889C418F0ADAE412D1FD746D031FA_inline(_thisAdjusted, method); return _returnValue; } // System.Boolean System.TimeZoneInfo/TransitionTime::get_IsFixedDateRule() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TransitionTime_get_IsFixedDateRule_m8F920A7E971E18F7E165AF20C831208D14861379 (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, const RuntimeMethod* method) { { bool L_0 = __this->____isFixedDateRule_5; return L_0; } } IL2CPP_EXTERN_C bool TransitionTime_get_IsFixedDateRule_m8F920A7E971E18F7E165AF20C831208D14861379_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = TransitionTime_get_IsFixedDateRule_m8F920A7E971E18F7E165AF20C831208D14861379_inline(_thisAdjusted, method); return _returnValue; } // System.Boolean System.TimeZoneInfo/TransitionTime::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TransitionTime_Equals_m291DF01B4B0E82236E7792B4C582307DA0640D35 (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, RuntimeObject* ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___obj0; if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_0, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_il2cpp_TypeInfo_var))) { goto IL_0015; } } { RuntimeObject* L_1 = ___obj0; bool L_2; L_2 = TransitionTime_Equals_m78333D636EC147FF011B87AB4E11140CC0E56455(__this, ((*(TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823*)((TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823*)(TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823*)UnBox(L_1, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823_il2cpp_TypeInfo_var)))), NULL); return L_2; } IL_0015: { return (bool)0; } } IL2CPP_EXTERN_C bool TransitionTime_Equals_m291DF01B4B0E82236E7792B4C582307DA0640D35_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___obj0, const RuntimeMethod* method) { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = TransitionTime_Equals_m291DF01B4B0E82236E7792B4C582307DA0640D35(_thisAdjusted, ___obj0, method); return _returnValue; } // System.Boolean System.TimeZoneInfo/TransitionTime::op_Inequality(System.TimeZoneInfo/TransitionTime,System.TimeZoneInfo/TransitionTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TransitionTime_op_Inequality_m2646FABD4F674967E5CD5E2FBB071390DC07FF32 (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ___t10, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ___t21, const RuntimeMethod* method) { { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_0 = ___t21; bool L_1; L_1 = TransitionTime_Equals_m78333D636EC147FF011B87AB4E11140CC0E56455((&___t10), L_0, NULL); return (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.TimeZoneInfo/TransitionTime::Equals(System.TimeZoneInfo/TransitionTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TransitionTime_Equals_m78333D636EC147FF011B87AB4E11140CC0E56455 (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { bool L_0 = __this->____isFixedDateRule_5; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_1 = ___other0; bool L_2 = L_1.____isFixedDateRule_5; if ((!(((uint32_t)L_0) == ((uint32_t)L_2)))) { goto IL_0065; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_3 = __this->____timeOfDay_0; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_4 = ___other0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_5 = L_4.____timeOfDay_0; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); bool L_6; L_6 = DateTime_op_Equality_mFB772D884EA91082BFC51212E79B9D33A67CA66F(L_3, L_5, NULL); if (!L_6) { goto IL_0065; } } { uint8_t L_7 = __this->____month_1; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_8 = ___other0; uint8_t L_9 = L_8.____month_1; if ((!(((uint32_t)L_7) == ((uint32_t)L_9)))) { goto IL_0065; } } { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_10 = ___other0; bool L_11 = L_10.____isFixedDateRule_5; if (L_11) { goto IL_0056; } } { uint8_t L_12 = __this->____week_2; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_13 = ___other0; uint8_t L_14 = L_13.____week_2; if ((!(((uint32_t)L_12) == ((uint32_t)L_14)))) { goto IL_0054; } } { int32_t L_15 = __this->____dayOfWeek_4; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_16 = ___other0; int32_t L_17 = L_16.____dayOfWeek_4; return (bool)((((int32_t)L_15) == ((int32_t)L_17))? 1 : 0); } IL_0054: { return (bool)0; } IL_0056: { uint8_t L_18 = __this->____day_3; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_19 = ___other0; uint8_t L_20 = L_19.____day_3; return (bool)((((int32_t)L_18) == ((int32_t)L_20))? 1 : 0); } IL_0065: { return (bool)0; } } IL2CPP_EXTERN_C bool TransitionTime_Equals_m78333D636EC147FF011B87AB4E11140CC0E56455_AdjustorThunk (RuntimeObject* __this, TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 ___other0, const RuntimeMethod* method) { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = TransitionTime_Equals_m78333D636EC147FF011B87AB4E11140CC0E56455(_thisAdjusted, ___other0, method); return _returnValue; } // System.Int32 System.TimeZoneInfo/TransitionTime::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TransitionTime_GetHashCode_mA421896976B38A28F6779F670883BB9EE895AE60 (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, const RuntimeMethod* method) { { uint8_t L_0 = __this->____month_1; uint8_t L_1 = __this->____week_2; return ((int32_t)((int32_t)L_0^((int32_t)((int32_t)L_1<<8)))); } } IL2CPP_EXTERN_C int32_t TransitionTime_GetHashCode_mA421896976B38A28F6779F670883BB9EE895AE60_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = TransitionTime_GetHashCode_mA421896976B38A28F6779F670883BB9EE895AE60(_thisAdjusted, method); return _returnValue; } // System.Void System.TimeZoneInfo/TransitionTime::.ctor(System.DateTime,System.Int32,System.Int32,System.Int32,System.DayOfWeek,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransitionTime__ctor_m4792CF1086877E744BE6428F33E6119F044D7FF6 (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___timeOfDay0, int32_t ___month1, int32_t ___week2, int32_t ___day3, int32_t ___dayOfWeek4, bool ___isFixedDateRule5, const RuntimeMethod* method) { { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = ___timeOfDay0; int32_t L_1 = ___month1; int32_t L_2 = ___week2; int32_t L_3 = ___day3; int32_t L_4 = ___dayOfWeek4; TransitionTime_ValidateTransitionTime_mD25BF3922B6A12F7EEFFCCF23E9595B986E8889D(L_0, L_1, L_2, L_3, L_4, NULL); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_5 = ___timeOfDay0; __this->____timeOfDay_0 = L_5; int32_t L_6 = ___month1; __this->____month_1 = (uint8_t)((int32_t)(uint8_t)L_6); int32_t L_7 = ___week2; __this->____week_2 = (uint8_t)((int32_t)(uint8_t)L_7); int32_t L_8 = ___day3; __this->____day_3 = (uint8_t)((int32_t)(uint8_t)L_8); int32_t L_9 = ___dayOfWeek4; __this->____dayOfWeek_4 = L_9; bool L_10 = ___isFixedDateRule5; __this->____isFixedDateRule_5 = L_10; return; } } IL2CPP_EXTERN_C void TransitionTime__ctor_m4792CF1086877E744BE6428F33E6119F044D7FF6_AdjustorThunk (RuntimeObject* __this, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___timeOfDay0, int32_t ___month1, int32_t ___week2, int32_t ___day3, int32_t ___dayOfWeek4, bool ___isFixedDateRule5, const RuntimeMethod* method) { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); TransitionTime__ctor_m4792CF1086877E744BE6428F33E6119F044D7FF6(_thisAdjusted, ___timeOfDay0, ___month1, ___week2, ___day3, ___dayOfWeek4, ___isFixedDateRule5, method); } // System.TimeZoneInfo/TransitionTime System.TimeZoneInfo/TransitionTime::CreateFixedDateRule(System.DateTime,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 TransitionTime_CreateFixedDateRule_m67417DBC5A7651EFC46B9719E75984AA61073122 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___timeOfDay0, int32_t ___month1, int32_t ___day2, const RuntimeMethod* method) { { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = ___timeOfDay0; int32_t L_1 = ___month1; int32_t L_2 = ___day2; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_3; memset((&L_3), 0, sizeof(L_3)); TransitionTime__ctor_m4792CF1086877E744BE6428F33E6119F044D7FF6((&L_3), L_0, L_1, 1, L_2, 0, (bool)1, /*hidden argument*/NULL); return L_3; } } // System.TimeZoneInfo/TransitionTime System.TimeZoneInfo/TransitionTime::CreateFloatingDateRule(System.DateTime,System.Int32,System.Int32,System.DayOfWeek) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 TransitionTime_CreateFloatingDateRule_m1859EDF4DCD24D07D78FD3B1E67BB89636374C67 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___timeOfDay0, int32_t ___month1, int32_t ___week2, int32_t ___dayOfWeek3, const RuntimeMethod* method) { { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = ___timeOfDay0; int32_t L_1 = ___month1; int32_t L_2 = ___week2; int32_t L_3 = ___dayOfWeek3; TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_4; memset((&L_4), 0, sizeof(L_4)); TransitionTime__ctor_m4792CF1086877E744BE6428F33E6119F044D7FF6((&L_4), L_0, L_1, L_2, 1, L_3, (bool)0, /*hidden argument*/NULL); return L_4; } } // System.Void System.TimeZoneInfo/TransitionTime::ValidateTransitionTime(System.DateTime,System.Int32,System.Int32,System.Int32,System.DayOfWeek) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransitionTime_ValidateTransitionTime_mD25BF3922B6A12F7EEFFCCF23E9595B986E8889D (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___timeOfDay0, int32_t ___month1, int32_t ___week2, int32_t ___day3, int32_t ___dayOfWeek4, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { int32_t L_0; L_0 = DateTime_get_Kind_m83D45222D9386873333A178B9AB31AC2B2F2C993((&___timeOfDay0), NULL); if (!L_0) { goto IL_0019; } } { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_1 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_1); ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE5A6B5B780158F734FA0A11A802E762EF7BDD272)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC71EEB076C9C234A1E39FDB9B0DCFC8851BA4D7F)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TransitionTime_ValidateTransitionTime_mD25BF3922B6A12F7EEFFCCF23E9595B986E8889D_RuntimeMethod_var))); } IL_0019: { int32_t L_2 = ___month1; if ((((int32_t)L_2) < ((int32_t)1))) { goto IL_0022; } } { int32_t L_3 = ___month1; if ((((int32_t)L_3) <= ((int32_t)((int32_t)12)))) { goto IL_0032; } } IL_0022: { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_4 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_4); ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral30D99F99F1F4688CE08A3BF1B034C9CD49C19174)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD5E0D3D064AAABFE3EC781EFE9126A80D40BED15)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TransitionTime_ValidateTransitionTime_mD25BF3922B6A12F7EEFFCCF23E9595B986E8889D_RuntimeMethod_var))); } IL_0032: { int32_t L_5 = ___day3; if ((((int32_t)L_5) < ((int32_t)1))) { goto IL_003b; } } { int32_t L_6 = ___day3; if ((((int32_t)L_6) <= ((int32_t)((int32_t)31)))) { goto IL_004b; } } IL_003b: { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_7 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_7); ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral645F0B83FF7CADECF44AD1B83B13002DA97FBA1E)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4B63EF6929AE971A204D72191783C54436124C51)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TransitionTime_ValidateTransitionTime_mD25BF3922B6A12F7EEFFCCF23E9595B986E8889D_RuntimeMethod_var))); } IL_004b: { int32_t L_8 = ___week2; if ((((int32_t)L_8) < ((int32_t)1))) { goto IL_0053; } } { int32_t L_9 = ___week2; if ((((int32_t)L_9) <= ((int32_t)5))) { goto IL_0063; } } IL_0053: { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_10 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_10); ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0A2679566878DB123603B221EB69443EBD3A7BCB)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral27898ED9175E943FDE24F2BF2E86B60EEDFF15D2)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TransitionTime_ValidateTransitionTime_mD25BF3922B6A12F7EEFFCCF23E9595B986E8889D_RuntimeMethod_var))); } IL_0063: { int32_t L_11 = ___dayOfWeek4; if ((((int32_t)L_11) < ((int32_t)0))) { goto IL_006d; } } { int32_t L_12 = ___dayOfWeek4; if ((((int32_t)L_12) <= ((int32_t)6))) { goto IL_007d; } } IL_006d: { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_13 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_13); ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_13, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA50A38EF2D7858A83B908FDB41C862EF6FD5FAE1)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral83DC2909B9E8CF20AD23217F95DC9967B22DD3F5)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TransitionTime_ValidateTransitionTime_mD25BF3922B6A12F7EEFFCCF23E9595B986E8889D_RuntimeMethod_var))); } IL_007d: { DateTime_GetDatePart_m85E7446E253F012D1662467EAEFB4CD9C50AE86D((&___timeOfDay0), (&V_0), (&V_1), (&V_2), NULL); int32_t L_14 = V_0; if ((!(((uint32_t)L_14) == ((uint32_t)1)))) { goto IL_00a6; } } { int32_t L_15 = V_1; if ((!(((uint32_t)L_15) == ((uint32_t)1)))) { goto IL_00a6; } } { int32_t L_16 = V_2; if ((!(((uint32_t)L_16) == ((uint32_t)1)))) { goto IL_00a6; } } { int64_t L_17; L_17 = DateTime_get_Ticks_mC2CF04ED0EAB425C72C2532FFC5743777F3C93A6((&___timeOfDay0), NULL); if (!((int64_t)(L_17%((int64_t)((int32_t)10000))))) { goto IL_00b6; } } IL_00a6: { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_18 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_18); ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_18, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1C55B63DB181316212E6D01717E65E1FB557B6B8)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC71EEB076C9C234A1E39FDB9B0DCFC8851BA4D7F)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_18, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TransitionTime_ValidateTransitionTime_mD25BF3922B6A12F7EEFFCCF23E9595B986E8889D_RuntimeMethod_var))); } IL_00b6: { return; } } // System.Void System.TimeZoneInfo/TransitionTime::System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransitionTime_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_mC0BA25E7364D621D11F85E1E551B50CB68E2621C (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, RuntimeObject* ___sender0, const RuntimeMethod* method) { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* V_0 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; try {// begin try (depth: 1) DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = __this->____timeOfDay_0; uint8_t L_1 = __this->____month_1; uint8_t L_2 = __this->____week_2; uint8_t L_3 = __this->____day_3; int32_t L_4 = __this->____dayOfWeek_4; TransitionTime_ValidateTransitionTime_mD25BF3922B6A12F7EEFFCCF23E9595B986E8889D(L_0, L_1, L_2, L_3, L_4, NULL); goto IL_0032; }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0025; } throw e; } CATCH_0025: {// begin catch(System.ArgumentException) V_0 = ((ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)IL2CPP_GET_ACTIVE_EXCEPTION(ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)); ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_5 = V_0; SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7* L_6 = (SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7_il2cpp_TypeInfo_var))); NullCheck(L_6); SerializationException__ctor_m8CF86DA30D4F95904BF5C1A9CF646DE92EB8C161(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA595476C6F6D3E2C3406DD69BC73859EA4408F2F)), L_5, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TransitionTime_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_mC0BA25E7364D621D11F85E1E551B50CB68E2621C_RuntimeMethod_var))); }// end catch (depth: 1) IL_0032: { return; } } IL2CPP_EXTERN_C void TransitionTime_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_mC0BA25E7364D621D11F85E1E551B50CB68E2621C_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___sender0, const RuntimeMethod* method) { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); TransitionTime_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_mC0BA25E7364D621D11F85E1E551B50CB68E2621C(_thisAdjusted, ___sender0, method); } // System.Void System.TimeZoneInfo/TransitionTime::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransitionTime_System_Runtime_Serialization_ISerializable_GetObjectData_m15188D93E8934322C49D68A618FE36EC787DF2D5 (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___info0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DayOfWeek_t726DBD527FF9B9D2A0352FB80C55EE2EBE56783D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3AF0F65A629E1F9641A341CFA19B861690DA71B5); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral79C59F2479E52A939A8A16D011943BDBDFBEE65E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral83A0203482067140327BBF852248E02658CAE786); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral91A84CFC28DE4E260ED3B9388BE19E585D150D7F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD41010780259F355E00BAB0A989D365B9CD48A8F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD94C250F2B1277449096D60BF52D91C01BC28947); s_Il2CppMethodInitialized = true; } { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___info0; 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))); NullCheck(L_1); ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA7B00F7F25C375B2501A6ADBC86D092B23977085)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TransitionTime_System_Runtime_Serialization_ISerializable_GetObjectData_m15188D93E8934322C49D68A618FE36EC787DF2D5_RuntimeMethod_var))); } IL_000e: { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_2 = ___info0; DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_3 = __this->____timeOfDay_0; NullCheck(L_2); SerializationInfo_AddValue_m820C29058E845C4A30DDA9D7A235F693469C0358(L_2, _stringLiteralD41010780259F355E00BAB0A989D365B9CD48A8F, L_3, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_4 = ___info0; uint8_t L_5 = __this->____month_1; NullCheck(L_4); SerializationInfo_AddValue_m65B91D3CD967B3B7DDFA528021B50D44BC52F2CB(L_4, _stringLiteral3AF0F65A629E1F9641A341CFA19B861690DA71B5, L_5, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_6 = ___info0; uint8_t L_7 = __this->____week_2; NullCheck(L_6); SerializationInfo_AddValue_m65B91D3CD967B3B7DDFA528021B50D44BC52F2CB(L_6, _stringLiteral91A84CFC28DE4E260ED3B9388BE19E585D150D7F, L_7, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_8 = ___info0; uint8_t L_9 = __this->____day_3; NullCheck(L_8); SerializationInfo_AddValue_m65B91D3CD967B3B7DDFA528021B50D44BC52F2CB(L_8, _stringLiteral79C59F2479E52A939A8A16D011943BDBDFBEE65E, L_9, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_10 = ___info0; int32_t L_11 = __this->____dayOfWeek_4; int32_t L_12 = L_11; RuntimeObject* L_13 = Box(DayOfWeek_t726DBD527FF9B9D2A0352FB80C55EE2EBE56783D_il2cpp_TypeInfo_var, &L_12); NullCheck(L_10); SerializationInfo_AddValue_m28FE9B110F21DDB8FF5F5E35A0EABD659DB22C2F(L_10, _stringLiteral83A0203482067140327BBF852248E02658CAE786, L_13, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_14 = ___info0; bool L_15 = __this->____isFixedDateRule_5; NullCheck(L_14); SerializationInfo_AddValue_mC52253CB19C98F82A26E32C941F8F20E106D4C0D(L_14, _stringLiteralD94C250F2B1277449096D60BF52D91C01BC28947, L_15, NULL); return; } } IL2CPP_EXTERN_C void TransitionTime_System_Runtime_Serialization_ISerializable_GetObjectData_m15188D93E8934322C49D68A618FE36EC787DF2D5_AdjustorThunk (RuntimeObject* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___info0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___context1, const RuntimeMethod* method) { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); TransitionTime_System_Runtime_Serialization_ISerializable_GetObjectData_m15188D93E8934322C49D68A618FE36EC787DF2D5(_thisAdjusted, ___info0, ___context1, method); } // System.Void System.TimeZoneInfo/TransitionTime::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransitionTime__ctor_mDA3962EC43A405307D2F615F8D410C4F2A499AD5 (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___info0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DayOfWeek_t726DBD527FF9B9D2A0352FB80C55EE2EBE56783D_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DayOfWeek_t726DBD527FF9B9D2A0352FB80C55EE2EBE56783D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3AF0F65A629E1F9641A341CFA19B861690DA71B5); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral79C59F2479E52A939A8A16D011943BDBDFBEE65E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral83A0203482067140327BBF852248E02658CAE786); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral91A84CFC28DE4E260ED3B9388BE19E585D150D7F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD41010780259F355E00BAB0A989D365B9CD48A8F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD94C250F2B1277449096D60BF52D91C01BC28947); s_Il2CppMethodInitialized = true; } { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___info0; 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))); NullCheck(L_1); ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA7B00F7F25C375B2501A6ADBC86D092B23977085)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TransitionTime__ctor_mDA3962EC43A405307D2F615F8D410C4F2A499AD5_RuntimeMethod_var))); } IL_000e: { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_2 = ___info0; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_3 = { reinterpret_cast (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_4; L_4 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_3, NULL); NullCheck(L_2); RuntimeObject* L_5; L_5 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_2, _stringLiteralD41010780259F355E00BAB0A989D365B9CD48A8F, L_4, NULL); __this->____timeOfDay_0 = ((*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)UnBox(L_5, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var)))); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_6 = ___info0; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_7 = { reinterpret_cast (Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var) }; Type_t* L_8; L_8 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_7, NULL); NullCheck(L_6); RuntimeObject* L_9; L_9 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_6, _stringLiteral3AF0F65A629E1F9641A341CFA19B861690DA71B5, L_8, NULL); __this->____month_1 = ((*(uint8_t*)((uint8_t*)(uint8_t*)UnBox(L_9, Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var)))); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_10 = ___info0; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_11 = { reinterpret_cast (Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var) }; Type_t* L_12; L_12 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_11, NULL); NullCheck(L_10); RuntimeObject* L_13; L_13 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_10, _stringLiteral91A84CFC28DE4E260ED3B9388BE19E585D150D7F, L_12, NULL); __this->____week_2 = ((*(uint8_t*)((uint8_t*)(uint8_t*)UnBox(L_13, Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var)))); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_14 = ___info0; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_15 = { reinterpret_cast (Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var) }; Type_t* L_16; L_16 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_15, NULL); NullCheck(L_14); RuntimeObject* L_17; L_17 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_14, _stringLiteral79C59F2479E52A939A8A16D011943BDBDFBEE65E, L_16, NULL); __this->____day_3 = ((*(uint8_t*)((uint8_t*)(uint8_t*)UnBox(L_17, Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var)))); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_18 = ___info0; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_19 = { reinterpret_cast (DayOfWeek_t726DBD527FF9B9D2A0352FB80C55EE2EBE56783D_0_0_0_var) }; Type_t* L_20; L_20 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_19, NULL); NullCheck(L_18); RuntimeObject* L_21; L_21 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_18, _stringLiteral83A0203482067140327BBF852248E02658CAE786, L_20, NULL); __this->____dayOfWeek_4 = ((*(int32_t*)((int32_t*)(int32_t*)UnBox(L_21, DayOfWeek_t726DBD527FF9B9D2A0352FB80C55EE2EBE56783D_il2cpp_TypeInfo_var)))); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_22 = ___info0; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_23 = { reinterpret_cast (Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_0_0_0_var) }; Type_t* L_24; L_24 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_23, NULL); NullCheck(L_22); RuntimeObject* L_25; L_25 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_22, _stringLiteralD94C250F2B1277449096D60BF52D91C01BC28947, L_24, NULL); __this->____isFixedDateRule_5 = ((*(bool*)((bool*)(bool*)UnBox(L_25, Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var)))); return; } } IL2CPP_EXTERN_C void TransitionTime__ctor_mDA3962EC43A405307D2F615F8D410C4F2A499AD5_AdjustorThunk (RuntimeObject* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___info0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___context1, const RuntimeMethod* method) { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); TransitionTime__ctor_mDA3962EC43A405307D2F615F8D410C4F2A499AD5(_thisAdjusted, ___info0, ___context1, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.TimeZoneInfo System.TimeZoneInfo/CachedData::CreateLocal() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* CachedData_CreateLocal_mD7DC783B2F7E554AD9C1513CE83D01D197707564 (CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* V_0 = NULL; bool V_1 = false; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* V_2 = NULL; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* V_3 = NULL; { V_0 = __this; V_1 = (bool)0; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_0057: {// begin finally (depth: 1) { bool L_0 = V_1; if (!L_0) { goto IL_0060; } } { CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* L_1 = V_0; Monitor_Exit_m25A154960F91391E10E4CDA245ECDF4BA94D56A9(L_1, NULL); } IL_0060: { return; } }// end finally (depth: 1) }); try {// begin try (depth: 1) { CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* L_2 = V_0; Monitor_Enter_m00506757392936AA62DBE2C5FFBEE69EE920C4D4(L_2, (&V_1), NULL); TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_3 = __this->____localTimeZone_0; il2cpp_codegen_memory_barrier(); V_2 = L_3; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_4 = V_2; if (L_4) { goto IL_0053_1; } } { il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_5; L_5 = TimeZoneInfo_GetLocalTimeZone_m3C79A307508C1B1CC223CF32AB3C5B3A291ECE66(__this, NULL); V_2 = L_5; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_6 = V_2; NullCheck(L_6); String_t* L_7 = L_6->____id_0; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_8 = V_2; NullCheck(L_8); TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_9 = L_8->____baseUtcOffset_4; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_10 = V_2; NullCheck(L_10); String_t* L_11 = L_10->____displayName_1; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_12 = V_2; NullCheck(L_12); String_t* L_13 = L_12->____standardDisplayName_2; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_14 = V_2; NullCheck(L_14); String_t* L_15 = L_14->____daylightDisplayName_3; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_16 = V_2; NullCheck(L_16); AdjustmentRuleU5BU5D_tE06E08FC55F09158CD673CE867C3771D92906DFA* L_17 = L_16->____adjustmentRules_6; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_18 = (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8*)il2cpp_codegen_object_new(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); NullCheck(L_18); TimeZoneInfo__ctor_mC3ECEF5D3FAD82C4E2FE5FCE0024C061CD492715(L_18, L_7, L_9, L_11, L_13, L_15, L_17, (bool)0, NULL); V_2 = L_18; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_19 = V_2; il2cpp_codegen_memory_barrier(); __this->____localTimeZone_0 = L_19; Il2CppCodeGenWriteBarrier((void**)(&__this->____localTimeZone_0), (void*)L_19); } IL_0053_1: { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_20 = V_2; V_3 = L_20; goto IL_0061; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_0061: { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_21 = V_3; return L_21; } } // System.TimeZoneInfo System.TimeZoneInfo/CachedData::get_Local() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* CachedData_get_Local_mBD5BE85DE59BDDEC2CEE51EA6882BA57C70D6392 (CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* __this, const RuntimeMethod* method) { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* V_0 = NULL; { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_0 = __this->____localTimeZone_0; il2cpp_codegen_memory_barrier(); V_0 = L_0; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_1 = V_0; if (L_1) { goto IL_0013; } } { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_2; L_2 = CachedData_CreateLocal_mD7DC783B2F7E554AD9C1513CE83D01D197707564(__this, NULL); V_0 = L_2; } IL_0013: { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_3 = V_0; return L_3; } } // System.DateTimeKind System.TimeZoneInfo/CachedData::GetCorrespondingKind(System.TimeZoneInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CachedData_GetCorrespondingKind_m7BA6947269257DF9A5B992A820E4C80E895DC86E (CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* __this, TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* ___timeZone0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_0 = ___timeZone0; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_1 = ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___s_utcTimeZone_7; if ((((RuntimeObject*)(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8*)L_0) == ((RuntimeObject*)(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8*)L_1))) { goto IL_0017; } } { TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_2 = ___timeZone0; TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_3 = __this->____localTimeZone_0; il2cpp_codegen_memory_barrier(); if ((((RuntimeObject*)(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8*)L_2) == ((RuntimeObject*)(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8*)L_3))) { goto IL_0015; } } { return (int32_t)(0); } IL_0015: { return (int32_t)(2); } IL_0017: { return (int32_t)(1); } } // System.Void System.TimeZoneInfo/CachedData::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CachedData__ctor_m0B9484D26A9B27A4B34444C869F3F29F1908B6D4 (CachedData_t369B36942C95D8657719006E55DEA9EB23E03CFF* __this, const RuntimeMethod* method) { { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__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 // System.Void System.TimeZoneInfo/<>c__DisplayClass16_0::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass16_0__ctor_mBA6BC752E40ECF2E8E0A473CF1B047F750FF5171 (U3CU3Ec__DisplayClass16_0_t0745DC96E806B3099E8FA9EB0C1315DEDD5CBFC0* __this, const RuntimeMethod* method) { { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); return; } } // System.Boolean System.TimeZoneInfo/<>c__DisplayClass16_0::b__0(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CU3Ec__DisplayClass16_0_U3CFindTimeZoneIdU3Eb__0_m350FFDA5167F64EB01C41FACE2AF00F51F0054A8 (U3CU3Ec__DisplayClass16_0_t0745DC96E806B3099E8FA9EB0C1315DEDD5CBFC0* __this, String_t* ___filePath0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___filePath0; String_t* L_1 = __this->___localtimeFilePath_0; bool L_2; L_2 = String_Equals_m80124ECC809968E69F952E2A49EBC03F81A23E43(L_0, L_1, 5, NULL); if (L_2) { goto IL_006b; } } { String_t* L_3 = ___filePath0; String_t* L_4 = __this->___posixrulesFilePath_1; bool L_5; L_5 = String_Equals_m80124ECC809968E69F952E2A49EBC03F81A23E43(L_3, L_4, 5, NULL); if (L_5) { goto IL_006b; } } { String_t* L_6 = ___filePath0; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_7 = __this->___buffer_2; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_8 = __this->___rawData_3; il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); bool L_9; L_9 = TimeZoneInfo_CompareTimeZoneFile_m6546651CDAEAC2021D8E93358C35ECA38B4DF96D(L_6, L_7, L_8, NULL); if (!L_9) { goto IL_006b; } } { String_t* L_10 = ___filePath0; __this->___id_4 = L_10; Il2CppCodeGenWriteBarrier((void**)(&__this->___id_4), (void*)L_10); String_t* L_11 = __this->___id_4; String_t* L_12 = __this->___timeZoneDirectory_5; NullCheck(L_11); bool L_13; L_13 = String_StartsWith_mA2A4405B1B9F3653A6A9AA7F223F68D86A0C6264(L_11, L_12, 4, NULL); if (!L_13) { goto IL_0069; } } { String_t* L_14 = __this->___id_4; String_t* L_15 = __this->___timeZoneDirectory_5; NullCheck(L_15); int32_t L_16; L_16 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_15, NULL); NullCheck(L_14); String_t* L_17; L_17 = String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472(L_14, L_16, NULL); __this->___id_4 = L_17; Il2CppCodeGenWriteBarrier((void**)(&__this->___id_4), (void*)L_17); } IL_0069: { return (bool)1; } IL_006b: { return (bool)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 // System.Void System.TimeZoneInfo/<>c::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_m704B80DA83ACFBFB54D17CCB96473B89C763F491 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124* L_0 = (U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124*)il2cpp_codegen_object_new(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var); NullCheck(L_0); U3CU3Ec__ctor_m735BCFFD24463BD5C90C9B0A386C9BCF979B4DA5(L_0, NULL); ((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9_0 = L_0; Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124_il2cpp_TypeInfo_var))->___U3CU3E9_0), (void*)L_0); return; } } // System.Void System.TimeZoneInfo/<>c::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m735BCFFD24463BD5C90C9B0A386C9BCF979B4DA5 (U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124* __this, const RuntimeMethod* method) { { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); return; } } // System.Boolean System.TimeZoneInfo/<>c::b__34_1(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CU3Ec_U3CTZif_ParsePosixNameU3Eb__34_1_m2E30736B187F0AD2BC51690B3BF56EF7C3760993 (U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124* __this, Il2CppChar ___c0, const RuntimeMethod* method) { { Il2CppChar L_0 = ___c0; return (bool)((((int32_t)L_0) == ((int32_t)((int32_t)62)))? 1 : 0); } } // System.Boolean System.TimeZoneInfo/<>c::b__34_0(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CU3Ec_U3CTZif_ParsePosixNameU3Eb__34_0_m330F3DBBD8442E7C750C501FC7AD30AFA1E37C61 (U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124* __this, Il2CppChar ___c0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___c0; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_1; L_1 = Char_IsDigit_mC98DAF907860EFB7D26C3E126D80AD3A2CE72715(L_0, NULL); if (L_1) { goto IL_0018; } } { Il2CppChar L_2 = ___c0; if ((((int32_t)L_2) == ((int32_t)((int32_t)43)))) { goto IL_0018; } } { Il2CppChar L_3 = ___c0; if ((((int32_t)L_3) == ((int32_t)((int32_t)45)))) { goto IL_0018; } } { Il2CppChar L_4 = ___c0; return (bool)((((int32_t)L_4) == ((int32_t)((int32_t)44)))? 1 : 0); } IL_0018: { return (bool)1; } } // System.Boolean System.TimeZoneInfo/<>c::b__35_0(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CU3Ec_U3CTZif_ParsePosixOffsetU3Eb__35_0_m1DE392C6D99137B561ED15787E46906DFFF0DE97 (U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124* __this, Il2CppChar ___c0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___c0; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_1; L_1 = Char_IsDigit_mC98DAF907860EFB7D26C3E126D80AD3A2CE72715(L_0, NULL); if (L_1) { goto IL_001b; } } { Il2CppChar L_2 = ___c0; if ((((int32_t)L_2) == ((int32_t)((int32_t)43)))) { goto IL_001b; } } { Il2CppChar L_3 = ___c0; if ((((int32_t)L_3) == ((int32_t)((int32_t)45)))) { goto IL_001b; } } { Il2CppChar L_4 = ___c0; return (bool)((((int32_t)((((int32_t)L_4) == ((int32_t)((int32_t)58)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_001b: { return (bool)0; } } // System.Boolean System.TimeZoneInfo/<>c::b__37_0(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CU3Ec_U3CTZif_ParsePosixDateU3Eb__37_0_mC6BED99C1A523F14CFD99D29790BB8D344FA9FA0 (U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124* __this, Il2CppChar ___c0, const RuntimeMethod* method) { { Il2CppChar L_0 = ___c0; if ((((int32_t)L_0) == ((int32_t)((int32_t)47)))) { goto IL_000b; } } { Il2CppChar L_1 = ___c0; return (bool)((((int32_t)L_1) == ((int32_t)((int32_t)44)))? 1 : 0); } IL_000b: { return (bool)1; } } // System.Boolean System.TimeZoneInfo/<>c::b__38_0(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CU3Ec_U3CTZif_ParsePosixTimeU3Eb__38_0_m3D4C85CFF7BF829F7EE1938E5DEF2C3CAA2DA7BA (U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124* __this, Il2CppChar ___c0, const RuntimeMethod* method) { { Il2CppChar L_0 = ___c0; return (bool)((((int32_t)L_0) == ((int32_t)((int32_t)44)))? 1 : 0); } } // System.Int32 System.TimeZoneInfo/<>c::b__161_0(System.TimeZoneInfo/AdjustmentRule,System.TimeZoneInfo/AdjustmentRule) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t U3CU3Ec_U3CCreateLocalUnityU3Eb__161_0_mA9458C06834209A6DFE01FB06549AACE3B802909 (U3CU3Ec_t7564B5177B5803CB85D9544EF4AAFF9EEE6A7124* __this, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___rule10, AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* ___rule21, const RuntimeMethod* method) { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D V_0; memset((&V_0), 0, sizeof(V_0)); { AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_0 = ___rule10; NullCheck(L_0); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_1; L_1 = AdjustmentRule_get_DateStart_m89981208F272F07A4D46956A501E18C579BFBAFF_inline(L_0, NULL); V_0 = L_1; AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* L_2 = ___rule21; NullCheck(L_2); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_3; L_3 = AdjustmentRule_get_DateStart_m89981208F272F07A4D46956A501E18C579BFBAFF_inline(L_2, NULL); int32_t L_4; L_4 = DateTime_CompareTo_m4A3000CD4FF15EA7CA2E9C5C95A9D07F3AA8D35D((&V_0), L_3, NULL); return L_4; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.AccessViolationException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AccessViolationException__ctor_mA9DB8B9D350517A1DB18E3A85750E1982D43EC83 (AccessViolationException_t2359EDFDD20FE77D56A496DB4F6854A3D2DC4190* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8394D857C9752A2BD67DFFA7D56C3F3FF113C77A); s_Il2CppMethodInitialized = true; } { SystemException__ctor_mC481DFD60F19362A0B3523FBD5E429EC4F1F3FB5(__this, _stringLiteral8394D857C9752A2BD67DFFA7D56C3F3FF113C77A, NULL); Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2147467261), NULL); return; } } // System.Void System.AccessViolationException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AccessViolationException__ctor_m1BAA5A231DB53499A5E33C54F81D566AF6C25CE9 (AccessViolationException_t2359EDFDD20FE77D56A496DB4F6854A3D2DC4190* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___info0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___context1, const RuntimeMethod* method) { { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___info0; StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___context1; SystemException__ctor_mA2BB392E0F4CD8A4C132984F76B7A9FBDB3B6879(__this, L_0, L_1, 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 void Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_Multicast(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* __this, const RuntimeMethod* method) { il2cpp_array_size_t length = __this->___delegates_13->max_length; Delegate_t** delegatesToInvoke = reinterpret_cast(__this->___delegates_13->GetAddressAtUnchecked(0)); typedef void (*FunctionPointerType) (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* __this, const RuntimeMethod* method); for (il2cpp_array_size_t i = 0; i < length; i++) { Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* currentDelegate = reinterpret_cast(delegatesToInvoke[i]); ((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, reinterpret_cast(currentDelegate->___method_3)); } } void Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_Open(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* __this, const RuntimeMethod* method) { typedef void (*FunctionPointerType) (const RuntimeMethod*); ((FunctionPointerType)__this->___method_ptr_0)(method); } void Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_Closed(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* __this, const RuntimeMethod* method) { typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); ((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, method); } void Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_OpenStaticInvoker(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* __this, const RuntimeMethod* method) { InvokerActionInvoker0::Invoke(__this->___method_ptr_0, method, NULL); } void Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_ClosedStaticInvoker(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* __this, const RuntimeMethod* method) { InvokerActionInvoker1< RuntimeObject* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2); } IL2CPP_EXTERN_C void DelegatePInvokeWrapper_Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07 (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* __this, const RuntimeMethod* method) { typedef void (DEFAULT_CALL *PInvokeFunc)(); PInvokeFunc il2cppPInvokeFunc = reinterpret_cast(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this)); // Native function invocation il2cppPInvokeFunc(); } // System.Void System.Action::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->___method_ptr_0 = il2cpp_codegen_get_virtual_call_method_pointer((RuntimeMethod*)___method1); __this->___method_3 = ___method1; __this->___m_target_2 = ___object0; Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target_2), (void*)___object0); int methodCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___method1); if (MethodIsStatic((RuntimeMethod*)___method1)) { bool isOpen = methodCount == 0; if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___method1)) if (isOpen) __this->___invoke_impl_1 = (intptr_t)&Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_OpenStaticInvoker; else __this->___invoke_impl_1 = (intptr_t)&Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_ClosedStaticInvoker; else if (isOpen) __this->___invoke_impl_1 = (intptr_t)&Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_Open; else __this->___invoke_impl_1 = (intptr_t)&Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_Closed; } else { __this->___invoke_impl_1 = (intptr_t)&Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_Closed; } __this->___extra_arg_5 = (intptr_t)&Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_Multicast; } // System.Void System.Action::Invoke() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* __this, const RuntimeMethod* method) { typedef void (*FunctionPointerType) (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* __this, const RuntimeMethod* method); ((FunctionPointerType)__this->___invoke_impl_1)(__this, reinterpret_cast(__this->___method_3)); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.AggregateException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException__ctor_mEA3C73327112AA93972A8051A2E8CC4D9A17CCA8 (AggregateException_t51B6205846DFB356B94452702201DD239D44422F* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Array_Empty_TisException_t_m43D697D5384221F788D1B6C09C348DDA90140574_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyCollection_1__ctor_m8A6150A70033BA587E3F51C2834162ED01FC8004_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral22E516BA4349DCF48E59694431A666940C3804AC); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_runtime_class_init_inline(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_m9B2BD92CD68916245A75109105D9071C9D430E7F(__this, _stringLiteral22E516BA4349DCF48E59694431A666940C3804AC, NULL); ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* L_0; L_0 = Array_Empty_TisException_t_m43D697D5384221F788D1B6C09C348DDA90140574_inline(Array_Empty_TisException_t_m43D697D5384221F788D1B6C09C348DDA90140574_RuntimeMethod_var); ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886* L_1 = (ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886*)il2cpp_codegen_object_new(ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886_il2cpp_TypeInfo_var); NullCheck(L_1); ReadOnlyCollection_1__ctor_m8A6150A70033BA587E3F51C2834162ED01FC8004(L_1, (RuntimeObject*)L_0, ReadOnlyCollection_1__ctor_m8A6150A70033BA587E3F51C2834162ED01FC8004_RuntimeMethod_var); __this->___m_innerExceptions_18 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___m_innerExceptions_18), (void*)L_1); return; } } // System.Void System.AggregateException::.ctor(System.Collections.Generic.IEnumerable`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException__ctor_m36C9769557880F4E90AE5EE44C39F98D86347E1F (AggregateException_t51B6205846DFB356B94452702201DD239D44422F* __this, RuntimeObject* ___innerExceptions0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral22E516BA4349DCF48E59694431A666940C3804AC); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___innerExceptions0; AggregateException__ctor_m4D9F61E91F24BDFF09932C33BBB931DC620A52B4(__this, _stringLiteral22E516BA4349DCF48E59694431A666940C3804AC, L_0, NULL); return; } } // System.Void System.AggregateException::.ctor(System.Exception[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException__ctor_mE5898BED8E2DBD0CDB82837AEF7E9A26A6074AA9 (AggregateException_t51B6205846DFB356B94452702201DD239D44422F* __this, ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* ___innerExceptions0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral22E516BA4349DCF48E59694431A666940C3804AC); s_Il2CppMethodInitialized = true; } { ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* L_0 = ___innerExceptions0; AggregateException__ctor_m484E445B9CF69C95E9FF2286BD03F445EDB8B688(__this, _stringLiteral22E516BA4349DCF48E59694431A666940C3804AC, L_0, NULL); return; } } // System.Void System.AggregateException::.ctor(System.String,System.Collections.Generic.IEnumerable`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException__ctor_m4D9F61E91F24BDFF09932C33BBB931DC620A52B4 (AggregateException_t51B6205846DFB356B94452702201DD239D44422F* __this, String_t* ___message0, RuntimeObject* ___innerExceptions1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_1_t584E66CD0123CFB6503AC3E597748948194AAA5E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mCEDF6523E3BA0C75E3D188CFF88E1005D2AA7B03_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tA61E6ACDC88C89A9523D28C560996ABFF548352B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* G_B4_0 = NULL; String_t* G_B4_1 = NULL; AggregateException_t51B6205846DFB356B94452702201DD239D44422F* G_B4_2 = NULL; RuntimeObject* G_B1_0 = NULL; String_t* G_B1_1 = NULL; AggregateException_t51B6205846DFB356B94452702201DD239D44422F* G_B1_2 = NULL; String_t* G_B3_0 = NULL; AggregateException_t51B6205846DFB356B94452702201DD239D44422F* G_B3_1 = NULL; String_t* G_B2_0 = NULL; AggregateException_t51B6205846DFB356B94452702201DD239D44422F* G_B2_1 = NULL; { String_t* L_0 = ___message0; RuntimeObject* L_1 = ___innerExceptions1; RuntimeObject* L_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_1, IList_1_t584E66CD0123CFB6503AC3E597748948194AAA5E_il2cpp_TypeInfo_var)); G_B1_0 = L_2; G_B1_1 = L_0; G_B1_2 = __this; if (L_2) { G_B4_0 = L_2; G_B4_1 = L_0; G_B4_2 = __this; goto IL_0018; } } { RuntimeObject* L_3 = ___innerExceptions1; G_B2_0 = G_B1_1; G_B2_1 = G_B1_2; if (!L_3) { G_B3_0 = G_B1_1; G_B3_1 = G_B1_2; goto IL_0017; } } { RuntimeObject* L_4 = ___innerExceptions1; List_1_tA61E6ACDC88C89A9523D28C560996ABFF548352B* L_5 = (List_1_tA61E6ACDC88C89A9523D28C560996ABFF548352B*)il2cpp_codegen_object_new(List_1_tA61E6ACDC88C89A9523D28C560996ABFF548352B_il2cpp_TypeInfo_var); NullCheck(L_5); List_1__ctor_mCEDF6523E3BA0C75E3D188CFF88E1005D2AA7B03(L_5, L_4, List_1__ctor_mCEDF6523E3BA0C75E3D188CFF88E1005D2AA7B03_RuntimeMethod_var); G_B4_0 = ((RuntimeObject*)(L_5)); G_B4_1 = G_B2_0; G_B4_2 = G_B2_1; goto IL_0018; } IL_0017: { G_B4_0 = ((RuntimeObject*)(NULL)); G_B4_1 = G_B3_0; G_B4_2 = G_B3_1; } IL_0018: { AggregateException__ctor_m5D99D5EC65645030D21C35CEDDACF438222AFB0D(G_B4_2, G_B4_1, G_B4_0, NULL); return; } } // System.Void System.AggregateException::.ctor(System.String,System.Exception[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException__ctor_m484E445B9CF69C95E9FF2286BD03F445EDB8B688 (AggregateException_t51B6205846DFB356B94452702201DD239D44422F* __this, String_t* ___message0, ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* ___innerExceptions1, const RuntimeMethod* method) { { String_t* L_0 = ___message0; ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* L_1 = ___innerExceptions1; AggregateException__ctor_m5D99D5EC65645030D21C35CEDDACF438222AFB0D(__this, L_0, (RuntimeObject*)L_1, NULL); return; } } // System.Void System.AggregateException::.ctor(System.String,System.Collections.Generic.IList`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException__ctor_m5D99D5EC65645030D21C35CEDDACF438222AFB0D (AggregateException_t51B6205846DFB356B94452702201DD239D44422F* __this, String_t* ___message0, RuntimeObject* ___innerExceptions1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_tA49162EB2B379AF4BD08239AE9D2590B6968B0BA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_1_t584E66CD0123CFB6503AC3E597748948194AAA5E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyCollection_1__ctor_m8A6150A70033BA587E3F51C2834162ED01FC8004_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* V_0 = NULL; int32_t V_1 = 0; String_t* G_B2_0 = NULL; AggregateException_t51B6205846DFB356B94452702201DD239D44422F* G_B2_1 = NULL; String_t* G_B1_0 = NULL; AggregateException_t51B6205846DFB356B94452702201DD239D44422F* G_B1_1 = NULL; String_t* G_B3_0 = NULL; AggregateException_t51B6205846DFB356B94452702201DD239D44422F* G_B3_1 = NULL; Exception_t* G_B4_0 = NULL; String_t* G_B4_1 = NULL; AggregateException_t51B6205846DFB356B94452702201DD239D44422F* G_B4_2 = NULL; { String_t* L_0 = ___message0; RuntimeObject* L_1 = ___innerExceptions1; G_B1_0 = L_0; G_B1_1 = __this; if (!L_1) { G_B2_0 = L_0; G_B2_1 = __this; goto IL_000e; } } { RuntimeObject* L_2 = ___innerExceptions1; NullCheck(L_2); int32_t L_3; L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1::get_Count() */, ICollection_1_tA49162EB2B379AF4BD08239AE9D2590B6968B0BA_il2cpp_TypeInfo_var, L_2); G_B2_0 = G_B1_0; G_B2_1 = G_B1_1; if ((((int32_t)L_3) > ((int32_t)0))) { G_B3_0 = G_B1_0; G_B3_1 = G_B1_1; goto IL_0011; } } IL_000e: { G_B4_0 = ((Exception_t*)(NULL)); G_B4_1 = G_B2_0; G_B4_2 = G_B2_1; goto IL_0018; } IL_0011: { RuntimeObject* L_4 = ___innerExceptions1; NullCheck(L_4); Exception_t* L_5; L_5 = InterfaceFuncInvoker1< Exception_t*, int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1::get_Item(System.Int32) */, IList_1_t584E66CD0123CFB6503AC3E597748948194AAA5E_il2cpp_TypeInfo_var, L_4, 0); G_B4_0 = L_5; G_B4_1 = G_B3_0; G_B4_2 = G_B3_1; } IL_0018: { il2cpp_codegen_runtime_class_init_inline(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_m9BC141AAB08F47C34B7ED40C1A6C0C1ADDEC5CB3(G_B4_2, G_B4_1, G_B4_0, NULL); RuntimeObject* L_6 = ___innerExceptions1; if (L_6) { goto IL_002b; } } { ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_7 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var))); NullCheck(L_7); ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3522BB4F702C4C273D265239651571707FCCD42D)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AggregateException__ctor_m5D99D5EC65645030D21C35CEDDACF438222AFB0D_RuntimeMethod_var))); } IL_002b: { RuntimeObject* L_8 = ___innerExceptions1; NullCheck(L_8); int32_t L_9; L_9 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1::get_Count() */, ICollection_1_tA49162EB2B379AF4BD08239AE9D2590B6968B0BA_il2cpp_TypeInfo_var, L_8); ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* L_10 = (ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C*)(ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C*)SZArrayNew(ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C_il2cpp_TypeInfo_var, (uint32_t)L_9); V_0 = L_10; V_1 = 0; goto IL_0059; } IL_003b: { ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* L_11 = V_0; int32_t L_12 = V_1; RuntimeObject* L_13 = ___innerExceptions1; int32_t L_14 = V_1; NullCheck(L_13); Exception_t* L_15; L_15 = InterfaceFuncInvoker1< Exception_t*, int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1::get_Item(System.Int32) */, IList_1_t584E66CD0123CFB6503AC3E597748948194AAA5E_il2cpp_TypeInfo_var, L_13, L_14); NullCheck(L_11); ArrayElementTypeCheck (L_11, L_15); (L_11)->SetAt(static_cast(L_12), (Exception_t*)L_15); ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* L_16 = V_0; int32_t L_17 = V_1; NullCheck(L_16); int32_t L_18 = L_17; Exception_t* L_19 = (L_16)->GetAt(static_cast(L_18)); if (L_19) { goto IL_0055; } } { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_20 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_20); ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_20, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6348CDEC7DB6251FDA976EE379E172B4319202A3)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AggregateException__ctor_m5D99D5EC65645030D21C35CEDDACF438222AFB0D_RuntimeMethod_var))); } IL_0055: { int32_t L_21 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_21, 1)); } IL_0059: { int32_t L_22 = V_1; ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* L_23 = V_0; NullCheck(L_23); if ((((int32_t)L_22) < ((int32_t)((int32_t)(((RuntimeArray*)L_23)->max_length))))) { goto IL_003b; } } { ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* L_24 = V_0; ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886* L_25 = (ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886*)il2cpp_codegen_object_new(ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886_il2cpp_TypeInfo_var); NullCheck(L_25); ReadOnlyCollection_1__ctor_m8A6150A70033BA587E3F51C2834162ED01FC8004(L_25, (RuntimeObject*)L_24, ReadOnlyCollection_1__ctor_m8A6150A70033BA587E3F51C2834162ED01FC8004_RuntimeMethod_var); __this->___m_innerExceptions_18 = L_25; Il2CppCodeGenWriteBarrier((void**)(&__this->___m_innerExceptions_18), (void*)L_25); return; } } // System.Void System.AggregateException::.ctor(System.Collections.Generic.IEnumerable`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException__ctor_m92F4EE32C2117DAC17373506FE5BD8AD7425E7F8 (AggregateException_t51B6205846DFB356B94452702201DD239D44422F* __this, RuntimeObject* ___innerExceptionInfos0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral22E516BA4349DCF48E59694431A666940C3804AC); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___innerExceptionInfos0; AggregateException__ctor_m49BC0CD4DE05E205244170A24F20295004C9721F(__this, _stringLiteral22E516BA4349DCF48E59694431A666940C3804AC, L_0, NULL); return; } } // System.Void System.AggregateException::.ctor(System.String,System.Collections.Generic.IEnumerable`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException__ctor_m49BC0CD4DE05E205244170A24F20295004C9721F (AggregateException_t51B6205846DFB356B94452702201DD239D44422F* __this, String_t* ___message0, RuntimeObject* ___innerExceptionInfos1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_1_tCFDE4BD8548909F112CB197B5B2C3F1211D52014_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m45DECC4F6632B9350A27CF0A9D607FB7FE6F8DBF_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t51CBE3470AD8637D621A307190A51C60E66F370B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* G_B4_0 = NULL; String_t* G_B4_1 = NULL; AggregateException_t51B6205846DFB356B94452702201DD239D44422F* G_B4_2 = NULL; RuntimeObject* G_B1_0 = NULL; String_t* G_B1_1 = NULL; AggregateException_t51B6205846DFB356B94452702201DD239D44422F* G_B1_2 = NULL; String_t* G_B3_0 = NULL; AggregateException_t51B6205846DFB356B94452702201DD239D44422F* G_B3_1 = NULL; String_t* G_B2_0 = NULL; AggregateException_t51B6205846DFB356B94452702201DD239D44422F* G_B2_1 = NULL; { String_t* L_0 = ___message0; RuntimeObject* L_1 = ___innerExceptionInfos1; RuntimeObject* L_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_1, IList_1_tCFDE4BD8548909F112CB197B5B2C3F1211D52014_il2cpp_TypeInfo_var)); G_B1_0 = L_2; G_B1_1 = L_0; G_B1_2 = __this; if (L_2) { G_B4_0 = L_2; G_B4_1 = L_0; G_B4_2 = __this; goto IL_0018; } } { RuntimeObject* L_3 = ___innerExceptionInfos1; G_B2_0 = G_B1_1; G_B2_1 = G_B1_2; if (!L_3) { G_B3_0 = G_B1_1; G_B3_1 = G_B1_2; goto IL_0017; } } { RuntimeObject* L_4 = ___innerExceptionInfos1; List_1_t51CBE3470AD8637D621A307190A51C60E66F370B* L_5 = (List_1_t51CBE3470AD8637D621A307190A51C60E66F370B*)il2cpp_codegen_object_new(List_1_t51CBE3470AD8637D621A307190A51C60E66F370B_il2cpp_TypeInfo_var); NullCheck(L_5); List_1__ctor_m45DECC4F6632B9350A27CF0A9D607FB7FE6F8DBF(L_5, L_4, List_1__ctor_m45DECC4F6632B9350A27CF0A9D607FB7FE6F8DBF_RuntimeMethod_var); G_B4_0 = ((RuntimeObject*)(L_5)); G_B4_1 = G_B2_0; G_B4_2 = G_B2_1; goto IL_0018; } IL_0017: { G_B4_0 = ((RuntimeObject*)(NULL)); G_B4_1 = G_B3_0; G_B4_2 = G_B3_1; } IL_0018: { AggregateException__ctor_m0DCA05A779599F1729B01D4FFAD989BFD2400FEC(G_B4_2, G_B4_1, G_B4_0, NULL); return; } } // System.Void System.AggregateException::.ctor(System.String,System.Collections.Generic.IList`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException__ctor_m0DCA05A779599F1729B01D4FFAD989BFD2400FEC (AggregateException_t51B6205846DFB356B94452702201DD239D44422F* __this, String_t* ___message0, RuntimeObject* ___innerExceptionInfos1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_tBBBA2F846C020160325D4741EE2DB343A7AEADE4_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_1_tCFDE4BD8548909F112CB197B5B2C3F1211D52014_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyCollection_1__ctor_m8A6150A70033BA587E3F51C2834162ED01FC8004_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* V_0 = NULL; int32_t V_1 = 0; ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* V_2 = NULL; String_t* G_B3_0 = NULL; AggregateException_t51B6205846DFB356B94452702201DD239D44422F* G_B3_1 = NULL; String_t* G_B1_0 = NULL; AggregateException_t51B6205846DFB356B94452702201DD239D44422F* G_B1_1 = NULL; String_t* G_B2_0 = NULL; AggregateException_t51B6205846DFB356B94452702201DD239D44422F* G_B2_1 = NULL; String_t* G_B4_0 = NULL; AggregateException_t51B6205846DFB356B94452702201DD239D44422F* G_B4_1 = NULL; Exception_t* G_B5_0 = NULL; String_t* G_B5_1 = NULL; AggregateException_t51B6205846DFB356B94452702201DD239D44422F* G_B5_2 = NULL; { String_t* L_0 = ___message0; RuntimeObject* L_1 = ___innerExceptionInfos1; G_B1_0 = L_0; G_B1_1 = __this; if (!L_1) { G_B3_0 = L_0; G_B3_1 = __this; goto IL_0017; } } { RuntimeObject* L_2 = ___innerExceptionInfos1; NullCheck(L_2); int32_t L_3; L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1::get_Count() */, ICollection_1_tBBBA2F846C020160325D4741EE2DB343A7AEADE4_il2cpp_TypeInfo_var, L_2); G_B2_0 = G_B1_0; G_B2_1 = G_B1_1; if ((((int32_t)L_3) <= ((int32_t)0))) { G_B3_0 = G_B1_0; G_B3_1 = G_B1_1; goto IL_0017; } } { RuntimeObject* L_4 = ___innerExceptionInfos1; NullCheck(L_4); ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* L_5; L_5 = InterfaceFuncInvoker1< ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757*, int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1::get_Item(System.Int32) */, IList_1_tCFDE4BD8548909F112CB197B5B2C3F1211D52014_il2cpp_TypeInfo_var, L_4, 0); G_B3_0 = G_B2_0; G_B3_1 = G_B2_1; if (L_5) { G_B4_0 = G_B2_0; G_B4_1 = G_B2_1; goto IL_001a; } } IL_0017: { G_B5_0 = ((Exception_t*)(NULL)); G_B5_1 = G_B3_0; G_B5_2 = G_B3_1; goto IL_0026; } IL_001a: { RuntimeObject* L_6 = ___innerExceptionInfos1; NullCheck(L_6); ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* L_7; L_7 = InterfaceFuncInvoker1< ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757*, int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1::get_Item(System.Int32) */, IList_1_tCFDE4BD8548909F112CB197B5B2C3F1211D52014_il2cpp_TypeInfo_var, L_6, 0); NullCheck(L_7); Exception_t* L_8; L_8 = ExceptionDispatchInfo_get_SourceException_m981DC7F90598BE65BD4FA1A8340025A3A7CC3DBE_inline(L_7, NULL); G_B5_0 = L_8; G_B5_1 = G_B4_0; G_B5_2 = G_B4_1; } IL_0026: { il2cpp_codegen_runtime_class_init_inline(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_m9BC141AAB08F47C34B7ED40C1A6C0C1ADDEC5CB3(G_B5_2, G_B5_1, G_B5_0, NULL); RuntimeObject* L_9 = ___innerExceptionInfos1; if (L_9) { goto IL_0039; } } { ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_10 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var))); NullCheck(L_10); ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDA595DC5A57F5E8916402DFA6D50EB60A7DF3F30)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AggregateException__ctor_m0DCA05A779599F1729B01D4FFAD989BFD2400FEC_RuntimeMethod_var))); } IL_0039: { RuntimeObject* L_11 = ___innerExceptionInfos1; NullCheck(L_11); int32_t L_12; L_12 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1::get_Count() */, ICollection_1_tBBBA2F846C020160325D4741EE2DB343A7AEADE4_il2cpp_TypeInfo_var, L_11); ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* L_13 = (ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C*)(ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C*)SZArrayNew(ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C_il2cpp_TypeInfo_var, (uint32_t)L_12); V_0 = L_13; V_1 = 0; goto IL_0071; } IL_0049: { RuntimeObject* L_14 = ___innerExceptionInfos1; int32_t L_15 = V_1; NullCheck(L_14); ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* L_16; L_16 = InterfaceFuncInvoker1< ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757*, int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1::get_Item(System.Int32) */, IList_1_tCFDE4BD8548909F112CB197B5B2C3F1211D52014_il2cpp_TypeInfo_var, L_14, L_15); V_2 = L_16; ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* L_17 = V_2; if (!L_17) { goto IL_005d; } } { ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* L_18 = V_0; int32_t L_19 = V_1; ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* L_20 = V_2; NullCheck(L_20); Exception_t* L_21; L_21 = ExceptionDispatchInfo_get_SourceException_m981DC7F90598BE65BD4FA1A8340025A3A7CC3DBE_inline(L_20, NULL); NullCheck(L_18); ArrayElementTypeCheck (L_18, L_21); (L_18)->SetAt(static_cast(L_19), (Exception_t*)L_21); } IL_005d: { ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* L_22 = V_0; int32_t L_23 = V_1; NullCheck(L_22); int32_t L_24 = L_23; Exception_t* L_25 = (L_22)->GetAt(static_cast(L_24)); if (L_25) { goto IL_006d; } } { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_26 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_26); ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_26, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6348CDEC7DB6251FDA976EE379E172B4319202A3)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_26, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AggregateException__ctor_m0DCA05A779599F1729B01D4FFAD989BFD2400FEC_RuntimeMethod_var))); } IL_006d: { int32_t L_27 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_27, 1)); } IL_0071: { int32_t L_28 = V_1; ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* L_29 = V_0; NullCheck(L_29); if ((((int32_t)L_28) < ((int32_t)((int32_t)(((RuntimeArray*)L_29)->max_length))))) { goto IL_0049; } } { ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* L_30 = V_0; ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886* L_31 = (ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886*)il2cpp_codegen_object_new(ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886_il2cpp_TypeInfo_var); NullCheck(L_31); ReadOnlyCollection_1__ctor_m8A6150A70033BA587E3F51C2834162ED01FC8004(L_31, (RuntimeObject*)L_30, ReadOnlyCollection_1__ctor_m8A6150A70033BA587E3F51C2834162ED01FC8004_RuntimeMethod_var); __this->___m_innerExceptions_18 = L_31; Il2CppCodeGenWriteBarrier((void**)(&__this->___m_innerExceptions_18), (void*)L_31); return; } } // System.Void System.AggregateException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException__ctor_mB43F730C839D5521949BC1A63FE56DB3DA2B5D5A (AggregateException_t51B6205846DFB356B94452702201DD239D44422F* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___info0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyCollection_1__ctor_m8A6150A70033BA587E3F51C2834162ED01FC8004_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5A79F3D1E4364DD2D85949184118C9F76E3BE916); s_Il2CppMethodInitialized = true; } ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* V_0 = NULL; { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___info0; StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___context1; il2cpp_codegen_runtime_class_init_inline(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_m412D5FC4D69035738F1DB88FD771ABD6B0E9E120(__this, L_0, L_1, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_2 = ___info0; if (L_2) { goto IL_0016; } } { ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_3 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var))); NullCheck(L_3); ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA7B00F7F25C375B2501A6ADBC86D092B23977085)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AggregateException__ctor_mB43F730C839D5521949BC1A63FE56DB3DA2B5D5A_RuntimeMethod_var))); } IL_0016: { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_4 = ___info0; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_5 = { reinterpret_cast (ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_6; L_6 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_5, NULL); NullCheck(L_4); RuntimeObject* L_7; L_7 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_4, _stringLiteral5A79F3D1E4364DD2D85949184118C9F76E3BE916, L_6, NULL); V_0 = ((ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C*)IsInst((RuntimeObject*)L_7, ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C_il2cpp_TypeInfo_var)); ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* L_8 = V_0; if (L_8) { goto IL_003f; } } { SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7* L_9 = (SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7_il2cpp_TypeInfo_var))); NullCheck(L_9); SerializationException__ctor_m0AAFE2ABD0A74F3E783AD5B5FE842DE460168DB0(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2DD54EF3C66B10F36F9AE6F20237BFAFA2C9E444)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AggregateException__ctor_mB43F730C839D5521949BC1A63FE56DB3DA2B5D5A_RuntimeMethod_var))); } IL_003f: { ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* L_10 = V_0; ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886* L_11 = (ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886*)il2cpp_codegen_object_new(ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886_il2cpp_TypeInfo_var); NullCheck(L_11); ReadOnlyCollection_1__ctor_m8A6150A70033BA587E3F51C2834162ED01FC8004(L_11, (RuntimeObject*)L_10, ReadOnlyCollection_1__ctor_m8A6150A70033BA587E3F51C2834162ED01FC8004_RuntimeMethod_var); __this->___m_innerExceptions_18 = L_11; Il2CppCodeGenWriteBarrier((void**)(&__this->___m_innerExceptions_18), (void*)L_11); return; } } // System.Void System.AggregateException::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException_GetObjectData_m585639C351A56166A0A7DB2FF38D2DC23F058EFC (AggregateException_t51B6205846DFB356B94452702201DD239D44422F* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___info0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyCollection_1_CopyTo_mAE2DC1F98E3AB1E56E53CA756E077277286C22C1_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyCollection_1_get_Count_mADB84925112BAD7AA74EBCE91BC3E4524CFC4549_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5A79F3D1E4364DD2D85949184118C9F76E3BE916); s_Il2CppMethodInitialized = true; } ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* V_0 = NULL; { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___info0; StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___context1; Exception_GetObjectData_mD69929DB0BB2512240908B9EEE21778CB7B72DA9(__this, L_0, L_1, NULL); ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886* L_2 = __this->___m_innerExceptions_18; NullCheck(L_2); int32_t L_3; L_3 = ReadOnlyCollection_1_get_Count_mADB84925112BAD7AA74EBCE91BC3E4524CFC4549(L_2, ReadOnlyCollection_1_get_Count_mADB84925112BAD7AA74EBCE91BC3E4524CFC4549_RuntimeMethod_var); ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* L_4 = (ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C*)(ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C*)SZArrayNew(ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C_il2cpp_TypeInfo_var, (uint32_t)L_3); V_0 = L_4; ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886* L_5 = __this->___m_innerExceptions_18; ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* L_6 = V_0; NullCheck(L_5); ReadOnlyCollection_1_CopyTo_mAE2DC1F98E3AB1E56E53CA756E077277286C22C1(L_5, L_6, 0, ReadOnlyCollection_1_CopyTo_mAE2DC1F98E3AB1E56E53CA756E077277286C22C1_RuntimeMethod_var); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_7 = ___info0; ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C* L_8 = V_0; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_9 = { reinterpret_cast (ExceptionU5BU5D_t99DA4B29FFBFD40F2C926A32586692D433EF291C_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_10; L_10 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_9, NULL); NullCheck(L_7); SerializationInfo_AddValue_m1AD59BBF8C3129142943D3F298ADF09FF123C199(L_7, _stringLiteral5A79F3D1E4364DD2D85949184118C9F76E3BE916, (RuntimeObject*)L_8, L_10, NULL); return; } } // System.Collections.ObjectModel.ReadOnlyCollection`1 System.AggregateException::get_InnerExceptions() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886* AggregateException_get_InnerExceptions_m3044DE61416F827389F2975C67AC1AD89EA050A5 (AggregateException_t51B6205846DFB356B94452702201DD239D44422F* __this, const RuntimeMethod* method) { { ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886* L_0 = __this->___m_innerExceptions_18; return L_0; } } // System.AggregateException System.AggregateException::Flatten() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AggregateException_t51B6205846DFB356B94452702201DD239D44422F* AggregateException_Flatten_m60F51FEE2794F91B3E47529599BE98971B7CA291 (AggregateException_t51B6205846DFB356B94452702201DD239D44422F* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AggregateException_t51B6205846DFB356B94452702201DD239D44422F_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_tA49162EB2B379AF4BD08239AE9D2590B6968B0BA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_1_t584E66CD0123CFB6503AC3E597748948194AAA5E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m8E3C27DE02A5C8D1AE01D55D6B325BFB693CF385_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mA36092D2F40F81F420E65D722073A5B6A49137FB_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mA4BC919FC386FA1CE115EF12A461A768D26C11F5_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mD910536376B8EBB5BDB30088BE4FE395391592F3_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mBFBD3FBB9B3A4B06F450444AD3CDF71C1C2E09EC_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mF1CB8635CFBBCDB0A6DFA0EE7D3D3E95959E0FD6_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t9B4BB3EA8BB62F9777B029C3AAC4560C3EB0124A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tA61E6ACDC88C89A9523D28C560996ABFF548352B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } List_1_tA61E6ACDC88C89A9523D28C560996ABFF548352B* V_0 = NULL; List_1_t9B4BB3EA8BB62F9777B029C3AAC4560C3EB0124A* V_1 = NULL; int32_t V_2 = 0; RuntimeObject* V_3 = NULL; int32_t V_4 = 0; Exception_t* V_5 = NULL; AggregateException_t51B6205846DFB356B94452702201DD239D44422F* V_6 = NULL; { List_1_tA61E6ACDC88C89A9523D28C560996ABFF548352B* L_0 = (List_1_tA61E6ACDC88C89A9523D28C560996ABFF548352B*)il2cpp_codegen_object_new(List_1_tA61E6ACDC88C89A9523D28C560996ABFF548352B_il2cpp_TypeInfo_var); NullCheck(L_0); List_1__ctor_mD910536376B8EBB5BDB30088BE4FE395391592F3(L_0, List_1__ctor_mD910536376B8EBB5BDB30088BE4FE395391592F3_RuntimeMethod_var); V_0 = L_0; List_1_t9B4BB3EA8BB62F9777B029C3AAC4560C3EB0124A* L_1 = (List_1_t9B4BB3EA8BB62F9777B029C3AAC4560C3EB0124A*)il2cpp_codegen_object_new(List_1_t9B4BB3EA8BB62F9777B029C3AAC4560C3EB0124A_il2cpp_TypeInfo_var); NullCheck(L_1); List_1__ctor_mA4BC919FC386FA1CE115EF12A461A768D26C11F5(L_1, List_1__ctor_mA4BC919FC386FA1CE115EF12A461A768D26C11F5_RuntimeMethod_var); V_1 = L_1; List_1_t9B4BB3EA8BB62F9777B029C3AAC4560C3EB0124A* L_2 = V_1; NullCheck(L_2); List_1_Add_mA36092D2F40F81F420E65D722073A5B6A49137FB_inline(L_2, __this, List_1_Add_mA36092D2F40F81F420E65D722073A5B6A49137FB_RuntimeMethod_var); V_2 = 0; goto IL_006a; } IL_0017: { List_1_t9B4BB3EA8BB62F9777B029C3AAC4560C3EB0124A* L_3 = V_1; int32_t L_4 = V_2; int32_t L_5 = L_4; V_2 = ((int32_t)il2cpp_codegen_add(L_5, 1)); NullCheck(L_3); AggregateException_t51B6205846DFB356B94452702201DD239D44422F* L_6; L_6 = List_1_get_Item_mF1CB8635CFBBCDB0A6DFA0EE7D3D3E95959E0FD6(L_3, L_5, List_1_get_Item_mF1CB8635CFBBCDB0A6DFA0EE7D3D3E95959E0FD6_RuntimeMethod_var); NullCheck(L_6); ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886* L_7; L_7 = AggregateException_get_InnerExceptions_m3044DE61416F827389F2975C67AC1AD89EA050A5_inline(L_6, NULL); V_3 = L_7; V_4 = 0; goto IL_0060; } IL_002d: { RuntimeObject* L_8 = V_3; int32_t L_9 = V_4; NullCheck(L_8); Exception_t* L_10; L_10 = InterfaceFuncInvoker1< Exception_t*, int32_t >::Invoke(0 /* T System.Collections.Generic.IList`1::get_Item(System.Int32) */, IList_1_t584E66CD0123CFB6503AC3E597748948194AAA5E_il2cpp_TypeInfo_var, L_8, L_9); V_5 = L_10; Exception_t* L_11 = V_5; if (!L_11) { goto IL_005a; } } { Exception_t* L_12 = V_5; V_6 = ((AggregateException_t51B6205846DFB356B94452702201DD239D44422F*)IsInstClass((RuntimeObject*)L_12, AggregateException_t51B6205846DFB356B94452702201DD239D44422F_il2cpp_TypeInfo_var)); AggregateException_t51B6205846DFB356B94452702201DD239D44422F* L_13 = V_6; if (!L_13) { goto IL_0052; } } { List_1_t9B4BB3EA8BB62F9777B029C3AAC4560C3EB0124A* L_14 = V_1; AggregateException_t51B6205846DFB356B94452702201DD239D44422F* L_15 = V_6; NullCheck(L_14); List_1_Add_mA36092D2F40F81F420E65D722073A5B6A49137FB_inline(L_14, L_15, List_1_Add_mA36092D2F40F81F420E65D722073A5B6A49137FB_RuntimeMethod_var); goto IL_005a; } IL_0052: { List_1_tA61E6ACDC88C89A9523D28C560996ABFF548352B* L_16 = V_0; Exception_t* L_17 = V_5; NullCheck(L_16); List_1_Add_m8E3C27DE02A5C8D1AE01D55D6B325BFB693CF385_inline(L_16, L_17, List_1_Add_m8E3C27DE02A5C8D1AE01D55D6B325BFB693CF385_RuntimeMethod_var); } IL_005a: { int32_t L_18 = V_4; V_4 = ((int32_t)il2cpp_codegen_add(L_18, 1)); } IL_0060: { int32_t L_19 = V_4; RuntimeObject* L_20 = V_3; NullCheck(L_20); int32_t L_21; L_21 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1::get_Count() */, ICollection_1_tA49162EB2B379AF4BD08239AE9D2590B6968B0BA_il2cpp_TypeInfo_var, L_20); if ((((int32_t)L_19) < ((int32_t)L_21))) { goto IL_002d; } } IL_006a: { List_1_t9B4BB3EA8BB62F9777B029C3AAC4560C3EB0124A* L_22 = V_1; NullCheck(L_22); int32_t L_23; L_23 = List_1_get_Count_mBFBD3FBB9B3A4B06F450444AD3CDF71C1C2E09EC_inline(L_22, List_1_get_Count_mBFBD3FBB9B3A4B06F450444AD3CDF71C1C2E09EC_RuntimeMethod_var); int32_t L_24 = V_2; if ((((int32_t)L_23) > ((int32_t)L_24))) { goto IL_0017; } } { String_t* L_25; L_25 = VirtualFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Exception::get_Message() */, __this); List_1_tA61E6ACDC88C89A9523D28C560996ABFF548352B* L_26 = V_0; AggregateException_t51B6205846DFB356B94452702201DD239D44422F* L_27 = (AggregateException_t51B6205846DFB356B94452702201DD239D44422F*)il2cpp_codegen_object_new(AggregateException_t51B6205846DFB356B94452702201DD239D44422F_il2cpp_TypeInfo_var); NullCheck(L_27); AggregateException__ctor_m5D99D5EC65645030D21C35CEDDACF438222AFB0D(L_27, L_25, L_26, NULL); return L_27; } } // System.String System.AggregateException::get_Message() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AggregateException_get_Message_m7A1884B973C7C05CBFB08C05FA433E9D923E3D65 (AggregateException_t51B6205846DFB356B94452702201DD239D44422F* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyCollection_1_get_Count_mADB84925112BAD7AA74EBCE91BC3E4524CFC4549_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyCollection_1_get_Item_mC1EEC8BBCB1499BF66A65D6A669B809CF9292628_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC087E631060AB76B7C814C0E1B92D5C7C4C4B924); s_Il2CppMethodInitialized = true; } StringBuilder_t* V_0 = NULL; int32_t V_1 = 0; { ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886* L_0 = __this->___m_innerExceptions_18; NullCheck(L_0); int32_t L_1; L_1 = ReadOnlyCollection_1_get_Count_mADB84925112BAD7AA74EBCE91BC3E4524CFC4549(L_0, ReadOnlyCollection_1_get_Count_mADB84925112BAD7AA74EBCE91BC3E4524CFC4549_RuntimeMethod_var); if (L_1) { goto IL_0014; } } { String_t* L_2; L_2 = Exception_get_Message_mCFE0D38FDF9001405299AAE43BBE2A9AD806C441(__this, NULL); return L_2; } IL_0014: { StringBuilder_t* L_3; L_3 = StringBuilderCache_Acquire_m6E2B81795F398D214356982DB78955434EA835B1(((int32_t)16), NULL); V_0 = L_3; StringBuilder_t* L_4 = V_0; String_t* L_5; L_5 = Exception_get_Message_mCFE0D38FDF9001405299AAE43BBE2A9AD806C441(__this, NULL); NullCheck(L_4); StringBuilder_t* L_6; L_6 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_4, L_5, NULL); StringBuilder_t* L_7 = V_0; NullCheck(L_7); StringBuilder_t* L_8; L_8 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_7, ((int32_t)32), NULL); V_1 = 0; goto IL_0067; } IL_0036: { StringBuilder_t* L_9 = V_0; NullCheck(L_9); StringBuilder_t* L_10; L_10 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_9, ((int32_t)40), NULL); StringBuilder_t* L_11 = V_0; ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886* L_12 = __this->___m_innerExceptions_18; int32_t L_13 = V_1; NullCheck(L_12); Exception_t* L_14; L_14 = ReadOnlyCollection_1_get_Item_mC1EEC8BBCB1499BF66A65D6A669B809CF9292628(L_12, L_13, ReadOnlyCollection_1_get_Item_mC1EEC8BBCB1499BF66A65D6A669B809CF9292628_RuntimeMethod_var); NullCheck(L_14); String_t* L_15; L_15 = VirtualFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Exception::get_Message() */, L_14); NullCheck(L_11); StringBuilder_t* L_16; L_16 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_11, L_15, NULL); StringBuilder_t* L_17 = V_0; NullCheck(L_17); StringBuilder_t* L_18; L_18 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_17, _stringLiteralC087E631060AB76B7C814C0E1B92D5C7C4C4B924, NULL); int32_t L_19 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_19, 1)); } IL_0067: { int32_t L_20 = V_1; ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886* L_21 = __this->___m_innerExceptions_18; NullCheck(L_21); int32_t L_22; L_22 = ReadOnlyCollection_1_get_Count_mADB84925112BAD7AA74EBCE91BC3E4524CFC4549(L_21, ReadOnlyCollection_1_get_Count_mADB84925112BAD7AA74EBCE91BC3E4524CFC4549_RuntimeMethod_var); if ((((int32_t)L_20) < ((int32_t)L_22))) { goto IL_0036; } } { StringBuilder_t* L_23 = V_0; StringBuilder_t* L_24 = L_23; NullCheck(L_24); int32_t L_25; L_25 = StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8(L_24, NULL); NullCheck(L_24); StringBuilder_set_Length_mE2427BDAEF91C4E4A6C80F3BDF1F6E01DBCC2414(L_24, ((int32_t)il2cpp_codegen_subtract(L_25, 1)), NULL); StringBuilder_t* L_26 = V_0; String_t* L_27; L_27 = StringBuilderCache_GetStringAndRelease_mE88D25734085D6BA6F1D82C692CC059D90EDF50F(L_26, NULL); return L_27; } } // System.String System.AggregateException::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AggregateException_ToString_m2BB913143184062068CD55719EB94CE7119E4141 (AggregateException_t51B6205846DFB356B94452702201DD239D44422F* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyCollection_1_get_Count_mADB84925112BAD7AA74EBCE91BC3E4524CFC4549_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyCollection_1_get_Item_mC1EEC8BBCB1499BF66A65D6A669B809CF9292628_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE83E205B069FB6EB573A2EF371C8C84AB214E8A7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEB209907A052ABB2C21994BF17D3B45327D812D2); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF1D9D681ED3F17FB88D66F3F260041BE534C7879); s_Il2CppMethodInitialized = true; } StringBuilder_t* V_0 = NULL; int32_t V_1 = 0; { StringBuilder_t* L_0 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); NullCheck(L_0); StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D(L_0, NULL); V_0 = L_0; StringBuilder_t* L_1 = V_0; String_t* L_2; L_2 = Exception_ToString_m86C837E2A0387AD13424708D0F9292A27FA06A4B(__this, NULL); NullCheck(L_1); StringBuilder_t* L_3; L_3 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_1, L_2, NULL); V_1 = 0; goto IL_0070; } IL_0017: { StringBuilder_t* L_4 = V_0; NullCheck(L_4); StringBuilder_t* L_5; L_5 = StringBuilder_AppendLine_m3BC704C4E6A8531027D8C9287D0AB2AA0188AC4E(L_4, NULL); StringBuilder_t* L_6 = V_0; NullCheck(L_6); StringBuilder_t* L_7; L_7 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_6, _stringLiteralF1D9D681ED3F17FB88D66F3F260041BE534C7879, NULL); StringBuilder_t* L_8 = V_0; il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var); CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_9; L_9 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL); int32_t L_10 = V_1; int32_t L_11 = L_10; RuntimeObject* L_12 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_11); NullCheck(L_8); StringBuilder_t* L_13; L_13 = StringBuilder_AppendFormat_m91278D58CD695B07613B9A3941B745B815542E1E(L_8, L_9, _stringLiteralE83E205B069FB6EB573A2EF371C8C84AB214E8A7, L_12, NULL); StringBuilder_t* L_14 = V_0; ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886* L_15 = __this->___m_innerExceptions_18; int32_t L_16 = V_1; NullCheck(L_15); Exception_t* L_17; L_17 = ReadOnlyCollection_1_get_Item_mC1EEC8BBCB1499BF66A65D6A669B809CF9292628(L_15, L_16, ReadOnlyCollection_1_get_Item_mC1EEC8BBCB1499BF66A65D6A669B809CF9292628_RuntimeMethod_var); NullCheck(L_17); String_t* L_18; L_18 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_17); NullCheck(L_14); StringBuilder_t* L_19; L_19 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_14, L_18, NULL); StringBuilder_t* L_20 = V_0; NullCheck(L_20); StringBuilder_t* L_21; L_21 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_20, _stringLiteralEB209907A052ABB2C21994BF17D3B45327D812D2, NULL); StringBuilder_t* L_22 = V_0; NullCheck(L_22); StringBuilder_t* L_23; L_23 = StringBuilder_AppendLine_m3BC704C4E6A8531027D8C9287D0AB2AA0188AC4E(L_22, NULL); int32_t L_24 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_24, 1)); } IL_0070: { int32_t L_25 = V_1; ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886* L_26 = __this->___m_innerExceptions_18; NullCheck(L_26); int32_t L_27; L_27 = ReadOnlyCollection_1_get_Count_mADB84925112BAD7AA74EBCE91BC3E4524CFC4549(L_26, ReadOnlyCollection_1_get_Count_mADB84925112BAD7AA74EBCE91BC3E4524CFC4549_RuntimeMethod_var); if ((((int32_t)L_25) < ((int32_t)L_27))) { goto IL_0017; } } { StringBuilder_t* L_28 = V_0; NullCheck(L_28); String_t* L_29; L_29 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_28); return L_29; } } // System.Int32 System.AggregateException::get_InnerExceptionCount() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AggregateException_get_InnerExceptionCount_mACA4A912834D7FCD47D30E0815B2830B2933A081 (AggregateException_t51B6205846DFB356B94452702201DD239D44422F* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyCollection_1_get_Count_mADB84925112BAD7AA74EBCE91BC3E4524CFC4549_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886* L_0; L_0 = AggregateException_get_InnerExceptions_m3044DE61416F827389F2975C67AC1AD89EA050A5_inline(__this, NULL); NullCheck(L_0); int32_t L_1; L_1 = ReadOnlyCollection_1_get_Count_mADB84925112BAD7AA74EBCE91BC3E4524CFC4549(L_0, ReadOnlyCollection_1_get_Count_mADB84925112BAD7AA74EBCE91BC3E4524CFC4549_RuntimeMethod_var); 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 // System.Void System.ApplicationException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ApplicationException__ctor_m481B0251BEC0BF28EAAF3FCB11A47EFCB2E56E2A (ApplicationException_tA744BED4E90266BD255285CD4CF909BAB3EE811A* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAEAB3D729B68F0D07CACB56068349A9D081F5BAD); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_runtime_class_init_inline(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_m9B2BD92CD68916245A75109105D9071C9D430E7F(__this, _stringLiteralAEAB3D729B68F0D07CACB56068349A9D081F5BAD, NULL); Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2146232832), NULL); return; } } // System.Void System.ApplicationException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ApplicationException__ctor_mE51100DFCDB0A0DF23B482CC43EC8E396BE7BE82 (ApplicationException_tA744BED4E90266BD255285CD4CF909BAB3EE811A* __this, String_t* ___message0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___message0; il2cpp_codegen_runtime_class_init_inline(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_m9B2BD92CD68916245A75109105D9071C9D430E7F(__this, L_0, NULL); Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2146232832), NULL); return; } } // System.Void System.ApplicationException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ApplicationException__ctor_m924E77609BAFA0595453363EB8B7BCCBA03B32DD (ApplicationException_tA744BED4E90266BD255285CD4CF909BAB3EE811A* __this, String_t* ___message0, Exception_t* ___innerException1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___message0; Exception_t* L_1 = ___innerException1; il2cpp_codegen_runtime_class_init_inline(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_m9BC141AAB08F47C34B7ED40C1A6C0C1ADDEC5CB3(__this, L_0, L_1, NULL); Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2146232832), NULL); return; } } // System.Void System.ApplicationException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ApplicationException__ctor_mFF00B1678B9B13F1C9FEB0829C495F6507CAF031 (ApplicationException_tA744BED4E90266BD255285CD4CF909BAB3EE811A* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___info0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___info0; StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___context1; il2cpp_codegen_runtime_class_init_inline(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_m412D5FC4D69035738F1DB88FD771ABD6B0E9E120(__this, L_0, L_1, 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 // System.Void System.ArgumentException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m34A925BA55EC4CE4253404E363B5F6A53EB51CA3 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral50EF455B956027DF24259B3FB1863653BB4878FD); s_Il2CppMethodInitialized = true; } { SystemException__ctor_mC481DFD60F19362A0B3523FBD5E429EC4F1F3FB5(__this, _stringLiteral50EF455B956027DF24259B3FB1863653BB4878FD, NULL); Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2147024809), NULL); return; } } // System.Void System.ArgumentException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, String_t* ___message0, const RuntimeMethod* method) { { String_t* L_0 = ___message0; SystemException__ctor_mC481DFD60F19362A0B3523FBD5E429EC4F1F3FB5(__this, L_0, NULL); Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2147024809), NULL); return; } } // System.Void System.ArgumentException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_mFDDC94E3C94B43E2DFBDA15DD749315C5B246512 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, String_t* ___message0, Exception_t* ___innerException1, const RuntimeMethod* method) { { String_t* L_0 = ___message0; Exception_t* L_1 = ___innerException1; SystemException__ctor_m0FC84CACD2A5D66222998AA601A5C41CEC36A611(__this, L_0, L_1, NULL); Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2147024809), NULL); return; } } // System.Void System.ArgumentException::.ctor(System.String,System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m790F28810569425B0503056EF1A9CDDF9AFBB3F0 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, String_t* ___message0, String_t* ___paramName1, Exception_t* ___innerException2, const RuntimeMethod* method) { { String_t* L_0 = ___message0; Exception_t* L_1 = ___innerException2; SystemException__ctor_m0FC84CACD2A5D66222998AA601A5C41CEC36A611(__this, L_0, L_1, NULL); String_t* L_2 = ___paramName1; __this->____paramName_18 = L_2; Il2CppCodeGenWriteBarrier((void**)(&__this->____paramName_18), (void*)L_2); Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2147024809), NULL); return; } } // System.Void System.ArgumentException::.ctor(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, String_t* ___message0, String_t* ___paramName1, const RuntimeMethod* method) { { String_t* L_0 = ___message0; SystemException__ctor_mC481DFD60F19362A0B3523FBD5E429EC4F1F3FB5(__this, L_0, NULL); String_t* L_1 = ___paramName1; __this->____paramName_18 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->____paramName_18), (void*)L_1); Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2147024809), NULL); return; } } // System.Void System.ArgumentException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_mB4FA5CCA0CDB08730E9ED40FA935BA38C032D83A (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___info0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDE55B43308212050F52D65FEF9469774AEB10590); s_Il2CppMethodInitialized = true; } { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___info0; StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___context1; SystemException__ctor_mA2BB392E0F4CD8A4C132984F76B7A9FBDB3B6879(__this, L_0, L_1, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_2 = ___info0; NullCheck(L_2); String_t* L_3; L_3 = SerializationInfo_GetString_mF0753AFAA13AABF8A30B8F0890AEC52BFBBC73E9(L_2, _stringLiteralDE55B43308212050F52D65FEF9469774AEB10590, NULL); __this->____paramName_18 = L_3; Il2CppCodeGenWriteBarrier((void**)(&__this->____paramName_18), (void*)L_3); return; } } // System.Void System.ArgumentException::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException_GetObjectData_m203105469CF041A816427B18882BCFAF7193EA67 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___info0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDE55B43308212050F52D65FEF9469774AEB10590); s_Il2CppMethodInitialized = true; } { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___info0; StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___context1; Exception_GetObjectData_mD69929DB0BB2512240908B9EEE21778CB7B72DA9(__this, L_0, L_1, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_2 = ___info0; String_t* L_3 = __this->____paramName_18; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_4 = { reinterpret_cast (String_t_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_5; L_5 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_4, NULL); NullCheck(L_2); SerializationInfo_AddValue_m1AD59BBF8C3129142943D3F298ADF09FF123C199(L_2, _stringLiteralDE55B43308212050F52D65FEF9469774AEB10590, L_3, L_5, NULL); return; } } // System.String System.ArgumentException::get_Message() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ArgumentException_get_Message_m78A896B7D565DAFF78B1987C12FB40374EE1C628 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2565F69A6EDDD61DD4960B022D88743E25BCCD32); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; String_t* V_1 = NULL; { String_t* L_0; L_0 = Exception_get_Message_mCFE0D38FDF9001405299AAE43BBE2A9AD806C441(__this, NULL); V_0 = L_0; String_t* L_1 = __this->____paramName_18; bool L_2; L_2 = String_IsNullOrEmpty_m54CF0907E7C4F3AFB2E796A13DC751ECBB8DB64A(L_1, NULL); if (L_2) { goto IL_0032; } } { String_t* L_3 = __this->____paramName_18; String_t* L_4; L_4 = SR_Format_mB99C6F1BE061EA1427A45176E0CAFB2A2C76D03F(_stringLiteral2565F69A6EDDD61DD4960B022D88743E25BCCD32, L_3, NULL); V_1 = L_4; String_t* L_5 = V_0; String_t* L_6; L_6 = Environment_get_NewLine_m86172FA1FF2F93F740EFB5760938B35750DD35C0(NULL); String_t* L_7 = V_1; String_t* L_8; L_8 = String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0(L_5, L_6, L_7, NULL); return L_8; } IL_0032: { String_t* L_9 = V_0; return L_9; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.ArgumentNullException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m4A0936689D360EBC545690326B4DF187196BF2B9 (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6B876A297E470749B85E75AB089B8F37384700D8); s_Il2CppMethodInitialized = true; } { ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(__this, _stringLiteral6B876A297E470749B85E75AB089B8F37384700D8, NULL); Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2147467261), NULL); return; } } // System.Void System.ArgumentNullException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* __this, String_t* ___paramName0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6B876A297E470749B85E75AB089B8F37384700D8); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___paramName0; ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(__this, _stringLiteral6B876A297E470749B85E75AB089B8F37384700D8, L_0, NULL); Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2147467261), NULL); return; } } // System.Void System.ArgumentNullException::.ctor(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m6D9C7B47EA708382838B264BA02EBB7576DFA155 (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* __this, String_t* ___paramName0, String_t* ___message1, const RuntimeMethod* method) { { String_t* L_0 = ___message1; String_t* L_1 = ___paramName0; ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(__this, L_0, L_1, NULL); Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2147467261), NULL); return; } } // System.Void System.ArgumentNullException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_mF28B965A25876F0BCFDCBBE4251A9DAA2DA07B40 (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___info0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___context1, const RuntimeMethod* method) { { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___info0; StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___context1; ArgumentException__ctor_mB4FA5CCA0CDB08730E9ED40FA935BA38C032D83A(__this, L_0, L_1, 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 // System.Void System.ArgumentOutOfRangeException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_mB596C51BFA864B65C2CED275458FAE90F7CD29C9 (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral491788442E76F5D7830F0DBFCF8EDD98854F636F); s_Il2CppMethodInitialized = true; } { ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(__this, _stringLiteral491788442E76F5D7830F0DBFCF8EDD98854F636F, NULL); Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2146233086), NULL); return; } } // System.Void System.ArgumentOutOfRangeException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* __this, String_t* ___paramName0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral491788442E76F5D7830F0DBFCF8EDD98854F636F); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___paramName0; ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(__this, _stringLiteral491788442E76F5D7830F0DBFCF8EDD98854F636F, L_0, NULL); Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2146233086), NULL); return; } } // System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66 (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* __this, String_t* ___paramName0, String_t* ___message1, const RuntimeMethod* method) { { String_t* L_0 = ___message1; String_t* L_1 = ___paramName0; ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(__this, L_0, L_1, NULL); Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2146233086), NULL); return; } } // System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.Object,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m60B543A63AC8692C28096003FBF2AD124B9D5B85 (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* __this, String_t* ___paramName0, RuntimeObject* ___actualValue1, String_t* ___message2, const RuntimeMethod* method) { { String_t* L_0 = ___message2; String_t* L_1 = ___paramName0; ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(__this, L_0, L_1, NULL); RuntimeObject* L_2 = ___actualValue1; __this->____actualValue_19 = L_2; Il2CppCodeGenWriteBarrier((void**)(&__this->____actualValue_19), (void*)L_2); Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2146233086), NULL); return; } } // System.Void System.ArgumentOutOfRangeException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m6A78DDC3447BE37A3E14C9B6EEE3026BE9FBAFB5 (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___info0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE727DF72D0C3BA2DAE3D6C100D91E4C8FF0471A3); s_Il2CppMethodInitialized = true; } { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___info0; StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___context1; ArgumentException__ctor_mB4FA5CCA0CDB08730E9ED40FA935BA38C032D83A(__this, L_0, L_1, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_2 = ___info0; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_3 = { reinterpret_cast (RuntimeObject_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_4; L_4 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_3, NULL); NullCheck(L_2); RuntimeObject* L_5; L_5 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_2, _stringLiteralE727DF72D0C3BA2DAE3D6C100D91E4C8FF0471A3, L_4, NULL); __this->____actualValue_19 = L_5; Il2CppCodeGenWriteBarrier((void**)(&__this->____actualValue_19), (void*)L_5); return; } } // System.Void System.ArgumentOutOfRangeException::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException_GetObjectData_m44838EEEED0AD60223B653BFED709E401BC04B44 (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___info0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE727DF72D0C3BA2DAE3D6C100D91E4C8FF0471A3); s_Il2CppMethodInitialized = true; } { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___info0; StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___context1; ArgumentException_GetObjectData_m203105469CF041A816427B18882BCFAF7193EA67(__this, L_0, L_1, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_2 = ___info0; RuntimeObject* L_3 = __this->____actualValue_19; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_4 = { reinterpret_cast (RuntimeObject_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_5; L_5 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_4, NULL); NullCheck(L_2); SerializationInfo_AddValue_m1AD59BBF8C3129142943D3F298ADF09FF123C199(L_2, _stringLiteralE727DF72D0C3BA2DAE3D6C100D91E4C8FF0471A3, L_3, L_5, NULL); return; } } // System.String System.ArgumentOutOfRangeException::get_Message() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ArgumentOutOfRangeException_get_Message_m62E50C7CB4E53EAA5F389BF63BF27838DC0FF450 (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC96B5F218B9F698B4A9CF59FF10289CAFC661C7A); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; String_t* V_1 = NULL; { String_t* L_0; L_0 = ArgumentException_get_Message_m78A896B7D565DAFF78B1987C12FB40374EE1C628(__this, NULL); V_0 = L_0; RuntimeObject* L_1 = __this->____actualValue_19; if (!L_1) { goto IL_0037; } } { RuntimeObject* L_2 = __this->____actualValue_19; NullCheck(L_2); String_t* L_3; L_3 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_2); String_t* L_4; L_4 = SR_Format_mB99C6F1BE061EA1427A45176E0CAFB2A2C76D03F(_stringLiteralC96B5F218B9F698B4A9CF59FF10289CAFC661C7A, L_3, NULL); V_1 = L_4; String_t* L_5 = V_0; if (L_5) { goto IL_002a; } } { String_t* L_6 = V_1; return L_6; } IL_002a: { String_t* L_7 = V_0; String_t* L_8; L_8 = Environment_get_NewLine_m86172FA1FF2F93F740EFB5760938B35750DD35C0(NULL); String_t* L_9 = V_1; String_t* L_10; L_10 = String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0(L_7, L_8, L_9, NULL); return L_10; } IL_0037: { String_t* L_11 = V_0; return L_11; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.ArithmeticException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArithmeticException__ctor_m1CD22804E6929CDFBE5CB651FCE80C0C668D3FB0 (ArithmeticException_t07E77822D0007642BC8959A671E70D1F33C84FEA* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4BAC3D20C34EF3D0825E7EAAE03BE6034C6297A9); s_Il2CppMethodInitialized = true; } { SystemException__ctor_mC481DFD60F19362A0B3523FBD5E429EC4F1F3FB5(__this, _stringLiteral4BAC3D20C34EF3D0825E7EAAE03BE6034C6297A9, NULL); Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2147024362), NULL); return; } } // System.Void System.ArithmeticException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArithmeticException__ctor_m84E573C2093803DC9E6219461275B351D225C16A (ArithmeticException_t07E77822D0007642BC8959A671E70D1F33C84FEA* __this, String_t* ___message0, const RuntimeMethod* method) { { String_t* L_0 = ___message0; SystemException__ctor_mC481DFD60F19362A0B3523FBD5E429EC4F1F3FB5(__this, L_0, NULL); Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2147024362), NULL); return; } } // System.Void System.ArithmeticException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArithmeticException__ctor_m880D58CC9B6CD2F0E867298BA748343216D89A8B (ArithmeticException_t07E77822D0007642BC8959A671E70D1F33C84FEA* __this, String_t* ___message0, Exception_t* ___innerException1, const RuntimeMethod* method) { { String_t* L_0 = ___message0; Exception_t* L_1 = ___innerException1; SystemException__ctor_m0FC84CACD2A5D66222998AA601A5C41CEC36A611(__this, L_0, L_1, NULL); Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2147024362), NULL); return; } } // System.Void System.ArithmeticException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArithmeticException__ctor_m9F97AB2FDC9EED4A59627F1F2F6165AB592F8942 (ArithmeticException_t07E77822D0007642BC8959A671E70D1F33C84FEA* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___info0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___context1, const RuntimeMethod* method) { { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___info0; StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___context1; SystemException__ctor_mA2BB392E0F4CD8A4C132984F76B7A9FBDB3B6879(__this, L_0, L_1, 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 // System.Void System.ArrayTypeMismatchException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayTypeMismatchException__ctor_mD1BAAE9B73BA9E5948655553019ED8DE4F306D8B (ArrayTypeMismatchException_t95F1723A5A166E62D3FBEF9734DEFBF61594F8F1* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral13772F1D89F55EDAC4913EE35CA9BC5DB5CCC798); s_Il2CppMethodInitialized = true; } { SystemException__ctor_mC481DFD60F19362A0B3523FBD5E429EC4F1F3FB5(__this, _stringLiteral13772F1D89F55EDAC4913EE35CA9BC5DB5CCC798, NULL); Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2146233085), NULL); return; } } // System.Void System.ArrayTypeMismatchException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayTypeMismatchException__ctor_mF0B088F92F9ECD9B10168671FD9347BA8B809C6C (ArrayTypeMismatchException_t95F1723A5A166E62D3FBEF9734DEFBF61594F8F1* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___info0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___context1, const RuntimeMethod* method) { { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___info0; StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___context1; SystemException__ctor_mA2BB392E0F4CD8A4C132984F76B7A9FBDB3B6879(__this, L_0, L_1, 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 // System.Void System.AssemblyLoadEventArgs::.ctor(System.Reflection.Assembly) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyLoadEventArgs__ctor_m58EB2A5D3B2E763F15ED98634EC68FFB61249E73 (AssemblyLoadEventArgs_tC10453F666334D5174ADF95106DF0DB73F4B863E* __this, Assembly_t* ___loadedAssembly0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_runtime_class_init_inline(EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377_il2cpp_TypeInfo_var); EventArgs__ctor_mC6F9412D03203ADEF854117542C8EBF61624C8C3(__this, NULL); Assembly_t* L_0 = ___loadedAssembly0; __this->___U3CLoadedAssemblyU3Ek__BackingField_1 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CLoadedAssemblyU3Ek__BackingField_1), (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 void AssemblyLoadEventHandler_Invoke_m3BA93F6B91E2B86F26BA39C5FDF80012F85D984F_Multicast(AssemblyLoadEventHandler_t74AF5FF25F520B9786A20D862AE69BE733774A42* __this, RuntimeObject* ___sender0, AssemblyLoadEventArgs_tC10453F666334D5174ADF95106DF0DB73F4B863E* ___args1, const RuntimeMethod* method) { il2cpp_array_size_t length = __this->___delegates_13->max_length; Delegate_t** delegatesToInvoke = reinterpret_cast(__this->___delegates_13->GetAddressAtUnchecked(0)); typedef void (*FunctionPointerType) (AssemblyLoadEventHandler_t74AF5FF25F520B9786A20D862AE69BE733774A42* __this, RuntimeObject* ___sender0, AssemblyLoadEventArgs_tC10453F666334D5174ADF95106DF0DB73F4B863E* ___args1, const RuntimeMethod* method); for (il2cpp_array_size_t i = 0; i < length; i++) { AssemblyLoadEventHandler_t74AF5FF25F520B9786A20D862AE69BE733774A42* currentDelegate = reinterpret_cast(delegatesToInvoke[i]); ((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___sender0, ___args1, reinterpret_cast(currentDelegate->___method_3)); } } void AssemblyLoadEventHandler_Invoke_m3BA93F6B91E2B86F26BA39C5FDF80012F85D984F_Open(AssemblyLoadEventHandler_t74AF5FF25F520B9786A20D862AE69BE733774A42* __this, RuntimeObject* ___sender0, AssemblyLoadEventArgs_tC10453F666334D5174ADF95106DF0DB73F4B863E* ___args1, const RuntimeMethod* method) { typedef void (*FunctionPointerType) (RuntimeObject*, AssemblyLoadEventArgs_tC10453F666334D5174ADF95106DF0DB73F4B863E*, const RuntimeMethod*); ((FunctionPointerType)__this->___method_ptr_0)(___sender0, ___args1, method); } void AssemblyLoadEventHandler_Invoke_m3BA93F6B91E2B86F26BA39C5FDF80012F85D984F_Closed(AssemblyLoadEventHandler_t74AF5FF25F520B9786A20D862AE69BE733774A42* __this, RuntimeObject* ___sender0, AssemblyLoadEventArgs_tC10453F666334D5174ADF95106DF0DB73F4B863E* ___args1, const RuntimeMethod* method) { typedef void (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, AssemblyLoadEventArgs_tC10453F666334D5174ADF95106DF0DB73F4B863E*, const RuntimeMethod*); ((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___sender0, ___args1, method); } void AssemblyLoadEventHandler_Invoke_m3BA93F6B91E2B86F26BA39C5FDF80012F85D984F_OpenStaticInvoker(AssemblyLoadEventHandler_t74AF5FF25F520B9786A20D862AE69BE733774A42* __this, RuntimeObject* ___sender0, AssemblyLoadEventArgs_tC10453F666334D5174ADF95106DF0DB73F4B863E* ___args1, const RuntimeMethod* method) { InvokerActionInvoker2< RuntimeObject*, AssemblyLoadEventArgs_tC10453F666334D5174ADF95106DF0DB73F4B863E* >::Invoke(__this->___method_ptr_0, method, NULL, ___sender0, ___args1); } void AssemblyLoadEventHandler_Invoke_m3BA93F6B91E2B86F26BA39C5FDF80012F85D984F_ClosedStaticInvoker(AssemblyLoadEventHandler_t74AF5FF25F520B9786A20D862AE69BE733774A42* __this, RuntimeObject* ___sender0, AssemblyLoadEventArgs_tC10453F666334D5174ADF95106DF0DB73F4B863E* ___args1, const RuntimeMethod* method) { InvokerActionInvoker3< RuntimeObject*, RuntimeObject*, AssemblyLoadEventArgs_tC10453F666334D5174ADF95106DF0DB73F4B863E* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___sender0, ___args1); } void AssemblyLoadEventHandler_Invoke_m3BA93F6B91E2B86F26BA39C5FDF80012F85D984F_OpenVirtual(AssemblyLoadEventHandler_t74AF5FF25F520B9786A20D862AE69BE733774A42* __this, RuntimeObject* ___sender0, AssemblyLoadEventArgs_tC10453F666334D5174ADF95106DF0DB73F4B863E* ___args1, const RuntimeMethod* method) { VirtualActionInvoker1< AssemblyLoadEventArgs_tC10453F666334D5174ADF95106DF0DB73F4B863E* >::Invoke(il2cpp_codegen_method_get_slot(method), ___sender0, ___args1); } void AssemblyLoadEventHandler_Invoke_m3BA93F6B91E2B86F26BA39C5FDF80012F85D984F_OpenInterface(AssemblyLoadEventHandler_t74AF5FF25F520B9786A20D862AE69BE733774A42* __this, RuntimeObject* ___sender0, AssemblyLoadEventArgs_tC10453F666334D5174ADF95106DF0DB73F4B863E* ___args1, const RuntimeMethod* method) { InterfaceActionInvoker1< AssemblyLoadEventArgs_tC10453F666334D5174ADF95106DF0DB73F4B863E* >::Invoke(il2cpp_codegen_method_get_slot(method), il2cpp_codegen_method_get_declaring_type(method), ___sender0, ___args1); } void AssemblyLoadEventHandler_Invoke_m3BA93F6B91E2B86F26BA39C5FDF80012F85D984F_OpenGenericVirtual(AssemblyLoadEventHandler_t74AF5FF25F520B9786A20D862AE69BE733774A42* __this, RuntimeObject* ___sender0, AssemblyLoadEventArgs_tC10453F666334D5174ADF95106DF0DB73F4B863E* ___args1, const RuntimeMethod* method) { GenericVirtualActionInvoker1< AssemblyLoadEventArgs_tC10453F666334D5174ADF95106DF0DB73F4B863E* >::Invoke(method, ___sender0, ___args1); } void AssemblyLoadEventHandler_Invoke_m3BA93F6B91E2B86F26BA39C5FDF80012F85D984F_OpenGenericInterface(AssemblyLoadEventHandler_t74AF5FF25F520B9786A20D862AE69BE733774A42* __this, RuntimeObject* ___sender0, AssemblyLoadEventArgs_tC10453F666334D5174ADF95106DF0DB73F4B863E* ___args1, const RuntimeMethod* method) { GenericInterfaceActionInvoker1< AssemblyLoadEventArgs_tC10453F666334D5174ADF95106DF0DB73F4B863E* >::Invoke(method, ___sender0, ___args1); } // System.Void System.AssemblyLoadEventHandler::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyLoadEventHandler__ctor_m951FB423DAB774D166ABBB569CAB69AD939A8087 (AssemblyLoadEventHandler_t74AF5FF25F520B9786A20D862AE69BE733774A42* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->___method_ptr_0 = il2cpp_codegen_get_virtual_call_method_pointer((RuntimeMethod*)___method1); __this->___method_3 = ___method1; __this->___m_target_2 = ___object0; Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target_2), (void*)___object0); int methodCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___method1); if (MethodIsStatic((RuntimeMethod*)___method1)) { bool isOpen = methodCount == 2; if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___method1)) if (isOpen) __this->___invoke_impl_1 = (intptr_t)&AssemblyLoadEventHandler_Invoke_m3BA93F6B91E2B86F26BA39C5FDF80012F85D984F_OpenStaticInvoker; else __this->___invoke_impl_1 = (intptr_t)&AssemblyLoadEventHandler_Invoke_m3BA93F6B91E2B86F26BA39C5FDF80012F85D984F_ClosedStaticInvoker; else if (isOpen) __this->___invoke_impl_1 = (intptr_t)&AssemblyLoadEventHandler_Invoke_m3BA93F6B91E2B86F26BA39C5FDF80012F85D984F_Open; else __this->___invoke_impl_1 = (intptr_t)&AssemblyLoadEventHandler_Invoke_m3BA93F6B91E2B86F26BA39C5FDF80012F85D984F_Closed; } else { bool isOpen = methodCount == 1; if (isOpen) { if (__this->___method_is_virtual_12) { if (il2cpp_codegen_method_is_generic_instance_method((RuntimeMethod*)___method1)) if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___method1)) __this->___invoke_impl_1 = (intptr_t)&AssemblyLoadEventHandler_Invoke_m3BA93F6B91E2B86F26BA39C5FDF80012F85D984F_OpenGenericInterface; else __this->___invoke_impl_1 = (intptr_t)&AssemblyLoadEventHandler_Invoke_m3BA93F6B91E2B86F26BA39C5FDF80012F85D984F_OpenGenericVirtual; else if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___method1)) __this->___invoke_impl_1 = (intptr_t)&AssemblyLoadEventHandler_Invoke_m3BA93F6B91E2B86F26BA39C5FDF80012F85D984F_OpenInterface; else __this->___invoke_impl_1 = (intptr_t)&AssemblyLoadEventHandler_Invoke_m3BA93F6B91E2B86F26BA39C5FDF80012F85D984F_OpenVirtual; } else { __this->___invoke_impl_1 = (intptr_t)&AssemblyLoadEventHandler_Invoke_m3BA93F6B91E2B86F26BA39C5FDF80012F85D984F_Open; } } else { __this->___invoke_impl_1 = (intptr_t)&AssemblyLoadEventHandler_Invoke_m3BA93F6B91E2B86F26BA39C5FDF80012F85D984F_Closed; } } __this->___extra_arg_5 = (intptr_t)&AssemblyLoadEventHandler_Invoke_m3BA93F6B91E2B86F26BA39C5FDF80012F85D984F_Multicast; } // System.Void System.AssemblyLoadEventHandler::Invoke(System.Object,System.AssemblyLoadEventArgs) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssemblyLoadEventHandler_Invoke_m3BA93F6B91E2B86F26BA39C5FDF80012F85D984F (AssemblyLoadEventHandler_t74AF5FF25F520B9786A20D862AE69BE733774A42* __this, RuntimeObject* ___sender0, AssemblyLoadEventArgs_tC10453F666334D5174ADF95106DF0DB73F4B863E* ___args1, const RuntimeMethod* method) { typedef void (*FunctionPointerType) (AssemblyLoadEventHandler_t74AF5FF25F520B9786A20D862AE69BE733774A42* __this, RuntimeObject* ___sender0, AssemblyLoadEventArgs_tC10453F666334D5174ADF95106DF0DB73F4B863E* ___args1, const RuntimeMethod* method); ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___sender0, ___args1, reinterpret_cast(__this->___method_3)); } #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 void AsyncCallback_Invoke_mA85DEAE969B1D0FD97E934DC39439E89D7553910_Multicast(AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* __this, RuntimeObject* ___ar0, const RuntimeMethod* method) { il2cpp_array_size_t length = __this->___delegates_13->max_length; Delegate_t** delegatesToInvoke = reinterpret_cast(__this->___delegates_13->GetAddressAtUnchecked(0)); typedef void (*FunctionPointerType) (AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* __this, RuntimeObject* ___ar0, const RuntimeMethod* method); for (il2cpp_array_size_t i = 0; i < length; i++) { AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* currentDelegate = reinterpret_cast(delegatesToInvoke[i]); ((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___ar0, reinterpret_cast(currentDelegate->___method_3)); } } void AsyncCallback_Invoke_mA85DEAE969B1D0FD97E934DC39439E89D7553910_Open(AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* __this, RuntimeObject* ___ar0, const RuntimeMethod* method) { typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); ((FunctionPointerType)__this->___method_ptr_0)(___ar0, method); } void AsyncCallback_Invoke_mA85DEAE969B1D0FD97E934DC39439E89D7553910_Closed(AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* __this, RuntimeObject* ___ar0, const RuntimeMethod* method) { typedef void (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, const RuntimeMethod*); ((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___ar0, method); } void AsyncCallback_Invoke_mA85DEAE969B1D0FD97E934DC39439E89D7553910_OpenStaticInvoker(AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* __this, RuntimeObject* ___ar0, const RuntimeMethod* method) { InvokerActionInvoker1< RuntimeObject* >::Invoke(__this->___method_ptr_0, method, NULL, ___ar0); } void AsyncCallback_Invoke_mA85DEAE969B1D0FD97E934DC39439E89D7553910_ClosedStaticInvoker(AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* __this, RuntimeObject* ___ar0, const RuntimeMethod* method) { InvokerActionInvoker2< RuntimeObject*, RuntimeObject* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___ar0); } void AsyncCallback_Invoke_mA85DEAE969B1D0FD97E934DC39439E89D7553910_OpenVirtual(AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* __this, RuntimeObject* ___ar0, const RuntimeMethod* method) { VirtualActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(method), ___ar0); } void AsyncCallback_Invoke_mA85DEAE969B1D0FD97E934DC39439E89D7553910_OpenInterface(AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* __this, RuntimeObject* ___ar0, const RuntimeMethod* method) { InterfaceActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(method), il2cpp_codegen_method_get_declaring_type(method), ___ar0); } void AsyncCallback_Invoke_mA85DEAE969B1D0FD97E934DC39439E89D7553910_OpenGenericVirtual(AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* __this, RuntimeObject* ___ar0, const RuntimeMethod* method) { GenericVirtualActionInvoker0::Invoke(method, ___ar0); } void AsyncCallback_Invoke_mA85DEAE969B1D0FD97E934DC39439E89D7553910_OpenGenericInterface(AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* __this, RuntimeObject* ___ar0, const RuntimeMethod* method) { GenericInterfaceActionInvoker0::Invoke(method, ___ar0); } // System.Void System.AsyncCallback::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncCallback__ctor_mC3C0475E930E4419AED02C7335E53B425A2D68AC (AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) { __this->___method_ptr_0 = il2cpp_codegen_get_virtual_call_method_pointer((RuntimeMethod*)___method1); __this->___method_3 = ___method1; __this->___m_target_2 = ___object0; Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target_2), (void*)___object0); int methodCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___method1); if (MethodIsStatic((RuntimeMethod*)___method1)) { bool isOpen = methodCount == 1; if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___method1)) if (isOpen) __this->___invoke_impl_1 = (intptr_t)&AsyncCallback_Invoke_mA85DEAE969B1D0FD97E934DC39439E89D7553910_OpenStaticInvoker; else __this->___invoke_impl_1 = (intptr_t)&AsyncCallback_Invoke_mA85DEAE969B1D0FD97E934DC39439E89D7553910_ClosedStaticInvoker; else if (isOpen) __this->___invoke_impl_1 = (intptr_t)&AsyncCallback_Invoke_mA85DEAE969B1D0FD97E934DC39439E89D7553910_Open; else __this->___invoke_impl_1 = (intptr_t)&AsyncCallback_Invoke_mA85DEAE969B1D0FD97E934DC39439E89D7553910_Closed; } else { bool isOpen = methodCount == 0; if (isOpen) { if (__this->___method_is_virtual_12) { if (il2cpp_codegen_method_is_generic_instance_method((RuntimeMethod*)___method1)) if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___method1)) __this->___invoke_impl_1 = (intptr_t)&AsyncCallback_Invoke_mA85DEAE969B1D0FD97E934DC39439E89D7553910_OpenGenericInterface; else __this->___invoke_impl_1 = (intptr_t)&AsyncCallback_Invoke_mA85DEAE969B1D0FD97E934DC39439E89D7553910_OpenGenericVirtual; else if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___method1)) __this->___invoke_impl_1 = (intptr_t)&AsyncCallback_Invoke_mA85DEAE969B1D0FD97E934DC39439E89D7553910_OpenInterface; else __this->___invoke_impl_1 = (intptr_t)&AsyncCallback_Invoke_mA85DEAE969B1D0FD97E934DC39439E89D7553910_OpenVirtual; } else { __this->___invoke_impl_1 = (intptr_t)&AsyncCallback_Invoke_mA85DEAE969B1D0FD97E934DC39439E89D7553910_Open; } } else { __this->___invoke_impl_1 = (intptr_t)&AsyncCallback_Invoke_mA85DEAE969B1D0FD97E934DC39439E89D7553910_Closed; } } __this->___extra_arg_5 = (intptr_t)&AsyncCallback_Invoke_mA85DEAE969B1D0FD97E934DC39439E89D7553910_Multicast; } // System.Void System.AsyncCallback::Invoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncCallback_Invoke_mA85DEAE969B1D0FD97E934DC39439E89D7553910 (AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* __this, RuntimeObject* ___ar0, const RuntimeMethod* method) { typedef void (*FunctionPointerType) (AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* __this, RuntimeObject* ___ar0, const RuntimeMethod* method); ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___ar0, reinterpret_cast(__this->___method_3)); } // System.IAsyncResult System.AsyncCallback::BeginInvoke(System.IAsyncResult,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* AsyncCallback_BeginInvoke_m3CBD8B256174D206DC85F42A48F1F88E097E5975 (AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* __this, RuntimeObject* ___ar0, AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* ___callback1, RuntimeObject* ___object2, const RuntimeMethod* method) { void *__d_args[2] = {0}; __d_args[0] = ___ar0; return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);; } // System.Void System.AsyncCallback::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncCallback_EndInvoke_mDF9BB40CE3E562BB89BADDB29F0DEAE72584BFA3 (AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* __this, RuntimeObject* ___result0, const RuntimeMethod* method) { il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 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 #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.AttributeUsageAttribute::.ctor(System.AttributeTargets) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeUsageAttribute__ctor_mB1DAD99081C9A5BFCC36040E1979D6CDB6F0BEA0 (AttributeUsageAttribute_t25F34EEA4F7DBA1A8EEFA0685E986AEECE621C49* __this, int32_t ___validOn0, const RuntimeMethod* method) { { __this->____attributeTarget_0 = ((int32_t)32767); __this->____inherited_2 = (bool)1; Attribute__ctor_m79ED1BF1EE36D1E417BA89A0D9F91F8AAD8D19E2(__this, NULL); int32_t L_0 = ___validOn0; __this->____attributeTarget_0 = L_0; return; } } // System.Boolean System.AttributeUsageAttribute::get_AllowMultiple() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AttributeUsageAttribute_get_AllowMultiple_mC8AE28D991D7D51DF0F2770DDB20607A65D71709 (AttributeUsageAttribute_t25F34EEA4F7DBA1A8EEFA0685E986AEECE621C49* __this, const RuntimeMethod* method) { { bool L_0 = __this->____allowMultiple_1; return L_0; } } // System.Void System.AttributeUsageAttribute::set_AllowMultiple(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeUsageAttribute_set_AllowMultiple_m1C02AF31622E3DE6748D37056E1D391AB8CA7A17 (AttributeUsageAttribute_t25F34EEA4F7DBA1A8EEFA0685E986AEECE621C49* __this, bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; __this->____allowMultiple_1 = L_0; return; } } // System.Boolean System.AttributeUsageAttribute::get_Inherited() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AttributeUsageAttribute_get_Inherited_m7D987A2CD060666ABDA765A4610D8147C4580AFB (AttributeUsageAttribute_t25F34EEA4F7DBA1A8EEFA0685E986AEECE621C49* __this, const RuntimeMethod* method) { { bool L_0 = __this->____inherited_2; return L_0; } } // System.Void System.AttributeUsageAttribute::set_Inherited(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeUsageAttribute_set_Inherited_mDF036E8D5BCDF7C912F99C1A569D11D11C3D3508 (AttributeUsageAttribute_t25F34EEA4F7DBA1A8EEFA0685E986AEECE621C49* __this, bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; __this->____inherited_2 = L_0; return; } } // System.Void System.AttributeUsageAttribute::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeUsageAttribute__cctor_mE34B4709967982644D03BC29361CC1CCBB89E0C3 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AttributeUsageAttribute_t25F34EEA4F7DBA1A8EEFA0685E986AEECE621C49_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { AttributeUsageAttribute_t25F34EEA4F7DBA1A8EEFA0685E986AEECE621C49* L_0 = (AttributeUsageAttribute_t25F34EEA4F7DBA1A8EEFA0685E986AEECE621C49*)il2cpp_codegen_object_new(AttributeUsageAttribute_t25F34EEA4F7DBA1A8EEFA0685E986AEECE621C49_il2cpp_TypeInfo_var); NullCheck(L_0); AttributeUsageAttribute__ctor_mB1DAD99081C9A5BFCC36040E1979D6CDB6F0BEA0(L_0, ((int32_t)32767), NULL); ((AttributeUsageAttribute_t25F34EEA4F7DBA1A8EEFA0685E986AEECE621C49_StaticFields*)il2cpp_codegen_static_fields_for(AttributeUsageAttribute_t25F34EEA4F7DBA1A8EEFA0685E986AEECE621C49_il2cpp_TypeInfo_var))->___Default_3 = L_0; Il2CppCodeGenWriteBarrier((void**)(&((AttributeUsageAttribute_t25F34EEA4F7DBA1A8EEFA0685E986AEECE621C49_StaticFields*)il2cpp_codegen_static_fields_for(AttributeUsageAttribute_t25F34EEA4F7DBA1A8EEFA0685E986AEECE621C49_il2cpp_TypeInfo_var))->___Default_3), (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 // System.Void System.BadImageFormatException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BadImageFormatException__ctor_mFA467420DBBF233F47279CF451DE13F956A9FC59 (BadImageFormatException_t7EBAEDCD74D3274D00106EC0051755C18D20E552* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC34A0BD578D5D87BDB3C56E68B1AFBCEB0921C80); s_Il2CppMethodInitialized = true; } { SystemException__ctor_mC481DFD60F19362A0B3523FBD5E429EC4F1F3FB5(__this, _stringLiteralC34A0BD578D5D87BDB3C56E68B1AFBCEB0921C80, NULL); Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2147024885), NULL); return; } } // System.Void System.BadImageFormatException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BadImageFormatException__ctor_mBE3FC6F66F5F872F8333D9FFBC7382A5FA81E78B (BadImageFormatException_t7EBAEDCD74D3274D00106EC0051755C18D20E552* __this, String_t* ___message0, const RuntimeMethod* method) { { String_t* L_0 = ___message0; SystemException__ctor_mC481DFD60F19362A0B3523FBD5E429EC4F1F3FB5(__this, L_0, NULL); Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2147024885), NULL); return; } } // System.Void System.BadImageFormatException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BadImageFormatException__ctor_m247648079D9BED8CB3547D97A1A4A13A588221BB (BadImageFormatException_t7EBAEDCD74D3274D00106EC0051755C18D20E552* __this, String_t* ___message0, Exception_t* ___inner1, const RuntimeMethod* method) { { String_t* L_0 = ___message0; Exception_t* L_1 = ___inner1; SystemException__ctor_m0FC84CACD2A5D66222998AA601A5C41CEC36A611(__this, L_0, L_1, NULL); Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2147024885), NULL); return; } } // System.Void System.BadImageFormatException::.ctor(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BadImageFormatException__ctor_mC09A8955CAC2940A52BA62E8F85C16D8DF82BCF9 (BadImageFormatException_t7EBAEDCD74D3274D00106EC0051755C18D20E552* __this, String_t* ___message0, String_t* ___fileName1, const RuntimeMethod* method) { { String_t* L_0 = ___message0; SystemException__ctor_mC481DFD60F19362A0B3523FBD5E429EC4F1F3FB5(__this, L_0, NULL); Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2147024885), NULL); String_t* L_1 = ___fileName1; __this->____fileName_18 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->____fileName_18), (void*)L_1); return; } } // System.Void System.BadImageFormatException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BadImageFormatException__ctor_m06D5B344A4B0AACA6F645B85E6DE08324D926582 (BadImageFormatException_t7EBAEDCD74D3274D00106EC0051755C18D20E552* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___info0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6A23ADF57EB2DED6CFCDFC91DCA029274A860ECC); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral99B5662DE40E7115E2CDF8451429C50BAFBBCE93); s_Il2CppMethodInitialized = true; } { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___info0; StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___context1; SystemException__ctor_mA2BB392E0F4CD8A4C132984F76B7A9FBDB3B6879(__this, L_0, L_1, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_2 = ___info0; NullCheck(L_2); String_t* L_3; L_3 = SerializationInfo_GetString_mF0753AFAA13AABF8A30B8F0890AEC52BFBBC73E9(L_2, _stringLiteral6A23ADF57EB2DED6CFCDFC91DCA029274A860ECC, NULL); __this->____fileName_18 = L_3; Il2CppCodeGenWriteBarrier((void**)(&__this->____fileName_18), (void*)L_3); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_4 = ___info0; NullCheck(L_4); String_t* L_5; L_5 = SerializationInfo_GetString_mF0753AFAA13AABF8A30B8F0890AEC52BFBBC73E9(L_4, _stringLiteral99B5662DE40E7115E2CDF8451429C50BAFBBCE93, NULL); __this->____fusionLog_19 = L_5; Il2CppCodeGenWriteBarrier((void**)(&__this->____fusionLog_19), (void*)L_5); return; } } // System.Void System.BadImageFormatException::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BadImageFormatException_GetObjectData_mD8B1FAD74B9082E5B1FF3BD9AC8BD110FB042B1D (BadImageFormatException_t7EBAEDCD74D3274D00106EC0051755C18D20E552* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___info0, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6A23ADF57EB2DED6CFCDFC91DCA029274A860ECC); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral99B5662DE40E7115E2CDF8451429C50BAFBBCE93); s_Il2CppMethodInitialized = true; } { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___info0; StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___context1; Exception_GetObjectData_mD69929DB0BB2512240908B9EEE21778CB7B72DA9(__this, L_0, L_1, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_2 = ___info0; String_t* L_3 = __this->____fileName_18; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_4 = { reinterpret_cast (String_t_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_5; L_5 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_4, NULL); NullCheck(L_2); SerializationInfo_AddValue_m1AD59BBF8C3129142943D3F298ADF09FF123C199(L_2, _stringLiteral6A23ADF57EB2DED6CFCDFC91DCA029274A860ECC, L_3, L_5, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_6 = ___info0; String_t* L_7 = __this->____fusionLog_19; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_8 = { reinterpret_cast (String_t_0_0_0_var) }; Type_t* L_9; L_9 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_8, NULL); NullCheck(L_6); SerializationInfo_AddValue_m1AD59BBF8C3129142943D3F298ADF09FF123C199(L_6, _stringLiteral99B5662DE40E7115E2CDF8451429C50BAFBBCE93, L_7, L_9, NULL); return; } } // System.String System.BadImageFormatException::get_Message() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* BadImageFormatException_get_Message_mC480A02B76D6337071574D895ADE7DAA5167ABD1 (BadImageFormatException_t7EBAEDCD74D3274D00106EC0051755C18D20E552* __this, const RuntimeMethod* method) { { BadImageFormatException_SetMessageField_m2CF6F9D64962C849553996493715CBE21F6D970A(__this, NULL); String_t* L_0 = ((Exception_t*)__this)->____message_2; return L_0; } } // System.Void System.BadImageFormatException::SetMessageField() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BadImageFormatException_SetMessageField_m2CF6F9D64962C849553996493715CBE21F6D970A (BadImageFormatException_t7EBAEDCD74D3274D00106EC0051755C18D20E552* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC34A0BD578D5D87BDB3C56E68B1AFBCEB0921C80); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ((Exception_t*)__this)->____message_2; if (L_0) { goto IL_0040; } } { String_t* L_1 = __this->____fileName_18; if (L_1) { goto IL_0029; } } { int32_t L_2; L_2 = Exception_get_HResult_mBA9CD3C01C2F0C68DFA6ED7824F7371D7E1A4163_inline(__this, NULL); if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)-2146233088))))) { goto IL_0029; } } { ((Exception_t*)__this)->____message_2 = _stringLiteralC34A0BD578D5D87BDB3C56E68B1AFBCEB0921C80; Il2CppCodeGenWriteBarrier((void**)(&((Exception_t*)__this)->____message_2), (void*)_stringLiteralC34A0BD578D5D87BDB3C56E68B1AFBCEB0921C80); return; } IL_0029: { String_t* L_3 = __this->____fileName_18; int32_t L_4; L_4 = Exception_get_HResult_mBA9CD3C01C2F0C68DFA6ED7824F7371D7E1A4163_inline(__this, NULL); String_t* L_5; L_5 = FileLoadException_FormatFileLoadExceptionMessage_m592E09AF619AB6FC5E33B34B2107CB3FBDD11E86(L_3, L_4, NULL); ((Exception_t*)__this)->____message_2 = L_5; Il2CppCodeGenWriteBarrier((void**)(&((Exception_t*)__this)->____message_2), (void*)L_5); } IL_0040: { return; } } // System.String System.BadImageFormatException::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* BadImageFormatException_ToString_m9C159102ED35E491CD525DD413BA8538E322177B (BadImageFormatException_t7EBAEDCD74D3274D00106EC0051755C18D20E552* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral032CE4B2D2D7086FA0A51B767B66E2925BB4FC5D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1168E92C164109D6220480DEDA987085B2A21155); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5D997905392A8A6AE6612065B56018B1C13345AF); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { Type_t* L_0; L_0 = Exception_GetType_mAD1230385BDC06119C339187CC37F22B6A79CF09(__this, NULL); NullCheck(L_0); String_t* L_1; L_1 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_0); String_t* L_2; L_2 = VirtualFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Exception::get_Message() */, __this); String_t* L_3; L_3 = String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0(L_1, _stringLiteral1168E92C164109D6220480DEDA987085B2A21155, L_2, NULL); V_0 = L_3; String_t* L_4 = __this->____fileName_18; if (!L_4) { goto IL_004d; } } { String_t* L_5 = __this->____fileName_18; NullCheck(L_5); int32_t L_6; L_6 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_5, NULL); if (!L_6) { goto IL_004d; } } { String_t* L_7 = V_0; String_t* L_8; L_8 = Environment_get_NewLine_m86172FA1FF2F93F740EFB5760938B35750DD35C0(NULL); String_t* L_9 = __this->____fileName_18; String_t* L_10; L_10 = SR_Format_mB99C6F1BE061EA1427A45176E0CAFB2A2C76D03F(_stringLiteral5D997905392A8A6AE6612065B56018B1C13345AF, L_9, NULL); String_t* L_11; L_11 = String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0(L_7, L_8, L_10, NULL); V_0 = L_11; } IL_004d: { Exception_t* L_12; L_12 = Exception_get_InnerException_m0C1BDB339C786BA4DA7D2C1AD214571CFBBB1410_inline(__this, NULL); if (!L_12) { goto IL_006c; } } { String_t* L_13 = V_0; Exception_t* L_14; L_14 = Exception_get_InnerException_m0C1BDB339C786BA4DA7D2C1AD214571CFBBB1410_inline(__this, NULL); NullCheck(L_14); String_t* L_15; L_15 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_14); String_t* L_16; L_16 = String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0(L_13, _stringLiteral032CE4B2D2D7086FA0A51B767B66E2925BB4FC5D, L_15, NULL); V_0 = L_16; } IL_006c: { String_t* L_17; L_17 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Exception::get_StackTrace() */, __this); if (!L_17) { goto IL_0086; } } { String_t* L_18 = V_0; String_t* L_19; L_19 = Environment_get_NewLine_m86172FA1FF2F93F740EFB5760938B35750DD35C0(NULL); String_t* L_20; L_20 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Exception::get_StackTrace() */, __this); String_t* L_21; L_21 = String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0(L_18, L_19, L_20, NULL); V_0 = L_21; } IL_0086: { String_t* L_22 = __this->____fusionLog_19; if (!L_22) { goto IL_00bc; } } { String_t* L_23 = V_0; if (L_23) { goto IL_0097; } } { V_0 = _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745; } IL_0097: { String_t* L_24 = V_0; String_t* L_25; L_25 = Environment_get_NewLine_m86172FA1FF2F93F740EFB5760938B35750DD35C0(NULL); String_t* L_26; L_26 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(L_24, L_25, NULL); V_0 = L_26; String_t* L_27 = V_0; String_t* L_28; L_28 = Environment_get_NewLine_m86172FA1FF2F93F740EFB5760938B35750DD35C0(NULL); String_t* L_29; L_29 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(L_27, L_28, NULL); V_0 = L_29; String_t* L_30 = V_0; String_t* L_31 = __this->____fusionLog_19; String_t* L_32; L_32 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(L_30, L_31, NULL); V_0 = L_32; } IL_00bc: { String_t* L_33 = V_0; return L_33; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Byte[] System.BitConverter::GetBytes(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* BitConverter_GetBytes_m08CA71887E2D9E192FF05695EF245125CD722341 (bool ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t G_B2_0 = 0; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* G_B2_1 = NULL; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* G_B2_2 = NULL; int32_t G_B1_0 = 0; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* G_B1_1 = NULL; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* G_B1_2 = NULL; int32_t G_B3_0 = 0; int32_t G_B3_1 = 0; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* G_B3_2 = NULL; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* G_B3_3 = NULL; { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)1); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = L_0; bool L_2 = ___value0; G_B1_0 = 0; G_B1_1 = L_1; G_B1_2 = L_1; if (L_2) { G_B2_0 = 0; G_B2_1 = L_1; G_B2_2 = L_1; goto IL_000e; } } { G_B3_0 = 0; G_B3_1 = G_B1_0; G_B3_2 = G_B1_1; G_B3_3 = G_B1_2; goto IL_000f; } IL_000e: { G_B3_0 = 1; G_B3_1 = G_B2_0; G_B3_2 = G_B2_1; G_B3_3 = G_B2_2; } IL_000f: { NullCheck(G_B3_2); (G_B3_2)->SetAt(static_cast(G_B3_1), (uint8_t)G_B3_0); return G_B3_3; } } // System.Byte[] System.BitConverter::GetBytes(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* BitConverter_GetBytes_mE12F338E23C3B7D19FA40FE57E8E52F96C81F19B (Il2CppChar ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)2); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = L_0; NullCheck(L_1); Il2CppChar* L_2; L_2 = il2cpp_unsafe_as_ref(((L_1)->GetAddressAt(static_cast(0)))); Il2CppChar L_3 = ___value0; *((int16_t*)L_2) = (int16_t)L_3; return L_1; } } // System.Byte[] System.BitConverter::GetBytes(System.Int16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* BitConverter_GetBytes_m28C9BCF1B7814E4E5283164D6E6A35FF789E4249 (int16_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)2); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = L_0; NullCheck(L_1); int16_t* L_2; L_2 = il2cpp_unsafe_as_ref(((L_1)->GetAddressAt(static_cast(0)))); int16_t L_3 = ___value0; *((int16_t*)L_2) = (int16_t)L_3; return L_1; } } // System.Byte[] System.BitConverter::GetBytes(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* BitConverter_GetBytes_m343FFC3DD8CF8D0139D0CAEB8ABB0A4D6DAA98F4 (int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)4); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = L_0; NullCheck(L_1); int32_t* L_2; L_2 = il2cpp_unsafe_as_ref(((L_1)->GetAddressAt(static_cast(0)))); int32_t L_3 = ___value0; *((int32_t*)L_2) = (int32_t)L_3; return L_1; } } // System.Byte[] System.BitConverter::GetBytes(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* BitConverter_GetBytes_m2C128EDCD9B369F1429E1A0B7F687C98526115BF (int64_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)8); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = L_0; NullCheck(L_1); int64_t* L_2; L_2 = il2cpp_unsafe_as_ref(((L_1)->GetAddressAt(static_cast(0)))); int64_t L_3 = ___value0; *((int64_t*)L_2) = (int64_t)L_3; return L_1; } } // System.Byte[] System.BitConverter::GetBytes(System.UInt16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* BitConverter_GetBytes_m1B3C2C0E976C781ACD76AFA80DDBCA844FC73D50 (uint16_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)2); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = L_0; NullCheck(L_1); uint16_t* L_2; L_2 = il2cpp_unsafe_as_ref(((L_1)->GetAddressAt(static_cast(0)))); uint16_t L_3 = ___value0; *((int16_t*)L_2) = (int16_t)L_3; return L_1; } } // System.Byte[] System.BitConverter::GetBytes(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* BitConverter_GetBytes_mFE194CC85029F5AE10446F919B8A53AF03AB3436 (uint32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)4); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = L_0; NullCheck(L_1); uint32_t* L_2; L_2 = il2cpp_unsafe_as_ref(((L_1)->GetAddressAt(static_cast(0)))); uint32_t L_3 = ___value0; *((int32_t*)L_2) = (int32_t)L_3; return L_1; } } // System.Boolean System.BitConverter::TryWriteBytes(System.Span`1,System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BitConverter_TryWriteBytes_m66D187721AE683183FED12536FC6648397338A2D (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 ___destination0, uint32_t ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MemoryMarshal_GetReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m59D122F4A8516149EE7D183E97926157DF41EA1B_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1_get_Length_m8E944E4954E037877A25B9FF6B901F1F901D4769_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { int32_t L_0; L_0 = Span_1_get_Length_m8E944E4954E037877A25B9FF6B901F1F901D4769_inline((&___destination0), Span_1_get_Length_m8E944E4954E037877A25B9FF6B901F1F901D4769_RuntimeMethod_var); if ((((int32_t)L_0) >= ((int32_t)4))) { goto IL_000c; } } { return (bool)0; } IL_000c: { Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_1 = ___destination0; uint8_t* L_2; L_2 = MemoryMarshal_GetReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m59D122F4A8516149EE7D183E97926157DF41EA1B(L_1, MemoryMarshal_GetReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m59D122F4A8516149EE7D183E97926157DF41EA1B_RuntimeMethod_var); uint32_t L_3 = ___value1; il2cpp_unsafe_write_unaligned(L_2, L_3); return (bool)1; } } // System.Byte[] System.BitConverter::GetBytes(System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* BitConverter_GetBytes_m09C53C38A03A747E74A953608BA2C8EBD17B9B7B (uint64_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)8); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = L_0; NullCheck(L_1); uint64_t* L_2; L_2 = il2cpp_unsafe_as_ref(((L_1)->GetAddressAt(static_cast(0)))); uint64_t L_3 = ___value0; *((int64_t*)L_2) = (int64_t)L_3; return L_1; } } // System.Byte[] System.BitConverter::GetBytes(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* BitConverter_GetBytes_mF81EC757AE0524E72956BA027AE9F862A0156997 (float ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)4); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = L_0; NullCheck(L_1); float* L_2; L_2 = il2cpp_unsafe_as_ref(((L_1)->GetAddressAt(static_cast(0)))); float L_3 = ___value0; *((float*)L_2) = (float)L_3; return L_1; } } // System.Byte[] System.BitConverter::GetBytes(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* BitConverter_GetBytes_mFE50C0D81EE08BAF3D2E6E4D16B45E967C8A2006 (double ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)8); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = L_0; NullCheck(L_1); double* L_2; L_2 = il2cpp_unsafe_as_ref(((L_1)->GetAddressAt(static_cast(0)))); double L_3 = ___value0; *((double*)L_2) = (double)L_3; return L_1; } } // System.Int16 System.BitConverter::ToInt16(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t BitConverter_ToInt16_mC4F4FF7F02DC025F64047372BD5B25540F3EFC62 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___value0, int32_t ___startIndex1, const RuntimeMethod* method) { { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___value0; if (L_0) { goto IL_000a; } } { ThrowHelper_ThrowArgumentNullException_m37384675C99E588A5288DECAE9BD7AD7849B22FF(((int32_t)15), NULL); } IL_000a: { int32_t L_1 = ___startIndex1; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = ___value0; NullCheck(L_2); if ((!(((uint32_t)L_1) >= ((uint32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))))) { goto IL_0019; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m94B5049F1DBC694448E5A84D3BA96CBCC0D385C4(((int32_t)14), ((int32_t)22), NULL); } IL_0019: { int32_t L_3 = ___startIndex1; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = ___value0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_4)->max_length)), 2))))) { goto IL_0029; } } { ThrowHelper_ThrowArgumentException_m189859F565AD2842BEFC9BE2F39282B7F8112F38(5, ((int32_t)15), NULL); } IL_0029: { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5 = ___value0; int32_t L_6 = ___startIndex1; NullCheck(L_5); int16_t L_7; L_7 = il2cpp_unsafe_read_unaligned(((L_5)->GetAddressAt(static_cast(L_6)))); return L_7; } } // System.Int32 System.BitConverter::ToInt32(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BitConverter_ToInt32_m745DF4DCC23461AB3035A92BC0C4D59AE12E6880 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___value0, int32_t ___startIndex1, const RuntimeMethod* method) { { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___value0; if (L_0) { goto IL_000a; } } { ThrowHelper_ThrowArgumentNullException_m37384675C99E588A5288DECAE9BD7AD7849B22FF(((int32_t)15), NULL); } IL_000a: { int32_t L_1 = ___startIndex1; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = ___value0; NullCheck(L_2); if ((!(((uint32_t)L_1) >= ((uint32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))))) { goto IL_0019; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m94B5049F1DBC694448E5A84D3BA96CBCC0D385C4(((int32_t)14), ((int32_t)22), NULL); } IL_0019: { int32_t L_3 = ___startIndex1; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = ___value0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_4)->max_length)), 4))))) { goto IL_0029; } } { ThrowHelper_ThrowArgumentException_m189859F565AD2842BEFC9BE2F39282B7F8112F38(5, ((int32_t)15), NULL); } IL_0029: { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5 = ___value0; int32_t L_6 = ___startIndex1; NullCheck(L_5); int32_t L_7; L_7 = il2cpp_unsafe_read_unaligned(((L_5)->GetAddressAt(static_cast(L_6)))); return L_7; } } // System.Int64 System.BitConverter::ToInt64(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BitConverter_ToInt64_m1CDA079BFD3222894DB58B69449E0110ED37AB1C (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___value0, int32_t ___startIndex1, const RuntimeMethod* method) { { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___value0; if (L_0) { goto IL_000a; } } { ThrowHelper_ThrowArgumentNullException_m37384675C99E588A5288DECAE9BD7AD7849B22FF(((int32_t)15), NULL); } IL_000a: { int32_t L_1 = ___startIndex1; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = ___value0; NullCheck(L_2); if ((!(((uint32_t)L_1) >= ((uint32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))))) { goto IL_0019; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m94B5049F1DBC694448E5A84D3BA96CBCC0D385C4(((int32_t)14), ((int32_t)22), NULL); } IL_0019: { int32_t L_3 = ___startIndex1; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = ___value0; NullCheck(L_4); if ((((int32_t)L_3) <= ((int32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_4)->max_length)), 8))))) { goto IL_0029; } } { ThrowHelper_ThrowArgumentException_m189859F565AD2842BEFC9BE2F39282B7F8112F38(5, ((int32_t)15), NULL); } IL_0029: { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5 = ___value0; int32_t L_6 = ___startIndex1; NullCheck(L_5); int64_t L_7; L_7 = il2cpp_unsafe_read_unaligned(((L_5)->GetAddressAt(static_cast(L_6)))); return L_7; } } // System.UInt16 System.BitConverter::ToUInt16(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t BitConverter_ToUInt16_m133E286BF0B721DD973FD966F61CB171F70F3E32 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___value0, int32_t ___startIndex1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___value0; int32_t L_1 = ___startIndex1; il2cpp_codegen_runtime_class_init_inline(BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var); int16_t L_2; L_2 = BitConverter_ToInt16_mC4F4FF7F02DC025F64047372BD5B25540F3EFC62(L_0, L_1, NULL); return (uint16_t)((int32_t)(uint16_t)L_2); } } // System.UInt32 System.BitConverter::ToUInt32(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t BitConverter_ToUInt32_m7EFCF9D77ACD0F2DA29F69587DDF6130391E6164 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___value0, int32_t ___startIndex1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___value0; int32_t L_1 = ___startIndex1; il2cpp_codegen_runtime_class_init_inline(BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var); int32_t L_2; L_2 = BitConverter_ToInt32_m745DF4DCC23461AB3035A92BC0C4D59AE12E6880(L_0, L_1, NULL); return L_2; } } // System.UInt64 System.BitConverter::ToUInt64(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t BitConverter_ToUInt64_mD74DF4F6535FC635EB8697FC5175A7D99E3C62BF (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___value0, int32_t ___startIndex1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___value0; int32_t L_1 = ___startIndex1; il2cpp_codegen_runtime_class_init_inline(BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var); int64_t L_2; L_2 = BitConverter_ToInt64_m1CDA079BFD3222894DB58B69449E0110ED37AB1C(L_0, L_1, NULL); return L_2; } } // System.String System.BitConverter::ToString(System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* BitConverter_ToString_m0C49607A2AB0AC978180D8E7D4B1A2053CA895BA (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___value0, int32_t ___startIndex1, int32_t ___length2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SpanAction_2_t5AD9492C5DCDA0ABCE4EE25DCCF3EBD82BF591B7_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_Create_TisValueTuple_3_t572F29F9771D9B8B871C0C91213509EE16360375_m98861909E5319A911639DE0909DF306C05FF9FE1_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CToStringU3Eb__38_0_m4B2328B99D3091111D21A7621CA3569E91072AD6_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueTuple_3__ctor_m699C78D670A60A3798B76C427563C939E56A2805_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } SpanAction_2_t5AD9492C5DCDA0ABCE4EE25DCCF3EBD82BF591B7* G_B16_0 = NULL; ValueTuple_3_t572F29F9771D9B8B871C0C91213509EE16360375 G_B16_1; memset((&G_B16_1), 0, sizeof(G_B16_1)); int32_t G_B16_2 = 0; SpanAction_2_t5AD9492C5DCDA0ABCE4EE25DCCF3EBD82BF591B7* G_B15_0 = NULL; ValueTuple_3_t572F29F9771D9B8B871C0C91213509EE16360375 G_B15_1; memset((&G_B15_1), 0, sizeof(G_B15_1)); int32_t G_B15_2 = 0; { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___value0; if (L_0) { goto IL_000a; } } { ThrowHelper_ThrowArgumentNullException_m37384675C99E588A5288DECAE9BD7AD7849B22FF(((int32_t)15), NULL); } IL_000a: { int32_t L_1 = ___startIndex1; if ((((int32_t)L_1) < ((int32_t)0))) { goto IL_0018; } } { int32_t L_2 = ___startIndex1; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = ___value0; NullCheck(L_3); if ((((int32_t)L_2) < ((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length))))) { goto IL_0021; } } { int32_t L_4 = ___startIndex1; if ((((int32_t)L_4) <= ((int32_t)0))) { goto IL_0021; } } IL_0018: { ThrowHelper_ThrowArgumentOutOfRangeException_m94B5049F1DBC694448E5A84D3BA96CBCC0D385C4(((int32_t)14), ((int32_t)22), NULL); } IL_0021: { int32_t L_5 = ___length2; if ((((int32_t)L_5) >= ((int32_t)0))) { goto IL_0035; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_6 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_6); ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE8744A8B8BD390EB66CA0CAE2376C973E6904FFB)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral36A2069F2EBB68A1BE4AF9D9FF3B475C9EE76A26)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&BitConverter_ToString_m0C49607A2AB0AC978180D8E7D4B1A2053CA895BA_RuntimeMethod_var))); } IL_0035: { int32_t L_7 = ___startIndex1; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_8 = ___value0; NullCheck(L_8); int32_t L_9 = ___length2; if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_8)->max_length)), L_9))))) { goto IL_0045; } } { ThrowHelper_ThrowArgumentException_m189859F565AD2842BEFC9BE2F39282B7F8112F38(5, ((int32_t)15), NULL); } IL_0045: { int32_t L_10 = ___length2; if (L_10) { goto IL_004e; } } { String_t* L_11 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; return L_11; } IL_004e: { int32_t L_12 = ___length2; if ((((int32_t)L_12) <= ((int32_t)((int32_t)715827882)))) { goto IL_0075; } } { int32_t L_13 = ((int32_t)715827882); RuntimeObject* L_14 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)), &L_13); String_t* L_15; L_15 = SR_Format_mB99C6F1BE061EA1427A45176E0CAFB2A2C76D03F(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBF27849B63507F7B8C2FC6FE9C5EFB62BF8543C8)), L_14, NULL); ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_16 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_16); ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_16, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE8744A8B8BD390EB66CA0CAE2376C973E6904FFB)), L_15, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&BitConverter_ToString_m0C49607A2AB0AC978180D8E7D4B1A2053CA895BA_RuntimeMethod_var))); } IL_0075: { int32_t L_17 = ___length2; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_18 = ___value0; int32_t L_19 = ___startIndex1; int32_t L_20 = ___length2; ValueTuple_3_t572F29F9771D9B8B871C0C91213509EE16360375 L_21; memset((&L_21), 0, sizeof(L_21)); ValueTuple_3__ctor_m699C78D670A60A3798B76C427563C939E56A2805((&L_21), L_18, L_19, L_20, /*hidden argument*/ValueTuple_3__ctor_m699C78D670A60A3798B76C427563C939E56A2805_RuntimeMethod_var); il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0_il2cpp_TypeInfo_var); SpanAction_2_t5AD9492C5DCDA0ABCE4EE25DCCF3EBD82BF591B7* L_22 = ((U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0_il2cpp_TypeInfo_var))->___U3CU3E9__38_0_1; SpanAction_2_t5AD9492C5DCDA0ABCE4EE25DCCF3EBD82BF591B7* L_23 = L_22; G_B15_0 = L_23; G_B15_1 = L_21; G_B15_2 = ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_multiply(L_17, 3)), 1)); if (L_23) { G_B16_0 = L_23; G_B16_1 = L_21; G_B16_2 = ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_multiply(L_17, 3)), 1)); goto IL_00a1; } } { il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0_il2cpp_TypeInfo_var); U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0* L_24 = ((U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0_il2cpp_TypeInfo_var))->___U3CU3E9_0; SpanAction_2_t5AD9492C5DCDA0ABCE4EE25DCCF3EBD82BF591B7* L_25 = (SpanAction_2_t5AD9492C5DCDA0ABCE4EE25DCCF3EBD82BF591B7*)il2cpp_codegen_object_new(SpanAction_2_t5AD9492C5DCDA0ABCE4EE25DCCF3EBD82BF591B7_il2cpp_TypeInfo_var); NullCheck(L_25); SpanAction_2__ctor_m7DE67E22936D164FE13C5FCFFE399831076A0226(L_25, L_24, (intptr_t)((void*)U3CU3Ec_U3CToStringU3Eb__38_0_m4B2328B99D3091111D21A7621CA3569E91072AD6_RuntimeMethod_var), NULL); SpanAction_2_t5AD9492C5DCDA0ABCE4EE25DCCF3EBD82BF591B7* L_26 = L_25; ((U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0_il2cpp_TypeInfo_var))->___U3CU3E9__38_0_1 = L_26; Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0_il2cpp_TypeInfo_var))->___U3CU3E9__38_0_1), (void*)L_26); G_B16_0 = L_26; G_B16_1 = G_B15_1; G_B16_2 = G_B15_2; } IL_00a1: { String_t* L_27; L_27 = String_Create_TisValueTuple_3_t572F29F9771D9B8B871C0C91213509EE16360375_m98861909E5319A911639DE0909DF306C05FF9FE1(G_B16_2, G_B16_1, G_B16_0, String_Create_TisValueTuple_3_t572F29F9771D9B8B871C0C91213509EE16360375_m98861909E5319A911639DE0909DF306C05FF9FE1_RuntimeMethod_var); return L_27; } } // System.String System.BitConverter::ToString(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* BitConverter_ToString_mAECE8A858AA77E4CA5425A67AF6370C54A9C598E (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___value0; if (L_0) { goto IL_000a; } } { ThrowHelper_ThrowArgumentNullException_m37384675C99E588A5288DECAE9BD7AD7849B22FF(((int32_t)15), NULL); } IL_000a: { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___value0; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = ___value0; NullCheck(L_2); il2cpp_codegen_runtime_class_init_inline(BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var); String_t* L_3; L_3 = BitConverter_ToString_m0C49607A2AB0AC978180D8E7D4B1A2053CA895BA(L_1, 0, ((int32_t)(((RuntimeArray*)L_2)->max_length)), NULL); return L_3; } } // System.Int64 System.BitConverter::DoubleToInt64Bits(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BitConverter_DoubleToInt64Bits_m45D911F884F3B09BF39C02044EDC9BDA8084C80B (double ___value0, const RuntimeMethod* method) { { int64_t L_0 = *((int64_t*)((uintptr_t)(&___value0))); return L_0; } } // System.Int32 System.BitConverter::SingleToInt32Bits(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BitConverter_SingleToInt32Bits_mA1902D40966CA4C89A8974B10E5680A06E88566B (float ___value0, const RuntimeMethod* method) { { int32_t L_0 = *((int32_t*)((uintptr_t)(&___value0))); return L_0; } } // System.Void System.BitConverter::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BitConverter__cctor_mBC74256DAA5DEEFA154AEA94923499558EA9E147 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } uint16_t V_0 = 0; uint8_t* V_1 = NULL; { V_0 = (uint16_t)((int32_t)4660); V_1 = (uint8_t*)((uintptr_t)(&V_0)); uint8_t* L_0 = V_1; int32_t L_1 = *((uint8_t*)L_0); ((BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_StaticFields*)il2cpp_codegen_static_fields_for(BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var))->___IsLittleEndian_0 = (bool)((((int32_t)L_1) == ((int32_t)((int32_t)52)))? 1 : 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 // System.Void System.BitConverter/<>c::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_m850EF404D052320B60BC9F0A0619141AC0A816F9 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0* L_0 = (U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0*)il2cpp_codegen_object_new(U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0_il2cpp_TypeInfo_var); NullCheck(L_0); U3CU3Ec__ctor_m4E600C7D4528546FBD5BCE19298A337E85EA5B0C(L_0, NULL); ((U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0_il2cpp_TypeInfo_var))->___U3CU3E9_0 = L_0; Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0_il2cpp_TypeInfo_var))->___U3CU3E9_0), (void*)L_0); return; } } // System.Void System.BitConverter/<>c::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m4E600C7D4528546FBD5BCE19298A337E85EA5B0C (U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0* __this, const RuntimeMethod* method) { { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); return; } } // System.Void System.BitConverter/<>c::b__38_0(System.Span`1,System.ValueTuple`3) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec_U3CToStringU3Eb__38_0_m4B2328B99D3091111D21A7621CA3569E91072AD6 (U3CU3Ec_t4ABD75CB4C6B90D57F48F69C2606A5EFFB7F80C0* __this, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___dst0, ValueTuple_3_t572F29F9771D9B8B871C0C91213509EE16360375 ___state1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1__ctor_m7B5C2765879EA5E8D1617D834CC465A39540A913_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_Length_m54864A0BB817050A9110E85BB5FB31EF63699982_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral59F5BD34B6C013DEACC784F69C67E95150033A84); s_Il2CppMethodInitialized = true; } ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D V_0; memset((&V_0), 0, sizeof(V_0)); int32_t V_1 = 0; int32_t V_2 = 0; uint8_t V_3 = 0x0; { ValueTuple_3_t572F29F9771D9B8B871C0C91213509EE16360375 L_0 = ___state1; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = L_0.___Item1_0; ValueTuple_3_t572F29F9771D9B8B871C0C91213509EE16360375 L_2 = ___state1; int32_t L_3 = L_2.___Item2_1; ValueTuple_3_t572F29F9771D9B8B871C0C91213509EE16360375 L_4 = ___state1; int32_t L_5 = L_4.___Item3_2; ReadOnlySpan_1__ctor_m7B5C2765879EA5E8D1617D834CC465A39540A913_inline((&V_0), L_1, L_3, L_5, ReadOnlySpan_1__ctor_m7B5C2765879EA5E8D1617D834CC465A39540A913_RuntimeMethod_var); V_1 = 0; V_2 = 0; int32_t L_6 = V_1; int32_t L_7 = L_6; V_1 = ((int32_t)il2cpp_codegen_add(L_7, 1)); uint8_t* L_8; L_8 = il2cpp_span_get_item((uint8_t*)((Il2CppByReference*)&(((&V_0))->____pointer_0))->value, (L_7), ((&V_0))->____length_1); int32_t L_9 = *((uint8_t*)L_8); V_3 = (uint8_t)L_9; int32_t L_10 = V_2; int32_t L_11 = L_10; V_2 = ((int32_t)il2cpp_codegen_add(L_11, 1)); Il2CppChar* L_12; L_12 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___dst0))->____pointer_0))->value, (L_11), ((&___dst0))->____length_1); uint8_t L_13 = V_3; NullCheck(_stringLiteral59F5BD34B6C013DEACC784F69C67E95150033A84); Il2CppChar L_14; L_14 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(_stringLiteral59F5BD34B6C013DEACC784F69C67E95150033A84, ((int32_t)((int32_t)L_13>>4)), NULL); *((int16_t*)L_12) = (int16_t)L_14; int32_t L_15 = V_2; int32_t L_16 = L_15; V_2 = ((int32_t)il2cpp_codegen_add(L_16, 1)); Il2CppChar* L_17; L_17 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___dst0))->____pointer_0))->value, (L_16), ((&___dst0))->____length_1); uint8_t L_18 = V_3; NullCheck(_stringLiteral59F5BD34B6C013DEACC784F69C67E95150033A84); Il2CppChar L_19; L_19 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(_stringLiteral59F5BD34B6C013DEACC784F69C67E95150033A84, ((int32_t)((int32_t)L_18&((int32_t)15))), NULL); *((int16_t*)L_17) = (int16_t)L_19; goto IL_00b4; } IL_0062: { int32_t L_20 = V_1; int32_t L_21 = L_20; V_1 = ((int32_t)il2cpp_codegen_add(L_21, 1)); uint8_t* L_22; L_22 = il2cpp_span_get_item((uint8_t*)((Il2CppByReference*)&(((&V_0))->____pointer_0))->value, (L_21), ((&V_0))->____length_1); int32_t L_23 = *((uint8_t*)L_22); V_3 = (uint8_t)L_23; int32_t L_24 = V_2; int32_t L_25 = L_24; V_2 = ((int32_t)il2cpp_codegen_add(L_25, 1)); Il2CppChar* L_26; L_26 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___dst0))->____pointer_0))->value, (L_25), ((&___dst0))->____length_1); *((int16_t*)L_26) = (int16_t)((int32_t)45); int32_t L_27 = V_2; int32_t L_28 = L_27; V_2 = ((int32_t)il2cpp_codegen_add(L_28, 1)); Il2CppChar* L_29; L_29 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___dst0))->____pointer_0))->value, (L_28), ((&___dst0))->____length_1); uint8_t L_30 = V_3; NullCheck(_stringLiteral59F5BD34B6C013DEACC784F69C67E95150033A84); Il2CppChar L_31; L_31 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(_stringLiteral59F5BD34B6C013DEACC784F69C67E95150033A84, ((int32_t)((int32_t)L_30>>4)), NULL); *((int16_t*)L_29) = (int16_t)L_31; int32_t L_32 = V_2; int32_t L_33 = L_32; V_2 = ((int32_t)il2cpp_codegen_add(L_33, 1)); Il2CppChar* L_34; L_34 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___dst0))->____pointer_0))->value, (L_33), ((&___dst0))->____length_1); uint8_t L_35 = V_3; NullCheck(_stringLiteral59F5BD34B6C013DEACC784F69C67E95150033A84); Il2CppChar L_36; L_36 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(_stringLiteral59F5BD34B6C013DEACC784F69C67E95150033A84, ((int32_t)((int32_t)L_35&((int32_t)15))), NULL); *((int16_t*)L_34) = (int16_t)L_36; } IL_00b4: { int32_t L_37 = V_1; int32_t L_38; L_38 = ReadOnlySpan_1_get_Length_m54864A0BB817050A9110E85BB5FB31EF63699982_inline((&V_0), ReadOnlySpan_1_get_Length_m54864A0BB817050A9110E85BB5FB31EF63699982_RuntimeMethod_var); if ((((int32_t)L_37) < ((int32_t)L_38))) { goto IL_0062; } } { 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 // System.Int32 System.Boolean::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_GetHashCode_mEDB6904770C962BAF4510E5D24F08083C33900E3 (bool* __this, const RuntimeMethod* method) { { int32_t L_0 = *((uint8_t*)__this); if (L_0) { goto IL_0006; } } { return 0; } IL_0006: { return 1; } } IL2CPP_EXTERN_C int32_t Boolean_GetHashCode_mEDB6904770C962BAF4510E5D24F08083C33900E3_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { bool* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = Boolean_GetHashCode_mEDB6904770C962BAF4510E5D24F08083C33900E3(_thisAdjusted, method); return _returnValue; } // System.String System.Boolean::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Boolean_ToString_m6646C8026B1DF381A1EE8CD13549175E9703CC63 (bool* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDBB6CDA4D5A47DA899D30151C0C04DB0958C5C1F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE9BC8412F7672BEDC75EB21FA08240175E04E871); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); if (L_0) { goto IL_000a; } } { return _stringLiteralDBB6CDA4D5A47DA899D30151C0C04DB0958C5C1F; } IL_000a: { return _stringLiteralE9BC8412F7672BEDC75EB21FA08240175E04E871; } } IL2CPP_EXTERN_C String_t* Boolean_ToString_m6646C8026B1DF381A1EE8CD13549175E9703CC63_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { bool* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = Boolean_ToString_m6646C8026B1DF381A1EE8CD13549175E9703CC63(_thisAdjusted, method); return _returnValue; } // System.String System.Boolean::ToString(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Boolean_ToString_m8A8E8910575F649AA72E01649BACE16F0F362FF4 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { { String_t* L_0; L_0 = Boolean_ToString_m6646C8026B1DF381A1EE8CD13549175E9703CC63(__this, NULL); return L_0; } } IL2CPP_EXTERN_C String_t* Boolean_ToString_m8A8E8910575F649AA72E01649BACE16F0F362FF4_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { bool* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = Boolean_ToString_m8A8E8910575F649AA72E01649BACE16F0F362FF4(_thisAdjusted, ___provider0, method); return _returnValue; } // System.Boolean System.Boolean::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_Equals_m09E29FD8CDADF609FD8CF4145BFD4843174569A1 (bool* __this, RuntimeObject* ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___obj0; if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_0, Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var))) { goto IL_000a; } } { return (bool)0; } IL_000a: { int32_t L_1 = *((uint8_t*)__this); RuntimeObject* L_2 = ___obj0; return (bool)((((int32_t)L_1) == ((int32_t)((*(bool*)((bool*)(bool*)UnBox(L_2, Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var))))))? 1 : 0); } } IL2CPP_EXTERN_C bool Boolean_Equals_m09E29FD8CDADF609FD8CF4145BFD4843174569A1_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___obj0, const RuntimeMethod* method) { bool* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = Boolean_Equals_m09E29FD8CDADF609FD8CF4145BFD4843174569A1(_thisAdjusted, ___obj0, method); return _returnValue; } // System.Boolean System.Boolean::Equals(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_Equals_mC020D5EB2F64274CD623E8449E8777A70BEC6CC9 (bool* __this, bool ___obj0, const RuntimeMethod* method) { { int32_t L_0 = *((uint8_t*)__this); bool L_1 = ___obj0; return (bool)((((int32_t)L_0) == ((int32_t)L_1))? 1 : 0); } } IL2CPP_EXTERN_C bool Boolean_Equals_mC020D5EB2F64274CD623E8449E8777A70BEC6CC9_AdjustorThunk (RuntimeObject* __this, bool ___obj0, const RuntimeMethod* method) { bool* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = Boolean_Equals_mC020D5EB2F64274CD623E8449E8777A70BEC6CC9(_thisAdjusted, ___obj0, method); return _returnValue; } // System.Int32 System.Boolean::CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_CompareTo_mB21CF195A8AB25CA8C228FECCD17F3C4C37BFBBC (bool* __this, RuntimeObject* ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___obj0; if (L_0) { goto IL_0005; } } { return 1; } IL_0005: { RuntimeObject* L_1 = ___obj0; if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_1, Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var))) { goto IL_0018; } } { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_2 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_2); ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF31022DF0C52AA301767F7877FB21D3C42BE84CE)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Boolean_CompareTo_mB21CF195A8AB25CA8C228FECCD17F3C4C37BFBBC_RuntimeMethod_var))); } IL_0018: { int32_t L_3 = *((uint8_t*)__this); RuntimeObject* L_4 = ___obj0; if ((!(((uint32_t)L_3) == ((uint32_t)((*(bool*)((bool*)(bool*)UnBox(L_4, Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var)))))))) { goto IL_0024; } } { return 0; } IL_0024: { int32_t L_5 = *((uint8_t*)__this); if (L_5) { goto IL_002a; } } { return (-1); } IL_002a: { return 1; } } IL2CPP_EXTERN_C int32_t Boolean_CompareTo_mB21CF195A8AB25CA8C228FECCD17F3C4C37BFBBC_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___obj0, const RuntimeMethod* method) { bool* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = Boolean_CompareTo_mB21CF195A8AB25CA8C228FECCD17F3C4C37BFBBC(_thisAdjusted, ___obj0, method); return _returnValue; } // System.Int32 System.Boolean::CompareTo(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_CompareTo_mB0D677674E0298E4BDE996739648EE53CA883C52 (bool* __this, bool ___value0, const RuntimeMethod* method) { { int32_t L_0 = *((uint8_t*)__this); bool L_1 = ___value0; if ((!(((uint32_t)L_0) == ((uint32_t)L_1)))) { goto IL_0007; } } { return 0; } IL_0007: { int32_t L_2 = *((uint8_t*)__this); if (L_2) { goto IL_000d; } } { return (-1); } IL_000d: { return 1; } } IL2CPP_EXTERN_C int32_t Boolean_CompareTo_mB0D677674E0298E4BDE996739648EE53CA883C52_AdjustorThunk (RuntimeObject* __this, bool ___value0, const RuntimeMethod* method) { bool* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = Boolean_CompareTo_mB0D677674E0298E4BDE996739648EE53CA883C52(_thisAdjusted, ___value0, method); return _returnValue; } // System.Boolean System.Boolean::Parse(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_Parse_mE3D8860431C87FBE1D7C6EACA665548AFE144F38 (String_t* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value0; 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))); NullCheck(L_1); ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Boolean_Parse_mE3D8860431C87FBE1D7C6EACA665548AFE144F38_RuntimeMethod_var))); } IL_000e: { String_t* L_2 = ___value0; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_3; L_3 = MemoryExtensions_AsSpan_m738C019A02A3B4B8BFEACFFA013409898B81D4FB_inline(L_2, NULL); il2cpp_codegen_runtime_class_init_inline(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var); bool L_4; L_4 = Boolean_Parse_m3976D37905686476C6AF3EA712C927C7D40DB21D(L_3, NULL); return L_4; } } // System.Boolean System.Boolean::Parse(System.ReadOnlySpan`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_Parse_m3976D37905686476C6AF3EA712C927C7D40DB21D (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; { ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_0 = ___value0; il2cpp_codegen_runtime_class_init_inline(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var); bool L_1; L_1 = Boolean_TryParse_mF9EC88EF35F6CD83185B8F0BA99938148299AB92(L_0, (&V_0), NULL); if (L_1) { goto IL_0015; } } { FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_2 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var))); NullCheck(L_2); FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6F96D91590C70C47BBC8C98A53B3B412C36447CE)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Boolean_Parse_m3976D37905686476C6AF3EA712C927C7D40DB21D_RuntimeMethod_var))); } IL_0015: { bool L_3 = V_0; return L_3; } } // System.Boolean System.Boolean::TryParse(System.String,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_TryParse_mACDFEB12D4D8B25F9AAA56678FEFC0724D49776F (String_t* ___value0, bool* ___result1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value0; if (L_0) { goto IL_0008; } } { bool* L_1 = ___result1; *((int8_t*)L_1) = (int8_t)0; return (bool)0; } IL_0008: { String_t* L_2 = ___value0; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_3; L_3 = MemoryExtensions_AsSpan_m738C019A02A3B4B8BFEACFFA013409898B81D4FB_inline(L_2, NULL); bool* L_4 = ___result1; il2cpp_codegen_runtime_class_init_inline(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var); bool L_5; L_5 = Boolean_TryParse_mF9EC88EF35F6CD83185B8F0BA99938148299AB92(L_3, L_4, NULL); return L_5; } } // System.Boolean System.Boolean::TryParse(System.ReadOnlySpan`1,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_TryParse_mF9EC88EF35F6CD83185B8F0BA99938148299AB92 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___value0, bool* ___result1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDBB6CDA4D5A47DA899D30151C0C04DB0958C5C1F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE9BC8412F7672BEDC75EB21FA08240175E04E871); s_Il2CppMethodInitialized = true; } ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 V_0; memset((&V_0), 0, sizeof(V_0)); ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 V_1; memset((&V_1), 0, sizeof(V_1)); { ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_0; L_0 = MemoryExtensions_AsSpan_m738C019A02A3B4B8BFEACFFA013409898B81D4FB_inline(_stringLiteralE9BC8412F7672BEDC75EB21FA08240175E04E871, NULL); V_0 = L_0; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_1 = V_0; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_2 = ___value0; bool L_3; L_3 = MemoryExtensions_EqualsOrdinalIgnoreCase_m17DF830414F61377682B8C06BE2AC0DB76558B90_inline(L_1, L_2, NULL); if (!L_3) { goto IL_0019; } } { bool* L_4 = ___result1; *((int8_t*)L_4) = (int8_t)1; return (bool)1; } IL_0019: { ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_5; L_5 = MemoryExtensions_AsSpan_m738C019A02A3B4B8BFEACFFA013409898B81D4FB_inline(_stringLiteralDBB6CDA4D5A47DA899D30151C0C04DB0958C5C1F, NULL); V_1 = L_5; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_6 = V_1; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_7 = ___value0; bool L_8; L_8 = MemoryExtensions_EqualsOrdinalIgnoreCase_m17DF830414F61377682B8C06BE2AC0DB76558B90_inline(L_6, L_7, NULL); if (!L_8) { goto IL_0032; } } { bool* L_9 = ___result1; *((int8_t*)L_9) = (int8_t)0; return (bool)1; } IL_0032: { ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_10 = ___value0; il2cpp_codegen_runtime_class_init_inline(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var); ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_11; L_11 = Boolean_TrimWhiteSpaceAndNull_m7047DFFC82934CC7462E89DC17C80C90286037F5(L_10, NULL); ___value0 = L_11; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_12 = V_0; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_13 = ___value0; bool L_14; L_14 = MemoryExtensions_EqualsOrdinalIgnoreCase_m17DF830414F61377682B8C06BE2AC0DB76558B90_inline(L_12, L_13, NULL); if (!L_14) { goto IL_0048; } } { bool* L_15 = ___result1; *((int8_t*)L_15) = (int8_t)1; return (bool)1; } IL_0048: { ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_16 = V_1; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_17 = ___value0; bool L_18; L_18 = MemoryExtensions_EqualsOrdinalIgnoreCase_m17DF830414F61377682B8C06BE2AC0DB76558B90_inline(L_16, L_17, NULL); if (!L_18) { goto IL_0056; } } { bool* L_19 = ___result1; *((int8_t*)L_19) = (int8_t)0; return (bool)1; } IL_0056: { bool* L_20 = ___result1; *((int8_t*)L_20) = (int8_t)0; return (bool)0; } } // System.ReadOnlySpan`1 System.Boolean::TrimWhiteSpaceAndNull(System.ReadOnlySpan`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 Boolean_TrimWhiteSpaceAndNull_m7047DFFC82934CC7462E89DC17C80C90286037F5 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_Slice_mDEEA4C304B13C8F7A63BC3D60B62FF17BBEE282B_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { V_0 = 0; goto IL_0023; } IL_0004: { int32_t L_0 = V_0; Il2CppChar* L_1; L_1 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___value0))->____pointer_0))->value, (L_0), ((&___value0))->____length_1); int32_t L_2 = *((uint16_t*)L_1); il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_3; L_3 = Char_IsWhiteSpace_m9CE0F6685DB2502ABE106D160F95A287EFC07EF9(L_2, NULL); if (L_3) { goto IL_001f; } } { int32_t L_4 = V_0; Il2CppChar* L_5; L_5 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___value0))->____pointer_0))->value, (L_4), ((&___value0))->____length_1); int32_t L_6 = *((uint16_t*)L_5); if (L_6) { goto IL_002d; } } IL_001f: { int32_t L_7 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_7, 1)); } IL_0023: { int32_t L_8 = V_0; int32_t L_9; L_9 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___value0), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var); if ((((int32_t)L_8) < ((int32_t)L_9))) { goto IL_0004; } } IL_002d: { int32_t L_10; L_10 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___value0), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var); V_1 = ((int32_t)il2cpp_codegen_subtract(L_10, 1)); goto IL_0058; } IL_0039: { int32_t L_11 = V_1; Il2CppChar* L_12; L_12 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___value0))->____pointer_0))->value, (L_11), ((&___value0))->____length_1); int32_t L_13 = *((uint16_t*)L_12); il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_14; L_14 = Char_IsWhiteSpace_m9CE0F6685DB2502ABE106D160F95A287EFC07EF9(L_13, NULL); if (L_14) { goto IL_0054; } } { int32_t L_15 = V_1; Il2CppChar* L_16; L_16 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___value0))->____pointer_0))->value, (L_15), ((&___value0))->____length_1); int32_t L_17 = *((uint16_t*)L_16); if (L_17) { goto IL_005c; } } IL_0054: { int32_t L_18 = V_1; V_1 = ((int32_t)il2cpp_codegen_subtract(L_18, 1)); } IL_0058: { int32_t L_19 = V_1; int32_t L_20 = V_0; if ((((int32_t)L_19) >= ((int32_t)L_20))) { goto IL_0039; } } IL_005c: { int32_t L_21 = V_0; int32_t L_22 = V_1; int32_t L_23 = V_0; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_24; L_24 = ReadOnlySpan_1_Slice_mDEEA4C304B13C8F7A63BC3D60B62FF17BBEE282B_inline((&___value0), L_21, ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(L_22, L_23)), 1)), ReadOnlySpan_1_Slice_mDEEA4C304B13C8F7A63BC3D60B62FF17BBEE282B_RuntimeMethod_var); return L_24; } } // System.TypeCode System.Boolean::GetTypeCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_GetTypeCode_m44CC6F7DBD0AF3C141F05CB0C759E4EF9155F8F5 (bool* __this, const RuntimeMethod* method) { { return (int32_t)(3); } } IL2CPP_EXTERN_C int32_t Boolean_GetTypeCode_m44CC6F7DBD0AF3C141F05CB0C759E4EF9155F8F5_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { bool* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = Boolean_GetTypeCode_m44CC6F7DBD0AF3C141F05CB0C759E4EF9155F8F5(_thisAdjusted, method); return _returnValue; } // System.Boolean System.Boolean::System.IConvertible.ToBoolean(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_System_IConvertible_ToBoolean_m6FA1BEA60768B38DCEDF07BBA1EDBA2BCAF0B6FA (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { { int32_t L_0 = *((uint8_t*)__this); return (bool)L_0; } } IL2CPP_EXTERN_C bool Boolean_System_IConvertible_ToBoolean_m6FA1BEA60768B38DCEDF07BBA1EDBA2BCAF0B6FA_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { bool* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = Boolean_System_IConvertible_ToBoolean_m6FA1BEA60768B38DCEDF07BBA1EDBA2BCAF0B6FA(_thisAdjusted, ___provider0, method); return _returnValue; } // System.Char System.Boolean::System.IConvertible.ToChar(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Boolean_System_IConvertible_ToChar_m11EF01B2E6AF02F4520F83D54DA94E3CE44CD3F1 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { { String_t* L_0; L_0 = SR_Format_mCBC2E13309DB2E03F48F50E5189DD215B5BA7186(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6E9AEBB5505B4A1DBC166711562BE9408419A24D)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6C8C975CC62CF419550282B028FB7E3A1F591D06)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE75F4F4A9D67BC98BA7DB8DBE3C519516572DA4E)), NULL); InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_1 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_1); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_1, L_0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Boolean_System_IConvertible_ToChar_m11EF01B2E6AF02F4520F83D54DA94E3CE44CD3F1_RuntimeMethod_var))); } } IL2CPP_EXTERN_C Il2CppChar Boolean_System_IConvertible_ToChar_m11EF01B2E6AF02F4520F83D54DA94E3CE44CD3F1_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { bool* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); Il2CppChar _returnValue; _returnValue = Boolean_System_IConvertible_ToChar_m11EF01B2E6AF02F4520F83D54DA94E3CE44CD3F1(_thisAdjusted, ___provider0, method); return _returnValue; } // System.SByte System.Boolean::System.IConvertible.ToSByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Boolean_System_IConvertible_ToSByte_mE55D7971DC11850115853FEBECF40FED2DF5F9D5 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int8_t L_1; L_1 = Convert_ToSByte_m793BA82EEDEE734D5A0CD1F01234A350EFDB7829((bool)L_0, NULL); return L_1; } } IL2CPP_EXTERN_C int8_t Boolean_System_IConvertible_ToSByte_mE55D7971DC11850115853FEBECF40FED2DF5F9D5_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { bool* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int8_t _returnValue; _returnValue = Boolean_System_IConvertible_ToSByte_mE55D7971DC11850115853FEBECF40FED2DF5F9D5(_thisAdjusted, ___provider0, method); return _returnValue; } // System.Byte System.Boolean::System.IConvertible.ToByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Boolean_System_IConvertible_ToByte_m9CE5C2837DCD7DAAF77243AD8E326AE2A3EBFE7E (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); uint8_t L_1; L_1 = Convert_ToByte_mF977257DBAD4FAD9FF78232B33DF37121800834D((bool)L_0, NULL); return L_1; } } IL2CPP_EXTERN_C uint8_t Boolean_System_IConvertible_ToByte_m9CE5C2837DCD7DAAF77243AD8E326AE2A3EBFE7E_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { bool* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); uint8_t _returnValue; _returnValue = Boolean_System_IConvertible_ToByte_m9CE5C2837DCD7DAAF77243AD8E326AE2A3EBFE7E(_thisAdjusted, ___provider0, method); return _returnValue; } // System.Int16 System.Boolean::System.IConvertible.ToInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Boolean_System_IConvertible_ToInt16_m043BADB1BAB71F37DFD281BD133E37C399E313A7 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int16_t L_1; L_1 = Convert_ToInt16_m6D47CE7EDD54438C5E8984E46BD5D7BC75B4C018((bool)L_0, NULL); return L_1; } } IL2CPP_EXTERN_C int16_t Boolean_System_IConvertible_ToInt16_m043BADB1BAB71F37DFD281BD133E37C399E313A7_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { bool* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int16_t _returnValue; _returnValue = Boolean_System_IConvertible_ToInt16_m043BADB1BAB71F37DFD281BD133E37C399E313A7(_thisAdjusted, ___provider0, method); return _returnValue; } // System.UInt16 System.Boolean::System.IConvertible.ToUInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Boolean_System_IConvertible_ToUInt16_mC7F31B7A47C65A874C5F2C86CB1A2463175361C0 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); uint16_t L_1; L_1 = Convert_ToUInt16_m61CCF77302806BC465D3E04BAF75636FC67E6EB6((bool)L_0, NULL); return L_1; } } IL2CPP_EXTERN_C uint16_t Boolean_System_IConvertible_ToUInt16_mC7F31B7A47C65A874C5F2C86CB1A2463175361C0_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { bool* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); uint16_t _returnValue; _returnValue = Boolean_System_IConvertible_ToUInt16_mC7F31B7A47C65A874C5F2C86CB1A2463175361C0(_thisAdjusted, ___provider0, method); return _returnValue; } // System.Int32 System.Boolean::System.IConvertible.ToInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_System_IConvertible_ToInt32_mFAEA5CA1BAE330DED08F93A22110EDCBD2A6DA9E (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int32_t L_1; L_1 = Convert_ToInt32_mD16970C5EE189AB763DADA2434A719FDB3FBF542((bool)L_0, NULL); return L_1; } } IL2CPP_EXTERN_C int32_t Boolean_System_IConvertible_ToInt32_mFAEA5CA1BAE330DED08F93A22110EDCBD2A6DA9E_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { bool* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = Boolean_System_IConvertible_ToInt32_mFAEA5CA1BAE330DED08F93A22110EDCBD2A6DA9E(_thisAdjusted, ___provider0, method); return _returnValue; } // System.UInt32 System.Boolean::System.IConvertible.ToUInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Boolean_System_IConvertible_ToUInt32_m5969D8115377AB4D915ACCF79F8FDFC3170B2C2F (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); uint32_t L_1; L_1 = Convert_ToUInt32_mD579DB6F3E99722DCE6756D9330B6435B931CBEF((bool)L_0, NULL); return L_1; } } IL2CPP_EXTERN_C uint32_t Boolean_System_IConvertible_ToUInt32_m5969D8115377AB4D915ACCF79F8FDFC3170B2C2F_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { bool* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); uint32_t _returnValue; _returnValue = Boolean_System_IConvertible_ToUInt32_m5969D8115377AB4D915ACCF79F8FDFC3170B2C2F(_thisAdjusted, ___provider0, method); return _returnValue; } // System.Int64 System.Boolean::System.IConvertible.ToInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Boolean_System_IConvertible_ToInt64_m6F7839559287DB36883AAE26CF34AC334267049D (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int64_t L_1; L_1 = Convert_ToInt64_m088C96D2D0B6081065FF8EF0FBF63C7EBC7DC4AF((bool)L_0, NULL); return L_1; } } IL2CPP_EXTERN_C int64_t Boolean_System_IConvertible_ToInt64_m6F7839559287DB36883AAE26CF34AC334267049D_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { bool* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int64_t _returnValue; _returnValue = Boolean_System_IConvertible_ToInt64_m6F7839559287DB36883AAE26CF34AC334267049D(_thisAdjusted, ___provider0, method); return _returnValue; } // System.UInt64 System.Boolean::System.IConvertible.ToUInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Boolean_System_IConvertible_ToUInt64_mCA5A3F60E9E47C069CD826FC314D4894D6081C26 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); uint64_t L_1; L_1 = Convert_ToUInt64_m9F4FD0FE25118FD7C277B50B09A40FABA35DB514((bool)L_0, NULL); return L_1; } } IL2CPP_EXTERN_C uint64_t Boolean_System_IConvertible_ToUInt64_mCA5A3F60E9E47C069CD826FC314D4894D6081C26_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { bool* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); uint64_t _returnValue; _returnValue = Boolean_System_IConvertible_ToUInt64_mCA5A3F60E9E47C069CD826FC314D4894D6081C26(_thisAdjusted, ___provider0, method); return _returnValue; } // System.Single System.Boolean::System.IConvertible.ToSingle(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Boolean_System_IConvertible_ToSingle_m7EC922C30450D3B13FD86EA6274E83599E45D34D (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); float L_1; L_1 = Convert_ToSingle_m470635428DF749574A86F69989ADB846AA58CA31((bool)L_0, NULL); return L_1; } } IL2CPP_EXTERN_C float Boolean_System_IConvertible_ToSingle_m7EC922C30450D3B13FD86EA6274E83599E45D34D_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { bool* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); float _returnValue; _returnValue = Boolean_System_IConvertible_ToSingle_m7EC922C30450D3B13FD86EA6274E83599E45D34D(_thisAdjusted, ___provider0, method); return _returnValue; } // System.Double System.Boolean::System.IConvertible.ToDouble(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Boolean_System_IConvertible_ToDouble_m946A32A438C782545C5227FF8F2DD42CCAB23BD3 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); double L_1; L_1 = Convert_ToDouble_m93A191AA94D0296FA0B89683200BC2ED2C0A4236((bool)L_0, NULL); return L_1; } } IL2CPP_EXTERN_C double Boolean_System_IConvertible_ToDouble_m946A32A438C782545C5227FF8F2DD42CCAB23BD3_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { bool* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); double _returnValue; _returnValue = Boolean_System_IConvertible_ToDouble_m946A32A438C782545C5227FF8F2DD42CCAB23BD3(_thisAdjusted, ___provider0, method); return _returnValue; } // System.Decimal System.Boolean::System.IConvertible.ToDecimal(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Boolean_System_IConvertible_ToDecimal_m61C64DC150DBF19B1902706164C853E071DF2CAF (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1; L_1 = Convert_ToDecimal_mB6256B91DD8809CDE9D6AD1A974C747DA2154F54((bool)L_0, NULL); return L_1; } } IL2CPP_EXTERN_C Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Boolean_System_IConvertible_ToDecimal_m61C64DC150DBF19B1902706164C853E071DF2CAF_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { bool* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F _returnValue; _returnValue = Boolean_System_IConvertible_ToDecimal_m61C64DC150DBF19B1902706164C853E071DF2CAF(_thisAdjusted, ___provider0, method); return _returnValue; } // System.DateTime System.Boolean::System.IConvertible.ToDateTime(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D Boolean_System_IConvertible_ToDateTime_m8F60F703F679DB51AC6FCF35CE6633EC9B2087AC (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { { String_t* L_0; L_0 = SR_Format_mCBC2E13309DB2E03F48F50E5189DD215B5BA7186(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6E9AEBB5505B4A1DBC166711562BE9408419A24D)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6C8C975CC62CF419550282B028FB7E3A1F591D06)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral401602777C44EA69B5FF9AB6AB2D47AEEC89D2AA)), NULL); InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_1 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_1); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_1, L_0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Boolean_System_IConvertible_ToDateTime_m8F60F703F679DB51AC6FCF35CE6633EC9B2087AC_RuntimeMethod_var))); } } IL2CPP_EXTERN_C DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D Boolean_System_IConvertible_ToDateTime_m8F60F703F679DB51AC6FCF35CE6633EC9B2087AC_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { bool* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D _returnValue; _returnValue = Boolean_System_IConvertible_ToDateTime_m8F60F703F679DB51AC6FCF35CE6633EC9B2087AC(_thisAdjusted, ___provider0, method); return _returnValue; } // System.Object System.Boolean::System.IConvertible.ToType(System.Type,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Boolean_System_IConvertible_ToType_mC58A3CF5D8EF4A62F8046D390CC58755424F02B5 (bool* __this, Type_t* ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); bool L_1 = ((bool)L_0); RuntimeObject* L_2 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_1); Type_t* L_3 = ___type0; RuntimeObject* L_4 = ___provider1; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); RuntimeObject* L_5; L_5 = Convert_DefaultToType_mA9DEFD8F897A7E13EA62DA8052A509C46D60B04F((RuntimeObject*)L_2, L_3, L_4, NULL); return L_5; } } IL2CPP_EXTERN_C RuntimeObject* Boolean_System_IConvertible_ToType_mC58A3CF5D8EF4A62F8046D390CC58755424F02B5_AdjustorThunk (RuntimeObject* __this, Type_t* ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method) { bool* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); RuntimeObject* _returnValue; _returnValue = Boolean_System_IConvertible_ToType_mC58A3CF5D8EF4A62F8046D390CC58755424F02B5(_thisAdjusted, ___type0, ___provider1, method); return _returnValue; } // System.Void System.Boolean::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Boolean__cctor_mBFCB6F4DF5F83FEE34D405089C20AEB56EBA1E4A (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDBB6CDA4D5A47DA899D30151C0C04DB0958C5C1F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE9BC8412F7672BEDC75EB21FA08240175E04E871); s_Il2CppMethodInitialized = true; } { ((Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields*)il2cpp_codegen_static_fields_for(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var))->___TrueString_5 = _stringLiteralE9BC8412F7672BEDC75EB21FA08240175E04E871; Il2CppCodeGenWriteBarrier((void**)(&((Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields*)il2cpp_codegen_static_fields_for(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var))->___TrueString_5), (void*)_stringLiteralE9BC8412F7672BEDC75EB21FA08240175E04E871); ((Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields*)il2cpp_codegen_static_fields_for(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var))->___FalseString_6 = _stringLiteralDBB6CDA4D5A47DA899D30151C0C04DB0958C5C1F; Il2CppCodeGenWriteBarrier((void**)(&((Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields*)il2cpp_codegen_static_fields_for(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var))->___FalseString_6), (void*)_stringLiteralDBB6CDA4D5A47DA899D30151C0C04DB0958C5C1F); 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 // System.Int32 System.Byte::CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_CompareTo_m4F4B52E1A3F43E77E2054A5F2178DFBCB23DFF2C (uint8_t* __this, RuntimeObject* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___value0; if (L_0) { goto IL_0005; } } { return 1; } IL_0005: { RuntimeObject* L_1 = ___value0; if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_1, Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var))) { goto IL_0018; } } { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_2 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_2); ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0BC57303021D0F5E73500A4048868718EB82784B)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Byte_CompareTo_m4F4B52E1A3F43E77E2054A5F2178DFBCB23DFF2C_RuntimeMethod_var))); } IL_0018: { int32_t L_3 = *((uint8_t*)__this); RuntimeObject* L_4 = ___value0; return ((int32_t)il2cpp_codegen_subtract(L_3, (int32_t)((*(uint8_t*)((uint8_t*)(uint8_t*)UnBox(L_4, Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var)))))); } } IL2CPP_EXTERN_C int32_t Byte_CompareTo_m4F4B52E1A3F43E77E2054A5F2178DFBCB23DFF2C_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___value0, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = Byte_CompareTo_m4F4B52E1A3F43E77E2054A5F2178DFBCB23DFF2C(_thisAdjusted, ___value0, method); return _returnValue; } // System.Int32 System.Byte::CompareTo(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_CompareTo_m188EF2F51CA95A2820D240FE282E165FAEF8A5B8 (uint8_t* __this, uint8_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = *((uint8_t*)__this); uint8_t L_1 = ___value0; return ((int32_t)il2cpp_codegen_subtract(L_0, (int32_t)L_1)); } } IL2CPP_EXTERN_C int32_t Byte_CompareTo_m188EF2F51CA95A2820D240FE282E165FAEF8A5B8_AdjustorThunk (RuntimeObject* __this, uint8_t ___value0, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = Byte_CompareTo_m188EF2F51CA95A2820D240FE282E165FAEF8A5B8(_thisAdjusted, ___value0, method); return _returnValue; } // System.Boolean System.Byte::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Byte_Equals_m07028241299798697EB8ECAD879B956B0C6F406C (uint8_t* __this, RuntimeObject* ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___obj0; if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_0, Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var))) { goto IL_000a; } } { return (bool)0; } IL_000a: { int32_t L_1 = *((uint8_t*)__this); RuntimeObject* L_2 = ___obj0; return (bool)((((int32_t)L_1) == ((int32_t)((*(uint8_t*)((uint8_t*)(uint8_t*)UnBox(L_2, Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var))))))? 1 : 0); } } IL2CPP_EXTERN_C bool Byte_Equals_m07028241299798697EB8ECAD879B956B0C6F406C_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___obj0, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = Byte_Equals_m07028241299798697EB8ECAD879B956B0C6F406C(_thisAdjusted, ___obj0, method); return _returnValue; } // System.Boolean System.Byte::Equals(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Byte_Equals_m25D9E26BA4A7457D39CC3E870C2B33070D731E85 (uint8_t* __this, uint8_t ___obj0, const RuntimeMethod* method) { { int32_t L_0 = *((uint8_t*)__this); uint8_t L_1 = ___obj0; return (bool)((((int32_t)L_0) == ((int32_t)L_1))? 1 : 0); } } IL2CPP_EXTERN_C bool Byte_Equals_m25D9E26BA4A7457D39CC3E870C2B33070D731E85_AdjustorThunk (RuntimeObject* __this, uint8_t ___obj0, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = Byte_Equals_m25D9E26BA4A7457D39CC3E870C2B33070D731E85(_thisAdjusted, ___obj0, method); return _returnValue; } // System.Int32 System.Byte::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_GetHashCode_mB42A844E310593D124CE92EBA90F3755C9B10678 (uint8_t* __this, const RuntimeMethod* method) { { int32_t L_0 = *((uint8_t*)__this); return L_0; } } IL2CPP_EXTERN_C int32_t Byte_GetHashCode_mB42A844E310593D124CE92EBA90F3755C9B10678_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = Byte_GetHashCode_mB42A844E310593D124CE92EBA90F3755C9B10678(_thisAdjusted, method); return _returnValue; } // System.Byte System.Byte::Parse(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Byte_Parse_mDF4F9DCA4919350FCFA6014D44DA6AC5D40C9665 (String_t* ___s0, RuntimeObject* ___provider1, const RuntimeMethod* method) { { String_t* L_0 = ___s0; if (L_0) { goto IL_000a; } } { ThrowHelper_ThrowArgumentNullException_m37384675C99E588A5288DECAE9BD7AD7849B22FF(((int32_t)48), NULL); } IL_000a: { String_t* L_1 = ___s0; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_2; L_2 = String_op_Implicit_m43FB5A30521770D4C28C1307CF89F80BA3535CAC_inline(L_1, NULL); RuntimeObject* L_3 = ___provider1; NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_4; L_4 = NumberFormatInfo_GetInstance_m68D84692285114DC53C752EFC2A559319D117E71(L_3, NULL); uint8_t L_5; L_5 = Byte_Parse_m6F6F3E5A58CAD8E54F357EE7FC3F4F78AE6BF888(L_2, 7, L_4, NULL); return L_5; } } // System.Byte System.Byte::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Byte_Parse_mB145C7CF0F7A3BBB0D8D19F3B69FE647C71D20DD (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, const RuntimeMethod* method) { { int32_t L_0 = ___style1; NumberFormatInfo_ValidateParseStyleInteger_m18EE5C87FC4B9AEEDC834D4715ADE74F2A4A2F89(L_0, NULL); String_t* L_1 = ___s0; if (L_1) { goto IL_0010; } } { ThrowHelper_ThrowArgumentNullException_m37384675C99E588A5288DECAE9BD7AD7849B22FF(((int32_t)48), NULL); } IL_0010: { String_t* L_2 = ___s0; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_3; L_3 = String_op_Implicit_m43FB5A30521770D4C28C1307CF89F80BA3535CAC_inline(L_2, NULL); int32_t L_4 = ___style1; RuntimeObject* L_5 = ___provider2; NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_6; L_6 = NumberFormatInfo_GetInstance_m68D84692285114DC53C752EFC2A559319D117E71(L_5, NULL); uint8_t L_7; L_7 = Byte_Parse_m6F6F3E5A58CAD8E54F357EE7FC3F4F78AE6BF888(L_3, L_4, L_6, NULL); return L_7; } } // System.Byte System.Byte::Parse(System.ReadOnlySpan`1,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Byte_Parse_m6F6F3E5A58CAD8E54F357EE7FC3F4F78AE6BF888 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___s0, int32_t ___style1, NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___info2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Number_tA71F95D4B9F046BDA97EFA91BC6517925969650A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C* V_1 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; { V_0 = 0; } try {// begin try (depth: 1) ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_0 = ___s0; int32_t L_1 = ___style1; NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_2 = ___info2; il2cpp_codegen_runtime_class_init_inline(Number_tA71F95D4B9F046BDA97EFA91BC6517925969650A_il2cpp_TypeInfo_var); int32_t L_3; L_3 = Number_ParseInt32_m2CCF8EEB897DD48FD55F19438A939E4A1268E2D1(L_0, L_1, L_2, NULL); V_0 = L_3; goto IL_001a; }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_000d; } throw e; } CATCH_000d: {// begin catch(System.OverflowException) V_1 = ((OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*)IL2CPP_GET_ACTIVE_EXCEPTION(OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*)); OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C* L_4 = V_1; OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C* L_5 = (OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C_il2cpp_TypeInfo_var))); NullCheck(L_5); OverflowException__ctor_mB00A07CDB7E5230B8D2BB31696E63F3CB1C36EF9(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFA21AE346609B8F4B72E20E1720DE0FA22D72B0F)), L_4, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Byte_Parse_m6F6F3E5A58CAD8E54F357EE7FC3F4F78AE6BF888_RuntimeMethod_var))); }// end catch (depth: 1) IL_001a: { int32_t L_6 = V_0; if ((((int32_t)L_6) < ((int32_t)0))) { goto IL_0026; } } { int32_t L_7 = V_0; if ((((int32_t)L_7) <= ((int32_t)((int32_t)255)))) { goto IL_0031; } } IL_0026: { OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C* L_8 = (OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C_il2cpp_TypeInfo_var))); NullCheck(L_8); OverflowException__ctor_m2B99D79236B7B87C0BB6C9AB2E557DECE481C264(L_8, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFA21AE346609B8F4B72E20E1720DE0FA22D72B0F)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Byte_Parse_m6F6F3E5A58CAD8E54F357EE7FC3F4F78AE6BF888_RuntimeMethod_var))); } IL_0031: { int32_t L_9 = V_0; return (uint8_t)((int32_t)(uint8_t)L_9); } } // System.Boolean System.Byte::TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.Byte&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Byte_TryParse_mCBED22EC2FF8DC001AEDF33449E7C8C27CD5B3EB (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, uint8_t* ___result3, const RuntimeMethod* method) { { int32_t L_0 = ___style1; NumberFormatInfo_ValidateParseStyleInteger_m18EE5C87FC4B9AEEDC834D4715ADE74F2A4A2F89(L_0, NULL); String_t* L_1 = ___s0; if (L_1) { goto IL_000e; } } { uint8_t* L_2 = ___result3; *((int8_t*)L_2) = (int8_t)0; return (bool)0; } IL_000e: { String_t* L_3 = ___s0; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_4; L_4 = String_op_Implicit_m43FB5A30521770D4C28C1307CF89F80BA3535CAC_inline(L_3, NULL); int32_t L_5 = ___style1; RuntimeObject* L_6 = ___provider2; NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_7; L_7 = NumberFormatInfo_GetInstance_m68D84692285114DC53C752EFC2A559319D117E71(L_6, NULL); uint8_t* L_8 = ___result3; bool L_9; L_9 = Byte_TryParse_m14EF6D154EAE44467AA895E709A8EC0B5FADC1BB(L_4, L_5, L_7, L_8, NULL); return L_9; } } // System.Boolean System.Byte::TryParse(System.ReadOnlySpan`1,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo,System.Byte&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Byte_TryParse_m14EF6D154EAE44467AA895E709A8EC0B5FADC1BB (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___s0, int32_t ___style1, NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___info2, uint8_t* ___result3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Number_tA71F95D4B9F046BDA97EFA91BC6517925969650A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { uint8_t* L_0 = ___result3; *((int8_t*)L_0) = (int8_t)0; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_1 = ___s0; int32_t L_2 = ___style1; NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* L_3 = ___info2; il2cpp_codegen_runtime_class_init_inline(Number_tA71F95D4B9F046BDA97EFA91BC6517925969650A_il2cpp_TypeInfo_var); bool L_4; L_4 = Number_TryParseInt32_m1CA7E6F0DFA4A6CE89BAE9339DE36439D6CE242F(L_1, L_2, L_3, (&V_0), NULL); if (L_4) { goto IL_0011; } } { return (bool)0; } IL_0011: { int32_t L_5 = V_0; if ((((int32_t)L_5) < ((int32_t)0))) { goto IL_001d; } } { int32_t L_6 = V_0; if ((((int32_t)L_6) <= ((int32_t)((int32_t)255)))) { goto IL_001f; } } IL_001d: { return (bool)0; } IL_001f: { uint8_t* L_7 = ___result3; int32_t L_8 = V_0; *((int8_t*)L_7) = (int8_t)((int32_t)(uint8_t)L_8); return (bool)1; } } // System.String System.Byte::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Byte_ToString_mB80CE094B94215119578E4D796566E71D7277EE4 (uint8_t* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Number_tA71F95D4B9F046BDA97EFA91BC6517925969650A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_op_Implicit_mE8C60AF5247A6927ED5FB2E409C9BEA8881763A7_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_1; L_1 = ReadOnlySpan_1_op_Implicit_mE8C60AF5247A6927ED5FB2E409C9BEA8881763A7((CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)NULL, ReadOnlySpan_1_op_Implicit_mE8C60AF5247A6927ED5FB2E409C9BEA8881763A7_RuntimeMethod_var); il2cpp_codegen_runtime_class_init_inline(Number_tA71F95D4B9F046BDA97EFA91BC6517925969650A_il2cpp_TypeInfo_var); String_t* L_2; L_2 = Number_FormatInt32_mE15A3C8421BBF412ED9A4F746917B7CFEB7F482F(L_0, L_1, (RuntimeObject*)NULL, NULL); return L_2; } } IL2CPP_EXTERN_C String_t* Byte_ToString_mB80CE094B94215119578E4D796566E71D7277EE4_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = Byte_ToString_mB80CE094B94215119578E4D796566E71D7277EE4(_thisAdjusted, method); return _returnValue; } // System.String System.Byte::ToString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Byte_ToString_m793A41EEEB7B422F6FE658E99D2F7683F59EE310 (uint8_t* __this, String_t* ___format0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Number_tA71F95D4B9F046BDA97EFA91BC6517925969650A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); String_t* L_1 = ___format0; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_2; L_2 = String_op_Implicit_m43FB5A30521770D4C28C1307CF89F80BA3535CAC_inline(L_1, NULL); il2cpp_codegen_runtime_class_init_inline(Number_tA71F95D4B9F046BDA97EFA91BC6517925969650A_il2cpp_TypeInfo_var); String_t* L_3; L_3 = Number_FormatInt32_mE15A3C8421BBF412ED9A4F746917B7CFEB7F482F(L_0, L_2, (RuntimeObject*)NULL, NULL); return L_3; } } IL2CPP_EXTERN_C String_t* Byte_ToString_m793A41EEEB7B422F6FE658E99D2F7683F59EE310_AdjustorThunk (RuntimeObject* __this, String_t* ___format0, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = Byte_ToString_m793A41EEEB7B422F6FE658E99D2F7683F59EE310(_thisAdjusted, ___format0, method); return _returnValue; } // System.String System.Byte::ToString(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Byte_ToString_m3F9787FE9A306FE63F388635DEE2733F91588A86 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Number_tA71F95D4B9F046BDA97EFA91BC6517925969650A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_op_Implicit_mE8C60AF5247A6927ED5FB2E409C9BEA8881763A7_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_1; L_1 = ReadOnlySpan_1_op_Implicit_mE8C60AF5247A6927ED5FB2E409C9BEA8881763A7((CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)NULL, ReadOnlySpan_1_op_Implicit_mE8C60AF5247A6927ED5FB2E409C9BEA8881763A7_RuntimeMethod_var); RuntimeObject* L_2 = ___provider0; il2cpp_codegen_runtime_class_init_inline(Number_tA71F95D4B9F046BDA97EFA91BC6517925969650A_il2cpp_TypeInfo_var); String_t* L_3; L_3 = Number_FormatInt32_mE15A3C8421BBF412ED9A4F746917B7CFEB7F482F(L_0, L_1, L_2, NULL); return L_3; } } IL2CPP_EXTERN_C String_t* Byte_ToString_m3F9787FE9A306FE63F388635DEE2733F91588A86_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = Byte_ToString_m3F9787FE9A306FE63F388635DEE2733F91588A86(_thisAdjusted, ___provider0, method); return _returnValue; } // System.String System.Byte::ToString(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Byte_ToString_m64EE358F20093EE61D30F9A21638D9E9EE8F87EC (uint8_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Number_tA71F95D4B9F046BDA97EFA91BC6517925969650A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); String_t* L_1 = ___format0; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_2; L_2 = String_op_Implicit_m43FB5A30521770D4C28C1307CF89F80BA3535CAC_inline(L_1, NULL); RuntimeObject* L_3 = ___provider1; il2cpp_codegen_runtime_class_init_inline(Number_tA71F95D4B9F046BDA97EFA91BC6517925969650A_il2cpp_TypeInfo_var); String_t* L_4; L_4 = Number_FormatInt32_mE15A3C8421BBF412ED9A4F746917B7CFEB7F482F(L_0, L_2, L_3, NULL); return L_4; } } IL2CPP_EXTERN_C String_t* Byte_ToString_m64EE358F20093EE61D30F9A21638D9E9EE8F87EC_AdjustorThunk (RuntimeObject* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = Byte_ToString_m64EE358F20093EE61D30F9A21638D9E9EE8F87EC(_thisAdjusted, ___format0, ___provider1, method); return _returnValue; } // System.Boolean System.Byte::TryFormat(System.Span`1,System.Int32&,System.ReadOnlySpan`1,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Byte_TryFormat_m001551267A8748E3D23C0DE0AF5FEB2BF06A463E (uint8_t* __this, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___destination0, int32_t* ___charsWritten1, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___format2, RuntimeObject* ___provider3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Number_tA71F95D4B9F046BDA97EFA91BC6517925969650A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_1 = ___format2; RuntimeObject* L_2 = ___provider3; Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_3 = ___destination0; int32_t* L_4 = ___charsWritten1; il2cpp_codegen_runtime_class_init_inline(Number_tA71F95D4B9F046BDA97EFA91BC6517925969650A_il2cpp_TypeInfo_var); bool L_5; L_5 = Number_TryFormatInt32_m764B3C1C5B6B800E62FFAA1639E060545D462B73(L_0, L_1, L_2, L_3, L_4, NULL); return L_5; } } IL2CPP_EXTERN_C bool Byte_TryFormat_m001551267A8748E3D23C0DE0AF5FEB2BF06A463E_AdjustorThunk (RuntimeObject* __this, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___destination0, int32_t* ___charsWritten1, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___format2, RuntimeObject* ___provider3, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = Byte_TryFormat_m001551267A8748E3D23C0DE0AF5FEB2BF06A463E(_thisAdjusted, ___destination0, ___charsWritten1, ___format2, ___provider3, method); return _returnValue; } // System.TypeCode System.Byte::GetTypeCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_GetTypeCode_m6912C4FFCA77C451D472C49BF11B6DF23D19DD5A (uint8_t* __this, const RuntimeMethod* method) { { return (int32_t)(6); } } IL2CPP_EXTERN_C int32_t Byte_GetTypeCode_m6912C4FFCA77C451D472C49BF11B6DF23D19DD5A_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = Byte_GetTypeCode_m6912C4FFCA77C451D472C49BF11B6DF23D19DD5A(_thisAdjusted, method); return _returnValue; } // System.Boolean System.Byte::System.IConvertible.ToBoolean(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Byte_System_IConvertible_ToBoolean_m15AAAD9A718AB9FAD0A94F5043F8346972CFC1AC (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); bool L_1; L_1 = Convert_ToBoolean_m15C298BDE61E3537C216A843315CD45862704BBD((uint8_t)L_0, NULL); return L_1; } } IL2CPP_EXTERN_C bool Byte_System_IConvertible_ToBoolean_m15AAAD9A718AB9FAD0A94F5043F8346972CFC1AC_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = Byte_System_IConvertible_ToBoolean_m15AAAD9A718AB9FAD0A94F5043F8346972CFC1AC(_thisAdjusted, ___provider0, method); return _returnValue; } // System.Char System.Byte::System.IConvertible.ToChar(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Byte_System_IConvertible_ToChar_m16900E3F6F5018EA82822F2189EDF5D7170BBEC5 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Il2CppChar L_1; L_1 = Convert_ToChar_mD0979A5230E20EFC1B1F98ED8BE59DBF823F74D1((uint8_t)L_0, NULL); return L_1; } } IL2CPP_EXTERN_C Il2CppChar Byte_System_IConvertible_ToChar_m16900E3F6F5018EA82822F2189EDF5D7170BBEC5_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); Il2CppChar _returnValue; _returnValue = Byte_System_IConvertible_ToChar_m16900E3F6F5018EA82822F2189EDF5D7170BBEC5(_thisAdjusted, ___provider0, method); return _returnValue; } // System.SByte System.Byte::System.IConvertible.ToSByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Byte_System_IConvertible_ToSByte_mB1DD8E73C6048E7FDEF4DC93E02A61ABFD000473 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int8_t L_1; L_1 = Convert_ToSByte_m9D76A66E6BB33DBF659E7447ED25F1A72E8501A0((uint8_t)L_0, NULL); return L_1; } } IL2CPP_EXTERN_C int8_t Byte_System_IConvertible_ToSByte_mB1DD8E73C6048E7FDEF4DC93E02A61ABFD000473_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int8_t _returnValue; _returnValue = Byte_System_IConvertible_ToSByte_mB1DD8E73C6048E7FDEF4DC93E02A61ABFD000473(_thisAdjusted, ___provider0, method); return _returnValue; } // System.Byte System.Byte::System.IConvertible.ToByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Byte_System_IConvertible_ToByte_m98B7242B033E411F5A138C706C462E3FF30C06B5 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { { int32_t L_0 = *((uint8_t*)__this); return (uint8_t)L_0; } } IL2CPP_EXTERN_C uint8_t Byte_System_IConvertible_ToByte_m98B7242B033E411F5A138C706C462E3FF30C06B5_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); uint8_t _returnValue; _returnValue = Byte_System_IConvertible_ToByte_m98B7242B033E411F5A138C706C462E3FF30C06B5(_thisAdjusted, ___provider0, method); return _returnValue; } // System.Int16 System.Byte::System.IConvertible.ToInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Byte_System_IConvertible_ToInt16_mA8520BBFAE4C4A49FA94E5DF881CE2DD48D1D24C (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int16_t L_1; L_1 = Convert_ToInt16_mB3F7CAFE06DD8DEDCA63A9AED26F753E92FB0CEF((uint8_t)L_0, NULL); return L_1; } } IL2CPP_EXTERN_C int16_t Byte_System_IConvertible_ToInt16_mA8520BBFAE4C4A49FA94E5DF881CE2DD48D1D24C_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int16_t _returnValue; _returnValue = Byte_System_IConvertible_ToInt16_mA8520BBFAE4C4A49FA94E5DF881CE2DD48D1D24C(_thisAdjusted, ___provider0, method); return _returnValue; } // System.UInt16 System.Byte::System.IConvertible.ToUInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Byte_System_IConvertible_ToUInt16_m331997ACA7849890AF2574C7027A6B87CF5E30B0 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); uint16_t L_1; L_1 = Convert_ToUInt16_m06D1DFA8EB77970F1736CEF33904EBEE476B7860((uint8_t)L_0, NULL); return L_1; } } IL2CPP_EXTERN_C uint16_t Byte_System_IConvertible_ToUInt16_m331997ACA7849890AF2574C7027A6B87CF5E30B0_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); uint16_t _returnValue; _returnValue = Byte_System_IConvertible_ToUInt16_m331997ACA7849890AF2574C7027A6B87CF5E30B0(_thisAdjusted, ___provider0, method); return _returnValue; } // System.Int32 System.Byte::System.IConvertible.ToInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_System_IConvertible_ToInt32_m24AC7525BCFC9E027B736C4B89F982B0BE065589 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int32_t L_1; L_1 = Convert_ToInt32_mD6F4F8BC8041480EBBF52F8CA11D1386A5EE019D((uint8_t)L_0, NULL); return L_1; } } IL2CPP_EXTERN_C int32_t Byte_System_IConvertible_ToInt32_m24AC7525BCFC9E027B736C4B89F982B0BE065589_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = Byte_System_IConvertible_ToInt32_m24AC7525BCFC9E027B736C4B89F982B0BE065589(_thisAdjusted, ___provider0, method); return _returnValue; } // System.UInt32 System.Byte::System.IConvertible.ToUInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Byte_System_IConvertible_ToUInt32_m3259A51E651A2B052656396CE0D2E085E084BFA8 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); uint32_t L_1; L_1 = Convert_ToUInt32_mF374B8C0AFCF94DA41B29ED55B03DE0EA45D0C86((uint8_t)L_0, NULL); return L_1; } } IL2CPP_EXTERN_C uint32_t Byte_System_IConvertible_ToUInt32_m3259A51E651A2B052656396CE0D2E085E084BFA8_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); uint32_t _returnValue; _returnValue = Byte_System_IConvertible_ToUInt32_m3259A51E651A2B052656396CE0D2E085E084BFA8(_thisAdjusted, ___provider0, method); return _returnValue; } // System.Int64 System.Byte::System.IConvertible.ToInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Byte_System_IConvertible_ToInt64_m7D04DF58D64EB154C4FD6F96F3D311D16836FFBA (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int64_t L_1; L_1 = Convert_ToInt64_m07CC879AB17B027757C66B87C50DEB0322589382((uint8_t)L_0, NULL); return L_1; } } IL2CPP_EXTERN_C int64_t Byte_System_IConvertible_ToInt64_m7D04DF58D64EB154C4FD6F96F3D311D16836FFBA_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int64_t _returnValue; _returnValue = Byte_System_IConvertible_ToInt64_m7D04DF58D64EB154C4FD6F96F3D311D16836FFBA(_thisAdjusted, ___provider0, method); return _returnValue; } // System.UInt64 System.Byte::System.IConvertible.ToUInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Byte_System_IConvertible_ToUInt64_m6EE1C6C9A086A1946E4E565C0F8ADAC0CB65BDA2 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); uint64_t L_1; L_1 = Convert_ToUInt64_mF93EE9B4E26F1E75F6A4AB861CE607B4617E1647((uint8_t)L_0, NULL); return L_1; } } IL2CPP_EXTERN_C uint64_t Byte_System_IConvertible_ToUInt64_m6EE1C6C9A086A1946E4E565C0F8ADAC0CB65BDA2_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); uint64_t _returnValue; _returnValue = Byte_System_IConvertible_ToUInt64_m6EE1C6C9A086A1946E4E565C0F8ADAC0CB65BDA2(_thisAdjusted, ___provider0, method); return _returnValue; } // System.Single System.Byte::System.IConvertible.ToSingle(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Byte_System_IConvertible_ToSingle_m59853A1358A49ADA1E5EF642A98FDB823F7662D2 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); float L_1; L_1 = Convert_ToSingle_mB480FA1431E5AE1B4CF7656C8F1793ABB1BCF510((uint8_t)L_0, NULL); return L_1; } } IL2CPP_EXTERN_C float Byte_System_IConvertible_ToSingle_m59853A1358A49ADA1E5EF642A98FDB823F7662D2_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); float _returnValue; _returnValue = Byte_System_IConvertible_ToSingle_m59853A1358A49ADA1E5EF642A98FDB823F7662D2(_thisAdjusted, ___provider0, method); return _returnValue; } // System.Double System.Byte::System.IConvertible.ToDouble(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Byte_System_IConvertible_ToDouble_mA2A33181FC392A7297024AF6C3CC8741C662C369 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); double L_1; L_1 = Convert_ToDouble_m7228B357220BA95839878BF7ED5E80E240C1DF2C((uint8_t)L_0, NULL); return L_1; } } IL2CPP_EXTERN_C double Byte_System_IConvertible_ToDouble_mA2A33181FC392A7297024AF6C3CC8741C662C369_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); double _returnValue; _returnValue = Byte_System_IConvertible_ToDouble_mA2A33181FC392A7297024AF6C3CC8741C662C369(_thisAdjusted, ___provider0, method); return _returnValue; } // System.Decimal System.Byte::System.IConvertible.ToDecimal(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Byte_System_IConvertible_ToDecimal_m26448B959796B46664E0EA46CE830A4DFF87B0BF (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1; L_1 = Convert_ToDecimal_m7234AEE7D565341F354FB129BB3293C6DA52B406((uint8_t)L_0, NULL); return L_1; } } IL2CPP_EXTERN_C Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Byte_System_IConvertible_ToDecimal_m26448B959796B46664E0EA46CE830A4DFF87B0BF_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F _returnValue; _returnValue = Byte_System_IConvertible_ToDecimal_m26448B959796B46664E0EA46CE830A4DFF87B0BF(_thisAdjusted, ___provider0, method); return _returnValue; } // System.DateTime System.Byte::System.IConvertible.ToDateTime(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D Byte_System_IConvertible_ToDateTime_mC69B22A478E7F1D3B34FDD335DCC757BD8D9BE50 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { { String_t* L_0; L_0 = SR_Format_mCBC2E13309DB2E03F48F50E5189DD215B5BA7186(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6E9AEBB5505B4A1DBC166711562BE9408419A24D)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral072BA90B274B502615639084DC3D7FCC63407A24)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral401602777C44EA69B5FF9AB6AB2D47AEEC89D2AA)), NULL); InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_1 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_1); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_1, L_0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Byte_System_IConvertible_ToDateTime_mC69B22A478E7F1D3B34FDD335DCC757BD8D9BE50_RuntimeMethod_var))); } } IL2CPP_EXTERN_C DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D Byte_System_IConvertible_ToDateTime_mC69B22A478E7F1D3B34FDD335DCC757BD8D9BE50_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D _returnValue; _returnValue = Byte_System_IConvertible_ToDateTime_mC69B22A478E7F1D3B34FDD335DCC757BD8D9BE50(_thisAdjusted, ___provider0, method); return _returnValue; } // System.Object System.Byte::System.IConvertible.ToType(System.Type,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Byte_System_IConvertible_ToType_mD135EC369A750E53243454D77179B00DE1C772C6 (uint8_t* __this, Type_t* ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint8_t*)__this); uint8_t L_1 = ((uint8_t)L_0); RuntimeObject* L_2 = Box(Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var, &L_1); Type_t* L_3 = ___type0; RuntimeObject* L_4 = ___provider1; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); RuntimeObject* L_5; L_5 = Convert_DefaultToType_mA9DEFD8F897A7E13EA62DA8052A509C46D60B04F((RuntimeObject*)L_2, L_3, L_4, NULL); return L_5; } } IL2CPP_EXTERN_C RuntimeObject* Byte_System_IConvertible_ToType_mD135EC369A750E53243454D77179B00DE1C772C6_AdjustorThunk (RuntimeObject* __this, Type_t* ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method) { uint8_t* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); RuntimeObject* _returnValue; _returnValue = Byte_System_IConvertible_ToType_mD135EC369A750E53243454D77179B00DE1C772C6(_thisAdjusted, ___type0, ___provider1, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.CLSCompliantAttribute::.ctor(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CLSCompliantAttribute__ctor_mA573FAB082E9E036BBCB882795BD1A3E743EF03E (CLSCompliantAttribute_tEF2C88FA74E74FB1993CC6E03767A2478A6D2F20* __this, bool ___isCompliant0, const RuntimeMethod* method) { { Attribute__ctor_m79ED1BF1EE36D1E417BA89A0D9F91F8AAD8D19E2(__this, NULL); bool L_0 = ___isCompliant0; __this->____compliant_0 = 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 // System.Boolean System.Char::IsLatin1(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsLatin1_mDAE3647705C0623050B979F91708EDA6765F61A4 (Il2CppChar ___ch0, const RuntimeMethod* method) { { Il2CppChar L_0 = ___ch0; return (bool)((((int32_t)((((int32_t)L_0) > ((int32_t)((int32_t)255)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Char::IsAscii(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsAscii_mE9DB6271D433C5A5DF8C466A9A9E1F3DEA4AEB46 (Il2CppChar ___ch0, const RuntimeMethod* method) { { Il2CppChar L_0 = ___ch0; return (bool)((((int32_t)((((int32_t)L_0) > ((int32_t)((int32_t)127)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Globalization.UnicodeCategory System.Char::GetLatin1UnicodeCategory(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_GetLatin1UnicodeCategory_m2865763AF77B942390649E0025297D76DE9326EB (Il2CppChar ___ch0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ((Char_t521A6F19B456D956AF452D926C32709DC03D6B17_StaticFields*)il2cpp_codegen_static_fields_for(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var))->___s_categoryForLatin1_3; Il2CppChar L_1 = ___ch0; NullCheck(L_0); Il2CppChar L_2 = L_1; uint8_t L_3 = (L_0)->GetAt(static_cast(L_2)); return (int32_t)(L_3); } } // System.Int32 System.Char::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_GetHashCode_mB5406F7D8B6D7545CD1CE6FCA0567BD7217E6B93 (Il2CppChar* __this, const RuntimeMethod* method) { { int32_t L_0 = *((uint16_t*)__this); int32_t L_1 = *((uint16_t*)__this); return ((int32_t)(L_0|((int32_t)(L_1<<((int32_t)16))))); } } IL2CPP_EXTERN_C int32_t Char_GetHashCode_mB5406F7D8B6D7545CD1CE6FCA0567BD7217E6B93_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = Char_GetHashCode_mB5406F7D8B6D7545CD1CE6FCA0567BD7217E6B93(_thisAdjusted, method); return _returnValue; } // System.Boolean System.Char::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_Equals_mE997ECE5A71CDA6C3C9AFA6EF22EE50BED8EE8E0 (Il2CppChar* __this, RuntimeObject* ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___obj0; if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_0, Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var))) { goto IL_000a; } } { return (bool)0; } IL_000a: { int32_t L_1 = *((uint16_t*)__this); RuntimeObject* L_2 = ___obj0; return (bool)((((int32_t)L_1) == ((int32_t)((*(Il2CppChar*)((Il2CppChar*)(Il2CppChar*)UnBox(L_2, Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var))))))? 1 : 0); } } IL2CPP_EXTERN_C bool Char_Equals_mE997ECE5A71CDA6C3C9AFA6EF22EE50BED8EE8E0_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___obj0, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = Char_Equals_mE997ECE5A71CDA6C3C9AFA6EF22EE50BED8EE8E0(_thisAdjusted, ___obj0, method); return _returnValue; } // System.Boolean System.Char::Equals(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_Equals_mEA7BFB45790C973DF6352091FA924B3FB2EFCE4B (Il2CppChar* __this, Il2CppChar ___obj0, const RuntimeMethod* method) { { int32_t L_0 = *((uint16_t*)__this); Il2CppChar L_1 = ___obj0; return (bool)((((int32_t)L_0) == ((int32_t)L_1))? 1 : 0); } } IL2CPP_EXTERN_C bool Char_Equals_mEA7BFB45790C973DF6352091FA924B3FB2EFCE4B_AdjustorThunk (RuntimeObject* __this, Il2CppChar ___obj0, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = Char_Equals_mEA7BFB45790C973DF6352091FA924B3FB2EFCE4B(_thisAdjusted, ___obj0, method); return _returnValue; } // System.Int32 System.Char::CompareTo(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_CompareTo_m8EA6F779C3E8158B00C31C6136699AD3DB8F49E8 (Il2CppChar* __this, RuntimeObject* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___value0; if (L_0) { goto IL_0005; } } { return 1; } IL_0005: { RuntimeObject* L_1 = ___value0; if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_1, Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var))) { goto IL_0018; } } { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_2 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_2); ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5A7ADFD6756FB3736B5F1DD62B8C220E85E5A9A6)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_CompareTo_m8EA6F779C3E8158B00C31C6136699AD3DB8F49E8_RuntimeMethod_var))); } IL_0018: { int32_t L_3 = *((uint16_t*)__this); RuntimeObject* L_4 = ___value0; return ((int32_t)il2cpp_codegen_subtract(L_3, (int32_t)((*(Il2CppChar*)((Il2CppChar*)(Il2CppChar*)UnBox(L_4, Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var)))))); } } IL2CPP_EXTERN_C int32_t Char_CompareTo_m8EA6F779C3E8158B00C31C6136699AD3DB8F49E8_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___value0, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = Char_CompareTo_m8EA6F779C3E8158B00C31C6136699AD3DB8F49E8(_thisAdjusted, ___value0, method); return _returnValue; } // System.Int32 System.Char::CompareTo(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_CompareTo_m2C1EEB369FD610EA9278085CF0076DB7EF4ABAD7 (Il2CppChar* __this, Il2CppChar ___value0, const RuntimeMethod* method) { { int32_t L_0 = *((uint16_t*)__this); Il2CppChar L_1 = ___value0; return ((int32_t)il2cpp_codegen_subtract(L_0, (int32_t)L_1)); } } IL2CPP_EXTERN_C int32_t Char_CompareTo_m2C1EEB369FD610EA9278085CF0076DB7EF4ABAD7_AdjustorThunk (RuntimeObject* __this, Il2CppChar ___value0, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = Char_CompareTo_m2C1EEB369FD610EA9278085CF0076DB7EF4ABAD7(_thisAdjusted, ___value0, method); return _returnValue; } // System.String System.Char::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Char_ToString_m2A308731F9577C06AF3C0901234E2EAC8327410C (Il2CppChar* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint16_t*)__this); il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); String_t* L_1; L_1 = Char_ToString_m0B6C7DF5A285D4F8F62CCBA35A2B92E48C3AD288(L_0, NULL); return L_1; } } IL2CPP_EXTERN_C String_t* Char_ToString_m2A308731F9577C06AF3C0901234E2EAC8327410C_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = Char_ToString_m2A308731F9577C06AF3C0901234E2EAC8327410C(_thisAdjusted, method); return _returnValue; } // System.String System.Char::ToString(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Char_ToString_m34499826F048A38EB8216D5844A5DA49F54719C8 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint16_t*)__this); il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); String_t* L_1; L_1 = Char_ToString_m0B6C7DF5A285D4F8F62CCBA35A2B92E48C3AD288(L_0, NULL); return L_1; } } IL2CPP_EXTERN_C String_t* Char_ToString_m34499826F048A38EB8216D5844A5DA49F54719C8_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = Char_ToString_m34499826F048A38EB8216D5844A5DA49F54719C8(_thisAdjusted, ___provider0, method); return _returnValue; } // System.String System.Char::ToString(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Char_ToString_m0B6C7DF5A285D4F8F62CCBA35A2B92E48C3AD288 (Il2CppChar ___c0, const RuntimeMethod* method) { { Il2CppChar L_0 = ___c0; String_t* L_1; L_1 = String_CreateFromChar_m95EB2869FFD1A844B0F4236BAB2107EECA5B4883(L_0, NULL); return L_1; } } // System.Char System.Char::Parse(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_Parse_mF6DE281178725F2B4A13DF321846C0DD4CB36D23 (String_t* ___s0, const RuntimeMethod* method) { { String_t* L_0 = ___s0; 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))); NullCheck(L_1); ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDAF2BD03270A51BF9C135F3694DCAD2D3E66F465)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_Parse_mF6DE281178725F2B4A13DF321846C0DD4CB36D23_RuntimeMethod_var))); } IL_000e: { String_t* L_2 = ___s0; NullCheck(L_2); int32_t L_3; L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_2, NULL); if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0022; } } { FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_4 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var))); NullCheck(L_4); FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1885083B225A9C3413CEAE49DFF7E6B5770675FB)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_Parse_mF6DE281178725F2B4A13DF321846C0DD4CB36D23_RuntimeMethod_var))); } IL_0022: { String_t* L_5 = ___s0; NullCheck(L_5); Il2CppChar L_6; L_6 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_5, 0, NULL); return L_6; } } // System.Boolean System.Char::TryParse(System.String,System.Char&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_TryParse_m0E817FE46C85F43F2294F87ECA1C4ADD9E3B67E6 (String_t* ___s0, Il2CppChar* ___result1, const RuntimeMethod* method) { { Il2CppChar* L_0 = ___result1; *((int16_t*)L_0) = (int16_t)0; String_t* L_1 = ___s0; if (L_1) { goto IL_0008; } } { return (bool)0; } IL_0008: { String_t* L_2 = ___s0; NullCheck(L_2); int32_t L_3; L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_2, NULL); if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0013; } } { return (bool)0; } IL_0013: { Il2CppChar* L_4 = ___result1; String_t* L_5 = ___s0; NullCheck(L_5); Il2CppChar L_6; L_6 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_5, 0, NULL); *((int16_t*)L_4) = (int16_t)L_6; return (bool)1; } } // System.Boolean System.Char::IsDigit(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsDigit_mC98DAF907860EFB7D26C3E126D80AD3A2CE72715 (Il2CppChar ___c0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___c0; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_1; L_1 = Char_IsLatin1_mDAE3647705C0623050B979F91708EDA6765F61A4(L_0, NULL); if (!L_1) { goto IL_0018; } } { Il2CppChar L_2 = ___c0; if ((((int32_t)L_2) < ((int32_t)((int32_t)48)))) { goto IL_0016; } } { Il2CppChar L_3 = ___c0; return (bool)((((int32_t)((((int32_t)L_3) > ((int32_t)((int32_t)57)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_0016: { return (bool)0; } IL_0018: { Il2CppChar L_4 = ___c0; int32_t L_5; L_5 = CharUnicodeInfo_GetUnicodeCategory_m1EA8314CF89D9C744D5B2BED9F3479C7C5467319(L_4, NULL); return (bool)((((int32_t)L_5) == ((int32_t)8))? 1 : 0); } } // System.Boolean System.Char::CheckLetter(System.Globalization.UnicodeCategory) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_CheckLetter_m385BC1412538723AF7FAD5C1DA3E0A51DE1E686E (int32_t ___uc0, const RuntimeMethod* method) { { int32_t L_0 = ___uc0; if ((!(((uint32_t)L_0) <= ((uint32_t)4)))) { goto IL_0006; } } { return (bool)1; } IL_0006: { return (bool)0; } } // System.Boolean System.Char::IsLetter(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsLetter_m8AA5C1E0E24784F5B681E5A7DB6A28D11DC7E678 (Il2CppChar ___c0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___c0; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_1; L_1 = Char_IsLatin1_mDAE3647705C0623050B979F91708EDA6765F61A4(L_0, NULL); if (!L_1) { goto IL_0033; } } { Il2CppChar L_2 = ___c0; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_3; L_3 = Char_IsAscii_mE9DB6271D433C5A5DF8C466A9A9E1F3DEA4AEB46(L_2, NULL); if (!L_3) { goto IL_0027; } } { Il2CppChar L_4 = ___c0; ___c0 = ((int32_t)(uint16_t)((int32_t)((int32_t)L_4|((int32_t)32)))); Il2CppChar L_5 = ___c0; if ((((int32_t)L_5) < ((int32_t)((int32_t)97)))) { goto IL_0025; } } { Il2CppChar L_6 = ___c0; return (bool)((((int32_t)((((int32_t)L_6) > ((int32_t)((int32_t)122)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_0025: { return (bool)0; } IL_0027: { Il2CppChar L_7 = ___c0; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); int32_t L_8; L_8 = Char_GetLatin1UnicodeCategory_m2865763AF77B942390649E0025297D76DE9326EB(L_7, NULL); bool L_9; L_9 = Char_CheckLetter_m385BC1412538723AF7FAD5C1DA3E0A51DE1E686E(L_8, NULL); return L_9; } IL_0033: { Il2CppChar L_10 = ___c0; int32_t L_11; L_11 = CharUnicodeInfo_GetUnicodeCategory_m1EA8314CF89D9C744D5B2BED9F3479C7C5467319(L_10, NULL); il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_12; L_12 = Char_CheckLetter_m385BC1412538723AF7FAD5C1DA3E0A51DE1E686E(L_11, NULL); return L_12; } } // System.Boolean System.Char::IsWhiteSpaceLatin1(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsWhiteSpaceLatin1_mC6DDF00F21F333592133A5A8A01318EDD2512578 (Il2CppChar ___c0, const RuntimeMethod* method) { { Il2CppChar L_0 = ___c0; if ((((int32_t)L_0) == ((int32_t)((int32_t)32)))) { goto IL_001d; } } { Il2CppChar L_1 = ___c0; if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_1, ((int32_t)9)))) > ((uint32_t)4)))) { goto IL_001d; } } { Il2CppChar L_2 = ___c0; if ((((int32_t)L_2) == ((int32_t)((int32_t)160)))) { goto IL_001d; } } { Il2CppChar L_3 = ___c0; return (bool)((((int32_t)L_3) == ((int32_t)((int32_t)133)))? 1 : 0); } IL_001d: { return (bool)1; } } // System.Boolean System.Char::IsWhiteSpace(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsWhiteSpace_m9CE0F6685DB2502ABE106D160F95A287EFC07EF9 (Il2CppChar ___c0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___c0; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_1; L_1 = Char_IsLatin1_mDAE3647705C0623050B979F91708EDA6765F61A4(L_0, NULL); if (!L_1) { goto IL_000f; } } { Il2CppChar L_2 = ___c0; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_3; L_3 = Char_IsWhiteSpaceLatin1_mC6DDF00F21F333592133A5A8A01318EDD2512578(L_2, NULL); return L_3; } IL_000f: { Il2CppChar L_4 = ___c0; bool L_5; L_5 = CharUnicodeInfo_IsWhiteSpace_m0E3553DF0D1B7875EBFBB6573BFBDB281722929E(L_4, NULL); return L_5; } } // System.Boolean System.Char::IsUpper(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsUpper_m857948FB8687710EC3EAB889A4908E00E4F48BDA (Il2CppChar ___c0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___c0; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_1; L_1 = Char_IsLatin1_mDAE3647705C0623050B979F91708EDA6765F61A4(L_0, NULL); if (!L_1) { goto IL_002a; } } { Il2CppChar L_2 = ___c0; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_3; L_3 = Char_IsAscii_mE9DB6271D433C5A5DF8C466A9A9E1F3DEA4AEB46(L_2, NULL); if (!L_3) { goto IL_0020; } } { Il2CppChar L_4 = ___c0; if ((((int32_t)L_4) < ((int32_t)((int32_t)65)))) { goto IL_001e; } } { Il2CppChar L_5 = ___c0; return (bool)((((int32_t)((((int32_t)L_5) > ((int32_t)((int32_t)90)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_001e: { return (bool)0; } IL_0020: { Il2CppChar L_6 = ___c0; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); int32_t L_7; L_7 = Char_GetLatin1UnicodeCategory_m2865763AF77B942390649E0025297D76DE9326EB(L_6, NULL); return (bool)((((int32_t)L_7) == ((int32_t)0))? 1 : 0); } IL_002a: { Il2CppChar L_8 = ___c0; int32_t L_9; L_9 = CharUnicodeInfo_GetUnicodeCategory_m1EA8314CF89D9C744D5B2BED9F3479C7C5467319(L_8, NULL); return (bool)((((int32_t)L_9) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Char::IsLower(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsLower_m30A84A53658D6250257BFD99051D4931916D5D91 (Il2CppChar ___c0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___c0; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_1; L_1 = Char_IsLatin1_mDAE3647705C0623050B979F91708EDA6765F61A4(L_0, NULL); if (!L_1) { goto IL_002a; } } { Il2CppChar L_2 = ___c0; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_3; L_3 = Char_IsAscii_mE9DB6271D433C5A5DF8C466A9A9E1F3DEA4AEB46(L_2, NULL); if (!L_3) { goto IL_0020; } } { Il2CppChar L_4 = ___c0; if ((((int32_t)L_4) < ((int32_t)((int32_t)97)))) { goto IL_001e; } } { Il2CppChar L_5 = ___c0; return (bool)((((int32_t)((((int32_t)L_5) > ((int32_t)((int32_t)122)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_001e: { return (bool)0; } IL_0020: { Il2CppChar L_6 = ___c0; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); int32_t L_7; L_7 = Char_GetLatin1UnicodeCategory_m2865763AF77B942390649E0025297D76DE9326EB(L_6, NULL); return (bool)((((int32_t)L_7) == ((int32_t)1))? 1 : 0); } IL_002a: { Il2CppChar L_8 = ___c0; int32_t L_9; L_9 = CharUnicodeInfo_GetUnicodeCategory_m1EA8314CF89D9C744D5B2BED9F3479C7C5467319(L_8, NULL); return (bool)((((int32_t)L_9) == ((int32_t)1))? 1 : 0); } } // System.Boolean System.Char::CheckPunctuation(System.Globalization.UnicodeCategory) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_CheckPunctuation_mB7F1127D3371870A7A431548E6866FF9CE19741E (int32_t ___uc0, const RuntimeMethod* method) { { int32_t L_0 = ___uc0; if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, ((int32_t)18)))) <= ((uint32_t)6)))) { goto IL_0009; } } { return (bool)1; } IL_0009: { return (bool)0; } } // System.Boolean System.Char::IsPunctuation(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsPunctuation_m53451A2285C879564FA33E6D34BABEFF5F28B8CA (Il2CppChar ___c0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___c0; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_1; L_1 = Char_IsLatin1_mDAE3647705C0623050B979F91708EDA6765F61A4(L_0, NULL); if (!L_1) { goto IL_0014; } } { Il2CppChar L_2 = ___c0; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); int32_t L_3; L_3 = Char_GetLatin1UnicodeCategory_m2865763AF77B942390649E0025297D76DE9326EB(L_2, NULL); bool L_4; L_4 = Char_CheckPunctuation_mB7F1127D3371870A7A431548E6866FF9CE19741E(L_3, NULL); return L_4; } IL_0014: { Il2CppChar L_5 = ___c0; int32_t L_6; L_6 = CharUnicodeInfo_GetUnicodeCategory_m1EA8314CF89D9C744D5B2BED9F3479C7C5467319(L_5, NULL); il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_7; L_7 = Char_CheckPunctuation_mB7F1127D3371870A7A431548E6866FF9CE19741E(L_6, NULL); return L_7; } } // System.Boolean System.Char::CheckLetterOrDigit(System.Globalization.UnicodeCategory) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_CheckLetterOrDigit_m76D5839A6AAFF507180AE5F42AD106E77887AFFC (int32_t ___uc0, const RuntimeMethod* method) { { int32_t L_0 = ___uc0; if ((!(((uint32_t)L_0) > ((uint32_t)4)))) { goto IL_0008; } } { int32_t L_1 = ___uc0; if ((!(((uint32_t)L_1) == ((uint32_t)8)))) { goto IL_000a; } } IL_0008: { return (bool)1; } IL_000a: { return (bool)0; } } // System.Boolean System.Char::IsLetterOrDigit(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsLetterOrDigit_m3187D9080624F8059033B204FB5F52FF3632E11C (Il2CppChar ___c0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___c0; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_1; L_1 = Char_IsLatin1_mDAE3647705C0623050B979F91708EDA6765F61A4(L_0, NULL); if (!L_1) { goto IL_0014; } } { Il2CppChar L_2 = ___c0; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); int32_t L_3; L_3 = Char_GetLatin1UnicodeCategory_m2865763AF77B942390649E0025297D76DE9326EB(L_2, NULL); bool L_4; L_4 = Char_CheckLetterOrDigit_m76D5839A6AAFF507180AE5F42AD106E77887AFFC(L_3, NULL); return L_4; } IL_0014: { Il2CppChar L_5 = ___c0; int32_t L_6; L_6 = CharUnicodeInfo_GetUnicodeCategory_m1EA8314CF89D9C744D5B2BED9F3479C7C5467319(L_5, NULL); il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_7; L_7 = Char_CheckLetterOrDigit_m76D5839A6AAFF507180AE5F42AD106E77887AFFC(L_6, NULL); return L_7; } } // System.Char System.Char::ToUpper(System.Char,System.Globalization.CultureInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_ToUpper_mD26273F94C47579826EBDD1A30FD12CD3DF054A9 (Il2CppChar ___c0, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___culture1, const RuntimeMethod* method) { { CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_0 = ___culture1; 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))); NullCheck(L_1); ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB657B9EBAD0A09A09ED1FD8D1CCD0E421CD7BDC7)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_ToUpper_mD26273F94C47579826EBDD1A30FD12CD3DF054A9_RuntimeMethod_var))); } IL_000e: { CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_2 = ___culture1; NullCheck(L_2); TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* L_3; L_3 = VirtualFuncInvoker0< TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* >::Invoke(10 /* System.Globalization.TextInfo System.Globalization.CultureInfo::get_TextInfo() */, L_2); Il2CppChar L_4 = ___c0; NullCheck(L_3); Il2CppChar L_5; L_5 = VirtualFuncInvoker1< Il2CppChar, Il2CppChar >::Invoke(9 /* System.Char System.Globalization.TextInfo::ToUpper(System.Char) */, L_3, L_4); return L_5; } } // System.Char System.Char::ToUpper(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_ToUpper_m3753B9BCD4A82C8B5D86D39D9B1B2D638B0AFE84 (Il2CppChar ___c0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var); CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_0; L_0 = CultureInfo_get_CurrentCulture_m43D1E4E50AB1F62ADC7C1884F28F918B53871522(NULL); NullCheck(L_0); TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* L_1; L_1 = VirtualFuncInvoker0< TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* >::Invoke(10 /* System.Globalization.TextInfo System.Globalization.CultureInfo::get_TextInfo() */, L_0); Il2CppChar L_2 = ___c0; NullCheck(L_1); Il2CppChar L_3; L_3 = VirtualFuncInvoker1< Il2CppChar, Il2CppChar >::Invoke(9 /* System.Char System.Globalization.TextInfo::ToUpper(System.Char) */, L_1, L_2); return L_3; } } // System.Char System.Char::ToUpperInvariant(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_ToUpperInvariant_m4A8EEECCB38A511AC2EE02680ED999CC48601D06 (Il2CppChar ___c0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var); CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_0; L_0 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL); NullCheck(L_0); TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* L_1; L_1 = VirtualFuncInvoker0< TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* >::Invoke(10 /* System.Globalization.TextInfo System.Globalization.CultureInfo::get_TextInfo() */, L_0); Il2CppChar L_2 = ___c0; NullCheck(L_1); Il2CppChar L_3; L_3 = VirtualFuncInvoker1< Il2CppChar, Il2CppChar >::Invoke(9 /* System.Char System.Globalization.TextInfo::ToUpper(System.Char) */, L_1, L_2); return L_3; } } // System.Char System.Char::ToLower(System.Char,System.Globalization.CultureInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_ToLower_m78EEA18B8EA90C29C7F1082CBA19F0DCFE90E9D4 (Il2CppChar ___c0, CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___culture1, const RuntimeMethod* method) { { CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_0 = ___culture1; 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))); NullCheck(L_1); ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB657B9EBAD0A09A09ED1FD8D1CCD0E421CD7BDC7)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_ToLower_m78EEA18B8EA90C29C7F1082CBA19F0DCFE90E9D4_RuntimeMethod_var))); } IL_000e: { CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_2 = ___culture1; NullCheck(L_2); TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* L_3; L_3 = VirtualFuncInvoker0< TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* >::Invoke(10 /* System.Globalization.TextInfo System.Globalization.CultureInfo::get_TextInfo() */, L_2); Il2CppChar L_4 = ___c0; NullCheck(L_3); Il2CppChar L_5; L_5 = VirtualFuncInvoker1< Il2CppChar, Il2CppChar >::Invoke(7 /* System.Char System.Globalization.TextInfo::ToLower(System.Char) */, L_3, L_4); return L_5; } } // System.Char System.Char::ToLower(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_ToLower_m643675C4A50AD39A7BE3F5C3F40A1BFD547FF957 (Il2CppChar ___c0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var); CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_0; L_0 = CultureInfo_get_CurrentCulture_m43D1E4E50AB1F62ADC7C1884F28F918B53871522(NULL); NullCheck(L_0); TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* L_1; L_1 = VirtualFuncInvoker0< TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* >::Invoke(10 /* System.Globalization.TextInfo System.Globalization.CultureInfo::get_TextInfo() */, L_0); Il2CppChar L_2 = ___c0; NullCheck(L_1); Il2CppChar L_3; L_3 = VirtualFuncInvoker1< Il2CppChar, Il2CppChar >::Invoke(7 /* System.Char System.Globalization.TextInfo::ToLower(System.Char) */, L_1, L_2); return L_3; } } // System.Char System.Char::ToLowerInvariant(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_ToLowerInvariant_mDC9BA9523EA82DE91CD6F814206EB3C9F15BFA2C (Il2CppChar ___c0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var); CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_0; L_0 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL); NullCheck(L_0); TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* L_1; L_1 = VirtualFuncInvoker0< TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* >::Invoke(10 /* System.Globalization.TextInfo System.Globalization.CultureInfo::get_TextInfo() */, L_0); Il2CppChar L_2 = ___c0; NullCheck(L_1); Il2CppChar L_3; L_3 = VirtualFuncInvoker1< Il2CppChar, Il2CppChar >::Invoke(7 /* System.Char System.Globalization.TextInfo::ToLower(System.Char) */, L_1, L_2); return L_3; } } // System.TypeCode System.Char::GetTypeCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_GetTypeCode_mDEFAE6F74D10A05F17AA43B3B11B273407B51C0C (Il2CppChar* __this, const RuntimeMethod* method) { { return (int32_t)(4); } } IL2CPP_EXTERN_C int32_t Char_GetTypeCode_mDEFAE6F74D10A05F17AA43B3B11B273407B51C0C_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = Char_GetTypeCode_mDEFAE6F74D10A05F17AA43B3B11B273407B51C0C(_thisAdjusted, method); return _returnValue; } // System.Boolean System.Char::System.IConvertible.ToBoolean(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_System_IConvertible_ToBoolean_m0F898C7790A3D055C6171AA576920DB109108881 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { { String_t* L_0; L_0 = SR_Format_mCBC2E13309DB2E03F48F50E5189DD215B5BA7186(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6E9AEBB5505B4A1DBC166711562BE9408419A24D)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE75F4F4A9D67BC98BA7DB8DBE3C519516572DA4E)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6C8C975CC62CF419550282B028FB7E3A1F591D06)), NULL); InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_1 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_1); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_1, L_0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_System_IConvertible_ToBoolean_m0F898C7790A3D055C6171AA576920DB109108881_RuntimeMethod_var))); } } IL2CPP_EXTERN_C bool Char_System_IConvertible_ToBoolean_m0F898C7790A3D055C6171AA576920DB109108881_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = Char_System_IConvertible_ToBoolean_m0F898C7790A3D055C6171AA576920DB109108881(_thisAdjusted, ___provider0, method); return _returnValue; } // System.Char System.Char::System.IConvertible.ToChar(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_System_IConvertible_ToChar_m48EAFBEF2A0F20A3DA4BF679C1BDE132F9773635 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { { int32_t L_0 = *((uint16_t*)__this); return L_0; } } IL2CPP_EXTERN_C Il2CppChar Char_System_IConvertible_ToChar_m48EAFBEF2A0F20A3DA4BF679C1BDE132F9773635_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); Il2CppChar _returnValue; _returnValue = Char_System_IConvertible_ToChar_m48EAFBEF2A0F20A3DA4BF679C1BDE132F9773635(_thisAdjusted, ___provider0, method); return _returnValue; } // System.SByte System.Char::System.IConvertible.ToSByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Char_System_IConvertible_ToSByte_m82846B92375A52EDB7036F6B9E6A1C9802DC9B81 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint16_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int8_t L_1; L_1 = Convert_ToSByte_m3F6B0BF98A8529D37624CE40648F73CB10E01FFF(L_0, NULL); return L_1; } } IL2CPP_EXTERN_C int8_t Char_System_IConvertible_ToSByte_m82846B92375A52EDB7036F6B9E6A1C9802DC9B81_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int8_t _returnValue; _returnValue = Char_System_IConvertible_ToSByte_m82846B92375A52EDB7036F6B9E6A1C9802DC9B81(_thisAdjusted, ___provider0, method); return _returnValue; } // System.Byte System.Char::System.IConvertible.ToByte(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Char_System_IConvertible_ToByte_mB1A4849624C4CF1A8F96A6B38F8F650FB1CA307E (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint16_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); uint8_t L_1; L_1 = Convert_ToByte_m16B87AC88052BB919DB0750F93819AAEDFCA5328(L_0, NULL); return L_1; } } IL2CPP_EXTERN_C uint8_t Char_System_IConvertible_ToByte_mB1A4849624C4CF1A8F96A6B38F8F650FB1CA307E_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); uint8_t _returnValue; _returnValue = Char_System_IConvertible_ToByte_mB1A4849624C4CF1A8F96A6B38F8F650FB1CA307E(_thisAdjusted, ___provider0, method); return _returnValue; } // System.Int16 System.Char::System.IConvertible.ToInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Char_System_IConvertible_ToInt16_mAC73E0A96AFF406F4FBCD0DC58EC8ACBF75944BB (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint16_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int16_t L_1; L_1 = Convert_ToInt16_m68A8B475F8B3DB23BBDB85E60FCD399337C3FB5A(L_0, NULL); return L_1; } } IL2CPP_EXTERN_C int16_t Char_System_IConvertible_ToInt16_mAC73E0A96AFF406F4FBCD0DC58EC8ACBF75944BB_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int16_t _returnValue; _returnValue = Char_System_IConvertible_ToInt16_mAC73E0A96AFF406F4FBCD0DC58EC8ACBF75944BB(_thisAdjusted, ___provider0, method); return _returnValue; } // System.UInt16 System.Char::System.IConvertible.ToUInt16(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Char_System_IConvertible_ToUInt16_m6498AA03AB1C7B3C3533BE8451B5D3776551F304 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint16_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); uint16_t L_1; L_1 = Convert_ToUInt16_m0FB860828DC5FD0B84FF8AF8B56E3E20107595FE(L_0, NULL); return L_1; } } IL2CPP_EXTERN_C uint16_t Char_System_IConvertible_ToUInt16_m6498AA03AB1C7B3C3533BE8451B5D3776551F304_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); uint16_t _returnValue; _returnValue = Char_System_IConvertible_ToUInt16_m6498AA03AB1C7B3C3533BE8451B5D3776551F304(_thisAdjusted, ___provider0, method); return _returnValue; } // System.Int32 System.Char::System.IConvertible.ToInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_System_IConvertible_ToInt32_mAE1897F49E270263A7E4DC0EDDCDECF8C7CC9D9B (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint16_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int32_t L_1; L_1 = Convert_ToInt32_m7B23BC2572EEB2B03EDAA26D2D9232C4A00DA00C(L_0, NULL); return L_1; } } IL2CPP_EXTERN_C int32_t Char_System_IConvertible_ToInt32_mAE1897F49E270263A7E4DC0EDDCDECF8C7CC9D9B_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = Char_System_IConvertible_ToInt32_mAE1897F49E270263A7E4DC0EDDCDECF8C7CC9D9B(_thisAdjusted, ___provider0, method); return _returnValue; } // System.UInt32 System.Char::System.IConvertible.ToUInt32(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Char_System_IConvertible_ToUInt32_mD12DB02DE1D5DFB0AA9C0714F5CC9ECD2CD90838 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint16_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); uint32_t L_1; L_1 = Convert_ToUInt32_m6C49ADD250ABFA39D54638C9EF14DAB913915EF4(L_0, NULL); return L_1; } } IL2CPP_EXTERN_C uint32_t Char_System_IConvertible_ToUInt32_mD12DB02DE1D5DFB0AA9C0714F5CC9ECD2CD90838_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); uint32_t _returnValue; _returnValue = Char_System_IConvertible_ToUInt32_mD12DB02DE1D5DFB0AA9C0714F5CC9ECD2CD90838(_thisAdjusted, ___provider0, method); return _returnValue; } // System.Int64 System.Char::System.IConvertible.ToInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Char_System_IConvertible_ToInt64_m62BC0D4913BE6CB22D2560BC2B5AEC37CC6F9C2B (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint16_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int64_t L_1; L_1 = Convert_ToInt64_m78EE47584CDC6753BC193CC3E469BECEF305DE2E(L_0, NULL); return L_1; } } IL2CPP_EXTERN_C int64_t Char_System_IConvertible_ToInt64_m62BC0D4913BE6CB22D2560BC2B5AEC37CC6F9C2B_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); int64_t _returnValue; _returnValue = Char_System_IConvertible_ToInt64_m62BC0D4913BE6CB22D2560BC2B5AEC37CC6F9C2B(_thisAdjusted, ___provider0, method); return _returnValue; } // System.UInt64 System.Char::System.IConvertible.ToUInt64(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Char_System_IConvertible_ToUInt64_mE92B98ED642D7F54C31683FA4D0839AAA2C5B08F (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint16_t*)__this); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); uint64_t L_1; L_1 = Convert_ToUInt64_mDD6727751D6284FE0BCFCE3B3195DBFEDB6F8A74(L_0, NULL); return L_1; } } IL2CPP_EXTERN_C uint64_t Char_System_IConvertible_ToUInt64_mE92B98ED642D7F54C31683FA4D0839AAA2C5B08F_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); uint64_t _returnValue; _returnValue = Char_System_IConvertible_ToUInt64_mE92B98ED642D7F54C31683FA4D0839AAA2C5B08F(_thisAdjusted, ___provider0, method); return _returnValue; } // System.Single System.Char::System.IConvertible.ToSingle(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Char_System_IConvertible_ToSingle_m6DF18561FBA23392B504A2F3014C560119D5572D (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { { String_t* L_0; L_0 = SR_Format_mCBC2E13309DB2E03F48F50E5189DD215B5BA7186(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6E9AEBB5505B4A1DBC166711562BE9408419A24D)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE75F4F4A9D67BC98BA7DB8DBE3C519516572DA4E)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE895F499BC653C0CA36FB31C5936FC768CAD263E)), NULL); InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_1 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_1); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_1, L_0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_System_IConvertible_ToSingle_m6DF18561FBA23392B504A2F3014C560119D5572D_RuntimeMethod_var))); } } IL2CPP_EXTERN_C float Char_System_IConvertible_ToSingle_m6DF18561FBA23392B504A2F3014C560119D5572D_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); float _returnValue; _returnValue = Char_System_IConvertible_ToSingle_m6DF18561FBA23392B504A2F3014C560119D5572D(_thisAdjusted, ___provider0, method); return _returnValue; } // System.Double System.Char::System.IConvertible.ToDouble(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Char_System_IConvertible_ToDouble_mCFFD243E00E63755A02502B3587AFED2871BA28B (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { { String_t* L_0; L_0 = SR_Format_mCBC2E13309DB2E03F48F50E5189DD215B5BA7186(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6E9AEBB5505B4A1DBC166711562BE9408419A24D)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE75F4F4A9D67BC98BA7DB8DBE3C519516572DA4E)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF13E4BFF086D4E511E68B0617B76ACC5BD5AFFE7)), NULL); InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_1 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_1); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_1, L_0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_System_IConvertible_ToDouble_mCFFD243E00E63755A02502B3587AFED2871BA28B_RuntimeMethod_var))); } } IL2CPP_EXTERN_C double Char_System_IConvertible_ToDouble_mCFFD243E00E63755A02502B3587AFED2871BA28B_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); double _returnValue; _returnValue = Char_System_IConvertible_ToDouble_mCFFD243E00E63755A02502B3587AFED2871BA28B(_thisAdjusted, ___provider0, method); return _returnValue; } // System.Decimal System.Char::System.IConvertible.ToDecimal(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Char_System_IConvertible_ToDecimal_m8F8DC304778474C5F234C04893A7E435D3B8CBA2 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { { String_t* L_0; L_0 = SR_Format_mCBC2E13309DB2E03F48F50E5189DD215B5BA7186(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6E9AEBB5505B4A1DBC166711562BE9408419A24D)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE75F4F4A9D67BC98BA7DB8DBE3C519516572DA4E)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5B41A58E45555854EC2026B9B5F8243AA9E7ED4B)), NULL); InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_1 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_1); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_1, L_0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_System_IConvertible_ToDecimal_m8F8DC304778474C5F234C04893A7E435D3B8CBA2_RuntimeMethod_var))); } } IL2CPP_EXTERN_C Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Char_System_IConvertible_ToDecimal_m8F8DC304778474C5F234C04893A7E435D3B8CBA2_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F _returnValue; _returnValue = Char_System_IConvertible_ToDecimal_m8F8DC304778474C5F234C04893A7E435D3B8CBA2(_thisAdjusted, ___provider0, method); return _returnValue; } // System.DateTime System.Char::System.IConvertible.ToDateTime(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D Char_System_IConvertible_ToDateTime_m049E4F0DE75C1A8B7F9D6585ED227C3DBB381E9C (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { { String_t* L_0; L_0 = SR_Format_mCBC2E13309DB2E03F48F50E5189DD215B5BA7186(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6E9AEBB5505B4A1DBC166711562BE9408419A24D)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE75F4F4A9D67BC98BA7DB8DBE3C519516572DA4E)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral401602777C44EA69B5FF9AB6AB2D47AEEC89D2AA)), NULL); InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_1 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_1); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_1, L_0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_System_IConvertible_ToDateTime_m049E4F0DE75C1A8B7F9D6585ED227C3DBB381E9C_RuntimeMethod_var))); } } IL2CPP_EXTERN_C DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D Char_System_IConvertible_ToDateTime_m049E4F0DE75C1A8B7F9D6585ED227C3DBB381E9C_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___provider0, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D _returnValue; _returnValue = Char_System_IConvertible_ToDateTime_m049E4F0DE75C1A8B7F9D6585ED227C3DBB381E9C(_thisAdjusted, ___provider0, method); return _returnValue; } // System.Object System.Char::System.IConvertible.ToType(System.Type,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Char_System_IConvertible_ToType_m573727F6924194290136ED9FDC123736729AEAA3 (Il2CppChar* __this, Type_t* ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = *((uint16_t*)__this); Il2CppChar L_1 = ((Il2CppChar)L_0); RuntimeObject* L_2 = Box(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var, &L_1); Type_t* L_3 = ___type0; RuntimeObject* L_4 = ___provider1; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); RuntimeObject* L_5; L_5 = Convert_DefaultToType_mA9DEFD8F897A7E13EA62DA8052A509C46D60B04F((RuntimeObject*)L_2, L_3, L_4, NULL); return L_5; } } IL2CPP_EXTERN_C RuntimeObject* Char_System_IConvertible_ToType_m573727F6924194290136ED9FDC123736729AEAA3_AdjustorThunk (RuntimeObject* __this, Type_t* ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method) { Il2CppChar* _thisAdjusted; int32_t _offset = 1; _thisAdjusted = reinterpret_cast(__this + _offset); RuntimeObject* _returnValue; _returnValue = Char_System_IConvertible_ToType_m573727F6924194290136ED9FDC123736729AEAA3(_thisAdjusted, ___type0, ___provider1, method); return _returnValue; } // System.Boolean System.Char::IsControl(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsControl_m7B006691A34165B76DF65393181827D62104F6EC (Il2CppChar ___c0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___c0; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_1; L_1 = Char_IsLatin1_mDAE3647705C0623050B979F91708EDA6765F61A4(L_0, NULL); if (!L_1) { goto IL_0013; } } { Il2CppChar L_2 = ___c0; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); int32_t L_3; L_3 = Char_GetLatin1UnicodeCategory_m2865763AF77B942390649E0025297D76DE9326EB(L_2, NULL); return (bool)((((int32_t)L_3) == ((int32_t)((int32_t)14)))? 1 : 0); } IL_0013: { Il2CppChar L_4 = ___c0; int32_t L_5; L_5 = CharUnicodeInfo_GetUnicodeCategory_m1EA8314CF89D9C744D5B2BED9F3479C7C5467319(L_4, NULL); return (bool)((((int32_t)L_5) == ((int32_t)((int32_t)14)))? 1 : 0); } } // System.Boolean System.Char::IsLetterOrDigit(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsLetterOrDigit_m3CB80D9BE7A7D964BB81A9906B0757045A31C5FD (String_t* ___s0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Il2CppChar V_0 = 0x0; { String_t* L_0 = ___s0; 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))); NullCheck(L_1); ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDAF2BD03270A51BF9C135F3694DCAD2D3E66F465)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_IsLetterOrDigit_m3CB80D9BE7A7D964BB81A9906B0757045A31C5FD_RuntimeMethod_var))); } IL_000e: { int32_t L_2 = ___index1; String_t* L_3 = ___s0; NullCheck(L_3); int32_t L_4; L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL); if ((!(((uint32_t)L_2) >= ((uint32_t)L_4)))) { goto IL_0022; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_5 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_5); ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_IsLetterOrDigit_m3CB80D9BE7A7D964BB81A9906B0757045A31C5FD_RuntimeMethod_var))); } IL_0022: { String_t* L_6 = ___s0; int32_t L_7 = ___index1; NullCheck(L_6); Il2CppChar L_8; L_8 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_6, L_7, NULL); V_0 = L_8; Il2CppChar L_9 = V_0; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_10; L_10 = Char_IsLatin1_mDAE3647705C0623050B979F91708EDA6765F61A4(L_9, NULL); if (!L_10) { goto IL_003e; } } { Il2CppChar L_11 = V_0; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); int32_t L_12; L_12 = Char_GetLatin1UnicodeCategory_m2865763AF77B942390649E0025297D76DE9326EB(L_11, NULL); bool L_13; L_13 = Char_CheckLetterOrDigit_m76D5839A6AAFF507180AE5F42AD106E77887AFFC(L_12, NULL); return L_13; } IL_003e: { String_t* L_14 = ___s0; int32_t L_15 = ___index1; int32_t L_16; L_16 = CharUnicodeInfo_GetUnicodeCategory_m21403628A021BF1367C3E7CFE9AB1475F7A60DB7(L_14, L_15, NULL); il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_17; L_17 = Char_CheckLetterOrDigit_m76D5839A6AAFF507180AE5F42AD106E77887AFFC(L_16, NULL); return L_17; } } // System.Boolean System.Char::CheckNumber(System.Globalization.UnicodeCategory) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_CheckNumber_m193CAE991460253C044BCBCFCAFAC112FF568837 (int32_t ___uc0, const RuntimeMethod* method) { { int32_t L_0 = ___uc0; if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, 8))) <= ((uint32_t)2)))) { goto IL_0008; } } { return (bool)1; } IL_0008: { return (bool)0; } } // System.Boolean System.Char::IsNumber(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsNumber_mDC791095BD939D5BC25410006FB6619CB77C2716 (Il2CppChar ___c0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___c0; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_1; L_1 = Char_IsLatin1_mDAE3647705C0623050B979F91708EDA6765F61A4(L_0, NULL); if (!L_1) { goto IL_002c; } } { Il2CppChar L_2 = ___c0; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_3; L_3 = Char_IsAscii_mE9DB6271D433C5A5DF8C466A9A9E1F3DEA4AEB46(L_2, NULL); if (!L_3) { goto IL_0020; } } { Il2CppChar L_4 = ___c0; if ((((int32_t)L_4) < ((int32_t)((int32_t)48)))) { goto IL_001e; } } { Il2CppChar L_5 = ___c0; return (bool)((((int32_t)((((int32_t)L_5) > ((int32_t)((int32_t)57)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_001e: { return (bool)0; } IL_0020: { Il2CppChar L_6 = ___c0; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); int32_t L_7; L_7 = Char_GetLatin1UnicodeCategory_m2865763AF77B942390649E0025297D76DE9326EB(L_6, NULL); bool L_8; L_8 = Char_CheckNumber_m193CAE991460253C044BCBCFCAFAC112FF568837(L_7, NULL); return L_8; } IL_002c: { Il2CppChar L_9 = ___c0; int32_t L_10; L_10 = CharUnicodeInfo_GetUnicodeCategory_m1EA8314CF89D9C744D5B2BED9F3479C7C5467319(L_9, NULL); il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_11; L_11 = Char_CheckNumber_m193CAE991460253C044BCBCFCAFAC112FF568837(L_10, NULL); return L_11; } } // System.Boolean System.Char::IsNumber(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsNumber_mF099A82125A3ACA2FDD2B751B04504E9B4E44897 (String_t* ___s0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Il2CppChar V_0 = 0x0; { String_t* L_0 = ___s0; 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))); NullCheck(L_1); ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDAF2BD03270A51BF9C135F3694DCAD2D3E66F465)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_IsNumber_mF099A82125A3ACA2FDD2B751B04504E9B4E44897_RuntimeMethod_var))); } IL_000e: { int32_t L_2 = ___index1; String_t* L_3 = ___s0; NullCheck(L_3); int32_t L_4; L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL); if ((!(((uint32_t)L_2) >= ((uint32_t)L_4)))) { goto IL_0022; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_5 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_5); ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_IsNumber_mF099A82125A3ACA2FDD2B751B04504E9B4E44897_RuntimeMethod_var))); } IL_0022: { String_t* L_6 = ___s0; int32_t L_7 = ___index1; NullCheck(L_6); Il2CppChar L_8; L_8 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_6, L_7, NULL); V_0 = L_8; Il2CppChar L_9 = V_0; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_10; L_10 = Char_IsLatin1_mDAE3647705C0623050B979F91708EDA6765F61A4(L_9, NULL); if (!L_10) { goto IL_0056; } } { Il2CppChar L_11 = V_0; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_12; L_12 = Char_IsAscii_mE9DB6271D433C5A5DF8C466A9A9E1F3DEA4AEB46(L_11, NULL); if (!L_12) { goto IL_004a; } } { Il2CppChar L_13 = V_0; if ((((int32_t)L_13) < ((int32_t)((int32_t)48)))) { goto IL_0048; } } { Il2CppChar L_14 = V_0; return (bool)((((int32_t)((((int32_t)L_14) > ((int32_t)((int32_t)57)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_0048: { return (bool)0; } IL_004a: { Il2CppChar L_15 = V_0; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); int32_t L_16; L_16 = Char_GetLatin1UnicodeCategory_m2865763AF77B942390649E0025297D76DE9326EB(L_15, NULL); bool L_17; L_17 = Char_CheckNumber_m193CAE991460253C044BCBCFCAFAC112FF568837(L_16, NULL); return L_17; } IL_0056: { String_t* L_18 = ___s0; int32_t L_19 = ___index1; int32_t L_20; L_20 = CharUnicodeInfo_GetUnicodeCategory_m21403628A021BF1367C3E7CFE9AB1475F7A60DB7(L_18, L_19, NULL); il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_21; L_21 = Char_CheckNumber_m193CAE991460253C044BCBCFCAFAC112FF568837(L_20, NULL); return L_21; } } // System.Boolean System.Char::CheckSeparator(System.Globalization.UnicodeCategory) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_CheckSeparator_m0A26D7961EDCF82ED1457F3D64C0A5C00878899B (int32_t ___uc0, const RuntimeMethod* method) { { int32_t L_0 = ___uc0; if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, ((int32_t)11)))) <= ((uint32_t)2)))) { goto IL_0009; } } { return (bool)1; } IL_0009: { return (bool)0; } } // System.Boolean System.Char::IsSeparatorLatin1(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsSeparatorLatin1_m4F7F173D5F045AF010207CABC5E3E75A4C54E534 (Il2CppChar ___c0, const RuntimeMethod* method) { { Il2CppChar L_0 = ___c0; if ((((int32_t)L_0) == ((int32_t)((int32_t)32)))) { goto IL_000e; } } { Il2CppChar L_1 = ___c0; return (bool)((((int32_t)L_1) == ((int32_t)((int32_t)160)))? 1 : 0); } IL_000e: { return (bool)1; } } // System.Boolean System.Char::IsSeparator(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsSeparator_mDCBCD6C8304D946C3E1998A847DEA04928C72394 (Il2CppChar ___c0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___c0; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_1; L_1 = Char_IsLatin1_mDAE3647705C0623050B979F91708EDA6765F61A4(L_0, NULL); if (!L_1) { goto IL_000f; } } { Il2CppChar L_2 = ___c0; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_3; L_3 = Char_IsSeparatorLatin1_m4F7F173D5F045AF010207CABC5E3E75A4C54E534(L_2, NULL); return L_3; } IL_000f: { Il2CppChar L_4 = ___c0; int32_t L_5; L_5 = CharUnicodeInfo_GetUnicodeCategory_m1EA8314CF89D9C744D5B2BED9F3479C7C5467319(L_4, NULL); il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_6; L_6 = Char_CheckSeparator_m0A26D7961EDCF82ED1457F3D64C0A5C00878899B(L_5, NULL); return L_6; } } // System.Boolean System.Char::IsSurrogate(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsSurrogate_mAA37183DD9C3A6CB9B8107F24D00BCB9B76ECA02 (Il2CppChar ___c0, const RuntimeMethod* method) { { Il2CppChar L_0 = ___c0; if ((((int32_t)L_0) < ((int32_t)((int32_t)55296)))) { goto IL_0014; } } { Il2CppChar L_1 = ___c0; return (bool)((((int32_t)((((int32_t)L_1) > ((int32_t)((int32_t)57343)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_0014: { return (bool)0; } } // System.Boolean System.Char::IsSurrogate(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsSurrogate_m02BBD51B248388127160E4005BAA411CAEC1B357 (String_t* ___s0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___s0; 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))); NullCheck(L_1); ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDAF2BD03270A51BF9C135F3694DCAD2D3E66F465)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_IsSurrogate_m02BBD51B248388127160E4005BAA411CAEC1B357_RuntimeMethod_var))); } IL_000e: { int32_t L_2 = ___index1; String_t* L_3 = ___s0; NullCheck(L_3); int32_t L_4; L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL); if ((!(((uint32_t)L_2) >= ((uint32_t)L_4)))) { goto IL_0022; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_5 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_5); ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_IsSurrogate_m02BBD51B248388127160E4005BAA411CAEC1B357_RuntimeMethod_var))); } IL_0022: { String_t* L_6 = ___s0; int32_t L_7 = ___index1; NullCheck(L_6); Il2CppChar L_8; L_8 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_6, L_7, NULL); il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_9; L_9 = Char_IsSurrogate_mAA37183DD9C3A6CB9B8107F24D00BCB9B76ECA02(L_8, NULL); return L_9; } } // System.Boolean System.Char::IsWhiteSpace(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsWhiteSpace_m3F4E1CAF8C0043068E02A5C3E9D87B6A99800F0A (String_t* ___s0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___s0; 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))); NullCheck(L_1); ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDAF2BD03270A51BF9C135F3694DCAD2D3E66F465)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_IsWhiteSpace_m3F4E1CAF8C0043068E02A5C3E9D87B6A99800F0A_RuntimeMethod_var))); } IL_000e: { int32_t L_2 = ___index1; String_t* L_3 = ___s0; NullCheck(L_3); int32_t L_4; L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL); if ((!(((uint32_t)L_2) >= ((uint32_t)L_4)))) { goto IL_0022; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_5 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_5); ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_IsWhiteSpace_m3F4E1CAF8C0043068E02A5C3E9D87B6A99800F0A_RuntimeMethod_var))); } IL_0022: { String_t* L_6 = ___s0; int32_t L_7 = ___index1; NullCheck(L_6); Il2CppChar L_8; L_8 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_6, L_7, NULL); il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_9; L_9 = Char_IsLatin1_mDAE3647705C0623050B979F91708EDA6765F61A4(L_8, NULL); if (!L_9) { goto IL_003d; } } { String_t* L_10 = ___s0; int32_t L_11 = ___index1; NullCheck(L_10); Il2CppChar L_12; L_12 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_10, L_11, NULL); il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_13; L_13 = Char_IsWhiteSpaceLatin1_mC6DDF00F21F333592133A5A8A01318EDD2512578(L_12, NULL); return L_13; } IL_003d: { String_t* L_14 = ___s0; int32_t L_15 = ___index1; bool L_16; L_16 = CharUnicodeInfo_IsWhiteSpace_m7C33B1C929F586A8061CB6A4BC44EADF4717288A(L_14, L_15, NULL); return L_16; } } // System.Globalization.UnicodeCategory System.Char::GetUnicodeCategory(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_GetUnicodeCategory_m8BC9F8A973843AD3B62358285AED47C5185B0BE1 (Il2CppChar ___c0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___c0; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_1; L_1 = Char_IsLatin1_mDAE3647705C0623050B979F91708EDA6765F61A4(L_0, NULL); if (!L_1) { goto IL_000f; } } { Il2CppChar L_2 = ___c0; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); int32_t L_3; L_3 = Char_GetLatin1UnicodeCategory_m2865763AF77B942390649E0025297D76DE9326EB(L_2, NULL); return L_3; } IL_000f: { Il2CppChar L_4 = ___c0; int32_t L_5; L_5 = CharUnicodeInfo_GetUnicodeCategory_m9D7EA7AEB2B282195ECCFE164A7BDC40AA3D6F96(L_4, NULL); return L_5; } } // System.Globalization.UnicodeCategory System.Char::GetUnicodeCategory(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_GetUnicodeCategory_m7097DCE781FF6F554FB74374D59F0D4BADED2003 (String_t* ___s0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___s0; 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))); NullCheck(L_1); ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDAF2BD03270A51BF9C135F3694DCAD2D3E66F465)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_GetUnicodeCategory_m7097DCE781FF6F554FB74374D59F0D4BADED2003_RuntimeMethod_var))); } IL_000e: { int32_t L_2 = ___index1; String_t* L_3 = ___s0; NullCheck(L_3); int32_t L_4; L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL); if ((!(((uint32_t)L_2) >= ((uint32_t)L_4)))) { goto IL_0022; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_5 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_5); ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_GetUnicodeCategory_m7097DCE781FF6F554FB74374D59F0D4BADED2003_RuntimeMethod_var))); } IL_0022: { String_t* L_6 = ___s0; int32_t L_7 = ___index1; NullCheck(L_6); Il2CppChar L_8; L_8 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_6, L_7, NULL); il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_9; L_9 = Char_IsLatin1_mDAE3647705C0623050B979F91708EDA6765F61A4(L_8, NULL); if (!L_9) { goto IL_003d; } } { String_t* L_10 = ___s0; int32_t L_11 = ___index1; NullCheck(L_10); Il2CppChar L_12; L_12 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_10, L_11, NULL); il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); int32_t L_13; L_13 = Char_GetLatin1UnicodeCategory_m2865763AF77B942390649E0025297D76DE9326EB(L_12, NULL); return L_13; } IL_003d: { String_t* L_14 = ___s0; int32_t L_15 = ___index1; int32_t L_16; L_16 = CharUnicodeInfo_InternalGetUnicodeCategory_m35376C53151052BC2CE08F47EB98F1C476F7F417(L_14, L_15, NULL); return L_16; } } // System.Boolean System.Char::IsHighSurrogate(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsHighSurrogate_m8842F5E950FC9EAE3B20556630C2AA5CA9FEB6D4 (Il2CppChar ___c0, const RuntimeMethod* method) { { Il2CppChar L_0 = ___c0; if ((((int32_t)L_0) < ((int32_t)((int32_t)55296)))) { goto IL_0014; } } { Il2CppChar L_1 = ___c0; return (bool)((((int32_t)((((int32_t)L_1) > ((int32_t)((int32_t)56319)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_0014: { return (bool)0; } } // System.Boolean System.Char::IsHighSurrogate(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsHighSurrogate_m46DB19B60C8D6A5E9EC36D64A14A7460F55A75D9 (String_t* ___s0, int32_t ___index1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___s0; 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))); NullCheck(L_1); ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDAF2BD03270A51BF9C135F3694DCAD2D3E66F465)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_IsHighSurrogate_m46DB19B60C8D6A5E9EC36D64A14A7460F55A75D9_RuntimeMethod_var))); } IL_000e: { int32_t L_2 = ___index1; if ((((int32_t)L_2) < ((int32_t)0))) { goto IL_001b; } } { int32_t L_3 = ___index1; String_t* L_4 = ___s0; NullCheck(L_4); int32_t L_5; L_5 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_4, NULL); if ((((int32_t)L_3) < ((int32_t)L_5))) { goto IL_0026; } } IL_001b: { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_6 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_6); ArgumentOutOfRangeException__ctor_mBC1D5DEEA1BA41DE77228CB27D6BAFEB6DCCBF4A(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_IsHighSurrogate_m46DB19B60C8D6A5E9EC36D64A14A7460F55A75D9_RuntimeMethod_var))); } IL_0026: { String_t* L_7 = ___s0; int32_t L_8 = ___index1; NullCheck(L_7); Il2CppChar L_9; L_9 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_7, L_8, NULL); il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_10; L_10 = Char_IsHighSurrogate_m8842F5E950FC9EAE3B20556630C2AA5CA9FEB6D4(L_9, NULL); return L_10; } } // System.Boolean System.Char::IsLowSurrogate(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsLowSurrogate_m9B21C320DB62482E16DA5952B93E5EDEA269AD62 (Il2CppChar ___c0, const RuntimeMethod* method) { { Il2CppChar L_0 = ___c0; if ((((int32_t)L_0) < ((int32_t)((int32_t)56320)))) { goto IL_0014; } } { Il2CppChar L_1 = ___c0; return (bool)((((int32_t)((((int32_t)L_1) > ((int32_t)((int32_t)57343)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_0014: { return (bool)0; } } // System.Boolean System.Char::IsSurrogatePair(System.Char,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsSurrogatePair_m151511C02189357F58B62328B00F1C2BFA24F44E (Il2CppChar ___highSurrogate0, Il2CppChar ___lowSurrogate1, const RuntimeMethod* method) { { Il2CppChar L_0 = ___highSurrogate0; if ((((int32_t)L_0) < ((int32_t)((int32_t)55296)))) { goto IL_0026; } } { Il2CppChar L_1 = ___highSurrogate0; if ((((int32_t)L_1) > ((int32_t)((int32_t)56319)))) { goto IL_0026; } } { Il2CppChar L_2 = ___lowSurrogate1; if ((((int32_t)L_2) < ((int32_t)((int32_t)56320)))) { goto IL_0024; } } { Il2CppChar L_3 = ___lowSurrogate1; return (bool)((((int32_t)((((int32_t)L_3) > ((int32_t)((int32_t)57343)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_0024: { return (bool)0; } IL_0026: { return (bool)0; } } // System.Int32 System.Char::ConvertToUtf32(System.Char,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_ConvertToUtf32_m6617D8645EA36A19789225AFB091CDB900C54FBE (Il2CppChar ___highSurrogate0, Il2CppChar ___lowSurrogate1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___highSurrogate0; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_1; L_1 = Char_IsHighSurrogate_m8842F5E950FC9EAE3B20556630C2AA5CA9FEB6D4(L_0, NULL); if (L_1) { goto IL_0018; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_2 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_2); ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDFEB75073613366ED790055534C407E4105DE290)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDA144A4546BA813419D20020C8E1F983163D5616)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_ConvertToUtf32_m6617D8645EA36A19789225AFB091CDB900C54FBE_RuntimeMethod_var))); } IL_0018: { Il2CppChar L_3 = ___lowSurrogate1; il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); bool L_4; L_4 = Char_IsLowSurrogate_m9B21C320DB62482E16DA5952B93E5EDEA269AD62(L_3, NULL); if (L_4) { goto IL_0030; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_5 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_5); ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF7C654A6F7651FC5597CD86E2E325E8384CCF203)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD8BC2BD13ADDE8D5A4042FB0941980613775040D)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Char_ConvertToUtf32_m6617D8645EA36A19789225AFB091CDB900C54FBE_RuntimeMethod_var))); } IL_0030: { Il2CppChar L_6 = ___highSurrogate0; Il2CppChar L_7 = ___lowSurrogate1; return ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(((int32_t)il2cpp_codegen_subtract((int32_t)L_6, ((int32_t)55296))), ((int32_t)1024))), ((int32_t)il2cpp_codegen_subtract((int32_t)L_7, ((int32_t)56320))))), ((int32_t)65536))); } } // System.Void System.Char::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Char__cctor_m5B6F466E9617242A03965B6E151E7DE47633D170 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____801494072CDD59E61F9AA9345A80D045378705DFDCE94902C22EAEAE049BE780_55_FieldInfo_var); s_Il2CppMethodInitialized = true; } { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)((int32_t)256)); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = L_0; RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_2 = { reinterpret_cast (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____801494072CDD59E61F9AA9345A80D045378705DFDCE94902C22EAEAE049BE780_55_FieldInfo_var) }; RuntimeHelpers_InitializeArray_mE10C3436BA703E4D9D41B3F8F365E4C34F9926EF((RuntimeArray*)L_1, L_2, NULL); ((Char_t521A6F19B456D956AF452D926C32709DC03D6B17_StaticFields*)il2cpp_codegen_static_fields_for(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var))->___s_categoryForLatin1_3 = L_1; Il2CppCodeGenWriteBarrier((void**)(&((Char_t521A6F19B456D956AF452D926C32709DC03D6B17_StaticFields*)il2cpp_codegen_static_fields_for(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var))->___s_categoryForLatin1_3), (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 // System.Void System.CharEnumerator::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CharEnumerator__ctor_m64C938888062D37D44227D10723759DB93FF3717 (CharEnumerator_tD01B8BB6885F5B73C03B665FA10D64B8B61B4A7D* __this, String_t* ___str0, const RuntimeMethod* method) { { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); String_t* L_0 = ___str0; __this->____str_0 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->____str_0), (void*)L_0); __this->____index_1 = (-1); return; } } // System.Object System.CharEnumerator::Clone() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CharEnumerator_Clone_m92D1E8E12B57DDAC5B459638672CB549D1FAD616 (CharEnumerator_tD01B8BB6885F5B73C03B665FA10D64B8B61B4A7D* __this, const RuntimeMethod* method) { { RuntimeObject* L_0; L_0 = Object_MemberwiseClone_m0676AEE25C3CF7C09F15ECF9EC5CC407863617B3(__this, NULL); return L_0; } } // System.Boolean System.CharEnumerator::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CharEnumerator_MoveNext_mAA72D69DA7D7CA043947A2114EC042BEFDBF64FF (CharEnumerator_tD01B8BB6885F5B73C03B665FA10D64B8B61B4A7D* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->____index_1; String_t* L_1 = __this->____str_0; NullCheck(L_1); int32_t L_2; L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_1, NULL); if ((((int32_t)L_0) >= ((int32_t)((int32_t)il2cpp_codegen_subtract(L_2, 1))))) { goto IL_003c; } } { int32_t L_3 = __this->____index_1; __this->____index_1 = ((int32_t)il2cpp_codegen_add(L_3, 1)); String_t* L_4 = __this->____str_0; int32_t L_5 = __this->____index_1; NullCheck(L_4); Il2CppChar L_6; L_6 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_4, L_5, NULL); __this->____currentElement_2 = L_6; return (bool)1; } IL_003c: { String_t* L_7 = __this->____str_0; NullCheck(L_7); int32_t L_8; L_8 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_7, NULL); __this->____index_1 = L_8; return (bool)0; } } // System.Void System.CharEnumerator::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CharEnumerator_Dispose_mA3FB3CCABFC601A862ADD0468FA6DD62B77334A7 (CharEnumerator_tD01B8BB6885F5B73C03B665FA10D64B8B61B4A7D* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->____str_0; if (!L_0) { goto IL_0019; } } { String_t* L_1 = __this->____str_0; NullCheck(L_1); int32_t L_2; L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_1, NULL); __this->____index_1 = L_2; } IL_0019: { __this->____str_0 = (String_t*)NULL; Il2CppCodeGenWriteBarrier((void**)(&__this->____str_0), (void*)(String_t*)NULL); return; } } // System.Object System.CharEnumerator::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CharEnumerator_System_Collections_IEnumerator_get_Current_mC5A67BD65B54B7D55A46B890659C2EFC8C799CEA (CharEnumerator_tD01B8BB6885F5B73C03B665FA10D64B8B61B4A7D* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0; L_0 = CharEnumerator_get_Current_mCF74B5DF8F8017240ECBB935A02B2D0BDABCE9BB(__this, NULL); Il2CppChar L_1 = L_0; RuntimeObject* L_2 = Box(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var, &L_1); return L_2; } } // System.Char System.CharEnumerator::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar CharEnumerator_get_Current_mCF74B5DF8F8017240ECBB935A02B2D0BDABCE9BB (CharEnumerator_tD01B8BB6885F5B73C03B665FA10D64B8B61B4A7D* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->____index_1; if ((!(((uint32_t)L_0) == ((uint32_t)(-1))))) { goto IL_0014; } } { InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_1); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2390D6884F59E2E4EA04837AD7D6268548597633)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CharEnumerator_get_Current_mCF74B5DF8F8017240ECBB935A02B2D0BDABCE9BB_RuntimeMethod_var))); } IL_0014: { int32_t L_2 = __this->____index_1; String_t* L_3 = __this->____str_0; NullCheck(L_3); int32_t L_4; L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL); if ((((int32_t)L_2) < ((int32_t)L_4))) { goto IL_0032; } } { InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_5 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_5); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral834F4B6837B71847C4048C946DF8754B323D6BF9)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CharEnumerator_get_Current_mCF74B5DF8F8017240ECBB935A02B2D0BDABCE9BB_RuntimeMethod_var))); } IL_0032: { Il2CppChar L_6 = __this->____currentElement_2; return L_6; } } // System.Void System.CharEnumerator::Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CharEnumerator_Reset_m731CE3C2670EA81BE60EEE301108D17010751B10 (CharEnumerator_tD01B8BB6885F5B73C03B665FA10D64B8B61B4A7D* __this, const RuntimeMethod* method) { { __this->____currentElement_2 = 0; __this->____index_1 = (-1); return; } } // System.Void System.CharEnumerator::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CharEnumerator__ctor_mFAEB1FA3AE57D9D8265074397BCA22981C4D5FFD (CharEnumerator_tD01B8BB6885F5B73C03B665FA10D64B8B61B4A7D* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharEnumerator__ctor_mFAEB1FA3AE57D9D8265074397BCA22981C4D5FFD_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(CharEnumerator__ctor_mFAEB1FA3AE57D9D8265074397BCA22981C4D5FFD_RuntimeMethod_var); 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 // System.Boolean System.Convert::TryDecodeFromUtf16(System.ReadOnlySpan`1,System.Span`1,System.Int32&,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_TryDecodeFromUtf16_m2BD6E50ED7F7CF66CA230283FB137D067863D819 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___utf160, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 ___bytes1, int32_t* ___consumed2, int32_t* ___written3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MemoryMarshal_GetReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m59D122F4A8516149EE7D183E97926157DF41EA1B_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MemoryMarshal_GetReference_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_m90426C97E513B64C17AE47E597545E6686B0900E_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1_get_Length_m8E944E4954E037877A25B9FF6B901F1F901D4769_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } Il2CppChar* V_0 = NULL; uint8_t* V_1 = NULL; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; int32_t V_5 = 0; int8_t* V_6 = NULL; int32_t V_7 = 0; int32_t V_8 = 0; int32_t V_9 = 0; int32_t V_10 = 0; int32_t V_11 = 0; int32_t V_12 = 0; { ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_0 = ___utf160; Il2CppChar* L_1; L_1 = MemoryMarshal_GetReference_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_m90426C97E513B64C17AE47E597545E6686B0900E(L_0, MemoryMarshal_GetReference_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_m90426C97E513B64C17AE47E597545E6686B0900E_RuntimeMethod_var); V_0 = L_1; Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_2 = ___bytes1; uint8_t* L_3; L_3 = MemoryMarshal_GetReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m59D122F4A8516149EE7D183E97926157DF41EA1B(L_2, MemoryMarshal_GetReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m59D122F4A8516149EE7D183E97926157DF41EA1B_RuntimeMethod_var); V_1 = L_3; int32_t L_4; L_4 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___utf160), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var); V_2 = ((int32_t)(L_4&((int32_t)-4))); int32_t L_5; L_5 = Span_1_get_Length_m8E944E4954E037877A25B9FF6B901F1F901D4769_inline((&___bytes1), Span_1_get_Length_m8E944E4954E037877A25B9FF6B901F1F901D4769_RuntimeMethod_var); V_3 = L_5; V_4 = 0; V_5 = 0; int32_t L_6; L_6 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___utf160), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var); if (!L_6) { goto IL_01f7; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); SByteU5BU5D_t88116DA68378C3333DB73E7D36C1A06AFAA91913* L_7 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___s_decodingMap_0; NullCheck(L_7); V_6 = ((L_7)->GetAddressAt(static_cast(0))); int32_t L_8 = V_3; int32_t L_9 = V_2; if ((((int32_t)L_8) < ((int32_t)((int32_t)il2cpp_codegen_multiply(((int32_t)(L_9>>2)), 3))))) { goto IL_004f; } } { int32_t L_10 = V_2; V_7 = ((int32_t)il2cpp_codegen_subtract(L_10, 4)); goto IL_008c; } IL_004f: { int32_t L_11 = V_3; V_7 = ((int32_t)il2cpp_codegen_multiply(((int32_t)(L_11/3)), 4)); goto IL_008c; } IL_0058: { Il2CppChar* L_12 = V_0; int32_t L_13 = V_4; Il2CppChar* L_14; L_14 = il2cpp_unsafe_add(L_12, L_13); int8_t* L_15 = V_6; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int32_t L_16; L_16 = Convert_Decode_mD9AF0DB8679568C1727F60583567F7669AE8FDDF_inline(L_14, L_15, NULL); V_12 = L_16; int32_t L_17 = V_12; if ((((int32_t)L_17) < ((int32_t)0))) { goto IL_0201; } } { uint8_t* L_18 = V_1; int32_t L_19 = V_5; uint8_t* L_20; L_20 = il2cpp_unsafe_add(L_18, L_19); int32_t L_21 = V_12; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_WriteThreeLowOrderBytes_mB8A6D6DA8A0990B72ABE97AAF4D965F1A33E375F_inline(L_20, L_21, NULL); int32_t L_22 = V_5; V_5 = ((int32_t)il2cpp_codegen_add(L_22, 3)); int32_t L_23 = V_4; V_4 = ((int32_t)il2cpp_codegen_add(L_23, 4)); } IL_008c: { int32_t L_24 = V_4; int32_t L_25 = V_7; if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_0058; } } { int32_t L_26 = V_7; int32_t L_27 = V_2; if ((!(((uint32_t)L_26) == ((uint32_t)((int32_t)il2cpp_codegen_subtract(L_27, 4)))))) { goto IL_0201; } } { int32_t L_28 = V_4; int32_t L_29 = V_2; if ((((int32_t)L_28) == ((int32_t)L_29))) { goto IL_0201; } } { Il2CppChar* L_30 = V_0; int32_t L_31 = V_2; Il2CppChar* L_32; L_32 = il2cpp_unsafe_add(L_30, ((int32_t)il2cpp_codegen_subtract(L_31, 4))); int32_t L_33 = *((uint16_t*)L_32); V_8 = L_33; Il2CppChar* L_34 = V_0; int32_t L_35 = V_2; Il2CppChar* L_36; L_36 = il2cpp_unsafe_add(L_34, ((int32_t)il2cpp_codegen_subtract(L_35, 3))); int32_t L_37 = *((uint16_t*)L_36); V_9 = L_37; Il2CppChar* L_38 = V_0; int32_t L_39 = V_2; Il2CppChar* L_40; L_40 = il2cpp_unsafe_add(L_38, ((int32_t)il2cpp_codegen_subtract(L_39, 2))); int32_t L_41 = *((uint16_t*)L_40); V_10 = L_41; Il2CppChar* L_42 = V_0; int32_t L_43 = V_2; Il2CppChar* L_44; L_44 = il2cpp_unsafe_add(L_42, ((int32_t)il2cpp_codegen_subtract(L_43, 1))); int32_t L_45 = *((uint16_t*)L_44); V_11 = L_45; int32_t L_46 = V_8; int32_t L_47 = V_9; int32_t L_48 = V_10; int32_t L_49 = V_11; if (((int64_t)(((int64_t)((int32_t)(((int32_t)(((int32_t)(L_46|L_47))|L_48))|L_49)))&((int64_t)(uint64_t)((uint32_t)((int32_t)-256)))))) { goto IL_0201; } } { int8_t* L_50 = V_6; int32_t L_51 = V_8; int8_t* L_52; L_52 = il2cpp_unsafe_add(L_50, L_51); int32_t L_53 = *((int8_t*)L_52); V_8 = L_53; int8_t* L_54 = V_6; int32_t L_55 = V_9; int8_t* L_56; L_56 = il2cpp_unsafe_add(L_54, L_55); int32_t L_57 = *((int8_t*)L_56); V_9 = L_57; int32_t L_58 = V_8; V_8 = ((int32_t)(L_58<<((int32_t)18))); int32_t L_59 = V_9; V_9 = ((int32_t)(L_59<<((int32_t)12))); int32_t L_60 = V_8; int32_t L_61 = V_9; V_8 = ((int32_t)(L_60|L_61)); int32_t L_62 = V_11; if ((((int32_t)L_62) == ((int32_t)((int32_t)61)))) { goto IL_0174; } } { int8_t* L_63 = V_6; int32_t L_64 = V_10; int8_t* L_65; L_65 = il2cpp_unsafe_add(L_63, L_64); int32_t L_66 = *((int8_t*)L_65); V_10 = L_66; int8_t* L_67 = V_6; int32_t L_68 = V_11; int8_t* L_69; L_69 = il2cpp_unsafe_add(L_67, L_68); int32_t L_70 = *((int8_t*)L_69); V_11 = L_70; int32_t L_71 = V_10; V_10 = ((int32_t)(L_71<<6)); int32_t L_72 = V_8; int32_t L_73 = V_11; V_8 = ((int32_t)(L_72|L_73)); int32_t L_74 = V_8; int32_t L_75 = V_10; V_8 = ((int32_t)(L_74|L_75)); int32_t L_76 = V_8; if ((((int32_t)L_76) < ((int32_t)0))) { goto IL_0201; } } { int32_t L_77 = V_5; int32_t L_78 = V_3; if ((((int32_t)L_77) > ((int32_t)((int32_t)il2cpp_codegen_subtract(L_78, 3))))) { goto IL_0201; } } { uint8_t* L_79 = V_1; int32_t L_80 = V_5; uint8_t* L_81; L_81 = il2cpp_unsafe_add(L_79, L_80); int32_t L_82 = V_8; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_WriteThreeLowOrderBytes_mB8A6D6DA8A0990B72ABE97AAF4D965F1A33E375F_inline(L_81, L_82, NULL); int32_t L_83 = V_5; V_5 = ((int32_t)il2cpp_codegen_add(L_83, 3)); goto IL_01e7; } IL_0174: { int32_t L_84 = V_10; if ((((int32_t)L_84) == ((int32_t)((int32_t)61)))) { goto IL_01c6; } } { int8_t* L_85 = V_6; int32_t L_86 = V_10; int8_t* L_87; L_87 = il2cpp_unsafe_add(L_85, L_86); int32_t L_88 = *((int8_t*)L_87); V_10 = L_88; int32_t L_89 = V_10; V_10 = ((int32_t)(L_89<<6)); int32_t L_90 = V_8; int32_t L_91 = V_10; V_8 = ((int32_t)(L_90|L_91)); int32_t L_92 = V_8; if ((((int32_t)L_92) < ((int32_t)0))) { goto IL_0201; } } { int32_t L_93 = V_5; int32_t L_94 = V_3; if ((((int32_t)L_93) > ((int32_t)((int32_t)il2cpp_codegen_subtract(L_94, 2))))) { goto IL_0201; } } { uint8_t* L_95 = V_1; int32_t L_96 = V_5; uint8_t* L_97; L_97 = il2cpp_unsafe_add(L_95, L_96); int32_t L_98 = V_8; *((int8_t*)L_97) = (int8_t)((int32_t)(uint8_t)((int32_t)(L_98>>((int32_t)16)))); uint8_t* L_99 = V_1; int32_t L_100 = V_5; uint8_t* L_101; L_101 = il2cpp_unsafe_add(L_99, ((int32_t)il2cpp_codegen_add(L_100, 1))); int32_t L_102 = V_8; *((int8_t*)L_101) = (int8_t)((int32_t)(uint8_t)((int32_t)(L_102>>8))); int32_t L_103 = V_5; V_5 = ((int32_t)il2cpp_codegen_add(L_103, 2)); goto IL_01e7; } IL_01c6: { int32_t L_104 = V_8; if ((((int32_t)L_104) < ((int32_t)0))) { goto IL_0201; } } { int32_t L_105 = V_5; int32_t L_106 = V_3; if ((((int32_t)L_105) > ((int32_t)((int32_t)il2cpp_codegen_subtract(L_106, 1))))) { goto IL_0201; } } { uint8_t* L_107 = V_1; int32_t L_108 = V_5; uint8_t* L_109; L_109 = il2cpp_unsafe_add(L_107, L_108); int32_t L_110 = V_8; *((int8_t*)L_109) = (int8_t)((int32_t)(uint8_t)((int32_t)(L_110>>((int32_t)16)))); int32_t L_111 = V_5; V_5 = ((int32_t)il2cpp_codegen_add(L_111, 1)); } IL_01e7: { int32_t L_112 = V_4; V_4 = ((int32_t)il2cpp_codegen_add(L_112, 4)); int32_t L_113 = V_2; int32_t L_114; L_114 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___utf160), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var); if ((!(((uint32_t)L_113) == ((uint32_t)L_114)))) { goto IL_0201; } } IL_01f7: { int32_t* L_115 = ___consumed2; int32_t L_116 = V_4; *((int32_t*)L_115) = (int32_t)L_116; int32_t* L_117 = ___written3; int32_t L_118 = V_5; *((int32_t*)L_117) = (int32_t)L_118; return (bool)1; } IL_0201: { int32_t* L_119 = ___consumed2; int32_t L_120 = V_4; *((int32_t*)L_119) = (int32_t)L_120; int32_t* L_121 = ___written3; int32_t L_122 = V_5; *((int32_t*)L_121) = (int32_t)L_122; return (bool)0; } } // System.Int32 System.Convert::Decode(System.Char&,System.SByte&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_Decode_mD9AF0DB8679568C1727F60583567F7669AE8FDDF (Il2CppChar* ___encodedChars0, int8_t* ___decodingMap1, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; { Il2CppChar* L_0 = ___encodedChars0; int32_t L_1 = *((uint16_t*)L_0); V_0 = L_1; Il2CppChar* L_2 = ___encodedChars0; Il2CppChar* L_3; L_3 = il2cpp_unsafe_add(L_2, 1); int32_t L_4 = *((uint16_t*)L_3); V_1 = L_4; Il2CppChar* L_5 = ___encodedChars0; Il2CppChar* L_6; L_6 = il2cpp_unsafe_add(L_5, 2); int32_t L_7 = *((uint16_t*)L_6); V_2 = L_7; Il2CppChar* L_8 = ___encodedChars0; Il2CppChar* L_9; L_9 = il2cpp_unsafe_add(L_8, 3); int32_t L_10 = *((uint16_t*)L_9); V_3 = L_10; int32_t L_11 = V_0; int32_t L_12 = V_1; int32_t L_13 = V_2; int32_t L_14 = V_3; if (!((int64_t)(((int64_t)((int32_t)(((int32_t)(((int32_t)(L_11|L_12))|L_13))|L_14)))&((int64_t)(uint64_t)((uint32_t)((int32_t)-256)))))) { goto IL_0031; } } { return (-1); } IL_0031: { int8_t* L_15 = ___decodingMap1; int32_t L_16 = V_0; int8_t* L_17; L_17 = il2cpp_unsafe_add(L_15, L_16); int32_t L_18 = *((int8_t*)L_17); V_0 = L_18; int8_t* L_19 = ___decodingMap1; int32_t L_20 = V_1; int8_t* L_21; L_21 = il2cpp_unsafe_add(L_19, L_20); int32_t L_22 = *((int8_t*)L_21); V_1 = L_22; int8_t* L_23 = ___decodingMap1; int32_t L_24 = V_2; int8_t* L_25; L_25 = il2cpp_unsafe_add(L_23, L_24); int32_t L_26 = *((int8_t*)L_25); V_2 = L_26; int8_t* L_27 = ___decodingMap1; int32_t L_28 = V_3; int8_t* L_29; L_29 = il2cpp_unsafe_add(L_27, L_28); int32_t L_30 = *((int8_t*)L_29); V_3 = L_30; int32_t L_31 = V_0; V_0 = ((int32_t)(L_31<<((int32_t)18))); int32_t L_32 = V_1; V_1 = ((int32_t)(L_32<<((int32_t)12))); int32_t L_33 = V_2; V_2 = ((int32_t)(L_33<<6)); int32_t L_34 = V_0; int32_t L_35 = V_3; V_0 = ((int32_t)(L_34|L_35)); int32_t L_36 = V_1; int32_t L_37 = V_2; V_1 = ((int32_t)(L_36|L_37)); int32_t L_38 = V_0; int32_t L_39 = V_1; V_0 = ((int32_t)(L_38|L_39)); int32_t L_40 = V_0; return L_40; } } // System.Void System.Convert::WriteThreeLowOrderBytes(System.Byte&,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Convert_WriteThreeLowOrderBytes_mB8A6D6DA8A0990B72ABE97AAF4D965F1A33E375F (uint8_t* ___destination0, int32_t ___value1, const RuntimeMethod* method) { { uint8_t* L_0 = ___destination0; int32_t L_1 = ___value1; *((int8_t*)L_0) = (int8_t)((int32_t)(uint8_t)((int32_t)(L_1>>((int32_t)16)))); uint8_t* L_2 = ___destination0; uint8_t* L_3; L_3 = il2cpp_unsafe_add(L_2, 1); int32_t L_4 = ___value1; *((int8_t*)L_3) = (int8_t)((int32_t)(uint8_t)((int32_t)(L_4>>8))); uint8_t* L_5 = ___destination0; uint8_t* L_6; L_6 = il2cpp_unsafe_add(L_5, 2); int32_t L_7 = ___value1; *((int8_t*)L_6) = (int8_t)((int32_t)(uint8_t)L_7); return; } } // System.TypeCode System.Convert::GetTypeCode(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_GetTypeCode_mD27BD92D52F5248FE6139DACDA3E26BC9CDF22F9 (RuntimeObject* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; { RuntimeObject* L_0 = ___value0; if (L_0) { goto IL_0005; } } { return (int32_t)(0); } IL_0005: { RuntimeObject* L_1 = ___value0; V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)); RuntimeObject* L_2 = V_0; if (!L_2) { goto IL_0016; } } { RuntimeObject* L_3 = V_0; NullCheck(L_3); int32_t L_4; L_4 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.TypeCode System.IConvertible::GetTypeCode() */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_3); return L_4; } IL_0016: { return (int32_t)(1); } } // System.Object System.Convert::ChangeType(System.Object,System.TypeCode,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Convert_ChangeType_m80EA2815A26D7AD545FE89CFA9BF64FBF3AEB676 (RuntimeObject* ___value0, int32_t ___typeCode1, RuntimeObject* ___provider2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; { RuntimeObject* L_0 = ___value0; if (L_0) { goto IL_0011; } } { int32_t L_1 = ___typeCode1; if (!L_1) { goto IL_000f; } } { int32_t L_2 = ___typeCode1; if ((((int32_t)L_2) == ((int32_t)((int32_t)18)))) { goto IL_000f; } } { int32_t L_3 = ___typeCode1; if ((!(((uint32_t)L_3) == ((uint32_t)1)))) { goto IL_0011; } } IL_000f: { return NULL; } IL_0011: { RuntimeObject* L_4 = ___value0; V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_4, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)); RuntimeObject* L_5 = V_0; if (L_5) { goto IL_0026; } } { InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_6 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_6); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6F1AD4518CCFE15EDA37B314B2AF64D13616FF7B)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ChangeType_m80EA2815A26D7AD545FE89CFA9BF64FBF3AEB676_RuntimeMethod_var))); } IL_0026: { int32_t L_7 = ___typeCode1; switch (L_7) { case 0: { goto IL_0148; } case 1: { goto IL_013b; } case 2: { goto IL_013d; } case 3: { goto IL_007d; } case 4: { goto IL_008a; } case 5: { goto IL_0097; } case 6: { goto IL_00a4; } case 7: { goto IL_00b1; } case 8: { goto IL_00be; } case 9: { goto IL_00cb; } case 10: { goto IL_00d8; } case 11: { goto IL_00e5; } case 12: { goto IL_00f2; } case 13: { goto IL_00ff; } case 14: { goto IL_010c; } case 15: { goto IL_0119; } case 16: { goto IL_0126; } case 17: { goto IL_0153; } case 18: { goto IL_0133; } } } { goto IL_0153; } IL_007d: { RuntimeObject* L_8 = V_0; RuntimeObject* L_9 = ___provider2; NullCheck(L_8); bool L_10; L_10 = InterfaceFuncInvoker1< bool, RuntimeObject* >::Invoke(1 /* System.Boolean System.IConvertible::ToBoolean(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_8, L_9); bool L_11 = L_10; RuntimeObject* L_12 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_11); return L_12; } IL_008a: { RuntimeObject* L_13 = V_0; RuntimeObject* L_14 = ___provider2; NullCheck(L_13); Il2CppChar L_15; L_15 = InterfaceFuncInvoker1< Il2CppChar, RuntimeObject* >::Invoke(2 /* System.Char System.IConvertible::ToChar(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_13, L_14); Il2CppChar L_16 = L_15; RuntimeObject* L_17 = Box(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var, &L_16); return L_17; } IL_0097: { RuntimeObject* L_18 = V_0; RuntimeObject* L_19 = ___provider2; NullCheck(L_18); int8_t L_20; L_20 = InterfaceFuncInvoker1< int8_t, RuntimeObject* >::Invoke(3 /* System.SByte System.IConvertible::ToSByte(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_18, L_19); int8_t L_21 = L_20; RuntimeObject* L_22 = Box(SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_il2cpp_TypeInfo_var, &L_21); return L_22; } IL_00a4: { RuntimeObject* L_23 = V_0; RuntimeObject* L_24 = ___provider2; NullCheck(L_23); uint8_t L_25; L_25 = InterfaceFuncInvoker1< uint8_t, RuntimeObject* >::Invoke(4 /* System.Byte System.IConvertible::ToByte(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_23, L_24); uint8_t L_26 = L_25; RuntimeObject* L_27 = Box(Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var, &L_26); return L_27; } IL_00b1: { RuntimeObject* L_28 = V_0; RuntimeObject* L_29 = ___provider2; NullCheck(L_28); int16_t L_30; L_30 = InterfaceFuncInvoker1< int16_t, RuntimeObject* >::Invoke(5 /* System.Int16 System.IConvertible::ToInt16(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_28, L_29); int16_t L_31 = L_30; RuntimeObject* L_32 = Box(Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_il2cpp_TypeInfo_var, &L_31); return L_32; } IL_00be: { RuntimeObject* L_33 = V_0; RuntimeObject* L_34 = ___provider2; NullCheck(L_33); uint16_t L_35; L_35 = InterfaceFuncInvoker1< uint16_t, RuntimeObject* >::Invoke(6 /* System.UInt16 System.IConvertible::ToUInt16(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_33, L_34); uint16_t L_36 = L_35; RuntimeObject* L_37 = Box(UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_il2cpp_TypeInfo_var, &L_36); return L_37; } IL_00cb: { RuntimeObject* L_38 = V_0; RuntimeObject* L_39 = ___provider2; NullCheck(L_38); int32_t L_40; L_40 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(7 /* System.Int32 System.IConvertible::ToInt32(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_38, L_39); int32_t L_41 = L_40; RuntimeObject* L_42 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_41); return L_42; } IL_00d8: { RuntimeObject* L_43 = V_0; RuntimeObject* L_44 = ___provider2; NullCheck(L_43); uint32_t L_45; L_45 = InterfaceFuncInvoker1< uint32_t, RuntimeObject* >::Invoke(8 /* System.UInt32 System.IConvertible::ToUInt32(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_43, L_44); uint32_t L_46 = L_45; RuntimeObject* L_47 = Box(UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var, &L_46); return L_47; } IL_00e5: { RuntimeObject* L_48 = V_0; RuntimeObject* L_49 = ___provider2; NullCheck(L_48); int64_t L_50; L_50 = InterfaceFuncInvoker1< int64_t, RuntimeObject* >::Invoke(9 /* System.Int64 System.IConvertible::ToInt64(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_48, L_49); int64_t L_51 = L_50; RuntimeObject* L_52 = Box(Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var, &L_51); return L_52; } IL_00f2: { RuntimeObject* L_53 = V_0; RuntimeObject* L_54 = ___provider2; NullCheck(L_53); uint64_t L_55; L_55 = InterfaceFuncInvoker1< uint64_t, RuntimeObject* >::Invoke(10 /* System.UInt64 System.IConvertible::ToUInt64(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_53, L_54); uint64_t L_56 = L_55; RuntimeObject* L_57 = Box(UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var, &L_56); return L_57; } IL_00ff: { RuntimeObject* L_58 = V_0; RuntimeObject* L_59 = ___provider2; NullCheck(L_58); float L_60; L_60 = InterfaceFuncInvoker1< float, RuntimeObject* >::Invoke(11 /* System.Single System.IConvertible::ToSingle(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_58, L_59); float L_61 = L_60; RuntimeObject* L_62 = Box(Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var, &L_61); return L_62; } IL_010c: { RuntimeObject* L_63 = V_0; RuntimeObject* L_64 = ___provider2; NullCheck(L_63); double L_65; L_65 = InterfaceFuncInvoker1< double, RuntimeObject* >::Invoke(12 /* System.Double System.IConvertible::ToDouble(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_63, L_64); double L_66 = L_65; RuntimeObject* L_67 = Box(Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var, &L_66); return L_67; } IL_0119: { RuntimeObject* L_68 = V_0; RuntimeObject* L_69 = ___provider2; NullCheck(L_68); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_70; L_70 = InterfaceFuncInvoker1< Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F, RuntimeObject* >::Invoke(13 /* System.Decimal System.IConvertible::ToDecimal(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_68, L_69); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_71 = L_70; RuntimeObject* L_72 = Box(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var, &L_71); return L_72; } IL_0126: { RuntimeObject* L_73 = V_0; RuntimeObject* L_74 = ___provider2; NullCheck(L_73); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_75; L_75 = InterfaceFuncInvoker1< DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D, RuntimeObject* >::Invoke(14 /* System.DateTime System.IConvertible::ToDateTime(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_73, L_74); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_76 = L_75; RuntimeObject* L_77 = Box(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var, &L_76); return L_77; } IL_0133: { RuntimeObject* L_78 = V_0; RuntimeObject* L_79 = ___provider2; NullCheck(L_78); String_t* L_80; L_80 = InterfaceFuncInvoker1< String_t*, RuntimeObject* >::Invoke(15 /* System.String System.IConvertible::ToString(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_78, L_79); return L_80; } IL_013b: { RuntimeObject* L_81 = ___value0; return L_81; } IL_013d: { InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_82 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_82); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_82, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4E6EACEF8019EA40E4CAD15A87CBACA290240853)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_82, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ChangeType_m80EA2815A26D7AD545FE89CFA9BF64FBF3AEB676_RuntimeMethod_var))); } IL_0148: { InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_83 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_83); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_83, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD7403858372506828AB1160BA0EFCF96B17133FE)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_83, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ChangeType_m80EA2815A26D7AD545FE89CFA9BF64FBF3AEB676_RuntimeMethod_var))); } IL_0153: { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_84 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_84); ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_84, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAA1D7FE08F191E4056596171109A07D018736F00)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_84, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ChangeType_m80EA2815A26D7AD545FE89CFA9BF64FBF3AEB676_RuntimeMethod_var))); } } // System.Object System.Convert::DefaultToType(System.IConvertible,System.Type,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Convert_DefaultToType_mA9DEFD8F897A7E13EA62DA8052A509C46D60B04F (RuntimeObject* ___value0, Type_t* ___targetType1, RuntimeObject* ___provider2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Type_t* L_0 = ___targetType1; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); bool L_1; L_1 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_0, (Type_t*)NULL, NULL); if (!L_1) { goto IL_0014; } } { ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var))); NullCheck(L_2); ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC53E63D0484C54FA447F4E687330E5946C7E09F5)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_DefaultToType_mA9DEFD8F897A7E13EA62DA8052A509C46D60B04F_RuntimeMethod_var))); } IL_0014: { RuntimeObject* L_3 = ___value0; NullCheck(L_3); Type_t* L_4; L_4 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_3, NULL); Type_t* L_5 = ___targetType1; if ((!(((RuntimeObject*)(Type_t*)L_4) == ((RuntimeObject*)(Type_t*)L_5)))) { goto IL_001f; } } { RuntimeObject* L_6 = ___value0; return L_6; } IL_001f: { Type_t* L_7 = ___targetType1; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_8 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_8); int32_t L_9 = 3; Type_t* L_10 = (L_8)->GetAt(static_cast(L_9)); if ((!(((RuntimeObject*)(Type_t*)L_7) == ((RuntimeObject*)(Type_t*)L_10)))) { goto IL_0036; } } { RuntimeObject* L_11 = ___value0; RuntimeObject* L_12 = ___provider2; NullCheck(L_11); bool L_13; L_13 = InterfaceFuncInvoker1< bool, RuntimeObject* >::Invoke(1 /* System.Boolean System.IConvertible::ToBoolean(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_11, L_12); bool L_14 = L_13; RuntimeObject* L_15 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_14); return L_15; } IL_0036: { Type_t* L_16 = ___targetType1; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_17 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_17); int32_t L_18 = 4; Type_t* L_19 = (L_17)->GetAt(static_cast(L_18)); if ((!(((RuntimeObject*)(Type_t*)L_16) == ((RuntimeObject*)(Type_t*)L_19)))) { goto IL_004d; } } { RuntimeObject* L_20 = ___value0; RuntimeObject* L_21 = ___provider2; NullCheck(L_20); Il2CppChar L_22; L_22 = InterfaceFuncInvoker1< Il2CppChar, RuntimeObject* >::Invoke(2 /* System.Char System.IConvertible::ToChar(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_20, L_21); Il2CppChar L_23 = L_22; RuntimeObject* L_24 = Box(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var, &L_23); return L_24; } IL_004d: { Type_t* L_25 = ___targetType1; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_26 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_26); int32_t L_27 = 5; Type_t* L_28 = (L_26)->GetAt(static_cast(L_27)); if ((!(((RuntimeObject*)(Type_t*)L_25) == ((RuntimeObject*)(Type_t*)L_28)))) { goto IL_0064; } } { RuntimeObject* L_29 = ___value0; RuntimeObject* L_30 = ___provider2; NullCheck(L_29); int8_t L_31; L_31 = InterfaceFuncInvoker1< int8_t, RuntimeObject* >::Invoke(3 /* System.SByte System.IConvertible::ToSByte(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_29, L_30); int8_t L_32 = L_31; RuntimeObject* L_33 = Box(SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_il2cpp_TypeInfo_var, &L_32); return L_33; } IL_0064: { Type_t* L_34 = ___targetType1; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_35 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_35); int32_t L_36 = 6; Type_t* L_37 = (L_35)->GetAt(static_cast(L_36)); if ((!(((RuntimeObject*)(Type_t*)L_34) == ((RuntimeObject*)(Type_t*)L_37)))) { goto IL_007b; } } { RuntimeObject* L_38 = ___value0; RuntimeObject* L_39 = ___provider2; NullCheck(L_38); uint8_t L_40; L_40 = InterfaceFuncInvoker1< uint8_t, RuntimeObject* >::Invoke(4 /* System.Byte System.IConvertible::ToByte(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_38, L_39); uint8_t L_41 = L_40; RuntimeObject* L_42 = Box(Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var, &L_41); return L_42; } IL_007b: { Type_t* L_43 = ___targetType1; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_44 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_44); int32_t L_45 = 7; Type_t* L_46 = (L_44)->GetAt(static_cast(L_45)); if ((!(((RuntimeObject*)(Type_t*)L_43) == ((RuntimeObject*)(Type_t*)L_46)))) { goto IL_0092; } } { RuntimeObject* L_47 = ___value0; RuntimeObject* L_48 = ___provider2; NullCheck(L_47); int16_t L_49; L_49 = InterfaceFuncInvoker1< int16_t, RuntimeObject* >::Invoke(5 /* System.Int16 System.IConvertible::ToInt16(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_47, L_48); int16_t L_50 = L_49; RuntimeObject* L_51 = Box(Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_il2cpp_TypeInfo_var, &L_50); return L_51; } IL_0092: { Type_t* L_52 = ___targetType1; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_53 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_53); int32_t L_54 = 8; Type_t* L_55 = (L_53)->GetAt(static_cast(L_54)); if ((!(((RuntimeObject*)(Type_t*)L_52) == ((RuntimeObject*)(Type_t*)L_55)))) { goto IL_00a9; } } { RuntimeObject* L_56 = ___value0; RuntimeObject* L_57 = ___provider2; NullCheck(L_56); uint16_t L_58; L_58 = InterfaceFuncInvoker1< uint16_t, RuntimeObject* >::Invoke(6 /* System.UInt16 System.IConvertible::ToUInt16(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_56, L_57); uint16_t L_59 = L_58; RuntimeObject* L_60 = Box(UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_il2cpp_TypeInfo_var, &L_59); return L_60; } IL_00a9: { Type_t* L_61 = ___targetType1; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_62 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_62); int32_t L_63 = ((int32_t)9); Type_t* L_64 = (L_62)->GetAt(static_cast(L_63)); if ((!(((RuntimeObject*)(Type_t*)L_61) == ((RuntimeObject*)(Type_t*)L_64)))) { goto IL_00c1; } } { RuntimeObject* L_65 = ___value0; RuntimeObject* L_66 = ___provider2; NullCheck(L_65); int32_t L_67; L_67 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(7 /* System.Int32 System.IConvertible::ToInt32(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_65, L_66); int32_t L_68 = L_67; RuntimeObject* L_69 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_68); return L_69; } IL_00c1: { Type_t* L_70 = ___targetType1; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_71 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_71); int32_t L_72 = ((int32_t)10); Type_t* L_73 = (L_71)->GetAt(static_cast(L_72)); if ((!(((RuntimeObject*)(Type_t*)L_70) == ((RuntimeObject*)(Type_t*)L_73)))) { goto IL_00d9; } } { RuntimeObject* L_74 = ___value0; RuntimeObject* L_75 = ___provider2; NullCheck(L_74); uint32_t L_76; L_76 = InterfaceFuncInvoker1< uint32_t, RuntimeObject* >::Invoke(8 /* System.UInt32 System.IConvertible::ToUInt32(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_74, L_75); uint32_t L_77 = L_76; RuntimeObject* L_78 = Box(UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var, &L_77); return L_78; } IL_00d9: { Type_t* L_79 = ___targetType1; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_80 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_80); int32_t L_81 = ((int32_t)11); Type_t* L_82 = (L_80)->GetAt(static_cast(L_81)); if ((!(((RuntimeObject*)(Type_t*)L_79) == ((RuntimeObject*)(Type_t*)L_82)))) { goto IL_00f1; } } { RuntimeObject* L_83 = ___value0; RuntimeObject* L_84 = ___provider2; NullCheck(L_83); int64_t L_85; L_85 = InterfaceFuncInvoker1< int64_t, RuntimeObject* >::Invoke(9 /* System.Int64 System.IConvertible::ToInt64(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_83, L_84); int64_t L_86 = L_85; RuntimeObject* L_87 = Box(Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var, &L_86); return L_87; } IL_00f1: { Type_t* L_88 = ___targetType1; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_89 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_89); int32_t L_90 = ((int32_t)12); Type_t* L_91 = (L_89)->GetAt(static_cast(L_90)); if ((!(((RuntimeObject*)(Type_t*)L_88) == ((RuntimeObject*)(Type_t*)L_91)))) { goto IL_0109; } } { RuntimeObject* L_92 = ___value0; RuntimeObject* L_93 = ___provider2; NullCheck(L_92); uint64_t L_94; L_94 = InterfaceFuncInvoker1< uint64_t, RuntimeObject* >::Invoke(10 /* System.UInt64 System.IConvertible::ToUInt64(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_92, L_93); uint64_t L_95 = L_94; RuntimeObject* L_96 = Box(UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var, &L_95); return L_96; } IL_0109: { Type_t* L_97 = ___targetType1; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_98 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_98); int32_t L_99 = ((int32_t)13); Type_t* L_100 = (L_98)->GetAt(static_cast(L_99)); if ((!(((RuntimeObject*)(Type_t*)L_97) == ((RuntimeObject*)(Type_t*)L_100)))) { goto IL_0121; } } { RuntimeObject* L_101 = ___value0; RuntimeObject* L_102 = ___provider2; NullCheck(L_101); float L_103; L_103 = InterfaceFuncInvoker1< float, RuntimeObject* >::Invoke(11 /* System.Single System.IConvertible::ToSingle(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_101, L_102); float L_104 = L_103; RuntimeObject* L_105 = Box(Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var, &L_104); return L_105; } IL_0121: { Type_t* L_106 = ___targetType1; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_107 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_107); int32_t L_108 = ((int32_t)14); Type_t* L_109 = (L_107)->GetAt(static_cast(L_108)); if ((!(((RuntimeObject*)(Type_t*)L_106) == ((RuntimeObject*)(Type_t*)L_109)))) { goto IL_0139; } } { RuntimeObject* L_110 = ___value0; RuntimeObject* L_111 = ___provider2; NullCheck(L_110); double L_112; L_112 = InterfaceFuncInvoker1< double, RuntimeObject* >::Invoke(12 /* System.Double System.IConvertible::ToDouble(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_110, L_111); double L_113 = L_112; RuntimeObject* L_114 = Box(Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var, &L_113); return L_114; } IL_0139: { Type_t* L_115 = ___targetType1; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_116 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_116); int32_t L_117 = ((int32_t)15); Type_t* L_118 = (L_116)->GetAt(static_cast(L_117)); if ((!(((RuntimeObject*)(Type_t*)L_115) == ((RuntimeObject*)(Type_t*)L_118)))) { goto IL_0151; } } { RuntimeObject* L_119 = ___value0; RuntimeObject* L_120 = ___provider2; NullCheck(L_119); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_121; L_121 = InterfaceFuncInvoker1< Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F, RuntimeObject* >::Invoke(13 /* System.Decimal System.IConvertible::ToDecimal(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_119, L_120); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_122 = L_121; RuntimeObject* L_123 = Box(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var, &L_122); return L_123; } IL_0151: { Type_t* L_124 = ___targetType1; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_125 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_125); int32_t L_126 = ((int32_t)16); Type_t* L_127 = (L_125)->GetAt(static_cast(L_126)); if ((!(((RuntimeObject*)(Type_t*)L_124) == ((RuntimeObject*)(Type_t*)L_127)))) { goto IL_0169; } } { RuntimeObject* L_128 = ___value0; RuntimeObject* L_129 = ___provider2; NullCheck(L_128); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_130; L_130 = InterfaceFuncInvoker1< DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D, RuntimeObject* >::Invoke(14 /* System.DateTime System.IConvertible::ToDateTime(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_128, L_129); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_131 = L_130; RuntimeObject* L_132 = Box(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var, &L_131); return L_132; } IL_0169: { Type_t* L_133 = ___targetType1; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_134 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_134); int32_t L_135 = ((int32_t)18); Type_t* L_136 = (L_134)->GetAt(static_cast(L_135)); if ((!(((RuntimeObject*)(Type_t*)L_133) == ((RuntimeObject*)(Type_t*)L_136)))) { goto IL_017c; } } { RuntimeObject* L_137 = ___value0; RuntimeObject* L_138 = ___provider2; NullCheck(L_137); String_t* L_139; L_139 = InterfaceFuncInvoker1< String_t*, RuntimeObject* >::Invoke(15 /* System.String System.IConvertible::ToString(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_137, L_138); return L_139; } IL_017c: { Type_t* L_140 = ___targetType1; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_141 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_141); int32_t L_142 = 1; Type_t* L_143 = (L_141)->GetAt(static_cast(L_142)); if ((!(((RuntimeObject*)(Type_t*)L_140) == ((RuntimeObject*)(Type_t*)L_143)))) { goto IL_0188; } } { RuntimeObject* L_144 = ___value0; return L_144; } IL_0188: { Type_t* L_145 = ___targetType1; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Type_t* L_146 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___EnumType_2; if ((!(((RuntimeObject*)(Type_t*)L_145) == ((RuntimeObject*)(Type_t*)L_146)))) { goto IL_0197; } } { RuntimeObject* L_147 = ___value0; return ((Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2*)CastclassClass((RuntimeObject*)L_147, Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var)); } IL_0197: { Type_t* L_148 = ___targetType1; il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_149 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))))->___ConvertTypes_1; NullCheck(L_149); int32_t L_150 = 2; Type_t* L_151 = (L_149)->GetAt(static_cast(L_150)); if ((!(((RuntimeObject*)(Type_t*)L_148) == ((RuntimeObject*)(Type_t*)L_151)))) { goto IL_01ac; } } { InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_152 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_152); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_152, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4E6EACEF8019EA40E4CAD15A87CBACA290240853)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_152, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_DefaultToType_mA9DEFD8F897A7E13EA62DA8052A509C46D60B04F_RuntimeMethod_var))); } IL_01ac: { Type_t* L_153 = ___targetType1; il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_154 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))))->___ConvertTypes_1; NullCheck(L_154); int32_t L_155 = 0; Type_t* L_156 = (L_154)->GetAt(static_cast(L_155)); if ((!(((RuntimeObject*)(Type_t*)L_153) == ((RuntimeObject*)(Type_t*)L_156)))) { goto IL_01c1; } } { InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_157 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_157); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_157, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD7403858372506828AB1160BA0EFCF96B17133FE)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_157, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_DefaultToType_mA9DEFD8F897A7E13EA62DA8052A509C46D60B04F_RuntimeMethod_var))); } IL_01c1: { RuntimeObject* L_158 = ___value0; NullCheck(L_158); Type_t* L_159; L_159 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_158, NULL); NullCheck(L_159); String_t* L_160; L_160 = VirtualFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_159); Type_t* L_161 = ___targetType1; NullCheck(L_161); String_t* L_162; L_162 = VirtualFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_161); String_t* L_163; L_163 = String_Format_m9499958F4B0BB6089C75760AB647AB3CA4D55806(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6E9AEBB5505B4A1DBC166711562BE9408419A24D)), L_160, L_162, NULL); InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_164 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_164); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_164, L_163, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_164, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_DefaultToType_mA9DEFD8F897A7E13EA62DA8052A509C46D60B04F_RuntimeMethod_var))); } } // System.Object System.Convert::ChangeType(System.Object,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Convert_ChangeType_m6017C38CD5EA925943B6E047F20CE06E1807D033 (RuntimeObject* ___value0, Type_t* ___conversionType1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___value0; Type_t* L_1 = ___conversionType1; il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var); CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_2; L_2 = CultureInfo_get_CurrentCulture_m43D1E4E50AB1F62ADC7C1884F28F918B53871522(NULL); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); RuntimeObject* L_3; L_3 = Convert_ChangeType_m237EF4F56EC5DE52FCDAD2E27DEEEBB21549B1F4(L_0, L_1, L_2, NULL); return L_3; } } // System.Object System.Convert::ChangeType(System.Object,System.Type,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Convert_ChangeType_m237EF4F56EC5DE52FCDAD2E27DEEEBB21549B1F4 (RuntimeObject* ___value0, Type_t* ___conversionType1, RuntimeObject* ___provider2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; { Type_t* L_0 = ___conversionType1; 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))); NullCheck(L_1); ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD1B787616D5CE0182CB13A50CA0FB55C49EAA951)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ChangeType_m237EF4F56EC5DE52FCDAD2E27DEEEBB21549B1F4_RuntimeMethod_var))); } IL_000e: { RuntimeObject* L_2 = ___value0; if (L_2) { goto IL_0026; } } { Type_t* L_3 = ___conversionType1; NullCheck(L_3); bool L_4; L_4 = Type_get_IsValueType_m59AE2E0439DC06347B8D6B38548F3CBA54D38318(L_3, NULL); if (!L_4) { goto IL_0024; } } { InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_5 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_5); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEE4EDD00A82071245CB66FD4E82F95F687C2E2CA)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ChangeType_m237EF4F56EC5DE52FCDAD2E27DEEEBB21549B1F4_RuntimeMethod_var))); } IL_0024: { return NULL; } IL_0026: { RuntimeObject* L_6 = ___value0; V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_6, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)); RuntimeObject* L_7 = V_0; if (L_7) { goto IL_004b; } } { RuntimeObject* L_8 = ___value0; NullCheck(L_8); Type_t* L_9; L_9 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_8, NULL); Type_t* L_10 = ___conversionType1; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); bool L_11; L_11 = Type_op_Equality_mE6EDDDC900C50B222CF32BCD2AD027595F2D74B7(L_9, L_10, NULL); if (!L_11) { goto IL_0040; } } { RuntimeObject* L_12 = ___value0; return L_12; } IL_0040: { InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_13 = (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))); NullCheck(L_13); InvalidCastException__ctor_mED3F9781E6CA47A92C602C896EDDF2F40ECB8644(L_13, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6F1AD4518CCFE15EDA37B314B2AF64D13616FF7B)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ChangeType_m237EF4F56EC5DE52FCDAD2E27DEEEBB21549B1F4_RuntimeMethod_var))); } IL_004b: { Type_t* L_14 = ___conversionType1; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_15 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_15); int32_t L_16 = 3; Type_t* L_17 = (L_15)->GetAt(static_cast(L_16)); if ((!(((RuntimeObject*)(Type_t*)L_14) == ((RuntimeObject*)(Type_t*)L_17)))) { goto IL_0062; } } { RuntimeObject* L_18 = V_0; RuntimeObject* L_19 = ___provider2; NullCheck(L_18); bool L_20; L_20 = InterfaceFuncInvoker1< bool, RuntimeObject* >::Invoke(1 /* System.Boolean System.IConvertible::ToBoolean(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_18, L_19); bool L_21 = L_20; RuntimeObject* L_22 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_21); return L_22; } IL_0062: { Type_t* L_23 = ___conversionType1; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_24 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_24); int32_t L_25 = 4; Type_t* L_26 = (L_24)->GetAt(static_cast(L_25)); if ((!(((RuntimeObject*)(Type_t*)L_23) == ((RuntimeObject*)(Type_t*)L_26)))) { goto IL_0079; } } { RuntimeObject* L_27 = V_0; RuntimeObject* L_28 = ___provider2; NullCheck(L_27); Il2CppChar L_29; L_29 = InterfaceFuncInvoker1< Il2CppChar, RuntimeObject* >::Invoke(2 /* System.Char System.IConvertible::ToChar(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_27, L_28); Il2CppChar L_30 = L_29; RuntimeObject* L_31 = Box(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var, &L_30); return L_31; } IL_0079: { Type_t* L_32 = ___conversionType1; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_33 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_33); int32_t L_34 = 5; Type_t* L_35 = (L_33)->GetAt(static_cast(L_34)); if ((!(((RuntimeObject*)(Type_t*)L_32) == ((RuntimeObject*)(Type_t*)L_35)))) { goto IL_0090; } } { RuntimeObject* L_36 = V_0; RuntimeObject* L_37 = ___provider2; NullCheck(L_36); int8_t L_38; L_38 = InterfaceFuncInvoker1< int8_t, RuntimeObject* >::Invoke(3 /* System.SByte System.IConvertible::ToSByte(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_36, L_37); int8_t L_39 = L_38; RuntimeObject* L_40 = Box(SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_il2cpp_TypeInfo_var, &L_39); return L_40; } IL_0090: { Type_t* L_41 = ___conversionType1; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_42 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_42); int32_t L_43 = 6; Type_t* L_44 = (L_42)->GetAt(static_cast(L_43)); if ((!(((RuntimeObject*)(Type_t*)L_41) == ((RuntimeObject*)(Type_t*)L_44)))) { goto IL_00a7; } } { RuntimeObject* L_45 = V_0; RuntimeObject* L_46 = ___provider2; NullCheck(L_45); uint8_t L_47; L_47 = InterfaceFuncInvoker1< uint8_t, RuntimeObject* >::Invoke(4 /* System.Byte System.IConvertible::ToByte(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_45, L_46); uint8_t L_48 = L_47; RuntimeObject* L_49 = Box(Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var, &L_48); return L_49; } IL_00a7: { Type_t* L_50 = ___conversionType1; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_51 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_51); int32_t L_52 = 7; Type_t* L_53 = (L_51)->GetAt(static_cast(L_52)); if ((!(((RuntimeObject*)(Type_t*)L_50) == ((RuntimeObject*)(Type_t*)L_53)))) { goto IL_00be; } } { RuntimeObject* L_54 = V_0; RuntimeObject* L_55 = ___provider2; NullCheck(L_54); int16_t L_56; L_56 = InterfaceFuncInvoker1< int16_t, RuntimeObject* >::Invoke(5 /* System.Int16 System.IConvertible::ToInt16(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_54, L_55); int16_t L_57 = L_56; RuntimeObject* L_58 = Box(Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_il2cpp_TypeInfo_var, &L_57); return L_58; } IL_00be: { Type_t* L_59 = ___conversionType1; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_60 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_60); int32_t L_61 = 8; Type_t* L_62 = (L_60)->GetAt(static_cast(L_61)); if ((!(((RuntimeObject*)(Type_t*)L_59) == ((RuntimeObject*)(Type_t*)L_62)))) { goto IL_00d5; } } { RuntimeObject* L_63 = V_0; RuntimeObject* L_64 = ___provider2; NullCheck(L_63); uint16_t L_65; L_65 = InterfaceFuncInvoker1< uint16_t, RuntimeObject* >::Invoke(6 /* System.UInt16 System.IConvertible::ToUInt16(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_63, L_64); uint16_t L_66 = L_65; RuntimeObject* L_67 = Box(UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_il2cpp_TypeInfo_var, &L_66); return L_67; } IL_00d5: { Type_t* L_68 = ___conversionType1; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_69 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_69); int32_t L_70 = ((int32_t)9); Type_t* L_71 = (L_69)->GetAt(static_cast(L_70)); if ((!(((RuntimeObject*)(Type_t*)L_68) == ((RuntimeObject*)(Type_t*)L_71)))) { goto IL_00ed; } } { RuntimeObject* L_72 = V_0; RuntimeObject* L_73 = ___provider2; NullCheck(L_72); int32_t L_74; L_74 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(7 /* System.Int32 System.IConvertible::ToInt32(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_72, L_73); int32_t L_75 = L_74; RuntimeObject* L_76 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_75); return L_76; } IL_00ed: { Type_t* L_77 = ___conversionType1; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_78 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_78); int32_t L_79 = ((int32_t)10); Type_t* L_80 = (L_78)->GetAt(static_cast(L_79)); if ((!(((RuntimeObject*)(Type_t*)L_77) == ((RuntimeObject*)(Type_t*)L_80)))) { goto IL_0105; } } { RuntimeObject* L_81 = V_0; RuntimeObject* L_82 = ___provider2; NullCheck(L_81); uint32_t L_83; L_83 = InterfaceFuncInvoker1< uint32_t, RuntimeObject* >::Invoke(8 /* System.UInt32 System.IConvertible::ToUInt32(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_81, L_82); uint32_t L_84 = L_83; RuntimeObject* L_85 = Box(UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var, &L_84); return L_85; } IL_0105: { Type_t* L_86 = ___conversionType1; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_87 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_87); int32_t L_88 = ((int32_t)11); Type_t* L_89 = (L_87)->GetAt(static_cast(L_88)); if ((!(((RuntimeObject*)(Type_t*)L_86) == ((RuntimeObject*)(Type_t*)L_89)))) { goto IL_011d; } } { RuntimeObject* L_90 = V_0; RuntimeObject* L_91 = ___provider2; NullCheck(L_90); int64_t L_92; L_92 = InterfaceFuncInvoker1< int64_t, RuntimeObject* >::Invoke(9 /* System.Int64 System.IConvertible::ToInt64(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_90, L_91); int64_t L_93 = L_92; RuntimeObject* L_94 = Box(Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var, &L_93); return L_94; } IL_011d: { Type_t* L_95 = ___conversionType1; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_96 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_96); int32_t L_97 = ((int32_t)12); Type_t* L_98 = (L_96)->GetAt(static_cast(L_97)); if ((!(((RuntimeObject*)(Type_t*)L_95) == ((RuntimeObject*)(Type_t*)L_98)))) { goto IL_0135; } } { RuntimeObject* L_99 = V_0; RuntimeObject* L_100 = ___provider2; NullCheck(L_99); uint64_t L_101; L_101 = InterfaceFuncInvoker1< uint64_t, RuntimeObject* >::Invoke(10 /* System.UInt64 System.IConvertible::ToUInt64(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_99, L_100); uint64_t L_102 = L_101; RuntimeObject* L_103 = Box(UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var, &L_102); return L_103; } IL_0135: { Type_t* L_104 = ___conversionType1; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_105 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_105); int32_t L_106 = ((int32_t)13); Type_t* L_107 = (L_105)->GetAt(static_cast(L_106)); if ((!(((RuntimeObject*)(Type_t*)L_104) == ((RuntimeObject*)(Type_t*)L_107)))) { goto IL_014d; } } { RuntimeObject* L_108 = V_0; RuntimeObject* L_109 = ___provider2; NullCheck(L_108); float L_110; L_110 = InterfaceFuncInvoker1< float, RuntimeObject* >::Invoke(11 /* System.Single System.IConvertible::ToSingle(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_108, L_109); float L_111 = L_110; RuntimeObject* L_112 = Box(Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var, &L_111); return L_112; } IL_014d: { Type_t* L_113 = ___conversionType1; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_114 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_114); int32_t L_115 = ((int32_t)14); Type_t* L_116 = (L_114)->GetAt(static_cast(L_115)); if ((!(((RuntimeObject*)(Type_t*)L_113) == ((RuntimeObject*)(Type_t*)L_116)))) { goto IL_0165; } } { RuntimeObject* L_117 = V_0; RuntimeObject* L_118 = ___provider2; NullCheck(L_117); double L_119; L_119 = InterfaceFuncInvoker1< double, RuntimeObject* >::Invoke(12 /* System.Double System.IConvertible::ToDouble(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_117, L_118); double L_120 = L_119; RuntimeObject* L_121 = Box(Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var, &L_120); return L_121; } IL_0165: { Type_t* L_122 = ___conversionType1; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_123 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_123); int32_t L_124 = ((int32_t)15); Type_t* L_125 = (L_123)->GetAt(static_cast(L_124)); if ((!(((RuntimeObject*)(Type_t*)L_122) == ((RuntimeObject*)(Type_t*)L_125)))) { goto IL_017d; } } { RuntimeObject* L_126 = V_0; RuntimeObject* L_127 = ___provider2; NullCheck(L_126); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_128; L_128 = InterfaceFuncInvoker1< Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F, RuntimeObject* >::Invoke(13 /* System.Decimal System.IConvertible::ToDecimal(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_126, L_127); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_129 = L_128; RuntimeObject* L_130 = Box(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var, &L_129); return L_130; } IL_017d: { Type_t* L_131 = ___conversionType1; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_132 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_132); int32_t L_133 = ((int32_t)16); Type_t* L_134 = (L_132)->GetAt(static_cast(L_133)); if ((!(((RuntimeObject*)(Type_t*)L_131) == ((RuntimeObject*)(Type_t*)L_134)))) { goto IL_0195; } } { RuntimeObject* L_135 = V_0; RuntimeObject* L_136 = ___provider2; NullCheck(L_135); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_137; L_137 = InterfaceFuncInvoker1< DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D, RuntimeObject* >::Invoke(14 /* System.DateTime System.IConvertible::ToDateTime(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_135, L_136); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_138 = L_137; RuntimeObject* L_139 = Box(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var, &L_138); return L_139; } IL_0195: { Type_t* L_140 = ___conversionType1; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_141 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_141); int32_t L_142 = ((int32_t)18); Type_t* L_143 = (L_141)->GetAt(static_cast(L_142)); if ((!(((RuntimeObject*)(Type_t*)L_140) == ((RuntimeObject*)(Type_t*)L_143)))) { goto IL_01a8; } } { RuntimeObject* L_144 = V_0; RuntimeObject* L_145 = ___provider2; NullCheck(L_144); String_t* L_146; L_146 = InterfaceFuncInvoker1< String_t*, RuntimeObject* >::Invoke(15 /* System.String System.IConvertible::ToString(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_144, L_145); return L_146; } IL_01a8: { Type_t* L_147 = ___conversionType1; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_148 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1; NullCheck(L_148); int32_t L_149 = 1; Type_t* L_150 = (L_148)->GetAt(static_cast(L_149)); if ((!(((RuntimeObject*)(Type_t*)L_147) == ((RuntimeObject*)(Type_t*)L_150)))) { goto IL_01b4; } } { RuntimeObject* L_151 = ___value0; return L_151; } IL_01b4: { RuntimeObject* L_152 = V_0; Type_t* L_153 = ___conversionType1; RuntimeObject* L_154 = ___provider2; NullCheck(L_152); RuntimeObject* L_155; L_155 = InterfaceFuncInvoker2< RuntimeObject*, Type_t*, RuntimeObject* >::Invoke(16 /* System.Object System.IConvertible::ToType(System.Type,System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_152, L_153, L_154); return L_155; } } // System.Void System.Convert::ThrowCharOverflowException() IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Convert_ThrowCharOverflowException_m3F094CB5AA3E325F9ED1A407021FCD13CADF117F (const RuntimeMethod* method) { { OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C* L_0 = (OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C_il2cpp_TypeInfo_var))); NullCheck(L_0); OverflowException__ctor_m2B99D79236B7B87C0BB6C9AB2E557DECE481C264(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC99BA0F7C5275BAC3DB1C2977F176767DEE5F49E)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ThrowCharOverflowException_m3F094CB5AA3E325F9ED1A407021FCD13CADF117F_RuntimeMethod_var))); } } // System.Void System.Convert::ThrowByteOverflowException() IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Convert_ThrowByteOverflowException_m3C5E6C6941B2C5B87B6082BC69F0ED13EDF6D644 (const RuntimeMethod* method) { { OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C* L_0 = (OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C_il2cpp_TypeInfo_var))); NullCheck(L_0); OverflowException__ctor_m2B99D79236B7B87C0BB6C9AB2E557DECE481C264(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFA21AE346609B8F4B72E20E1720DE0FA22D72B0F)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ThrowByteOverflowException_m3C5E6C6941B2C5B87B6082BC69F0ED13EDF6D644_RuntimeMethod_var))); } } // System.Void System.Convert::ThrowSByteOverflowException() IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Convert_ThrowSByteOverflowException_m516C925A443481A76D7233C155E9AFBC1481E002 (const RuntimeMethod* method) { { OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C* L_0 = (OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C_il2cpp_TypeInfo_var))); NullCheck(L_0); OverflowException__ctor_m2B99D79236B7B87C0BB6C9AB2E557DECE481C264(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAA9D877CB849FA2C146CC4091473E628678EE371)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ThrowSByteOverflowException_m516C925A443481A76D7233C155E9AFBC1481E002_RuntimeMethod_var))); } } // System.Void System.Convert::ThrowInt16OverflowException() IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Convert_ThrowInt16OverflowException_m6DE53E843F3701BD4999A40674A44DF2280FFFC4 (const RuntimeMethod* method) { { OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C* L_0 = (OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C_il2cpp_TypeInfo_var))); NullCheck(L_0); OverflowException__ctor_m2B99D79236B7B87C0BB6C9AB2E557DECE481C264(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC26DCD8294CF8DDECC03D1B5FEBFE3E8670F4219)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ThrowInt16OverflowException_m6DE53E843F3701BD4999A40674A44DF2280FFFC4_RuntimeMethod_var))); } } // System.Void System.Convert::ThrowUInt16OverflowException() IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Convert_ThrowUInt16OverflowException_m0B9408271B529B2C798687CE1C48DED0D2BB396F (const RuntimeMethod* method) { { OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C* L_0 = (OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C_il2cpp_TypeInfo_var))); NullCheck(L_0); OverflowException__ctor_m2B99D79236B7B87C0BB6C9AB2E557DECE481C264(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF5757B8984ECA25A84C0677373F5C2FACE97337A)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ThrowUInt16OverflowException_m0B9408271B529B2C798687CE1C48DED0D2BB396F_RuntimeMethod_var))); } } // System.Void System.Convert::ThrowInt32OverflowException() IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Convert_ThrowInt32OverflowException_m6BC145DD83A74DD22E28360B787FCF3FEEF125D3 (const RuntimeMethod* method) { { OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C* L_0 = (OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C_il2cpp_TypeInfo_var))); NullCheck(L_0); OverflowException__ctor_m2B99D79236B7B87C0BB6C9AB2E557DECE481C264(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4DD3DE8CCECA489C7DDD3362FC292A3BE39B68F1)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ThrowInt32OverflowException_m6BC145DD83A74DD22E28360B787FCF3FEEF125D3_RuntimeMethod_var))); } } // System.Void System.Convert::ThrowUInt32OverflowException() IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Convert_ThrowUInt32OverflowException_m7A384673C2A1C80ADDE1013AFF3F15F0F210CBAD (const RuntimeMethod* method) { { OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C* L_0 = (OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C_il2cpp_TypeInfo_var))); NullCheck(L_0); OverflowException__ctor_m2B99D79236B7B87C0BB6C9AB2E557DECE481C264(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF072EABB286891F7AE6ED11AF63686B8B0F5023E)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ThrowUInt32OverflowException_m7A384673C2A1C80ADDE1013AFF3F15F0F210CBAD_RuntimeMethod_var))); } } // System.Void System.Convert::ThrowInt64OverflowException() IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Convert_ThrowInt64OverflowException_mA6ADF322807A2E2FCACCE80273B8E47E37626B40 (const RuntimeMethod* method) { { OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C* L_0 = (OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C_il2cpp_TypeInfo_var))); NullCheck(L_0); OverflowException__ctor_m2B99D79236B7B87C0BB6C9AB2E557DECE481C264(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral93FFE29C2506591FD366855C12526B4678FB1953)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ThrowInt64OverflowException_mA6ADF322807A2E2FCACCE80273B8E47E37626B40_RuntimeMethod_var))); } } // System.Void System.Convert::ThrowUInt64OverflowException() IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void Convert_ThrowUInt64OverflowException_mE098E118D47982640208F378D742B24DD1B91BFA (const RuntimeMethod* method) { { OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C* L_0 = (OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C_il2cpp_TypeInfo_var))); NullCheck(L_0); OverflowException__ctor_m2B99D79236B7B87C0BB6C9AB2E557DECE481C264(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1E7A8A503AFD36DF33873AAF1E540F2FC2BC00F1)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ThrowUInt64OverflowException_mE098E118D47982640208F378D742B24DD1B91BFA_RuntimeMethod_var))); } } // System.Boolean System.Convert::ToBoolean(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_ToBoolean_m2D9C9FA6246D94F7BEE918B88B83356FC152E5B2 (RuntimeObject* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___value0; if (!L_0) { goto IL_0010; } } { RuntimeObject* L_1 = ___value0; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var))); bool L_2; L_2 = InterfaceFuncInvoker1< bool, RuntimeObject* >::Invoke(1 /* System.Boolean System.IConvertible::ToBoolean(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)), (RuntimeObject*)NULL); return L_2; } IL_0010: { return (bool)0; } } // System.Boolean System.Convert::ToBoolean(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_ToBoolean_mB0FE0EF8913B62A513A8604E24D832B4F5CC9379 (RuntimeObject* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___value0; if (!L_0) { goto IL_0010; } } { RuntimeObject* L_1 = ___value0; RuntimeObject* L_2 = ___provider1; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var))); bool L_3; L_3 = InterfaceFuncInvoker1< bool, RuntimeObject* >::Invoke(1 /* System.Boolean System.IConvertible::ToBoolean(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)), L_2); return L_3; } IL_0010: { return (bool)0; } } // System.Boolean System.Convert::ToBoolean(System.SByte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_ToBoolean_m8057A5E0396CC71CEB16CA5C9BB16D5B0C7A5B5E (int8_t ___value0, const RuntimeMethod* method) { { int8_t L_0 = ___value0; return (bool)((!(((uint32_t)L_0) <= ((uint32_t)0)))? 1 : 0); } } // System.Boolean System.Convert::ToBoolean(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_ToBoolean_m15C298BDE61E3537C216A843315CD45862704BBD (uint8_t ___value0, const RuntimeMethod* method) { { uint8_t L_0 = ___value0; return (bool)((!(((uint32_t)L_0) <= ((uint32_t)0)))? 1 : 0); } } // System.Boolean System.Convert::ToBoolean(System.Int16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_ToBoolean_m7399ECC66C7D90B4D0358619A317EB8B06A42804 (int16_t ___value0, const RuntimeMethod* method) { { int16_t L_0 = ___value0; return (bool)((!(((uint32_t)L_0) <= ((uint32_t)0)))? 1 : 0); } } // System.Boolean System.Convert::ToBoolean(System.UInt16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_ToBoolean_m31A39FFC5DEFE291F11E3FC8E52F6E71CA53C228 (uint16_t ___value0, const RuntimeMethod* method) { { uint16_t L_0 = ___value0; return (bool)((!(((uint32_t)L_0) <= ((uint32_t)0)))? 1 : 0); } } // System.Boolean System.Convert::ToBoolean(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_ToBoolean_m955ACDCBFD4161FA612BFA55007F9A9898401441 (int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; return (bool)((!(((uint32_t)L_0) <= ((uint32_t)0)))? 1 : 0); } } // System.Boolean System.Convert::ToBoolean(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_ToBoolean_mFFE8690B4541E530BEE116860C3595FE78CD3D28 (uint32_t ___value0, const RuntimeMethod* method) { { uint32_t L_0 = ___value0; return (bool)((!(((uint32_t)L_0) <= ((uint32_t)0)))? 1 : 0); } } // System.Boolean System.Convert::ToBoolean(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_ToBoolean_m07D5C6805EC487AB557CACC61779B2B05A555F48 (int64_t ___value0, const RuntimeMethod* method) { { int64_t L_0 = ___value0; return (bool)((!(((uint64_t)L_0) <= ((uint64_t)((int64_t)0))))? 1 : 0); } } // System.Boolean System.Convert::ToBoolean(System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_ToBoolean_mF8C520D7FADC4020F3B58BF8C8E5D2E7607B25D6 (uint64_t ___value0, const RuntimeMethod* method) { { uint64_t L_0 = ___value0; return (bool)((!(((uint64_t)L_0) <= ((uint64_t)((int64_t)0))))? 1 : 0); } } // System.Boolean System.Convert::ToBoolean(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_ToBoolean_mAA53666F188B002A52359F80BCD85F8E24B3A4AF (String_t* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value0; if (L_0) { goto IL_0005; } } { return (bool)0; } IL_0005: { String_t* L_1 = ___value0; il2cpp_codegen_runtime_class_init_inline(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var); bool L_2; L_2 = Boolean_Parse_mE3D8860431C87FBE1D7C6EACA665548AFE144F38(L_1, NULL); return L_2; } } // System.Boolean System.Convert::ToBoolean(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_ToBoolean_mD54E5642A7F627438AAC47DF586482ED658B5327 (String_t* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value0; if (L_0) { goto IL_0005; } } { return (bool)0; } IL_0005: { String_t* L_1 = ___value0; il2cpp_codegen_runtime_class_init_inline(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var); bool L_2; L_2 = Boolean_Parse_mE3D8860431C87FBE1D7C6EACA665548AFE144F38(L_1, NULL); return L_2; } } // System.Boolean System.Convert::ToBoolean(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_ToBoolean_m01AE93C9571553886F8D3D4BCA3F196543BFDCF5 (float ___value0, const RuntimeMethod* method) { { float L_0 = ___value0; return (bool)((((int32_t)((((float)L_0) == ((float)(0.0f)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Convert::ToBoolean(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_ToBoolean_mE86F6165E815A8ECA14BF57D5F06EA961794D3E0 (double ___value0, const RuntimeMethod* method) { { double L_0 = ___value0; return (bool)((((int32_t)((((double)L_0) == ((double)(0.0)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Convert::ToBoolean(System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_ToBoolean_m244EA993A849863B806CBF3574D1AF72B472440A (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_0 = ___value0; il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1 = ((Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_StaticFields*)il2cpp_codegen_static_fields_for(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var))->___Zero_3; bool L_2; L_2 = Decimal_op_Inequality_m11FF862E6156770CB52AEC78AB4D7D96358B25AA(L_0, L_1, NULL); return L_2; } } // System.Char System.Convert::ToChar(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Convert_ToChar_mFA5D3CF20E5FE928030F94E454B88EBFE56E0BAC (RuntimeObject* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___value0; if (!L_0) { goto IL_0010; } } { RuntimeObject* L_1 = ___value0; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var))); Il2CppChar L_2; L_2 = InterfaceFuncInvoker1< Il2CppChar, RuntimeObject* >::Invoke(2 /* System.Char System.IConvertible::ToChar(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)), (RuntimeObject*)NULL); return L_2; } IL_0010: { return 0; } } // System.Char System.Convert::ToChar(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Convert_ToChar_m5FF3502C9F34052DDE5BA4AC02AF2E23AD967D2C (RuntimeObject* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___value0; if (!L_0) { goto IL_0010; } } { RuntimeObject* L_1 = ___value0; RuntimeObject* L_2 = ___provider1; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var))); Il2CppChar L_3; L_3 = InterfaceFuncInvoker1< Il2CppChar, RuntimeObject* >::Invoke(2 /* System.Char System.IConvertible::ToChar(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)), L_2); return L_3; } IL_0010: { return 0; } } // System.Char System.Convert::ToChar(System.SByte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Convert_ToChar_mB88FED985C8E4121D652642B7FC8955B47156711 (int8_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int8_t L_0 = ___value0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0009; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowCharOverflowException_m3F094CB5AA3E325F9ED1A407021FCD13CADF117F(NULL); } IL_0009: { int8_t L_1 = ___value0; return ((int32_t)(uint16_t)L_1); } } // System.Char System.Convert::ToChar(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Convert_ToChar_mD0979A5230E20EFC1B1F98ED8BE59DBF823F74D1 (uint8_t ___value0, const RuntimeMethod* method) { { uint8_t L_0 = ___value0; return L_0; } } // System.Char System.Convert::ToChar(System.Int16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Convert_ToChar_mD8013AE103314F82286DDB6C853AA82C2B01FE9E (int16_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int16_t L_0 = ___value0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0009; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowCharOverflowException_m3F094CB5AA3E325F9ED1A407021FCD13CADF117F(NULL); } IL_0009: { int16_t L_1 = ___value0; return ((int32_t)(uint16_t)L_1); } } // System.Char System.Convert::ToChar(System.UInt16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Convert_ToChar_mB9CDDB4E8557E0AE2CE5511D90E2373C99452D63 (uint16_t ___value0, const RuntimeMethod* method) { { uint16_t L_0 = ___value0; return L_0; } } // System.Char System.Convert::ToChar(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Convert_ToChar_m22D0549E3F5013C6BA2E1E68B8807F20786889F1 (int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___value0; if ((((int32_t)L_0) < ((int32_t)0))) { goto IL_000c; } } { int32_t L_1 = ___value0; if ((((int32_t)L_1) <= ((int32_t)((int32_t)65535)))) { goto IL_0011; } } IL_000c: { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowCharOverflowException_m3F094CB5AA3E325F9ED1A407021FCD13CADF117F(NULL); } IL_0011: { int32_t L_2 = ___value0; return ((int32_t)(uint16_t)L_2); } } // System.Char System.Convert::ToChar(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Convert_ToChar_m0693496140DCBDE397F3A12B635185CC36B905A2 (uint32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { uint32_t L_0 = ___value0; if ((!(((uint32_t)L_0) > ((uint32_t)((int32_t)65535))))) { goto IL_000d; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowCharOverflowException_m3F094CB5AA3E325F9ED1A407021FCD13CADF117F(NULL); } IL_000d: { uint32_t L_1 = ___value0; return ((int32_t)(uint16_t)L_1); } } // System.Char System.Convert::ToChar(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Convert_ToChar_mFB6BAD212971C961EF365BA7E685D46C52E404D3 (int64_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int64_t L_0 = ___value0; if ((((int64_t)L_0) < ((int64_t)((int64_t)0)))) { goto IL_000e; } } { int64_t L_1 = ___value0; if ((((int64_t)L_1) <= ((int64_t)((int64_t)((int32_t)65535))))) { goto IL_0013; } } IL_000e: { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowCharOverflowException_m3F094CB5AA3E325F9ED1A407021FCD13CADF117F(NULL); } IL_0013: { int64_t L_2 = ___value0; return ((int32_t)(uint16_t)L_2); } } // System.Char System.Convert::ToChar(System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Convert_ToChar_mD7A3ACE9D446C924D4BBE63B4E0C3CAF84E81C5C (uint64_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { uint64_t L_0 = ___value0; if ((!(((uint64_t)L_0) > ((uint64_t)((int64_t)((int32_t)65535)))))) { goto IL_000e; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowCharOverflowException_m3F094CB5AA3E325F9ED1A407021FCD13CADF117F(NULL); } IL_000e: { uint64_t L_1 = ___value0; return ((int32_t)(uint16_t)L_1); } } // System.Char System.Convert::ToChar(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Convert_ToChar_mF72D47BC87DE73EFF5A7F04046BFAF064FEB0100 (String_t* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value0; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Il2CppChar L_1; L_1 = Convert_ToChar_m999DFF96BEC05D5CFDAAC59C19F125C6827E436C(L_0, (RuntimeObject*)NULL, NULL); return L_1; } } // System.Char System.Convert::ToChar(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Convert_ToChar_m999DFF96BEC05D5CFDAAC59C19F125C6827E436C (String_t* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { { String_t* L_0 = ___value0; 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))); NullCheck(L_1); ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ToChar_m999DFF96BEC05D5CFDAAC59C19F125C6827E436C_RuntimeMethod_var))); } IL_000e: { String_t* L_2 = ___value0; NullCheck(L_2); int32_t L_3; L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_2, NULL); if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0022; } } { FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_4 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var))); NullCheck(L_4); FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1885083B225A9C3413CEAE49DFF7E6B5770675FB)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ToChar_m999DFF96BEC05D5CFDAAC59C19F125C6827E436C_RuntimeMethod_var))); } IL_0022: { String_t* L_5 = ___value0; NullCheck(L_5); Il2CppChar L_6; L_6 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_5, 0, NULL); return L_6; } } // System.SByte System.Convert::ToSByte(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_mDD7FA01D606C01B942A9C99E4A2FC2A9D6E5446E (RuntimeObject* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___value0; if (!L_0) { goto IL_0010; } } { RuntimeObject* L_1 = ___value0; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var))); int8_t L_2; L_2 = InterfaceFuncInvoker1< int8_t, RuntimeObject* >::Invoke(3 /* System.SByte System.IConvertible::ToSByte(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)), (RuntimeObject*)NULL); return L_2; } IL_0010: { return (int8_t)0; } } // System.SByte System.Convert::ToSByte(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_mB20DE57E33489A24F1B947BA098AB79D46E9BB80 (RuntimeObject* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___value0; if (!L_0) { goto IL_0010; } } { RuntimeObject* L_1 = ___value0; RuntimeObject* L_2 = ___provider1; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var))); int8_t L_3; L_3 = InterfaceFuncInvoker1< int8_t, RuntimeObject* >::Invoke(3 /* System.SByte System.IConvertible::ToSByte(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)), L_2); return L_3; } IL_0010: { return (int8_t)0; } } // System.SByte System.Convert::ToSByte(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m793BA82EEDEE734D5A0CD1F01234A350EFDB7829 (bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; if (L_0) { goto IL_0005; } } { return (int8_t)0; } IL_0005: { return (int8_t)1; } } // System.SByte System.Convert::ToSByte(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m3F6B0BF98A8529D37624CE40648F73CB10E01FFF (Il2CppChar ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___value0; if ((((int32_t)L_0) <= ((int32_t)((int32_t)127)))) { goto IL_000a; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowSByteOverflowException_m516C925A443481A76D7233C155E9AFBC1481E002(NULL); } IL_000a: { Il2CppChar L_1 = ___value0; return ((int8_t)L_1); } } // System.SByte System.Convert::ToSByte(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m9D76A66E6BB33DBF659E7447ED25F1A72E8501A0 (uint8_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { uint8_t L_0 = ___value0; if ((((int32_t)L_0) <= ((int32_t)((int32_t)127)))) { goto IL_000a; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowSByteOverflowException_m516C925A443481A76D7233C155E9AFBC1481E002(NULL); } IL_000a: { uint8_t L_1 = ___value0; return ((int8_t)L_1); } } // System.SByte System.Convert::ToSByte(System.Int16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m0430C72CF9D37296EE14D4E9FD60090B9B004ECC (int16_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int16_t L_0 = ___value0; if ((((int32_t)L_0) < ((int32_t)((int32_t)-128)))) { goto IL_000a; } } { int16_t L_1 = ___value0; if ((((int32_t)L_1) <= ((int32_t)((int32_t)127)))) { goto IL_000f; } } IL_000a: { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowSByteOverflowException_m516C925A443481A76D7233C155E9AFBC1481E002(NULL); } IL_000f: { int16_t L_2 = ___value0; return ((int8_t)L_2); } } // System.SByte System.Convert::ToSByte(System.UInt16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_mBD456C983093BEA880A50A2323F70FC6BFF84008 (uint16_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { uint16_t L_0 = ___value0; if ((((int32_t)L_0) <= ((int32_t)((int32_t)127)))) { goto IL_000a; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowSByteOverflowException_m516C925A443481A76D7233C155E9AFBC1481E002(NULL); } IL_000a: { uint16_t L_1 = ___value0; return ((int8_t)L_1); } } // System.SByte System.Convert::ToSByte(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m48FEC408BB749C81B91BAB51AC744EF05C7B1B25 (int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___value0; if ((((int32_t)L_0) < ((int32_t)((int32_t)-128)))) { goto IL_000a; } } { int32_t L_1 = ___value0; if ((((int32_t)L_1) <= ((int32_t)((int32_t)127)))) { goto IL_000f; } } IL_000a: { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowSByteOverflowException_m516C925A443481A76D7233C155E9AFBC1481E002(NULL); } IL_000f: { int32_t L_2 = ___value0; return ((int8_t)L_2); } } // System.SByte System.Convert::ToSByte(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_mCFBF6F4C960A860B81DDA941A85244C3B289537B (uint32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { uint32_t L_0 = ___value0; if ((((int64_t)((int64_t)(uint64_t)L_0)) <= ((int64_t)((int64_t)((int32_t)127))))) { goto IL_000c; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowSByteOverflowException_m516C925A443481A76D7233C155E9AFBC1481E002(NULL); } IL_000c: { uint32_t L_1 = ___value0; return ((int8_t)L_1); } } // System.SByte System.Convert::ToSByte(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_mC985A47EB561818B308F311670C3CE0BC0B77CEE (int64_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int64_t L_0 = ___value0; if ((((int64_t)L_0) < ((int64_t)((int64_t)((int32_t)-128))))) { goto IL_000c; } } { int64_t L_1 = ___value0; if ((((int64_t)L_1) <= ((int64_t)((int64_t)((int32_t)127))))) { goto IL_0011; } } IL_000c: { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowSByteOverflowException_m516C925A443481A76D7233C155E9AFBC1481E002(NULL); } IL_0011: { int64_t L_2 = ___value0; return ((int8_t)L_2); } } // System.SByte System.Convert::ToSByte(System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m416F5F05176CB9FB11A34986C7D970A62EF9D721 (uint64_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { uint64_t L_0 = ___value0; if ((!(((uint64_t)L_0) > ((uint64_t)((int64_t)((int32_t)127)))))) { goto IL_000b; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowSByteOverflowException_m516C925A443481A76D7233C155E9AFBC1481E002(NULL); } IL_000b: { uint64_t L_1 = ___value0; return ((int8_t)L_1); } } // System.SByte System.Convert::ToSByte(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_mBF1AD282D68CDD29A8D16C0D1BF8F04D6144F171 (float ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { float L_0 = ___value0; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int8_t L_1; L_1 = Convert_ToSByte_mBCCAF04076C6D3383BC131F564B19833A81D4D12(((double)L_0), NULL); return L_1; } } // System.SByte System.Convert::ToSByte(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_mBCCAF04076C6D3383BC131F564B19833A81D4D12 (double ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { double L_0 = ___value0; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int32_t L_1; L_1 = Convert_ToInt32_mF5B01B9D8B48919B05632EBF8ED0553474803A19(L_0, NULL); int8_t L_2; L_2 = Convert_ToSByte_m48FEC408BB749C81B91BAB51AC744EF05C7B1B25(L_1, NULL); return L_2; } } // System.SByte System.Convert::ToSByte(System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_mE77EACD343493E637DF74B0E5566FA2728C0CE80 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_0 = ___value0; il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1; L_1 = Decimal_Round_m9B0A87CF450C8D99BBBC46FD35B3664842AAF28A(L_0, 0, NULL); int8_t L_2; L_2 = Decimal_ToSByte_m328338DE187B3851D34BCC74571781719A6E5C48(L_1, NULL); return L_2; } } // System.SByte System.Convert::ToSByte(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_mDFE2115EA5D30B764BDF980379B17B5580405BB6 (String_t* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { { String_t* L_0 = ___value0; RuntimeObject* L_1 = ___provider1; int8_t L_2; L_2 = SByte_Parse_m5A860BD359C3C985A5CF31F10CA605EDBA9EA158(L_0, 7, L_1, NULL); return L_2; } } // System.Byte System.Convert::ToByte(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_mE3084FD1E6061CED60B9970512394805A93592C5 (RuntimeObject* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___value0; if (!L_0) { goto IL_0010; } } { RuntimeObject* L_1 = ___value0; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var))); uint8_t L_2; L_2 = InterfaceFuncInvoker1< uint8_t, RuntimeObject* >::Invoke(4 /* System.Byte System.IConvertible::ToByte(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)), (RuntimeObject*)NULL); return L_2; } IL_0010: { return (uint8_t)0; } } // System.Byte System.Convert::ToByte(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_m14B0CC84A400FBCED7E0A13FE69950A4F7C091FD (RuntimeObject* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___value0; if (!L_0) { goto IL_0010; } } { RuntimeObject* L_1 = ___value0; RuntimeObject* L_2 = ___provider1; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var))); uint8_t L_3; L_3 = InterfaceFuncInvoker1< uint8_t, RuntimeObject* >::Invoke(4 /* System.Byte System.IConvertible::ToByte(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)), L_2); return L_3; } IL_0010: { return (uint8_t)0; } } // System.Byte System.Convert::ToByte(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_mF977257DBAD4FAD9FF78232B33DF37121800834D (bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; if (L_0) { goto IL_0005; } } { return (uint8_t)0; } IL_0005: { return (uint8_t)1; } } // System.Byte System.Convert::ToByte(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_m16B87AC88052BB919DB0750F93819AAEDFCA5328 (Il2CppChar ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___value0; if ((((int32_t)L_0) <= ((int32_t)((int32_t)255)))) { goto IL_000d; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowByteOverflowException_m3C5E6C6941B2C5B87B6082BC69F0ED13EDF6D644(NULL); } IL_000d: { Il2CppChar L_1 = ___value0; return (uint8_t)((int32_t)(uint8_t)L_1); } } // System.Byte System.Convert::ToByte(System.SByte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_m6F6E1FFFED32B8BCB9D373D69D7E5F4B59A05462 (int8_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int8_t L_0 = ___value0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0009; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowByteOverflowException_m3C5E6C6941B2C5B87B6082BC69F0ED13EDF6D644(NULL); } IL_0009: { int8_t L_1 = ___value0; return (uint8_t)((int32_t)(uint8_t)L_1); } } // System.Byte System.Convert::ToByte(System.Int16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_m44883F4AA7C6A5394646C09CC2F9666D7A3939A6 (int16_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int16_t L_0 = ___value0; if ((((int32_t)L_0) < ((int32_t)0))) { goto IL_000c; } } { int16_t L_1 = ___value0; if ((((int32_t)L_1) <= ((int32_t)((int32_t)255)))) { goto IL_0011; } } IL_000c: { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowByteOverflowException_m3C5E6C6941B2C5B87B6082BC69F0ED13EDF6D644(NULL); } IL_0011: { int16_t L_2 = ___value0; return (uint8_t)((int32_t)(uint8_t)L_2); } } // System.Byte System.Convert::ToByte(System.UInt16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_m5310B6286A8CB3AE5361F2D3AF1E2838F710FF47 (uint16_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { uint16_t L_0 = ___value0; if ((((int32_t)L_0) <= ((int32_t)((int32_t)255)))) { goto IL_000d; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowByteOverflowException_m3C5E6C6941B2C5B87B6082BC69F0ED13EDF6D644(NULL); } IL_000d: { uint16_t L_1 = ___value0; return (uint8_t)((int32_t)(uint8_t)L_1); } } // System.Byte System.Convert::ToByte(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_mFF10E9758B7414E9C187C95ECB27FB1DFD7904B2 (int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___value0; if ((((int32_t)L_0) < ((int32_t)0))) { goto IL_000c; } } { int32_t L_1 = ___value0; if ((((int32_t)L_1) <= ((int32_t)((int32_t)255)))) { goto IL_0011; } } IL_000c: { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowByteOverflowException_m3C5E6C6941B2C5B87B6082BC69F0ED13EDF6D644(NULL); } IL_0011: { int32_t L_2 = ___value0; return (uint8_t)((int32_t)(uint8_t)L_2); } } // System.Byte System.Convert::ToByte(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_m7FDDA25B928D65C933EB6ED544650930B86150B5 (uint32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { uint32_t L_0 = ___value0; if ((!(((uint32_t)L_0) > ((uint32_t)((int32_t)255))))) { goto IL_000d; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowByteOverflowException_m3C5E6C6941B2C5B87B6082BC69F0ED13EDF6D644(NULL); } IL_000d: { uint32_t L_1 = ___value0; return (uint8_t)((int32_t)(uint8_t)L_1); } } // System.Byte System.Convert::ToByte(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_m98319CE8C8204B38E4E16E76F929DE82957295C2 (int64_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int64_t L_0 = ___value0; if ((((int64_t)L_0) < ((int64_t)((int64_t)0)))) { goto IL_000e; } } { int64_t L_1 = ___value0; if ((((int64_t)L_1) <= ((int64_t)((int64_t)((int32_t)255))))) { goto IL_0013; } } IL_000e: { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowByteOverflowException_m3C5E6C6941B2C5B87B6082BC69F0ED13EDF6D644(NULL); } IL_0013: { int64_t L_2 = ___value0; return (uint8_t)((int32_t)(uint8_t)L_2); } } // System.Byte System.Convert::ToByte(System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_m3EF86E67C42A0F227AF1EA8F717C5B4F073AA037 (uint64_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { uint64_t L_0 = ___value0; if ((!(((uint64_t)L_0) > ((uint64_t)((int64_t)((int32_t)255)))))) { goto IL_000e; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowByteOverflowException_m3C5E6C6941B2C5B87B6082BC69F0ED13EDF6D644(NULL); } IL_000e: { uint64_t L_1 = ___value0; return (uint8_t)((int32_t)(uint8_t)L_1); } } // System.Byte System.Convert::ToByte(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_m60F8CC270B21C2E3240358EA9B8C047AF38D0C04 (float ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { float L_0 = ___value0; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); uint8_t L_1; L_1 = Convert_ToByte_m5E53D009F58FF2D7D9AC5F9FCC76EB30AEBBE8D9(((double)L_0), NULL); return L_1; } } // System.Byte System.Convert::ToByte(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_m5E53D009F58FF2D7D9AC5F9FCC76EB30AEBBE8D9 (double ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { double L_0 = ___value0; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int32_t L_1; L_1 = Convert_ToInt32_mF5B01B9D8B48919B05632EBF8ED0553474803A19(L_0, NULL); uint8_t L_2; L_2 = Convert_ToByte_mFF10E9758B7414E9C187C95ECB27FB1DFD7904B2(L_1, NULL); return L_2; } } // System.Byte System.Convert::ToByte(System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_m4AEE6944CD517CB68F8D84A4DCEB4A19DE2BE072 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_0 = ___value0; il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1; L_1 = Decimal_Round_m9B0A87CF450C8D99BBBC46FD35B3664842AAF28A(L_0, 0, NULL); uint8_t L_2; L_2 = Decimal_ToByte_mC871EEA6064601E69B10B8E3231B43B83878842F(L_1, NULL); return L_2; } } // System.Byte System.Convert::ToByte(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_m8D0E3752B0E8C404D99B1776DCC2F03A31E8951B (String_t* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value0; if (L_0) { goto IL_0005; } } { return (uint8_t)0; } IL_0005: { String_t* L_1 = ___value0; il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var); CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_2; L_2 = CultureInfo_get_CurrentCulture_m43D1E4E50AB1F62ADC7C1884F28F918B53871522(NULL); uint8_t L_3; L_3 = Byte_Parse_mDF4F9DCA4919350FCFA6014D44DA6AC5D40C9665(L_1, L_2, NULL); return L_3; } } // System.Byte System.Convert::ToByte(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_mCBCFB5AB07D04AD6EE8D2E4A643A28294953507E (String_t* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { { String_t* L_0 = ___value0; if (L_0) { goto IL_0005; } } { return (uint8_t)0; } IL_0005: { String_t* L_1 = ___value0; RuntimeObject* L_2 = ___provider1; uint8_t L_3; L_3 = Byte_Parse_mB145C7CF0F7A3BBB0D8D19F3B69FE647C71D20DD(L_1, 7, L_2, NULL); return L_3; } } // System.Int16 System.Convert::ToInt16(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_m4805AB7EF2F6341AF5A86B8F6A248411B8FFCF87 (RuntimeObject* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___value0; if (!L_0) { goto IL_0010; } } { RuntimeObject* L_1 = ___value0; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var))); int16_t L_2; L_2 = InterfaceFuncInvoker1< int16_t, RuntimeObject* >::Invoke(5 /* System.Int16 System.IConvertible::ToInt16(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)), (RuntimeObject*)NULL); return L_2; } IL_0010: { return (int16_t)0; } } // System.Int16 System.Convert::ToInt16(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_m0C74052C3BCA1C06DD81F498B1E62951EE2B4D77 (RuntimeObject* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___value0; if (!L_0) { goto IL_0010; } } { RuntimeObject* L_1 = ___value0; RuntimeObject* L_2 = ___provider1; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var))); int16_t L_3; L_3 = InterfaceFuncInvoker1< int16_t, RuntimeObject* >::Invoke(5 /* System.Int16 System.IConvertible::ToInt16(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)), L_2); return L_3; } IL_0010: { return (int16_t)0; } } // System.Int16 System.Convert::ToInt16(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_m6D47CE7EDD54438C5E8984E46BD5D7BC75B4C018 (bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; if (L_0) { goto IL_0005; } } { return (int16_t)0; } IL_0005: { return (int16_t)1; } } // System.Int16 System.Convert::ToInt16(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_m68A8B475F8B3DB23BBDB85E60FCD399337C3FB5A (Il2CppChar ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___value0; if ((((int32_t)L_0) <= ((int32_t)((int32_t)32767)))) { goto IL_000d; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowInt16OverflowException_m6DE53E843F3701BD4999A40674A44DF2280FFFC4(NULL); } IL_000d: { Il2CppChar L_1 = ___value0; return ((int16_t)L_1); } } // System.Int16 System.Convert::ToInt16(System.SByte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_m37488871E359F8C71BD1CF17EE78DAC9A862DAF8 (int8_t ___value0, const RuntimeMethod* method) { { int8_t L_0 = ___value0; return L_0; } } // System.Int16 System.Convert::ToInt16(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_mB3F7CAFE06DD8DEDCA63A9AED26F753E92FB0CEF (uint8_t ___value0, const RuntimeMethod* method) { { uint8_t L_0 = ___value0; return L_0; } } // System.Int16 System.Convert::ToInt16(System.UInt16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_m526C2E6CA15C24B3F49F1CE53A89C5E7CC64A932 (uint16_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { uint16_t L_0 = ___value0; if ((((int32_t)L_0) <= ((int32_t)((int32_t)32767)))) { goto IL_000d; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowInt16OverflowException_m6DE53E843F3701BD4999A40674A44DF2280FFFC4(NULL); } IL_000d: { uint16_t L_1 = ___value0; return ((int16_t)L_1); } } // System.Int16 System.Convert::ToInt16(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_m01293E1E7E09858C74DE663E5EE1819A5D75FADB (int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___value0; if ((((int32_t)L_0) < ((int32_t)((int32_t)-32768)))) { goto IL_0010; } } { int32_t L_1 = ___value0; if ((((int32_t)L_1) <= ((int32_t)((int32_t)32767)))) { goto IL_0015; } } IL_0010: { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowInt16OverflowException_m6DE53E843F3701BD4999A40674A44DF2280FFFC4(NULL); } IL_0015: { int32_t L_2 = ___value0; return ((int16_t)L_2); } } // System.Int16 System.Convert::ToInt16(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_m1D5BBDBA6C5C64779C6CA74EC3B49AE221D47750 (uint32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { uint32_t L_0 = ___value0; if ((((int64_t)((int64_t)(uint64_t)L_0)) <= ((int64_t)((int64_t)((int32_t)32767))))) { goto IL_000f; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowInt16OverflowException_m6DE53E843F3701BD4999A40674A44DF2280FFFC4(NULL); } IL_000f: { uint32_t L_1 = ___value0; return ((int16_t)L_1); } } // System.Int16 System.Convert::ToInt16(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_m0A76DFC383DE23A9DFC036BB53B2C5AC128DF3C6 (int64_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int64_t L_0 = ___value0; if ((((int64_t)L_0) < ((int64_t)((int64_t)((int32_t)-32768))))) { goto IL_0012; } } { int64_t L_1 = ___value0; if ((((int64_t)L_1) <= ((int64_t)((int64_t)((int32_t)32767))))) { goto IL_0017; } } IL_0012: { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowInt16OverflowException_m6DE53E843F3701BD4999A40674A44DF2280FFFC4(NULL); } IL_0017: { int64_t L_2 = ___value0; return ((int16_t)L_2); } } // System.Int16 System.Convert::ToInt16(System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_m6285DDE43B5DA51A71D0A7E822FD808694A6B39D (uint64_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { uint64_t L_0 = ___value0; if ((!(((uint64_t)L_0) > ((uint64_t)((int64_t)((int32_t)32767)))))) { goto IL_000e; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowInt16OverflowException_m6DE53E843F3701BD4999A40674A44DF2280FFFC4(NULL); } IL_000e: { uint64_t L_1 = ___value0; return ((int16_t)L_1); } } // System.Int16 System.Convert::ToInt16(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_m53A1CC835CA09C6426C3A52455A14CAC8B5492E3 (float ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { float L_0 = ___value0; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int16_t L_1; L_1 = Convert_ToInt16_mACA2633040D9B9900FC6AA265F4477146BB83CBD(((double)L_0), NULL); return L_1; } } // System.Int16 System.Convert::ToInt16(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_mACA2633040D9B9900FC6AA265F4477146BB83CBD (double ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { double L_0 = ___value0; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int32_t L_1; L_1 = Convert_ToInt32_mF5B01B9D8B48919B05632EBF8ED0553474803A19(L_0, NULL); int16_t L_2; L_2 = Convert_ToInt16_m01293E1E7E09858C74DE663E5EE1819A5D75FADB(L_1, NULL); return L_2; } } // System.Int16 System.Convert::ToInt16(System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_m404082E061833975AEFAD31E7298DFAF4183120C (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_0 = ___value0; il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1; L_1 = Decimal_Round_m9B0A87CF450C8D99BBBC46FD35B3664842AAF28A(L_0, 0, NULL); int16_t L_2; L_2 = Decimal_ToInt16_m876A3F7D9FABB104373211ED85B347573F21C70A(L_1, NULL); return L_2; } } // System.Int16 System.Convert::ToInt16(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_m8532226DD71F9B6E701B8278A2AA8BE9EAD79DD8 (String_t* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { { String_t* L_0 = ___value0; if (L_0) { goto IL_0005; } } { return (int16_t)0; } IL_0005: { String_t* L_1 = ___value0; RuntimeObject* L_2 = ___provider1; int16_t L_3; L_3 = Int16_Parse_mB29053BDDF0F3B521B0DC59AD3A1276F0891AB2E(L_1, 7, L_2, NULL); return L_3; } } // System.UInt16 System.Convert::ToUInt16(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_m6BB72669F11CF14EDC49F9BA5210064484C856A4 (RuntimeObject* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___value0; if (!L_0) { goto IL_0010; } } { RuntimeObject* L_1 = ___value0; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var))); uint16_t L_2; L_2 = InterfaceFuncInvoker1< uint16_t, RuntimeObject* >::Invoke(6 /* System.UInt16 System.IConvertible::ToUInt16(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)), (RuntimeObject*)NULL); return L_2; } IL_0010: { return (uint16_t)0; } } // System.UInt16 System.Convert::ToUInt16(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_m030CBB6F7F5D26DF9E68072FB833A3ABE2CEF8D2 (RuntimeObject* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___value0; if (!L_0) { goto IL_0010; } } { RuntimeObject* L_1 = ___value0; RuntimeObject* L_2 = ___provider1; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var))); uint16_t L_3; L_3 = InterfaceFuncInvoker1< uint16_t, RuntimeObject* >::Invoke(6 /* System.UInt16 System.IConvertible::ToUInt16(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)), L_2); return L_3; } IL_0010: { return (uint16_t)0; } } // System.UInt16 System.Convert::ToUInt16(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_m61CCF77302806BC465D3E04BAF75636FC67E6EB6 (bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; if (L_0) { goto IL_0005; } } { return (uint16_t)0; } IL_0005: { return (uint16_t)1; } } // System.UInt16 System.Convert::ToUInt16(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_m0FB860828DC5FD0B84FF8AF8B56E3E20107595FE (Il2CppChar ___value0, const RuntimeMethod* method) { { Il2CppChar L_0 = ___value0; return L_0; } } // System.UInt16 System.Convert::ToUInt16(System.SByte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_m451E4CDB29BD4BBDE119C4E0D43F384A2DDBACCB (int8_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int8_t L_0 = ___value0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0009; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowUInt16OverflowException_m0B9408271B529B2C798687CE1C48DED0D2BB396F(NULL); } IL_0009: { int8_t L_1 = ___value0; return (uint16_t)((int32_t)(uint16_t)L_1); } } // System.UInt16 System.Convert::ToUInt16(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_m06D1DFA8EB77970F1736CEF33904EBEE476B7860 (uint8_t ___value0, const RuntimeMethod* method) { { uint8_t L_0 = ___value0; return L_0; } } // System.UInt16 System.Convert::ToUInt16(System.Int16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_m97684D0B8C0270379C7D036CC808EE03EB76D17A (int16_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int16_t L_0 = ___value0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0009; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowUInt16OverflowException_m0B9408271B529B2C798687CE1C48DED0D2BB396F(NULL); } IL_0009: { int16_t L_1 = ___value0; return (uint16_t)((int32_t)(uint16_t)L_1); } } // System.UInt16 System.Convert::ToUInt16(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_m574A6C8E905EEADA4FC733AE24C6DFCB8CAB0017 (int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___value0; if ((((int32_t)L_0) < ((int32_t)0))) { goto IL_000c; } } { int32_t L_1 = ___value0; if ((((int32_t)L_1) <= ((int32_t)((int32_t)65535)))) { goto IL_0011; } } IL_000c: { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowUInt16OverflowException_m0B9408271B529B2C798687CE1C48DED0D2BB396F(NULL); } IL_0011: { int32_t L_2 = ___value0; return (uint16_t)((int32_t)(uint16_t)L_2); } } // System.UInt16 System.Convert::ToUInt16(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_m2AB3FDB429C63BCEE383564CFBE1A892C035ADE7 (uint32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { uint32_t L_0 = ___value0; if ((!(((uint32_t)L_0) > ((uint32_t)((int32_t)65535))))) { goto IL_000d; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowUInt16OverflowException_m0B9408271B529B2C798687CE1C48DED0D2BB396F(NULL); } IL_000d: { uint32_t L_1 = ___value0; return (uint16_t)((int32_t)(uint16_t)L_1); } } // System.UInt16 System.Convert::ToUInt16(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_m532EDFCB0D612615A17290B740DE9A6E638FCF1A (int64_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int64_t L_0 = ___value0; if ((((int64_t)L_0) < ((int64_t)((int64_t)0)))) { goto IL_000e; } } { int64_t L_1 = ___value0; if ((((int64_t)L_1) <= ((int64_t)((int64_t)((int32_t)65535))))) { goto IL_0013; } } IL_000e: { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowUInt16OverflowException_m0B9408271B529B2C798687CE1C48DED0D2BB396F(NULL); } IL_0013: { int64_t L_2 = ___value0; return (uint16_t)((int32_t)(uint16_t)L_2); } } // System.UInt16 System.Convert::ToUInt16(System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_m6DED9D1D608980D40FB69AE6036D26B23E5E5642 (uint64_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { uint64_t L_0 = ___value0; if ((!(((uint64_t)L_0) > ((uint64_t)((int64_t)((int32_t)65535)))))) { goto IL_000e; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowUInt16OverflowException_m0B9408271B529B2C798687CE1C48DED0D2BB396F(NULL); } IL_000e: { uint64_t L_1 = ___value0; return (uint16_t)((int32_t)(uint16_t)L_1); } } // System.UInt16 System.Convert::ToUInt16(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_mE54C6FD60D85443ED00A3C76BCB5B548D3153B28 (float ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { float L_0 = ___value0; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); uint16_t L_1; L_1 = Convert_ToUInt16_mDA628B7AA6344EFFC65CBD431CB05249C1DA032C(((double)L_0), NULL); return L_1; } } // System.UInt16 System.Convert::ToUInt16(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_mDA628B7AA6344EFFC65CBD431CB05249C1DA032C (double ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { double L_0 = ___value0; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int32_t L_1; L_1 = Convert_ToInt32_mF5B01B9D8B48919B05632EBF8ED0553474803A19(L_0, NULL); uint16_t L_2; L_2 = Convert_ToUInt16_m574A6C8E905EEADA4FC733AE24C6DFCB8CAB0017(L_1, NULL); return L_2; } } // System.UInt16 System.Convert::ToUInt16(System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_m5559CFE07FC3B883C179383E15898BA2FA21FEAF (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_0 = ___value0; il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1; L_1 = Decimal_Round_m9B0A87CF450C8D99BBBC46FD35B3664842AAF28A(L_0, 0, NULL); uint16_t L_2; L_2 = Decimal_ToUInt16_m1623E741A0EAA351EF1E9493887DB60815CEEC4A(L_1, NULL); return L_2; } } // System.UInt16 System.Convert::ToUInt16(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_m38F6A77598C2D3ECD0218874E124F004791F1AD7 (String_t* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { { String_t* L_0 = ___value0; if (L_0) { goto IL_0005; } } { return (uint16_t)0; } IL_0005: { String_t* L_1 = ___value0; RuntimeObject* L_2 = ___provider1; uint16_t L_3; L_3 = UInt16_Parse_m611A8B68FDAB6B48A9E5DBB44CD0230DE9C57586(L_1, 7, L_2, NULL); return L_3; } } // System.Int32 System.Convert::ToInt32(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m6CCBC0A6ED81DAF7191F4C4F55CA038AF9B1E042 (RuntimeObject* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___value0; if (!L_0) { goto IL_0010; } } { RuntimeObject* L_1 = ___value0; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var))); int32_t L_2; L_2 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(7 /* System.Int32 System.IConvertible::ToInt32(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)), (RuntimeObject*)NULL); return L_2; } IL_0010: { return 0; } } // System.Int32 System.Convert::ToInt32(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m2BB2FCE52968B106528283B6E972DCEB875128D9 (RuntimeObject* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___value0; if (!L_0) { goto IL_0010; } } { RuntimeObject* L_1 = ___value0; RuntimeObject* L_2 = ___provider1; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var))); int32_t L_3; L_3 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(7 /* System.Int32 System.IConvertible::ToInt32(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)), L_2); return L_3; } IL_0010: { return 0; } } // System.Int32 System.Convert::ToInt32(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_mD16970C5EE189AB763DADA2434A719FDB3FBF542 (bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; if (L_0) { goto IL_0005; } } { return 0; } IL_0005: { return 1; } } // System.Int32 System.Convert::ToInt32(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m7B23BC2572EEB2B03EDAA26D2D9232C4A00DA00C (Il2CppChar ___value0, const RuntimeMethod* method) { { Il2CppChar L_0 = ___value0; return L_0; } } // System.Int32 System.Convert::ToInt32(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_mD6F4F8BC8041480EBBF52F8CA11D1386A5EE019D (uint8_t ___value0, const RuntimeMethod* method) { { uint8_t L_0 = ___value0; return L_0; } } // System.Int32 System.Convert::ToInt32(System.Int16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_mFE6E311A5AE91912673E6C7026A4A5C19C2C0F9B (int16_t ___value0, const RuntimeMethod* method) { { int16_t L_0 = ___value0; return L_0; } } // System.Int32 System.Convert::ToInt32(System.UInt16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_mCB03F1E460F2D07CB009ACAFDB2DB0D9B5D97B2B (uint16_t ___value0, const RuntimeMethod* method) { { uint16_t L_0 = ___value0; return L_0; } } // System.Int32 System.Convert::ToInt32(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m847B6C9052D2F57C81892084F13998C975FCACDE (uint32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { uint32_t L_0 = ___value0; if ((!(((uint32_t)L_0) > ((uint32_t)((int32_t)2147483647LL))))) { goto IL_000d; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowInt32OverflowException_m6BC145DD83A74DD22E28360B787FCF3FEEF125D3(NULL); } IL_000d: { uint32_t L_1 = ___value0; return L_1; } } // System.Int32 System.Convert::ToInt32(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m6CF400D06BAE91A50DBC67028A402D7E92DA7906 (int64_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int64_t L_0 = ___value0; if ((((int64_t)L_0) < ((int64_t)((int64_t)((int32_t)-2147483648LL))))) { goto IL_0012; } } { int64_t L_1 = ___value0; if ((((int64_t)L_1) <= ((int64_t)((int64_t)((int32_t)2147483647LL))))) { goto IL_0017; } } IL_0012: { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowInt32OverflowException_m6BC145DD83A74DD22E28360B787FCF3FEEF125D3(NULL); } IL_0017: { int64_t L_2 = ___value0; return ((int32_t)L_2); } } // System.Int32 System.Convert::ToInt32(System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m02263C26D13E90F2630DF7F1AD53225774770DD8 (uint64_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { uint64_t L_0 = ___value0; if ((!(((uint64_t)L_0) > ((uint64_t)((int64_t)((int32_t)2147483647LL)))))) { goto IL_000e; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowInt32OverflowException_m6BC145DD83A74DD22E28360B787FCF3FEEF125D3(NULL); } IL_000e: { uint64_t L_1 = ___value0; return ((int32_t)L_1); } } // System.Int32 System.Convert::ToInt32(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_mB82C6718759AA55BAF2C824661EB28AAD2F933FB (float ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { float L_0 = ___value0; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int32_t L_1; L_1 = Convert_ToInt32_mF5B01B9D8B48919B05632EBF8ED0553474803A19(((double)L_0), NULL); return L_1; } } // System.Int32 System.Convert::ToInt32(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_mF5B01B9D8B48919B05632EBF8ED0553474803A19 (double ___value0, const RuntimeMethod* method) { int32_t V_0 = 0; double V_1 = 0.0; int32_t V_2 = 0; double V_3 = 0.0; { double L_0 = ___value0; if ((!(((double)L_0) >= ((double)(0.0))))) { goto IL_0043; } } { double L_1 = ___value0; if ((!(((double)L_1) < ((double)(2147483647.5))))) { goto IL_007a; } } { double L_2 = ___value0; V_0 = il2cpp_codegen_cast_double_to_int(L_2); double L_3 = ___value0; int32_t L_4 = V_0; V_1 = ((double)il2cpp_codegen_subtract(L_3, ((double)L_4))); double L_5 = V_1; if ((((double)L_5) > ((double)(0.5)))) { goto IL_003d; } } { double L_6 = V_1; if ((!(((double)L_6) == ((double)(0.5))))) { goto IL_0041; } } { int32_t L_7 = V_0; if (!((int32_t)(L_7&1))) { goto IL_0041; } } IL_003d: { int32_t L_8 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_8, 1)); } IL_0041: { int32_t L_9 = V_0; return L_9; } IL_0043: { double L_10 = ___value0; if ((!(((double)L_10) >= ((double)(-2147483648.5))))) { goto IL_007a; } } { double L_11 = ___value0; V_2 = il2cpp_codegen_cast_double_to_int(L_11); double L_12 = ___value0; int32_t L_13 = V_2; V_3 = ((double)il2cpp_codegen_subtract(L_12, ((double)L_13))); double L_14 = V_3; if ((((double)L_14) < ((double)(-0.5)))) { goto IL_0074; } } { double L_15 = V_3; if ((!(((double)L_15) == ((double)(-0.5))))) { goto IL_0078; } } { int32_t L_16 = V_2; if (!((int32_t)(L_16&1))) { goto IL_0078; } } IL_0074: { int32_t L_17 = V_2; V_2 = ((int32_t)il2cpp_codegen_subtract(L_17, 1)); } IL_0078: { int32_t L_18 = V_2; return L_18; } IL_007a: { OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C* L_19 = (OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C_il2cpp_TypeInfo_var))); NullCheck(L_19); OverflowException__ctor_m2B99D79236B7B87C0BB6C9AB2E557DECE481C264(L_19, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4DD3DE8CCECA489C7DDD3362FC292A3BE39B68F1)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ToInt32_mF5B01B9D8B48919B05632EBF8ED0553474803A19_RuntimeMethod_var))); } } // System.Int32 System.Convert::ToInt32(System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m36AF6C64BC52B8D609218F24BB36A549F93EA452 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_0 = ___value0; il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1; L_1 = Decimal_Round_m9B0A87CF450C8D99BBBC46FD35B3664842AAF28A(L_0, 0, NULL); int32_t L_2; L_2 = Decimal_ToInt32_m683C06E2C4596EC3BD7106B222AAA161D07F423A(L_1, NULL); return L_2; } } // System.Int32 System.Convert::ToInt32(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_mA763F077DBFEB1F6A3B54471BE1DF07D667A6834 (String_t* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { { String_t* L_0 = ___value0; if (L_0) { goto IL_0005; } } { return 0; } IL_0005: { String_t* L_1 = ___value0; RuntimeObject* L_2 = ___provider1; int32_t L_3; L_3 = Int32_Parse_m4E0F64712C08AC41AF6A692207E90020BC6BD7BE(L_1, 7, L_2, NULL); return L_3; } } // System.UInt32 System.Convert::ToUInt32(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_m3882AC06C9D9E2CA1740A79B49C695FE541D8AC9 (RuntimeObject* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___value0; if (!L_0) { goto IL_0010; } } { RuntimeObject* L_1 = ___value0; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var))); uint32_t L_2; L_2 = InterfaceFuncInvoker1< uint32_t, RuntimeObject* >::Invoke(8 /* System.UInt32 System.IConvertible::ToUInt32(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)), (RuntimeObject*)NULL); return L_2; } IL_0010: { return 0; } } // System.UInt32 System.Convert::ToUInt32(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_mA918A6603004E50848FE1BB5809A8C636DD1B4DB (RuntimeObject* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___value0; if (!L_0) { goto IL_0010; } } { RuntimeObject* L_1 = ___value0; RuntimeObject* L_2 = ___provider1; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var))); uint32_t L_3; L_3 = InterfaceFuncInvoker1< uint32_t, RuntimeObject* >::Invoke(8 /* System.UInt32 System.IConvertible::ToUInt32(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)), L_2); return L_3; } IL_0010: { return 0; } } // System.UInt32 System.Convert::ToUInt32(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_mD579DB6F3E99722DCE6756D9330B6435B931CBEF (bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; if (L_0) { goto IL_0005; } } { return 0; } IL_0005: { return 1; } } // System.UInt32 System.Convert::ToUInt32(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_m6C49ADD250ABFA39D54638C9EF14DAB913915EF4 (Il2CppChar ___value0, const RuntimeMethod* method) { { Il2CppChar L_0 = ___value0; return L_0; } } // System.UInt32 System.Convert::ToUInt32(System.SByte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_m7550DE96A918DD98F2126FDB160126E9F33409E9 (int8_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int8_t L_0 = ___value0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0009; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowUInt32OverflowException_m7A384673C2A1C80ADDE1013AFF3F15F0F210CBAD(NULL); } IL_0009: { int8_t L_1 = ___value0; return L_1; } } // System.UInt32 System.Convert::ToUInt32(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_mF374B8C0AFCF94DA41B29ED55B03DE0EA45D0C86 (uint8_t ___value0, const RuntimeMethod* method) { { uint8_t L_0 = ___value0; return L_0; } } // System.UInt32 System.Convert::ToUInt32(System.Int16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_mC0B9AE07837DB3DFFA2DFC7CAA489F147F9E7CA1 (int16_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int16_t L_0 = ___value0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0009; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowUInt32OverflowException_m7A384673C2A1C80ADDE1013AFF3F15F0F210CBAD(NULL); } IL_0009: { int16_t L_1 = ___value0; return L_1; } } // System.UInt32 System.Convert::ToUInt32(System.UInt16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_mC7604618E3713D5BFDAC68D201C01F13ADCF85C2 (uint16_t ___value0, const RuntimeMethod* method) { { uint16_t L_0 = ___value0; return L_0; } } // System.UInt32 System.Convert::ToUInt32(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_m7E15E7E39C7E0835A13F3D3D54CB1723D7BF17E3 (int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___value0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0009; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowUInt32OverflowException_m7A384673C2A1C80ADDE1013AFF3F15F0F210CBAD(NULL); } IL_0009: { int32_t L_1 = ___value0; return L_1; } } // System.UInt32 System.Convert::ToUInt32(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_m9F3F4B62B8DA5A3EDC7FDD1A9893259C745DABE6 (int64_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int64_t L_0 = ___value0; if ((((int64_t)L_0) < ((int64_t)((int64_t)0)))) { goto IL_000a; } } { int64_t L_1 = ___value0; if ((((int64_t)L_1) <= ((int64_t)((int64_t)(uint64_t)((uint32_t)(-1)))))) { goto IL_000f; } } IL_000a: { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowUInt32OverflowException_m7A384673C2A1C80ADDE1013AFF3F15F0F210CBAD(NULL); } IL_000f: { int64_t L_2 = ___value0; return ((int32_t)(uint32_t)L_2); } } // System.UInt32 System.Convert::ToUInt32(System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_mF6EA0C307FAA115FC8870D87F512082DAFBC1FDA (uint64_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { uint64_t L_0 = ___value0; if ((!(((uint64_t)L_0) > ((uint64_t)((int64_t)(uint64_t)((uint32_t)(-1))))))) { goto IL_000a; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowUInt32OverflowException_m7A384673C2A1C80ADDE1013AFF3F15F0F210CBAD(NULL); } IL_000a: { uint64_t L_1 = ___value0; return ((int32_t)(uint32_t)L_1); } } // System.UInt32 System.Convert::ToUInt32(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_mFC6BAA30116D13A122FEA73FBC8CF5C722C92327 (float ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { float L_0 = ___value0; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); uint32_t L_1; L_1 = Convert_ToUInt32_mFDECCDA93B6FFF3EA3E3B874EAD954410AC8577A(((double)L_0), NULL); return L_1; } } // System.UInt32 System.Convert::ToUInt32(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_mFDECCDA93B6FFF3EA3E3B874EAD954410AC8577A (double ___value0, const RuntimeMethod* method) { uint32_t V_0 = 0; double V_1 = 0.0; { double L_0 = ___value0; if ((!(((double)L_0) >= ((double)(-0.5))))) { goto IL_0044; } } { double L_1 = ___value0; if ((!(((double)L_1) < ((double)(4294967295.5))))) { goto IL_0044; } } { double L_2 = ___value0; V_0 = il2cpp_codegen_cast_floating_point(L_2); double L_3 = ___value0; uint32_t L_4 = V_0; V_1 = ((double)il2cpp_codegen_subtract(L_3, ((double)((double)(uint32_t)L_4)))); double L_5 = V_1; if ((((double)L_5) > ((double)(0.5)))) { goto IL_003e; } } { double L_6 = V_1; if ((!(((double)L_6) == ((double)(0.5))))) { goto IL_0042; } } { uint32_t L_7 = V_0; if (!((int32_t)((int32_t)L_7&1))) { goto IL_0042; } } IL_003e: { uint32_t L_8 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, 1)); } IL_0042: { uint32_t L_9 = V_0; return L_9; } IL_0044: { OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C* L_10 = (OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C_il2cpp_TypeInfo_var))); NullCheck(L_10); OverflowException__ctor_m2B99D79236B7B87C0BB6C9AB2E557DECE481C264(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF072EABB286891F7AE6ED11AF63686B8B0F5023E)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ToUInt32_mFDECCDA93B6FFF3EA3E3B874EAD954410AC8577A_RuntimeMethod_var))); } } // System.UInt32 System.Convert::ToUInt32(System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_m08972DB622B86DFD8CBA99078185B1A6016F625B (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_0 = ___value0; il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1; L_1 = Decimal_Round_m9B0A87CF450C8D99BBBC46FD35B3664842AAF28A(L_0, 0, NULL); uint32_t L_2; L_2 = Decimal_ToUInt32_mF5CF64E6C53BECACD3DBD091FC6C0608D1C41B29(L_1, NULL); return L_2; } } // System.UInt32 System.Convert::ToUInt32(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_m22251BFE6E570FE4C6B27E85D0AE93296A1730CF (String_t* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { { String_t* L_0 = ___value0; if (L_0) { goto IL_0005; } } { return 0; } IL_0005: { String_t* L_1 = ___value0; RuntimeObject* L_2 = ___provider1; uint32_t L_3; L_3 = UInt32_Parse_mDAD25C8FC2F1A9AC06A4542C93718D939890B545(L_1, 7, L_2, NULL); return L_3; } } // System.Int64 System.Convert::ToInt64(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_mC34CCA8720E7032D4CFA51E522DB99EC6F07F16D (RuntimeObject* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___value0; if (!L_0) { goto IL_0010; } } { RuntimeObject* L_1 = ___value0; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var))); int64_t L_2; L_2 = InterfaceFuncInvoker1< int64_t, RuntimeObject* >::Invoke(9 /* System.Int64 System.IConvertible::ToInt64(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)), (RuntimeObject*)NULL); return L_2; } IL_0010: { return ((int64_t)0); } } // System.Int64 System.Convert::ToInt64(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_mA1406B21E08189BC896A2260B9753AF60570DE1F (RuntimeObject* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___value0; if (!L_0) { goto IL_0010; } } { RuntimeObject* L_1 = ___value0; RuntimeObject* L_2 = ___provider1; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var))); int64_t L_3; L_3 = InterfaceFuncInvoker1< int64_t, RuntimeObject* >::Invoke(9 /* System.Int64 System.IConvertible::ToInt64(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)), L_2); return L_3; } IL_0010: { return ((int64_t)0); } } // System.Int64 System.Convert::ToInt64(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m088C96D2D0B6081065FF8EF0FBF63C7EBC7DC4AF (bool ___value0, const RuntimeMethod* method) { int32_t G_B3_0 = 0; { bool L_0 = ___value0; if (L_0) { goto IL_0006; } } { G_B3_0 = 0; goto IL_0007; } IL_0006: { G_B3_0 = 1; } IL_0007: { return ((int64_t)G_B3_0); } } // System.Int64 System.Convert::ToInt64(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m78EE47584CDC6753BC193CC3E469BECEF305DE2E (Il2CppChar ___value0, const RuntimeMethod* method) { { Il2CppChar L_0 = ___value0; return ((int64_t)(uint64_t)L_0); } } // System.Int64 System.Convert::ToInt64(System.SByte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_mDF42822798AA9ACA678CBC7AFCD2029B3F112CD8 (int8_t ___value0, const RuntimeMethod* method) { { int8_t L_0 = ___value0; return ((int64_t)L_0); } } // System.Int64 System.Convert::ToInt64(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m07CC879AB17B027757C66B87C50DEB0322589382 (uint8_t ___value0, const RuntimeMethod* method) { { uint8_t L_0 = ___value0; return ((int64_t)(uint64_t)L_0); } } // System.Int64 System.Convert::ToInt64(System.Int16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_mFF64C31A4D42573E23745342419C7A19E40CB404 (int16_t ___value0, const RuntimeMethod* method) { { int16_t L_0 = ___value0; return ((int64_t)L_0); } } // System.Int64 System.Convert::ToInt64(System.UInt16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m5D1BAEE59DB5CF2556124906E4A6492F6C39EFDF (uint16_t ___value0, const RuntimeMethod* method) { { uint16_t L_0 = ___value0; return ((int64_t)(uint64_t)L_0); } } // System.Int64 System.Convert::ToInt64(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m1F3173B70669A0F9B101B4AF6A2D0DFD4D95F8D6 (int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; return ((int64_t)L_0); } } // System.Int64 System.Convert::ToInt64(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_mEF296933FF722B43AB51B831830F974163E63BBA (uint32_t ___value0, const RuntimeMethod* method) { { uint32_t L_0 = ___value0; return ((int64_t)(uint64_t)L_0); } } // System.Int64 System.Convert::ToInt64(System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m765FCB18AC86AFAC48D5CAC8CBB96AB03021B268 (uint64_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { uint64_t L_0 = ___value0; if ((!(((uint64_t)L_0) > ((uint64_t)((int64_t)(std::numeric_limits::max)()))))) { goto IL_0011; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowInt64OverflowException_mA6ADF322807A2E2FCACCE80273B8E47E37626B40(NULL); } IL_0011: { uint64_t L_1 = ___value0; return L_1; } } // System.Int64 System.Convert::ToInt64(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m30133C834300465D004C70C55EE4186C8F87D746 (float ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { float L_0 = ___value0; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int64_t L_1; L_1 = Convert_ToInt64_m5B707D520332D512D2B81C10D2F4044FA468C3A4(((double)L_0), NULL); return L_1; } } // System.Int64 System.Convert::ToInt64(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m5B707D520332D512D2B81C10D2F4044FA468C3A4 (double ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_ToInt64_m5B707D520332D512D2B81C10D2F4044FA468C3A4_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { double L_0 = ___value0; il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var); double L_1; L_1 = bankers_round(L_0); if (L_1 > (double)((std::numeric_limits::max)())) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), Convert_ToInt64_m5B707D520332D512D2B81C10D2F4044FA468C3A4_RuntimeMethod_var); return il2cpp_codegen_cast_double_to_int(L_1); } } // System.Int64 System.Convert::ToInt64(System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m22E86AFB4F2EA0CC90E1094F78B19624BFACFE9E (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_0 = ___value0; il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1; L_1 = Decimal_Round_m9B0A87CF450C8D99BBBC46FD35B3664842AAF28A(L_0, 0, NULL); int64_t L_2; L_2 = Decimal_ToInt64_mA97479D4AC61BC0E51DD9552C78EAC2B13C6F347(L_1, NULL); return L_2; } } // System.Int64 System.Convert::ToInt64(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m3B175EE996295999BF9495C4DB2CCD81680F1F49 (String_t* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value0; if (L_0) { goto IL_0006; } } { return ((int64_t)0); } IL_0006: { String_t* L_1 = ___value0; il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var); CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_2; L_2 = CultureInfo_get_CurrentCulture_m43D1E4E50AB1F62ADC7C1884F28F918B53871522(NULL); int64_t L_3; L_3 = Int64_Parse_mB5F8E4FC206A9A8445F6A81076C2885BDD2BFF04(L_1, L_2, NULL); return L_3; } } // System.Int64 System.Convert::ToInt64(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m921C5387614F1F5D2582F337D03BFC0B0EA2AC3D (String_t* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { { String_t* L_0 = ___value0; if (L_0) { goto IL_0006; } } { return ((int64_t)0); } IL_0006: { String_t* L_1 = ___value0; RuntimeObject* L_2 = ___provider1; int64_t L_3; L_3 = Int64_Parse_m29E349CD0EFA58F997622CB547FE9F0DD130A027(L_1, 7, L_2, NULL); return L_3; } } // System.UInt64 System.Convert::ToUInt64(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_mC1875D406056690604DF2C04374B33EF1029E950 (RuntimeObject* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___value0; if (!L_0) { goto IL_0010; } } { RuntimeObject* L_1 = ___value0; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var))); uint64_t L_2; L_2 = InterfaceFuncInvoker1< uint64_t, RuntimeObject* >::Invoke(10 /* System.UInt64 System.IConvertible::ToUInt64(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)), (RuntimeObject*)NULL); return L_2; } IL_0010: { return ((int64_t)0); } } // System.UInt64 System.Convert::ToUInt64(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_mADB5C91571CFFD9E888E683CC55FF10F2B3F699C (RuntimeObject* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___value0; if (!L_0) { goto IL_0010; } } { RuntimeObject* L_1 = ___value0; RuntimeObject* L_2 = ___provider1; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var))); uint64_t L_3; L_3 = InterfaceFuncInvoker1< uint64_t, RuntimeObject* >::Invoke(10 /* System.UInt64 System.IConvertible::ToUInt64(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)), L_2); return L_3; } IL_0010: { return ((int64_t)0); } } // System.UInt64 System.Convert::ToUInt64(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_m9F4FD0FE25118FD7C277B50B09A40FABA35DB514 (bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; if (L_0) { goto IL_0006; } } { return ((int64_t)0); } IL_0006: { return ((int64_t)1); } } // System.UInt64 System.Convert::ToUInt64(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_mDD6727751D6284FE0BCFCE3B3195DBFEDB6F8A74 (Il2CppChar ___value0, const RuntimeMethod* method) { { Il2CppChar L_0 = ___value0; return ((int64_t)(uint64_t)L_0); } } // System.UInt64 System.Convert::ToUInt64(System.SByte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_m4339DD3C782DC3319A12F10FDB92EDC759A451FA (int8_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int8_t L_0 = ___value0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0009; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowUInt64OverflowException_mE098E118D47982640208F378D742B24DD1B91BFA(NULL); } IL_0009: { int8_t L_1 = ___value0; return ((int64_t)L_1); } } // System.UInt64 System.Convert::ToUInt64(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_mF93EE9B4E26F1E75F6A4AB861CE607B4617E1647 (uint8_t ___value0, const RuntimeMethod* method) { { uint8_t L_0 = ___value0; return ((int64_t)(uint64_t)L_0); } } // System.UInt64 System.Convert::ToUInt64(System.Int16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_m1680477149F9B345696BAC62D4170D8062212848 (int16_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int16_t L_0 = ___value0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0009; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowUInt64OverflowException_mE098E118D47982640208F378D742B24DD1B91BFA(NULL); } IL_0009: { int16_t L_1 = ___value0; return ((int64_t)L_1); } } // System.UInt64 System.Convert::ToUInt64(System.UInt16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_m5344E08130EC635D229ED57E40231F860383C37E (uint16_t ___value0, const RuntimeMethod* method) { { uint16_t L_0 = ___value0; return ((int64_t)(uint64_t)L_0); } } // System.UInt64 System.Convert::ToUInt64(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_m7899B63591257E56EC9B6BFB19396C3890F41233 (int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___value0; if ((((int32_t)L_0) >= ((int32_t)0))) { goto IL_0009; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowUInt64OverflowException_mE098E118D47982640208F378D742B24DD1B91BFA(NULL); } IL_0009: { int32_t L_1 = ___value0; return ((int64_t)L_1); } } // System.UInt64 System.Convert::ToUInt64(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_mFBB976BA9AB1A83325F642219BF1D8F04030768D (uint32_t ___value0, const RuntimeMethod* method) { { uint32_t L_0 = ___value0; return ((int64_t)(uint64_t)L_0); } } // System.UInt64 System.Convert::ToUInt64(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_m5123681A23502C385B4427A0BB8BD3E3D45F3A78 (int64_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int64_t L_0 = ___value0; if ((((int64_t)L_0) >= ((int64_t)((int64_t)0)))) { goto IL_000a; } } { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowUInt64OverflowException_mE098E118D47982640208F378D742B24DD1B91BFA(NULL); } IL_000a: { int64_t L_1 = ___value0; return L_1; } } // System.UInt64 System.Convert::ToUInt64(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_mD1F441A212C758877A6F3D8A8B2DD5C35EB9873D (float ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { float L_0 = ___value0; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); uint64_t L_1; L_1 = Convert_ToUInt64_m4990F2CE28C4CE3079D458BA578EFBA46D875B3E(((double)L_0), NULL); return L_1; } } // System.UInt64 System.Convert::ToUInt64(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_m4990F2CE28C4CE3079D458BA578EFBA46D875B3E (double ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_ToUInt64_m4990F2CE28C4CE3079D458BA578EFBA46D875B3E_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { double L_0 = ___value0; il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var); double L_1; L_1 = bankers_round(L_0); if (L_1 > (double)((std::numeric_limits::max)())) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), Convert_ToUInt64_m4990F2CE28C4CE3079D458BA578EFBA46D875B3E_RuntimeMethod_var); return il2cpp_codegen_cast_floating_point(L_1); } } // System.UInt64 System.Convert::ToUInt64(System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_m73A98C48367C40CC9D8295B03BC7B3ACB2E60478 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_0 = ___value0; il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1; L_1 = Decimal_Round_m9B0A87CF450C8D99BBBC46FD35B3664842AAF28A(L_0, 0, NULL); uint64_t L_2; L_2 = Decimal_ToUInt64_m291071E9749B7651271F3F11026A6A7DE7DA4D3A(L_1, NULL); return L_2; } } // System.UInt64 System.Convert::ToUInt64(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_m5CC1F213E1D7E1ED8742DCA503EF7EE355569DD2 (String_t* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { { String_t* L_0 = ___value0; if (L_0) { goto IL_0006; } } { return ((int64_t)0); } IL_0006: { String_t* L_1 = ___value0; RuntimeObject* L_2 = ___provider1; uint64_t L_3; L_3 = UInt64_Parse_m742469A6A10955F7633E2D897B33309B264427E1(L_1, 7, L_2, NULL); return L_3; } } // System.Single System.Convert::ToSingle(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_m65BB01710E72B9F3DF110EB46392D3AB36978D99 (RuntimeObject* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___value0; if (!L_0) { goto IL_0010; } } { RuntimeObject* L_1 = ___value0; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var))); float L_2; L_2 = InterfaceFuncInvoker1< float, RuntimeObject* >::Invoke(11 /* System.Single System.IConvertible::ToSingle(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)), (RuntimeObject*)NULL); return L_2; } IL_0010: { return (0.0f); } } // System.Single System.Convert::ToSingle(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_mFF1FC5B5814C499FE23FB7C0C26C17E49EC7D08C (RuntimeObject* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___value0; if (!L_0) { goto IL_0010; } } { RuntimeObject* L_1 = ___value0; RuntimeObject* L_2 = ___provider1; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var))); float L_3; L_3 = InterfaceFuncInvoker1< float, RuntimeObject* >::Invoke(11 /* System.Single System.IConvertible::ToSingle(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)), L_2); return L_3; } IL_0010: { return (0.0f); } } // System.Single System.Convert::ToSingle(System.SByte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_m057361D875E6D3A9A3E14C9F5E035C8BC084FED9 (int8_t ___value0, const RuntimeMethod* method) { { int8_t L_0 = ___value0; return ((float)L_0); } } // System.Single System.Convert::ToSingle(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_mB480FA1431E5AE1B4CF7656C8F1793ABB1BCF510 (uint8_t ___value0, const RuntimeMethod* method) { { uint8_t L_0 = ___value0; return ((float)L_0); } } // System.Single System.Convert::ToSingle(System.Int16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_m751A886F9F69E0C48B58D73E9204908C1CC993C0 (int16_t ___value0, const RuntimeMethod* method) { { int16_t L_0 = ___value0; return ((float)L_0); } } // System.Single System.Convert::ToSingle(System.UInt16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_mB59B0FA5F027A4C2CD5BB7C464732B47F20FC39E (uint16_t ___value0, const RuntimeMethod* method) { { uint16_t L_0 = ___value0; return ((float)L_0); } } // System.Single System.Convert::ToSingle(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_mB562D40271078F5561C203FB30E15B8913667C2C (int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; return ((float)L_0); } } // System.Single System.Convert::ToSingle(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_mD1CA5C92BBD4F58FA7F6E0B80C201A6D55C588D9 (uint32_t ___value0, const RuntimeMethod* method) { { uint32_t L_0 = ___value0; return ((float)((double)(uint32_t)L_0)); } } // System.Single System.Convert::ToSingle(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_mF8B342A2783390E9FF94C9E45B29FB50F764A073 (int64_t ___value0, const RuntimeMethod* method) { { int64_t L_0 = ___value0; return ((float)L_0); } } // System.Single System.Convert::ToSingle(System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_m0833F36F33B69C16844F75F19F4E2DD2BF750BAE (uint64_t ___value0, const RuntimeMethod* method) { { uint64_t L_0 = ___value0; return ((float)((double)(uint64_t)L_0)); } } // System.Single System.Convert::ToSingle(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_m4F90F84AF756BCDA7671427D3E5B0C7F6A4D826D (double ___value0, const RuntimeMethod* method) { { double L_0 = ___value0; return ((float)L_0); } } // System.Single System.Convert::ToSingle(System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_m68227D3F66FA972AA30AF24BFF35C9A1CF339ED3 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_0 = ___value0; il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); float L_1; L_1 = Decimal_op_Explicit_m52A93EB0AC4766C64D68DB6947D9D2770EFE8A93(L_0, NULL); return ((float)L_1); } } // System.Single System.Convert::ToSingle(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_m70256FFD080CBD85CC41D705DFCBC77EC433D4FD (String_t* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value0; if (L_0) { goto IL_0009; } } { return (0.0f); } IL_0009: { String_t* L_1 = ___value0; il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var); CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_2; L_2 = CultureInfo_get_CurrentCulture_m43D1E4E50AB1F62ADC7C1884F28F918B53871522(NULL); float L_3; L_3 = Single_Parse_m4CCF536F9DA447D8822618DF5C6F8F31494B2909(L_1, L_2, NULL); return L_3; } } // System.Single System.Convert::ToSingle(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_m2CF7FECE2FEB934F0355D9FD5FB2D027B3D5F0E5 (String_t* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { { String_t* L_0 = ___value0; if (L_0) { goto IL_0009; } } { return (0.0f); } IL_0009: { String_t* L_1 = ___value0; RuntimeObject* L_2 = ___provider1; float L_3; L_3 = Single_Parse_mE704971BEA03C08E6259D9CA407E2FB3126A7CBB(L_1, ((int32_t)231), L_2, NULL); return L_3; } } // System.Single System.Convert::ToSingle(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_m470635428DF749574A86F69989ADB846AA58CA31 (bool ___value0, const RuntimeMethod* method) { int32_t G_B3_0 = 0; { bool L_0 = ___value0; if (L_0) { goto IL_0006; } } { G_B3_0 = 0; goto IL_0007; } IL_0006: { G_B3_0 = 1; } IL_0007: { return ((float)G_B3_0); } } // System.Double System.Convert::ToDouble(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Convert_ToDouble_mE64ED1A9412EA3B16E4C7F1C74655F53DE71C71A (RuntimeObject* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___value0; if (!L_0) { goto IL_0010; } } { RuntimeObject* L_1 = ___value0; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var))); double L_2; L_2 = InterfaceFuncInvoker1< double, RuntimeObject* >::Invoke(12 /* System.Double System.IConvertible::ToDouble(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)), (RuntimeObject*)NULL); return L_2; } IL_0010: { return (0.0); } } // System.Double System.Convert::ToDouble(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Convert_ToDouble_mDD0C8022294099032F3EB91C4F6E0D4EEE2A270F (RuntimeObject* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___value0; if (!L_0) { goto IL_0010; } } { RuntimeObject* L_1 = ___value0; RuntimeObject* L_2 = ___provider1; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var))); double L_3; L_3 = InterfaceFuncInvoker1< double, RuntimeObject* >::Invoke(12 /* System.Double System.IConvertible::ToDouble(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)), L_2); return L_3; } IL_0010: { return (0.0); } } // System.Double System.Convert::ToDouble(System.SByte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Convert_ToDouble_m5C7542161362B4D449D6D11524FC78025CBC03B2 (int8_t ___value0, const RuntimeMethod* method) { { int8_t L_0 = ___value0; return ((double)L_0); } } // System.Double System.Convert::ToDouble(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Convert_ToDouble_m7228B357220BA95839878BF7ED5E80E240C1DF2C (uint8_t ___value0, const RuntimeMethod* method) { { uint8_t L_0 = ___value0; return ((double)L_0); } } // System.Double System.Convert::ToDouble(System.Int16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Convert_ToDouble_m3CCB8812DDB66613086397A4845FF4575B5E2377 (int16_t ___value0, const RuntimeMethod* method) { { int16_t L_0 = ___value0; return ((double)L_0); } } // System.Double System.Convert::ToDouble(System.UInt16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Convert_ToDouble_m305B34A29BEDA2A5B9884910084D80A74F1C2757 (uint16_t ___value0, const RuntimeMethod* method) { { uint16_t L_0 = ___value0; return ((double)L_0); } } // System.Double System.Convert::ToDouble(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Convert_ToDouble_mD35A1BDDC7FE214E53E1B57C867B50B6BB5E61B9 (int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; return ((double)L_0); } } // System.Double System.Convert::ToDouble(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Convert_ToDouble_m885E1E8B9971F46541DBBD07E5FD7E69E9F10A0E (uint32_t ___value0, const RuntimeMethod* method) { { uint32_t L_0 = ___value0; return ((double)((double)(uint32_t)L_0)); } } // System.Double System.Convert::ToDouble(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Convert_ToDouble_m98DAB0DE222773D3F5F6E1E745F6C03B54524360 (int64_t ___value0, const RuntimeMethod* method) { { int64_t L_0 = ___value0; return ((double)L_0); } } // System.Double System.Convert::ToDouble(System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Convert_ToDouble_m3B81EFCBE1558C9EE7C2B80092E97578A5FE5FA3 (uint64_t ___value0, const RuntimeMethod* method) { { uint64_t L_0 = ___value0; return ((double)((double)(uint64_t)L_0)); } } // System.Double System.Convert::ToDouble(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Convert_ToDouble_mE672A65932178209D542208DC039186F245DFFDB (float ___value0, const RuntimeMethod* method) { { float L_0 = ___value0; return ((double)L_0); } } // System.Double System.Convert::ToDouble(System.Decimal) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Convert_ToDouble_m01D5E2BE6DF837AB3F26BF0BCD63AA88EEEA9507 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_0 = ___value0; il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); double L_1; L_1 = Decimal_op_Explicit_mD8E11417E7C50756B8243840D18275050ABABBC6(L_0, NULL); return ((double)L_1); } } // System.Double System.Convert::ToDouble(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Convert_ToDouble_mC33EA527AA8C3C0A68337F2796A7AE675123E4F7 (String_t* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { { String_t* L_0 = ___value0; if (L_0) { goto IL_000d; } } { return (0.0); } IL_000d: { String_t* L_1 = ___value0; RuntimeObject* L_2 = ___provider1; double L_3; L_3 = Double_Parse_m282A37E997C8F446BD373A4DE4673B8FECC37866(L_1, ((int32_t)231), L_2, NULL); return L_3; } } // System.Double System.Convert::ToDouble(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Convert_ToDouble_m93A191AA94D0296FA0B89683200BC2ED2C0A4236 (bool ___value0, const RuntimeMethod* method) { int32_t G_B3_0 = 0; { bool L_0 = ___value0; if (L_0) { goto IL_0006; } } { G_B3_0 = 0; goto IL_0007; } IL_0006: { G_B3_0 = 1; } IL_0007: { return ((double)G_B3_0); } } // System.Decimal System.Convert::ToDecimal(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Convert_ToDecimal_m1B443B14EA173B3914882B5368B559E5ADB3E71E (RuntimeObject* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___value0; if (!L_0) { goto IL_0010; } } { RuntimeObject* L_1 = ___value0; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var))); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_2; L_2 = InterfaceFuncInvoker1< Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F, RuntimeObject* >::Invoke(13 /* System.Decimal System.IConvertible::ToDecimal(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)), (RuntimeObject*)NULL); return L_2; } IL_0010: { il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_3 = ((Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_StaticFields*)il2cpp_codegen_static_fields_for(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var))->___Zero_3; return L_3; } } // System.Decimal System.Convert::ToDecimal(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Convert_ToDecimal_m1CAD30F8AE6C0BE6D4A74023962A6536AA764ADA (RuntimeObject* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___value0; if (!L_0) { goto IL_0010; } } { RuntimeObject* L_1 = ___value0; RuntimeObject* L_2 = ___provider1; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var))); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_3; L_3 = InterfaceFuncInvoker1< Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F, RuntimeObject* >::Invoke(13 /* System.Decimal System.IConvertible::ToDecimal(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)), L_2); return L_3; } IL_0010: { il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_4 = ((Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_StaticFields*)il2cpp_codegen_static_fields_for(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var))->___Zero_3; return L_4; } } // System.Decimal System.Convert::ToDecimal(System.SByte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Convert_ToDecimal_m67A7E78429A4A9432242AE905394101F0EBB33DC (int8_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int8_t L_0 = ___value0; il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1; L_1 = Decimal_op_Implicit_m5BC5C13C135EABB3CF37747F482B145443829DE0(L_0, NULL); return L_1; } } // System.Decimal System.Convert::ToDecimal(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Convert_ToDecimal_m7234AEE7D565341F354FB129BB3293C6DA52B406 (uint8_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { uint8_t L_0 = ___value0; il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1; L_1 = Decimal_op_Implicit_m5DD7A9790E3CCD50837323E4B362DC76B38E50CA(L_0, NULL); return L_1; } } // System.Decimal System.Convert::ToDecimal(System.Int16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Convert_ToDecimal_mA011DE3CF10809FDA41EE8F40B163595CCC0F6E4 (int16_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int16_t L_0 = ___value0; il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1; L_1 = Decimal_op_Implicit_m5F6C73D0A9E5387BCBA54C8F60658A7462133874(L_0, NULL); return L_1; } } // System.Decimal System.Convert::ToDecimal(System.UInt16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Convert_ToDecimal_mC40F5214F010574F891489507C2DB8B2C5924BD5 (uint16_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { uint16_t L_0 = ___value0; il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1; L_1 = Decimal_op_Implicit_mEDBC0300897C0AF80C6C12561B2C2AEF2E70A869(L_0, NULL); return L_1; } } // System.Decimal System.Convert::ToDecimal(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Convert_ToDecimal_mCB74B48578690A515114E20E1C3E5FB469CD887A (int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___value0; il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1; L_1 = Decimal_op_Implicit_mE5A73A41E53B29C29A49359A2B5D0615A867B7C7(L_0, NULL); return L_1; } } // System.Decimal System.Convert::ToDecimal(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Convert_ToDecimal_mE927ECEA9C81D52E56025A0F4BB98859EAF1604A (uint32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { uint32_t L_0 = ___value0; il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1; L_1 = Decimal_op_Implicit_m58428521A30CF198AB5C13110AF042A739E1B3D0(L_0, NULL); return L_1; } } // System.Decimal System.Convert::ToDecimal(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Convert_ToDecimal_m7F70A7D0070A707510BCB7A0AEE33DB31F723257 (int64_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int64_t L_0 = ___value0; il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1; L_1 = Decimal_op_Implicit_m7982D3FD5E6426B823F4EF5993013760731F3CA6(L_0, NULL); return L_1; } } // System.Decimal System.Convert::ToDecimal(System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Convert_ToDecimal_mC1ADAF8AD3EA38C46C36C12E8DE3B89AC3BB2302 (uint64_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { uint64_t L_0 = ___value0; il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1; L_1 = Decimal_op_Implicit_m9F78741BD83192AF00055F382D82BC2E64604C8F(L_0, NULL); return L_1; } } // System.Decimal System.Convert::ToDecimal(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Convert_ToDecimal_mE83AAEACF12411461A6A3F416159DD72A5BEAE8F (float ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { float L_0 = ___value0; il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1; L_1 = Decimal_op_Explicit_mDF02276E12CC6D2D0285A8D0843ACA0743F42DEC(L_0, NULL); return L_1; } } // System.Decimal System.Convert::ToDecimal(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Convert_ToDecimal_m0817E542B617E7D00740EBA8687EA52092CED34C (double ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { double L_0 = ___value0; il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1; L_1 = Decimal_op_Explicit_mD6A0AB17D1C7D2FF325DFBD733CCA7A00AD245DC(L_0, NULL); return L_1; } } // System.Decimal System.Convert::ToDecimal(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Convert_ToDecimal_mF272551B28BF07E6ADB1E7A5978D2F7316598DAB (String_t* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value0; if (L_0) { goto IL_0009; } } { il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1 = ((Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_StaticFields*)il2cpp_codegen_static_fields_for(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var))->___Zero_3; return L_1; } IL_0009: { String_t* L_2 = ___value0; RuntimeObject* L_3 = ___provider1; il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_4; L_4 = Decimal_Parse_m7B7D828F53BFF2B330B5857A143D3F92B6449F50(L_2, ((int32_t)111), L_3, NULL); return L_4; } } // System.Decimal System.Convert::ToDecimal(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Convert_ToDecimal_mB6256B91DD8809CDE9D6AD1A974C747DA2154F54 (bool ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t G_B3_0 = 0; { bool L_0 = ___value0; if (L_0) { goto IL_0006; } } { G_B3_0 = 0; goto IL_0007; } IL_0006: { G_B3_0 = 1; } IL_0007: { il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var); Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_1; L_1 = Decimal_op_Implicit_mE5A73A41E53B29C29A49359A2B5D0615A867B7C7(G_B3_0, NULL); return L_1; } } // System.DateTime System.Convert::ToDateTime(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D Convert_ToDateTime_m61905AF8CBAC88A4891F90E763A1EFAE8B3EA74E (RuntimeObject* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___value0; if (!L_0) { goto IL_0010; } } { RuntimeObject* L_1 = ___value0; RuntimeObject* L_2 = ___provider1; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var))); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_3; L_3 = InterfaceFuncInvoker1< DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D, RuntimeObject* >::Invoke(14 /* System.DateTime System.IConvertible::ToDateTime(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_1, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)), L_2); return L_3; } IL_0010: { il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_4 = ((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))->___MinValue_32; return L_4; } } // System.DateTime System.Convert::ToDateTime(System.String,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D Convert_ToDateTime_m0CD0FAC3FF3ED01FFEA1264742D5E4BDAC79EA4A (String_t* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___value0; if (L_0) { goto IL_000b; } } { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_1; memset((&L_1), 0, sizeof(L_1)); DateTime__ctor_m64AFCE84ABB24698256EB9F635EFD0A221823441((&L_1), ((int64_t)0), /*hidden argument*/NULL); return L_1; } IL_000b: { String_t* L_2 = ___value0; RuntimeObject* L_3 = ___provider1; il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var); DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_4; L_4 = DateTime_Parse_mFC060EFBF6C9D9FF7E17E23800E3CB14D04B322A(L_2, L_3, NULL); return L_4; } } // System.String System.Convert::ToString(System.Object,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Convert_ToString_mCC5DC13CDF7E338DB15699432F28477C7DF52DE1 (RuntimeObject* ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IFormattable_t235A539BD9771E1E118DB99384BA8385D2F971CA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; RuntimeObject* V_1 = NULL; { RuntimeObject* L_0 = ___value0; V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_0, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)); RuntimeObject* L_1 = V_0; if (!L_1) { goto IL_0012; } } { RuntimeObject* L_2 = V_0; RuntimeObject* L_3 = ___provider1; NullCheck(L_2); String_t* L_4; L_4 = InterfaceFuncInvoker1< String_t*, RuntimeObject* >::Invoke(15 /* System.String System.IConvertible::ToString(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, L_2, L_3); return L_4; } IL_0012: { RuntimeObject* L_5 = ___value0; V_1 = ((RuntimeObject*)IsInst((RuntimeObject*)L_5, IFormattable_t235A539BD9771E1E118DB99384BA8385D2F971CA_il2cpp_TypeInfo_var)); RuntimeObject* L_6 = V_1; if (!L_6) { goto IL_0025; } } { RuntimeObject* L_7 = V_1; RuntimeObject* L_8 = ___provider1; NullCheck(L_7); String_t* L_9; L_9 = InterfaceFuncInvoker2< String_t*, String_t*, RuntimeObject* >::Invoke(0 /* System.String System.IFormattable::ToString(System.String,System.IFormatProvider) */, IFormattable_t235A539BD9771E1E118DB99384BA8385D2F971CA_il2cpp_TypeInfo_var, L_7, (String_t*)NULL, L_8); return L_9; } IL_0025: { RuntimeObject* L_10 = ___value0; if (!L_10) { goto IL_002f; } } { RuntimeObject* L_11 = ___value0; NullCheck(L_11); String_t* L_12; L_12 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_11); return L_12; } IL_002f: { String_t* L_13 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; return L_13; } } // System.String System.Convert::ToString(System.Char,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Convert_ToString_mF51D8B76973F97662A1CA21E7C29903F28DDB16F (Il2CppChar ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { { String_t* L_0; L_0 = Char_ToString_m2A308731F9577C06AF3C0901234E2EAC8327410C((&___value0), NULL); return L_0; } } // System.String System.Convert::ToString(System.Int32,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Convert_ToString_m8EFAEC53F711584BCA70AC094729CA6F88BB4910 (int32_t ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___provider1; String_t* L_1; L_1 = Int32_ToString_m3B2730D9F5B0C1C57DCCC8B8DCFB8E5EC4E8979B((&___value0), L_0, NULL); return L_1; } } // System.Byte System.Convert::ToByte(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_m200E739C754818844030F3E16CC31017926C853F (String_t* ___value0, int32_t ___fromBase1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { int32_t L_0 = ___fromBase1; if ((((int32_t)L_0) == ((int32_t)2))) { goto IL_001d; } } { int32_t L_1 = ___fromBase1; if ((((int32_t)L_1) == ((int32_t)8))) { goto IL_001d; } } { int32_t L_2 = ___fromBase1; if ((((int32_t)L_2) == ((int32_t)((int32_t)10)))) { goto IL_001d; } } { int32_t L_3 = ___fromBase1; if ((((int32_t)L_3) == ((int32_t)((int32_t)16)))) { goto IL_001d; } } { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_4 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_4); ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB780ED358EA2512EAEC12C4AAB63B013F81BFB70)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ToByte_m200E739C754818844030F3E16CC31017926C853F_RuntimeMethod_var))); } IL_001d: { String_t* L_5 = ___value0; if (L_5) { goto IL_0022; } } { return (uint8_t)0; } IL_0022: { String_t* L_6 = ___value0; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_7; L_7 = MemoryExtensions_AsSpan_m738C019A02A3B4B8BFEACFFA013409898B81D4FB_inline(L_6, NULL); int32_t L_8 = ___fromBase1; int32_t L_9; L_9 = ParseNumbers_StringToInt_mE397CFF0BD46555202198D774148AE64023464F4(L_7, L_8, ((int32_t)4608), NULL); V_0 = L_9; int32_t L_10 = V_0; if ((((int32_t)L_10) < ((int32_t)0))) { goto IL_0040; } } { int32_t L_11 = V_0; if ((((int32_t)L_11) <= ((int32_t)((int32_t)255)))) { goto IL_0045; } } IL_0040: { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowByteOverflowException_m3C5E6C6941B2C5B87B6082BC69F0ED13EDF6D644(NULL); } IL_0045: { int32_t L_12 = V_0; return (uint8_t)((int32_t)(uint8_t)L_12); } } // System.SByte System.Convert::ToSByte(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m817E5E7388C1B1865AE2C4E6923427F3FF60A0C3 (String_t* ___value0, int32_t ___fromBase1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { int32_t L_0 = ___fromBase1; if ((((int32_t)L_0) == ((int32_t)2))) { goto IL_001d; } } { int32_t L_1 = ___fromBase1; if ((((int32_t)L_1) == ((int32_t)8))) { goto IL_001d; } } { int32_t L_2 = ___fromBase1; if ((((int32_t)L_2) == ((int32_t)((int32_t)10)))) { goto IL_001d; } } { int32_t L_3 = ___fromBase1; if ((((int32_t)L_3) == ((int32_t)((int32_t)16)))) { goto IL_001d; } } { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_4 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_4); ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB780ED358EA2512EAEC12C4AAB63B013F81BFB70)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ToSByte_m817E5E7388C1B1865AE2C4E6923427F3FF60A0C3_RuntimeMethod_var))); } IL_001d: { String_t* L_5 = ___value0; if (L_5) { goto IL_0022; } } { return (int8_t)0; } IL_0022: { String_t* L_6 = ___value0; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_7; L_7 = MemoryExtensions_AsSpan_m738C019A02A3B4B8BFEACFFA013409898B81D4FB_inline(L_6, NULL); int32_t L_8 = ___fromBase1; int32_t L_9; L_9 = ParseNumbers_StringToInt_mE397CFF0BD46555202198D774148AE64023464F4(L_7, L_8, ((int32_t)5120), NULL); V_0 = L_9; int32_t L_10 = ___fromBase1; if ((((int32_t)L_10) == ((int32_t)((int32_t)10)))) { goto IL_0044; } } { int32_t L_11 = V_0; if ((((int32_t)L_11) > ((int32_t)((int32_t)255)))) { goto IL_0044; } } { int32_t L_12 = V_0; return ((int8_t)L_12); } IL_0044: { int32_t L_13 = V_0; if ((((int32_t)L_13) < ((int32_t)((int32_t)-128)))) { goto IL_004e; } } { int32_t L_14 = V_0; if ((((int32_t)L_14) <= ((int32_t)((int32_t)127)))) { goto IL_0053; } } IL_004e: { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowSByteOverflowException_m516C925A443481A76D7233C155E9AFBC1481E002(NULL); } IL_0053: { int32_t L_15 = V_0; return ((int8_t)L_15); } } // System.Int16 System.Convert::ToInt16(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_mB19CE8A8A4BAFB372C5CDA374532B08CF0DB3654 (String_t* ___value0, int32_t ___fromBase1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { int32_t L_0 = ___fromBase1; if ((((int32_t)L_0) == ((int32_t)2))) { goto IL_001d; } } { int32_t L_1 = ___fromBase1; if ((((int32_t)L_1) == ((int32_t)8))) { goto IL_001d; } } { int32_t L_2 = ___fromBase1; if ((((int32_t)L_2) == ((int32_t)((int32_t)10)))) { goto IL_001d; } } { int32_t L_3 = ___fromBase1; if ((((int32_t)L_3) == ((int32_t)((int32_t)16)))) { goto IL_001d; } } { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_4 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_4); ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB780ED358EA2512EAEC12C4AAB63B013F81BFB70)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ToInt16_mB19CE8A8A4BAFB372C5CDA374532B08CF0DB3654_RuntimeMethod_var))); } IL_001d: { String_t* L_5 = ___value0; if (L_5) { goto IL_0022; } } { return (int16_t)0; } IL_0022: { String_t* L_6 = ___value0; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_7; L_7 = MemoryExtensions_AsSpan_m738C019A02A3B4B8BFEACFFA013409898B81D4FB_inline(L_6, NULL); int32_t L_8 = ___fromBase1; int32_t L_9; L_9 = ParseNumbers_StringToInt_mE397CFF0BD46555202198D774148AE64023464F4(L_7, L_8, ((int32_t)6144), NULL); V_0 = L_9; int32_t L_10 = ___fromBase1; if ((((int32_t)L_10) == ((int32_t)((int32_t)10)))) { goto IL_0044; } } { int32_t L_11 = V_0; if ((((int32_t)L_11) > ((int32_t)((int32_t)65535)))) { goto IL_0044; } } { int32_t L_12 = V_0; return ((int16_t)L_12); } IL_0044: { int32_t L_13 = V_0; if ((((int32_t)L_13) < ((int32_t)((int32_t)-32768)))) { goto IL_0054; } } { int32_t L_14 = V_0; if ((((int32_t)L_14) <= ((int32_t)((int32_t)32767)))) { goto IL_0059; } } IL_0054: { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowInt16OverflowException_m6DE53E843F3701BD4999A40674A44DF2280FFFC4(NULL); } IL_0059: { int32_t L_15 = V_0; return ((int16_t)L_15); } } // System.UInt16 System.Convert::ToUInt16(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_m8360869713B8312B93D6849BA52B3870284CFAD0 (String_t* ___value0, int32_t ___fromBase1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { int32_t L_0 = ___fromBase1; if ((((int32_t)L_0) == ((int32_t)2))) { goto IL_001d; } } { int32_t L_1 = ___fromBase1; if ((((int32_t)L_1) == ((int32_t)8))) { goto IL_001d; } } { int32_t L_2 = ___fromBase1; if ((((int32_t)L_2) == ((int32_t)((int32_t)10)))) { goto IL_001d; } } { int32_t L_3 = ___fromBase1; if ((((int32_t)L_3) == ((int32_t)((int32_t)16)))) { goto IL_001d; } } { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_4 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_4); ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB780ED358EA2512EAEC12C4AAB63B013F81BFB70)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ToUInt16_m8360869713B8312B93D6849BA52B3870284CFAD0_RuntimeMethod_var))); } IL_001d: { String_t* L_5 = ___value0; if (L_5) { goto IL_0022; } } { return (uint16_t)0; } IL_0022: { String_t* L_6 = ___value0; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_7; L_7 = MemoryExtensions_AsSpan_m738C019A02A3B4B8BFEACFFA013409898B81D4FB_inline(L_6, NULL); int32_t L_8 = ___fromBase1; int32_t L_9; L_9 = ParseNumbers_StringToInt_mE397CFF0BD46555202198D774148AE64023464F4(L_7, L_8, ((int32_t)4608), NULL); V_0 = L_9; int32_t L_10 = V_0; if ((((int32_t)L_10) < ((int32_t)0))) { goto IL_0040; } } { int32_t L_11 = V_0; if ((((int32_t)L_11) <= ((int32_t)((int32_t)65535)))) { goto IL_0045; } } IL_0040: { il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_ThrowUInt16OverflowException_m0B9408271B529B2C798687CE1C48DED0D2BB396F(NULL); } IL_0045: { int32_t L_12 = V_0; return (uint16_t)((int32_t)(uint16_t)L_12); } } // System.Int32 System.Convert::ToInt32(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m8881C26C9DC63CBE2186F7180F780706A10283F6 (String_t* ___value0, int32_t ___fromBase1, const RuntimeMethod* method) { { int32_t L_0 = ___fromBase1; if ((((int32_t)L_0) == ((int32_t)2))) { goto IL_001d; } } { int32_t L_1 = ___fromBase1; if ((((int32_t)L_1) == ((int32_t)8))) { goto IL_001d; } } { int32_t L_2 = ___fromBase1; if ((((int32_t)L_2) == ((int32_t)((int32_t)10)))) { goto IL_001d; } } { int32_t L_3 = ___fromBase1; if ((((int32_t)L_3) == ((int32_t)((int32_t)16)))) { goto IL_001d; } } { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_4 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_4); ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB780ED358EA2512EAEC12C4AAB63B013F81BFB70)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ToInt32_m8881C26C9DC63CBE2186F7180F780706A10283F6_RuntimeMethod_var))); } IL_001d: { String_t* L_5 = ___value0; if (L_5) { goto IL_0022; } } { return 0; } IL_0022: { String_t* L_6 = ___value0; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_7; L_7 = MemoryExtensions_AsSpan_m738C019A02A3B4B8BFEACFFA013409898B81D4FB_inline(L_6, NULL); int32_t L_8 = ___fromBase1; int32_t L_9; L_9 = ParseNumbers_StringToInt_mE397CFF0BD46555202198D774148AE64023464F4(L_7, L_8, ((int32_t)4096), NULL); return L_9; } } // System.UInt32 System.Convert::ToUInt32(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_m704A8BBE2217B9D055D5A506F5197B946F51B812 (String_t* ___value0, int32_t ___fromBase1, const RuntimeMethod* method) { { int32_t L_0 = ___fromBase1; if ((((int32_t)L_0) == ((int32_t)2))) { goto IL_001d; } } { int32_t L_1 = ___fromBase1; if ((((int32_t)L_1) == ((int32_t)8))) { goto IL_001d; } } { int32_t L_2 = ___fromBase1; if ((((int32_t)L_2) == ((int32_t)((int32_t)10)))) { goto IL_001d; } } { int32_t L_3 = ___fromBase1; if ((((int32_t)L_3) == ((int32_t)((int32_t)16)))) { goto IL_001d; } } { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_4 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_4); ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB780ED358EA2512EAEC12C4AAB63B013F81BFB70)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ToUInt32_m704A8BBE2217B9D055D5A506F5197B946F51B812_RuntimeMethod_var))); } IL_001d: { String_t* L_5 = ___value0; if (L_5) { goto IL_0022; } } { return 0; } IL_0022: { String_t* L_6 = ___value0; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_7; L_7 = MemoryExtensions_AsSpan_m738C019A02A3B4B8BFEACFFA013409898B81D4FB_inline(L_6, NULL); int32_t L_8 = ___fromBase1; int32_t L_9; L_9 = ParseNumbers_StringToInt_mE397CFF0BD46555202198D774148AE64023464F4(L_7, L_8, ((int32_t)4608), NULL); return L_9; } } // System.Int64 System.Convert::ToInt64(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m6162CDF3331970FD93F6619040733A50E5766DDC (String_t* ___value0, int32_t ___fromBase1, const RuntimeMethod* method) { { int32_t L_0 = ___fromBase1; if ((((int32_t)L_0) == ((int32_t)2))) { goto IL_001d; } } { int32_t L_1 = ___fromBase1; if ((((int32_t)L_1) == ((int32_t)8))) { goto IL_001d; } } { int32_t L_2 = ___fromBase1; if ((((int32_t)L_2) == ((int32_t)((int32_t)10)))) { goto IL_001d; } } { int32_t L_3 = ___fromBase1; if ((((int32_t)L_3) == ((int32_t)((int32_t)16)))) { goto IL_001d; } } { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_4 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_4); ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB780ED358EA2512EAEC12C4AAB63B013F81BFB70)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ToInt64_m6162CDF3331970FD93F6619040733A50E5766DDC_RuntimeMethod_var))); } IL_001d: { String_t* L_5 = ___value0; if (L_5) { goto IL_0023; } } { return ((int64_t)0); } IL_0023: { String_t* L_6 = ___value0; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_7; L_7 = MemoryExtensions_AsSpan_m738C019A02A3B4B8BFEACFFA013409898B81D4FB_inline(L_6, NULL); int32_t L_8 = ___fromBase1; int64_t L_9; L_9 = ParseNumbers_StringToLong_mACCCAE314AD001D74B32792CBA615BDCCB0CE620(L_7, L_8, ((int32_t)4096), NULL); return L_9; } } // System.UInt64 System.Convert::ToUInt64(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_m3ACA160CA874AE9D0DB387453E0F6F029F64D2D7 (String_t* ___value0, int32_t ___fromBase1, const RuntimeMethod* method) { { int32_t L_0 = ___fromBase1; if ((((int32_t)L_0) == ((int32_t)2))) { goto IL_001d; } } { int32_t L_1 = ___fromBase1; if ((((int32_t)L_1) == ((int32_t)8))) { goto IL_001d; } } { int32_t L_2 = ___fromBase1; if ((((int32_t)L_2) == ((int32_t)((int32_t)10)))) { goto IL_001d; } } { int32_t L_3 = ___fromBase1; if ((((int32_t)L_3) == ((int32_t)((int32_t)16)))) { goto IL_001d; } } { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_4 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_4); ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB780ED358EA2512EAEC12C4AAB63B013F81BFB70)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ToUInt64_m3ACA160CA874AE9D0DB387453E0F6F029F64D2D7_RuntimeMethod_var))); } IL_001d: { String_t* L_5 = ___value0; if (L_5) { goto IL_0023; } } { return ((int64_t)0); } IL_0023: { String_t* L_6 = ___value0; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_7; L_7 = MemoryExtensions_AsSpan_m738C019A02A3B4B8BFEACFFA013409898B81D4FB_inline(L_6, NULL); int32_t L_8 = ___fromBase1; int64_t L_9; L_9 = ParseNumbers_StringToLong_mACCCAE314AD001D74B32792CBA615BDCCB0CE620(L_7, L_8, ((int32_t)4608), NULL); return L_9; } } // System.String System.Convert::ToString(System.Byte,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Convert_ToString_m58CEFC66D90B56A11C21C7B24BB856FD797C93A2 (uint8_t ___value0, int32_t ___toBase1, const RuntimeMethod* method) { { int32_t L_0 = ___toBase1; if ((((int32_t)L_0) == ((int32_t)2))) { goto IL_001d; } } { int32_t L_1 = ___toBase1; if ((((int32_t)L_1) == ((int32_t)8))) { goto IL_001d; } } { int32_t L_2 = ___toBase1; if ((((int32_t)L_2) == ((int32_t)((int32_t)10)))) { goto IL_001d; } } { int32_t L_3 = ___toBase1; if ((((int32_t)L_3) == ((int32_t)((int32_t)16)))) { goto IL_001d; } } { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_4 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_4); ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB780ED358EA2512EAEC12C4AAB63B013F81BFB70)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ToString_m58CEFC66D90B56A11C21C7B24BB856FD797C93A2_RuntimeMethod_var))); } IL_001d: { uint8_t L_5 = ___value0; int32_t L_6 = ___toBase1; String_t* L_7; L_7 = ParseNumbers_IntToString_mBA9B8DE63AD27B0E70D7EBC6E84242CEF32C3F5E(L_5, L_6, (-1), ((int32_t)32), ((int32_t)64), NULL); return L_7; } } // System.String System.Convert::ToString(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Convert_ToString_m244C97184477B594D97652377A63F2A205EC9B1E (int32_t ___value0, int32_t ___toBase1, const RuntimeMethod* method) { { int32_t L_0 = ___toBase1; if ((((int32_t)L_0) == ((int32_t)2))) { goto IL_001d; } } { int32_t L_1 = ___toBase1; if ((((int32_t)L_1) == ((int32_t)8))) { goto IL_001d; } } { int32_t L_2 = ___toBase1; if ((((int32_t)L_2) == ((int32_t)((int32_t)10)))) { goto IL_001d; } } { int32_t L_3 = ___toBase1; if ((((int32_t)L_3) == ((int32_t)((int32_t)16)))) { goto IL_001d; } } { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_4 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_4); ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB780ED358EA2512EAEC12C4AAB63B013F81BFB70)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ToString_m244C97184477B594D97652377A63F2A205EC9B1E_RuntimeMethod_var))); } IL_001d: { int32_t L_5 = ___value0; int32_t L_6 = ___toBase1; String_t* L_7; L_7 = ParseNumbers_IntToString_mBA9B8DE63AD27B0E70D7EBC6E84242CEF32C3F5E(L_5, L_6, (-1), ((int32_t)32), 0, NULL); return L_7; } } // System.String System.Convert::ToString(System.Int64,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Convert_ToString_mBA879BD4E700EBD7E2E564C8F70B5DAD29F4FE44 (int64_t ___value0, int32_t ___toBase1, const RuntimeMethod* method) { { int32_t L_0 = ___toBase1; if ((((int32_t)L_0) == ((int32_t)2))) { goto IL_001d; } } { int32_t L_1 = ___toBase1; if ((((int32_t)L_1) == ((int32_t)8))) { goto IL_001d; } } { int32_t L_2 = ___toBase1; if ((((int32_t)L_2) == ((int32_t)((int32_t)10)))) { goto IL_001d; } } { int32_t L_3 = ___toBase1; if ((((int32_t)L_3) == ((int32_t)((int32_t)16)))) { goto IL_001d; } } { ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_4 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_4); ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB780ED358EA2512EAEC12C4AAB63B013F81BFB70)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ToString_mBA879BD4E700EBD7E2E564C8F70B5DAD29F4FE44_RuntimeMethod_var))); } IL_001d: { int64_t L_5 = ___value0; int32_t L_6 = ___toBase1; String_t* L_7; L_7 = ParseNumbers_LongToString_m2DBAB614263BCD34EA907677B2DBCFDD16FD1017(L_5, L_6, (-1), ((int32_t)32), 0, NULL); return L_7; } } // System.String System.Convert::ToBase64String(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Convert_ToBase64String_mB276B21511FB01CDE030619C81757E786F91B9F3 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___inArray0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1__ctor_m1D3E8C5A560BE65D9A5C3E5D0D891C79F4895B0B_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___inArray0; 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))); NullCheck(L_1); ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB77C51162F9B76C1135D72465C09B899FF505927)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ToBase64String_mB276B21511FB01CDE030619C81757E786F91B9F3_RuntimeMethod_var))); } IL_000e: { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = ___inArray0; ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D L_3; memset((&L_3), 0, sizeof(L_3)); ReadOnlySpan_1__ctor_m1D3E8C5A560BE65D9A5C3E5D0D891C79F4895B0B_inline((&L_3), L_2, /*hidden argument*/ReadOnlySpan_1__ctor_m1D3E8C5A560BE65D9A5C3E5D0D891C79F4895B0B_RuntimeMethod_var); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); String_t* L_4; L_4 = Convert_ToBase64String_mD54CB9A36EA0382194415F9FAA2D89DF34043D79(L_3, 0, NULL); return L_4; } } // System.String System.Convert::ToBase64String(System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Convert_ToBase64String_m32EFB2D026AAA9AA3EDEF466794C6A13E77DE553 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___inArray0, int32_t ___offset1, int32_t ___length2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___inArray0; int32_t L_1 = ___offset1; int32_t L_2 = ___length2; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); String_t* L_3; L_3 = Convert_ToBase64String_m0300A68A4642B54030682C839D4205628A9FB447(L_0, L_1, L_2, 0, NULL); return L_3; } } // System.String System.Convert::ToBase64String(System.Byte[],System.Int32,System.Int32,System.Base64FormattingOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Convert_ToBase64String_m0300A68A4642B54030682C839D4205628A9FB447 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___inArray0, int32_t ___offset1, int32_t ___length2, int32_t ___options3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1__ctor_m7B5C2765879EA5E8D1617D834CC465A39540A913_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___inArray0; 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))); NullCheck(L_1); ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB77C51162F9B76C1135D72465C09B899FF505927)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ToBase64String_m0300A68A4642B54030682C839D4205628A9FB447_RuntimeMethod_var))); } IL_000e: { int32_t L_2 = ___length2; if ((((int32_t)L_2) >= ((int32_t)0))) { goto IL_0022; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_3); ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE8744A8B8BD390EB66CA0CAE2376C973E6904FFB)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ToBase64String_m0300A68A4642B54030682C839D4205628A9FB447_RuntimeMethod_var))); } IL_0022: { int32_t L_4 = ___offset1; if ((((int32_t)L_4) >= ((int32_t)0))) { goto IL_0036; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_5 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_5); ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral544DC80A2A82A08B6321F56F8987CB7E5DEED1C4)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral36A2069F2EBB68A1BE4AF9D9FF3B475C9EE76A26)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ToBase64String_m0300A68A4642B54030682C839D4205628A9FB447_RuntimeMethod_var))); } IL_0036: { int32_t L_6 = ___offset1; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_7 = ___inArray0; NullCheck(L_7); int32_t L_8 = ___length2; if ((((int32_t)L_6) <= ((int32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_7)->max_length)), L_8))))) { goto IL_004e; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_9 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_9); ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral544DC80A2A82A08B6321F56F8987CB7E5DEED1C4)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8532458685731C44156899992CA7A144A15B177F)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ToBase64String_m0300A68A4642B54030682C839D4205628A9FB447_RuntimeMethod_var))); } IL_004e: { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_10 = ___inArray0; int32_t L_11 = ___offset1; int32_t L_12 = ___length2; ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D L_13; memset((&L_13), 0, sizeof(L_13)); ReadOnlySpan_1__ctor_m7B5C2765879EA5E8D1617D834CC465A39540A913_inline((&L_13), L_10, L_11, L_12, /*hidden argument*/ReadOnlySpan_1__ctor_m7B5C2765879EA5E8D1617D834CC465A39540A913_RuntimeMethod_var); int32_t L_14 = ___options3; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); String_t* L_15; L_15 = Convert_ToBase64String_mD54CB9A36EA0382194415F9FAA2D89DF34043D79(L_13, L_14, NULL); return L_15; } } // System.String System.Convert::ToBase64String(System.ReadOnlySpan`1,System.Base64FormattingOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Convert_ToBase64String_mD54CB9A36EA0382194415F9FAA2D89DF34043D79 (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D ___bytes0, int32_t ___options1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MemoryMarshal_GetReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mE630BC590135F8CE4B147BB7DF7DD45C759397E5_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_Length_m54864A0BB817050A9110E85BB5FB31EF63699982_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; uint8_t* V_1 = NULL; uint8_t* V_2 = NULL; Il2CppChar* V_3 = NULL; String_t* V_4 = NULL; String_t* G_B7_0 = NULL; String_t* G_B6_0 = NULL; { int32_t L_0 = ___options1; if ((((int32_t)L_0) < ((int32_t)0))) { goto IL_0008; } } { int32_t L_1 = ___options1; if ((((int32_t)L_1) <= ((int32_t)1))) { goto IL_0023; } } IL_0008: { int32_t L_2 = ___options1; int32_t L_3 = ((int32_t)L_2); RuntimeObject* L_4 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)), &L_3); String_t* L_5; L_5 = String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6AE649B59ED8705B39B85FAAC10AF4962BCBA80C)), L_4, NULL); ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_6 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_6); ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_6, L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCF7DF948FC4905FED1A56776B9DFCCB86C46912A)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ToBase64String_mD54CB9A36EA0382194415F9FAA2D89DF34043D79_RuntimeMethod_var))); } IL_0023: { int32_t L_7; L_7 = ReadOnlySpan_1_get_Length_m54864A0BB817050A9110E85BB5FB31EF63699982_inline((&___bytes0), ReadOnlySpan_1_get_Length_m54864A0BB817050A9110E85BB5FB31EF63699982_RuntimeMethod_var); if (L_7) { goto IL_0032; } } { String_t* L_8 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; return L_8; } IL_0032: { int32_t L_9 = ___options1; V_0 = (bool)((((int32_t)L_9) == ((int32_t)1))? 1 : 0); int32_t L_10; L_10 = ReadOnlySpan_1_get_Length_m54864A0BB817050A9110E85BB5FB31EF63699982_inline((&___bytes0), ReadOnlySpan_1_get_Length_m54864A0BB817050A9110E85BB5FB31EF63699982_RuntimeMethod_var); bool L_11 = V_0; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int32_t L_12; L_12 = Convert_ToBase64_CalculateAndValidateOutputLength_m53BDF9C19D8CBBECC4CD9556CA22483A8D023275(L_10, L_11, NULL); String_t* L_13; L_13 = String_FastAllocateString_mF8E983B7ABC42CA6EB80C5052243D21E81CC2112(L_12, NULL); ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D L_14 = ___bytes0; uint8_t* L_15; L_15 = MemoryMarshal_GetReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mE630BC590135F8CE4B147BB7DF7DD45C759397E5(L_14, MemoryMarshal_GetReference_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_mE630BC590135F8CE4B147BB7DF7DD45C759397E5_RuntimeMethod_var); V_2 = L_15; uint8_t* L_16 = V_2; V_1 = (uint8_t*)((uintptr_t)L_16); String_t* L_17 = L_13; V_4 = L_17; String_t* L_18 = V_4; V_3 = (Il2CppChar*)((uintptr_t)L_18); Il2CppChar* L_19 = V_3; G_B6_0 = L_17; if (!L_19) { G_B7_0 = L_17; goto IL_0065; } } { Il2CppChar* L_20 = V_3; int32_t L_21; L_21 = RuntimeHelpers_get_OffsetToStringData_mBBE58AEA702864FB006771F4600D1D99B1234460(NULL); V_3 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_20, L_21)); G_B7_0 = G_B6_0; } IL_0065: { Il2CppChar* L_22 = V_3; uint8_t* L_23 = V_1; int32_t L_24; L_24 = ReadOnlySpan_1_get_Length_m54864A0BB817050A9110E85BB5FB31EF63699982_inline((&___bytes0), ReadOnlySpan_1_get_Length_m54864A0BB817050A9110E85BB5FB31EF63699982_RuntimeMethod_var); bool L_25 = V_0; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int32_t L_26; L_26 = Convert_ConvertToBase64Array_m608BE6205D415103EFDFD3A40D6A8A353B529722(L_22, L_23, 0, L_24, L_25, NULL); V_4 = (String_t*)NULL; V_2 = (uint8_t*)((uintptr_t)0); return G_B7_0; } } // System.Int32 System.Convert::ToBase64CharArray(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToBase64CharArray_m81C635C27F65383ED1C9647D5637D2BA28D2D26D (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___inArray0, int32_t ___offsetIn1, int32_t ___length2, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___outArray3, int32_t ___offsetOut4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___inArray0; int32_t L_1 = ___offsetIn1; int32_t L_2 = ___length2; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_3 = ___outArray3; int32_t L_4 = ___offsetOut4; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int32_t L_5; L_5 = Convert_ToBase64CharArray_m4785D1B89A5EBB556E2F1ABA5B52674D8255B63C(L_0, L_1, L_2, L_3, L_4, 0, NULL); return L_5; } } // System.Int32 System.Convert::ToBase64CharArray(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32,System.Base64FormattingOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToBase64CharArray_m4785D1B89A5EBB556E2F1ABA5B52674D8255B63C (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___inArray0, int32_t ___offsetIn1, int32_t ___length2, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___outArray3, int32_t ___offsetOut4, int32_t ___options5, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; bool V_3 = false; Il2CppChar* V_4 = NULL; uint8_t* V_5 = NULL; uint8_t* V_6 = NULL; { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___inArray0; 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))); NullCheck(L_1); ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB77C51162F9B76C1135D72465C09B899FF505927)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ToBase64CharArray_m4785D1B89A5EBB556E2F1ABA5B52674D8255B63C_RuntimeMethod_var))); } IL_000e: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = ___outArray3; if (L_2) { goto IL_001c; } } { ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_3 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var))); NullCheck(L_3); ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral82FB2C32106F5100B6EBEBAAEBF1CE629068A5D9)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ToBase64CharArray_m4785D1B89A5EBB556E2F1ABA5B52674D8255B63C_RuntimeMethod_var))); } IL_001c: { int32_t L_4 = ___length2; if ((((int32_t)L_4) >= ((int32_t)0))) { goto IL_0030; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_5 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_5); ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE8744A8B8BD390EB66CA0CAE2376C973E6904FFB)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ToBase64CharArray_m4785D1B89A5EBB556E2F1ABA5B52674D8255B63C_RuntimeMethod_var))); } IL_0030: { int32_t L_6 = ___offsetIn1; if ((((int32_t)L_6) >= ((int32_t)0))) { goto IL_0044; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_7 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_7); ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAFB36F69DD323FF604AB5F1235E31F803043EA10)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral36A2069F2EBB68A1BE4AF9D9FF3B475C9EE76A26)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ToBase64CharArray_m4785D1B89A5EBB556E2F1ABA5B52674D8255B63C_RuntimeMethod_var))); } IL_0044: { int32_t L_8 = ___offsetOut4; if ((((int32_t)L_8) >= ((int32_t)0))) { goto IL_0059; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_9 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_9); ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB962868113B24F11FFA71569C21BD05B1CB60436)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral36A2069F2EBB68A1BE4AF9D9FF3B475C9EE76A26)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ToBase64CharArray_m4785D1B89A5EBB556E2F1ABA5B52674D8255B63C_RuntimeMethod_var))); } IL_0059: { int32_t L_10 = ___options5; if ((((int32_t)L_10) < ((int32_t)0))) { goto IL_0063; } } { int32_t L_11 = ___options5; if ((((int32_t)L_11) <= ((int32_t)1))) { goto IL_007f; } } IL_0063: { int32_t L_12 = ___options5; int32_t L_13 = ((int32_t)L_12); RuntimeObject* L_14 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)), &L_13); String_t* L_15; L_15 = String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6AE649B59ED8705B39B85FAAC10AF4962BCBA80C)), L_14, NULL); ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_16 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var))); NullCheck(L_16); ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_16, L_15, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCF7DF948FC4905FED1A56776B9DFCCB86C46912A)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ToBase64CharArray_m4785D1B89A5EBB556E2F1ABA5B52674D8255B63C_RuntimeMethod_var))); } IL_007f: { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_17 = ___inArray0; NullCheck(L_17); V_0 = ((int32_t)(((RuntimeArray*)L_17)->max_length)); int32_t L_18 = ___offsetIn1; int32_t L_19 = V_0; int32_t L_20 = ___length2; if ((((int32_t)L_18) <= ((int32_t)((int32_t)il2cpp_codegen_subtract(L_19, L_20))))) { goto IL_0099; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_21 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_21); ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_21, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAFB36F69DD323FF604AB5F1235E31F803043EA10)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8532458685731C44156899992CA7A144A15B177F)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ToBase64CharArray_m4785D1B89A5EBB556E2F1ABA5B52674D8255B63C_RuntimeMethod_var))); } IL_0099: { int32_t L_22 = V_0; if (L_22) { goto IL_009e; } } { return 0; } IL_009e: { int32_t L_23 = ___options5; V_3 = (bool)((((int32_t)L_23) == ((int32_t)1))? 1 : 0); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_24 = ___outArray3; NullCheck(L_24); V_1 = ((int32_t)(((RuntimeArray*)L_24)->max_length)); int32_t L_25 = ___length2; bool L_26 = V_3; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int32_t L_27; L_27 = Convert_ToBase64_CalculateAndValidateOutputLength_m53BDF9C19D8CBBECC4CD9556CA22483A8D023275(L_25, L_26, NULL); V_2 = L_27; int32_t L_28 = ___offsetOut4; int32_t L_29 = V_1; int32_t L_30 = V_2; if ((((int32_t)L_28) <= ((int32_t)((int32_t)il2cpp_codegen_subtract(L_29, L_30))))) { goto IL_00c7; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_31 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_31); ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_31, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB962868113B24F11FFA71569C21BD05B1CB60436)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8043BDE873F3C6FC01E86F171710DD1F0E0ABC2D)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_31, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ToBase64CharArray_m4785D1B89A5EBB556E2F1ABA5B52674D8255B63C_RuntimeMethod_var))); } IL_00c7: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_32 = ___outArray3; int32_t L_33 = ___offsetOut4; NullCheck(L_32); V_4 = ((L_32)->GetAddressAt(static_cast(L_33))); Il2CppChar* L_34 = V_4; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_35 = ___inArray0; NullCheck(L_35); V_6 = ((L_35)->GetAddressAt(static_cast(0))); uint8_t* L_36 = V_6; V_5 = (uint8_t*)((uintptr_t)L_36); uint8_t* L_37 = V_5; int32_t L_38 = ___offsetIn1; int32_t L_39 = ___length2; bool L_40 = V_3; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int32_t L_41; L_41 = Convert_ConvertToBase64Array_m608BE6205D415103EFDFD3A40D6A8A353B529722((Il2CppChar*)((uintptr_t)L_34), L_37, L_38, L_39, L_40, NULL); V_6 = (uint8_t*)((uintptr_t)0); V_4 = (Il2CppChar*)((uintptr_t)0); return L_41; } } // System.Int32 System.Convert::ConvertToBase64Array(System.Char*,System.Byte*,System.Int32,System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ConvertToBase64Array_m608BE6205D415103EFDFD3A40D6A8A353B529722 (Il2CppChar* ___outChars0, uint8_t* ___inData1, int32_t ___offset2, int32_t ___length3, bool ___insertLineBreaks4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; Il2CppChar* V_5 = NULL; Il2CppChar* V_6 = NULL; { int32_t L_0 = ___length3; V_0 = ((int32_t)(L_0%3)); int32_t L_1 = ___offset2; int32_t L_2 = ___length3; int32_t L_3 = V_0; V_1 = ((int32_t)il2cpp_codegen_add(L_1, ((int32_t)il2cpp_codegen_subtract(L_2, L_3)))); V_2 = 0; V_3 = 0; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_4 = ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___base64Table_3; NullCheck(L_4); V_6 = ((L_4)->GetAddressAt(static_cast(0))); Il2CppChar* L_5 = V_6; V_5 = (Il2CppChar*)((uintptr_t)L_5); int32_t L_6 = ___offset2; V_4 = L_6; goto IL_00e5; } IL_0028: { bool L_7 = ___insertLineBreaks4; if (!L_7) { goto IL_0051; } } { int32_t L_8 = V_3; if ((!(((uint32_t)L_8) == ((uint32_t)((int32_t)76))))) { goto IL_004d; } } { Il2CppChar* L_9 = ___outChars0; int32_t L_10 = V_2; int32_t L_11 = L_10; V_2 = ((int32_t)il2cpp_codegen_add(L_11, 1)); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_9, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_11), 2))))) = (int16_t)((int32_t)13); Il2CppChar* L_12 = ___outChars0; int32_t L_13 = V_2; int32_t L_14 = L_13; V_2 = ((int32_t)il2cpp_codegen_add(L_14, 1)); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_12, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_14), 2))))) = (int16_t)((int32_t)10); V_3 = 0; } IL_004d: { int32_t L_15 = V_3; V_3 = ((int32_t)il2cpp_codegen_add(L_15, 4)); } IL_0051: { Il2CppChar* L_16 = ___outChars0; int32_t L_17 = V_2; Il2CppChar* L_18 = V_5; uint8_t* L_19 = ___inData1; int32_t L_20 = V_4; int32_t L_21 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_19, L_20))); int32_t L_22 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_18, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)(((int32_t)(L_21&((int32_t)252)))>>2))), 2))))); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_16, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_17), 2))))) = (int16_t)L_22; Il2CppChar* L_23 = ___outChars0; int32_t L_24 = V_2; Il2CppChar* L_25 = V_5; uint8_t* L_26 = ___inData1; int32_t L_27 = V_4; int32_t L_28 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_26, L_27))); uint8_t* L_29 = ___inData1; int32_t L_30 = V_4; int32_t L_31 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_29, ((int32_t)il2cpp_codegen_add(L_30, 1))))); int32_t L_32 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_25, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)(((int32_t)(((int32_t)(L_28&3))<<4))|((int32_t)(((int32_t)(L_31&((int32_t)240)))>>4))))), 2))))); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_23, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)il2cpp_codegen_add(L_24, 1))), 2))))) = (int16_t)L_32; Il2CppChar* L_33 = ___outChars0; int32_t L_34 = V_2; Il2CppChar* L_35 = V_5; uint8_t* L_36 = ___inData1; int32_t L_37 = V_4; int32_t L_38 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_36, ((int32_t)il2cpp_codegen_add(L_37, 1))))); uint8_t* L_39 = ___inData1; int32_t L_40 = V_4; int32_t L_41 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_39, ((int32_t)il2cpp_codegen_add(L_40, 2))))); int32_t L_42 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_35, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)(((int32_t)(((int32_t)(L_38&((int32_t)15)))<<2))|((int32_t)(((int32_t)(L_41&((int32_t)192)))>>6))))), 2))))); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_33, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)il2cpp_codegen_add(L_34, 2))), 2))))) = (int16_t)L_42; Il2CppChar* L_43 = ___outChars0; int32_t L_44 = V_2; Il2CppChar* L_45 = V_5; uint8_t* L_46 = ___inData1; int32_t L_47 = V_4; int32_t L_48 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_46, ((int32_t)il2cpp_codegen_add(L_47, 2))))); int32_t L_49 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_45, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)(L_48&((int32_t)63)))), 2))))); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_43, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)il2cpp_codegen_add(L_44, 3))), 2))))) = (int16_t)L_49; int32_t L_50 = V_2; V_2 = ((int32_t)il2cpp_codegen_add(L_50, 4)); int32_t L_51 = V_4; V_4 = ((int32_t)il2cpp_codegen_add(L_51, 3)); } IL_00e5: { int32_t L_52 = V_4; int32_t L_53 = V_1; if ((((int32_t)L_52) < ((int32_t)L_53))) { goto IL_0028; } } { int32_t L_54 = V_1; V_4 = L_54; bool L_55 = ___insertLineBreaks4; if (!L_55) { goto IL_0116; } } { int32_t L_56 = V_0; if (!L_56) { goto IL_0116; } } { int32_t L_57 = V_3; if ((!(((uint32_t)L_57) == ((uint32_t)((int32_t)76))))) { goto IL_0116; } } { Il2CppChar* L_58 = ___outChars0; int32_t L_59 = V_2; int32_t L_60 = L_59; V_2 = ((int32_t)il2cpp_codegen_add(L_60, 1)); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_58, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_60), 2))))) = (int16_t)((int32_t)13); Il2CppChar* L_61 = ___outChars0; int32_t L_62 = V_2; int32_t L_63 = L_62; V_2 = ((int32_t)il2cpp_codegen_add(L_63, 1)); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_61, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_63), 2))))) = (int16_t)((int32_t)10); } IL_0116: { int32_t L_64 = V_0; if ((((int32_t)L_64) == ((int32_t)1))) { goto IL_0199; } } { int32_t L_65 = V_0; if ((!(((uint32_t)L_65) == ((uint32_t)2)))) { goto IL_01f5; } } { Il2CppChar* L_66 = ___outChars0; int32_t L_67 = V_2; Il2CppChar* L_68 = V_5; uint8_t* L_69 = ___inData1; int32_t L_70 = V_4; int32_t L_71 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_69, L_70))); int32_t L_72 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_68, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)(((int32_t)(L_71&((int32_t)252)))>>2))), 2))))); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_66, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_67), 2))))) = (int16_t)L_72; Il2CppChar* L_73 = ___outChars0; int32_t L_74 = V_2; Il2CppChar* L_75 = V_5; uint8_t* L_76 = ___inData1; int32_t L_77 = V_4; int32_t L_78 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_76, L_77))); uint8_t* L_79 = ___inData1; int32_t L_80 = V_4; int32_t L_81 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_79, ((int32_t)il2cpp_codegen_add(L_80, 1))))); int32_t L_82 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_75, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)(((int32_t)(((int32_t)(L_78&3))<<4))|((int32_t)(((int32_t)(L_81&((int32_t)240)))>>4))))), 2))))); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_73, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)il2cpp_codegen_add(L_74, 1))), 2))))) = (int16_t)L_82; Il2CppChar* L_83 = ___outChars0; int32_t L_84 = V_2; Il2CppChar* L_85 = V_5; uint8_t* L_86 = ___inData1; int32_t L_87 = V_4; int32_t L_88 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_86, ((int32_t)il2cpp_codegen_add(L_87, 1))))); int32_t L_89 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_85, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)(((int32_t)(L_88&((int32_t)15)))<<2))), 2))))); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_83, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)il2cpp_codegen_add(L_84, 2))), 2))))) = (int16_t)L_89; Il2CppChar* L_90 = ___outChars0; int32_t L_91 = V_2; Il2CppChar* L_92 = V_5; int32_t L_93 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_92, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)64)), 2))))); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_90, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)il2cpp_codegen_add(L_91, 3))), 2))))) = (int16_t)L_93; int32_t L_94 = V_2; V_2 = ((int32_t)il2cpp_codegen_add(L_94, 4)); goto IL_01f5; } IL_0199: { Il2CppChar* L_95 = ___outChars0; int32_t L_96 = V_2; Il2CppChar* L_97 = V_5; uint8_t* L_98 = ___inData1; int32_t L_99 = V_4; int32_t L_100 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_98, L_99))); int32_t L_101 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_97, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)(((int32_t)(L_100&((int32_t)252)))>>2))), 2))))); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_95, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_96), 2))))) = (int16_t)L_101; Il2CppChar* L_102 = ___outChars0; int32_t L_103 = V_2; Il2CppChar* L_104 = V_5; uint8_t* L_105 = ___inData1; int32_t L_106 = V_4; int32_t L_107 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_105, L_106))); int32_t L_108 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_104, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)(((int32_t)(L_107&3))<<4))), 2))))); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_102, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)il2cpp_codegen_add(L_103, 1))), 2))))) = (int16_t)L_108; Il2CppChar* L_109 = ___outChars0; int32_t L_110 = V_2; Il2CppChar* L_111 = V_5; int32_t L_112 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_111, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)64)), 2))))); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_109, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)il2cpp_codegen_add(L_110, 2))), 2))))) = (int16_t)L_112; Il2CppChar* L_113 = ___outChars0; int32_t L_114 = V_2; Il2CppChar* L_115 = V_5; int32_t L_116 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_115, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)64)), 2))))); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_113, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)il2cpp_codegen_add(L_114, 3))), 2))))) = (int16_t)L_116; int32_t L_117 = V_2; V_2 = ((int32_t)il2cpp_codegen_add(L_117, 4)); } IL_01f5: { V_6 = (Il2CppChar*)((uintptr_t)0); int32_t L_118 = V_2; return L_118; } } // System.Int32 System.Convert::ToBase64_CalculateAndValidateOutputLength(System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToBase64_CalculateAndValidateOutputLength_m53BDF9C19D8CBBECC4CD9556CA22483A8D023275 (int32_t ___inputLength0, bool ___insertLineBreaks1, const RuntimeMethod* method) { int64_t V_0 = 0; int64_t V_1 = 0; int64_t G_B2_0 = 0; int64_t G_B1_0 = 0; int32_t G_B3_0 = 0; int64_t G_B3_1 = 0; { int32_t L_0 = ___inputLength0; V_0 = ((int64_t)il2cpp_codegen_multiply(((int64_t)(((int64_t)L_0)/((int64_t)3))), ((int64_t)4))); int64_t L_1 = V_0; int32_t L_2 = ___inputLength0; G_B1_0 = L_1; if (((int32_t)(L_2%3))) { G_B2_0 = L_1; goto IL_0012; } } { G_B3_0 = 0; G_B3_1 = G_B1_0; goto IL_0013; } IL_0012: { G_B3_0 = 4; G_B3_1 = G_B2_0; } IL_0013: { V_0 = ((int64_t)il2cpp_codegen_add(G_B3_1, ((int64_t)G_B3_0))); int64_t L_3 = V_0; if (L_3) { goto IL_001b; } } { return 0; } IL_001b: { bool L_4 = ___insertLineBreaks1; if (!L_4) { goto IL_0037; } } { int64_t L_5 = V_0; V_1 = ((int64_t)(L_5/((int64_t)((int32_t)76)))); int64_t L_6 = V_0; if (((int64_t)(L_6%((int64_t)((int32_t)76))))) { goto IL_0030; } } { int64_t L_7 = V_1; V_1 = ((int64_t)il2cpp_codegen_subtract(L_7, ((int64_t)1))); } IL_0030: { int64_t L_8 = V_0; int64_t L_9 = V_1; V_0 = ((int64_t)il2cpp_codegen_add(L_8, ((int64_t)il2cpp_codegen_multiply(L_9, ((int64_t)2))))); } IL_0037: { int64_t L_10 = V_0; if ((((int64_t)L_10) <= ((int64_t)((int64_t)((int32_t)2147483647LL))))) { goto IL_0046; } } { OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F* L_11 = (OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F_il2cpp_TypeInfo_var))); NullCheck(L_11); OutOfMemoryException__ctor_m2CDADA05A6304090686E8D5E3E99A1596FAF5951(L_11, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_ToBase64_CalculateAndValidateOutputLength_m53BDF9C19D8CBBECC4CD9556CA22483A8D023275_RuntimeMethod_var))); } IL_0046: { int64_t L_12 = V_0; return ((int32_t)L_12); } } // System.Byte[] System.Convert::FromBase64String(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* Convert_FromBase64String_m421F8600CA5124E047E3D7C2BC1B653F67BC48A1 (String_t* ___s0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Il2CppChar* V_0 = NULL; String_t* V_1 = NULL; { String_t* L_0 = ___s0; 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))); NullCheck(L_1); ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDAF2BD03270A51BF9C135F3694DCAD2D3E66F465)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_FromBase64String_m421F8600CA5124E047E3D7C2BC1B653F67BC48A1_RuntimeMethod_var))); } IL_000e: { String_t* L_2 = ___s0; V_1 = L_2; String_t* L_3 = V_1; V_0 = (Il2CppChar*)((uintptr_t)L_3); Il2CppChar* L_4 = V_0; if (!L_4) { goto IL_001e; } } { Il2CppChar* L_5 = V_0; int32_t L_6; L_6 = RuntimeHelpers_get_OffsetToStringData_mBBE58AEA702864FB006771F4600D1D99B1234460(NULL); V_0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_5, L_6)); } IL_001e: { Il2CppChar* L_7 = V_0; String_t* L_8 = ___s0; NullCheck(L_8); int32_t L_9; L_9 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_8, NULL); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_10; L_10 = Convert_FromBase64CharPtr_mEBD260DAFC4D3A85D913F98F880472EA54801C67(L_7, L_9, NULL); return L_10; } } // System.Boolean System.Convert::TryFromBase64Chars(System.ReadOnlySpan`1,System.Span`1,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_TryFromBase64Chars_m5D27F0EC18CB2A01CBC3C9EE4C865A6228C2E6CF (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___chars0, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 ___bytes1, int32_t* ___bytesWritten2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_Slice_mBF43FC5284A77519BB9C3BAB34F66A0A4B78CFE2_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1_Slice_m720734AA48ECB663CAA0594530927B9015A64341_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1_Slice_mEFBC3C78FD443FFE23F9E841D43B7B0271622843_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1_op_Implicit_mD65020B112814C67FED9F2C3DE2B0B78D4E2A486_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D V_0; memset((&V_0), 0, sizeof(V_0)); int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; int32_t V_5 = 0; int32_t V_6 = 0; int32_t V_7 = 0; int32_t V_8 = 0; { int8_t* L_0 = (int8_t*) alloca(((uintptr_t)8)); memset(L_0, 0, ((uintptr_t)8)); Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_1; memset((&L_1), 0, sizeof(L_1)); Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_inline((&L_1), (void*)(L_0), 4, /*hidden argument*/Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_RuntimeMethod_var); V_0 = L_1; int32_t* L_2 = ___bytesWritten2; *((int32_t*)L_2) = (int32_t)0; goto IL_011a; } IL_0013: { ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_3 = ___chars0; Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_4 = ___bytes1; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); bool L_5; L_5 = Convert_TryDecodeFromUtf16_m2BD6E50ED7F7CF66CA230283FB137D067863D819(L_3, L_4, (&V_1), (&V_2), NULL); int32_t* L_6 = ___bytesWritten2; int32_t* L_7 = ___bytesWritten2; int32_t L_8 = *((int32_t*)L_7); int32_t L_9 = V_2; *((int32_t*)L_6) = (int32_t)((int32_t)il2cpp_codegen_add(L_8, L_9)); if (!L_5) { goto IL_0028; } } { return (bool)1; } IL_0028: { int32_t L_10 = V_1; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_11; L_11 = ReadOnlySpan_1_Slice_mBF43FC5284A77519BB9C3BAB34F66A0A4B78CFE2_inline((&___chars0), L_10, ReadOnlySpan_1_Slice_mBF43FC5284A77519BB9C3BAB34F66A0A4B78CFE2_RuntimeMethod_var); ___chars0 = L_11; int32_t L_12 = V_2; Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_13; L_13 = Span_1_Slice_m720734AA48ECB663CAA0594530927B9015A64341_inline((&___bytes1), L_12, Span_1_Slice_m720734AA48ECB663CAA0594530927B9015A64341_RuntimeMethod_var); ___bytes1 = L_13; Il2CppChar* L_14; L_14 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___chars0))->____pointer_0))->value, (0), ((&___chars0))->____length_1); int32_t L_15 = *((uint16_t*)L_14); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); bool L_16; L_16 = Convert_IsSpace_m03DCDC8A577EF1BE381C7C0D42550BE85CFFD4F0_inline(L_15, NULL); if (!L_16) { goto IL_0091; } } { V_3 = 1; } IL_004e: { int32_t L_17 = V_3; int32_t L_18; L_18 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___chars0), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var); if ((((int32_t)L_17) == ((int32_t)L_18))) { goto IL_006e; } } { int32_t L_19 = V_3; Il2CppChar* L_20; L_20 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___chars0))->____pointer_0))->value, (L_19), ((&___chars0))->____length_1); int32_t L_21 = *((uint16_t*)L_20); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); bool L_22; L_22 = Convert_IsSpace_m03DCDC8A577EF1BE381C7C0D42550BE85CFFD4F0_inline(L_21, NULL); if (!L_22) { goto IL_006e; } } { int32_t L_23 = V_3; V_3 = ((int32_t)il2cpp_codegen_add(L_23, 1)); goto IL_004e; } IL_006e: { int32_t L_24 = V_3; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_25; L_25 = ReadOnlySpan_1_Slice_mBF43FC5284A77519BB9C3BAB34F66A0A4B78CFE2_inline((&___chars0), L_24, ReadOnlySpan_1_Slice_mBF43FC5284A77519BB9C3BAB34F66A0A4B78CFE2_RuntimeMethod_var); ___chars0 = L_25; int32_t L_26 = V_2; if (!((int32_t)(L_26%3))) { goto IL_011a; } } { int32_t L_27; L_27 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___chars0), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var); if (!L_27) { goto IL_011a; } } { int32_t* L_28 = ___bytesWritten2; *((int32_t*)L_28) = (int32_t)0; return (bool)0; } IL_0091: { ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_29 = ___chars0; Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_30 = V_0; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); Convert_CopyToTempBufferWithoutWhiteSpace_m72FBE2654DACD3D1822F0695CB52A550AE9BEAFD(L_29, L_30, (&V_4), (&V_5), NULL); int32_t L_31 = V_5; if (!((int32_t)(L_31&3))) { goto IL_00a7; } } { int32_t* L_32 = ___bytesWritten2; *((int32_t*)L_32) = (int32_t)0; return (bool)0; } IL_00a7: { int32_t L_33 = V_5; Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_34; L_34 = Span_1_Slice_mEFBC3C78FD443FFE23F9E841D43B7B0271622843_inline((&V_0), 0, L_33, Span_1_Slice_mEFBC3C78FD443FFE23F9E841D43B7B0271622843_RuntimeMethod_var); V_0 = L_34; Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_35 = V_0; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_36; L_36 = Span_1_op_Implicit_mD65020B112814C67FED9F2C3DE2B0B78D4E2A486(L_35, Span_1_op_Implicit_mD65020B112814C67FED9F2C3DE2B0B78D4E2A486_RuntimeMethod_var); Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_37 = ___bytes1; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); bool L_38; L_38 = Convert_TryDecodeFromUtf16_m2BD6E50ED7F7CF66CA230283FB137D067863D819(L_36, L_37, (&V_6), (&V_7), NULL); if (L_38) { goto IL_00c9; } } { int32_t* L_39 = ___bytesWritten2; *((int32_t*)L_39) = (int32_t)0; return (bool)0; } IL_00c9: { int32_t* L_40 = ___bytesWritten2; int32_t* L_41 = ___bytesWritten2; int32_t L_42 = *((int32_t*)L_41); int32_t L_43 = V_7; *((int32_t*)L_40) = (int32_t)((int32_t)il2cpp_codegen_add(L_42, L_43)); int32_t L_44 = V_4; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_45; L_45 = ReadOnlySpan_1_Slice_mBF43FC5284A77519BB9C3BAB34F66A0A4B78CFE2_inline((&___chars0), L_44, ReadOnlySpan_1_Slice_mBF43FC5284A77519BB9C3BAB34F66A0A4B78CFE2_RuntimeMethod_var); ___chars0 = L_45; int32_t L_46 = V_7; Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_47; L_47 = Span_1_Slice_m720734AA48ECB663CAA0594530927B9015A64341_inline((&___bytes1), L_46, Span_1_Slice_m720734AA48ECB663CAA0594530927B9015A64341_RuntimeMethod_var); ___bytes1 = L_47; int32_t L_48 = V_7; if (!((int32_t)(L_48%3))) { goto IL_011a; } } { V_8 = 0; goto IL_010d; } IL_00f1: { int32_t L_49 = V_8; Il2CppChar* L_50; L_50 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___chars0))->____pointer_0))->value, (L_49), ((&___chars0))->____length_1); int32_t L_51 = *((uint16_t*)L_50); il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); bool L_52; L_52 = Convert_IsSpace_m03DCDC8A577EF1BE381C7C0D42550BE85CFFD4F0_inline(L_51, NULL); if (L_52) { goto IL_0107; } } { int32_t* L_53 = ___bytesWritten2; *((int32_t*)L_53) = (int32_t)0; return (bool)0; } IL_0107: { int32_t L_54 = V_8; V_8 = ((int32_t)il2cpp_codegen_add(L_54, 1)); } IL_010d: { int32_t L_55 = V_8; int32_t L_56; L_56 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___chars0), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var); if ((((int32_t)L_55) < ((int32_t)L_56))) { goto IL_00f1; } } { return (bool)1; } IL_011a: { int32_t L_57; L_57 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___chars0), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var); if (L_57) { goto IL_0013; } } { return (bool)1; } } // System.Void System.Convert::CopyToTempBufferWithoutWhiteSpace(System.ReadOnlySpan`1,System.Span`1,System.Int32&,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Convert_CopyToTempBufferWithoutWhiteSpace_m72FBE2654DACD3D1822F0695CB52A550AE9BEAFD (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___chars0, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___tempBuffer1, int32_t* ___consumed2, int32_t* ___charsWritten3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1_get_Length_mB79622153F80AD55A805C005842AF045F4FCF992_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; Il2CppChar V_1 = 0x0; int32_t V_2 = 0; { int32_t* L_0 = ___charsWritten3; *((int32_t*)L_0) = (int32_t)0; V_0 = 0; goto IL_0040; } IL_0007: { int32_t L_1 = V_0; Il2CppChar* L_2; L_2 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___chars0))->____pointer_0))->value, (L_1), ((&___chars0))->____length_1); int32_t L_3 = *((uint16_t*)L_2); V_1 = L_3; Il2CppChar L_4 = V_1; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); bool L_5; L_5 = Convert_IsSpace_m03DCDC8A577EF1BE381C7C0D42550BE85CFFD4F0_inline(L_4, NULL); if (L_5) { goto IL_003c; } } { int32_t* L_6 = ___charsWritten3; int32_t* L_7 = ___charsWritten3; int32_t L_8 = *((int32_t*)L_7); V_2 = L_8; int32_t L_9 = V_2; *((int32_t*)L_6) = (int32_t)((int32_t)il2cpp_codegen_add(L_9, 1)); int32_t L_10 = V_2; Il2CppChar* L_11; L_11 = il2cpp_span_get_item((Il2CppChar*)((Il2CppByReference*)&(((&___tempBuffer1))->____pointer_0))->value, (L_10), ((&___tempBuffer1))->____length_1); Il2CppChar L_12 = V_1; *((int16_t*)L_11) = (int16_t)L_12; int32_t* L_13 = ___charsWritten3; int32_t L_14 = *((int32_t*)L_13); int32_t L_15; L_15 = Span_1_get_Length_mB79622153F80AD55A805C005842AF045F4FCF992_inline((&___tempBuffer1), Span_1_get_Length_mB79622153F80AD55A805C005842AF045F4FCF992_RuntimeMethod_var); if ((!(((uint32_t)L_14) == ((uint32_t)L_15)))) { goto IL_003c; } } { int32_t* L_16 = ___consumed2; int32_t L_17 = V_0; *((int32_t*)L_16) = (int32_t)((int32_t)il2cpp_codegen_add(L_17, 1)); return; } IL_003c: { int32_t L_18 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_18, 1)); } IL_0040: { int32_t L_19 = V_0; int32_t L_20; L_20 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___chars0), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var); if ((((int32_t)L_19) < ((int32_t)L_20))) { goto IL_0007; } } { int32_t* L_21 = ___consumed2; int32_t L_22; L_22 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___chars0), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var); *((int32_t*)L_21) = (int32_t)L_22; return; } } // System.Boolean System.Convert::IsSpace(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_IsSpace_m03DCDC8A577EF1BE381C7C0D42550BE85CFFD4F0 (Il2CppChar ___c0, const RuntimeMethod* method) { { Il2CppChar L_0 = ___c0; if ((((int32_t)L_0) == ((int32_t)((int32_t)32)))) { goto IL_0015; } } { Il2CppChar L_1 = ___c0; if ((((int32_t)L_1) == ((int32_t)((int32_t)9)))) { goto IL_0015; } } { Il2CppChar L_2 = ___c0; if ((((int32_t)L_2) == ((int32_t)((int32_t)13)))) { goto IL_0015; } } { Il2CppChar L_3 = ___c0; return (bool)((((int32_t)L_3) == ((int32_t)((int32_t)10)))? 1 : 0); } IL_0015: { return (bool)1; } } // System.Byte[] System.Convert::FromBase64CharArray(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* Convert_FromBase64CharArray_m084747DF9F015CDE232656C475FB666FF57E45D9 (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___inArray0, int32_t ___offset1, int32_t ___length2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Array_Empty_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m89F7B056854DF715AA3E2B78EB84D5FA3878E474_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Il2CppChar* V_0 = NULL; { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = ___inArray0; 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))); NullCheck(L_1); ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB77C51162F9B76C1135D72465C09B899FF505927)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_FromBase64CharArray_m084747DF9F015CDE232656C475FB666FF57E45D9_RuntimeMethod_var))); } IL_000e: { int32_t L_2 = ___length2; if ((((int32_t)L_2) >= ((int32_t)0))) { goto IL_0022; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_3); ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE8744A8B8BD390EB66CA0CAE2376C973E6904FFB)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_FromBase64CharArray_m084747DF9F015CDE232656C475FB666FF57E45D9_RuntimeMethod_var))); } IL_0022: { int32_t L_4 = ___offset1; if ((((int32_t)L_4) >= ((int32_t)0))) { goto IL_0036; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_5 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_5); ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral544DC80A2A82A08B6321F56F8987CB7E5DEED1C4)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral36A2069F2EBB68A1BE4AF9D9FF3B475C9EE76A26)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_FromBase64CharArray_m084747DF9F015CDE232656C475FB666FF57E45D9_RuntimeMethod_var))); } IL_0036: { int32_t L_6 = ___offset1; CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_7 = ___inArray0; NullCheck(L_7); int32_t L_8 = ___length2; if ((((int32_t)L_6) <= ((int32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_7)->max_length)), L_8))))) { goto IL_004e; } } { ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_9 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var))); NullCheck(L_9); ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral544DC80A2A82A08B6321F56F8987CB7E5DEED1C4)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8532458685731C44156899992CA7A144A15B177F)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_FromBase64CharArray_m084747DF9F015CDE232656C475FB666FF57E45D9_RuntimeMethod_var))); } IL_004e: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_10 = ___inArray0; NullCheck(L_10); if ((((RuntimeArray*)L_10)->max_length)) { goto IL_0058; } } { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11; L_11 = Array_Empty_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m89F7B056854DF715AA3E2B78EB84D5FA3878E474_inline(Array_Empty_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m89F7B056854DF715AA3E2B78EB84D5FA3878E474_RuntimeMethod_var); return L_11; } IL_0058: { CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_12 = ___inArray0; NullCheck(L_12); V_0 = ((L_12)->GetAddressAt(static_cast(0))); Il2CppChar* L_13 = V_0; int32_t L_14 = ___offset1; int32_t L_15 = ___length2; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_16; L_16 = Convert_FromBase64CharPtr_mEBD260DAFC4D3A85D913F98F880472EA54801C67((Il2CppChar*)((intptr_t)il2cpp_codegen_add((intptr_t)((uintptr_t)L_13), ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_14), 2)))), L_15, NULL); return L_16; } } // System.Byte[] System.Convert::FromBase64CharPtr(System.Char*,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* Convert_FromBase64CharPtr_mEBD260DAFC4D3A85D913F98F880472EA54801C67 (Il2CppChar* ___inputPtr0, int32_t ___inputLength1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1__ctor_mB16A8EC9CCDE68A166108BE32B6DDA7D7C88BC17_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1_op_Implicit_mDC0AC5B50ABB4FDDA74ADE064641DB22D560B357_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; { goto IL_0025; } IL_0002: { Il2CppChar* L_0 = ___inputPtr0; int32_t L_1 = ___inputLength1; int32_t L_2 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_0, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)((int32_t)il2cpp_codegen_subtract(L_1, 1))), 2))))); V_1 = L_2; int32_t L_3 = V_1; if ((((int32_t)L_3) == ((int32_t)((int32_t)32)))) { goto IL_0020; } } { int32_t L_4 = V_1; if ((((int32_t)L_4) == ((int32_t)((int32_t)10)))) { goto IL_0020; } } { int32_t L_5 = V_1; if ((((int32_t)L_5) == ((int32_t)((int32_t)13)))) { goto IL_0020; } } { int32_t L_6 = V_1; if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)9))))) { goto IL_0029; } } IL_0020: { int32_t L_7 = ___inputLength1; ___inputLength1 = ((int32_t)il2cpp_codegen_subtract(L_7, 1)); } IL_0025: { int32_t L_8 = ___inputLength1; if ((((int32_t)L_8) > ((int32_t)0))) { goto IL_0002; } } IL_0029: { Il2CppChar* L_9 = ___inputPtr0; int32_t L_10 = ___inputLength1; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); int32_t L_11; L_11 = Convert_FromBase64_ComputeResultLength_mC2C2F8FB18BB4F7D77CDB18D671237365A2C35D5(L_9, L_10, NULL); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_12 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)L_11); V_0 = L_12; Il2CppChar* L_13 = ___inputPtr0; int32_t L_14 = ___inputLength1; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_15; memset((&L_15), 0, sizeof(L_15)); ReadOnlySpan_1__ctor_mB16A8EC9CCDE68A166108BE32B6DDA7D7C88BC17_inline((&L_15), (void*)L_13, L_14, /*hidden argument*/ReadOnlySpan_1__ctor_mB16A8EC9CCDE68A166108BE32B6DDA7D7C88BC17_RuntimeMethod_var); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_16 = V_0; Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_17; L_17 = Span_1_op_Implicit_mDC0AC5B50ABB4FDDA74ADE064641DB22D560B357(L_16, Span_1_op_Implicit_mDC0AC5B50ABB4FDDA74ADE064641DB22D560B357_RuntimeMethod_var); bool L_18; L_18 = Convert_TryFromBase64Chars_m5D27F0EC18CB2A01CBC3C9EE4C865A6228C2E6CF(L_15, L_17, (&V_2), NULL); if (L_18) { goto IL_0057; } } { FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_19 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var))); NullCheck(L_19); FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E(L_19, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2D0BAF232D97D0ABBA1986C948E6B9DA38247EDD)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_FromBase64CharPtr_mEBD260DAFC4D3A85D913F98F880472EA54801C67_RuntimeMethod_var))); } IL_0057: { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_20 = V_0; return L_20; } } // System.Int32 System.Convert::FromBase64_ComputeResultLength(System.Char*,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_FromBase64_ComputeResultLength_mC2C2F8FB18BB4F7D77CDB18D671237365A2C35D5 (Il2CppChar* ___inputPtr0, int32_t ___inputLength1, const RuntimeMethod* method) { Il2CppChar* V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; uint32_t V_3 = 0; { Il2CppChar* L_0 = ___inputPtr0; int32_t L_1 = ___inputLength1; V_0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_0, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)L_1), 2)))); int32_t L_2 = ___inputLength1; V_1 = L_2; V_2 = 0; goto IL_002d; } IL_000d: { Il2CppChar* L_3 = ___inputPtr0; int32_t L_4 = *((uint16_t*)L_3); V_3 = L_4; Il2CppChar* L_5 = ___inputPtr0; ___inputPtr0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_5, 2)); uint32_t L_6 = V_3; if ((!(((uint32_t)L_6) <= ((uint32_t)((int32_t)32))))) { goto IL_0020; } } { int32_t L_7 = V_1; V_1 = ((int32_t)il2cpp_codegen_subtract(L_7, 1)); goto IL_002d; } IL_0020: { uint32_t L_8 = V_3; if ((!(((uint32_t)L_8) == ((uint32_t)((int32_t)61))))) { goto IL_002d; } } { int32_t L_9 = V_1; V_1 = ((int32_t)il2cpp_codegen_subtract(L_9, 1)); int32_t L_10 = V_2; V_2 = ((int32_t)il2cpp_codegen_add(L_10, 1)); } IL_002d: { Il2CppChar* L_11 = ___inputPtr0; Il2CppChar* L_12 = V_0; if ((!(((uintptr_t)L_11) >= ((uintptr_t)L_12)))) { goto IL_000d; } } { int32_t L_13 = V_2; if (!L_13) { goto IL_004f; } } { int32_t L_14 = V_2; if ((!(((uint32_t)L_14) == ((uint32_t)1)))) { goto IL_003c; } } { V_2 = 2; goto IL_004f; } IL_003c: { int32_t L_15 = V_2; if ((!(((uint32_t)L_15) == ((uint32_t)2)))) { goto IL_0044; } } { V_2 = 1; goto IL_004f; } IL_0044: { FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_16 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var))); NullCheck(L_16); FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E(L_16, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2D0BAF232D97D0ABBA1986C948E6B9DA38247EDD)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Convert_FromBase64_ComputeResultLength_mC2C2F8FB18BB4F7D77CDB18D671237365A2C35D5_RuntimeMethod_var))); } IL_004f: { int32_t L_17 = V_1; int32_t L_18 = V_2; return ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(((int32_t)(L_17/4)), 3)), L_18)); } } // System.Void System.Convert::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Convert__cctor_m562CE5F94B6C0300A37A12900B669C184923DA41 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Empty_t2092C4BE138E38CCF5F75C55C07985DEE23C0DAE_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SByteU5BU5D_t88116DA68378C3333DB73E7D36C1A06AFAA91913_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____C9830DF6956357ACE51CE1F82298578B36EB45A0CFDB8AEC5B9FDA7DB17E8063_87_FieldInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____F2830F044682E33B39018B5912634835B641562914E192CA66C654F5E4492FA8_114_FieldInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_0_0_0_var); s_Il2CppMethodInitialized = true; } { SByteU5BU5D_t88116DA68378C3333DB73E7D36C1A06AFAA91913* L_0 = (SByteU5BU5D_t88116DA68378C3333DB73E7D36C1A06AFAA91913*)(SByteU5BU5D_t88116DA68378C3333DB73E7D36C1A06AFAA91913*)SZArrayNew(SByteU5BU5D_t88116DA68378C3333DB73E7D36C1A06AFAA91913_il2cpp_TypeInfo_var, (uint32_t)((int32_t)256)); SByteU5BU5D_t88116DA68378C3333DB73E7D36C1A06AFAA91913* L_1 = L_0; RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_2 = { reinterpret_cast (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____F2830F044682E33B39018B5912634835B641562914E192CA66C654F5E4492FA8_114_FieldInfo_var) }; RuntimeHelpers_InitializeArray_mE10C3436BA703E4D9D41B3F8F365E4C34F9926EF((RuntimeArray*)L_1, L_2, NULL); ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___s_decodingMap_0 = L_1; Il2CppCodeGenWriteBarrier((void**)(&((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___s_decodingMap_0), (void*)L_1); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_3 = (TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)SZArrayNew(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var, (uint32_t)((int32_t)19)); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_4 = L_3; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_5 = { reinterpret_cast (Empty_t2092C4BE138E38CCF5F75C55C07985DEE23C0DAE_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_6; L_6 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_5, NULL); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_6); (L_4)->SetAt(static_cast(0), (Type_t*)L_6); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_7 = L_4; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_8 = { reinterpret_cast (RuntimeObject_0_0_0_var) }; Type_t* L_9; L_9 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_8, NULL); NullCheck(L_7); ArrayElementTypeCheck (L_7, L_9); (L_7)->SetAt(static_cast(1), (Type_t*)L_9); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_10 = L_7; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_11 = { reinterpret_cast (DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_0_0_0_var) }; Type_t* L_12; L_12 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_11, NULL); NullCheck(L_10); ArrayElementTypeCheck (L_10, L_12); (L_10)->SetAt(static_cast(2), (Type_t*)L_12); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_13 = L_10; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_14 = { reinterpret_cast (Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_0_0_0_var) }; Type_t* L_15; L_15 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_14, NULL); NullCheck(L_13); ArrayElementTypeCheck (L_13, L_15); (L_13)->SetAt(static_cast(3), (Type_t*)L_15); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_16 = L_13; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_17 = { reinterpret_cast (Char_t521A6F19B456D956AF452D926C32709DC03D6B17_0_0_0_var) }; Type_t* L_18; L_18 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_17, NULL); NullCheck(L_16); ArrayElementTypeCheck (L_16, L_18); (L_16)->SetAt(static_cast(4), (Type_t*)L_18); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_19 = L_16; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_20 = { reinterpret_cast (SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_0_0_0_var) }; Type_t* L_21; L_21 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_20, NULL); NullCheck(L_19); ArrayElementTypeCheck (L_19, L_21); (L_19)->SetAt(static_cast(5), (Type_t*)L_21); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_22 = L_19; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_23 = { reinterpret_cast (Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_0_0_0_var) }; Type_t* L_24; L_24 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_23, NULL); NullCheck(L_22); ArrayElementTypeCheck (L_22, L_24); (L_22)->SetAt(static_cast(6), (Type_t*)L_24); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_25 = L_22; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_26 = { reinterpret_cast (Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_0_0_0_var) }; Type_t* L_27; L_27 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_26, NULL); NullCheck(L_25); ArrayElementTypeCheck (L_25, L_27); (L_25)->SetAt(static_cast(7), (Type_t*)L_27); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_28 = L_25; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_29 = { reinterpret_cast (UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_0_0_0_var) }; Type_t* L_30; L_30 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_29, NULL); NullCheck(L_28); ArrayElementTypeCheck (L_28, L_30); (L_28)->SetAt(static_cast(8), (Type_t*)L_30); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_31 = L_28; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_32 = { reinterpret_cast (Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_0_0_0_var) }; Type_t* L_33; L_33 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_32, NULL); NullCheck(L_31); ArrayElementTypeCheck (L_31, L_33); (L_31)->SetAt(static_cast(((int32_t)9)), (Type_t*)L_33); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_34 = L_31; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_35 = { reinterpret_cast (UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_0_0_0_var) }; Type_t* L_36; L_36 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_35, NULL); NullCheck(L_34); ArrayElementTypeCheck (L_34, L_36); (L_34)->SetAt(static_cast(((int32_t)10)), (Type_t*)L_36); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_37 = L_34; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_38 = { reinterpret_cast (Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_0_0_0_var) }; Type_t* L_39; L_39 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_38, NULL); NullCheck(L_37); ArrayElementTypeCheck (L_37, L_39); (L_37)->SetAt(static_cast(((int32_t)11)), (Type_t*)L_39); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_40 = L_37; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_41 = { reinterpret_cast (UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_0_0_0_var) }; Type_t* L_42; L_42 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_41, NULL); NullCheck(L_40); ArrayElementTypeCheck (L_40, L_42); (L_40)->SetAt(static_cast(((int32_t)12)), (Type_t*)L_42); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_43 = L_40; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_44 = { reinterpret_cast (Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_0_0_0_var) }; Type_t* L_45; L_45 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_44, NULL); NullCheck(L_43); ArrayElementTypeCheck (L_43, L_45); (L_43)->SetAt(static_cast(((int32_t)13)), (Type_t*)L_45); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_46 = L_43; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_47 = { reinterpret_cast (Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_0_0_0_var) }; Type_t* L_48; L_48 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_47, NULL); NullCheck(L_46); ArrayElementTypeCheck (L_46, L_48); (L_46)->SetAt(static_cast(((int32_t)14)), (Type_t*)L_48); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_49 = L_46; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_50 = { reinterpret_cast (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_0_0_0_var) }; Type_t* L_51; L_51 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_50, NULL); NullCheck(L_49); ArrayElementTypeCheck (L_49, L_51); (L_49)->SetAt(static_cast(((int32_t)15)), (Type_t*)L_51); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_52 = L_49; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_53 = { reinterpret_cast (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_0_0_0_var) }; Type_t* L_54; L_54 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_53, NULL); NullCheck(L_52); ArrayElementTypeCheck (L_52, L_54); (L_52)->SetAt(static_cast(((int32_t)16)), (Type_t*)L_54); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_55 = L_52; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_56 = { reinterpret_cast (RuntimeObject_0_0_0_var) }; Type_t* L_57; L_57 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_56, NULL); NullCheck(L_55); ArrayElementTypeCheck (L_55, L_57); (L_55)->SetAt(static_cast(((int32_t)17)), (Type_t*)L_57); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_58 = L_55; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_59 = { reinterpret_cast (String_t_0_0_0_var) }; Type_t* L_60; L_60 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_59, NULL); NullCheck(L_58); ArrayElementTypeCheck (L_58, L_60); (L_58)->SetAt(static_cast(((int32_t)18)), (Type_t*)L_60); ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1 = L_58; Il2CppCodeGenWriteBarrier((void**)(&((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___ConvertTypes_1), (void*)L_58); RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_61 = { reinterpret_cast (Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_0_0_0_var) }; Type_t* L_62; L_62 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_61, NULL); ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___EnumType_2 = L_62; Il2CppCodeGenWriteBarrier((void**)(&((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___EnumType_2), (void*)L_62); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_63 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)((int32_t)65)); CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_64 = L_63; RuntimeFieldHandle_t6E4C45B6D2EA12FC99185805A7E77527899B25C5 L_65 = { reinterpret_cast (U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50____C9830DF6956357ACE51CE1F82298578B36EB45A0CFDB8AEC5B9FDA7DB17E8063_87_FieldInfo_var) }; RuntimeHelpers_InitializeArray_mE10C3436BA703E4D9D41B3F8F365E4C34F9926EF((RuntimeArray*)L_64, L_65, NULL); ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___base64Table_3 = L_64; Il2CppCodeGenWriteBarrier((void**)(&((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___base64Table_3), (void*)L_64); il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var); DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_66 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0; ((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___DBNull_4 = L_66; Il2CppCodeGenWriteBarrier((void**)(&((Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_StaticFields*)il2cpp_codegen_static_fields_for(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var))->___DBNull_4), (void*)L_66); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t TimeSpan_get_Ticks_mC50131E57621F29FACC53B3241432ABB874FA1B5_inline (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* __this, const RuntimeMethod* method) { { int64_t L_0 = __this->____ticks_22; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline (String_t* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->____stringLength_4; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 MemoryExtensions_AsSpan_m738C019A02A3B4B8BFEACFFA013409898B81D4FB_inline (String_t* ___text0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 V_0; memset((&V_0), 0, sizeof(V_0)); { String_t* L_0 = ___text0; if (L_0) { goto IL_000d; } } { il2cpp_codegen_initobj((&V_0), sizeof(ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1)); ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_1 = V_0; return L_1; } IL_000d: { String_t* L_2 = ___text0; NullCheck(L_2); Il2CppChar* L_3; L_3 = String_GetRawStringData_m87BC50B7B314C055E27A28032D1003D42FDE411D(L_2, NULL); String_t* L_4 = ___text0; NullCheck(L_4); int32_t L_5; L_5 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_4, NULL); ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_6; memset((&L_6), 0, sizeof(L_6)); ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_inline((&L_6), L_3, L_5, /*hidden argument*/ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_RuntimeMethod_var); return L_6; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* TimeZoneInfo_get_Utc_m482B36736E8BCDACAD739CFEB993B7BD7AADA726_inline (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_runtime_class_init_inline(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var); TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* L_0 = ((TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_StaticFields*)il2cpp_codegen_static_fields_for(TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8_il2cpp_TypeInfo_var))->___s_utcTimeZone_7; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* TimeZoneInfo_GetTimeZoneDirectoryUnity_m5B6F71D50A7694A5E7B1015AE1ACFACD938F15FE_inline (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 MemoryExtensions_AsSpan_m5164781404FE3D882902D92409C003B29659A049_inline (String_t* ___text0, int32_t ___start1, int32_t ___length2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 V_0; memset((&V_0), 0, sizeof(V_0)); { String_t* L_0 = ___text0; if (L_0) { goto IL_001a; } } { int32_t L_1 = ___start1; if (L_1) { goto IL_0009; } } { int32_t L_2 = ___length2; if (!L_2) { goto IL_0010; } } IL_0009: { ThrowHelper_ThrowArgumentOutOfRangeException_m4657A9146F3788E9A174B3E47105BCFC5551149E(((int32_t)24), NULL); } IL_0010: { il2cpp_codegen_initobj((&V_0), sizeof(ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1)); ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_3 = V_0; return L_3; } IL_001a: { int32_t L_4 = ___start1; String_t* L_5 = ___text0; NullCheck(L_5); int32_t L_6; L_6 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_5, NULL); if ((!(((uint32_t)L_4) <= ((uint32_t)L_6)))) { goto IL_002e; } } { int32_t L_7 = ___length2; String_t* L_8 = ___text0; NullCheck(L_8); int32_t L_9; L_9 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_8, NULL); int32_t L_10 = ___start1; if ((!(((uint32_t)L_7) > ((uint32_t)((int32_t)il2cpp_codegen_subtract(L_9, L_10)))))) { goto IL_0035; } } IL_002e: { ThrowHelper_ThrowArgumentOutOfRangeException_m4657A9146F3788E9A174B3E47105BCFC5551149E(((int32_t)24), NULL); } IL_0035: { String_t* L_11 = ___text0; NullCheck(L_11); Il2CppChar* L_12; L_12 = String_GetRawStringData_m87BC50B7B314C055E27A28032D1003D42FDE411D(L_11, NULL); int32_t L_13 = ___start1; Il2CppChar* L_14; L_14 = il2cpp_unsafe_add(L_12, L_13); int32_t L_15 = ___length2; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_16; memset((&L_16), 0, sizeof(L_16)); ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_inline((&L_16), L_14, L_15, /*hidden argument*/ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_RuntimeMethod_var); return L_16; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 MemoryExtensions_AsSpan_m814C0C68F0B84884C83C32C1DCBBC59069F07CAF_inline (String_t* ___text0, int32_t ___start1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 V_0; memset((&V_0), 0, sizeof(V_0)); { String_t* L_0 = ___text0; if (L_0) { goto IL_0017; } } { int32_t L_1 = ___start1; if (!L_1) { goto IL_000d; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4657A9146F3788E9A174B3E47105BCFC5551149E(((int32_t)24), NULL); } IL_000d: { il2cpp_codegen_initobj((&V_0), sizeof(ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1)); ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_2 = V_0; return L_2; } IL_0017: { int32_t L_3 = ___start1; String_t* L_4 = ___text0; NullCheck(L_4); int32_t L_5; L_5 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_4, NULL); if ((!(((uint32_t)L_3) > ((uint32_t)L_5)))) { goto IL_0027; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4657A9146F3788E9A174B3E47105BCFC5551149E(((int32_t)24), NULL); } IL_0027: { String_t* L_6 = ___text0; NullCheck(L_6); Il2CppChar* L_7; L_7 = String_GetRawStringData_m87BC50B7B314C055E27A28032D1003D42FDE411D(L_6, NULL); int32_t L_8 = ___start1; Il2CppChar* L_9; L_9 = il2cpp_unsafe_add(L_7, L_8); String_t* L_10 = ___text0; NullCheck(L_10); int32_t L_11; L_11 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_10, NULL); int32_t L_12 = ___start1; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_13; memset((&L_13), 0, sizeof(L_13)); ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_inline((&L_13), L_9, ((int32_t)il2cpp_codegen_subtract(L_11, L_12)), /*hidden argument*/ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_RuntimeMethod_var); return L_13; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeZoneInfo_get_BaseUtcOffset_m285A2D1E313B50B51A13F499192CDCEDBC702AE3_inline (TimeZoneInfo_t30FD24E315EC4F4D942AF797CCD4CC4ED6B5CAD8* __this, const RuntimeMethod* method) { { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_0 = __this->____baseUtcOffset_4; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A AdjustmentRule_get_BaseUtcOffsetDelta_m0A089D2D9C6A8C6D4460BE4403DDE16FD0D97075_inline (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) { { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_0 = __this->____baseUtcOffsetDelta_5; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A AdjustmentRule_get_DaylightDelta_m810909E9E145D564AA9B24C47EFD5F8B0EA15FE1_inline (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) { { TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_0 = __this->____daylightDelta_2; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06* StringComparer_get_OrdinalIgnoreCase_m4206775241793096770A30CE686D3B342AEDDE6E_inline (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_runtime_class_init_inline(StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06_il2cpp_TypeInfo_var); OrdinalIgnoreCaseComparer_t8BAE11990A4C855D3BCBBFB42F4EF8D45088FBB0* L_0 = ((StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06_StaticFields*)il2cpp_codegen_static_fields_for(StringComparer_t6268F19CA34879176651429C0D8A3D0002BB8E06_il2cpp_TypeInfo_var))->___s_ordinalIgnoreCase_3; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D AdjustmentRule_get_DateStart_m89981208F272F07A4D46956A501E18C579BFBAFF_inline (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) { { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = __this->____dateStart_0; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D AdjustmentRule_get_DateEnd_mFF744CCAA5537C7992B23C8F56A90FCD85846B8D_inline (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) { { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = __this->____dateEnd_1; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool AdjustmentRule_get_NoDaylightTransitions_mA92395F5741FACBEE835A929B37B6BE7D50CE3FF_inline (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) { { bool L_0 = __this->____noDaylightTransitions_6; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 AdjustmentRule_get_DaylightTransitionStart_mB13755B6F594ECC706B3946F17159E84F23E20D1_inline (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) { { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_0 = __this->____daylightTransitionStart_3; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 AdjustmentRule_get_DaylightTransitionEnd_m3DE90DB3CB36F38AFD5EA7F16719BE0013A1CF74_inline (AdjustmentRule_t20B10C5F496B129CBAF7B5099499873EC8738F07* __this, const RuntimeMethod* method) { { TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823 L_0 = __this->____daylightTransitionEnd_4; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D TransitionTime_get_TimeOfDay_m21DF682C87AF1B2B28F275583E344BDBFA5787E9_inline (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, const RuntimeMethod* method) { { DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_0 = __this->____timeOfDay_0; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TransitionTime_get_IsFixedDateRule_m8F920A7E971E18F7E165AF20C831208D14861379_inline (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, const RuntimeMethod* method) { { bool L_0 = __this->____isFixedDateRule_5; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TransitionTime_get_Month_m02516607C5B0FD478086A021F73796C71EB0D444_inline (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, const RuntimeMethod* method) { { uint8_t L_0 = __this->____month_1; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TransitionTime_get_Day_m0F83551F1C84F28AF5516225277AFE94CDE98445_inline (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, const RuntimeMethod* method) { { uint8_t L_0 = __this->____day_3; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TransitionTime_get_Week_mE32FFDD98D43B11CFBBC1C182601D6F167B392FC_inline (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, const RuntimeMethod* method) { { uint8_t L_0 = __this->____week_2; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TransitionTime_get_DayOfWeek_mD78344AF8C9889C418F0ADAE412D1FD746D031FA_inline (TransitionTime_tE1A32FD9A7AC39502239D3C9A4EA83ED2AD81823* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->____dayOfWeek_4; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TimeSpan__ctor_m061B122FA11D2063FE751C1F1D019DF1C8B10B1F_inline (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* __this, int64_t ___ticks0, const RuntimeMethod* method) { { int64_t L_0 = ___ticks0; __this->____ticks_22 = L_0; return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline (Exception_t* __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; __this->____HResult_11 = L_0; return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Exception_t* ExceptionDispatchInfo_get_SourceException_m981DC7F90598BE65BD4FA1A8340025A3A7CC3DBE_inline (ExceptionDispatchInfo_tD7AF19E75FEC22F4A8329FD1E9EDF96615CB2757* __this, const RuntimeMethod* method) { { Exception_t* L_0 = __this->___m_Exception_0; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886* AggregateException_get_InnerExceptions_m3044DE61416F827389F2975C67AC1AD89EA050A5_inline (AggregateException_t51B6205846DFB356B94452702201DD239D44422F* __this, const RuntimeMethod* method) { { ReadOnlyCollection_1_t0A3EEA206F04C2F9E8303E24D863C2E7FD258886* L_0 = __this->___m_innerExceptions_18; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Exception_get_HResult_mBA9CD3C01C2F0C68DFA6ED7824F7371D7E1A4163_inline (Exception_t* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->____HResult_11; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Exception_t* Exception_get_InnerException_m0C1BDB339C786BA4DA7D2C1AD214571CFBBB1410_inline (Exception_t* __this, const RuntimeMethod* method) { { Exception_t* L_0 = __this->____innerException_4; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool MemoryExtensions_EqualsOrdinalIgnoreCase_m17DF830414F61377682B8C06BE2AC0DB76558B90_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___span0, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { int32_t L_0; L_0 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___span0), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var); int32_t L_1; L_1 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___value1), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var); if ((((int32_t)L_0) == ((int32_t)L_1))) { goto IL_0012; } } { return (bool)0; } IL_0012: { int32_t L_2; L_2 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___value1), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var); if (L_2) { goto IL_001d; } } { return (bool)1; } IL_001d: { ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_3 = ___span0; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_4 = ___value1; il2cpp_codegen_runtime_class_init_inline(CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57_il2cpp_TypeInfo_var); int32_t L_5; L_5 = CompareInfo_CompareOrdinalIgnoreCase_m1B8CBA3C3313A79EAD2C2321B311334283887D05(L_3, L_4, NULL); return (bool)((((int32_t)L_5) == ((int32_t)0))? 1 : 0); } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 String_op_Implicit_m43FB5A30521770D4C28C1307CF89F80BA3535CAC_inline (String_t* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 V_0; memset((&V_0), 0, sizeof(V_0)); { String_t* L_0 = ___value0; if (L_0) { goto IL_000d; } } { il2cpp_codegen_initobj((&V_0), sizeof(ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1)); ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_1 = V_0; return L_1; } IL_000d: { String_t* L_2 = ___value0; NullCheck(L_2); Il2CppChar* L_3; L_3 = String_GetRawStringData_m87BC50B7B314C055E27A28032D1003D42FDE411D(L_2, NULL); String_t* L_4 = ___value0; NullCheck(L_4); int32_t L_5; L_5 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_4, NULL); ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_6; memset((&L_6), 0, sizeof(L_6)); ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_inline((&L_6), L_3, L_5, /*hidden argument*/ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_RuntimeMethod_var); return L_6; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Convert_Decode_mD9AF0DB8679568C1727F60583567F7669AE8FDDF_inline (Il2CppChar* ___encodedChars0, int8_t* ___decodingMap1, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; { Il2CppChar* L_0 = ___encodedChars0; int32_t L_1 = *((uint16_t*)L_0); V_0 = L_1; Il2CppChar* L_2 = ___encodedChars0; Il2CppChar* L_3; L_3 = il2cpp_unsafe_add(L_2, 1); int32_t L_4 = *((uint16_t*)L_3); V_1 = L_4; Il2CppChar* L_5 = ___encodedChars0; Il2CppChar* L_6; L_6 = il2cpp_unsafe_add(L_5, 2); int32_t L_7 = *((uint16_t*)L_6); V_2 = L_7; Il2CppChar* L_8 = ___encodedChars0; Il2CppChar* L_9; L_9 = il2cpp_unsafe_add(L_8, 3); int32_t L_10 = *((uint16_t*)L_9); V_3 = L_10; int32_t L_11 = V_0; int32_t L_12 = V_1; int32_t L_13 = V_2; int32_t L_14 = V_3; if (!((int64_t)(((int64_t)((int32_t)(((int32_t)(((int32_t)(L_11|L_12))|L_13))|L_14)))&((int64_t)(uint64_t)((uint32_t)((int32_t)-256)))))) { goto IL_0031; } } { return (-1); } IL_0031: { int8_t* L_15 = ___decodingMap1; int32_t L_16 = V_0; int8_t* L_17; L_17 = il2cpp_unsafe_add(L_15, L_16); int32_t L_18 = *((int8_t*)L_17); V_0 = L_18; int8_t* L_19 = ___decodingMap1; int32_t L_20 = V_1; int8_t* L_21; L_21 = il2cpp_unsafe_add(L_19, L_20); int32_t L_22 = *((int8_t*)L_21); V_1 = L_22; int8_t* L_23 = ___decodingMap1; int32_t L_24 = V_2; int8_t* L_25; L_25 = il2cpp_unsafe_add(L_23, L_24); int32_t L_26 = *((int8_t*)L_25); V_2 = L_26; int8_t* L_27 = ___decodingMap1; int32_t L_28 = V_3; int8_t* L_29; L_29 = il2cpp_unsafe_add(L_27, L_28); int32_t L_30 = *((int8_t*)L_29); V_3 = L_30; int32_t L_31 = V_0; V_0 = ((int32_t)(L_31<<((int32_t)18))); int32_t L_32 = V_1; V_1 = ((int32_t)(L_32<<((int32_t)12))); int32_t L_33 = V_2; V_2 = ((int32_t)(L_33<<6)); int32_t L_34 = V_0; int32_t L_35 = V_3; V_0 = ((int32_t)(L_34|L_35)); int32_t L_36 = V_1; int32_t L_37 = V_2; V_1 = ((int32_t)(L_36|L_37)); int32_t L_38 = V_0; int32_t L_39 = V_1; V_0 = ((int32_t)(L_38|L_39)); int32_t L_40 = V_0; return L_40; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Convert_WriteThreeLowOrderBytes_mB8A6D6DA8A0990B72ABE97AAF4D965F1A33E375F_inline (uint8_t* ___destination0, int32_t ___value1, const RuntimeMethod* method) { { uint8_t* L_0 = ___destination0; int32_t L_1 = ___value1; *((int8_t*)L_0) = (int8_t)((int32_t)(uint8_t)((int32_t)(L_1>>((int32_t)16)))); uint8_t* L_2 = ___destination0; uint8_t* L_3; L_3 = il2cpp_unsafe_add(L_2, 1); int32_t L_4 = ___value1; *((int8_t*)L_3) = (int8_t)((int32_t)(uint8_t)((int32_t)(L_4>>8))); uint8_t* L_5 = ___destination0; uint8_t* L_6; L_6 = il2cpp_unsafe_add(L_5, 2); int32_t L_7 = ___value1; *((int8_t*)L_6) = (int8_t)((int32_t)(uint8_t)L_7); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Convert_IsSpace_m03DCDC8A577EF1BE381C7C0D42550BE85CFFD4F0_inline (Il2CppChar ___c0, const RuntimeMethod* method) { { Il2CppChar L_0 = ___c0; if ((((int32_t)L_0) == ((int32_t)((int32_t)32)))) { goto IL_0015; } } { Il2CppChar L_1 = ___c0; if ((((int32_t)L_1) == ((int32_t)((int32_t)9)))) { goto IL_0015; } } { Il2CppChar L_2 = ___c0; if ((((int32_t)L_2) == ((int32_t)((int32_t)13)))) { goto IL_0015; } } { Il2CppChar L_3 = ___c0; return (bool)((((int32_t)L_3) == ((int32_t)((int32_t)10)))? 1 : 0); } IL_0015: { return (bool)1; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_gshared_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, void* ___pointer0, int32_t ___length1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { if (!false) { goto IL_0016; } } { RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 4)) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_1; L_1 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_0, NULL); ThrowHelper_ThrowInvalidTypeWithPointersNotSupported_m6A58AD8706EDDB4CE9C309A6085249B6377C8CB5(L_1, NULL); } IL_0016: { int32_t L_2 = ___length1; if ((((int32_t)L_2) >= ((int32_t)0))) { goto IL_001f; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m272CE1B3040BA89B2C478E2CF629670574F30353(NULL); } IL_001f: { void* L_3 = ___pointer0; Il2CppChar* L_4; L_4 = il2cpp_unsafe_as_ref((uint8_t*)L_3); ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 L_5; memset((&L_5), 0, sizeof(L_5)); il2cpp_codegen_by_reference_constructor((Il2CppByReference*)(&L_5), L_4); __this->____pointer_0 = L_5; int32_t L_6 = ___length1; __this->____length_1 = L_6; return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->____length_1; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ArrayPool_1_t645A9854926DCA747C654687A362AD03D55D2C07* ArrayPool_1_get_Shared_mF8BCD25CBF8FDFF0B3B34EA3845722E4E10F310F_gshared_inline (const RuntimeMethod* method) { { il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 0)); ArrayPool_1_t645A9854926DCA747C654687A362AD03D55D2C07* L_0 = ((ArrayPool_1_t645A9854926DCA747C654687A362AD03D55D2C07_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 0)))->___U3CSharedU3Ek__BackingField_0; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___item0, const RuntimeMethod* method) { ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_0 = NULL; int32_t V_1 = 0; { int32_t L_0 = (int32_t)__this->____version_3; __this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1)); ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)__this->____items_1; V_0 = L_1; int32_t L_2 = (int32_t)__this->____size_2; 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_2 = ((int32_t)il2cpp_codegen_add(L_5, 1)); ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = V_0; int32_t L_7 = V_1; RuntimeObject* L_8 = ___item0; NullCheck(L_6); (L_6)->SetAt(static_cast(L_7), (RuntimeObject*)L_8); return; } IL_0034: { RuntimeObject* L_9 = ___item0; (( void (*) (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 11)))(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 11)); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Predicate_1_Invoke_m6AC449189DCEE89A4FA2A2B724DE296A1DFB6A9B_gshared_inline (Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* __this, RuntimeObject* ___obj0, const RuntimeMethod* method) { typedef bool (*FunctionPointerType) (Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* __this, RuntimeObject* ___obj0, const RuntimeMethod* method); return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___obj0, reinterpret_cast(__this->___method_3)); } 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 = (int32_t)__this->____size_2; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mD63976C410D14373D6D1D3E713C09B1E152F2166_gshared_inline (Nullable_1_tE151CE1F6892804B41C4004C95CB57020ABB3272* __this, const RuntimeMethod* method) { { bool L_0 = (bool)__this->___hasValue_0; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Func_2_Invoke_m4733F0A0FE136C9F8DCE4963455215585E8BE2CD_gshared_inline (Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* __this, Il2CppChar ___arg0, const RuntimeMethod* method) { typedef bool (*FunctionPointerType) (Func_2_tF409A653B8F770E0A30CD80D21764FB1DDB2A28F* __this, Il2CppChar ___arg0, const RuntimeMethod* method); return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___arg0, reinterpret_cast(__this->___method_3)); } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mCF2FD8B3055FA87FC9C504F2122B3B0FAEDE3EC9_gshared_inline (Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28* __this, const RuntimeMethod* method) { { bool L_0 = (bool)__this->___hasValue_0; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* Array_Empty_TisRuntimeObject_m55011E8360A8199FB239A5787BA8631CDD6116FC_gshared_inline (const RuntimeMethod* method) { { il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 0)); ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = ((EmptyArray_1_tDF0DD7256B115243AA6BD5558417387A734240EE_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 0)))->___Value_0; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Span_1_get_Length_m8E944E4954E037877A25B9FF6B901F1F901D4769_gshared_inline (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305* __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->____length_1; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReadOnlySpan_1__ctor_m7B5C2765879EA5E8D1617D834CC465A39540A913_gshared_inline (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___array0, int32_t ___start1, int32_t ___length2, const RuntimeMethod* method) { { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___array0; if (L_0) { goto IL_0016; } } { int32_t L_1 = ___start1; if (L_1) { goto IL_0009; } } { int32_t L_2 = ___length2; if (!L_2) { goto IL_000e; } } IL_0009: { ThrowHelper_ThrowArgumentOutOfRangeException_m272CE1B3040BA89B2C478E2CF629670574F30353(NULL); } IL_000e: { il2cpp_codegen_initobj(__this, sizeof(ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D)); return; } IL_0016: { int32_t L_3 = ___start1; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = ___array0; NullCheck(L_4); if ((!(((uint32_t)L_3) <= ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))) { goto IL_0024; } } { int32_t L_5 = ___length2; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6 = ___array0; NullCheck(L_6); int32_t L_7 = ___start1; if ((!(((uint32_t)L_5) > ((uint32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_6)->max_length)), L_7)))))) { goto IL_0029; } } IL_0024: { ThrowHelper_ThrowArgumentOutOfRangeException_m272CE1B3040BA89B2C478E2CF629670574F30353(NULL); } IL_0029: { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_8 = ___array0; NullCheck((RuntimeArray*)L_8); uint8_t* L_9; L_9 = Array_GetRawSzArrayData_m2F8F5B2A381AEF971F12866D9C0A6C4FBA59F6BB_inline((RuntimeArray*)L_8, NULL); uint8_t* L_10; L_10 = il2cpp_unsafe_as_ref(L_9); int32_t L_11 = ___start1; uint8_t* L_12; L_12 = il2cpp_unsafe_add(L_10, L_11); ByReference_1_t9C85BCCAAF8C525B6C06B07E922D8D217BE8D6FC L_13; memset((&L_13), 0, sizeof(L_13)); il2cpp_codegen_by_reference_constructor((Il2CppByReference*)(&L_13), L_12); __this->____pointer_0 = L_13; int32_t L_14 = ___length2; __this->____length_1 = L_14; return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ReadOnlySpan_1_get_Length_m54864A0BB817050A9110E85BB5FB31EF63699982_gshared_inline (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D* __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->____length_1; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ReadOnlySpan_1_Slice_mDEEA4C304B13C8F7A63BC3D60B62FF17BBEE282B_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, int32_t ___start0, int32_t ___length1, const RuntimeMethod* method) { ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 V_0; memset((&V_0), 0, sizeof(V_0)); { int32_t L_0 = ___start0; int32_t L_1 = (int32_t)__this->____length_1; if ((!(((uint32_t)L_0) <= ((uint32_t)L_1)))) { goto IL_0014; } } { int32_t L_2 = ___length1; int32_t L_3 = (int32_t)__this->____length_1; int32_t L_4 = ___start0; if ((!(((uint32_t)L_2) > ((uint32_t)((int32_t)il2cpp_codegen_subtract(L_3, L_4)))))) { goto IL_0019; } } IL_0014: { ThrowHelper_ThrowArgumentOutOfRangeException_m272CE1B3040BA89B2C478E2CF629670574F30353(NULL); } IL_0019: { ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 L_5 = (ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5)__this->____pointer_0; V_0 = L_5; Il2CppChar* L_6; L_6 = IL2CPP_BY_REFERENCE_GET_VALUE(Il2CppChar, (Il2CppByReference*)(&V_0)); int32_t L_7 = ___start0; Il2CppChar* L_8; L_8 = il2cpp_unsafe_add(L_6, L_7); int32_t L_9 = ___length1; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_10; memset((&L_10), 0, sizeof(L_10)); ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_inline((&L_10), L_8, L_9, /*hidden argument*/il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 6)); return L_10; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReadOnlySpan_1__ctor_m1D3E8C5A560BE65D9A5C3E5D0D891C79F4895B0B_gshared_inline (ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___array0, const RuntimeMethod* method) { { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___array0; if (L_0) { goto IL_000b; } } { il2cpp_codegen_initobj(__this, sizeof(ReadOnlySpan_1_tA850A6C0E88ABBA37646A078ACBC24D6D5FD9B4D)); return; } IL_000b: { ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___array0; NullCheck((RuntimeArray*)L_1); uint8_t* L_2; L_2 = Array_GetRawSzArrayData_m2F8F5B2A381AEF971F12866D9C0A6C4FBA59F6BB_inline((RuntimeArray*)L_1, NULL); uint8_t* L_3; L_3 = il2cpp_unsafe_as_ref(L_2); ByReference_1_t9C85BCCAAF8C525B6C06B07E922D8D217BE8D6FC L_4; memset((&L_4), 0, sizeof(L_4)); il2cpp_codegen_by_reference_constructor((Il2CppByReference*)(&L_4), L_3); __this->____pointer_0 = L_4; ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5 = ___array0; NullCheck(L_5); __this->____length_1 = ((int32_t)(((RuntimeArray*)L_5)->max_length)); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ReadOnlySpan_1_Slice_mBF43FC5284A77519BB9C3BAB34F66A0A4B78CFE2_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, int32_t ___start0, const RuntimeMethod* method) { ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 V_0; memset((&V_0), 0, sizeof(V_0)); { int32_t L_0 = ___start0; int32_t L_1 = (int32_t)__this->____length_1; if ((!(((uint32_t)L_0) > ((uint32_t)L_1)))) { goto IL_000e; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m272CE1B3040BA89B2C478E2CF629670574F30353(NULL); } IL_000e: { ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 L_2 = (ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5)__this->____pointer_0; V_0 = L_2; Il2CppChar* L_3; L_3 = IL2CPP_BY_REFERENCE_GET_VALUE(Il2CppChar, (Il2CppByReference*)(&V_0)); int32_t L_4 = ___start0; Il2CppChar* L_5; L_5 = il2cpp_unsafe_add(L_3, L_4); int32_t L_6 = (int32_t)__this->____length_1; int32_t L_7 = ___start0; ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_8; memset((&L_8), 0, sizeof(L_8)); ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_inline((&L_8), L_5, ((int32_t)il2cpp_codegen_subtract(L_6, L_7)), /*hidden argument*/il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 6)); return L_8; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 Span_1_Slice_m720734AA48ECB663CAA0594530927B9015A64341_gshared_inline (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305* __this, int32_t ___start0, const RuntimeMethod* method) { ByReference_1_t9C85BCCAAF8C525B6C06B07E922D8D217BE8D6FC V_0; memset((&V_0), 0, sizeof(V_0)); { int32_t L_0 = ___start0; int32_t L_1 = (int32_t)__this->____length_1; if ((!(((uint32_t)L_0) > ((uint32_t)L_1)))) { goto IL_000e; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m272CE1B3040BA89B2C478E2CF629670574F30353(NULL); } IL_000e: { ByReference_1_t9C85BCCAAF8C525B6C06B07E922D8D217BE8D6FC L_2 = (ByReference_1_t9C85BCCAAF8C525B6C06B07E922D8D217BE8D6FC)__this->____pointer_0; V_0 = L_2; uint8_t* L_3; L_3 = IL2CPP_BY_REFERENCE_GET_VALUE(uint8_t, (Il2CppByReference*)(&V_0)); int32_t L_4 = ___start0; uint8_t* L_5; L_5 = il2cpp_unsafe_add(L_3, L_4); int32_t L_6 = (int32_t)__this->____length_1; int32_t L_7 = ___start0; Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_8; memset((&L_8), 0, sizeof(L_8)); Span_1__ctor_m947BF95D54571BF3897F96822B7A8FDA5853497B_inline((&L_8), L_5, ((int32_t)il2cpp_codegen_subtract(L_6, L_7)), /*hidden argument*/il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 10)); return L_8; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D Span_1_Slice_mEFBC3C78FD443FFE23F9E841D43B7B0271622843_gshared_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, int32_t ___start0, int32_t ___length1, const RuntimeMethod* method) { ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 V_0; memset((&V_0), 0, sizeof(V_0)); { int32_t L_0 = ___start0; int32_t L_1 = (int32_t)__this->____length_1; if ((!(((uint32_t)L_0) <= ((uint32_t)L_1)))) { goto IL_0014; } } { int32_t L_2 = ___length1; int32_t L_3 = (int32_t)__this->____length_1; int32_t L_4 = ___start0; if ((!(((uint32_t)L_2) > ((uint32_t)((int32_t)il2cpp_codegen_subtract(L_3, L_4)))))) { goto IL_0019; } } IL_0014: { ThrowHelper_ThrowArgumentOutOfRangeException_m272CE1B3040BA89B2C478E2CF629670574F30353(NULL); } IL_0019: { ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 L_5 = (ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5)__this->____pointer_0; V_0 = L_5; Il2CppChar* L_6; L_6 = IL2CPP_BY_REFERENCE_GET_VALUE(Il2CppChar, (Il2CppByReference*)(&V_0)); int32_t L_7 = ___start0; Il2CppChar* L_8; L_8 = il2cpp_unsafe_add(L_6, L_7); int32_t L_9 = ___length1; Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_10; memset((&L_10), 0, sizeof(L_10)); Span_1__ctor_mC9BE2938B716B46BB6B9070B94DBE5CE814BC0E2_inline((&L_10), L_8, L_9, /*hidden argument*/il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 10)); return L_10; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Span_1_get_Length_mB79622153F80AD55A805C005842AF045F4FCF992_gshared_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->____length_1; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* Array_Empty_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m89F7B056854DF715AA3E2B78EB84D5FA3878E474_gshared_inline (const RuntimeMethod* method) { { il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 0)); ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ((EmptyArray_1_t7187E746F328254739F076CFBCAABB28D4B4554C_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 0)))->___Value_0; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReadOnlySpan_1__ctor_mB16A8EC9CCDE68A166108BE32B6DDA7D7C88BC17_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, void* ___pointer0, int32_t ___length1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { if (!false) { goto IL_0016; } } { RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 2)) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_1; L_1 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_0, NULL); ThrowHelper_ThrowInvalidTypeWithPointersNotSupported_m6A58AD8706EDDB4CE9C309A6085249B6377C8CB5(L_1, NULL); } IL_0016: { int32_t L_2 = ___length1; if ((((int32_t)L_2) >= ((int32_t)0))) { goto IL_001f; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m272CE1B3040BA89B2C478E2CF629670574F30353(NULL); } IL_001f: { void* L_3 = ___pointer0; Il2CppChar* L_4; L_4 = il2cpp_unsafe_as_ref((uint8_t*)L_3); ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 L_5; memset((&L_5), 0, sizeof(L_5)); il2cpp_codegen_by_reference_constructor((Il2CppByReference*)(&L_5), L_4); __this->____pointer_0 = L_5; int32_t L_6 = ___length1; __this->____length_1 = L_6; return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint8_t* Array_GetRawSzArrayData_m2F8F5B2A381AEF971F12866D9C0A6C4FBA59F6BB_inline (RuntimeArray* __this, const RuntimeMethod* method) { { RawData_t37CAF2D3F74B7723974ED7CEEE9B297D8FA64ED0* L_0; L_0 = il2cpp_unsafe_as(__this); NullCheck(L_0); uint8_t* L_1 = (&L_0->___Data_2); return L_1; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, Il2CppChar* ___ptr0, int32_t ___length1, const RuntimeMethod* method) { { Il2CppChar* L_0 = ___ptr0; ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 L_1; memset((&L_1), 0, sizeof(L_1)); il2cpp_codegen_by_reference_constructor((Il2CppByReference*)(&L_1), L_0); __this->____pointer_0 = L_1; int32_t L_2 = ___length1; __this->____length_1 = L_2; return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Span_1__ctor_m947BF95D54571BF3897F96822B7A8FDA5853497B_gshared_inline (Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305* __this, uint8_t* ___ptr0, int32_t ___length1, const RuntimeMethod* method) { { uint8_t* L_0 = ___ptr0; ByReference_1_t9C85BCCAAF8C525B6C06B07E922D8D217BE8D6FC L_1; memset((&L_1), 0, sizeof(L_1)); il2cpp_codegen_by_reference_constructor((Il2CppByReference*)(&L_1), L_0); __this->____pointer_0 = L_1; int32_t L_2 = ___length1; __this->____length_1 = L_2; return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Span_1__ctor_mC9BE2938B716B46BB6B9070B94DBE5CE814BC0E2_gshared_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, Il2CppChar* ___ptr0, int32_t ___length1, const RuntimeMethod* method) { { Il2CppChar* L_0 = ___ptr0; ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 L_1; memset((&L_1), 0, sizeof(L_1)); il2cpp_codegen_by_reference_constructor((Il2CppByReference*)(&L_1), L_0); __this->____pointer_0 = L_1; int32_t L_2 = ___length1; __this->____length_1 = L_2; return; } }