#include "pch-cpp.hpp" #ifndef _MSC_VER # include #else # include #endif #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 VirtualActionInvoker3 { typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method); } }; template struct VirtualActionInvoker4 { typedef void (*Action)(void*, T1, T2, T3, T4, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method); } }; template struct VirtualActionInvoker7 { typedef void (*Action)(void*, T1, T2, T3, T4, T5, T6, T7, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6, T7 p7) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, p6, p7, 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 VirtualFuncInvoker2 { typedef R (*Func)(void*, T1, T2, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, p2, 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); } }; 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); } }; 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 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); } }; // System.Runtime.CompilerServices.ConditionalWeakTable`2 struct ConditionalWeakTable_2_t381B9D0186C0FCC3F83C0696C28C5001468A7858; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t9FA6D82CAFC18769F7515BB51D1C56DAE09381C3; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tE1603CE612C16451D1E56FF4D4859D4FE4087C28; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tC299E270AFD30A7EBE4C023B28AA11136A2EC04E; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t51690F8426AE5C5CDFF18B8E1108DED306E49456; // System.Collections.Generic.IComparer`1 struct IComparer_1_tC0A12A847AF97F369A5CE9A0CCE71CE18EE1440E; // System.Collections.Generic.IComparer`1 struct IComparer_1_t53E77AD396BD4DB02511FDB2D8E6A40BA3547A61; // System.Collections.Generic.List`1 struct List_1_t4FAECF86A2CF2472AAED5EBAE59838F11DD78CD5; // System.Collections.Generic.List`1 struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D; // System.Collections.Generic.List`1 struct List_1_t4245B07839A68A90F431D9175D30BD836E9E63F8; // System.Collections.Generic.List`1 struct List_1_t34BD5FC03C0DFF68F2817059E6FD410AD98DF02A; // System.Collections.Generic.List`1 struct List_1_t43EC7C138A17FAAD7120408F039923082A70301A; // System.Boolean[] struct BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4; // System.Byte[] struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031; // System.Char[] struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB; // System.Delegate[] struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771; // System.Collections.Hashtable[] struct HashtableU5BU5D_t61BD3CFB22E6F272300088C74EF40A25E5115FA7; // System.Collections.IComparer[] struct IComparerU5BU5D_tEF4CB36235ED7F3C24AB6602140109D86F58C156; // System.Int32[] struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C; // System.Int64[] struct Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D; // System.IntPtr[] struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832; // System.Xml.Xsl.XsltOld.Key[] struct KeyU5BU5D_t0EB4125A5A438149D047BF78630D9040D6A69B61; // System.Object[] struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918; // System.Reflection.ParameterModifier[] struct ParameterModifierU5BU5D_t685261AD991B1E6582A0E53243DEE3B745E13364; // MS.Internal.Xml.XPath.Query[] struct QueryU5BU5D_t7ED57A55B43C27603E54BC882A3906317539AFBE; // MS.Internal.Xml.XPath.SortKey[] struct SortKeyU5BU5D_tB112E97AD4D761FB44FADBA5DB0BC56BCD0FDC11; // System.Diagnostics.StackTrace[] struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF; // System.String[] struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248; // System.Xml.Xsl.XsltOld.TextEvent[] struct TextEventU5BU5D_t3E5CE6B3A47084845C984C04863FC4F5B9F45564; // System.Xml.Xsl.XsltOld.TheQuery[] struct TheQueryU5BU5D_t5289159F17230304938F4DEE4091BD1C2E0CFF02; // System.Type[] struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB; // System.Xml.Xsl.XsltOld.VariableAction[] struct VariableActionU5BU5D_tAE6840492D06EDB808564AAA35AC29FD8B4859AA; // MS.Internal.Xml.Cache.XPathNode[] struct XPathNodeU5BU5D_tABD91BA95C61EF982E9FB7D2386FCE4C39F8B90C; // System.Xml.XmlAttribute[] struct XmlAttributeU5BU5D_tFC0CF817A6D2131D94AB6387E4EAE7D97B3FFC40; // System.Xml.Serialization.XmlMemberMapping[] struct XmlMemberMappingU5BU5D_t98364948854B71F146515DCCD516FFA9900EE7CF; // System.Xml.XmlQualifiedName[] struct XmlQualifiedNameU5BU5D_t95C376ACDEA9261B842F45A4C4DF9ABEE0FB35D1; // System.Xml.Schema.XmlSchema[] struct XmlSchemaU5BU5D_t5DB5D05598D599A3F21C7D3D9A9F3F000AD6A4D3; // System.Xml.Serialization.XmlTypeMapMemberAttribute[] struct XmlTypeMapMemberAttributeU5BU5D_tD4F816722F17A6B481400D6F933E68A38D97EB83; // System.Xml.Serialization.EnumMap/EnumMapMember[] struct EnumMapMemberU5BU5D_t9142B305BA0F44DC126D50BA43D74FAA86A7D520; // System.Collections.Hashtable/bucket[] struct bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587; // System.Xml.XmlNamespaceManager/NamespaceDeclaration[] struct NamespaceDeclarationU5BU5D_t4DF48D3A2EB82C491A60E8748DE4BAFAA95A0F60; // System.Xml.XmlTextWriter/Namespace[] struct NamespaceU5BU5D_tF0F2AD10B1537EBB0F35B1611FD7D89D48FA9E93; // System.Xml.XmlTextWriter/State[] struct StateU5BU5D_t41A58B7031FABDC61B34059A1FB722121203D858; // System.Xml.XmlTextWriter/TagInfo[] struct TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776; // System.Xml.Xsl.XsltOld.Action struct Action_tEDC91260C2F42125F4520C9EA2C57E7BFF7A8F14; // System.Xml.Xsl.XsltOld.ActionFrame struct ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F; // System.Xml.Xsl.XsltOld.ApplyImportsAction struct ApplyImportsAction_tE8400005F12DD6D225C8523127634F8BABEC4684; // System.Xml.Xsl.XsltOld.ApplyTemplatesAction struct ApplyTemplatesAction_t6239D436A0DB073AAF03DC4786AE2F86E4C60793; // System.ArgumentNullException struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129; // System.Collections.ArrayList struct ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A; // System.Attribute struct Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA; // System.Xml.Xsl.XsltOld.AttributeAction struct AttributeAction_t8FD6C824D3D0B7918C0155BA16581A35F243BAE7; // System.Xml.Xsl.XsltOld.Avt struct Avt_t68EC7ADCD01911FB2B2570645C28DAF9CA8DDE75; // System.Reflection.Binder struct Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235; // System.Globalization.Calendar struct Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B; // System.Xml.Serialization.ClassMap struct ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109; // System.Globalization.CompareInfo struct CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57; // System.Xml.Xsl.XsltOld.CompiledAction struct CompiledAction_t1A3FB546A91EDE365CB98FBACB26666C9217750E; // System.Xml.Xsl.XsltOld.Compiler struct Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5; // System.Xml.Xsl.XsltOld.ContainerAction struct ContainerAction_t7A45AFD9C9840A47FE328AAA30C84F47A0693CE3; // System.Xml.Xsl.XsltOld.CopyCodeAction struct CopyCodeAction_t05EA827C005BE8D767947535807EF345C1969771; // System.Globalization.CultureData struct CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D; // System.Globalization.CultureInfo struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0; // System.Globalization.DateTimeFormatInfo struct DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A; // System.Xml.Xsl.XsltOld.DbgCompiler struct DbgCompiler_t310F6D239D695E13367E3160AA8A84AC2ECA5C34; // System.Delegate struct Delegate_t; // System.DelegateData struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E; // System.Xml.DomNameTable struct DomNameTable_tE4318EC10C55A46FD00324E740BFA7D9CEE2AF45; // System.Xml.EmptyEnumerator struct EmptyEnumerator_t84EC9187C8460EE98E675ED9258AE4DF2A6776DA; // System.Text.Encoding struct Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095; // System.Xml.Serialization.EnumMap struct EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C; // System.Security.Policy.Evidence struct Evidence_t890BA14A138D1935B7A361CA3FA55484D66B2F64; // System.Exception struct Exception_t; // System.Reflection.FieldInfo struct FieldInfo_t; // System.Xml.HWStack struct HWStack_tD40EE1D12E709BECF016469F161DC3071C020CC5; // System.Collections.Hashtable struct Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D; // System.Collections.Specialized.HybridDictionary struct HybridDictionary_t017B3B5B09423C610124C6B4F84387B156F46DDD; // System.Collections.ICollection struct ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E; // System.Collections.IComparer struct IComparer_tE7497C3BE3F68A5A2DCEBF0DAD7D13D738FE7BAD; // System.Net.ICredentials struct ICredentials_t8FDA6AF64B852DA0631D4BE66962B20E51E230F0; // System.Collections.IDictionary struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220; // System.Collections.IEnumerator struct IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA; // System.Collections.IEqualityComparer struct IEqualityComparer_tEF8F1EC76B9C8E76695BE848D41E6B147928D1C1; // System.IFormatProvider struct IFormatProvider_tC202922D43BFF3525109ABF3FB79625F5646AB52; // System.Runtime.Serialization.IFormatterConverter struct IFormatterConverter_t726606DAC82C384B08C82471313C340968DDB609; // System.Collections.IList struct IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D; // System.Net.IWebProxy struct IWebProxy_t3ECD2C773539B48B18734D61E87B685A9C93076D; // System.Xml.XPath.IXPathNavigable struct IXPathNavigable_t7BF6ADB512E5C0F5D286F6EE65D1C0ED525098EA; // System.Xml.IXmlNamespaceResolver struct IXmlNamespaceResolver_t5B384C1DCF0750B44E124D640E4F041DB19B7FD1; // System.Xml.Schema.IXmlSchemaInfo struct IXmlSchemaInfo_tF7DB6310A471259B33C4081B30E73925164204DB; // System.Xml.Serialization.IXmlSerializable struct IXmlSerializable_tE36AB1894460107283308E142C1106C4AB31A526; // System.Xml.Xsl.XsltOld.Debugger.IXsltDebugger struct IXsltDebugger_tB4709A47ABA47BA58BD2EF7CDF0F0EA4889A23CC; // System.Xml.Xsl.XsltOld.InputScope struct InputScope_t1CD4D01DDB5D730231AF91A52C601675C5DFF345; // System.Xml.Xsl.XsltOld.InputScopeManager struct InputScopeManager_tF27B9679D4E5F5A5D5AA79DDC2C74F2A51D844E4; // System.InvalidCastException struct InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E; // System.InvalidOperationException struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB; // System.Xml.Xsl.Xslt.KeywordsTable struct KeywordsTable_t0E219DF02F8110A89E6F0FA77F351B312037EF83; // System.Xml.Serialization.ListMap struct ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC; // System.Reflection.MemberFilter struct MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553; // System.Reflection.MemberInfo struct MemberInfo_t; // System.Reflection.MethodBase struct MethodBase_t; // System.Reflection.MethodInfo struct MethodInfo_t; // System.Xml.Xsl.XsltOld.NavigatorInput struct NavigatorInput_t320297C3DA5C438B7B111C375918046FAAE8F8A6; // System.Xml.Xsl.NoOperationDebugger struct NoOperationDebugger_t40687C8E2388D9450605E42A54D1793422EEDC9E; // System.NotImplementedException struct NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8; // System.NotSupportedException struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A; // System.Globalization.NumberFormatInfo struct NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472; // System.Runtime.Serialization.ObjectIDGenerator struct ObjectIDGenerator_tB34B9C0F2DDAED17FE8AB8D54462528D37DE101B; // System.Xml.Serialization.ObjectMap struct ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0; // System.Security.PermissionSet struct PermissionSet_t1E1A3526A8CB8CF06B47C292D349FC06F93A0240; // System.Xml.PositionInfo struct PositionInfo_t1695F015DE0C183D3B4CE5A1562AD8A8A373F5B5; // System.Xml.Xsl.XsltOld.PrefixQName struct PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95; // System.Xml.Xsl.XsltOld.Processor struct Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83; // System.Reflection.PropertyInfo struct PropertyInfo_t; // MS.Internal.Xml.XPath.Query struct Query_tA79EC81C5C56470386C2FCCF4CC81C13847DCFB6; // MS.Internal.Xml.XPath.QueryBuilder struct QueryBuilder_tB7F29B25B259C464F8A75696941BA1CB02F8A0F7; // System.Collections.Queue struct Queue_t82FD2BE12D138AF4D22C801CB5044DAEC2BA66BC; // System.Xml.Xsl.XsltOld.RecordBuilder struct RecordBuilder_t6C3BF4D66C8AE63A6D0D95E4E8B4D691974F802C; // System.Xml.Serialization.ReflectionHelper struct ReflectionHelper_tC70C244386E812ED1E4C85AAF108E85F470C68AB; // System.Net.Cache.RequestCachePolicy struct RequestCachePolicy_tF15C94C5E458478914D5EB17753294BD488B0550; // System.Xml.Xsl.XsltOld.RootAction struct RootAction_t94281C7ECEF5D1837C8264D38E4486DF137E7035; // System.Runtime.Serialization.SafeSerializationManager struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6; // System.Xml.Schema.SchemaElementDecl struct SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD; // System.Xml.Schema.SchemaInfo struct SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E; // System.Xml.Schema.SchemaNames struct SchemaNames_tF7A45B027D5759AA56D035F5962B4612A6B0902F; // System.Threading.SemaphoreSlim struct SemaphoreSlim_t0D5CB5685D9BFA5BF95CEC6E7395490F933E8DB2; // System.Runtime.Serialization.SerializationInfo struct SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37; // System.Runtime.Serialization.SerializationInfoEnumerator struct SerializationInfoEnumerator_t810DE600E5F6AA4F2B66A7F56074277CCD8F1540; // System.Xml.Serialization.SerializationSource struct SerializationSource_t2F3A53A0FFC7BF8994CF332961FD3C0671E4A58C; // System.Xml.Xsl.XsltOld.Sort struct Sort_tF34CA4FAE0CA6224605904970FB0F7DD8F2C5D82; // MS.Internal.Xml.XPath.SortKey struct SortKey_tE0F5DE6818DC859C42F339AE7E95298553919EED; // System.Collections.SortedList struct SortedList_t847331629BA06B518F1B5203BD22B59746EDDBF3; // System.Collections.Stack struct Stack_tBD60B0E3125691193FBFC8DA8FFDD6630CB2CB47; // System.Xml.Xsl.XsltOld.StateMachine struct StateMachine_tFA8FE476688C85C285207AA826CFA0382EBDA371; // System.IO.Stream struct Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE; // System.String struct String_t; // System.Text.StringBuilder struct StringBuilder_t; // System.Xml.Xsl.XsltOld.Stylesheet struct Stylesheet_t877F8405A546EAB0A26CE0F54A7F48533686E5AB; // System.SystemException struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295; // System.Xml.Xsl.XsltOld.TemplateBaseAction struct TemplateBaseAction_tBDAFC1750EBFC75C02FD71BFFECDE6268C71E47C; // System.Xml.Xsl.XsltOld.TemplateLookupAction struct TemplateLookupAction_t85743C2BA9FBCD1DBCD0394D84098DDC9A982FEE; // System.Xml.Xsl.XsltOld.TemplateManager struct TemplateManager_t5A258692D0F8E09652410A4E110CA218EE041320; // System.Globalization.TextInfo struct TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4; // System.IO.TextReader struct TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7; // System.IO.TextWriter struct TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3; // System.Type struct Type_t; // System.Xml.Serialization.TypeData struct TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704; // System.Xml.Serialization.UnreferencedObjectEventArgs struct UnreferencedObjectEventArgs_tA88A95B9F0BE849323A166089D04903D288C5760; // System.Xml.Serialization.UnreferencedObjectEventHandler struct UnreferencedObjectEventHandler_t7342B517610EE6E277FB060ED3C983CE68E0463A; // System.Uri struct Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E; // System.UriParser struct UriParser_t920B0868286118827C08B08A15A9456AF6C19D81; // System.Xml.Schema.ValidationEventHandler struct ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A; // System.Xml.Xsl.XsltOld.VariableAction struct VariableAction_t9CEFA9798405B9FCA0724A80692D1902659AE136; // System.Void struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915; // MS.Internal.Xml.XPath.XPathArrayIterator struct XPathArrayIterator_t99C9BCCC2BA66B7E0246D8C84C6866DE8DC23979; // MS.Internal.Xml.XPath.XPathComparerHelper struct XPathComparerHelper_t9ADF0F2ABF74B2DD147EB95DFE63769278CA8C3D; // System.Xml.XPath.XPathDocument struct XPathDocument_tE736154E9BF3ACCEB884DD1EFBADB58BD56DF5EE; // System.Xml.XPath.XPathNavigator struct XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13; // System.Xml.XPath.XPathNavigatorKeyComparer struct XPathNavigatorKeyComparer_t9E68DA4BC364ECF19858E14AECCE74476362F185; // System.Xml.XPath.XPathNodeIterator struct XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B; // MS.Internal.Xml.XPath.XPathSortComparer struct XPathSortComparer_tC6A91D91913FA15EB8A345E07F8E2F1996CA34E2; // System.Xml.XmlAttribute struct XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18; // System.Xml.XmlAttributeCollection struct XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0; // System.Xml.Serialization.XmlAttributeEventArgs struct XmlAttributeEventArgs_tE2113D9D778F9CC7EBD3D619A0342DB8C9CC7897; // System.Xml.Serialization.XmlAttributeEventHandler struct XmlAttributeEventHandler_tA9EE5C77A13FDC19DB5B3340F27245C620480F65; // System.Xml.Serialization.XmlAttributeOverrides struct XmlAttributeOverrides_tEE6AE9EC795CDEF943B35BA538C86222F905EB60; // System.Xml.XmlDocument struct XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B; // System.Xml.XmlElement struct XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1; // System.Xml.Serialization.XmlElementEventArgs struct XmlElementEventArgs_t415AB97F2EC45400E0E5FD5DCEE66D2FC4912036; // System.Xml.Serialization.XmlElementEventHandler struct XmlElementEventHandler_tA1451D76D0A21C15B71AC8B380CC097DF71951F3; // System.Xml.XmlImplementation struct XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D; // System.Xml.XmlLinkedNode struct XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C; // System.Xml.Serialization.XmlMapping struct XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97; // System.Xml.Serialization.XmlMembersMapping struct XmlMembersMapping_t0D686C86E19B598F10E53AF79EC905A7E2BDB62C; // System.Xml.XmlName struct XmlName_t0704430D24D202146901D342E34D878246E14F33; // System.Xml.XmlNameTable struct XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8; // System.Xml.XmlNamedNodeMap struct XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C; // System.Xml.XmlNamespaceManager struct XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F; // System.Xml.XmlNode struct XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF; // System.Xml.XmlNodeChangedEventHandler struct XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B; // System.Xml.Serialization.XmlNodeEventArgs struct XmlNodeEventArgs_tD4D3A349309C779296ED1395F49A9D4793D2E21D; // System.Xml.Serialization.XmlNodeEventHandler struct XmlNodeEventHandler_t32503D9F2F1A9E9E183779774CEFC13425BF6670; // System.Xml.XmlQualifiedName struct XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9; // System.Xml.XmlReader struct XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD; // System.Xml.XmlReaderSettings struct XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA; // System.Xml.Serialization.XmlReflectionImporter struct XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6; // System.Xml.XmlResolver struct XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF; // System.Xml.Serialization.XmlRootAttribute struct XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF; // System.Xml.Schema.XmlSchema struct XmlSchema_t5C9506D00418BF5FD524254D0C6C405C620C941D; // System.Xml.Schema.XmlSchemaAnnotation struct XmlSchemaAnnotation_t35947D4DA687AA3C531135CEC5EBE7AB1C3EF821; // System.Xml.Schema.XmlSchemaAnyAttribute struct XmlSchemaAnyAttribute_t2674CD673C9358AEDF1F318A8CF5DE9EB01AF601; // System.Xml.Schema.XmlSchemaCompilationSettings struct XmlSchemaCompilationSettings_tAD528503343C490A9030FEF019E313661390249C; // System.Xml.Schema.XmlSchemaComplexType struct XmlSchemaComplexType_t3C6B94A26B4C70D8780E4158E2A37D31BA88FEE0; // System.Xml.Schema.XmlSchemaContentModel struct XmlSchemaContentModel_t7A110DE0C735CB25B1483792ACC0011D321A1D19; // System.Xml.Schema.XmlSchemaDatatype struct XmlSchemaDatatype_t715572E6E9C9A145DBBF5DDF345EFA5D3AA3E34D; // System.Xml.Schema.XmlSchemaObjectCollection struct XmlSchemaObjectCollection_tABB09091ECE50CA4C1B43A6E91D2CB04465B9388; // System.Xml.Schema.XmlSchemaObjectTable struct XmlSchemaObjectTable_tD5C00DB526C716DB38585522F2011F99FC66A583; // System.Xml.Schema.XmlSchemaParticle struct XmlSchemaParticle_t9A7544A3F66C6E4B8900456CF705A6F9D95655EE; // System.Xml.Schema.XmlSchemaPatternFacet struct XmlSchemaPatternFacet_t1F025AEBB84DAD3516F8766AE831927EEFF4A927; // System.Xml.Serialization.XmlSchemaProviderAttribute struct XmlSchemaProviderAttribute_t913656BFB1429C8144C9EE53E18CC300D1C431AF; // System.Xml.Schema.XmlSchemaSet struct XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1; // System.Xml.Schema.XmlSchemaType struct XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF; // System.Xml.Serialization.XmlSerializableMapping struct XmlSerializableMapping_tE7BDFC1308A79813DF734102D332FD528FD841E7; // System.Xml.Serialization.XmlSerializationCollectionFixupCallback struct XmlSerializationCollectionFixupCallback_t7A477E768FFD9DF76301088150243A493D5A4842; // System.Xml.Serialization.XmlSerializationFixupCallback struct XmlSerializationFixupCallback_t882A7D135707B29ECA0198EFF9BB512C8F54A3AE; // System.Xml.Serialization.XmlSerializationGeneratedCode struct XmlSerializationGeneratedCode_tCC078B474844E7731E24085C4A5467A1A1253B7F; // System.Xml.Serialization.XmlSerializationReadCallback struct XmlSerializationReadCallback_tAEB657961D305723E5F13AF0D7ADE852E81D413B; // System.Xml.Serialization.XmlSerializationReader struct XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597; // System.Xml.Serialization.XmlSerializationReaderInterpreter struct XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8; // System.Xml.Serialization.XmlSerializationWriteCallback struct XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA; // System.Xml.Serialization.XmlSerializationWriter struct XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B; // System.Xml.Serialization.XmlSerializationWriterInterpreter struct XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9; // System.Xml.Serialization.XmlSerializer struct XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B; // System.Xml.Serialization.XmlSerializerFactory struct XmlSerializerFactory_t2486639A11775A86C56EA319CD0AF4848B465BA1; // System.Xml.Serialization.XmlSerializerImplementation struct XmlSerializerImplementation_tA5FE9BE0F0A19E7D007C585CFCB9A983FD88CE57; // System.Xml.Serialization.XmlSerializerNamespaces struct XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93; // System.Xml.Serialization.XmlTextAttribute struct XmlTextAttribute_tAA8BE9BA759F78BB4CDF00D3848B7746C0EDEFE0; // System.Xml.XmlTextEncoder struct XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40; // System.Xml.XmlTextReader struct XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B; // System.Xml.XmlTextReaderImpl struct XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B; // System.Xml.XmlTextWriter struct XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B; // System.Xml.XmlTextWriterBase64Encoder struct XmlTextWriterBase64Encoder_tC7209F119916DF622459E830377C23D7BFA2B30D; // System.Xml.Serialization.XmlTypeAttribute struct XmlTypeAttribute_t0EC23A25BEDDEB533D28BD2B87F5B3270E718EE5; // System.Xml.Serialization.XmlTypeMapElementInfo struct XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32; // System.Xml.Serialization.XmlTypeMapElementInfoList struct XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78; // System.Xml.Serialization.XmlTypeMapMember struct XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A; // System.Xml.Serialization.XmlTypeMapMemberAnyAttribute struct XmlTypeMapMemberAnyAttribute_t936B5C08A209D3F342575957ACCBF1F7984095F1; // System.Xml.Serialization.XmlTypeMapMemberAnyElement struct XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950; // System.Xml.Serialization.XmlTypeMapMemberAttribute struct XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4; // System.Xml.Serialization.XmlTypeMapMemberElement struct XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840; // System.Xml.Serialization.XmlTypeMapMemberExpandable struct XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE; // System.Xml.Serialization.XmlTypeMapMemberFlatList struct XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38; // System.Xml.Serialization.XmlTypeMapMemberList struct XmlTypeMapMemberList_t5542A0234B55CC3AD3EDD7B830E7C4603FAAD63E; // System.Xml.Serialization.XmlTypeMapMemberNamespaces struct XmlTypeMapMemberNamespaces_t1493E4BE21467D51FB1CDE88D538FA97815D3112; // System.Xml.Serialization.XmlTypeMapping struct XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9; // System.Xml.Serialization.XmlTypeSerializationSource struct XmlTypeSerializationSource_tE995CC9E60F76C0EDAC4CFAA7808ACCEF4225984; // System.Xml.XmlUrlResolver struct XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E; // System.Xml.XmlValidatingReader struct XmlValidatingReader_tC22B0C99C972133DC954BB9906B62835330FB3F9; // System.Xml.XmlValidatingReaderImpl struct XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8; // System.Xml.XmlWriter struct XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F; // System.Xml.XmlWriterSettings struct XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674; // System.Xml.Xsl.XslCompiledTransform struct XslCompiledTransform_tC8029B33AE36F66B77D1C1D1CB261EE0DA130AA9; // System.Xml.Xsl.XslTransform struct XslTransform_t32C87F5469FF9F15D11EAA03EE708AF205AE4BE0; // System.Xml.Xsl.XsltArgumentList struct XsltArgumentList_tCB3312D17FD0D83C20E32BB7CE76B8A280A209BF; // System.Xml.Xsl.XsltOld.XsltCompileContext struct XsltCompileContext_tE9BF01FE32A472FCECD52239962A2BC866719A46; // System.Xml.Xsl.XsltCompileException struct XsltCompileException_t0F23DFF01AB6DCE2EE02944886720D42A427CFC0; // System.Xml.Xsl.XsltContext struct XsltContext_tF2EF16CAEEBE0A1639BEED02DB3FE1058E19CD8B; // System.Xml.Xsl.XsltException struct XsltException_t068DA14245E560F1D8DD1C0EF96303DE84BAAE1F; // System.Xml.Xsl.XsltOld.XsltOutput struct XsltOutput_t135AED70B0AC66A3E3BCCC462AD7B0B35FCC7124; // System.Xml.Xsl.XsltSettings struct XsltSettings_tA9657F26E369F2962E205F2EB1CFE7345AFE0AF8; // System.Xml.Xsl.XsltOld.ActionFrame/XPathSortArrayIterator struct XPathSortArrayIterator_t2BA6E0F1CB15B24F861F906EB20341A35B3988A1; // System.Xml.Serialization.EnumMap/EnumMapMember struct EnumMapMember_tB7A0813F20CFA0758843C38C2ECE325B13893E38; // System.IO.Stream/ReadWriteTask struct ReadWriteTask_t0821BF49EE38596C7734E86E1A6A39D769BE2C05; // System.Uri/UriInfo struct UriInfo_t5F91F77A93545DDDA6BB24A609BAF5E232CC1A09; // System.Xml.XmlQualifiedName/HashCodeOfStringDelegate struct HashCodeOfStringDelegate_t25F1FA9B737C4313ED341BA7AAB31694DC3669DA; // System.Xml.Serialization.XmlSerializationReader/CollectionFixup struct CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702; // System.Xml.Serialization.XmlSerializationReader/CollectionItemFixup struct CollectionItemFixup_tB93D197F97AEEE471775D4EC6C7227434D7EDA11; // System.Xml.Serialization.XmlSerializationReader/Fixup struct Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566; // System.Xml.Serialization.XmlSerializationReader/WriteCallbackInfo struct WriteCallbackInfo_t1B01208EBEF54FE064CBE2DD5062C89EBD7A4F7D; // System.Xml.Serialization.XmlSerializationReaderInterpreter/FixupCallbackInfo struct FixupCallbackInfo_t4F096851101229F0692C9397633C653DE18E2475; // System.Xml.Serialization.XmlSerializationReaderInterpreter/ReaderCallbackInfo struct ReaderCallbackInfo_t414F9FC8F93718A4EAF961E66DE7A6C43B6A08FB; // System.Xml.Serialization.XmlSerializationWriter/WriteCallbackInfo struct WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6; // System.Xml.Serialization.XmlSerializationWriterInterpreter/CallbackInfo struct CallbackInfo_t89714EAF889C7E9B3682A74ADF45DDACC78E60B2; // System.Xml.Serialization.XmlSerializer/SerializerData struct SerializerData_t80E5CC9586C1782157CDE6EA3518737643CEDDDF; IL2CPP_EXTERN_C RuntimeClass* ApplyTemplatesAction_t6239D436A0DB073AAF03DC4786AE2F86E4C60793_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_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* CallbackInfo_t89714EAF889C7E9B3682A74ADF45DDACC78E60B2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ContainerAction_t7A45AFD9C9840A47FE328AAA30C84F47A0693CE3_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* DbgCompiler_t310F6D239D695E13367E3160AA8A84AC2ECA5C34_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* FieldInfo_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* FixupCallbackInfo_t4F096851101229F0692C9397633C653DE18E2475_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_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* IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IXPathNavigable_t7BF6ADB512E5C0F5D286F6EE65D1C0ED525098EA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IXmlSerializable_tE36AB1894460107283308E142C1106C4AB31A526_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_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* ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_t4245B07839A68A90F431D9175D30BD836E9E63F8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* MissingManifestResourceException_t136A089345909ADB6333D6F4E2AA84C7A00CB3FD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NavigatorInput_t320297C3DA5C438B7B111C375918046FAAE8F8A6_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NoOperationDebugger_t40687C8E2388D9450605E42A54D1793422EEDC9E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ObjectIDGenerator_tB34B9C0F2DDAED17FE8AB8D54462528D37DE101B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PropertyInfo_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Queue_t82FD2BE12D138AF4D22C801CB5044DAEC2BA66BC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ReaderCallbackInfo_t414F9FC8F93718A4EAF961E66DE7A6C43B6A08FB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RuntimeArray_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SortKey_tE0F5DE6818DC859C42F339AE7E95298553919EED_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Sort_tF34CA4FAE0CA6224605904970FB0F7DD8F2C5D82_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* String_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TargetInvocationException_t46C470A37ED9947AFD45BD814387DF64665B69F2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_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* WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XPathComparerHelper_t9ADF0F2ABF74B2DD147EB95DFE63769278CA8C3D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XPathDocument_tE736154E9BF3ACCEB884DD1EFBADB58BD56DF5EE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XPathSortArrayIterator_t2BA6E0F1CB15B24F861F906EB20341A35B3988A1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XPathSortComparer_tC6A91D91913FA15EB8A345E07F8E2F1996CA34E2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlCustomFormatter_t8021E588C6512752ACF5F834D7F8FF70E1D28471_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlMembersMapping_t0D686C86E19B598F10E53AF79EC905A7E2BDB62C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlNullResolver_t2569417DA15677E9831E2DEFD875034F37088FB2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlSchemaComplexType_t3C6B94A26B4C70D8780E4158E2A37D31BA88FEE0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlSchemaProviderAttribute_t913656BFB1429C8144C9EE53E18CC300D1C431AF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlSchemaU5BU5D_t5DB5D05598D599A3F21C7D3D9A9F3F000AD6A4D3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlSerializationCollectionFixupCallback_t7A477E768FFD9DF76301088150243A493D5A4842_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlSerializationFixupCallback_t882A7D135707B29ECA0198EFF9BB512C8F54A3AE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlSerializationReadCallback_tAEB657961D305723E5F13AF0D7ADE852E81D413B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlSerializerFactory_t2486639A11775A86C56EA319CD0AF4848B465BA1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlTypeMapMemberAnyAttribute_t936B5C08A209D3F342575957ACCBF1F7984095F1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlTypeMapMemberAttributeU5BU5D_tD4F816722F17A6B481400D6F933E68A38D97EB83_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlTypeMapMemberNamespaces_t1493E4BE21467D51FB1CDE88D538FA97815D3112_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlTypeSerializationSource_tE995CC9E60F76C0EDAC4CFAA7808ACCEF4225984_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlValidatingReader_tC22B0C99C972133DC954BB9906B62835330FB3F9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XslTransform_t32C87F5469FF9F15D11EAA03EE708AF205AE4BE0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XsltException_t068DA14245E560F1D8DD1C0EF96303DE84BAAE1F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* XsltSettings_tA9657F26E369F2962E205F2EB1CFE7345AFE0AF8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C String_t* _stringLiteral0AEA83737E2216962B6144625FC860B3F361A5ED; IL2CPP_EXTERN_C String_t* _stringLiteral0B0FEB3147CE20EB2C90076367F895C59BCD14B3; IL2CPP_EXTERN_C String_t* _stringLiteral0BA9045FCB28C8C8B2ACED641BB5013BAC05D492; IL2CPP_EXTERN_C String_t* _stringLiteral0E0048FA0448CB3DFBD7A30FABD833FBB16CBC89; IL2CPP_EXTERN_C String_t* _stringLiteral107694947DB47644F8036602F63473486E1ED925; IL2CPP_EXTERN_C String_t* _stringLiteral10843A43CD4C64637831AF0FF399A1ED2FB29D7D; IL2CPP_EXTERN_C String_t* _stringLiteral116AE9EE2F4E004AB8B7987E1296803B16C5F1C0; IL2CPP_EXTERN_C String_t* _stringLiteral13524012C64F8AB64633395F585F5569225E9F99; IL2CPP_EXTERN_C String_t* _stringLiteral151F85AEE2A721730B1E7CDA9A1335DFEA63D095; IL2CPP_EXTERN_C String_t* _stringLiteral16C0D1A98D99C5FB32B981C3E41FDB407A083C18; IL2CPP_EXTERN_C String_t* _stringLiteral171713B97115C9EE4E1D7643592C5AFA9193CE05; IL2CPP_EXTERN_C String_t* _stringLiteral1CBC514CBF721C4C5F12F67F33B3E7694BCD1B29; IL2CPP_EXTERN_C String_t* _stringLiteral23114468D04FA2B7A2DA455B545DB914D0A3ED94; IL2CPP_EXTERN_C String_t* _stringLiteral232AE0D402FAC47960A8CA8DD393C63B8FF64178; IL2CPP_EXTERN_C String_t* _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745; IL2CPP_EXTERN_C String_t* _stringLiteral26B7C05AA4B2488CAA1781DA8040534799003358; IL2CPP_EXTERN_C String_t* _stringLiteral299A91A94BC12579A25B9F1508F87ACC3282548C; IL2CPP_EXTERN_C String_t* _stringLiteral2C5BD46A8428ACC39A710FFFCDEF0CD038A2E862; IL2CPP_EXTERN_C String_t* _stringLiteral2CAB73EF57D40E8B63A7CA91D057C0B68DB59100; IL2CPP_EXTERN_C String_t* _stringLiteral349C6DC0F34B9BA242E4C728EDD28CAB809D4917; IL2CPP_EXTERN_C String_t* _stringLiteral37B9D73BE7368F9E631CD06C5DC3758F48D4E89C; IL2CPP_EXTERN_C String_t* _stringLiteral39FA1E980BA741E69B2DC04AF2C961A72DA4E553; IL2CPP_EXTERN_C String_t* _stringLiteral3BEF703FC97B2EF58FFDCB567F4C4F33758B77FD; IL2CPP_EXTERN_C String_t* _stringLiteral3D6EB261B6E5AC1669A2C14AFA8CA0EBB13AA820; IL2CPP_EXTERN_C String_t* _stringLiteral40266A599D7FCF1D8A2E067A8C90873F38D822E2; IL2CPP_EXTERN_C String_t* _stringLiteral41AE38D70F5F737DA8EAD1E5DEE7F8F6B2F930CA; IL2CPP_EXTERN_C String_t* _stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE; IL2CPP_EXTERN_C String_t* _stringLiteral430E518F836082E0683698AB9E3F79D39C7F5140; IL2CPP_EXTERN_C String_t* _stringLiteral437906DA6527EA9BAA9A971EC5171183BEB85B59; IL2CPP_EXTERN_C String_t* _stringLiteral47EB169AEE74B181812673783C66416B39F5F464; IL2CPP_EXTERN_C String_t* _stringLiteral48EDA577A470BC146F744077BDE5D2F740425218; IL2CPP_EXTERN_C String_t* _stringLiteral4A962F7AAEC3B50EF4B2CD52A7A2C969B759A960; IL2CPP_EXTERN_C String_t* _stringLiteral558ED33B9D0E36FD1CA98DD526816AE654BA4E92; IL2CPP_EXTERN_C String_t* _stringLiteral594C9B74105FC363004860F96C38805E33805AA9; IL2CPP_EXTERN_C String_t* _stringLiteral599D9E1A003C7DC39A506894643A0BD90634925B; IL2CPP_EXTERN_C String_t* _stringLiteral5B4F028A4070094FCA4E7762E2C376A65E2D59C6; IL2CPP_EXTERN_C String_t* _stringLiteral6708CDE569753F77D9D291ED4FBEB3AE21AB9F4F; IL2CPP_EXTERN_C String_t* _stringLiteral6A3C2DA0F9E8B442541C0AF562469F9A7B1AF34A; IL2CPP_EXTERN_C String_t* _stringLiteral6D67ADE9CC145DA3A39BC63DF500A7B0EC88CE4A; IL2CPP_EXTERN_C String_t* _stringLiteral6E7FC0886A022D8909FC0B61D02527E1D5AEB0C3; IL2CPP_EXTERN_C String_t* _stringLiteral6FFF89F12DC2A6CF2CA9D0A3799CAF055178ACE5; IL2CPP_EXTERN_C String_t* _stringLiteral7914982E97DD1620A36E78FAF1791907C7625BE1; IL2CPP_EXTERN_C String_t* _stringLiteral7A846A225A3909AB39CFF23BE13DACF54C540FEC; IL2CPP_EXTERN_C String_t* _stringLiteral7BFA33A11F0B12AF1B7FA1D9BA996EAE1EF77B49; IL2CPP_EXTERN_C String_t* _stringLiteral7C014955313A7D33D5D04696B884B25325E6393C; IL2CPP_EXTERN_C String_t* _stringLiteral805B49550CB3377ECB61B1B75AB5C38E884BA80C; IL2CPP_EXTERN_C String_t* _stringLiteral84F87BA2EB96A02555C340863103658061C99B72; IL2CPP_EXTERN_C String_t* _stringLiteral86BBAACC00198DBB3046818AD3FC2AA10AE48DE1; IL2CPP_EXTERN_C String_t* _stringLiteral87C858E345116CE7C4123AF185CDD74EFDD94384; IL2CPP_EXTERN_C String_t* _stringLiteral8F8BFCFC439A636B20C06C334A493AB7004843ED; IL2CPP_EXTERN_C String_t* _stringLiteral9560C3E0F8C2682733A59BD1323058EAEE27D746; IL2CPP_EXTERN_C String_t* _stringLiteral996E5360F80E16B2189CC1E536C91CE68083F694; IL2CPP_EXTERN_C String_t* _stringLiteral9A24CC7BE5FB2E4DFFA4A80AD8B0335DAE91B662; IL2CPP_EXTERN_C String_t* _stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3; IL2CPP_EXTERN_C String_t* _stringLiteral9F0051E3370AA31B69F5CBF0E35FBE94ACAE0651; IL2CPP_EXTERN_C String_t* _stringLiteralA0456228CB07E3980C756D1BE420870078E58D64; IL2CPP_EXTERN_C String_t* _stringLiteralA209B37D33B4476CEC46AD3B1D553C7B0BECB32A; IL2CPP_EXTERN_C String_t* _stringLiteralA27C715712810E2C8124CA729C2B73744ADA1464; IL2CPP_EXTERN_C String_t* _stringLiteralA2E138AD319A0E08FFC4A185CE05933BF5C01D5C; IL2CPP_EXTERN_C String_t* _stringLiteralA36CB49041E31496EDB0CF9BBB01CEF6120EA3F4; IL2CPP_EXTERN_C String_t* _stringLiteralA37D4B9061083962C5A0F6AA7E7F2314A643FF2E; IL2CPP_EXTERN_C String_t* _stringLiteralAB5C19F5E55B9C93F0D98A55405850A3A9761D28; IL2CPP_EXTERN_C String_t* _stringLiteralAD256F5DDB3F0EB4C0F66FD08235C1F3ABA620E2; IL2CPP_EXTERN_C String_t* _stringLiteralAD39D69B3EED7D6A7B1F9D5CEAE6AC85B41A3DBC; IL2CPP_EXTERN_C String_t* _stringLiteralAD6CD2C36915DEB6A18BCF0F46B294FC1D97072F; IL2CPP_EXTERN_C String_t* _stringLiteralB18E1F73375E8AB88B15CB60CB890BAB9F2E87EF; IL2CPP_EXTERN_C String_t* _stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D; IL2CPP_EXTERN_C String_t* _stringLiteralB6F02FE6CD732AB22BD11BE4254D9546F3BEEE58; IL2CPP_EXTERN_C String_t* _stringLiteralB7C45DD316C68ABF3429C20058C2981C652192F2; IL2CPP_EXTERN_C String_t* _stringLiteralB7FA3B4A2BBE0C82AE2519D75CC2237B2CD6663F; IL2CPP_EXTERN_C String_t* _stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158; IL2CPP_EXTERN_C String_t* _stringLiteralC0E8EAC5A9D528FF5200C5F8484AE09760D5C643; IL2CPP_EXTERN_C String_t* _stringLiteralC3CA1105B0687AB04E8DB2CE95902C75EC2B661A; IL2CPP_EXTERN_C String_t* _stringLiteralC4E721B999A0498B0D3E99AFADED5BDAD3296EC8; IL2CPP_EXTERN_C String_t* _stringLiteralC66F579DCA45D04AA08CC18AEAEC2741A63B494F; IL2CPP_EXTERN_C String_t* _stringLiteralC7A7939E82BEFEF8DDB755713442AA62963F09F8; IL2CPP_EXTERN_C String_t* _stringLiteralCE18B047107AA23D1AA9B2ED32D316148E02655F; IL2CPP_EXTERN_C String_t* _stringLiteralD29B87DC6B1B722C619FAD071A9157749710CDA6; IL2CPP_EXTERN_C String_t* _stringLiteralD2D2F8D3F9F04A081FFBE6B2AF7917BAAADFC052; IL2CPP_EXTERN_C String_t* _stringLiteralD6879FB5AA9F284C75EF7F93BBF4F891A27C2426; IL2CPP_EXTERN_C String_t* _stringLiteralD692E67438BD707EE1906F28C246C0A0A23AE7A5; IL2CPP_EXTERN_C String_t* _stringLiteralD9691C4FD8A1F6B09DB1147CA32B442772FB46A1; IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709; IL2CPP_EXTERN_C String_t* _stringLiteralDD640DD960B4CEB48E82A897FEAB7F64F88777F4; IL2CPP_EXTERN_C String_t* _stringLiteralE1291C4D47635E327ECFE39842BD1A93F58C61A2; IL2CPP_EXTERN_C String_t* _stringLiteralE1356901E9F96E6ACC91632889AE94286AFE4CD4; IL2CPP_EXTERN_C String_t* _stringLiteralE166C9564FBDE461738077E3B1B506525EB6ACCC; IL2CPP_EXTERN_C String_t* _stringLiteralE227F5E574CC64695563B031F22527F1B72B2D46; IL2CPP_EXTERN_C String_t* _stringLiteralE249DDFD90EBFAAEE63734F28F6668A2FB5BD5AF; IL2CPP_EXTERN_C String_t* _stringLiteralE280D065A824A791F8305234D3E093FC9A5A90C7; IL2CPP_EXTERN_C String_t* _stringLiteralEDC12722FE0763003109C7EDBACB6977C0E31132; IL2CPP_EXTERN_C String_t* _stringLiteralEDE169578D0784988295F2BB094D04C3F7C9B832; IL2CPP_EXTERN_C String_t* _stringLiteralF051CD5C431DE8A15EDEFF4A4204FDC27AE3C4F8; IL2CPP_EXTERN_C String_t* _stringLiteralF395EC26F95056DBC29912935F80FD26FEC80D35; IL2CPP_EXTERN_C String_t* _stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7; IL2CPP_EXTERN_C String_t* _stringLiteralF66E15BC243CEA210A303D016AC77253102B8D2F; IL2CPP_EXTERN_C String_t* _stringLiteralF944DCD635F9801F7AC90A407FBC479964DEC024; IL2CPP_EXTERN_C String_t* _stringLiteralFC0CDAC241F1E33895C656656CCAFD1419A41699; IL2CPP_EXTERN_C String_t* _stringLiteralFC52EF0E935F6937D21D16F8AE523FA90242C407; IL2CPP_EXTERN_C const RuntimeMethod* ApplyImportsAction_Compile_m272197992E51853078075BC7677C2AF3B6FECBCA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ApplyTemplatesAction_CompileContent_mF2A6AB5F74E4D87E6FE7FB4C3A3C3A9B70DB75DC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_Empty_TisString_t_m9832B70DF2B936246FE60F75D3D12CB946C39D16_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* AttributeAction_CreateAttributeQName_m538B0C2CDB5AD14582B91100E4150607120BE2B7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackInfo_WriteEnum_m277626A9EC6D2C4713BA8BD4C45174875727F869_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* CallbackInfo_WriteObject_m5D5ED881A0F8AA17A296B0ABFE6063800F096564_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ClassMap_AddMember_m68EC50B8B34647C81D1EFEC1D14083A150A2B49B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EnumMap_GetEnumName_m10DDCE7A6EB14899540AF62430B6133BBAF0CB94_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* EnumMap_GetXmlName_m673884ED5B4566B41AA3D16F95E4F21D9B687621_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* FixupCallbackInfo_FixupMembers_m80AD28B889F16F84A04A47F8895B582A50981E63_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ListMap_FindElement_m47E834380D86F46D9AE887F867CC2D3FCF7D4CC2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mDD6A3DD680DC46B74AEA281B1FAEACDB9D667FA2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Sort_m244E21579BD2CAC0145CA4C0ED2B567C303F04B4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m7E55844F5FC0578B2033A08A213818507B11782A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mFD18F8A7426D9609EE9DC40BA97292BCBE455F7E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m4FAA8281CB4EFFD8B817734351FB3AC20A0CD6F5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_Value_mE2C54C6AE9FC9F05BF44CD9D7D61DC6CD56E3E28_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ReaderCallbackInfo_ReadObject_m9D91DB389AC65B4941DC11773FECC6EEAF180249_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlSerializableMapping__ctor_mF15D3F92AF6B8B5698F26636C0ACCC8EC20CABD2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlSerializationReaderInterpreter_AddListValue_m12D3A8F7A8612DBA89872F736C275807EBB57EA4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlSerializationReaderInterpreter_CopyEnumerableList_mF303386B1B9E939D03B2223788B48647E7E43BA3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlSerializationReaderInterpreter_FillList_m5396649C8AB2996C6C7D25983BDAD9479A3F29D9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlSerializationReaderInterpreter_GetEnumValue_m435EF964CCD4D11623F78F71622983D05FA4C556_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlSerializationReaderInterpreter_ReadClassInstance_m2D516034470771EE80D8AE702D2C74DEAC657AA2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlSerializationReaderInterpreter_ReadEncodedObject_m9CC3C125A75A6B0D04818456CD6C37A5D22453C0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlSerializationReaderInterpreter_ReadListElement_m9DA9C6F2AC8812B8783E85AF2F99A4FE6CB14B14_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlSerializationReaderInterpreter_ReadMembers_m92FC821665FFF506E537CCDA5A70F4B1172E626B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlSerializationReaderInterpreter_ReadObjectElement_mB76E426F3F5A3C4F36AC5563C3A546ECC8B6DF05_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlSerializationReaderInterpreter_ReadObject_m96FED952EBA3659E737FBCED7883FFFB43EF113E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlSerializationReaderInterpreter_ReadRoot_m86237F7D7333192034B74CFAF2BCE5019CCB3F23_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlSerializationReaderInterpreter_ReadXmlSerializableElement_mEE3EDB95A3BF6553D4C677380E0C98CE9A977442_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlSerializationWriterInterpreter_WriteAnyElementContent_m6FA0CBF4CCF97E36DE0A4C4AC4CF557A965A8823_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlSerializationWriterInterpreter_WriteElementMembers_m473C65D604DE952FAC43116BD4A6BB98A2F08645_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlSerializationWriterInterpreter_WriteListContent_m134B4C06A45FA059536931340F9447EEBA4154E7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlSerializationWriterInterpreter_WriteMemberElement_mB29A5B7EFEB7D6FE5CCDEDA132F923E79D6F5F43_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlSerializationWriterInterpreter_WriteRoot_mDF5734ADBE4AE54FE85FF14C378249F22DCDDCAE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlSerializationWriter_WritePotentiallyReferencingElement_mC08268FB0CD13EF92C5F0D92492F9310AB218CFB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlSerializationWriter_WriteStartElement_m88BB6D1190D3E5B8108CBA31ED8ADB5F654AD224_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlSerializationWriter_WriteTypedPrimitive_m9AF71A0CBE191A76BA04DF17501BB08C6C3E0D50_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlSerializationWriter_WriteXmlAttribute_mC90D083F605D89967073970C28C7CF10B6F6706F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlSerializerImplementation_get_Writer_mAF12CDF082924FA5DC0A52A39662B78FCB545001_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlSerializer_CreateReader_mFF7A9328B1A882BAE053F9A97E9BE08CFB6D4A59_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlSerializer_CreateWriter_mF409D1E7D954220C0567920449C9024C6DC9E2CA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlSerializer_Deserialize_mF6A93541E4FA8342534ACCA762F854541EBCD86B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlSerializer_Serialize_m4B83578545703FEF01E48C05DD5EFDF15E301964_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlSerializer_Serialize_mA94F97CFE1760586CA9CFE865B5593DC0ADFCBB0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlSerializer__ctor_m0DAA131F7E266D7999D10E867963DD2C4907C796_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlTypeMapElementInfo_set_IsTextElement_mCE031A8FDAFEACF48094CCDF5C90BBB2A64E2655_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XmlTypeMapElementInfo_set_IsUnnamedAnyElement_m9C07E7FD57FE290F705A2EC1EF3F4F3C36AB1DDD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XslCompiledTransform_Load_mF5EEA8966930B740C537F2059C0F742C7157D5C6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XslTransform_CheckCommand_m03A304F9DE1CC2DF29F707380F54F0F46D3C734D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XslTransform_Load_m10C5F1E0536E482F12B9BA6AEA5CFA21FA11D8C9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XslTransform_Load_m9185E617122331192CA04784A20296E75C182C8F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XsltArgumentList_CheckArgumentNull_mEE9B687CAD14A539F48E7F7B142051C2DF9477A2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeType* Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* RuntimeObject_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* String_t_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* XmlSchemaComplexType_t3C6B94A26B4C70D8780E4158E2A37D31BA88FEE0_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* XmlSchemaProviderAttribute_t913656BFB1429C8144C9EE53E18CC300D1C431AF_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* XmlTypeMapMemberAnyAttribute_t936B5C08A209D3F342575957ACCBF1F7984095F1_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* XmlTypeMapMemberList_t5542A0234B55CC3AD3EDD7B830E7C4603FAAD63E_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 CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB; struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771; struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C; struct Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D; struct MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053; struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918; struct ParameterModifierU5BU5D_t685261AD991B1E6582A0E53243DEE3B745E13364; struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248; struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB; struct XmlQualifiedNameU5BU5D_t95C376ACDEA9261B842F45A4C4DF9ABEE0FB35D1; struct XmlSchemaU5BU5D_t5DB5D05598D599A3F21C7D3D9A9F3F000AD6A4D3; struct XmlTypeMapMemberAttributeU5BU5D_tD4F816722F17A6B481400D6F933E68A38D97EB83; struct EnumMapMemberU5BU5D_t9142B305BA0F44DC126D50BA43D74FAA86A7D520; 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.EmptyArray`1 struct EmptyArray_1_tDF0DD7256B115243AA6BD5558417387A734240EE : public RuntimeObject { }; // 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; }; // System.Collections.Generic.List`1 struct List_1_t4245B07839A68A90F431D9175D30BD836E9E63F8 : public RuntimeObject { // T[] System.Collections.Generic.List`1::_items SortKeyU5BU5D_tB112E97AD4D761FB44FADBA5DB0BC56BCD0FDC11* ____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; }; // System.Collections.Generic.List`1 struct List_1_t34BD5FC03C0DFF68F2817059E6FD410AD98DF02A : public RuntimeObject { // T[] System.Collections.Generic.List`1::_items TheQueryU5BU5D_t5289159F17230304938F4DEE4091BD1C2E0CFF02* ____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; }; // System.Xml.Xsl.XsltOld.Action struct Action_tEDC91260C2F42125F4520C9EA2C57E7BFF7A8F14 : public RuntimeObject { }; // System.Xml.Xsl.XsltOld.ActionFrame struct ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F : public RuntimeObject { // System.Int32 System.Xml.Xsl.XsltOld.ActionFrame::state int32_t ___state_0; // System.Int32 System.Xml.Xsl.XsltOld.ActionFrame::counter int32_t ___counter_1; // System.Object[] System.Xml.Xsl.XsltOld.ActionFrame::variables ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___variables_2; // System.Collections.Hashtable System.Xml.Xsl.XsltOld.ActionFrame::withParams Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___withParams_3; // System.Xml.Xsl.XsltOld.Action System.Xml.Xsl.XsltOld.ActionFrame::action Action_tEDC91260C2F42125F4520C9EA2C57E7BFF7A8F14* ___action_4; // System.Xml.Xsl.XsltOld.ActionFrame System.Xml.Xsl.XsltOld.ActionFrame::container ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* ___container_5; // System.Int32 System.Xml.Xsl.XsltOld.ActionFrame::currentAction int32_t ___currentAction_6; // System.Xml.XPath.XPathNodeIterator System.Xml.Xsl.XsltOld.ActionFrame::nodeSet XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* ___nodeSet_7; // System.Xml.XPath.XPathNodeIterator System.Xml.Xsl.XsltOld.ActionFrame::newNodeSet XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* ___newNodeSet_8; // System.Xml.Xsl.XsltOld.PrefixQName System.Xml.Xsl.XsltOld.ActionFrame::calulatedName PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95* ___calulatedName_9; // System.String System.Xml.Xsl.XsltOld.ActionFrame::storedOutput String_t* ___storedOutput_10; }; // System.Collections.ArrayList struct ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A : public RuntimeObject { // System.Object[] System.Collections.ArrayList::_items ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____items_0; // System.Int32 System.Collections.ArrayList::_size int32_t ____size_1; // System.Int32 System.Collections.ArrayList::_version int32_t ____version_2; // System.Object System.Collections.ArrayList::_syncRoot RuntimeObject* ____syncRoot_3; }; // System.Attribute struct Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA : public RuntimeObject { }; // System.Xml.Xsl.XsltOld.Avt struct Avt_t68EC7ADCD01911FB2B2570645C28DAF9CA8DDE75 : public RuntimeObject { // System.String System.Xml.Xsl.XsltOld.Avt::constAvt String_t* ___constAvt_0; // System.Xml.Xsl.XsltOld.TextEvent[] System.Xml.Xsl.XsltOld.Avt::events TextEventU5BU5D_t3E5CE6B3A47084845C984C04863FC4F5B9F45564* ___events_1; }; // System.Reflection.Binder struct Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235 : public RuntimeObject { }; // System.Xml.Xsl.XsltOld.Compiler struct Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5 : public RuntimeObject { // System.Text.StringBuilder System.Xml.Xsl.XsltOld.Compiler::AvtStringBuilder StringBuilder_t* ___AvtStringBuilder_0; // System.Int32 System.Xml.Xsl.XsltOld.Compiler::stylesheetid int32_t ___stylesheetid_1; // System.Xml.Xsl.XsltOld.InputScope System.Xml.Xsl.XsltOld.Compiler::rootScope InputScope_t1CD4D01DDB5D730231AF91A52C601675C5DFF345* ___rootScope_2; // System.Xml.XmlResolver System.Xml.Xsl.XsltOld.Compiler::xmlResolver XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___xmlResolver_3; // System.Xml.Xsl.XsltOld.TemplateBaseAction System.Xml.Xsl.XsltOld.Compiler::currentTemplate TemplateBaseAction_tBDAFC1750EBFC75C02FD71BFFECDE6268C71E47C* ___currentTemplate_4; // System.Xml.XmlQualifiedName System.Xml.Xsl.XsltOld.Compiler::currentMode XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___currentMode_5; // System.Collections.Hashtable System.Xml.Xsl.XsltOld.Compiler::globalNamespaceAliasTable Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___globalNamespaceAliasTable_6; // System.Collections.Stack System.Xml.Xsl.XsltOld.Compiler::stylesheets Stack_tBD60B0E3125691193FBFC8DA8FFDD6630CB2CB47* ___stylesheets_7; // System.Collections.Specialized.HybridDictionary System.Xml.Xsl.XsltOld.Compiler::documentURIs HybridDictionary_t017B3B5B09423C610124C6B4F84387B156F46DDD* ___documentURIs_8; // System.Xml.Xsl.XsltOld.NavigatorInput System.Xml.Xsl.XsltOld.Compiler::input NavigatorInput_t320297C3DA5C438B7B111C375918046FAAE8F8A6* ___input_9; // System.Xml.Xsl.Xslt.KeywordsTable System.Xml.Xsl.XsltOld.Compiler::atoms KeywordsTable_t0E219DF02F8110A89E6F0FA77F351B312037EF83* ___atoms_10; // System.Xml.Xsl.XsltOld.InputScopeManager System.Xml.Xsl.XsltOld.Compiler::scopeManager InputScopeManager_tF27B9679D4E5F5A5D5AA79DDC2C74F2A51D844E4* ___scopeManager_11; // System.Xml.Xsl.XsltOld.Stylesheet System.Xml.Xsl.XsltOld.Compiler::stylesheet Stylesheet_t877F8405A546EAB0A26CE0F54A7F48533686E5AB* ___stylesheet_12; // System.Xml.Xsl.XsltOld.Stylesheet System.Xml.Xsl.XsltOld.Compiler::rootStylesheet Stylesheet_t877F8405A546EAB0A26CE0F54A7F48533686E5AB* ___rootStylesheet_13; // System.Xml.Xsl.XsltOld.RootAction System.Xml.Xsl.XsltOld.Compiler::rootAction RootAction_t94281C7ECEF5D1837C8264D38E4486DF137E7035* ___rootAction_14; // System.Collections.Generic.List`1 System.Xml.Xsl.XsltOld.Compiler::queryStore List_1_t34BD5FC03C0DFF68F2817059E6FD410AD98DF02A* ___queryStore_15; // MS.Internal.Xml.XPath.QueryBuilder System.Xml.Xsl.XsltOld.Compiler::queryBuilder QueryBuilder_tB7F29B25B259C464F8A75696941BA1CB02F8A0F7* ___queryBuilder_16; // System.Int32 System.Xml.Xsl.XsltOld.Compiler::rtfCount int32_t ___rtfCount_17; // System.Boolean System.Xml.Xsl.XsltOld.Compiler::AllowBuiltInMode bool ___AllowBuiltInMode_18; // System.Collections.Hashtable[] System.Xml.Xsl.XsltOld.Compiler::_typeDeclsByLang HashtableU5BU5D_t61BD3CFB22E6F272300088C74EF40A25E5115FA7* ____typeDeclsByLang_20; // System.Collections.ArrayList System.Xml.Xsl.XsltOld.Compiler::scriptFiles ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ___scriptFiles_21; }; // 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; }; // 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 { }; // System.EventArgs struct EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377 : public RuntimeObject { }; // System.Security.Policy.Evidence struct Evidence_t890BA14A138D1935B7A361CA3FA55484D66B2F64 : public RuntimeObject { // System.Boolean System.Security.Policy.Evidence::_locked bool ____locked_0; // System.Collections.ArrayList System.Security.Policy.Evidence::hostEvidenceList ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ___hostEvidenceList_1; // System.Collections.ArrayList System.Security.Policy.Evidence::assemblyEvidenceList ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ___assemblyEvidenceList_2; }; // System.Collections.Hashtable struct Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D : public RuntimeObject { // System.Collections.Hashtable/bucket[] System.Collections.Hashtable::_buckets bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* ____buckets_10; // System.Int32 System.Collections.Hashtable::_count int32_t ____count_11; // System.Int32 System.Collections.Hashtable::_occupancy int32_t ____occupancy_12; // System.Int32 System.Collections.Hashtable::_loadsize int32_t ____loadsize_13; // System.Single System.Collections.Hashtable::_loadFactor float ____loadFactor_14; // System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Hashtable::_version int32_t ____version_15; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Hashtable::_isWriterInProgress bool ____isWriterInProgress_16; // System.Collections.ICollection System.Collections.Hashtable::_keys RuntimeObject* ____keys_17; // System.Collections.ICollection System.Collections.Hashtable::_values RuntimeObject* ____values_18; // System.Collections.IEqualityComparer System.Collections.Hashtable::_keycomparer RuntimeObject* ____keycomparer_19; // System.Object System.Collections.Hashtable::_syncRoot RuntimeObject* ____syncRoot_20; }; // System.Xml.Xsl.XsltOld.InputScopeManager struct InputScopeManager_tF27B9679D4E5F5A5D5AA79DDC2C74F2A51D844E4 : public RuntimeObject { // System.Xml.Xsl.XsltOld.InputScope System.Xml.Xsl.XsltOld.InputScopeManager::scopeStack InputScope_t1CD4D01DDB5D730231AF91A52C601675C5DFF345* ___scopeStack_0; // System.String System.Xml.Xsl.XsltOld.InputScopeManager::defaultNS String_t* ___defaultNS_1; // System.Xml.XPath.XPathNavigator System.Xml.Xsl.XsltOld.InputScopeManager::navigator XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* ___navigator_2; }; // System.Xml.Xsl.Xslt.KeywordsTable struct KeywordsTable_t0E219DF02F8110A89E6F0FA77F351B312037EF83 : public RuntimeObject { // System.Xml.XmlNameTable System.Xml.Xsl.Xslt.KeywordsTable::NameTable XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___NameTable_0; // System.String System.Xml.Xsl.Xslt.KeywordsTable::AnalyzeString String_t* ___AnalyzeString_1; // System.String System.Xml.Xsl.Xslt.KeywordsTable::ApplyImports String_t* ___ApplyImports_2; // System.String System.Xml.Xsl.Xslt.KeywordsTable::ApplyTemplates String_t* ___ApplyTemplates_3; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Assembly String_t* ___Assembly_4; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Attribute String_t* ___Attribute_5; // System.String System.Xml.Xsl.Xslt.KeywordsTable::AttributeSet String_t* ___AttributeSet_6; // System.String System.Xml.Xsl.Xslt.KeywordsTable::CallTemplate String_t* ___CallTemplate_7; // System.String System.Xml.Xsl.Xslt.KeywordsTable::CaseOrder String_t* ___CaseOrder_8; // System.String System.Xml.Xsl.Xslt.KeywordsTable::CDataSectionElements String_t* ___CDataSectionElements_9; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Character String_t* ___Character_10; // System.String System.Xml.Xsl.Xslt.KeywordsTable::CharacterMap String_t* ___CharacterMap_11; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Choose String_t* ___Choose_12; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Comment String_t* ___Comment_13; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Copy String_t* ___Copy_14; // System.String System.Xml.Xsl.Xslt.KeywordsTable::CopyOf String_t* ___CopyOf_15; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Count String_t* ___Count_16; // System.String System.Xml.Xsl.Xslt.KeywordsTable::DataType String_t* ___DataType_17; // System.String System.Xml.Xsl.Xslt.KeywordsTable::DecimalFormat String_t* ___DecimalFormat_18; // System.String System.Xml.Xsl.Xslt.KeywordsTable::DecimalSeparator String_t* ___DecimalSeparator_19; // System.String System.Xml.Xsl.Xslt.KeywordsTable::DefaultCollation String_t* ___DefaultCollation_20; // System.String System.Xml.Xsl.Xslt.KeywordsTable::DefaultValidation String_t* ___DefaultValidation_21; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Digit String_t* ___Digit_22; // System.String System.Xml.Xsl.Xslt.KeywordsTable::DisableOutputEscaping String_t* ___DisableOutputEscaping_23; // System.String System.Xml.Xsl.Xslt.KeywordsTable::DocTypePublic String_t* ___DocTypePublic_24; // System.String System.Xml.Xsl.Xslt.KeywordsTable::DocTypeSystem String_t* ___DocTypeSystem_25; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Document String_t* ___Document_26; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Element String_t* ___Element_27; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Elements String_t* ___Elements_28; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Encoding String_t* ___Encoding_29; // System.String System.Xml.Xsl.Xslt.KeywordsTable::ExcludeResultPrefixes String_t* ___ExcludeResultPrefixes_30; // System.String System.Xml.Xsl.Xslt.KeywordsTable::ExtensionElementPrefixes String_t* ___ExtensionElementPrefixes_31; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Fallback String_t* ___Fallback_32; // System.String System.Xml.Xsl.Xslt.KeywordsTable::ForEach String_t* ___ForEach_33; // System.String System.Xml.Xsl.Xslt.KeywordsTable::ForEachGroup String_t* ___ForEachGroup_34; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Format String_t* ___Format_35; // System.String System.Xml.Xsl.Xslt.KeywordsTable::From String_t* ___From_36; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Function String_t* ___Function_37; // System.String System.Xml.Xsl.Xslt.KeywordsTable::GroupingSeparator String_t* ___GroupingSeparator_38; // System.String System.Xml.Xsl.Xslt.KeywordsTable::GroupingSize String_t* ___GroupingSize_39; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Href String_t* ___Href_40; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Id String_t* ___Id_41; // System.String System.Xml.Xsl.Xslt.KeywordsTable::If String_t* ___If_42; // System.String System.Xml.Xsl.Xslt.KeywordsTable::ImplementsPrefix String_t* ___ImplementsPrefix_43; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Import String_t* ___Import_44; // System.String System.Xml.Xsl.Xslt.KeywordsTable::ImportSchema String_t* ___ImportSchema_45; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Include String_t* ___Include_46; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Indent String_t* ___Indent_47; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Infinity String_t* ___Infinity_48; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Key String_t* ___Key_49; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Lang String_t* ___Lang_50; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Language String_t* ___Language_51; // System.String System.Xml.Xsl.Xslt.KeywordsTable::LetterValue String_t* ___LetterValue_52; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Level String_t* ___Level_53; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Match String_t* ___Match_54; // System.String System.Xml.Xsl.Xslt.KeywordsTable::MatchingSubstring String_t* ___MatchingSubstring_55; // System.String System.Xml.Xsl.Xslt.KeywordsTable::MediaType String_t* ___MediaType_56; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Message String_t* ___Message_57; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Method String_t* ___Method_58; // System.String System.Xml.Xsl.Xslt.KeywordsTable::MinusSign String_t* ___MinusSign_59; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Mode String_t* ___Mode_60; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Name String_t* ___Name_61; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Namespace String_t* ___Namespace_62; // System.String System.Xml.Xsl.Xslt.KeywordsTable::NamespaceAlias String_t* ___NamespaceAlias_63; // System.String System.Xml.Xsl.Xslt.KeywordsTable::NaN String_t* ___NaN_64; // System.String System.Xml.Xsl.Xslt.KeywordsTable::NextMatch String_t* ___NextMatch_65; // System.String System.Xml.Xsl.Xslt.KeywordsTable::NonMatchingSubstring String_t* ___NonMatchingSubstring_66; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Number String_t* ___Number_67; // System.String System.Xml.Xsl.Xslt.KeywordsTable::OmitXmlDeclaration String_t* ___OmitXmlDeclaration_68; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Order String_t* ___Order_69; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Otherwise String_t* ___Otherwise_70; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Output String_t* ___Output_71; // System.String System.Xml.Xsl.Xslt.KeywordsTable::OutputCharacter String_t* ___OutputCharacter_72; // System.String System.Xml.Xsl.Xslt.KeywordsTable::OutputVersion String_t* ___OutputVersion_73; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Param String_t* ___Param_74; // System.String System.Xml.Xsl.Xslt.KeywordsTable::PatternSeparator String_t* ___PatternSeparator_75; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Percent String_t* ___Percent_76; // System.String System.Xml.Xsl.Xslt.KeywordsTable::PerformSort String_t* ___PerformSort_77; // System.String System.Xml.Xsl.Xslt.KeywordsTable::PerMille String_t* ___PerMille_78; // System.String System.Xml.Xsl.Xslt.KeywordsTable::PreserveSpace String_t* ___PreserveSpace_79; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Priority String_t* ___Priority_80; // System.String System.Xml.Xsl.Xslt.KeywordsTable::ProcessingInstruction String_t* ___ProcessingInstruction_81; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Required String_t* ___Required_82; // System.String System.Xml.Xsl.Xslt.KeywordsTable::ResultDocument String_t* ___ResultDocument_83; // System.String System.Xml.Xsl.Xslt.KeywordsTable::ResultPrefix String_t* ___ResultPrefix_84; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Script String_t* ___Script_85; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Select String_t* ___Select_86; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Separator String_t* ___Separator_87; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Sequence String_t* ___Sequence_88; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Sort String_t* ___Sort_89; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Space String_t* ___Space_90; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Standalone String_t* ___Standalone_91; // System.String System.Xml.Xsl.Xslt.KeywordsTable::StripSpace String_t* ___StripSpace_92; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Stylesheet String_t* ___Stylesheet_93; // System.String System.Xml.Xsl.Xslt.KeywordsTable::StylesheetPrefix String_t* ___StylesheetPrefix_94; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Template String_t* ___Template_95; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Terminate String_t* ___Terminate_96; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Test String_t* ___Test_97; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Text String_t* ___Text_98; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Transform String_t* ___Transform_99; // System.String System.Xml.Xsl.Xslt.KeywordsTable::UrnMsxsl String_t* ___UrnMsxsl_100; // System.String System.Xml.Xsl.Xslt.KeywordsTable::UriXml String_t* ___UriXml_101; // System.String System.Xml.Xsl.Xslt.KeywordsTable::UriXsl String_t* ___UriXsl_102; // System.String System.Xml.Xsl.Xslt.KeywordsTable::UriWdXsl String_t* ___UriWdXsl_103; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Use String_t* ___Use_104; // System.String System.Xml.Xsl.Xslt.KeywordsTable::UseAttributeSets String_t* ___UseAttributeSets_105; // System.String System.Xml.Xsl.Xslt.KeywordsTable::UseWhen String_t* ___UseWhen_106; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Using String_t* ___Using_107; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Value String_t* ___Value_108; // System.String System.Xml.Xsl.Xslt.KeywordsTable::ValueOf String_t* ___ValueOf_109; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Variable String_t* ___Variable_110; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Version String_t* ___Version_111; // System.String System.Xml.Xsl.Xslt.KeywordsTable::When String_t* ___When_112; // System.String System.Xml.Xsl.Xslt.KeywordsTable::WithParam String_t* ___WithParam_113; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Xml String_t* ___Xml_114; // System.String System.Xml.Xsl.Xslt.KeywordsTable::Xmlns String_t* ___Xmlns_115; // System.String System.Xml.Xsl.Xslt.KeywordsTable::XPathDefaultNamespace String_t* ___XPathDefaultNamespace_116; // System.String System.Xml.Xsl.Xslt.KeywordsTable::ZeroDigit String_t* ___ZeroDigit_117; }; // 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.Xml.Xsl.XsltOld.NavigatorInput struct NavigatorInput_t320297C3DA5C438B7B111C375918046FAAE8F8A6 : public RuntimeObject { // System.Xml.XPath.XPathNavigator System.Xml.Xsl.XsltOld.NavigatorInput::_Navigator XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* ____Navigator_0; // System.Xml.PositionInfo System.Xml.Xsl.XsltOld.NavigatorInput::_PositionInfo PositionInfo_t1695F015DE0C183D3B4CE5A1562AD8A8A373F5B5* ____PositionInfo_1; // System.Xml.Xsl.XsltOld.InputScopeManager System.Xml.Xsl.XsltOld.NavigatorInput::_Manager InputScopeManager_tF27B9679D4E5F5A5D5AA79DDC2C74F2A51D844E4* ____Manager_2; // System.Xml.Xsl.XsltOld.NavigatorInput System.Xml.Xsl.XsltOld.NavigatorInput::_Next NavigatorInput_t320297C3DA5C438B7B111C375918046FAAE8F8A6* ____Next_3; // System.String System.Xml.Xsl.XsltOld.NavigatorInput::_Href String_t* ____Href_4; // System.Xml.Xsl.Xslt.KeywordsTable System.Xml.Xsl.XsltOld.NavigatorInput::_Atoms KeywordsTable_t0E219DF02F8110A89E6F0FA77F351B312037EF83* ____Atoms_5; }; // System.Xml.Xsl.NoOperationDebugger struct NoOperationDebugger_t40687C8E2388D9450605E42A54D1793422EEDC9E : public RuntimeObject { }; // System.Runtime.Serialization.ObjectIDGenerator struct ObjectIDGenerator_tB34B9C0F2DDAED17FE8AB8D54462528D37DE101B : public RuntimeObject { // System.Int32 System.Runtime.Serialization.ObjectIDGenerator::m_currentCount int32_t ___m_currentCount_0; // System.Int32 System.Runtime.Serialization.ObjectIDGenerator::m_currentSize int32_t ___m_currentSize_1; // System.Int64[] System.Runtime.Serialization.ObjectIDGenerator::m_ids Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D* ___m_ids_2; // System.Object[] System.Runtime.Serialization.ObjectIDGenerator::m_objs ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___m_objs_3; }; // System.Xml.Serialization.ObjectMap struct ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0 : public RuntimeObject { }; // System.Xml.Xsl.XsltOld.PrefixQName struct PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95 : public RuntimeObject { // System.String System.Xml.Xsl.XsltOld.PrefixQName::Prefix String_t* ___Prefix_0; // System.String System.Xml.Xsl.XsltOld.PrefixQName::Name String_t* ___Name_1; // System.String System.Xml.Xsl.XsltOld.PrefixQName::Namespace String_t* ___Namespace_2; }; // System.Xml.Xsl.XsltOld.Processor struct Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83 : public RuntimeObject { // System.Xml.Xsl.XsltOld.Processor/ExecResult System.Xml.Xsl.XsltOld.Processor::execResult int32_t ___execResult_0; // System.Xml.Xsl.XsltOld.Stylesheet System.Xml.Xsl.XsltOld.Processor::stylesheet Stylesheet_t877F8405A546EAB0A26CE0F54A7F48533686E5AB* ___stylesheet_1; // System.Xml.Xsl.XsltOld.RootAction System.Xml.Xsl.XsltOld.Processor::rootAction RootAction_t94281C7ECEF5D1837C8264D38E4486DF137E7035* ___rootAction_2; // System.Xml.Xsl.XsltOld.Key[] System.Xml.Xsl.XsltOld.Processor::keyList KeyU5BU5D_t0EB4125A5A438149D047BF78630D9040D6A69B61* ___keyList_3; // System.Collections.Generic.List`1 System.Xml.Xsl.XsltOld.Processor::queryStore List_1_t34BD5FC03C0DFF68F2817059E6FD410AD98DF02A* ___queryStore_4; // System.Security.PermissionSet System.Xml.Xsl.XsltOld.Processor::permissions PermissionSet_t1E1A3526A8CB8CF06B47C292D349FC06F93A0240* ___permissions_5; // System.Xml.XPath.XPathNavigator System.Xml.Xsl.XsltOld.Processor::document XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* ___document_6; // System.Xml.HWStack System.Xml.Xsl.XsltOld.Processor::actionStack HWStack_tD40EE1D12E709BECF016469F161DC3071C020CC5* ___actionStack_7; // System.Xml.HWStack System.Xml.Xsl.XsltOld.Processor::debuggerStack HWStack_tD40EE1D12E709BECF016469F161DC3071C020CC5* ___debuggerStack_8; // System.Text.StringBuilder System.Xml.Xsl.XsltOld.Processor::sharedStringBuilder StringBuilder_t* ___sharedStringBuilder_9; // System.Int32 System.Xml.Xsl.XsltOld.Processor::ignoreLevel int32_t ___ignoreLevel_10; // System.Xml.Xsl.XsltOld.StateMachine System.Xml.Xsl.XsltOld.Processor::xsm StateMachine_tFA8FE476688C85C285207AA826CFA0382EBDA371* ___xsm_11; // System.Xml.Xsl.XsltOld.RecordBuilder System.Xml.Xsl.XsltOld.Processor::builder RecordBuilder_t6C3BF4D66C8AE63A6D0D95E4E8B4D691974F802C* ___builder_12; // System.Xml.Xsl.XsltOld.XsltOutput System.Xml.Xsl.XsltOld.Processor::output XsltOutput_t135AED70B0AC66A3E3BCCC462AD7B0B35FCC7124* ___output_13; // System.Xml.XmlNameTable System.Xml.Xsl.XsltOld.Processor::nameTable XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nameTable_14; // System.Xml.XmlResolver System.Xml.Xsl.XsltOld.Processor::resolver XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___resolver_15; // System.Xml.Xsl.XsltArgumentList System.Xml.Xsl.XsltOld.Processor::args XsltArgumentList_tCB3312D17FD0D83C20E32BB7CE76B8A280A209BF* ___args_16; // System.Collections.Hashtable System.Xml.Xsl.XsltOld.Processor::scriptExtensions Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___scriptExtensions_17; // System.Collections.ArrayList System.Xml.Xsl.XsltOld.Processor::numberList ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ___numberList_18; // System.Xml.Xsl.XsltOld.TemplateLookupAction System.Xml.Xsl.XsltOld.Processor::templateLookup TemplateLookupAction_t85743C2BA9FBCD1DBCD0394D84098DDC9A982FEE* ___templateLookup_19; // System.Xml.Xsl.XsltOld.Debugger.IXsltDebugger System.Xml.Xsl.XsltOld.Processor::debugger RuntimeObject* ___debugger_20; // MS.Internal.Xml.XPath.Query[] System.Xml.Xsl.XsltOld.Processor::queryList QueryU5BU5D_t7ED57A55B43C27603E54BC882A3906317539AFBE* ___queryList_21; // System.Collections.ArrayList System.Xml.Xsl.XsltOld.Processor::sortArray ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ___sortArray_22; // System.Collections.Hashtable System.Xml.Xsl.XsltOld.Processor::documentCache Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___documentCache_23; // System.Xml.Xsl.XsltOld.XsltCompileContext System.Xml.Xsl.XsltOld.Processor::valueOfContext XsltCompileContext_tE9BF01FE32A472FCECD52239962A2BC866719A46* ___valueOfContext_24; // System.Xml.Xsl.XsltOld.XsltCompileContext System.Xml.Xsl.XsltOld.Processor::matchesContext XsltCompileContext_tE9BF01FE32A472FCECD52239962A2BC866719A46* ___matchesContext_25; }; // System.Collections.Queue struct Queue_t82FD2BE12D138AF4D22C801CB5044DAEC2BA66BC : public RuntimeObject { // System.Object[] System.Collections.Queue::_array ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____array_0; // System.Int32 System.Collections.Queue::_head int32_t ____head_1; // System.Int32 System.Collections.Queue::_tail int32_t ____tail_2; // System.Int32 System.Collections.Queue::_size int32_t ____size_3; // System.Int32 System.Collections.Queue::_growFactor int32_t ____growFactor_4; // System.Int32 System.Collections.Queue::_version int32_t ____version_5; // System.Object System.Collections.Queue::_syncRoot RuntimeObject* ____syncRoot_6; }; // 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.Runtime.Serialization.SerializationInfoEnumerator struct SerializationInfoEnumerator_t810DE600E5F6AA4F2B66A7F56074277CCD8F1540 : public RuntimeObject { // System.String[] System.Runtime.Serialization.SerializationInfoEnumerator::_members StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ____members_0; // System.Object[] System.Runtime.Serialization.SerializationInfoEnumerator::_data ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____data_1; // System.Type[] System.Runtime.Serialization.SerializationInfoEnumerator::_types TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ____types_2; // System.Int32 System.Runtime.Serialization.SerializationInfoEnumerator::_numItems int32_t ____numItems_3; // System.Int32 System.Runtime.Serialization.SerializationInfoEnumerator::_currItem int32_t ____currItem_4; // System.Boolean System.Runtime.Serialization.SerializationInfoEnumerator::_current bool ____current_5; }; // System.Xml.Serialization.SerializationSource struct SerializationSource_t2F3A53A0FFC7BF8994CF332961FD3C0671E4A58C : public RuntimeObject { // System.Type[] System.Xml.Serialization.SerializationSource::includedTypes TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___includedTypes_0; // System.String System.Xml.Serialization.SerializationSource::namspace String_t* ___namspace_1; // System.Boolean System.Xml.Serialization.SerializationSource::canBeGenerated bool ___canBeGenerated_2; }; // System.Xml.Xsl.XsltOld.Sort struct Sort_tF34CA4FAE0CA6224605904970FB0F7DD8F2C5D82 : public RuntimeObject { // System.Int32 System.Xml.Xsl.XsltOld.Sort::select int32_t ___select_0; // System.String System.Xml.Xsl.XsltOld.Sort::lang String_t* ___lang_1; // System.Xml.XPath.XmlDataType System.Xml.Xsl.XsltOld.Sort::dataType int32_t ___dataType_2; // System.Xml.XPath.XmlSortOrder System.Xml.Xsl.XsltOld.Sort::order int32_t ___order_3; // System.Xml.XPath.XmlCaseOrder System.Xml.Xsl.XsltOld.Sort::caseOrder int32_t ___caseOrder_4; }; // MS.Internal.Xml.XPath.SortKey struct SortKey_tE0F5DE6818DC859C42F339AE7E95298553919EED : public RuntimeObject { // System.Int32 MS.Internal.Xml.XPath.SortKey::_numKeys int32_t ____numKeys_0; // System.Object[] MS.Internal.Xml.XPath.SortKey::_keys ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____keys_1; // System.Int32 MS.Internal.Xml.XPath.SortKey::_originalPosition int32_t ____originalPosition_2; // System.Xml.XPath.XPathNavigator MS.Internal.Xml.XPath.SortKey::_node XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* ____node_3; }; // System.String struct String_t : public RuntimeObject { // System.Int32 System.String::_stringLength int32_t ____stringLength_4; // System.Char System.String::_firstChar Il2CppChar ____firstChar_5; }; // 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.Xml.Xsl.XsltOld.Stylesheet struct Stylesheet_t877F8405A546EAB0A26CE0F54A7F48533686E5AB : public RuntimeObject { // System.Collections.ArrayList System.Xml.Xsl.XsltOld.Stylesheet::imports ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ___imports_0; // System.Collections.Hashtable System.Xml.Xsl.XsltOld.Stylesheet::modeManagers Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___modeManagers_1; // System.Collections.Hashtable System.Xml.Xsl.XsltOld.Stylesheet::templateNameTable Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___templateNameTable_2; // System.Collections.Hashtable System.Xml.Xsl.XsltOld.Stylesheet::attributeSetTable Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___attributeSetTable_3; // System.Int32 System.Xml.Xsl.XsltOld.Stylesheet::templateCount int32_t ___templateCount_4; // System.Collections.Hashtable System.Xml.Xsl.XsltOld.Stylesheet::queryKeyTable Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___queryKeyTable_5; // System.Collections.ArrayList System.Xml.Xsl.XsltOld.Stylesheet::whitespaceList ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ___whitespaceList_6; // System.Boolean System.Xml.Xsl.XsltOld.Stylesheet::whitespace bool ___whitespace_7; // System.Collections.Hashtable System.Xml.Xsl.XsltOld.Stylesheet::scriptObjectTypes Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___scriptObjectTypes_8; // System.Xml.Xsl.XsltOld.TemplateManager System.Xml.Xsl.XsltOld.Stylesheet::templates TemplateManager_t5A258692D0F8E09652410A4E110CA218EE041320* ___templates_9; }; // System.Xml.Serialization.TypeData struct TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704 : public RuntimeObject { // System.Type System.Xml.Serialization.TypeData::type Type_t* ___type_0; // System.String System.Xml.Serialization.TypeData::elementName String_t* ___elementName_1; // System.Xml.Serialization.SchemaTypes System.Xml.Serialization.TypeData::sType int32_t ___sType_2; // System.Type System.Xml.Serialization.TypeData::listItemType Type_t* ___listItemType_3; // System.String System.Xml.Serialization.TypeData::typeName String_t* ___typeName_4; // System.String System.Xml.Serialization.TypeData::fullTypeName String_t* ___fullTypeName_5; // System.Xml.Serialization.TypeData System.Xml.Serialization.TypeData::listItemTypeData TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___listItemTypeData_6; // System.Xml.Serialization.TypeData System.Xml.Serialization.TypeData::mappedType TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___mappedType_7; // System.Xml.Schema.XmlSchemaPatternFacet System.Xml.Serialization.TypeData::facet XmlSchemaPatternFacet_t1F025AEBB84DAD3516F8766AE831927EEFF4A927* ___facet_8; // System.Reflection.MethodInfo System.Xml.Serialization.TypeData::typeConvertor MethodInfo_t* ___typeConvertor_9; // System.Boolean System.Xml.Serialization.TypeData::hasPublicConstructor bool ___hasPublicConstructor_10; // System.Boolean System.Xml.Serialization.TypeData::nullableOverride bool ___nullableOverride_11; }; // System.Uri struct Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E : public RuntimeObject { // System.String System.Uri::m_String String_t* ___m_String_16; // System.String System.Uri::m_originalUnicodeString String_t* ___m_originalUnicodeString_17; // System.UriParser System.Uri::m_Syntax UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* ___m_Syntax_18; // System.String System.Uri::m_DnsSafeHost String_t* ___m_DnsSafeHost_19; // System.Uri/Flags System.Uri::m_Flags uint64_t ___m_Flags_20; // System.Uri/UriInfo System.Uri::m_Info UriInfo_t5F91F77A93545DDDA6BB24A609BAF5E232CC1A09* ___m_Info_21; // System.Boolean System.Uri::m_iriParsing bool ___m_iriParsing_22; }; // 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 { }; // MS.Internal.Xml.XPath.XPathComparerHelper struct XPathComparerHelper_t9ADF0F2ABF74B2DD147EB95DFE63769278CA8C3D : public RuntimeObject { // System.Xml.XPath.XmlSortOrder MS.Internal.Xml.XPath.XPathComparerHelper::_order int32_t ____order_0; // System.Xml.XPath.XmlCaseOrder MS.Internal.Xml.XPath.XPathComparerHelper::_caseOrder int32_t ____caseOrder_1; // System.Globalization.CultureInfo MS.Internal.Xml.XPath.XPathComparerHelper::_cinfo CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ____cinfo_2; // System.Xml.XPath.XmlDataType MS.Internal.Xml.XPath.XPathComparerHelper::_dataType int32_t ____dataType_3; }; // System.Xml.XPath.XPathDocument struct XPathDocument_tE736154E9BF3ACCEB884DD1EFBADB58BD56DF5EE : public RuntimeObject { // MS.Internal.Xml.Cache.XPathNode[] System.Xml.XPath.XPathDocument::pageText XPathNodeU5BU5D_tABD91BA95C61EF982E9FB7D2386FCE4C39F8B90C* ___pageText_0; // MS.Internal.Xml.Cache.XPathNode[] System.Xml.XPath.XPathDocument::pageRoot XPathNodeU5BU5D_tABD91BA95C61EF982E9FB7D2386FCE4C39F8B90C* ___pageRoot_1; // MS.Internal.Xml.Cache.XPathNode[] System.Xml.XPath.XPathDocument::pageXmlNmsp XPathNodeU5BU5D_tABD91BA95C61EF982E9FB7D2386FCE4C39F8B90C* ___pageXmlNmsp_2; // System.Int32 System.Xml.XPath.XPathDocument::idxText int32_t ___idxText_3; // System.Int32 System.Xml.XPath.XPathDocument::idxRoot int32_t ___idxRoot_4; // System.Int32 System.Xml.XPath.XPathDocument::idxXmlNmsp int32_t ___idxXmlNmsp_5; // System.Xml.XmlNameTable System.Xml.XPath.XPathDocument::nameTable XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nameTable_6; // System.Boolean System.Xml.XPath.XPathDocument::hasLineInfo bool ___hasLineInfo_7; // System.Collections.Generic.Dictionary`2 System.Xml.XPath.XPathDocument::mapNmsp Dictionary_2_t51690F8426AE5C5CDFF18B8E1108DED306E49456* ___mapNmsp_8; // System.Collections.Generic.Dictionary`2 System.Xml.XPath.XPathDocument::idValueMap Dictionary_2_tC299E270AFD30A7EBE4C023B28AA11136A2EC04E* ___idValueMap_9; }; // System.Xml.XPath.XPathItem struct XPathItem_tF0126CC493F2BFDDDFB5B0D05EAE05E8EF8AE1B7 : public RuntimeObject { }; // System.Xml.XPath.XPathNodeIterator struct XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B : public RuntimeObject { // System.Int32 System.Xml.XPath.XPathNodeIterator::count int32_t ___count_0; }; // MS.Internal.Xml.XPath.XPathSortComparer struct XPathSortComparer_tC6A91D91913FA15EB8A345E07F8E2F1996CA34E2 : public RuntimeObject { // MS.Internal.Xml.XPath.Query[] MS.Internal.Xml.XPath.XPathSortComparer::_expressions QueryU5BU5D_t7ED57A55B43C27603E54BC882A3906317539AFBE* ____expressions_0; // System.Collections.IComparer[] MS.Internal.Xml.XPath.XPathSortComparer::_comparers IComparerU5BU5D_tEF4CB36235ED7F3C24AB6602140109D86F58C156* ____comparers_1; // System.Int32 MS.Internal.Xml.XPath.XPathSortComparer::_numSorts int32_t ____numSorts_2; }; // System.Xml.Serialization.XmlAttributeOverrides struct XmlAttributeOverrides_tEE6AE9EC795CDEF943B35BA538C86222F905EB60 : public RuntimeObject { // System.Collections.Hashtable System.Xml.Serialization.XmlAttributeOverrides::overrides Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___overrides_0; }; // System.Xml.Serialization.XmlMapping struct XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97 : public RuntimeObject { // System.Xml.Serialization.ObjectMap System.Xml.Serialization.XmlMapping::map ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0* ___map_0; // System.Collections.ArrayList System.Xml.Serialization.XmlMapping::relatedMaps ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ___relatedMaps_1; // System.Xml.Serialization.SerializationFormat System.Xml.Serialization.XmlMapping::format int32_t ___format_2; // System.Xml.Serialization.SerializationSource System.Xml.Serialization.XmlMapping::source SerializationSource_t2F3A53A0FFC7BF8994CF332961FD3C0671E4A58C* ___source_3; // System.String System.Xml.Serialization.XmlMapping::_elementName String_t* ____elementName_4; // System.String System.Xml.Serialization.XmlMapping::_namespace String_t* ____namespace_5; // System.String System.Xml.Serialization.XmlMapping::key String_t* ___key_6; }; // System.Xml.XmlNamespaceManager struct XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F : public RuntimeObject { // System.Xml.XmlNamespaceManager/NamespaceDeclaration[] System.Xml.XmlNamespaceManager::nsdecls NamespaceDeclarationU5BU5D_t4DF48D3A2EB82C491A60E8748DE4BAFAA95A0F60* ___nsdecls_1; // System.Int32 System.Xml.XmlNamespaceManager::lastDecl int32_t ___lastDecl_2; // System.Xml.XmlNameTable System.Xml.XmlNamespaceManager::nameTable XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nameTable_3; // System.Int32 System.Xml.XmlNamespaceManager::scopeId int32_t ___scopeId_4; // System.Collections.Generic.Dictionary`2 System.Xml.XmlNamespaceManager::hashTable Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* ___hashTable_5; // System.Boolean System.Xml.XmlNamespaceManager::useHashtable bool ___useHashtable_6; // System.String System.Xml.XmlNamespaceManager::xml String_t* ___xml_7; // System.String System.Xml.XmlNamespaceManager::xmlNs String_t* ___xmlNs_8; }; // System.Xml.XmlNode struct XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF : public RuntimeObject { // System.Xml.XmlNode System.Xml.XmlNode::parentNode XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___parentNode_0; }; // System.Xml.XmlQualifiedName struct XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9 : public RuntimeObject { // System.String System.Xml.XmlQualifiedName::name String_t* ___name_1; // System.String System.Xml.XmlQualifiedName::ns String_t* ___ns_2; // System.Int32 System.Xml.XmlQualifiedName::hash int32_t ___hash_3; }; // System.Xml.XmlReader struct XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD : public RuntimeObject { }; // System.Xml.XmlConfiguration.XmlReaderSection struct XmlReaderSection_tD2D9B29C2787B46828CC2A45A644D1EEC7E25B89 : public RuntimeObject { }; // System.Xml.Serialization.XmlReflectionImporter struct XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6 : public RuntimeObject { // System.String System.Xml.Serialization.XmlReflectionImporter::initialDefaultNamespace String_t* ___initialDefaultNamespace_0; // System.Xml.Serialization.XmlAttributeOverrides System.Xml.Serialization.XmlReflectionImporter::attributeOverrides XmlAttributeOverrides_tEE6AE9EC795CDEF943B35BA538C86222F905EB60* ___attributeOverrides_1; // System.Collections.ArrayList System.Xml.Serialization.XmlReflectionImporter::includedTypes ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ___includedTypes_2; // System.Xml.Serialization.ReflectionHelper System.Xml.Serialization.XmlReflectionImporter::helper ReflectionHelper_tC70C244386E812ED1E4C85AAF108E85F470C68AB* ___helper_3; // System.Int32 System.Xml.Serialization.XmlReflectionImporter::arrayChoiceCount int32_t ___arrayChoiceCount_4; // System.Collections.ArrayList System.Xml.Serialization.XmlReflectionImporter::relatedMaps ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ___relatedMaps_5; // System.Boolean System.Xml.Serialization.XmlReflectionImporter::allowPrivateTypes bool ___allowPrivateTypes_6; }; // System.Xml.XmlResolver struct XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF : public RuntimeObject { }; // System.Xml.Schema.XmlSchemaObject struct XmlSchemaObject_t82CCD87AADB4BEF4E9DFE4C501F09EDA372AA19D : public RuntimeObject { // System.Int32 System.Xml.Schema.XmlSchemaObject::lineNum int32_t ___lineNum_0; // System.Int32 System.Xml.Schema.XmlSchemaObject::linePos int32_t ___linePos_1; // System.String System.Xml.Schema.XmlSchemaObject::sourceUri String_t* ___sourceUri_2; // System.Xml.Serialization.XmlSerializerNamespaces System.Xml.Schema.XmlSchemaObject::namespaces XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93* ___namespaces_3; // System.Xml.Schema.XmlSchemaObject System.Xml.Schema.XmlSchemaObject::parent XmlSchemaObject_t82CCD87AADB4BEF4E9DFE4C501F09EDA372AA19D* ___parent_4; // System.Boolean System.Xml.Schema.XmlSchemaObject::isProcessing bool ___isProcessing_5; }; // System.Xml.Schema.XmlSchemaSet struct XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1 : public RuntimeObject { // System.Xml.XmlNameTable System.Xml.Schema.XmlSchemaSet::nameTable XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nameTable_0; // System.Xml.Schema.SchemaNames System.Xml.Schema.XmlSchemaSet::schemaNames SchemaNames_tF7A45B027D5759AA56D035F5962B4612A6B0902F* ___schemaNames_1; // System.Collections.SortedList System.Xml.Schema.XmlSchemaSet::schemas SortedList_t847331629BA06B518F1B5203BD22B59746EDDBF3* ___schemas_2; // System.Xml.Schema.ValidationEventHandler System.Xml.Schema.XmlSchemaSet::internalEventHandler ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A* ___internalEventHandler_3; // System.Xml.Schema.ValidationEventHandler System.Xml.Schema.XmlSchemaSet::eventHandler ValidationEventHandler_t400B20AD482B62613818392D3E5588426332560A* ___eventHandler_4; // System.Boolean System.Xml.Schema.XmlSchemaSet::isCompiled bool ___isCompiled_5; // System.Collections.Hashtable System.Xml.Schema.XmlSchemaSet::schemaLocations Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___schemaLocations_6; // System.Collections.Hashtable System.Xml.Schema.XmlSchemaSet::chameleonSchemas Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___chameleonSchemas_7; // System.Collections.Hashtable System.Xml.Schema.XmlSchemaSet::targetNamespaces Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___targetNamespaces_8; // System.Boolean System.Xml.Schema.XmlSchemaSet::compileAll bool ___compileAll_9; // System.Xml.Schema.SchemaInfo System.Xml.Schema.XmlSchemaSet::cachedCompiledInfo SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* ___cachedCompiledInfo_10; // System.Xml.XmlReaderSettings System.Xml.Schema.XmlSchemaSet::readerSettings XmlReaderSettings_t8D51BA3ED2A013EE1F44525C9861326CAFB44AEA* ___readerSettings_11; // System.Xml.Schema.XmlSchema System.Xml.Schema.XmlSchemaSet::schemaForSchema XmlSchema_t5C9506D00418BF5FD524254D0C6C405C620C941D* ___schemaForSchema_12; // System.Xml.Schema.XmlSchemaCompilationSettings System.Xml.Schema.XmlSchemaSet::compilationSettings XmlSchemaCompilationSettings_tAD528503343C490A9030FEF019E313661390249C* ___compilationSettings_13; // System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchemaSet::elements XmlSchemaObjectTable_tD5C00DB526C716DB38585522F2011F99FC66A583* ___elements_14; // System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchemaSet::attributes XmlSchemaObjectTable_tD5C00DB526C716DB38585522F2011F99FC66A583* ___attributes_15; // System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchemaSet::schemaTypes XmlSchemaObjectTable_tD5C00DB526C716DB38585522F2011F99FC66A583* ___schemaTypes_16; // System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchemaSet::substitutionGroups XmlSchemaObjectTable_tD5C00DB526C716DB38585522F2011F99FC66A583* ___substitutionGroups_17; // System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchemaSet::typeExtensions XmlSchemaObjectTable_tD5C00DB526C716DB38585522F2011F99FC66A583* ___typeExtensions_18; // System.Object System.Xml.Schema.XmlSchemaSet::internalSyncObject RuntimeObject* ___internalSyncObject_19; }; // System.Xml.Serialization.XmlSerializationGeneratedCode struct XmlSerializationGeneratedCode_tCC078B474844E7731E24085C4A5467A1A1253B7F : public RuntimeObject { }; // System.Xml.Serialization.XmlSerializer struct XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B : public RuntimeObject { // System.Boolean System.Xml.Serialization.XmlSerializer::customSerializer bool ___customSerializer_4; // System.Xml.Serialization.XmlMapping System.Xml.Serialization.XmlSerializer::typeMapping XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* ___typeMapping_5; // System.Xml.Serialization.XmlSerializer/SerializerData System.Xml.Serialization.XmlSerializer::serializerData SerializerData_t80E5CC9586C1782157CDE6EA3518737643CEDDDF* ___serializerData_6; // System.Xml.Serialization.UnreferencedObjectEventHandler System.Xml.Serialization.XmlSerializer::onUnreferencedObject UnreferencedObjectEventHandler_t7342B517610EE6E277FB060ED3C983CE68E0463A* ___onUnreferencedObject_8; // System.Xml.Serialization.XmlAttributeEventHandler System.Xml.Serialization.XmlSerializer::onUnknownAttribute XmlAttributeEventHandler_tA9EE5C77A13FDC19DB5B3340F27245C620480F65* ___onUnknownAttribute_9; // System.Xml.Serialization.XmlElementEventHandler System.Xml.Serialization.XmlSerializer::onUnknownElement XmlElementEventHandler_tA1451D76D0A21C15B71AC8B380CC097DF71951F3* ___onUnknownElement_10; // System.Xml.Serialization.XmlNodeEventHandler System.Xml.Serialization.XmlSerializer::onUnknownNode XmlNodeEventHandler_t32503D9F2F1A9E9E183779774CEFC13425BF6670* ___onUnknownNode_11; }; // System.Xml.Serialization.XmlSerializerFactory struct XmlSerializerFactory_t2486639A11775A86C56EA319CD0AF4848B465BA1 : public RuntimeObject { }; // System.Xml.Serialization.XmlSerializerImplementation struct XmlSerializerImplementation_tA5FE9BE0F0A19E7D007C585CFCB9A983FD88CE57 : public RuntimeObject { }; // System.Xml.Serialization.XmlSerializerNamespaces struct XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93 : public RuntimeObject { // System.Collections.Hashtable System.Xml.Serialization.XmlSerializerNamespaces::namespaces Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___namespaces_0; }; // System.Xml.Serialization.XmlTypeMapElementInfo struct XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32 : public RuntimeObject { // System.String System.Xml.Serialization.XmlTypeMapElementInfo::_elementName String_t* ____elementName_0; // System.String System.Xml.Serialization.XmlTypeMapElementInfo::_namespace String_t* ____namespace_1; // System.Xml.Schema.XmlSchemaForm System.Xml.Serialization.XmlTypeMapElementInfo::_form int32_t ____form_2; // System.Xml.Serialization.XmlTypeMapMember System.Xml.Serialization.XmlTypeMapElementInfo::_member XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* ____member_3; // System.Object System.Xml.Serialization.XmlTypeMapElementInfo::_choiceValue RuntimeObject* ____choiceValue_4; // System.Boolean System.Xml.Serialization.XmlTypeMapElementInfo::_isNullable bool ____isNullable_5; // System.Int32 System.Xml.Serialization.XmlTypeMapElementInfo::_nestingLevel int32_t ____nestingLevel_6; // System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlTypeMapElementInfo::_mappedType XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ____mappedType_7; // System.Xml.Serialization.TypeData System.Xml.Serialization.XmlTypeMapElementInfo::_type TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ____type_8; // System.Boolean System.Xml.Serialization.XmlTypeMapElementInfo::_wrappedElement bool ____wrappedElement_9; // System.Int32 System.Xml.Serialization.XmlTypeMapElementInfo::_explicitOrder int32_t ____explicitOrder_10; }; // System.Xml.Serialization.XmlTypeMapMember struct XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A : public RuntimeObject { // System.String System.Xml.Serialization.XmlTypeMapMember::_name String_t* ____name_0; // System.Int32 System.Xml.Serialization.XmlTypeMapMember::_index int32_t ____index_1; // System.Int32 System.Xml.Serialization.XmlTypeMapMember::_globalIndex int32_t ____globalIndex_2; // System.Int32 System.Xml.Serialization.XmlTypeMapMember::_specifiedGlobalIndex int32_t ____specifiedGlobalIndex_3; // System.Xml.Serialization.TypeData System.Xml.Serialization.XmlTypeMapMember::_typeData TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ____typeData_4; // System.Reflection.MemberInfo System.Xml.Serialization.XmlTypeMapMember::_member MemberInfo_t* ____member_5; // System.Reflection.MemberInfo System.Xml.Serialization.XmlTypeMapMember::_specifiedMember MemberInfo_t* ____specifiedMember_6; // System.Reflection.MethodInfo System.Xml.Serialization.XmlTypeMapMember::_shouldSerialize MethodInfo_t* ____shouldSerialize_7; // System.Object System.Xml.Serialization.XmlTypeMapMember::_defaultValue RuntimeObject* ____defaultValue_8; // System.Int32 System.Xml.Serialization.XmlTypeMapMember::_flags int32_t ____flags_9; }; // System.Xml.XmlWriter struct XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F : public RuntimeObject { // System.Char[] System.Xml.XmlWriter::writeNodeBuffer CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___writeNodeBuffer_0; }; // System.Xml.XmlWriterSettings struct XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674 : public RuntimeObject { // System.Boolean System.Xml.XmlWriterSettings::useAsync bool ___useAsync_0; // System.Text.Encoding System.Xml.XmlWriterSettings::encoding Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___encoding_1; // System.Boolean System.Xml.XmlWriterSettings::omitXmlDecl bool ___omitXmlDecl_2; // System.Xml.NewLineHandling System.Xml.XmlWriterSettings::newLineHandling int32_t ___newLineHandling_3; // System.String System.Xml.XmlWriterSettings::newLineChars String_t* ___newLineChars_4; // System.Xml.TriState System.Xml.XmlWriterSettings::indent int32_t ___indent_5; // System.String System.Xml.XmlWriterSettings::indentChars String_t* ___indentChars_6; // System.Boolean System.Xml.XmlWriterSettings::newLineOnAttributes bool ___newLineOnAttributes_7; // System.Boolean System.Xml.XmlWriterSettings::closeOutput bool ___closeOutput_8; // System.Xml.NamespaceHandling System.Xml.XmlWriterSettings::namespaceHandling int32_t ___namespaceHandling_9; // System.Xml.ConformanceLevel System.Xml.XmlWriterSettings::conformanceLevel int32_t ___conformanceLevel_10; // System.Boolean System.Xml.XmlWriterSettings::checkCharacters bool ___checkCharacters_11; // System.Boolean System.Xml.XmlWriterSettings::writeEndDocumentOnClose bool ___writeEndDocumentOnClose_12; // System.Xml.XmlOutputMethod System.Xml.XmlWriterSettings::outputMethod int32_t ___outputMethod_13; // System.Collections.Generic.List`1 System.Xml.XmlWriterSettings::cdataSections List_1_t43EC7C138A17FAAD7120408F039923082A70301A* ___cdataSections_14; // System.Boolean System.Xml.XmlWriterSettings::doNotEscapeUriAttributes bool ___doNotEscapeUriAttributes_15; // System.Boolean System.Xml.XmlWriterSettings::mergeCDataSections bool ___mergeCDataSections_16; // System.String System.Xml.XmlWriterSettings::mediaType String_t* ___mediaType_17; // System.String System.Xml.XmlWriterSettings::docTypeSystem String_t* ___docTypeSystem_18; // System.String System.Xml.XmlWriterSettings::docTypePublic String_t* ___docTypePublic_19; // System.Xml.XmlStandalone System.Xml.XmlWriterSettings::standalone int32_t ___standalone_20; // System.Boolean System.Xml.XmlWriterSettings::autoXmlDecl bool ___autoXmlDecl_21; // System.Boolean System.Xml.XmlWriterSettings::isReadOnly bool ___isReadOnly_22; }; // System.Xml.Xsl.XslCompiledTransform struct XslCompiledTransform_tC8029B33AE36F66B77D1C1D1CB261EE0DA130AA9 : public RuntimeObject { // System.Boolean System.Xml.Xsl.XslCompiledTransform::enable_debug bool ___enable_debug_0; // System.Object System.Xml.Xsl.XslCompiledTransform::debugger RuntimeObject* ___debugger_1; // System.Xml.XmlWriterSettings System.Xml.Xsl.XslCompiledTransform::output_settings XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* ___output_settings_2; // System.Xml.Xsl.XslTransform System.Xml.Xsl.XslCompiledTransform::impl XslTransform_t32C87F5469FF9F15D11EAA03EE708AF205AE4BE0* ___impl_3; }; // System.Xml.Xsl.XslTransform struct XslTransform_t32C87F5469FF9F15D11EAA03EE708AF205AE4BE0 : public RuntimeObject { // System.Xml.Xsl.XsltOld.Stylesheet System.Xml.Xsl.XslTransform::_CompiledStylesheet Stylesheet_t877F8405A546EAB0A26CE0F54A7F48533686E5AB* ____CompiledStylesheet_0; // System.Collections.Generic.List`1 System.Xml.Xsl.XslTransform::_QueryStore List_1_t34BD5FC03C0DFF68F2817059E6FD410AD98DF02A* ____QueryStore_1; // System.Xml.Xsl.XsltOld.RootAction System.Xml.Xsl.XslTransform::_RootAction RootAction_t94281C7ECEF5D1837C8264D38E4486DF137E7035* ____RootAction_2; // System.Xml.Xsl.XsltOld.Debugger.IXsltDebugger System.Xml.Xsl.XslTransform::debugger RuntimeObject* ___debugger_3; }; // System.Xml.Xsl.XsltArgumentList struct XsltArgumentList_tCB3312D17FD0D83C20E32BB7CE76B8A280A209BF : public RuntimeObject { // System.Collections.Hashtable System.Xml.Xsl.XsltArgumentList::parameters Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___parameters_0; // System.Collections.Hashtable System.Xml.Xsl.XsltArgumentList::extensions Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___extensions_1; }; // System.Xml.XmlConfiguration.XsltConfigSection struct XsltConfigSection_t1CD1ADBEB48ADBAD9DB6311080C3C724E6371BB8 : public RuntimeObject { }; // System.Xml.Xsl.XsltSettings struct XsltSettings_tA9657F26E369F2962E205F2EB1CFE7345AFE0AF8 : public RuntimeObject { // System.Boolean System.Xml.Xsl.XsltSettings::enableDocumentFunction bool ___enableDocumentFunction_0; // System.Boolean System.Xml.Xsl.XsltSettings::enableScript bool ___enableScript_1; // System.Int32 System.Xml.Xsl.XsltSettings::warningLevel int32_t ___warningLevel_2; }; // System.Xml.Serialization.EnumMap/EnumMapMember struct EnumMapMember_tB7A0813F20CFA0758843C38C2ECE325B13893E38 : public RuntimeObject { // System.String System.Xml.Serialization.EnumMap/EnumMapMember::_xmlName String_t* ____xmlName_0; // System.String System.Xml.Serialization.EnumMap/EnumMapMember::_enumName String_t* ____enumName_1; // System.Int64 System.Xml.Serialization.EnumMap/EnumMapMember::_value int64_t ____value_2; }; // System.Xml.Serialization.XmlSerializationReader/CollectionFixup struct CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702 : public RuntimeObject { // System.Xml.Serialization.XmlSerializationCollectionFixupCallback System.Xml.Serialization.XmlSerializationReader/CollectionFixup::callback XmlSerializationCollectionFixupCallback_t7A477E768FFD9DF76301088150243A493D5A4842* ___callback_0; // System.Object System.Xml.Serialization.XmlSerializationReader/CollectionFixup::collection RuntimeObject* ___collection_1; // System.Object System.Xml.Serialization.XmlSerializationReader/CollectionFixup::collectionItems RuntimeObject* ___collectionItems_2; // System.String System.Xml.Serialization.XmlSerializationReader/CollectionFixup::id String_t* ___id_3; }; // System.Xml.Serialization.XmlSerializationReader/CollectionItemFixup struct CollectionItemFixup_tB93D197F97AEEE471775D4EC6C7227434D7EDA11 : public RuntimeObject { // System.Array System.Xml.Serialization.XmlSerializationReader/CollectionItemFixup::list RuntimeArray* ___list_0; // System.Int32 System.Xml.Serialization.XmlSerializationReader/CollectionItemFixup::index int32_t ___index_1; // System.String System.Xml.Serialization.XmlSerializationReader/CollectionItemFixup::id String_t* ___id_2; }; // System.Xml.Serialization.XmlSerializationReader/Fixup struct Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566 : public RuntimeObject { // System.Object System.Xml.Serialization.XmlSerializationReader/Fixup::source RuntimeObject* ___source_0; // System.String[] System.Xml.Serialization.XmlSerializationReader/Fixup::ids StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___ids_1; // System.Xml.Serialization.XmlSerializationFixupCallback System.Xml.Serialization.XmlSerializationReader/Fixup::callback XmlSerializationFixupCallback_t882A7D135707B29ECA0198EFF9BB512C8F54A3AE* ___callback_2; }; // System.Xml.Serialization.XmlSerializationReader/WriteCallbackInfo struct WriteCallbackInfo_t1B01208EBEF54FE064CBE2DD5062C89EBD7A4F7D : public RuntimeObject { // System.Type System.Xml.Serialization.XmlSerializationReader/WriteCallbackInfo::Type Type_t* ___Type_0; // System.String System.Xml.Serialization.XmlSerializationReader/WriteCallbackInfo::TypeName String_t* ___TypeName_1; // System.String System.Xml.Serialization.XmlSerializationReader/WriteCallbackInfo::TypeNs String_t* ___TypeNs_2; // System.Xml.Serialization.XmlSerializationReadCallback System.Xml.Serialization.XmlSerializationReader/WriteCallbackInfo::Callback XmlSerializationReadCallback_tAEB657961D305723E5F13AF0D7ADE852E81D413B* ___Callback_3; }; // System.Xml.Serialization.XmlSerializationReaderInterpreter/FixupCallbackInfo struct FixupCallbackInfo_t4F096851101229F0692C9397633C653DE18E2475 : public RuntimeObject { // System.Xml.Serialization.XmlSerializationReaderInterpreter System.Xml.Serialization.XmlSerializationReaderInterpreter/FixupCallbackInfo::_sri XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* ____sri_0; // System.Xml.Serialization.ClassMap System.Xml.Serialization.XmlSerializationReaderInterpreter/FixupCallbackInfo::_map ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* ____map_1; // System.Boolean System.Xml.Serialization.XmlSerializationReaderInterpreter/FixupCallbackInfo::_isValueList bool ____isValueList_2; }; // System.Xml.Serialization.XmlSerializationReaderInterpreter/ReaderCallbackInfo struct ReaderCallbackInfo_t414F9FC8F93718A4EAF961E66DE7A6C43B6A08FB : public RuntimeObject { // System.Xml.Serialization.XmlSerializationReaderInterpreter System.Xml.Serialization.XmlSerializationReaderInterpreter/ReaderCallbackInfo::_sri XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* ____sri_0; // System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlSerializationReaderInterpreter/ReaderCallbackInfo::_typeMap XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ____typeMap_1; }; // System.Xml.Serialization.XmlSerializationWriter/WriteCallbackInfo struct WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6 : public RuntimeObject { // System.Type System.Xml.Serialization.XmlSerializationWriter/WriteCallbackInfo::Type Type_t* ___Type_0; // System.String System.Xml.Serialization.XmlSerializationWriter/WriteCallbackInfo::TypeName String_t* ___TypeName_1; // System.String System.Xml.Serialization.XmlSerializationWriter/WriteCallbackInfo::TypeNs String_t* ___TypeNs_2; // System.Xml.Serialization.XmlSerializationWriteCallback System.Xml.Serialization.XmlSerializationWriter/WriteCallbackInfo::Callback XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA* ___Callback_3; }; // System.Xml.Serialization.XmlSerializationWriterInterpreter/CallbackInfo struct CallbackInfo_t89714EAF889C7E9B3682A74ADF45DDACC78E60B2 : public RuntimeObject { // System.Xml.Serialization.XmlSerializationWriterInterpreter System.Xml.Serialization.XmlSerializationWriterInterpreter/CallbackInfo::_swi XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9* ____swi_0; // System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlSerializationWriterInterpreter/CallbackInfo::_typeMap XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ____typeMap_1; }; // System.Xml.Serialization.XmlSerializer/SerializerData struct SerializerData_t80E5CC9586C1782157CDE6EA3518737643CEDDDF : public RuntimeObject { // System.Reflection.MethodInfo System.Xml.Serialization.XmlSerializer/SerializerData::ReaderMethod MethodInfo_t* ___ReaderMethod_0; // System.Type System.Xml.Serialization.XmlSerializer/SerializerData::WriterType Type_t* ___WriterType_1; // System.Reflection.MethodInfo System.Xml.Serialization.XmlSerializer/SerializerData::WriterMethod MethodInfo_t* ___WriterMethod_2; // System.Xml.Serialization.XmlSerializerImplementation System.Xml.Serialization.XmlSerializer/SerializerData::Implementation XmlSerializerImplementation_tA5FE9BE0F0A19E7D007C585CFCB9A983FD88CE57* ___Implementation_3; }; // 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.Boolean struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22 { // System.Boolean System.Boolean::m_value bool ___m_value_0; }; // System.Char struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17 { // System.Char System.Char::m_value Il2CppChar ___m_value_0; }; // System.Xml.Xsl.XsltOld.CompiledAction struct CompiledAction_t1A3FB546A91EDE365CB98FBACB26666C9217750E : public Action_tEDC91260C2F42125F4520C9EA2C57E7BFF7A8F14 { }; // System.Xml.Xsl.XsltOld.DbgCompiler struct DbgCompiler_t310F6D239D695E13367E3160AA8A84AC2ECA5C34 : public Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5 { // System.Xml.Xsl.XsltOld.Debugger.IXsltDebugger System.Xml.Xsl.XsltOld.DbgCompiler::debugger RuntimeObject* ___debugger_24; // System.Collections.ArrayList System.Xml.Xsl.XsltOld.DbgCompiler::globalVars ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ___globalVars_25; // System.Collections.ArrayList System.Xml.Xsl.XsltOld.DbgCompiler::localVars ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ___localVars_26; // System.Xml.Xsl.XsltOld.VariableAction[] System.Xml.Xsl.XsltOld.DbgCompiler::globalVarsCache VariableActionU5BU5D_tAE6840492D06EDB808564AAA35AC29FD8B4859AA* ___globalVarsCache_27; // System.Xml.Xsl.XsltOld.VariableAction[] System.Xml.Xsl.XsltOld.DbgCompiler::localVarsCache VariableActionU5BU5D_tAE6840492D06EDB808564AAA35AC29FD8B4859AA* ___localVarsCache_28; }; // System.Collections.DictionaryEntry struct DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB { // System.Object System.Collections.DictionaryEntry::_key RuntimeObject* ____key_0; // System.Object System.Collections.DictionaryEntry::_value RuntimeObject* ____value_1; }; // Native definition for P/Invoke marshalling of System.Collections.DictionaryEntry struct DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_marshaled_pinvoke { Il2CppIUnknown* ____key_0; Il2CppIUnknown* ____value_1; }; // Native definition for COM marshalling of System.Collections.DictionaryEntry struct DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_marshaled_com { Il2CppIUnknown* ____key_0; Il2CppIUnknown* ____value_1; }; // System.Xml.Serialization.EnumMap struct EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C : public ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0 { // System.Xml.Serialization.EnumMap/EnumMapMember[] System.Xml.Serialization.EnumMap::_members EnumMapMemberU5BU5D_t9142B305BA0F44DC126D50BA43D74FAA86A7D520* ____members_0; // System.Boolean System.Xml.Serialization.EnumMap::_isFlags bool ____isFlags_1; // System.String[] System.Xml.Serialization.EnumMap::_enumNames StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ____enumNames_2; // System.String[] System.Xml.Serialization.EnumMap::_xmlNames StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ____xmlNames_3; // System.Int64[] System.Xml.Serialization.EnumMap::_values Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D* ____values_4; }; // System.Reflection.FieldInfo struct FieldInfo_t : public MemberInfo_t { }; // 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; }; // System.Xml.Serialization.ListMap struct ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC : public ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0 { // System.Xml.Serialization.XmlTypeMapElementInfoList System.Xml.Serialization.ListMap::_itemInfo XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* ____itemInfo_0; // System.String System.Xml.Serialization.ListMap::_choiceMember String_t* ____choiceMember_1; }; // System.Reflection.MethodBase struct MethodBase_t : public MemberInfo_t { }; // System.Reflection.ParameterModifier struct ParameterModifier_t75F1AF13B2AD5EDBD3A3579FD337D0A66E3FF510 { // System.Boolean[] System.Reflection.ParameterModifier::_byRef BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ____byRef_0; }; // Native definition for P/Invoke marshalling of System.Reflection.ParameterModifier struct ParameterModifier_t75F1AF13B2AD5EDBD3A3579FD337D0A66E3FF510_marshaled_pinvoke { int32_t* ____byRef_0; }; // Native definition for COM marshalling of System.Reflection.ParameterModifier struct ParameterModifier_t75F1AF13B2AD5EDBD3A3579FD337D0A66E3FF510_marshaled_com { int32_t* ____byRef_0; }; // System.Reflection.PropertyInfo struct PropertyInfo_t : public MemberInfo_t { }; // MS.Internal.Xml.XPath.ResetableIterator struct ResetableIterator_t2E2A85BA1CF226C635706B8448C971FAC6B2EE08 : public XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B { }; // System.Runtime.Serialization.SerializationEntry struct SerializationEntry_t6A03B35039769EF0EDD14BE879E68F1C104FFF74 { // System.String System.Runtime.Serialization.SerializationEntry::_name String_t* ____name_0; // System.Object System.Runtime.Serialization.SerializationEntry::_value RuntimeObject* ____value_1; // System.Type System.Runtime.Serialization.SerializationEntry::_type Type_t* ____type_2; }; // Native definition for P/Invoke marshalling of System.Runtime.Serialization.SerializationEntry struct SerializationEntry_t6A03B35039769EF0EDD14BE879E68F1C104FFF74_marshaled_pinvoke { char* ____name_0; Il2CppIUnknown* ____value_1; Type_t* ____type_2; }; // Native definition for COM marshalling of System.Runtime.Serialization.SerializationEntry struct SerializationEntry_t6A03B35039769EF0EDD14BE879E68F1C104FFF74_marshaled_com { Il2CppChar* ____name_0; Il2CppIUnknown* ____value_1; Type_t* ____type_2; }; // System.IO.Stream struct Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE { // System.IO.Stream/ReadWriteTask System.IO.Stream::_activeReadWriteTask ReadWriteTask_t0821BF49EE38596C7734E86E1A6A39D769BE2C05* ____activeReadWriteTask_3; // System.Threading.SemaphoreSlim System.IO.Stream::_asyncActiveSemaphore SemaphoreSlim_t0D5CB5685D9BFA5BF95CEC6E7395490F933E8DB2* ____asyncActiveSemaphore_4; }; // 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.IO.TextReader struct TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7 : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE { }; // System.IO.TextWriter struct TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3 : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE { // System.Char[] System.IO.TextWriter::CoreNewLine CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___CoreNewLine_3; // System.String System.IO.TextWriter::CoreNewLineStr String_t* ___CoreNewLineStr_4; // System.IFormatProvider System.IO.TextWriter::_internalFormatProvider RuntimeObject* ____internalFormatProvider_5; }; // System.Xml.Serialization.UnreferencedObjectEventArgs struct UnreferencedObjectEventArgs_tA88A95B9F0BE849323A166089D04903D288C5760 : public EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377 { // System.Object System.Xml.Serialization.UnreferencedObjectEventArgs::o RuntimeObject* ___o_1; // System.String System.Xml.Serialization.UnreferencedObjectEventArgs::id String_t* ___id_2; }; // System.Void struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915 { union { struct { }; uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1]; }; }; // System.Xml.XPath.XPathNavigator struct XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13 : public XPathItem_tF0126CC493F2BFDDDFB5B0D05EAE05E8EF8AE1B7 { }; // System.Xml.XmlAttribute struct XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18 : public XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF { // System.Xml.XmlName System.Xml.XmlAttribute::name XmlName_t0704430D24D202146901D342E34D878246E14F33* ___name_1; // System.Xml.XmlLinkedNode System.Xml.XmlAttribute::lastChild XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* ___lastChild_2; }; // System.Xml.Serialization.XmlAttributeEventArgs struct XmlAttributeEventArgs_tE2113D9D778F9CC7EBD3D619A0342DB8C9CC7897 : public EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377 { // System.Object System.Xml.Serialization.XmlAttributeEventArgs::o RuntimeObject* ___o_1; // System.Xml.XmlAttribute System.Xml.Serialization.XmlAttributeEventArgs::attr XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* ___attr_2; // System.String System.Xml.Serialization.XmlAttributeEventArgs::qnames String_t* ___qnames_3; // System.Int32 System.Xml.Serialization.XmlAttributeEventArgs::lineNumber int32_t ___lineNumber_4; // System.Int32 System.Xml.Serialization.XmlAttributeEventArgs::linePosition int32_t ___linePosition_5; }; // System.Xml.XmlCharType struct XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3 { // System.Byte[] System.Xml.XmlCharType::charProperties ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___charProperties_2; }; // Native definition for P/Invoke marshalling of System.Xml.XmlCharType struct XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3_marshaled_pinvoke { Il2CppSafeArray/*NONE*/* ___charProperties_2; }; // Native definition for COM marshalling of System.Xml.XmlCharType struct XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3_marshaled_com { Il2CppSafeArray/*NONE*/* ___charProperties_2; }; // System.Xml.XmlDocument struct XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B : public XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF { // System.Xml.XmlImplementation System.Xml.XmlDocument::implementation XmlImplementation_t4B3F467B76BD95C919C40424196C55B38EEC0F4D* ___implementation_1; // System.Xml.DomNameTable System.Xml.XmlDocument::domNameTable DomNameTable_tE4318EC10C55A46FD00324E740BFA7D9CEE2AF45* ___domNameTable_2; // System.Xml.XmlLinkedNode System.Xml.XmlDocument::lastChild XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* ___lastChild_3; // System.Xml.XmlNamedNodeMap System.Xml.XmlDocument::entities XmlNamedNodeMap_t13203D1B3861C62568AFFA1D644C04ABCBFC130C* ___entities_4; // System.Collections.Hashtable System.Xml.XmlDocument::htElementIdMap Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___htElementIdMap_5; // System.Collections.Hashtable System.Xml.XmlDocument::htElementIDAttrDecl Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___htElementIDAttrDecl_6; // System.Xml.Schema.SchemaInfo System.Xml.XmlDocument::schemaInfo SchemaInfo_t42F4B1099B63BCF2D3BBF7F35A79AF6B90B0927E* ___schemaInfo_7; // System.Xml.Schema.XmlSchemaSet System.Xml.XmlDocument::schemas XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* ___schemas_8; // System.Boolean System.Xml.XmlDocument::reportValidity bool ___reportValidity_9; // System.Boolean System.Xml.XmlDocument::actualLoadingStatus bool ___actualLoadingStatus_10; // System.Xml.XmlNodeChangedEventHandler System.Xml.XmlDocument::onNodeInsertingDelegate XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* ___onNodeInsertingDelegate_11; // System.Xml.XmlNodeChangedEventHandler System.Xml.XmlDocument::onNodeInsertedDelegate XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* ___onNodeInsertedDelegate_12; // System.Xml.XmlNodeChangedEventHandler System.Xml.XmlDocument::onNodeRemovingDelegate XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* ___onNodeRemovingDelegate_13; // System.Xml.XmlNodeChangedEventHandler System.Xml.XmlDocument::onNodeRemovedDelegate XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* ___onNodeRemovedDelegate_14; // System.Xml.XmlNodeChangedEventHandler System.Xml.XmlDocument::onNodeChangingDelegate XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* ___onNodeChangingDelegate_15; // System.Xml.XmlNodeChangedEventHandler System.Xml.XmlDocument::onNodeChangedDelegate XmlNodeChangedEventHandler_t907F6E9CB8DE238635028EC468AD41CAB0BA269B* ___onNodeChangedDelegate_16; // System.Boolean System.Xml.XmlDocument::fEntRefNodesPresent bool ___fEntRefNodesPresent_17; // System.Boolean System.Xml.XmlDocument::fCDataNodesPresent bool ___fCDataNodesPresent_18; // System.Boolean System.Xml.XmlDocument::preserveWhitespace bool ___preserveWhitespace_19; // System.Boolean System.Xml.XmlDocument::isLoading bool ___isLoading_20; // System.String System.Xml.XmlDocument::strDocumentName String_t* ___strDocumentName_21; // System.String System.Xml.XmlDocument::strDocumentFragmentName String_t* ___strDocumentFragmentName_22; // System.String System.Xml.XmlDocument::strCommentName String_t* ___strCommentName_23; // System.String System.Xml.XmlDocument::strTextName String_t* ___strTextName_24; // System.String System.Xml.XmlDocument::strCDataSectionName String_t* ___strCDataSectionName_25; // System.String System.Xml.XmlDocument::strEntityName String_t* ___strEntityName_26; // System.String System.Xml.XmlDocument::strID String_t* ___strID_27; // System.String System.Xml.XmlDocument::strXmlns String_t* ___strXmlns_28; // System.String System.Xml.XmlDocument::strXml String_t* ___strXml_29; // System.String System.Xml.XmlDocument::strSpace String_t* ___strSpace_30; // System.String System.Xml.XmlDocument::strLang String_t* ___strLang_31; // System.String System.Xml.XmlDocument::strEmpty String_t* ___strEmpty_32; // System.String System.Xml.XmlDocument::strNonSignificantWhitespaceName String_t* ___strNonSignificantWhitespaceName_33; // System.String System.Xml.XmlDocument::strSignificantWhitespaceName String_t* ___strSignificantWhitespaceName_34; // System.String System.Xml.XmlDocument::strReservedXmlns String_t* ___strReservedXmlns_35; // System.String System.Xml.XmlDocument::strReservedXml String_t* ___strReservedXml_36; // System.String System.Xml.XmlDocument::baseURI String_t* ___baseURI_37; // System.Xml.XmlResolver System.Xml.XmlDocument::resolver XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___resolver_38; // System.Boolean System.Xml.XmlDocument::bSetResolver bool ___bSetResolver_39; // System.Object System.Xml.XmlDocument::objLock RuntimeObject* ___objLock_40; // System.Xml.XmlAttribute System.Xml.XmlDocument::namespaceXml XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* ___namespaceXml_41; }; // System.Xml.Serialization.XmlElementEventArgs struct XmlElementEventArgs_t415AB97F2EC45400E0E5FD5DCEE66D2FC4912036 : public EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377 { // System.Object System.Xml.Serialization.XmlElementEventArgs::o RuntimeObject* ___o_1; // System.Xml.XmlElement System.Xml.Serialization.XmlElementEventArgs::elem XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* ___elem_2; // System.String System.Xml.Serialization.XmlElementEventArgs::qnames String_t* ___qnames_3; // System.Int32 System.Xml.Serialization.XmlElementEventArgs::lineNumber int32_t ___lineNumber_4; // System.Int32 System.Xml.Serialization.XmlElementEventArgs::linePosition int32_t ___linePosition_5; }; // System.Xml.XmlLinkedNode struct XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C : public XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF { // System.Xml.XmlLinkedNode System.Xml.XmlLinkedNode::next XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* ___next_1; }; // System.Xml.Serialization.XmlMembersMapping struct XmlMembersMapping_t0D686C86E19B598F10E53AF79EC905A7E2BDB62C : public XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97 { // System.Boolean System.Xml.Serialization.XmlMembersMapping::_hasWrapperElement bool ____hasWrapperElement_7; // System.Xml.Serialization.XmlMemberMapping[] System.Xml.Serialization.XmlMembersMapping::_mapping XmlMemberMappingU5BU5D_t98364948854B71F146515DCCD516FFA9900EE7CF* ____mapping_8; }; // System.Xml.Serialization.XmlNodeEventArgs struct XmlNodeEventArgs_tD4D3A349309C779296ED1395F49A9D4793D2E21D : public EventArgs_t37273F03EAC87217701DD431B190FBD84AD7C377 { // System.Object System.Xml.Serialization.XmlNodeEventArgs::o RuntimeObject* ___o_1; // System.Xml.XmlNode System.Xml.Serialization.XmlNodeEventArgs::xmlNode XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___xmlNode_2; // System.Int32 System.Xml.Serialization.XmlNodeEventArgs::lineNumber int32_t ___lineNumber_3; // System.Int32 System.Xml.Serialization.XmlNodeEventArgs::linePosition int32_t ___linePosition_4; }; // System.Xml.XmlNullResolver struct XmlNullResolver_t2569417DA15677E9831E2DEFD875034F37088FB2 : public XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF { }; // System.Xml.Serialization.XmlRootAttribute struct XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF : public Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA { // System.String System.Xml.Serialization.XmlRootAttribute::dataType String_t* ___dataType_0; // System.String System.Xml.Serialization.XmlRootAttribute::elementName String_t* ___elementName_1; // System.Boolean System.Xml.Serialization.XmlRootAttribute::isNullable bool ___isNullable_2; // System.String System.Xml.Serialization.XmlRootAttribute::ns String_t* ___ns_3; }; // System.Xml.Schema.XmlSchema struct XmlSchema_t5C9506D00418BF5FD524254D0C6C405C620C941D : public XmlSchemaObject_t82CCD87AADB4BEF4E9DFE4C501F09EDA372AA19D { // System.Xml.Schema.XmlSchemaForm System.Xml.Schema.XmlSchema::attributeFormDefault int32_t ___attributeFormDefault_8; // System.Xml.Schema.XmlSchemaForm System.Xml.Schema.XmlSchema::elementFormDefault int32_t ___elementFormDefault_9; // System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchema::blockDefault int32_t ___blockDefault_10; // System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchema::finalDefault int32_t ___finalDefault_11; // System.String System.Xml.Schema.XmlSchema::targetNs String_t* ___targetNs_12; // System.String System.Xml.Schema.XmlSchema::version String_t* ___version_13; // System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchema::includes XmlSchemaObjectCollection_tABB09091ECE50CA4C1B43A6E91D2CB04465B9388* ___includes_14; // System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchema::items XmlSchemaObjectCollection_tABB09091ECE50CA4C1B43A6E91D2CB04465B9388* ___items_15; // System.String System.Xml.Schema.XmlSchema::id String_t* ___id_16; // System.Xml.XmlAttribute[] System.Xml.Schema.XmlSchema::moreAttributes XmlAttributeU5BU5D_tFC0CF817A6D2131D94AB6387E4EAE7D97B3FFC40* ___moreAttributes_17; // System.Boolean System.Xml.Schema.XmlSchema::isCompiled bool ___isCompiled_18; // System.Boolean System.Xml.Schema.XmlSchema::isCompiledBySet bool ___isCompiledBySet_19; // System.Boolean System.Xml.Schema.XmlSchema::isPreprocessed bool ___isPreprocessed_20; // System.Boolean System.Xml.Schema.XmlSchema::isRedefined bool ___isRedefined_21; // System.Int32 System.Xml.Schema.XmlSchema::errorCount int32_t ___errorCount_22; // System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchema::attributes XmlSchemaObjectTable_tD5C00DB526C716DB38585522F2011F99FC66A583* ___attributes_23; // System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchema::attributeGroups XmlSchemaObjectTable_tD5C00DB526C716DB38585522F2011F99FC66A583* ___attributeGroups_24; // System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchema::elements XmlSchemaObjectTable_tD5C00DB526C716DB38585522F2011F99FC66A583* ___elements_25; // System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchema::types XmlSchemaObjectTable_tD5C00DB526C716DB38585522F2011F99FC66A583* ___types_26; // System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchema::groups XmlSchemaObjectTable_tD5C00DB526C716DB38585522F2011F99FC66A583* ___groups_27; // System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchema::notations XmlSchemaObjectTable_tD5C00DB526C716DB38585522F2011F99FC66A583* ___notations_28; // System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchema::identityConstraints XmlSchemaObjectTable_tD5C00DB526C716DB38585522F2011F99FC66A583* ___identityConstraints_29; // System.Collections.ArrayList System.Xml.Schema.XmlSchema::importedSchemas ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ___importedSchemas_31; // System.Collections.ArrayList System.Xml.Schema.XmlSchema::importedNamespaces ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ___importedNamespaces_32; // System.Int32 System.Xml.Schema.XmlSchema::schemaId int32_t ___schemaId_33; // System.Uri System.Xml.Schema.XmlSchema::baseUri Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___baseUri_34; // System.Boolean System.Xml.Schema.XmlSchema::isChameleon bool ___isChameleon_35; // System.Collections.Hashtable System.Xml.Schema.XmlSchema::ids Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___ids_36; // System.Xml.XmlDocument System.Xml.Schema.XmlSchema::document XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___document_37; // System.Xml.XmlNameTable System.Xml.Schema.XmlSchema::nameTable XmlNameTable_tBDBAACFF3DB40A8E6AF3BDC11F0FF166CF11ABB8* ___nameTable_38; }; // System.Xml.Schema.XmlSchemaAnnotated struct XmlSchemaAnnotated_t41DBE9DF8776C6C639B33A712F25497C672B4E04 : public XmlSchemaObject_t82CCD87AADB4BEF4E9DFE4C501F09EDA372AA19D { // System.String System.Xml.Schema.XmlSchemaAnnotated::id String_t* ___id_6; // System.Xml.Schema.XmlSchemaAnnotation System.Xml.Schema.XmlSchemaAnnotated::annotation XmlSchemaAnnotation_t35947D4DA687AA3C531135CEC5EBE7AB1C3EF821* ___annotation_7; // System.Xml.XmlAttribute[] System.Xml.Schema.XmlSchemaAnnotated::moreAttributes XmlAttributeU5BU5D_tFC0CF817A6D2131D94AB6387E4EAE7D97B3FFC40* ___moreAttributes_8; }; // System.Xml.Serialization.XmlSchemaProviderAttribute struct XmlSchemaProviderAttribute_t913656BFB1429C8144C9EE53E18CC300D1C431AF : public Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA { // System.String System.Xml.Serialization.XmlSchemaProviderAttribute::_methodName String_t* ____methodName_0; // System.Boolean System.Xml.Serialization.XmlSchemaProviderAttribute::_isAny bool ____isAny_1; }; // System.Xml.Serialization.XmlSerializationReader struct XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597 : public XmlSerializationGeneratedCode_tCC078B474844E7731E24085C4A5467A1A1253B7F { // System.Xml.XmlDocument System.Xml.Serialization.XmlSerializationReader::document XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* ___document_0; // System.Xml.XmlReader System.Xml.Serialization.XmlSerializationReader::reader XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___reader_1; // System.Collections.ArrayList System.Xml.Serialization.XmlSerializationReader::fixups ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ___fixups_2; // System.Collections.Hashtable System.Xml.Serialization.XmlSerializationReader::collFixups Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___collFixups_3; // System.Collections.ArrayList System.Xml.Serialization.XmlSerializationReader::collItemFixups ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ___collItemFixups_4; // System.Collections.Hashtable System.Xml.Serialization.XmlSerializationReader::typesCallbacks Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___typesCallbacks_5; // System.Collections.ArrayList System.Xml.Serialization.XmlSerializationReader::noIDTargets ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ___noIDTargets_6; // System.Collections.Hashtable System.Xml.Serialization.XmlSerializationReader::targets Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___targets_7; // System.Collections.Hashtable System.Xml.Serialization.XmlSerializationReader::delayedListFixups Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___delayedListFixups_8; // System.Xml.Serialization.XmlSerializer System.Xml.Serialization.XmlSerializationReader::eventSource XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* ___eventSource_9; // System.Int32 System.Xml.Serialization.XmlSerializationReader::delayedFixupId int32_t ___delayedFixupId_10; // System.Collections.Hashtable System.Xml.Serialization.XmlSerializationReader::referencedObjects Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___referencedObjects_11; // System.Int32 System.Xml.Serialization.XmlSerializationReader::readCount int32_t ___readCount_12; // System.Int32 System.Xml.Serialization.XmlSerializationReader::whileIterationCount int32_t ___whileIterationCount_13; // System.String System.Xml.Serialization.XmlSerializationReader::w3SchemaNS String_t* ___w3SchemaNS_14; // System.String System.Xml.Serialization.XmlSerializationReader::w3InstanceNS String_t* ___w3InstanceNS_15; // System.String System.Xml.Serialization.XmlSerializationReader::w3InstanceNS2000 String_t* ___w3InstanceNS2000_16; // System.String System.Xml.Serialization.XmlSerializationReader::w3InstanceNS1999 String_t* ___w3InstanceNS1999_17; // System.String System.Xml.Serialization.XmlSerializationReader::soapNS String_t* ___soapNS_18; // System.String System.Xml.Serialization.XmlSerializationReader::wsdlNS String_t* ___wsdlNS_19; // System.String System.Xml.Serialization.XmlSerializationReader::nullX String_t* ___nullX_20; // System.String System.Xml.Serialization.XmlSerializationReader::nil String_t* ___nil_21; // System.String System.Xml.Serialization.XmlSerializationReader::typeX String_t* ___typeX_22; // System.String System.Xml.Serialization.XmlSerializationReader::arrayType String_t* ___arrayType_23; // System.Xml.XmlQualifiedName System.Xml.Serialization.XmlSerializationReader::arrayQName XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___arrayQName_24; }; // System.Xml.Serialization.XmlSerializationWriter struct XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B : public XmlSerializationGeneratedCode_tCC078B474844E7731E24085C4A5467A1A1253B7F { // System.Runtime.Serialization.ObjectIDGenerator System.Xml.Serialization.XmlSerializationWriter::idGenerator ObjectIDGenerator_tB34B9C0F2DDAED17FE8AB8D54462528D37DE101B* ___idGenerator_0; // System.Int32 System.Xml.Serialization.XmlSerializationWriter::qnameCount int32_t ___qnameCount_1; // System.Boolean System.Xml.Serialization.XmlSerializationWriter::topLevelElement bool ___topLevelElement_2; // System.Collections.ArrayList System.Xml.Serialization.XmlSerializationWriter::namespaces ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ___namespaces_3; // System.Xml.XmlWriter System.Xml.Serialization.XmlSerializationWriter::writer XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___writer_4; // System.Collections.Queue System.Xml.Serialization.XmlSerializationWriter::referencedElements Queue_t82FD2BE12D138AF4D22C801CB5044DAEC2BA66BC* ___referencedElements_5; // System.Collections.Hashtable System.Xml.Serialization.XmlSerializationWriter::callbacks Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___callbacks_6; // System.Collections.Hashtable System.Xml.Serialization.XmlSerializationWriter::serializedObjects Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___serializedObjects_7; }; // System.Xml.Serialization.XmlTextAttribute struct XmlTextAttribute_tAA8BE9BA759F78BB4CDF00D3848B7746C0EDEFE0 : public Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA { // System.String System.Xml.Serialization.XmlTextAttribute::dataType String_t* ___dataType_0; // System.Type System.Xml.Serialization.XmlTextAttribute::type Type_t* ___type_1; }; // System.Xml.XmlTextReader struct XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B : public XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD { // System.Xml.XmlTextReaderImpl System.Xml.XmlTextReader::impl XmlTextReaderImpl_t5F48FDC8E88C9E27593266F6C660B3973AE2167B* ___impl_7; }; // System.Xml.Serialization.XmlTypeAttribute struct XmlTypeAttribute_t0EC23A25BEDDEB533D28BD2B87F5B3270E718EE5 : public Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA { // System.Boolean System.Xml.Serialization.XmlTypeAttribute::includeInSchema bool ___includeInSchema_0; // System.String System.Xml.Serialization.XmlTypeAttribute::ns String_t* ___ns_1; // System.String System.Xml.Serialization.XmlTypeAttribute::typeName String_t* ___typeName_2; }; // System.Xml.Serialization.XmlTypeMapElementInfoList struct XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78 : public ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A { }; // System.Xml.Serialization.XmlTypeMapMemberAnyAttribute struct XmlTypeMapMemberAnyAttribute_t936B5C08A209D3F342575957ACCBF1F7984095F1 : public XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A { }; // System.Xml.Serialization.XmlTypeMapMemberAttribute struct XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4 : public XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A { // System.String System.Xml.Serialization.XmlTypeMapMemberAttribute::_attributeName String_t* ____attributeName_10; // System.String System.Xml.Serialization.XmlTypeMapMemberAttribute::_namespace String_t* ____namespace_11; // System.Xml.Schema.XmlSchemaForm System.Xml.Serialization.XmlTypeMapMemberAttribute::_form int32_t ____form_12; // System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlTypeMapMemberAttribute::_mappedType XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ____mappedType_13; }; // System.Xml.Serialization.XmlTypeMapMemberElement struct XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840 : public XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A { // System.Xml.Serialization.XmlTypeMapElementInfoList System.Xml.Serialization.XmlTypeMapMemberElement::_elementInfo XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* ____elementInfo_10; // System.String System.Xml.Serialization.XmlTypeMapMemberElement::_choiceMember String_t* ____choiceMember_11; // System.Boolean System.Xml.Serialization.XmlTypeMapMemberElement::_isTextCollector bool ____isTextCollector_12; // System.Xml.Serialization.TypeData System.Xml.Serialization.XmlTypeMapMemberElement::_choiceTypeData TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ____choiceTypeData_13; }; // System.Xml.Serialization.XmlTypeMapMemberNamespaces struct XmlTypeMapMemberNamespaces_t1493E4BE21467D51FB1CDE88D538FA97815D3112 : public XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A { }; // System.Xml.Serialization.XmlTypeMapping struct XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9 : public XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97 { // System.String System.Xml.Serialization.XmlTypeMapping::xmlType String_t* ___xmlType_7; // System.String System.Xml.Serialization.XmlTypeMapping::xmlTypeNamespace String_t* ___xmlTypeNamespace_8; // System.Xml.Serialization.TypeData System.Xml.Serialization.XmlTypeMapping::type TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___type_9; // System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlTypeMapping::baseMap XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___baseMap_10; // System.Boolean System.Xml.Serialization.XmlTypeMapping::multiReferenceType bool ___multiReferenceType_11; // System.Boolean System.Xml.Serialization.XmlTypeMapping::includeInSchema bool ___includeInSchema_12; // System.Boolean System.Xml.Serialization.XmlTypeMapping::isNullable bool ___isNullable_13; // System.Boolean System.Xml.Serialization.XmlTypeMapping::isAny bool ___isAny_14; // System.Collections.ArrayList System.Xml.Serialization.XmlTypeMapping::_derivedTypes ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ____derivedTypes_15; }; // System.Xml.Serialization.XmlTypeSerializationSource struct XmlTypeSerializationSource_tE995CC9E60F76C0EDAC4CFAA7808ACCEF4225984 : public SerializationSource_t2F3A53A0FFC7BF8994CF332961FD3C0671E4A58C { // System.String System.Xml.Serialization.XmlTypeSerializationSource::attributeOverridesHash String_t* ___attributeOverridesHash_3; // System.Type System.Xml.Serialization.XmlTypeSerializationSource::type Type_t* ___type_4; // System.String System.Xml.Serialization.XmlTypeSerializationSource::rootHash String_t* ___rootHash_5; }; // System.Xml.XmlUrlResolver struct XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E : public XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF { // System.Net.ICredentials System.Xml.XmlUrlResolver::_credentials RuntimeObject* ____credentials_1; // System.Net.IWebProxy System.Xml.XmlUrlResolver::_proxy RuntimeObject* ____proxy_2; // System.Net.Cache.RequestCachePolicy System.Xml.XmlUrlResolver::_cachePolicy RequestCachePolicy_tF15C94C5E458478914D5EB17753294BD488B0550* ____cachePolicy_3; }; // System.Xml.XmlValidatingReader struct XmlValidatingReader_tC22B0C99C972133DC954BB9906B62835330FB3F9 : public XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD { // System.Xml.XmlValidatingReaderImpl System.Xml.XmlValidatingReader::impl XmlValidatingReaderImpl_t5E1938148F73C4871F4B28C234B1EEF586998EA8* ___impl_7; }; // System.Xml.Xsl.XsltContext struct XsltContext_tF2EF16CAEEBE0A1639BEED02DB3FE1058E19CD8B : public XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F { }; // System.Xml.Xsl.XsltOld.ApplyImportsAction struct ApplyImportsAction_tE8400005F12DD6D225C8523127634F8BABEC4684 : public CompiledAction_t1A3FB546A91EDE365CB98FBACB26666C9217750E { // System.Xml.XmlQualifiedName System.Xml.Xsl.XsltOld.ApplyImportsAction::mode XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___mode_0; // System.Xml.Xsl.XsltOld.Stylesheet System.Xml.Xsl.XsltOld.ApplyImportsAction::stylesheet Stylesheet_t877F8405A546EAB0A26CE0F54A7F48533686E5AB* ___stylesheet_1; }; // System.Xml.Serialization.ClassMap struct ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109 : public ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0 { // System.Collections.Hashtable System.Xml.Serialization.ClassMap::_elements Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ____elements_0; // System.Collections.ArrayList System.Xml.Serialization.ClassMap::_elementMembers ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ____elementMembers_1; // System.Collections.Hashtable System.Xml.Serialization.ClassMap::_attributeMembers Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ____attributeMembers_2; // System.Xml.Serialization.XmlTypeMapMemberAttribute[] System.Xml.Serialization.ClassMap::_attributeMembersArray XmlTypeMapMemberAttributeU5BU5D_tD4F816722F17A6B481400D6F933E68A38D97EB83* ____attributeMembersArray_3; // System.Collections.ArrayList System.Xml.Serialization.ClassMap::_flatLists ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ____flatLists_4; // System.Collections.ArrayList System.Xml.Serialization.ClassMap::_allMembers ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ____allMembers_5; // System.Collections.ArrayList System.Xml.Serialization.ClassMap::_membersWithDefault ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ____membersWithDefault_6; // System.Collections.ArrayList System.Xml.Serialization.ClassMap::_listMembers ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ____listMembers_7; // System.Xml.Serialization.XmlTypeMapMemberAnyElement System.Xml.Serialization.ClassMap::_defaultAnyElement XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* ____defaultAnyElement_8; // System.Xml.Serialization.XmlTypeMapMemberAnyAttribute System.Xml.Serialization.ClassMap::_defaultAnyAttribute XmlTypeMapMemberAnyAttribute_t936B5C08A209D3F342575957ACCBF1F7984095F1* ____defaultAnyAttribute_9; // System.Xml.Serialization.XmlTypeMapMemberNamespaces System.Xml.Serialization.ClassMap::_namespaceDeclarations XmlTypeMapMemberNamespaces_t1493E4BE21467D51FB1CDE88D538FA97815D3112* ____namespaceDeclarations_10; // System.Xml.Serialization.XmlTypeMapMember System.Xml.Serialization.ClassMap::_xmlTextCollector XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* ____xmlTextCollector_11; // System.Xml.Serialization.XmlTypeMapMember System.Xml.Serialization.ClassMap::_returnMember XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* ____returnMember_12; // System.Boolean System.Xml.Serialization.ClassMap::_ignoreMemberNamespace bool ____ignoreMemberNamespace_13; // System.Boolean System.Xml.Serialization.ClassMap::_canBeSimpleType bool ____canBeSimpleType_14; // System.Nullable`1 System.Xml.Serialization.ClassMap::_isOrderDependentMap Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 ____isOrderDependentMap_15; }; // System.Xml.Xsl.XsltOld.ContainerAction struct ContainerAction_t7A45AFD9C9840A47FE328AAA30C84F47A0693CE3 : public CompiledAction_t1A3FB546A91EDE365CB98FBACB26666C9217750E { // System.Collections.ArrayList System.Xml.Xsl.XsltOld.ContainerAction::containedActions ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ___containedActions_0; // System.Xml.Xsl.XsltOld.CopyCodeAction System.Xml.Xsl.XsltOld.ContainerAction::lastCopyCodeAction CopyCodeAction_t05EA827C005BE8D767947535807EF345C1969771* ___lastCopyCodeAction_1; // System.Int32 System.Xml.Xsl.XsltOld.ContainerAction::maxid int32_t ___maxid_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; }; // 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.Reflection.MethodInfo struct MethodInfo_t : public MethodBase_t { }; // MS.Internal.Xml.XPath.Query struct Query_tA79EC81C5C56470386C2FCCF4CC81C13847DCFB6 : public ResetableIterator_t2E2A85BA1CF226C635706B8448C971FAC6B2EE08 { }; // System.RuntimeTypeHandle struct RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B { // System.IntPtr System.RuntimeTypeHandle::value intptr_t ___value_0; }; // System.Xml.Xsl.XsltOld.SortAction struct SortAction_t04B5F7519A2AF45F3013AC30C8BFEF5FA78F3B2C : public CompiledAction_t1A3FB546A91EDE365CB98FBACB26666C9217750E { // System.Int32 System.Xml.Xsl.XsltOld.SortAction::selectKey int32_t ___selectKey_0; // System.Xml.Xsl.XsltOld.Avt System.Xml.Xsl.XsltOld.SortAction::langAvt Avt_t68EC7ADCD01911FB2B2570645C28DAF9CA8DDE75* ___langAvt_1; // System.Xml.Xsl.XsltOld.Avt System.Xml.Xsl.XsltOld.SortAction::dataTypeAvt Avt_t68EC7ADCD01911FB2B2570645C28DAF9CA8DDE75* ___dataTypeAvt_2; // System.Xml.Xsl.XsltOld.Avt System.Xml.Xsl.XsltOld.SortAction::orderAvt Avt_t68EC7ADCD01911FB2B2570645C28DAF9CA8DDE75* ___orderAvt_3; // System.Xml.Xsl.XsltOld.Avt System.Xml.Xsl.XsltOld.SortAction::caseOrderAvt Avt_t68EC7ADCD01911FB2B2570645C28DAF9CA8DDE75* ___caseOrderAvt_4; // System.String System.Xml.Xsl.XsltOld.SortAction::lang String_t* ___lang_5; // System.Xml.XPath.XmlDataType System.Xml.Xsl.XsltOld.SortAction::dataType int32_t ___dataType_6; // System.Xml.XPath.XmlSortOrder System.Xml.Xsl.XsltOld.SortAction::order int32_t ___order_7; // System.Xml.XPath.XmlCaseOrder System.Xml.Xsl.XsltOld.SortAction::caseOrder int32_t ___caseOrder_8; // System.Xml.Xsl.XsltOld.Sort System.Xml.Xsl.XsltOld.SortAction::sort Sort_tF34CA4FAE0CA6224605904970FB0F7DD8F2C5D82* ___sort_9; // System.Boolean System.Xml.Xsl.XsltOld.SortAction::forwardCompatibility bool ___forwardCompatibility_10; // System.Xml.Xsl.XsltOld.InputScopeManager System.Xml.Xsl.XsltOld.SortAction::manager InputScopeManager_tF27B9679D4E5F5A5D5AA79DDC2C74F2A51D844E4* ___manager_11; }; // MS.Internal.Xml.XPath.XPathArrayIterator struct XPathArrayIterator_t99C9BCCC2BA66B7E0246D8C84C6866DE8DC23979 : public ResetableIterator_t2E2A85BA1CF226C635706B8448C971FAC6B2EE08 { // System.Collections.IList MS.Internal.Xml.XPath.XPathArrayIterator::list RuntimeObject* ___list_1; // System.Int32 MS.Internal.Xml.XPath.XPathArrayIterator::index int32_t ___index_2; }; // System.Xml.XmlElement struct XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1 : public XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C { // System.Xml.XmlName System.Xml.XmlElement::name XmlName_t0704430D24D202146901D342E34D878246E14F33* ___name_2; // System.Xml.XmlAttributeCollection System.Xml.XmlElement::attributes XmlAttributeCollection_tB0BA25B3C7E8D4BCF487C7107A9019632A7D85C0* ___attributes_3; // System.Xml.XmlLinkedNode System.Xml.XmlElement::lastChild XmlLinkedNode_t640BF5D3FDAF0606665C3BAE565988A5014F1B9C* ___lastChild_4; }; // System.Xml.Schema.XmlSchemaType struct XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF : public XmlSchemaAnnotated_t41DBE9DF8776C6C639B33A712F25497C672B4E04 { // System.String System.Xml.Schema.XmlSchemaType::name String_t* ___name_9; // System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchemaType::final int32_t ___final_10; // System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchemaType::derivedBy int32_t ___derivedBy_11; // System.Xml.Schema.XmlSchemaType System.Xml.Schema.XmlSchemaType::baseSchemaType XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* ___baseSchemaType_12; // System.Xml.Schema.XmlSchemaDatatype System.Xml.Schema.XmlSchemaType::datatype XmlSchemaDatatype_t715572E6E9C9A145DBBF5DDF345EFA5D3AA3E34D* ___datatype_13; // System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchemaType::finalResolved int32_t ___finalResolved_14; // System.Xml.Schema.SchemaElementDecl modreq(System.Runtime.CompilerServices.IsVolatile) System.Xml.Schema.XmlSchemaType::elementDecl SchemaElementDecl_t985EC0AC51DF3E0339341916D061539CF41846AD* ___elementDecl_15; // System.Xml.XmlQualifiedName modreq(System.Runtime.CompilerServices.IsVolatile) System.Xml.Schema.XmlSchemaType::qname XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___qname_16; // System.Xml.Schema.XmlSchemaType System.Xml.Schema.XmlSchemaType::redefined XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* ___redefined_17; // System.Xml.Schema.XmlSchemaContentType System.Xml.Schema.XmlSchemaType::contentType int32_t ___contentType_18; }; // System.Xml.Serialization.XmlSerializableMapping struct XmlSerializableMapping_tE7BDFC1308A79813DF734102D332FD528FD841E7 : public XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9 { // System.Xml.Schema.XmlSchema System.Xml.Serialization.XmlSerializableMapping::_schema XmlSchema_t5C9506D00418BF5FD524254D0C6C405C620C941D* ____schema_16; // System.Xml.Schema.XmlSchemaComplexType System.Xml.Serialization.XmlSerializableMapping::_schemaType XmlSchemaComplexType_t3C6B94A26B4C70D8780E4158E2A37D31BA88FEE0* ____schemaType_17; // System.Xml.XmlQualifiedName System.Xml.Serialization.XmlSerializableMapping::_schemaTypeName XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ____schemaTypeName_18; }; // System.Xml.Serialization.XmlSerializationReaderInterpreter struct XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8 : public XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597 { // System.Xml.Serialization.XmlMapping System.Xml.Serialization.XmlSerializationReaderInterpreter::_typeMap XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* ____typeMap_25; // System.Xml.Serialization.SerializationFormat System.Xml.Serialization.XmlSerializationReaderInterpreter::_format int32_t ____format_26; }; // System.Xml.Serialization.XmlSerializationWriterInterpreter struct XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9 : public XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B { // System.Xml.Serialization.XmlMapping System.Xml.Serialization.XmlSerializationWriterInterpreter::_typeMap XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* ____typeMap_8; // System.Xml.Serialization.SerializationFormat System.Xml.Serialization.XmlSerializationWriterInterpreter::_format int32_t ____format_9; }; // System.Xml.XmlTextWriter struct XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B : public XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F { // System.IO.TextWriter System.Xml.XmlTextWriter::textWriter TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___textWriter_2; // System.Xml.XmlTextEncoder System.Xml.XmlTextWriter::xmlEncoder XmlTextEncoder_tACD13BCC8237E0710F82A7703FAF7D09FCDF0C40* ___xmlEncoder_3; // System.Text.Encoding System.Xml.XmlTextWriter::encoding Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___encoding_4; // System.Xml.Formatting System.Xml.XmlTextWriter::formatting int32_t ___formatting_5; // System.Boolean System.Xml.XmlTextWriter::indented bool ___indented_6; // System.Int32 System.Xml.XmlTextWriter::indentation int32_t ___indentation_7; // System.Char System.Xml.XmlTextWriter::indentChar Il2CppChar ___indentChar_8; // System.Xml.XmlTextWriter/TagInfo[] System.Xml.XmlTextWriter::stack TagInfoU5BU5D_tC6FBAFF4593190EF8F7EEBAB8913C4E17D645776* ___stack_9; // System.Int32 System.Xml.XmlTextWriter::top int32_t ___top_10; // System.Xml.XmlTextWriter/State[] System.Xml.XmlTextWriter::stateTable StateU5BU5D_t41A58B7031FABDC61B34059A1FB722121203D858* ___stateTable_11; // System.Xml.XmlTextWriter/State System.Xml.XmlTextWriter::currentState int32_t ___currentState_12; // System.Xml.XmlTextWriter/Token System.Xml.XmlTextWriter::lastToken int32_t ___lastToken_13; // System.Xml.XmlTextWriterBase64Encoder System.Xml.XmlTextWriter::base64Encoder XmlTextWriterBase64Encoder_tC7209F119916DF622459E830377C23D7BFA2B30D* ___base64Encoder_14; // System.Char System.Xml.XmlTextWriter::quoteChar Il2CppChar ___quoteChar_15; // System.Char System.Xml.XmlTextWriter::curQuoteChar Il2CppChar ___curQuoteChar_16; // System.Boolean System.Xml.XmlTextWriter::namespaces bool ___namespaces_17; // System.Xml.XmlTextWriter/SpecialAttr System.Xml.XmlTextWriter::specialAttr int32_t ___specialAttr_18; // System.String System.Xml.XmlTextWriter::prefixForXmlNs String_t* ___prefixForXmlNs_19; // System.Boolean System.Xml.XmlTextWriter::flush bool ___flush_20; // System.Xml.XmlTextWriter/Namespace[] System.Xml.XmlTextWriter::nsStack NamespaceU5BU5D_tF0F2AD10B1537EBB0F35B1611FD7D89D48FA9E93* ___nsStack_21; // System.Int32 System.Xml.XmlTextWriter::nsTop int32_t ___nsTop_22; // System.Collections.Generic.Dictionary`2 System.Xml.XmlTextWriter::nsHashtable Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* ___nsHashtable_23; // System.Boolean System.Xml.XmlTextWriter::useNsHashtable bool ___useNsHashtable_24; // System.Xml.XmlCharType System.Xml.XmlTextWriter::xmlCharType XmlCharType_t7C471894C8862126737E800F5A14AACBD14FCBC3 ___xmlCharType_25; }; // System.Xml.Serialization.XmlTypeMapMemberExpandable struct XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE : public XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840 { // System.Int32 System.Xml.Serialization.XmlTypeMapMemberExpandable::_flatArrayIndex int32_t ____flatArrayIndex_14; }; // System.Xml.Serialization.XmlTypeMapMemberList struct XmlTypeMapMemberList_t5542A0234B55CC3AD3EDD7B830E7C4603FAAD63E : public XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840 { }; // System.ApplicationException struct ApplicationException_tA744BED4E90266BD255285CD4CF909BAB3EE811A : public Exception_t { }; // System.Xml.Xsl.XsltOld.ApplyTemplatesAction struct ApplyTemplatesAction_t6239D436A0DB073AAF03DC4786AE2F86E4C60793 : public ContainerAction_t7A45AFD9C9840A47FE328AAA30C84F47A0693CE3 { // System.Int32 System.Xml.Xsl.XsltOld.ApplyTemplatesAction::selectKey int32_t ___selectKey_3; // System.Xml.XmlQualifiedName System.Xml.Xsl.XsltOld.ApplyTemplatesAction::mode XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___mode_4; }; // System.Xml.Xsl.XsltOld.AttributeAction struct AttributeAction_t8FD6C824D3D0B7918C0155BA16581A35F243BAE7 : public ContainerAction_t7A45AFD9C9840A47FE328AAA30C84F47A0693CE3 { // System.Xml.Xsl.XsltOld.Avt System.Xml.Xsl.XsltOld.AttributeAction::nameAvt Avt_t68EC7ADCD01911FB2B2570645C28DAF9CA8DDE75* ___nameAvt_3; // System.Xml.Xsl.XsltOld.Avt System.Xml.Xsl.XsltOld.AttributeAction::nsAvt Avt_t68EC7ADCD01911FB2B2570645C28DAF9CA8DDE75* ___nsAvt_4; // System.Xml.Xsl.XsltOld.InputScopeManager System.Xml.Xsl.XsltOld.AttributeAction::manager InputScopeManager_tF27B9679D4E5F5A5D5AA79DDC2C74F2A51D844E4* ___manager_5; // System.String System.Xml.Xsl.XsltOld.AttributeAction::name String_t* ___name_6; // System.String System.Xml.Xsl.XsltOld.AttributeAction::nsUri String_t* ___nsUri_7; // System.Xml.Xsl.XsltOld.PrefixQName System.Xml.Xsl.XsltOld.AttributeAction::qname PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95* ___qname_8; }; // 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.SystemException struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 : public Exception_t { }; // System.Xml.Xsl.XsltOld.TemplateBaseAction struct TemplateBaseAction_tBDAFC1750EBFC75C02FD71BFFECDE6268C71E47C : public ContainerAction_t7A45AFD9C9840A47FE328AAA30C84F47A0693CE3 { // System.Int32 System.Xml.Xsl.XsltOld.TemplateBaseAction::variableCount int32_t ___variableCount_3; // System.Int32 System.Xml.Xsl.XsltOld.TemplateBaseAction::variableFreeSlot int32_t ___variableFreeSlot_4; }; // System.Type struct Type_t : public MemberInfo_t { // System.RuntimeTypeHandle System.Type::_impl RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ____impl_8; }; // System.Xml.Xsl.XsltOld.VariableAction struct VariableAction_t9CEFA9798405B9FCA0724A80692D1902659AE136 : public ContainerAction_t7A45AFD9C9840A47FE328AAA30C84F47A0693CE3 { // System.Xml.XmlQualifiedName System.Xml.Xsl.XsltOld.VariableAction::name XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___name_4; // System.String System.Xml.Xsl.XsltOld.VariableAction::nameStr String_t* ___nameStr_5; // System.String System.Xml.Xsl.XsltOld.VariableAction::baseUri String_t* ___baseUri_6; // System.Int32 System.Xml.Xsl.XsltOld.VariableAction::selectKey int32_t ___selectKey_7; // System.Int32 System.Xml.Xsl.XsltOld.VariableAction::stylesheetid int32_t ___stylesheetid_8; // System.Xml.Xsl.XsltOld.VariableType System.Xml.Xsl.XsltOld.VariableAction::varType int32_t ___varType_9; // System.Int32 System.Xml.Xsl.XsltOld.VariableAction::varKey int32_t ___varKey_10; }; // System.Xml.Schema.XmlSchemaComplexType struct XmlSchemaComplexType_t3C6B94A26B4C70D8780E4158E2A37D31BA88FEE0 : public XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF { // System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchemaComplexType::block int32_t ___block_19; // System.Xml.Schema.XmlSchemaContentModel System.Xml.Schema.XmlSchemaComplexType::contentModel XmlSchemaContentModel_t7A110DE0C735CB25B1483792ACC0011D321A1D19* ___contentModel_20; // System.Xml.Schema.XmlSchemaParticle System.Xml.Schema.XmlSchemaComplexType::particle XmlSchemaParticle_t9A7544A3F66C6E4B8900456CF705A6F9D95655EE* ___particle_21; // System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaComplexType::attributes XmlSchemaObjectCollection_tABB09091ECE50CA4C1B43A6E91D2CB04465B9388* ___attributes_22; // System.Xml.Schema.XmlSchemaAnyAttribute System.Xml.Schema.XmlSchemaComplexType::anyAttribute XmlSchemaAnyAttribute_t2674CD673C9358AEDF1F318A8CF5DE9EB01AF601* ___anyAttribute_23; // System.Xml.Schema.XmlSchemaParticle System.Xml.Schema.XmlSchemaComplexType::contentTypeParticle XmlSchemaParticle_t9A7544A3F66C6E4B8900456CF705A6F9D95655EE* ___contentTypeParticle_24; // System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchemaComplexType::blockResolved int32_t ___blockResolved_25; // System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchemaComplexType::localElements XmlSchemaObjectTable_tD5C00DB526C716DB38585522F2011F99FC66A583* ___localElements_26; // System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchemaComplexType::attributeUses XmlSchemaObjectTable_tD5C00DB526C716DB38585522F2011F99FC66A583* ___attributeUses_27; // System.Xml.Schema.XmlSchemaAnyAttribute System.Xml.Schema.XmlSchemaComplexType::attributeWildcard XmlSchemaAnyAttribute_t2674CD673C9358AEDF1F318A8CF5DE9EB01AF601* ___attributeWildcard_28; // System.Byte System.Xml.Schema.XmlSchemaComplexType::pvFlags uint8_t ___pvFlags_32; }; // System.Xml.Serialization.XmlTypeMapMemberAnyElement struct XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950 : public XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE { }; // System.Xml.Serialization.XmlTypeMapMemberFlatList struct XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38 : public XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE { // System.Xml.Serialization.ListMap System.Xml.Serialization.XmlTypeMapMemberFlatList::_listMap ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* ____listMap_15; }; // System.Xml.Xsl.XsltOld.ActionFrame/XPathSortArrayIterator struct XPathSortArrayIterator_t2BA6E0F1CB15B24F861F906EB20341A35B3988A1 : public XPathArrayIterator_t99C9BCCC2BA66B7E0246D8C84C6866DE8DC23979 { }; // System.ArgumentException struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 { // System.String System.ArgumentException::_paramName String_t* ____paramName_18; }; // System.FormatException struct FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 { }; // System.InvalidCastException struct InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 { }; // System.InvalidOperationException struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 { }; // System.Resources.MissingManifestResourceException struct MissingManifestResourceException_t136A089345909ADB6333D6F4E2AA84C7A00CB3FD : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 { }; // System.NotImplementedException struct NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 { }; // System.NotSupportedException struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 { }; // System.Xml.Xsl.XsltOld.RootAction struct RootAction_t94281C7ECEF5D1837C8264D38E4486DF137E7035 : public TemplateBaseAction_tBDAFC1750EBFC75C02FD71BFFECDE6268C71E47C { // System.Collections.Hashtable System.Xml.Xsl.XsltOld.RootAction::attributeSetTable Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___attributeSetTable_5; // System.Collections.Hashtable System.Xml.Xsl.XsltOld.RootAction::decimalFormatTable Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___decimalFormatTable_6; // System.Collections.Generic.List`1 System.Xml.Xsl.XsltOld.RootAction::keyList List_1_t4FAECF86A2CF2472AAED5EBAE59838F11DD78CD5* ___keyList_7; // System.Xml.Xsl.XsltOld.XsltOutput System.Xml.Xsl.XsltOld.RootAction::output XsltOutput_t135AED70B0AC66A3E3BCCC462AD7B0B35FCC7124* ___output_8; // System.Xml.Xsl.XsltOld.Stylesheet System.Xml.Xsl.XsltOld.RootAction::builtInSheet Stylesheet_t877F8405A546EAB0A26CE0F54A7F48533686E5AB* ___builtInSheet_9; // System.Security.PermissionSet System.Xml.Xsl.XsltOld.RootAction::permissions PermissionSet_t1E1A3526A8CB8CF06B47C292D349FC06F93A0240* ___permissions_10; }; // System.Reflection.TargetInvocationException struct TargetInvocationException_t46C470A37ED9947AFD45BD814387DF64665B69F2 : public ApplicationException_tA744BED4E90266BD255285CD4CF909BAB3EE811A { }; // System.Xml.Serialization.UnreferencedObjectEventHandler struct UnreferencedObjectEventHandler_t7342B517610EE6E277FB060ED3C983CE68E0463A : public MulticastDelegate_t { }; // System.Xml.Xsl.XsltOld.WithParamAction struct WithParamAction_t37FFCE9EC03A70D4F0F9F046A20235E26AB9ACC1 : public VariableAction_t9CEFA9798405B9FCA0724A80692D1902659AE136 { }; // System.Xml.Serialization.XmlAttributeEventHandler struct XmlAttributeEventHandler_tA9EE5C77A13FDC19DB5B3340F27245C620480F65 : public MulticastDelegate_t { }; // System.Xml.Serialization.XmlElementEventHandler struct XmlElementEventHandler_tA1451D76D0A21C15B71AC8B380CC097DF71951F3 : public MulticastDelegate_t { }; // System.Xml.Serialization.XmlNodeEventHandler struct XmlNodeEventHandler_t32503D9F2F1A9E9E183779774CEFC13425BF6670 : public MulticastDelegate_t { }; // System.Xml.Serialization.XmlSerializationCollectionFixupCallback struct XmlSerializationCollectionFixupCallback_t7A477E768FFD9DF76301088150243A493D5A4842 : public MulticastDelegate_t { }; // System.Xml.Serialization.XmlSerializationFixupCallback struct XmlSerializationFixupCallback_t882A7D135707B29ECA0198EFF9BB512C8F54A3AE : public MulticastDelegate_t { }; // System.Xml.Serialization.XmlSerializationReadCallback struct XmlSerializationReadCallback_tAEB657961D305723E5F13AF0D7ADE852E81D413B : public MulticastDelegate_t { }; // System.Xml.Serialization.XmlSerializationWriteCallback struct XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA : public MulticastDelegate_t { }; // System.Xml.Xsl.XsltException struct XsltException_t068DA14245E560F1D8DD1C0EF96303DE84BAAE1F : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 { // System.String System.Xml.Xsl.XsltException::res String_t* ___res_18; // System.String[] System.Xml.Xsl.XsltException::args StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___args_19; // System.String System.Xml.Xsl.XsltException::sourceUri String_t* ___sourceUri_20; // System.Int32 System.Xml.Xsl.XsltException::lineNumber int32_t ___lineNumber_21; // System.Int32 System.Xml.Xsl.XsltException::linePosition int32_t ___linePosition_22; // System.String System.Xml.Xsl.XsltException::message String_t* ___message_23; }; // System.ArgumentNullException struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129 : public ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263 { }; // System.Xml.Xsl.XsltCompileException struct XsltCompileException_t0F23DFF01AB6DCE2EE02944886720D42A427CFC0 : public XsltException_t068DA14245E560F1D8DD1C0EF96303DE84BAAE1F { }; // System.EmptyArray`1 struct EmptyArray_1_tDF0DD7256B115243AA6BD5558417387A734240EE_StaticFields { // T[] System.EmptyArray`1::Value ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___Value_0; }; // System.EmptyArray`1 // System.Collections.Generic.List`1 struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D_StaticFields { // T[] System.Collections.Generic.List`1::s_emptyArray ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___s_emptyArray_5; }; // System.Collections.Generic.List`1 // System.Collections.Generic.List`1 struct List_1_t4245B07839A68A90F431D9175D30BD836E9E63F8_StaticFields { // T[] System.Collections.Generic.List`1::s_emptyArray SortKeyU5BU5D_tB112E97AD4D761FB44FADBA5DB0BC56BCD0FDC11* ___s_emptyArray_5; }; // System.Collections.Generic.List`1 // System.Collections.Generic.List`1 struct List_1_t34BD5FC03C0DFF68F2817059E6FD410AD98DF02A_StaticFields { // T[] System.Collections.Generic.List`1::s_emptyArray TheQueryU5BU5D_t5289159F17230304938F4DEE4091BD1C2E0CFF02* ___s_emptyArray_5; }; // System.Collections.Generic.List`1 // System.Xml.Xsl.XsltOld.Action // System.Xml.Xsl.XsltOld.Action // System.Xml.Xsl.XsltOld.ActionFrame // System.Xml.Xsl.XsltOld.ActionFrame // System.Collections.ArrayList // System.Collections.ArrayList // System.Attribute // System.Attribute // System.Xml.Xsl.XsltOld.Avt // System.Xml.Xsl.XsltOld.Avt // System.Reflection.Binder // System.Reflection.Binder // System.Xml.Xsl.XsltOld.Compiler struct Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5_StaticFields { // System.Xml.XmlQualifiedName System.Xml.Xsl.XsltOld.Compiler::BuiltInMode XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___BuiltInMode_19; // System.String[] System.Xml.Xsl.XsltOld.Compiler::_defaultNamespaces StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ____defaultNamespaces_22; // System.Int32 System.Xml.Xsl.XsltOld.Compiler::scriptClassCounter int32_t ___scriptClassCounter_23; }; // System.Xml.Xsl.XsltOld.Compiler // System.Globalization.CultureInfo 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; }; // System.Globalization.CultureInfo // System.DBNull struct DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields { // System.DBNull System.DBNull::Value DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* ___Value_0; }; // System.DBNull // System.Security.Policy.Evidence // System.Security.Policy.Evidence // System.Collections.Hashtable struct Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_StaticFields { // System.Runtime.CompilerServices.ConditionalWeakTable`2 System.Collections.Hashtable::s_serializationInfoTable ConditionalWeakTable_2_t381B9D0186C0FCC3F83C0696C28C5001468A7858* ___s_serializationInfoTable_21; }; // System.Collections.Hashtable // System.Xml.Xsl.XsltOld.InputScopeManager // System.Xml.Xsl.XsltOld.InputScopeManager // System.Xml.Xsl.Xslt.KeywordsTable // System.Xml.Xsl.Xslt.KeywordsTable // System.Reflection.MemberInfo // System.Reflection.MemberInfo // System.Xml.Xsl.XsltOld.NavigatorInput // System.Xml.Xsl.XsltOld.NavigatorInput // System.Xml.Xsl.NoOperationDebugger // System.Xml.Xsl.NoOperationDebugger // System.Runtime.Serialization.ObjectIDGenerator struct ObjectIDGenerator_tB34B9C0F2DDAED17FE8AB8D54462528D37DE101B_StaticFields { // System.Int32[] System.Runtime.Serialization.ObjectIDGenerator::sizes Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___sizes_4; }; // System.Runtime.Serialization.ObjectIDGenerator // System.Xml.Serialization.ObjectMap // System.Xml.Serialization.ObjectMap // System.Xml.Xsl.XsltOld.PrefixQName // System.Xml.Xsl.XsltOld.PrefixQName // System.Xml.Xsl.XsltOld.Processor // System.Xml.Xsl.XsltOld.Processor // System.Collections.Queue // System.Collections.Queue // System.Runtime.Serialization.SerializationInfo // System.Runtime.Serialization.SerializationInfo // System.Runtime.Serialization.SerializationInfoEnumerator // System.Runtime.Serialization.SerializationInfoEnumerator // System.Xml.Serialization.SerializationSource // System.Xml.Serialization.SerializationSource // System.Xml.Xsl.XsltOld.Sort // System.Xml.Xsl.XsltOld.Sort // MS.Internal.Xml.XPath.SortKey // MS.Internal.Xml.XPath.SortKey // System.String struct String_t_StaticFields { // System.String System.String::Empty String_t* ___Empty_6; }; // System.String // System.Text.StringBuilder // System.Text.StringBuilder // System.Xml.Xsl.XsltOld.Stylesheet // System.Xml.Xsl.XsltOld.Stylesheet // System.Xml.Serialization.TypeData struct TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704_StaticFields { // System.String[] System.Xml.Serialization.TypeData::keywords StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___keywords_12; }; // System.Xml.Serialization.TypeData // System.Uri struct Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_StaticFields { // System.String System.Uri::UriSchemeFile String_t* ___UriSchemeFile_0; // System.String System.Uri::UriSchemeFtp String_t* ___UriSchemeFtp_1; // System.String System.Uri::UriSchemeGopher String_t* ___UriSchemeGopher_2; // System.String System.Uri::UriSchemeHttp String_t* ___UriSchemeHttp_3; // System.String System.Uri::UriSchemeHttps String_t* ___UriSchemeHttps_4; // System.String System.Uri::UriSchemeWs String_t* ___UriSchemeWs_5; // System.String System.Uri::UriSchemeWss String_t* ___UriSchemeWss_6; // System.String System.Uri::UriSchemeMailto String_t* ___UriSchemeMailto_7; // System.String System.Uri::UriSchemeNews String_t* ___UriSchemeNews_8; // System.String System.Uri::UriSchemeNntp String_t* ___UriSchemeNntp_9; // System.String System.Uri::UriSchemeNetTcp String_t* ___UriSchemeNetTcp_10; // System.String System.Uri::UriSchemeNetPipe String_t* ___UriSchemeNetPipe_11; // System.String System.Uri::SchemeDelimiter String_t* ___SchemeDelimiter_12; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_ConfigInitialized bool ___s_ConfigInitialized_23; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_ConfigInitializing bool ___s_ConfigInitializing_24; // System.UriIdnScope modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_IdnScope int32_t ___s_IdnScope_25; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_IriParsing bool ___s_IriParsing_26; // System.Boolean System.Uri::useDotNetRelativeOrAbsolute bool ___useDotNetRelativeOrAbsolute_27; // System.Boolean System.Uri::IsWindowsFileSystem bool ___IsWindowsFileSystem_29; // System.Object System.Uri::s_initLock RuntimeObject* ___s_initLock_30; // System.Char[] System.Uri::HexLowerChars CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___HexLowerChars_34; // System.Char[] System.Uri::_WSchars CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ____WSchars_35; }; // System.Uri // MS.Internal.Xml.XPath.XPathComparerHelper // MS.Internal.Xml.XPath.XPathComparerHelper // System.Xml.XPath.XPathDocument // System.Xml.XPath.XPathDocument // System.Xml.XPath.XPathNodeIterator // System.Xml.XPath.XPathNodeIterator // MS.Internal.Xml.XPath.XPathSortComparer // MS.Internal.Xml.XPath.XPathSortComparer // System.Xml.Serialization.XmlAttributeOverrides // System.Xml.Serialization.XmlAttributeOverrides // System.Xml.Serialization.XmlMapping // System.Xml.Serialization.XmlMapping // System.Xml.XmlNamespaceManager struct XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F_StaticFields { // System.Xml.IXmlNamespaceResolver modreq(System.Runtime.CompilerServices.IsVolatile) System.Xml.XmlNamespaceManager::s_EmptyResolver RuntimeObject* ___s_EmptyResolver_0; }; // System.Xml.XmlNamespaceManager // System.Xml.XmlNode // System.Xml.XmlNode // System.Xml.XmlQualifiedName struct XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_StaticFields { // System.Xml.XmlQualifiedName/HashCodeOfStringDelegate System.Xml.XmlQualifiedName::hashCodeDelegate HashCodeOfStringDelegate_t25F1FA9B737C4313ED341BA7AAB31694DC3669DA* ___hashCodeDelegate_0; // System.Xml.XmlQualifiedName System.Xml.XmlQualifiedName::Empty XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___Empty_4; }; // System.Xml.XmlQualifiedName // System.Xml.XmlReader struct XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD_StaticFields { // System.UInt32 System.Xml.XmlReader::IsTextualNodeBitmap uint32_t ___IsTextualNodeBitmap_0; // System.UInt32 System.Xml.XmlReader::CanReadContentAsBitmap uint32_t ___CanReadContentAsBitmap_1; // System.UInt32 System.Xml.XmlReader::HasValueBitmap uint32_t ___HasValueBitmap_2; }; // System.Xml.XmlReader // System.Xml.XmlConfiguration.XmlReaderSection // System.Xml.XmlConfiguration.XmlReaderSection // System.Xml.Serialization.XmlReflectionImporter struct XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6_StaticFields { // System.String System.Xml.Serialization.XmlReflectionImporter::errSimple String_t* ___errSimple_7; // System.String System.Xml.Serialization.XmlReflectionImporter::errSimple2 String_t* ___errSimple2_8; }; // System.Xml.Serialization.XmlReflectionImporter // System.Xml.XmlResolver // System.Xml.XmlResolver // System.Xml.Schema.XmlSchemaSet // System.Xml.Schema.XmlSchemaSet // System.Xml.Serialization.XmlSerializationGeneratedCode // System.Xml.Serialization.XmlSerializationGeneratedCode // System.Xml.Serialization.XmlSerializer struct XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B_StaticFields { // System.Int32 System.Xml.Serialization.XmlSerializer::generationThreshold int32_t ___generationThreshold_0; // System.Boolean System.Xml.Serialization.XmlSerializer::backgroundGeneration bool ___backgroundGeneration_1; // System.Boolean System.Xml.Serialization.XmlSerializer::deleteTempFiles bool ___deleteTempFiles_2; // System.Boolean System.Xml.Serialization.XmlSerializer::generatorFallback bool ___generatorFallback_3; // System.Collections.Hashtable System.Xml.Serialization.XmlSerializer::serializerTypes Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___serializerTypes_7; }; // System.Xml.Serialization.XmlSerializer // System.Xml.Serialization.XmlSerializerFactory struct XmlSerializerFactory_t2486639A11775A86C56EA319CD0AF4848B465BA1_StaticFields { // System.Collections.Hashtable System.Xml.Serialization.XmlSerializerFactory::serializersBySource Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___serializersBySource_0; }; // System.Xml.Serialization.XmlSerializerFactory // System.Xml.Serialization.XmlSerializerImplementation // System.Xml.Serialization.XmlSerializerImplementation // System.Xml.Serialization.XmlSerializerNamespaces // System.Xml.Serialization.XmlSerializerNamespaces // System.Xml.Serialization.XmlTypeMapElementInfo // System.Xml.Serialization.XmlTypeMapElementInfo // System.Xml.Serialization.XmlTypeMapMember // System.Xml.Serialization.XmlTypeMapMember // System.Xml.XmlWriter // System.Xml.XmlWriter // System.Xml.XmlWriterSettings // System.Xml.XmlWriterSettings // System.Xml.Xsl.XslCompiledTransform // System.Xml.Xsl.XslCompiledTransform // System.Xml.Xsl.XslTransform // System.Xml.Xsl.XslTransform // System.Xml.Xsl.XsltArgumentList // System.Xml.Xsl.XsltArgumentList // System.Xml.XmlConfiguration.XsltConfigSection // System.Xml.XmlConfiguration.XsltConfigSection // System.Xml.Xsl.XsltSettings // System.Xml.Xsl.XsltSettings // System.Xml.Serialization.EnumMap/EnumMapMember // System.Xml.Serialization.EnumMap/EnumMapMember // System.Xml.Serialization.XmlSerializationReader/CollectionFixup // System.Xml.Serialization.XmlSerializationReader/CollectionFixup // System.Xml.Serialization.XmlSerializationReader/CollectionItemFixup // System.Xml.Serialization.XmlSerializationReader/CollectionItemFixup // System.Xml.Serialization.XmlSerializationReader/Fixup // System.Xml.Serialization.XmlSerializationReader/Fixup // System.Xml.Serialization.XmlSerializationReader/WriteCallbackInfo // System.Xml.Serialization.XmlSerializationReader/WriteCallbackInfo // System.Xml.Serialization.XmlSerializationReaderInterpreter/FixupCallbackInfo // System.Xml.Serialization.XmlSerializationReaderInterpreter/FixupCallbackInfo // System.Xml.Serialization.XmlSerializationReaderInterpreter/ReaderCallbackInfo // System.Xml.Serialization.XmlSerializationReaderInterpreter/ReaderCallbackInfo // System.Xml.Serialization.XmlSerializationWriter/WriteCallbackInfo // System.Xml.Serialization.XmlSerializationWriter/WriteCallbackInfo // System.Xml.Serialization.XmlSerializationWriterInterpreter/CallbackInfo // System.Xml.Serialization.XmlSerializationWriterInterpreter/CallbackInfo // System.Xml.Serialization.XmlSerializer/SerializerData // System.Xml.Serialization.XmlSerializer/SerializerData // System.Nullable`1 // System.Nullable`1 // System.Boolean struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields { // System.String System.Boolean::TrueString String_t* ___TrueString_5; // System.String System.Boolean::FalseString String_t* ___FalseString_6; }; // System.Boolean // System.Char struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17_StaticFields { // System.Byte[] System.Char::s_categoryForLatin1 ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___s_categoryForLatin1_3; }; // System.Char // System.Xml.Xsl.XsltOld.CompiledAction // System.Xml.Xsl.XsltOld.CompiledAction // System.Xml.Xsl.XsltOld.DbgCompiler // System.Xml.Xsl.XsltOld.DbgCompiler // System.Collections.DictionaryEntry // System.Collections.DictionaryEntry // System.Xml.Serialization.EnumMap // System.Xml.Serialization.EnumMap // System.Reflection.FieldInfo // System.Reflection.FieldInfo // System.Int32 // System.Int32 // System.Int64 // System.Int64 // System.IntPtr struct IntPtr_t_StaticFields { // System.IntPtr System.IntPtr::Zero intptr_t ___Zero_1; }; // System.IntPtr // System.Xml.Serialization.ListMap // System.Xml.Serialization.ListMap // System.Reflection.MethodBase // System.Reflection.MethodBase // System.Reflection.ParameterModifier // System.Reflection.ParameterModifier // System.Reflection.PropertyInfo // System.Reflection.PropertyInfo // System.Runtime.Serialization.SerializationEntry // System.Runtime.Serialization.SerializationEntry // System.IO.Stream struct Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_StaticFields { // System.IO.Stream System.IO.Stream::Null Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___Null_1; }; // System.IO.Stream // System.Runtime.Serialization.StreamingContext // System.Runtime.Serialization.StreamingContext // System.IO.TextReader struct TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7_StaticFields { // System.IO.TextReader System.IO.TextReader::Null TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* ___Null_1; }; // System.IO.TextReader // System.IO.TextWriter struct TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3_StaticFields { // System.IO.TextWriter System.IO.TextWriter::Null TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___Null_1; // System.Char[] System.IO.TextWriter::s_coreNewLine CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___s_coreNewLine_2; }; // System.IO.TextWriter // System.Xml.Serialization.UnreferencedObjectEventArgs // System.Xml.Serialization.UnreferencedObjectEventArgs // System.Void // System.Void // System.Xml.XPath.XPathNavigator struct XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13_StaticFields { // System.Xml.XPath.XPathNavigatorKeyComparer System.Xml.XPath.XPathNavigator::comparer XPathNavigatorKeyComparer_t9E68DA4BC364ECF19858E14AECCE74476362F185* ___comparer_0; // System.Char[] System.Xml.XPath.XPathNavigator::NodeTypeLetter CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___NodeTypeLetter_1; // System.Char[] System.Xml.XPath.XPathNavigator::UniqueIdTbl CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___UniqueIdTbl_2; // System.Int32[] System.Xml.XPath.XPathNavigator::ContentKindMasks Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___ContentKindMasks_3; }; // System.Xml.XPath.XPathNavigator // System.Xml.XmlAttribute // System.Xml.XmlAttribute // System.Xml.Serialization.XmlAttributeEventArgs // System.Xml.Serialization.XmlAttributeEventArgs // System.Xml.XmlDocument struct XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_StaticFields { // System.Xml.EmptyEnumerator System.Xml.XmlDocument::EmptyEnumerator EmptyEnumerator_t84EC9187C8460EE98E675ED9258AE4DF2A6776DA* ___EmptyEnumerator_42; // System.Xml.Schema.IXmlSchemaInfo System.Xml.XmlDocument::NotKnownSchemaInfo RuntimeObject* ___NotKnownSchemaInfo_43; // System.Xml.Schema.IXmlSchemaInfo System.Xml.XmlDocument::ValidSchemaInfo RuntimeObject* ___ValidSchemaInfo_44; // System.Xml.Schema.IXmlSchemaInfo System.Xml.XmlDocument::InvalidSchemaInfo RuntimeObject* ___InvalidSchemaInfo_45; }; // System.Xml.XmlDocument // System.Xml.Serialization.XmlElementEventArgs // System.Xml.Serialization.XmlElementEventArgs // System.Xml.Serialization.XmlMembersMapping // System.Xml.Serialization.XmlMembersMapping // System.Xml.Serialization.XmlNodeEventArgs // System.Xml.Serialization.XmlNodeEventArgs // System.Xml.XmlNullResolver struct XmlNullResolver_t2569417DA15677E9831E2DEFD875034F37088FB2_StaticFields { // System.Xml.XmlNullResolver System.Xml.XmlNullResolver::Singleton XmlNullResolver_t2569417DA15677E9831E2DEFD875034F37088FB2* ___Singleton_0; }; // System.Xml.XmlNullResolver // System.Xml.Serialization.XmlRootAttribute // System.Xml.Serialization.XmlRootAttribute // System.Xml.Schema.XmlSchema struct XmlSchema_t5C9506D00418BF5FD524254D0C6C405C620C941D_StaticFields { // System.Int32 System.Xml.Schema.XmlSchema::globalIdCounter int32_t ___globalIdCounter_30; }; // System.Xml.Schema.XmlSchema // System.Xml.Serialization.XmlSchemaProviderAttribute // System.Xml.Serialization.XmlSchemaProviderAttribute // System.Xml.Serialization.XmlSerializationReader // System.Xml.Serialization.XmlSerializationReader // System.Xml.Serialization.XmlSerializationWriter // System.Xml.Serialization.XmlSerializationWriter // System.Xml.Serialization.XmlTextAttribute // System.Xml.Serialization.XmlTextAttribute // System.Xml.XmlTextReader // System.Xml.XmlTextReader // System.Xml.Serialization.XmlTypeAttribute // System.Xml.Serialization.XmlTypeAttribute // System.Xml.Serialization.XmlTypeMapElementInfoList // System.Xml.Serialization.XmlTypeMapElementInfoList // System.Xml.Serialization.XmlTypeMapMemberAnyAttribute // System.Xml.Serialization.XmlTypeMapMemberAnyAttribute // System.Xml.Serialization.XmlTypeMapMemberAttribute // System.Xml.Serialization.XmlTypeMapMemberAttribute // System.Xml.Serialization.XmlTypeMapMemberElement // System.Xml.Serialization.XmlTypeMapMemberElement // System.Xml.Serialization.XmlTypeMapMemberNamespaces // System.Xml.Serialization.XmlTypeMapMemberNamespaces // System.Xml.Serialization.XmlTypeMapping // System.Xml.Serialization.XmlTypeMapping // System.Xml.Serialization.XmlTypeSerializationSource // System.Xml.Serialization.XmlTypeSerializationSource // System.Xml.XmlUrlResolver struct XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E_StaticFields { // System.Object System.Xml.XmlUrlResolver::s_DownloadManager RuntimeObject* ___s_DownloadManager_0; }; // System.Xml.XmlUrlResolver // System.Xml.XmlValidatingReader // System.Xml.XmlValidatingReader // System.Xml.Xsl.XsltContext // System.Xml.Xsl.XsltContext // System.Xml.Xsl.XsltOld.ApplyImportsAction // System.Xml.Xsl.XsltOld.ApplyImportsAction // System.Xml.Serialization.ClassMap // System.Xml.Serialization.ClassMap // System.Xml.Xsl.XsltOld.ContainerAction // System.Xml.Xsl.XsltOld.ContainerAction // System.Delegate // System.Delegate // System.Exception struct Exception_t_StaticFields { // System.Object System.Exception::s_EDILock RuntimeObject* ___s_EDILock_0; }; // System.Exception // System.Reflection.MethodInfo // System.Reflection.MethodInfo // MS.Internal.Xml.XPath.Query // MS.Internal.Xml.XPath.Query // System.RuntimeTypeHandle // System.RuntimeTypeHandle // System.Xml.Xsl.XsltOld.SortAction // System.Xml.Xsl.XsltOld.SortAction // MS.Internal.Xml.XPath.XPathArrayIterator // MS.Internal.Xml.XPath.XPathArrayIterator // System.Xml.XmlElement // System.Xml.XmlElement // System.Xml.Schema.XmlSchemaType // System.Xml.Schema.XmlSchemaType // System.Xml.Serialization.XmlSerializableMapping // System.Xml.Serialization.XmlSerializableMapping // System.Xml.Serialization.XmlSerializationReaderInterpreter struct XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_StaticFields { // System.Xml.XmlQualifiedName System.Xml.Serialization.XmlSerializationReaderInterpreter::AnyType XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___AnyType_27; // System.Object[] System.Xml.Serialization.XmlSerializationReaderInterpreter::empty_array ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___empty_array_28; }; // System.Xml.Serialization.XmlSerializationReaderInterpreter // System.Xml.Serialization.XmlSerializationWriterInterpreter // System.Xml.Serialization.XmlSerializationWriterInterpreter // System.Xml.XmlTextWriter struct XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_StaticFields { // System.String[] System.Xml.XmlTextWriter::stateName StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___stateName_26; // System.String[] System.Xml.XmlTextWriter::tokenName StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___tokenName_27; // System.Xml.XmlTextWriter/State[] System.Xml.XmlTextWriter::stateTableDefault StateU5BU5D_t41A58B7031FABDC61B34059A1FB722121203D858* ___stateTableDefault_28; // System.Xml.XmlTextWriter/State[] System.Xml.XmlTextWriter::stateTableDocument StateU5BU5D_t41A58B7031FABDC61B34059A1FB722121203D858* ___stateTableDocument_29; }; // System.Xml.XmlTextWriter // System.Xml.Serialization.XmlTypeMapMemberExpandable // System.Xml.Serialization.XmlTypeMapMemberExpandable // System.Xml.Serialization.XmlTypeMapMemberList // System.Xml.Serialization.XmlTypeMapMemberList // System.Xml.Xsl.XsltOld.ApplyTemplatesAction struct ApplyTemplatesAction_t6239D436A0DB073AAF03DC4786AE2F86E4C60793_StaticFields { // System.Xml.Xsl.XsltOld.ApplyTemplatesAction System.Xml.Xsl.XsltOld.ApplyTemplatesAction::s_BuiltInRule ApplyTemplatesAction_t6239D436A0DB073AAF03DC4786AE2F86E4C60793* ___s_BuiltInRule_5; }; // System.Xml.Xsl.XsltOld.ApplyTemplatesAction // System.Xml.Xsl.XsltOld.AttributeAction // System.Xml.Xsl.XsltOld.AttributeAction // System.SystemException // System.SystemException // System.Type 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; }; // System.Type // System.Xml.Xsl.XsltOld.VariableAction struct VariableAction_t9CEFA9798405B9FCA0724A80692D1902659AE136_StaticFields { // System.Object System.Xml.Xsl.XsltOld.VariableAction::BeingComputedMark RuntimeObject* ___BeingComputedMark_3; }; // System.Xml.Xsl.XsltOld.VariableAction // System.Xml.Schema.XmlSchemaComplexType struct XmlSchemaComplexType_t3C6B94A26B4C70D8780E4158E2A37D31BA88FEE0_StaticFields { // System.Xml.Schema.XmlSchemaComplexType System.Xml.Schema.XmlSchemaComplexType::anyTypeLax XmlSchemaComplexType_t3C6B94A26B4C70D8780E4158E2A37D31BA88FEE0* ___anyTypeLax_29; // System.Xml.Schema.XmlSchemaComplexType System.Xml.Schema.XmlSchemaComplexType::anyTypeSkip XmlSchemaComplexType_t3C6B94A26B4C70D8780E4158E2A37D31BA88FEE0* ___anyTypeSkip_30; // System.Xml.Schema.XmlSchemaComplexType System.Xml.Schema.XmlSchemaComplexType::untypedAnyType XmlSchemaComplexType_t3C6B94A26B4C70D8780E4158E2A37D31BA88FEE0* ___untypedAnyType_31; }; // System.Xml.Schema.XmlSchemaComplexType // System.Xml.Serialization.XmlTypeMapMemberAnyElement // System.Xml.Serialization.XmlTypeMapMemberAnyElement // System.Xml.Serialization.XmlTypeMapMemberFlatList // System.Xml.Serialization.XmlTypeMapMemberFlatList // System.Xml.Xsl.XsltOld.ActionFrame/XPathSortArrayIterator // System.Xml.Xsl.XsltOld.ActionFrame/XPathSortArrayIterator // System.FormatException // System.FormatException // System.InvalidCastException // System.InvalidCastException // System.InvalidOperationException // System.InvalidOperationException // System.Resources.MissingManifestResourceException // System.Resources.MissingManifestResourceException // System.NotImplementedException // System.NotImplementedException // System.NotSupportedException // System.NotSupportedException // System.Xml.Xsl.XsltOld.RootAction // System.Xml.Xsl.XsltOld.RootAction // System.Reflection.TargetInvocationException // System.Reflection.TargetInvocationException // System.Xml.Serialization.UnreferencedObjectEventHandler // System.Xml.Serialization.UnreferencedObjectEventHandler // System.Xml.Xsl.XsltOld.WithParamAction // System.Xml.Xsl.XsltOld.WithParamAction // System.Xml.Serialization.XmlAttributeEventHandler // System.Xml.Serialization.XmlAttributeEventHandler // System.Xml.Serialization.XmlElementEventHandler // System.Xml.Serialization.XmlElementEventHandler // System.Xml.Serialization.XmlNodeEventHandler // System.Xml.Serialization.XmlNodeEventHandler // System.Xml.Serialization.XmlSerializationCollectionFixupCallback // System.Xml.Serialization.XmlSerializationCollectionFixupCallback // System.Xml.Serialization.XmlSerializationFixupCallback // System.Xml.Serialization.XmlSerializationFixupCallback // System.Xml.Serialization.XmlSerializationReadCallback // System.Xml.Serialization.XmlSerializationReadCallback // System.Xml.Serialization.XmlSerializationWriteCallback // System.Xml.Serialization.XmlSerializationWriteCallback // System.Xml.Xsl.XsltException // System.Xml.Xsl.XsltException // System.ArgumentNullException // System.ArgumentNullException // System.Xml.Xsl.XsltCompileException // System.Xml.Xsl.XsltCompileException #ifdef __clang__ #pragma clang diagnostic pop #endif // 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.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.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.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.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.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.Xml.XmlQualifiedName[] struct XmlQualifiedNameU5BU5D_t95C376ACDEA9261B842F45A4C4DF9ABEE0FB35D1 : public RuntimeArray { ALIGN_FIELD (8) XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* m_Items[1]; inline XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9** 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, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Reflection.MemberInfo[] struct MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053 : public RuntimeArray { ALIGN_FIELD (8) MemberInfo_t* m_Items[1]; inline MemberInfo_t* GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline MemberInfo_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, MemberInfo_t* value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline MemberInfo_t* GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline MemberInfo_t** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, MemberInfo_t* value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Reflection.ParameterModifier[] struct ParameterModifierU5BU5D_t685261AD991B1E6582A0E53243DEE3B745E13364 : public RuntimeArray { ALIGN_FIELD (8) ParameterModifier_t75F1AF13B2AD5EDBD3A3579FD337D0A66E3FF510 m_Items[1]; inline ParameterModifier_t75F1AF13B2AD5EDBD3A3579FD337D0A66E3FF510 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline ParameterModifier_t75F1AF13B2AD5EDBD3A3579FD337D0A66E3FF510* 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, ParameterModifier_t75F1AF13B2AD5EDBD3A3579FD337D0A66E3FF510 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____byRef_0), (void*)NULL); } inline ParameterModifier_t75F1AF13B2AD5EDBD3A3579FD337D0A66E3FF510 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline ParameterModifier_t75F1AF13B2AD5EDBD3A3579FD337D0A66E3FF510* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, ParameterModifier_t75F1AF13B2AD5EDBD3A3579FD337D0A66E3FF510 value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____byRef_0), (void*)NULL); } }; // System.Xml.Schema.XmlSchema[] struct XmlSchemaU5BU5D_t5DB5D05598D599A3F21C7D3D9A9F3F000AD6A4D3 : public RuntimeArray { ALIGN_FIELD (8) XmlSchema_t5C9506D00418BF5FD524254D0C6C405C620C941D* m_Items[1]; inline XmlSchema_t5C9506D00418BF5FD524254D0C6C405C620C941D* GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline XmlSchema_t5C9506D00418BF5FD524254D0C6C405C620C941D** 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, XmlSchema_t5C9506D00418BF5FD524254D0C6C405C620C941D* value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline XmlSchema_t5C9506D00418BF5FD524254D0C6C405C620C941D* GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline XmlSchema_t5C9506D00418BF5FD524254D0C6C405C620C941D** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, XmlSchema_t5C9506D00418BF5FD524254D0C6C405C620C941D* value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Xml.Serialization.XmlTypeMapMemberAttribute[] struct XmlTypeMapMemberAttributeU5BU5D_tD4F816722F17A6B481400D6F933E68A38D97EB83 : public RuntimeArray { ALIGN_FIELD (8) XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* m_Items[1]; inline XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4** 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, XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Xml.Serialization.EnumMap/EnumMapMember[] struct EnumMapMemberU5BU5D_t9142B305BA0F44DC126D50BA43D74FAA86A7D520 : public RuntimeArray { ALIGN_FIELD (8) EnumMapMember_tB7A0813F20CFA0758843C38C2ECE325B13893E38* m_Items[1]; inline EnumMapMember_tB7A0813F20CFA0758843C38C2ECE325B13893E38* GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline EnumMapMember_tB7A0813F20CFA0758843C38C2ECE325B13893E38** 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, EnumMapMember_tB7A0813F20CFA0758843C38C2ECE325B13893E38* value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline EnumMapMember_tB7A0813F20CFA0758843C38C2ECE325B13893E38* GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline EnumMapMember_tB7A0813F20CFA0758843C38C2ECE325B13893E38** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, EnumMapMember_tB7A0813F20CFA0758843C38C2ECE325B13893E38* value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)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.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.Boolean System.Nullable`1::get_HasValue() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_gshared_inline (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* __this, const RuntimeMethod* method) ; // System.Void System.Nullable`1::.ctor(T) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m4FAA8281CB4EFFD8B817734351FB3AC20A0CD6F5_gshared (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* __this, bool ___0_value, const RuntimeMethod* method) ; // T System.Nullable`1::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Nullable_1_get_Value_mE2C54C6AE9FC9F05BF44CD9D7D61DC6CD56E3E28_gshared (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* __this, 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.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) ; // 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* ___0_item, const RuntimeMethod* method) ; // System.Void System.Collections.Generic.List`1::Sort(System.Collections.Generic.IComparer`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_m4204C143D97E871DF2553329CFB0FBE3CD1A01F2_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___0_comparer, const RuntimeMethod* method) ; // T[] System.Array::Empty() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* Array_Empty_TisRuntimeObject_mFB8A63D602BB6974D31E20300D9EB89C6FE7C278_gshared_inline (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.Xml.Serialization.XmlSerializationReader::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReader__ctor_mE7A1AB3E151A31FE7D934FBFBB9823F5C0D70C68 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, const RuntimeMethod* method) ; // System.Xml.Serialization.SerializationFormat System.Xml.Serialization.XmlMapping::get_Format() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlMapping_get_Format_mB9ACDCC642A2589BF20C9D02C2FA14F2C5D1C3F3_inline (XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* __this, const RuntimeMethod* method) ; // System.Collections.ArrayList System.Xml.Serialization.XmlMapping::get_RelatedMaps() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* XmlMapping_get_RelatedMaps_m359C8ADACB98609060F82DCB82FB18E39274918C_inline (XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* __this, const RuntimeMethod* method) ; // System.Xml.Serialization.TypeData System.Xml.Serialization.XmlTypeMapping::get_TypeData() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, const RuntimeMethod* method) ; // System.Xml.Serialization.SchemaTypes System.Xml.Serialization.TypeData::get_SchemaType() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline (TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter/ReaderCallbackInfo::.ctor(System.Xml.Serialization.XmlSerializationReaderInterpreter,System.Xml.Serialization.XmlTypeMapping) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReaderCallbackInfo__ctor_mA1DE9023122B9D262150A2AABCCB839AC4E31CBC (ReaderCallbackInfo_t414F9FC8F93718A4EAF961E66DE7A6C43B6A08FB* __this, XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* ___0_sri, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___1_typeMap, const RuntimeMethod* method) ; // System.String System.Xml.Serialization.XmlTypeMapping::get_XmlType() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlTypeMapping_get_XmlType_m5A30CB4EE3541CC1C65003757D5E743042846222_inline (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, const RuntimeMethod* method) ; // System.String System.Xml.Serialization.XmlMapping::get_Namespace() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlMapping_get_Namespace_m196651C91FB3C3442AC616C977345E89450F024F_inline (XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* __this, const RuntimeMethod* method) ; // System.Type System.Xml.Serialization.TypeData::get_Type() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t* TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline (TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationReadCallback::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReadCallback__ctor_m3E8920B08440F5007D60B89120F500D80C24B4F7 (XmlSerializationReadCallback_tAEB657961D305723E5F13AF0D7ADE852E81D413B* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationReader::AddReadCallback(System.String,System.String,System.Type,System.Xml.Serialization.XmlSerializationReadCallback) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReader_AddReadCallback_m7FBB39194FAA252273D04AAB981A83D81A690E98 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, String_t* ___0_name, String_t* ___1_ns, Type_t* ___2_type, XmlSerializationReadCallback_tAEB657961D305723E5F13AF0D7ADE852E81D413B* ___3_read, const RuntimeMethod* method) ; // System.Xml.XmlReader System.Xml.Serialization.XmlSerializationReader::get_Reader() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, const RuntimeMethod* method) ; // System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadRoot(System.Xml.Serialization.XmlTypeMapping) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadRoot_m86237F7D7333192034B74CFAF2BCE5019CCB3F23 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___0_rootMap, const RuntimeMethod* method) ; // System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadEncodedObject(System.Xml.Serialization.XmlTypeMapping) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadEncodedObject_m9CC3C125A75A6B0D04818456CD6C37A5D22453C0 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___0_typeMap, const RuntimeMethod* method) ; // System.String System.Xml.Serialization.XmlMapping::get_ElementName() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlMapping_get_ElementName_m2BDBF7797A1F38972A4355CF694E0D468B2A9FC0_inline (XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* __this, const RuntimeMethod* method) ; // System.Boolean System.String::op_Equality(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1 (String_t* ___0_a, String_t* ___1_b, const RuntimeMethod* method) ; // System.Object System.Xml.Serialization.XmlSerializationReader::ReadReferencedElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReader_ReadReferencedElement_mFB866A61C9C26FA31E53EFCB673506A455120493 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, const RuntimeMethod* method) ; // System.Exception System.Xml.Serialization.XmlSerializationReader::CreateUnknownNodeException() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* XmlSerializationReader_CreateUnknownNodeException_mF60B75FE5A6871E6D670468C430AF474F19DC721 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationReader::UnknownNode(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReader_UnknownNode_m2F762DBC510F96D1B12D002D405F4CEFBF2A2E18 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, RuntimeObject* ___0_o, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationReader::ReadReferencedElements() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReader_ReadReferencedElements_m49D3E58756DF9713D6C2D358461E020FC7855BF8 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, const RuntimeMethod* method) ; // System.Int32 System.Xml.Serialization.XmlMembersMapping::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlMembersMapping_get_Count_mDAFF3965B76D19DE0EFAE018FEE1B429419855A7 (XmlMembersMapping_t0D686C86E19B598F10E53AF79EC905A7E2BDB62C* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.Serialization.XmlMembersMapping::get_HasWrapperElement() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlMembersMapping_get_HasWrapperElement_mE921652D9CEADD03E4BCC13C9AC26E457C640CE5_inline (XmlMembersMapping_t0D686C86E19B598F10E53AF79EC905A7E2BDB62C* __this, const RuntimeMethod* method) ; // System.Xml.Serialization.ObjectMap System.Xml.Serialization.XmlMapping::get_ObjectMap() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0* XmlMapping_get_ObjectMap_m63D1AEAC8EDD8396357898D337E350673A1E9003_inline (XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* __this, const RuntimeMethod* method) ; // System.Collections.ArrayList System.Xml.Serialization.ClassMap::get_AllMembers() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ClassMap_get_AllMembers_m68939A09AB79846A722998916E288759CB918FED_inline (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.Serialization.XmlTypeMapMember::get_IsReturnValue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeMapMember_get_IsReturnValue_m2FF8236466A439AB4412508BE3D78C3C71A47481 (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, const RuntimeMethod* method) ; // System.Xml.Serialization.TypeData System.Xml.Serialization.XmlTypeMapMember::get_TypeData() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.Serialization.TypeData::get_IsValueType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeData_get_IsValueType_m6A1F44C35FE034599DE34B16D1E5DFD8B83A021B (TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* __this, const RuntimeMethod* method) ; // System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::CreateInstance(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_CreateInstance_m9CB41129916C0B5A2323C6EBD6031BB9CF3B693C (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, Type_t* ___0_type, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::SetMemberValueFromAttr(System.Xml.Serialization.XmlTypeMapMember,System.Object,System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReaderInterpreter_SetMemberValueFromAttr_m7DCD796BFED1BC399DDA708281D49BAF3EF5CAF8 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* ___0_member, RuntimeObject* ___1_ob, RuntimeObject* ___2_value, bool ___3_isValueList, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlConvert::ToBoolean(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlConvert_ToBoolean_mB95C798BD6D849071E6A686CBF85851C25C7006A (String_t* ___0_s, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadAttributeMembers(System.Xml.Serialization.ClassMap,System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReaderInterpreter_ReadAttributeMembers_m7DAF4EA9F9401AC7C7ED1C8BC89E28C607203EB9 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* ___0_map, RuntimeObject* ___1_ob, bool ___2_isValueList, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadMembers(System.Xml.Serialization.ClassMap,System.Object,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReaderInterpreter_ReadMembers_m92FC821665FFF506E537CCDA5A70F4B1172E626B (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* ___0_map, RuntimeObject* ___1_ob, bool ___2_isValueList, bool ___3_readBySoapOrder, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationReader::ReadEndElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReader_ReadEndElement_mA33A1CB94EF5CA65501A3F63C4EBEBC53662E35E (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, const RuntimeMethod* method) ; // System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadXmlNodeElement(System.Xml.Serialization.XmlTypeMapping,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadXmlNodeElement_mDDA1AC3864A682EB162DF1A8A7A3A05B80674709 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___0_typeMap, bool ___1_isNullable, const RuntimeMethod* method) ; // System.Boolean System.Xml.Serialization.XmlTypeMapping::get_IsAny() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlTypeMapping_get_IsAny_m0C45955548B231D2E892D2924768B068138CBDD8_inline (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, const RuntimeMethod* method) ; // System.Boolean System.String::op_Inequality(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6 (String_t* ___0_a, String_t* ___1_b, const RuntimeMethod* method) ; // System.Boolean System.Xml.Serialization.XmlTypeMapping::get_IsNullable() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlTypeMapping_get_IsNullable_m2CE4D69DE9C4D1A7AFC01D0BE8C2369BD1C8107B_inline (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, const RuntimeMethod* method) ; // System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadListElement(System.Xml.Serialization.XmlTypeMapping,System.Boolean,System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadListElement_m9DA9C6F2AC8812B8783E85AF2F99A4FE6CB14B14 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___0_typeMap, bool ___1_isNullable, RuntimeObject* ___2_list, bool ___3_canCreateInstance, const RuntimeMethod* method) ; // System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadPrimitiveElement(System.Xml.Serialization.XmlTypeMapping,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadPrimitiveElement_m93C17C23DF8E7F7F2501CA2452E5CEA6EF2551A6 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___0_typeMap, bool ___1_isNullable, const RuntimeMethod* method) ; // System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadEnumElement(System.Xml.Serialization.XmlTypeMapping,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadEnumElement_mB13411EB63D3EEEF92A41C2E3E29B243132E02B4 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___0_typeMap, bool ___1_isNullable, const RuntimeMethod* method) ; // System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadXmlSerializableElement(System.Xml.Serialization.XmlTypeMapping,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadXmlSerializableElement_mEE3EDB95A3BF6553D4C677380E0C98CE9A977442 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___0_typeMap, bool ___1_isNullable, 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* ___0_message, const RuntimeMethod* method) ; // System.Boolean System.Xml.Serialization.XmlSerializationReader::ReadNull() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlSerializationReader_ReadNull_mA31B425F49779DE377E7CAD9786EE664D032FFB6 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, const RuntimeMethod* method) ; // System.Xml.XmlQualifiedName System.Xml.Serialization.XmlSerializationReader::GetXsiType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* XmlSerializationReader_GetXsiType_m4410C02427EB3A9BBD0FE460437AE86AADCA8D2B (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlQualifiedName::op_Inequality(System.Xml.XmlQualifiedName,System.Xml.XmlQualifiedName) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlQualifiedName_op_Inequality_m8A82F5213618F15B887A45C7B1461EB5C14C86A0 (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___0_a, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___1_b, const RuntimeMethod* method) ; // System.String System.Xml.XmlQualifiedName::get_Name() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* __this, const RuntimeMethod* method) ; // System.String System.Xml.XmlQualifiedName::get_Namespace() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlQualifiedName_get_Namespace_m0CAE4A651EF1CA6F0EB657C83608A796038A2615_inline (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* __this, const RuntimeMethod* method) ; // System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlTypeMapping::GetRealElementMap(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* XmlTypeMapping_GetRealElementMap_m2488C8E8ABFB81EE1181A68DA85C142579599ED8 (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, String_t* ___0_name, String_t* ___1_ens, const RuntimeMethod* method) ; // System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57 (RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ___0_handle, const RuntimeMethod* method) ; // System.Boolean System.Type::op_Equality(System.Type,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC (Type_t* ___0_left, Type_t* ___1_right, const RuntimeMethod* method) ; // System.Object System.Xml.Serialization.XmlSerializationReader::ReadTypedPrimitive(System.Xml.XmlQualifiedName) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReader_ReadTypedPrimitive_mF25502A447F9DF1215F119C730C0874C5338B88C (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___0_type, const RuntimeMethod* method) ; // System.Exception System.Xml.Serialization.XmlSerializationReader::CreateUnknownTypeException(System.Xml.XmlQualifiedName) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* XmlSerializationReader_CreateUnknownTypeException_m158A6883E878D4147D071564F3BFF3B6B42D5296 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___0_type, const RuntimeMethod* method) ; // System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::CreateInstance(System.Type,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_CreateInstance_m52A3B7A31873EA03F569A85E7F1E874AAA07F55E (Type_t* ___0_type, bool ___1_nonPublic, const RuntimeMethod* method) ; // System.Xml.Serialization.XmlTypeMapMemberAnyAttribute System.Xml.Serialization.ClassMap::get_DefaultAnyAttributeMember() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlTypeMapMemberAnyAttribute_t936B5C08A209D3F342575957ACCBF1F7984095F1* ClassMap_get_DefaultAnyAttributeMember_m88660193A65BE269D1E4F7ADEA4778BC78D40B08_inline (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method) ; // System.Xml.Serialization.XmlTypeMapMemberAttribute System.Xml.Serialization.ClassMap::GetAttribute(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* ClassMap_GetAttribute_mFAA51D19B1F7AAC3105A581FA1F2738B15BBBCD0 (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, String_t* ___0_name, String_t* ___1_ns, const RuntimeMethod* method) ; // System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlTypeMapMemberAttribute::get_MappedType() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* XmlTypeMapMemberAttribute_get_MappedType_mD2DBE6E539F3B9A6F922C1DD37084DCDACE07025_inline (XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* __this, const RuntimeMethod* method) ; // System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::GetValueFromXmlString(System.String,System.Xml.Serialization.TypeData,System.Xml.Serialization.XmlTypeMapping) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_GetValueFromXmlString_m21DC6B65AAF2E79AE5EC5C7B62A5E40B4C5498CA (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, String_t* ___0_value, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___1_typeData, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___2_typeMap, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::SetMemberValue(System.Xml.Serialization.XmlTypeMapMember,System.Object,System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReaderInterpreter_SetMemberValue_mABB21E3AEFF2EB1B198A0B915622E84D542D1D99 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* ___0_member, RuntimeObject* ___1_ob, RuntimeObject* ___2_value, bool ___3_isValueList, const RuntimeMethod* method) ; // System.Boolean System.Xml.Serialization.XmlSerializationReader::IsXmlnsAttribute(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlSerializationReader_IsXmlnsAttribute_m82CD3BEBE6E81699B23FDC923B5029DAFB05B06D (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, String_t* ___0_name, const RuntimeMethod* method) ; // System.Xml.Serialization.XmlTypeMapMemberNamespaces System.Xml.Serialization.ClassMap::get_NamespaceDeclarations() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlTypeMapMemberNamespaces_t1493E4BE21467D51FB1CDE88D538FA97815D3112* ClassMap_get_NamespaceDeclarations_m5EF288255B1F07783CF889C781DB6D6BEAF133E1_inline (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method) ; // System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::GetMemberValue(System.Xml.Serialization.XmlTypeMapMember,System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_GetMemberValue_mFA240C18B7888ACCAC3CED8800EAF6E2670BEF41 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* ___0_member, RuntimeObject* ___1_ob, bool ___2_isValueList, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializerNamespaces::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializerNamespaces__ctor_mBE51E0E9233359BCF1602C6200E9D85084E83E91 (XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializerNamespaces::Add(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializerNamespaces_Add_m4204802D44C6E5763F669D618F0B3D2B7BE49C4B (XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93* __this, String_t* ___0_prefix, String_t* ___1_ns, const RuntimeMethod* method) ; // System.Xml.XmlDocument System.Xml.Serialization.XmlSerializationReader::get_Document() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* XmlSerializationReader_get_Document_mBDB6BC605B4A08F7174559852E281793D8F20CBA (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationReader::ParseWsdlArrayType(System.Xml.XmlAttribute) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReader_ParseWsdlArrayType_mD66086D7B4A80B5F9F77DC8546472BD1B8087598 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* ___0_attr, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::AddListValue(System.Xml.Serialization.TypeData,System.Object&,System.Int32,System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReaderInterpreter_AddListValue_m12D3A8F7A8612DBA89872F736C275807EBB57EA4 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___0_listType, RuntimeObject** ___1_list, int32_t ___2_index, RuntimeObject* ___3_value, bool ___4_canCreateInstance, const RuntimeMethod* method) ; // System.Array System.Xml.Serialization.XmlSerializationReader::ShrinkArray(System.Array,System.Int32,System.Type,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray* XmlSerializationReader_ShrinkArray_m76FE9D0683F22CDDEECBC9284FB9BB6C3A238552 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, RuntimeArray* ___0_a, int32_t ___1_length, Type_t* ___2_elementType, bool ___3_isNullable, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::SetListMembersDefaults(System.Xml.Serialization.ClassMap,System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReaderInterpreter_SetListMembersDefaults_m9C3CFA88D73B9F2C87B02C6787802F9EB9CEE954 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* ___0_map, RuntimeObject* ___1_ob, bool ___2_isValueList, const RuntimeMethod* method) ; // System.Collections.ICollection System.Xml.Serialization.ClassMap::get_ElementMembers() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* ClassMap_get_ElementMembers_m28BCFDC1D5FC50F910FBCF82D9C30472482A505D_inline (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method) ; // System.Xml.Serialization.XmlTypeMapMember System.Xml.Serialization.ClassMap::get_ReturnMember() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* ClassMap_get_ReturnMember_m17D5284F4873CF87F02814AF5BD96CFD23737F32_inline (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method) ; // System.Collections.ArrayList System.Xml.Serialization.ClassMap::get_FlatLists() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ClassMap_get_FlatLists_m852941CF165941C1EB03137482353B221F335DE9_inline (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.Serialization.XmlSerializationReaderInterpreter::IsReadOnly(System.Xml.Serialization.XmlTypeMapMember,System.Xml.Serialization.TypeData,System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlSerializationReaderInterpreter_IsReadOnly_m2C12724B3F9B47E6A7F30F73BD6279385A29AD58 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* ___0_member, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___1_memType, RuntimeObject* ___2_ob, bool ___3_isValueList, const RuntimeMethod* method) ; // System.Int32 System.Xml.Serialization.XmlTypeMapMemberExpandable::get_FlatArrayIndex() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlTypeMapMemberExpandable_get_FlatArrayIndex_mD83A6C690F8EA40C0FAF882E1549E0BD0831CC83_inline (XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* __this, const RuntimeMethod* method) ; // System.Object System.Xml.Serialization.XmlTypeMapMember::GetValue(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlTypeMapMember_GetValue_mB762710324E36B398ED02670400043C5462A5ECF (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, RuntimeObject* ___0_ob, const RuntimeMethod* method) ; // System.Boolean System.Type::get_IsArray() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsArray_mB9B8CA713B2AA9D6AFECC24E05AF78D22532B673 (Type_t* __this, const RuntimeMethod* method) ; // System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::InitializeList(System.Xml.Serialization.TypeData) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_InitializeList_m9B8DC26F07D1636336A807E8AE75FA5E5BA74DA6 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___0_listType, const RuntimeMethod* method) ; // System.String System.Xml.Serialization.XmlTypeMapMemberElement::get_ChoiceMember() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlTypeMapMemberElement_get_ChoiceMember_m182A4AB876036DDA005F0760EF51C5FCA7F682D8_inline (XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* __this, const RuntimeMethod* method) ; // System.Xml.Serialization.TypeData System.Xml.Serialization.XmlTypeMapMemberElement::get_ChoiceTypeData() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* XmlTypeMapMemberElement_get_ChoiceTypeData_m1C40274707406AC69F5536776D0276266332B845_inline (XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter/FixupCallbackInfo::.ctor(System.Xml.Serialization.XmlSerializationReaderInterpreter,System.Xml.Serialization.ClassMap,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FixupCallbackInfo__ctor_m21B1A474D5B56C19F301C9D9EF4B235B7B8AE639 (FixupCallbackInfo_t4F096851101229F0692C9397633C653DE18E2475* __this, XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* ___0_sri, ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* ___1_map, bool ___2_isValueList, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationFixupCallback::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationFixupCallback__ctor_mB41C79CFAA7CD40502E2C121836DF8A12FB521DD (XmlSerializationFixupCallback_t882A7D135707B29ECA0198EFF9BB512C8F54A3AE* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationReader/Fixup::.ctor(System.Object,System.Xml.Serialization.XmlSerializationFixupCallback,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Fixup__ctor_m7213A65447CD4248AA5F086E4C71C792B5A21F14 (Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* __this, RuntimeObject* ___0_o, XmlSerializationFixupCallback_t882A7D135707B29ECA0198EFF9BB512C8F54A3AE* ___1_callback, int32_t ___2_count, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationReader::AddFixup(System.Xml.Serialization.XmlSerializationReader/Fixup) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReader_AddFixup_mF54D9CAC7E4D3149F057CBDD182C76A2EC78F794 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* ___0_fixup, const RuntimeMethod* method) ; // System.Xml.Serialization.XmlTypeMapElementInfo System.Xml.Serialization.ClassMap::GetElement(System.String,System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* ClassMap_GetElement_m5F9EF895E43E4009CB54E866BBD4C52A2BAE3528 (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, String_t* ___0_name, String_t* ___1_ns, int32_t ___2_minimalOrder, const RuntimeMethod* method) ; // System.Xml.Serialization.XmlTypeMapElementInfoList System.Xml.Serialization.XmlTypeMapMemberElement::get_ElementInfo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* XmlTypeMapMemberElement_get_ElementInfo_m62E3A285CDAFF7621EA03A0DA6B1966D5432D337 (XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.Serialization.ClassMap::get_IsOrderDependentMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ClassMap_get_IsOrderDependentMap_m0B479BCCCAECE8D9D5DC7659B5CFFB7CB949C93A (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method) ; // System.Xml.Serialization.XmlTypeMapElementInfo System.Xml.Serialization.ClassMap::GetElement(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* ClassMap_GetElement_m60767CE50696152D35651B8202236E105721F3C3 (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, String_t* ___0_name, String_t* ___1_ns, const RuntimeMethod* method) ; // System.Xml.Serialization.XmlTypeMapMember System.Xml.Serialization.XmlTypeMapElementInfo::get_Member() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method) ; // System.Int32 System.Xml.Serialization.XmlTypeMapMember::get_Index() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlTypeMapMember_get_Index_m3EAB1243B03E5DBD10C6E7CA245E5A6C04406D12_inline (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, const RuntimeMethod* method) ; // System.Int32 System.Xml.Serialization.XmlTypeMapElementInfo::get_ExplicitOrder() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlTypeMapElementInfo_get_ExplicitOrder_m929232F83C9F294565C56EC38C5BACCA530DEDAB_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, 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.Boolean System.Xml.Serialization.XmlTypeMapElementInfo::get_MultiReferenceType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeMapElementInfo_get_MultiReferenceType_m4176293D1962C6176A28D752B43F207817A93D2F (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method) ; // System.String[] System.Xml.Serialization.XmlSerializationReader/Fixup::get_Ids() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* Fixup_get_Ids_m9B1A1A8EC0662A14A92B000F90A276C18E7690B2_inline (Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* __this, const RuntimeMethod* method) ; // System.Object System.Xml.Serialization.XmlSerializationReader::ReadReferencingElement(System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReader_ReadReferencingElement_mC2F7F98DBC0683ECE865560DBB9F1CBA0798EBB6 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, String_t** ___0_fixupReference, const RuntimeMethod* method) ; // System.Xml.Serialization.TypeData System.Xml.Serialization.XmlTypeMapElementInfo::get_TypeData() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method) ; // System.String System.Xml.Serialization.TypeData::get_FullTypeName() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* TypeData_get_FullTypeName_m391893730DDFEE90F76197075F599FEA2E60BE43_inline (TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* __this, const RuntimeMethod* method) ; // System.Exception System.Xml.Serialization.XmlSerializationReader::CreateReadOnlyCollectionException(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* XmlSerializationReader_CreateReadOnlyCollectionException_m7FDF903691CC369CC0F6E939D337DC0A8CB734C7 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, String_t* ___0_name, const RuntimeMethod* method) ; // System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlTypeMapElementInfo::get_MappedType() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method) ; // System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::CreateList(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_CreateList_m8DEC17C3A9D8AB9C6659C503168A670217F052A3 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, Type_t* ___0_listType, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationCollectionFixupCallback::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationCollectionFixupCallback__ctor_mB50149D9773BF51E099E574127D057F454EC6DF8 (XmlSerializationCollectionFixupCallback_t7A477E768FFD9DF76301088150243A493D5A4842* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationReader/CollectionFixup::.ctor(System.Object,System.Xml.Serialization.XmlSerializationCollectionFixupCallback,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionFixup__ctor_m1F4ADF9D829F9B0BFEB1442AEB2167118F4EA0AB (CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702* __this, RuntimeObject* ___0_collection, XmlSerializationCollectionFixupCallback_t7A477E768FFD9DF76301088150243A493D5A4842* ___1_callback, String_t* ___2_id, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationReader::AddFixup(System.Xml.Serialization.XmlSerializationReader/CollectionFixup) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReader_AddFixup_m846FB4EEF12E21F5803BC41685952AFE6A3D98E1 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702* ___0_fixup, const RuntimeMethod* method) ; // System.Boolean System.Xml.Serialization.XmlTypeMapElementInfo::get_IsNullable() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlTypeMapElementInfo_get_IsNullable_m5E6F72E9E7ADFA39100C6C0FFA1585BCDE4ACE75_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method) ; // System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadObjectElement(System.Xml.Serialization.XmlTypeMapElementInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadObjectElement_mB76E426F3F5A3C4F36AC5563C3A546ECC8B6DF05 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* ___0_elem, const RuntimeMethod* method) ; // System.Object System.Xml.Serialization.XmlTypeMapElementInfo::get_ChoiceValue() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* XmlTypeMapElementInfo_get_ChoiceValue_m7BC9464A497AFA7A1BF250BA0D88928706C6412E_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.Serialization.TypeData::get_IsListType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeData_get_IsListType_m40A6A12749C9A2F1729D6411A76C62768DB2D4F2 (TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* __this, const RuntimeMethod* method) ; // System.Xml.Serialization.TypeData System.Xml.Serialization.TypeData::get_ListItemTypeData() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* TypeData_get_ListItemTypeData_m08EBC7760A430966A31E3C138C9BB359E429C6D7 (TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* __this, const RuntimeMethod* method) ; // System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadXmlNode(System.Xml.Serialization.TypeData,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadXmlNode_m1EDAD554730C9248E429BADBBA381E16C94647CA (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___0_type, bool ___1_wrapped, const RuntimeMethod* method) ; // System.String System.Xml.Serialization.TypeData::get_XmlType() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* TypeData_get_XmlType_m06749C1B19C57EB8649CBCD9B106C014DF511453_inline (TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* __this, const RuntimeMethod* method) ; // System.Object System.Xml.Serialization.XmlSerializationReader::ReadReferencingElement(System.String,System.String,System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReader_ReadReferencingElement_m83079F8026EBB9E442B5F5BD09D7E5C1B53595D0 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, String_t* ___0_name, String_t* ___1_ns, String_t** ___2_fixupReference, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlTypeMapMemberElement::SetChoice(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMemberElement_SetChoice_m70A2968411084153BBDD57111C740A75C9D7AEB5 (XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* __this, RuntimeObject* ___0_ob, RuntimeObject* ___1_choice, 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* ___0_message, const RuntimeMethod* method) ; // System.Xml.Serialization.XmlTypeMapMemberAnyElement System.Xml.Serialization.ClassMap::get_DefaultAnyElementMember() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* ClassMap_get_DefaultAnyElementMember_m65CFF55B342204FE2E39B8BDF46E733DD43C6B4B_inline (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method) ; // System.Xml.Serialization.XmlTypeMapMember System.Xml.Serialization.ClassMap::get_XmlTextCollector() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* ClassMap_get_XmlTextCollector_m3FC50A0C0DEFAC7D4D70209D7D96C58AB7D1DA09_inline (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method) ; // System.Xml.Serialization.ListMap System.Xml.Serialization.XmlTypeMapMemberFlatList::get_ListMap() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* XmlTypeMapMemberFlatList_get_ListMap_mAAD12C509481E6855A9C4865874566320C256EBC_inline (XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38* __this, const RuntimeMethod* method) ; // System.Xml.Serialization.XmlTypeMapElementInfo System.Xml.Serialization.ListMap::FindTextElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* ListMap_FindTextElement_m4A953DA460CF998CB59D87819531224C9069FC0A (ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlTypeMapMember::SetValue(System.Object,System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMember_SetValue_mE1E56C2E7FF4BC0699E6B6EF73CB23C436438F30 (RuntimeObject* ___0_ob, String_t* ___1_name, RuntimeObject* ___2_value, const RuntimeMethod* method) ; // System.Collections.ArrayList System.Xml.Serialization.ClassMap::get_ListMembers() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ClassMap_get_ListMembers_m21D695B14B2AF42EC1850374FDA24CDE2B356649_inline (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method) ; // System.Object System.Xml.Serialization.XmlSerializationReader/Fixup::get_Source() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Fixup_get_Source_mF424839086899F18C33B9604622D390C359819AE_inline (Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* __this, const RuntimeMethod* method) ; // System.Object System.Xml.Serialization.XmlSerializationReader::GetTarget(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReader_GetTarget_mA46C91CC3F9CD7D7C907903992390A28F388213F (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, String_t* ___0_id, const RuntimeMethod* method) ; // System.Boolean System.Xml.Serialization.TypeData::get_HasPublicConstructor() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TypeData_get_HasPublicConstructor_mB467688E3EC6E6B3AF0E9A179C1E173AB4FAC89D_inline (TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.Serialization.XmlTypeMapMember::IsReadOnly(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeMapMember_IsReadOnly_mE3DBCC6D4CA65E2E2CAA00D4E21C30CAAC03F805 (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, Type_t* ___0_type, const RuntimeMethod* method) ; // System.Object System.Xml.Serialization.XmlSerializationWriterInterpreter::ImplicitConvert(System.Object,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationWriterInterpreter_ImplicitConvert_mC0A90835FFBC3F85D2DB9BA8944517142467716D (RuntimeObject* ___0_obj, Type_t* ___1_type, const RuntimeMethod* method) ; // System.Int32 System.Xml.Serialization.XmlTypeMapMember::get_GlobalIndex() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlTypeMapMember_get_GlobalIndex_mC43A1F277B76C624EFAF264B32293499D51853B6_inline (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlTypeMapMember::SetValue(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMember_SetValue_m22E52C02AD75799B95A242B6B73EECFC0B20B81D (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, RuntimeObject* ___0_ob, RuntimeObject* ___1_value, const RuntimeMethod* method) ; // System.Boolean System.Xml.Serialization.XmlTypeMapMember::get_IsOptionalValueType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeMapMember_get_IsOptionalValueType_m21B5B22EAE095810603E2FE3CCD076B126272047 (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlTypeMapMember::SetValueSpecified(System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMember_SetValueSpecified_m59690B6CAF6C450B85F61653053632248FEE544C (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, RuntimeObject* ___0_ob, bool ___1_value, const RuntimeMethod* method) ; // System.Object System.Enum::ToObject(System.Type,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enum_ToObject_mD898E0819FA640BC4E98924613B5DBD41146D1FF (Type_t* ___0_enumType, RuntimeObject* ___1_value, const RuntimeMethod* method) ; // System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadPrimitiveValue(System.Xml.Serialization.XmlTypeMapElementInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadPrimitiveValue_m571D86640A7A892ABF759E35BC38F27B46C208F4 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* ___0_elem, const RuntimeMethod* method) ; // System.Xml.Serialization.IXmlSerializable System.Xml.Serialization.XmlSerializationReader::ReadSerializable(System.Xml.Serialization.IXmlSerializable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReader_ReadSerializable_m183EDA16E22E6B75BEAA74F8A514EF4FEDFFE54F (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, RuntimeObject* ___0_serializable, 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* ___0_message, const RuntimeMethod* method) ; // System.Xml.XmlQualifiedName System.Xml.Serialization.XmlSerializationReader::ReadNullableQualifiedName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* XmlSerializationReader_ReadNullableQualifiedName_mCD286FFAEE778FD6CC3627B0F11085BAD744015D (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, const RuntimeMethod* method) ; // System.Xml.XmlQualifiedName System.Xml.Serialization.XmlSerializationReader::ReadElementQualifiedName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* XmlSerializationReader_ReadElementQualifiedName_m847D8D30671D41FE44EB696DB93C1B5281AFEFAD (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, const RuntimeMethod* method) ; // System.String System.Xml.Serialization.XmlSerializationReader::ReadNullableString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlSerializationReader_ReadNullableString_mF87F51B907EF4DC621A112ACDA569F46CAF7733F (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, const RuntimeMethod* method) ; // System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadListString(System.Xml.Serialization.XmlTypeMapping,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadListString_mA0DEC8B7D4D0939BF4250109EA9C9DB49F578A21 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___0_typeMap, String_t* ___1_values, const RuntimeMethod* method) ; // System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::GetEnumValue(System.Xml.Serialization.XmlTypeMapping,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_GetEnumValue_m435EF964CCD4D11623F78F71622983D05FA4C556 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___0_typeMap, String_t* ___1_val, const RuntimeMethod* method) ; // System.Xml.XmlQualifiedName System.Xml.Serialization.XmlSerializationReader::ToXmlQualifiedName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* XmlSerializationReader_ToXmlQualifiedName_m6F9287F428E3A10A1BBE1DCEF6A504EFF5CBF1F3 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, String_t* ___0_value, const RuntimeMethod* method) ; // System.Object System.Xml.Serialization.XmlCustomFormatter::FromXmlString(System.Xml.Serialization.TypeData,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlCustomFormatter_FromXmlString_m1947DBEF2E6C21F92A675B56FAAF4C5C956AC554 (TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___0_type, String_t* ___1_value, const RuntimeMethod* method) ; // System.String System.Xml.Serialization.XmlTypeMapping::get_TypeFullName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTypeMapping_get_TypeFullName_m8330E28FE282DDE67C41ADFBC2034E6E26A7ECAB (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, const RuntimeMethod* method) ; // System.Xml.Serialization.XmlTypeMapElementInfo System.Xml.Serialization.ListMap::FindElement(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* ListMap_FindElement_mB8E8BCFD1D6C7A8C244598D1317BCC1296E47CD7 (ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* __this, String_t* ___0_elementName, String_t* ___1_ns, const RuntimeMethod* method) ; // System.String System.String::Trim() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Trim_mCD6D8C6D4CFD15225D12DB7D3E0544CA80FB8DA5 (String_t* __this, const RuntimeMethod* method) ; // System.Array System.Array::CreateInstance(System.Type,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray* Array_CreateInstance_m13B202130951A03AF5F52470A19E17D3AD2A8983 (Type_t* ___0_elementType, int32_t ___1_length, const RuntimeMethod* method) ; // System.String[] System.String::Split(System.Char,System.StringSplitOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* String_Split_m9530B73D02054692283BF35C3A27C8F2230946F4 (String_t* __this, Il2CppChar ___0_separator, int32_t ___1_options, const RuntimeMethod* method) ; // System.Xml.Serialization.XmlTypeMapElementInfoList System.Xml.Serialization.ListMap::get_ItemInfo() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* ListMap_get_ItemInfo_mF4B1E24F5658D05E8E1E6296F4A220D33E7EC579_inline (ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* __this, const RuntimeMethod* method) ; // System.Void System.Array::SetValue(System.Object,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_SetValue_mE9507B366ED84E91E92BF32649D36916F96C67B8 (RuntimeArray* __this, RuntimeObject* ___0_value, int32_t ___1_index, const RuntimeMethod* method) ; // System.Array System.Xml.Serialization.XmlSerializationReader::EnsureArrayIndex(System.Array,System.Int32,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray* XmlSerializationReader_EnsureArrayIndex_m6FA80A012C4EDDBB7CFF9E6C32A556027CB18D80 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, RuntimeArray* ___0_a, int32_t ___1_index, Type_t* ___2_elementType, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.TypeData::ConvertForAssignment(System.Object&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeData_ConvertForAssignment_m342A0D4CC583DB70A219F8D9470EAF36DC263092 (TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* __this, RuntimeObject** ___0_value, const RuntimeMethod* method) ; // System.Type System.Xml.Serialization.TypeData::get_ListItemType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* TypeData_get_ListItemType_m649E9D1FF5CF8721C54E6CCE22A66527A8A4DEC2 (TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* __this, const RuntimeMethod* method) ; // System.Reflection.MethodInfo System.Type::GetMethod(System.String,System.Type[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t* Type_GetMethod_m9E8E55EC8316CE8A2851B62AD4C73E841FEAC2EA (Type_t* __this, String_t* ___0_name, TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___1_types, const RuntimeMethod* method) ; // System.Object System.Reflection.MethodBase::Invoke(System.Object,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MethodBase_Invoke_mEEF3218648F111A8C338001A7804091A0747C826 (MethodBase_t* __this, RuntimeObject* ___0_obj, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___1_parameters, const RuntimeMethod* method) ; // System.Object System.Activator::CreateInstance(System.Type,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Activator_CreateInstance_m2BE3252B26369EA17E06A564F25172F6D002469F (Type_t* ___0_type, bool ___1_nonPublic, const RuntimeMethod* method) ; // System.Object System.Activator::CreateInstance(System.Type,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Activator_CreateInstance_mDBC65647828F8A3D3E63807B5AEA4A4ECDE397E6 (Type_t* ___0_type, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___1_args, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::CopyEnumerableList(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReaderInterpreter_CopyEnumerableList_mF303386B1B9E939D03B2223788B48647E7E43BA3 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, RuntimeObject* ___0_source, RuntimeObject* ___1_dest, const RuntimeMethod* method) ; // System.Reflection.MethodInfo System.Type::GetMethod(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t* Type_GetMethod_m66AD062187F19497DBCA900823B0C268322DC231 (Type_t* __this, String_t* ___0_name, const RuntimeMethod* method) ; // System.Xml.XmlDocument System.Xml.Serialization.XmlSerializationReader::ReadXmlDocument(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* XmlSerializationReader_ReadXmlDocument_mFBCD46F2EADC620A3B2DF95B6EAAB8AC52B28AE5 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, bool ___0_wrapped, const RuntimeMethod* method) ; // System.Xml.XmlNode System.Xml.Serialization.XmlSerializationReader::ReadXmlNode(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* XmlSerializationReader_ReadXmlNode_mD224CFB90450934FC68CF9A0D720E40CE57CE945 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, bool ___0_wrapped, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlQualifiedName::op_Equality(System.Xml.XmlQualifiedName,System.Xml.XmlQualifiedName) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlQualifiedName_op_Equality_mAE17874DCEBAFB74CBFEC5CC1EE5399470A61D44 (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___0_a, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___1_b, const RuntimeMethod* method) ; // System.Void System.Xml.XmlQualifiedName::.ctor(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlQualifiedName__ctor_m65632114A1726D9FAD0338BC2A8C28BB9D262C7B (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* __this, String_t* ___0_name, String_t* ___1_ns, const RuntimeMethod* method) ; // System.String System.Xml.Serialization.EnumMap::GetEnumName(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* EnumMap_GetEnumName_m10DDCE7A6EB14899540AF62430B6133BBAF0CB94 (EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C* __this, String_t* ___0_typeName, String_t* ___1_xmlName, const RuntimeMethod* method) ; // System.Exception System.Xml.Serialization.XmlSerializationReader::CreateUnknownConstantException(System.String,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* XmlSerializationReader_CreateUnknownConstantException_m0C39D77BDAD36BD8A62AC7BACAA8BA9767441E4F (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, String_t* ___0_value, Type_t* ___1_enumType, const RuntimeMethod* method) ; // System.Object System.Enum::Parse(System.Type,System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enum_Parse_m0316ABE916ED60AA2257A464A33A33D544EDEE12 (Type_t* ___0_enumType, String_t* ___1_value, bool ___2_ignoreCase, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::FixupMembers(System.Xml.Serialization.ClassMap,System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReaderInterpreter_FixupMembers_mE0162576E13B7E40DD786B330C4D9D79326CFB75 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* ___0_map, RuntimeObject* ___1_obfixup, bool ___2_isValueList, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationGeneratedCode::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationGeneratedCode__ctor_mBC7B26FB29C099BB456D537954F2AF3673AC28C6 (XmlSerializationGeneratedCode_tCC078B474844E7731E24085C4A5467A1A1253B7F* __this, const RuntimeMethod* method) ; // System.Void System.Collections.Hashtable::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_mD7E2F1EB1BFD683186ECD6EDBE1708AF35C3A87D (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, const RuntimeMethod* method) ; // System.Void System.Collections.ArrayList::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayList__ctor_m07DC369002304B483B9FC41DBDAF4A25AC3C9F80 (ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* __this, const RuntimeMethod* method) ; // System.Xml.XmlQualifiedName[] System.Xml.Serialization.XmlSerializerNamespaces::ToArray() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlQualifiedNameU5BU5D_t95C376ACDEA9261B842F45A4C4DF9ABEE0FB35D1* XmlSerializerNamespaces_ToArray_m36788F0D0B36CF5704BA12E554987ACAA77E0661 (XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriter/WriteCallbackInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WriteCallbackInfo__ctor_mCD5B02AA94A872AEB63A81C174520985F378E240 (WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6* __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_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987 (String_t* ___0_format, RuntimeObject* ___1_arg0, RuntimeObject* ___2_arg1, const RuntimeMethod* method) ; // System.Exception System.Xml.Serialization.XmlSerializationWriter::CreateUnknownTypeException(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* XmlSerializationWriter_CreateUnknownTypeException_m9551C746760505766F62166E975F43E6BC174F41 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, Type_t* ___0_type, const RuntimeMethod* method) ; // System.String System.String::Format(System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8 (String_t* ___0_format, RuntimeObject* ___1_arg0, const RuntimeMethod* method) ; // System.String System.Xml.Serialization.XmlSerializationWriter::GetQualifiedName(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlSerializationWriter_GetQualifiedName_m6A393BACF5677C132F4FF0717F6F96522C55D518 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___0_name, String_t* ___1_ns, const RuntimeMethod* method) ; // System.Void System.Runtime.Serialization.ObjectIDGenerator::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectIDGenerator__ctor_m26261E5BF8675579F39157564153ECA733453B10 (ObjectIDGenerator_tB34B9C0F2DDAED17FE8AB8D54462528D37DE101B* __this, const RuntimeMethod* method) ; // System.Globalization.CultureInfo System.Globalization.CultureInfo::get_InvariantCulture() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* CultureInfo_get_InvariantCulture_mD1E96DC845E34B10F78CB744B0CB5D7D63CEB1E6 (const RuntimeMethod* method) ; // System.String System.String::Format(System.IFormatProvider,System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m3844098E7C18576D263AAF62F69BE5C70BF9A744 (RuntimeObject* ___0_provider, String_t* ___1_format, RuntimeObject* ___2_arg0, const RuntimeMethod* method) ; // System.Xml.XmlWriter System.Xml.Serialization.XmlSerializationWriter::get_Writer() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteAttribute(System.String,System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteAttribute_m25B87065E059F9AA2D8E46158DB0C3A9180CC63B (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___0_prefix, String_t* ___1_localName, String_t* ___2_ns, String_t* ___3_value, const RuntimeMethod* method) ; // System.String System.Xml.Serialization.XmlSerializationWriter::GetNamespacePrefix(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlSerializationWriter_GetNamespacePrefix_m5F129F48CEF46D93DCBE7B31D2CC13A73F77494B (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___0_ns, const RuntimeMethod* method) ; // System.Void System.Xml.XmlWriter::WriteAttributeString(System.String,System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriter_WriteAttributeString_m9BECE5A394F9A9601AB66932AF0D7EF25E16AE0B (XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* __this, String_t* ___0_prefix, String_t* ___1_localName, String_t* ___2_ns, String_t* ___3_value, const RuntimeMethod* method) ; // System.Xml.XmlElement System.Xml.XmlDocument::get_DocumentElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* XmlDocument_get_DocumentElement_mE87523DCD2D59F8BA6175DBA01D70133E202A2C8 (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteNullTagEncoded(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteNullTagEncoded_mE5653B11D1EE4E31F2F81B4AEE5CE85354576127 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___0_name, String_t* ___1_ns, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteXmlNode(System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteXmlNode_m1B2279E9188950D212D082FE4A68AFE96A58D6CD (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_node, const RuntimeMethod* method) ; // System.Void System.Xml.XmlWriter::WriteStartElement(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriter_WriteStartElement_mAC8867077A8F222C966E6720B70F8808A655E3A0 (XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* __this, String_t* ___0_localName, String_t* ___1_ns, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteNullTagLiteral(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteNullTagLiteral_m721825C6D540C0D0BECDE4BD2948B1A270ACD31E (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___0_name, String_t* ___1_ns, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteElementQualifiedName(System.String,System.String,System.Xml.XmlQualifiedName,System.Xml.XmlQualifiedName) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteElementQualifiedName_m4C1FA2E99623FA45F267849A74C9A561CB7402E8 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___0_localName, String_t* ___1_ns, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___2_value, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___3_xsiType, const RuntimeMethod* method) ; // System.String System.Xml.Serialization.XmlCustomFormatter::FromXmlNCName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlCustomFormatter_FromXmlNCName_mF375A18D8AF49FAFB3818038987A25161852F615 (String_t* ___0_ncName, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteStartElement(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteStartElement_m14B47621699116DB0A0056C1437D1B0A1310E3BA (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___0_name, String_t* ___1_ns, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteXsiType(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteXsiType_m24C3B36D396116877E22848B9B12EF6D6BE4D122 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___0_name, String_t* ___1_ns, const RuntimeMethod* method) ; // System.String System.Xml.Serialization.XmlSerializationWriter::FromXmlQualifiedName(System.Xml.XmlQualifiedName) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlSerializationWriter_FromXmlQualifiedName_m0025FF4410A037F0310220E2F36A1F55DD106829 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___0_xmlQualifiedName, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteEndElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteEndElement_mDCC1D34A7B81C6B8EB8E6C924E5752EC39F9FA1F (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteElementString(System.String,System.String,System.String,System.Xml.XmlQualifiedName) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteElementString_m7F4678303C1631FCBE4B37FC404C838AF903F718 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___0_localName, String_t* ___1_ns, String_t* ___2_value, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___3_xsiType, const RuntimeMethod* method) ; // System.Void System.Xml.XmlWriter::WriteElementString(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriter_WriteElementString_m35A6492D83CA4686148F3D39271BC94E29811C42 (XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* __this, String_t* ___0_localName, String_t* ___1_ns, String_t* ___2_value, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteEndElement(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteEndElement_m3ECF0B5AFAA9CD63B5B78470B1A48FE92CC6F5B8 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, RuntimeObject* ___0_o, const RuntimeMethod* method) ; // System.Collections.Hashtable System.Xml.Serialization.XmlSerializerNamespaces::get_Namespaces() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* XmlSerializerNamespaces_get_Namespaces_mD6B8A3D282B91E40D13217289F2904CE4ACECD2D (XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93* __this, const RuntimeMethod* method) ; // System.Object System.Collections.DictionaryEntry::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* DictionaryEntry_get_Value_m75FD18FE968AE131F28AA2CB0DF4895EBA39075E_inline (DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB* __this, const RuntimeMethod* method) ; // System.Object System.Collections.DictionaryEntry::get_Key() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* DictionaryEntry_get_Key_m09845C00732E530E6FCB9042079E90D3912215FE_inline (DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteElementQualifiedName(System.String,System.String,System.Xml.XmlQualifiedName) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteElementQualifiedName_mE0FE6CEB5D98A0B535C238812B64EB68C1F0933B (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___0_localName, String_t* ___1_ns, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___2_value, const RuntimeMethod* method) ; // System.Void System.Xml.XmlWriter::WriteAttributeString(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriter_WriteAttributeString_m1F3481B4EB9D711B7CAF93FB2B7D077A43D1AABB (XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* __this, String_t* ___0_localName, String_t* ___1_ns, String_t* ___2_value, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteStartElement(System.String,System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteStartElement_m10BA6216843AE75F6DB9631DDA883F1B831BEAF6 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___0_name, String_t* ___1_ns, bool ___2_writePrefixed, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriter::CheckReferenceQueue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_CheckReferenceQueue_m798F9CFD9FD0DBC8CC4E2B7BF4F6D1053A11E169 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriteCallback::Invoke(System.Object) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlSerializationWriteCallback_Invoke_mC5FC4D5306E2C36BAE096E3B9BE05F4FC7488E9F_inline (XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA* __this, RuntimeObject* ___0_o, const RuntimeMethod* method) ; // System.String System.Xml.Serialization.XmlSerializationWriter::GetId(System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlSerializationWriter_GetId_m119A741C6DE06B31C89202A1AB5B6F5F9BDB400E (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, RuntimeObject* ___0_o, bool ___1_addToReferencesList, const RuntimeMethod* method) ; // System.Void System.Xml.XmlWriter::WriteAttributeString(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriter_WriteAttributeString_m828C9640305961C835B4B9B3D5C62E76649A08A7 (XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* __this, String_t* ___0_localName, String_t* ___1_value, const RuntimeMethod* method) ; // System.Boolean System.Type::op_Inequality(System.Type,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Inequality_m83209C7BB3C05DFBEA3B6199B0BEFE8037301172 (Type_t* ___0_left, Type_t* ___1_right, const RuntimeMethod* method) ; // System.Boolean System.Xml.Serialization.XmlSerializationWriter::AlreadyQueued(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlSerializationWriter_AlreadyQueued_mDEBACA2D31AC7B5D135065F0595AB02B68D2164D (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, RuntimeObject* ___0_ob, const RuntimeMethod* method) ; // System.String System.String::Concat(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m9E3155FB84015C823606188F53B47CB44C444991 (String_t* ___0_str0, String_t* ___1_str1, const RuntimeMethod* method) ; // System.Xml.Serialization.TypeData System.Xml.Serialization.TypeTranslator::GetTypeData(System.Type,System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* TypeTranslator_GetTypeData_m0A06DC3C76F985DDB7219841C90F408DD8959DB9 (Type_t* ___0_runtimeType, String_t* ___1_xmlDataType, bool ___2_underlyingEnumType, const RuntimeMethod* method) ; // System.String System.Xml.Serialization.XmlCustomFormatter::ToXmlString(System.Xml.Serialization.TypeData,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlCustomFormatter_ToXmlString_m9C2EFDCCDABEAC5DEC075942605E8C3BCA836E45 (TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___0_type, RuntimeObject* ___1_value, const RuntimeMethod* method) ; // System.Boolean System.Xml.Serialization.XmlSerializationWriter::IsPrimitiveArray(System.Xml.Serialization.TypeData) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlSerializationWriter_IsPrimitiveArray_m56B5D6BE559D47B2DA0F2D698C619CDE3A8E0BE9 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___0_td, const RuntimeMethod* method) ; // System.Xml.Serialization.TypeData System.Xml.Serialization.TypeTranslator::GetTypeData(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* TypeTranslator_GetTypeData_mF04C45D9093601749D33BB31BD3D6F4C4ADAC501 (Type_t* ___0_type, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteArray(System.Object,System.Xml.Serialization.TypeData) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteArray_mA3E69AB440FBF8F03DC25C3F8FD06071B1D07E37 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, RuntimeObject* ___0_o, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___1_td, const RuntimeMethod* method) ; // System.Int32 System.Array::get_Length() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_get_Length_m361285FB7CF44045DC369834D1CD01F72F94EF57 (RuntimeArray* __this, const RuntimeMethod* method) ; // System.String System.Int32::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5 (int32_t* __this, 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_m093934F71A9B351911EE46311674ED463B180006 (String_t* ___0_str0, String_t* ___1_str1, String_t* ___2_str2, String_t* ___3_str3, const RuntimeMethod* method) ; // System.Object System.Array::GetValue(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Array_GetValue_m007D247B8A6FE5BD60FD1CD510A714A416F2BA21 (RuntimeArray* __this, int32_t ___0_index, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriter::WritePotentiallyReferencingElement(System.String,System.String,System.Object,System.Type,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WritePotentiallyReferencingElement_mC08268FB0CD13EF92C5F0D92492F9310AB218CFB (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___0_n, String_t* ___1_ns, RuntimeObject* ___2_o, Type_t* ___3_ambientType, bool ___4_suppressReference, bool ___5_isNullable, const RuntimeMethod* method) ; // System.Void System.Collections.Queue::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Queue__ctor_mFCCBE2B4FFBD3F33D6FBE2D010C9A0CA976784CB (Queue_t82FD2BE12D138AF4D22C801CB5044DAEC2BA66BC* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteSerializable(System.Xml.Serialization.IXmlSerializable,System.String,System.String,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteSerializable_m49BBC98F617B444A0BFE261D0BA42AE7E41622E1 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, RuntimeObject* ___0_serializable, String_t* ___1_name, String_t* ___2_ns, bool ___3_isNullable, bool ___4_wrapped, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteStartElement(System.String,System.String,System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteStartElement_mB1DC56074605855EB20F38FC8D2E4BDB2A760D89 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___0_name, String_t* ___1_ns, RuntimeObject* ___2_o, bool ___3_writePrefixed, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteStartElement(System.String,System.String,System.Object,System.Boolean,System.Collections.ICollection) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteStartElement_m88BB6D1190D3E5B8108CBA31ED8ADB5F654AD224 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___0_name, String_t* ___1_ns, RuntimeObject* ___2_o, bool ___3_writePrefixed, RuntimeObject* ___4_namespaces, 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.String System.Xml.Serialization.XmlCustomFormatter::FromXmlName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlCustomFormatter_FromXmlName_m553FD3D43C31E549D1E14A7A8DE175B77C39F994 (String_t* ___0_name, const RuntimeMethod* method) ; // System.Boolean System.Xml.Serialization.TypeData::get_IsXsdType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeData_get_IsXsdType_m57CB2DF2ACE378E27A686B5AE138CA6749FF004A (TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteValue(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteValue_mFBAAF58EE4ECE002669126E42D9613880FA871A3 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___0_value, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.TypeTranslator::ParseArrayType(System.String,System.String&,System.String&,System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeTranslator_ParseArrayType_m34D4476D6FC3EF2918E186B1A59328C741E16CAC (String_t* ___0_arrayType, String_t** ___1_type, String_t** ___2_ns, String_t** ___3_dimensions, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteAttribute(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteAttribute_mAA8601A17489000A033533611237057B779C91B1 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___0_localName, String_t* ___1_ns, String_t* ___2_value, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriter::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter__ctor_m293C1A24C2354634334D6F0C0E205E2478ABFCB1 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter/CallbackInfo::.ctor(System.Xml.Serialization.XmlSerializationWriterInterpreter,System.Xml.Serialization.XmlTypeMapping) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CallbackInfo__ctor_m8F675D9CC25A5368226CB51B0931B527F5FA9439 (CallbackInfo_t89714EAF889C7E9B3682A74ADF45DDACC78E60B2* __this, XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9* ___0_swi, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___1_typeMap, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriteCallback::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriteCallback__ctor_mC9EAA27EDBF9664212848EC6F45C065395C51AF9 (XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriter::AddWriteCallback(System.Type,System.String,System.String,System.Xml.Serialization.XmlSerializationWriteCallback) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_AddWriteCallback_mA8F5217B979F653B829B0B36EA7C8A4202E4FA2D (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, Type_t* ___0_type, String_t* ___1_typeName, String_t* ___2_typeNs, XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA* ___3_callback, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteStartDocument() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteStartDocument_m6E55154B291F834B4B5C7F692CCF53B6B3BF94FF (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriter::TopLevelElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_TopLevelElement_mFEE610422C07AE555FDA27A05CEB1E9616026FEC (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, const RuntimeMethod* method) ; // System.Exception System.Xml.Serialization.XmlSerializationWriter::CreateUnknownTypeException(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* XmlSerializationWriter_CreateUnknownTypeException_m390258930DA81870F1CB5744BEE12EE075A7BAC6 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, RuntimeObject* ___0_o, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteReferencedElements() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteReferencedElements_m470B7112650901740DB4667F483740083D52081C (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteElementLiteral(System.Xml.XmlNode,System.String,System.String,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteElementLiteral_m0E74FD75FE42BEB8D43B79333598C8DDC6EC4238 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_node, String_t* ___1_name, String_t* ___2_ns, bool ___3_isNullable, bool ___4_any, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteElementEncoded(System.Xml.XmlNode,System.String,System.String,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteElementEncoded_m669E23E74C69FAB9FEF6FAA511A0F6901E1FFEFA (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_node, String_t* ___1_name, String_t* ___2_ns, bool ___3_isNullable, bool ___4_any, const RuntimeMethod* method) ; // System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlTypeMapping::GetRealTypeMap(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* XmlTypeMapping_GetRealTypeMap_m0A55DB07D8FEEA87A8206F579D258D3FBC5D5F29 (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, Type_t* ___0_objectType, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteTypedPrimitive(System.String,System.String,System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteTypedPrimitive_m9AF71A0CBE191A76BA04DF17501BB08C6C3E0D50 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___0_name, String_t* ___1_ns, RuntimeObject* ___2_o, bool ___3_xsiType, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteStartElement(System.String,System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteStartElement_mCB83EEA5BA0CDBDD2D62768D10D249B7D5835A70 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___0_name, String_t* ___1_ns, RuntimeObject* ___2_o, const RuntimeMethod* method) ; // System.String System.Xml.Serialization.XmlTypeMapping::get_XmlTypeNamespace() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTypeMapping_get_XmlTypeNamespace_m9EF835B324606DBC55DF96AEFD62A9F4F7ED2B96 (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteMembers(System.Xml.Serialization.ClassMap,System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriterInterpreter_WriteMembers_m3A9E0D500CD360DBC683D76DBE17EBAA796BBF98 (XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9* __this, ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* ___0_map, RuntimeObject* ___1_ob, bool ___2_isValueList, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteNamespaceDeclarations(System.Xml.Serialization.XmlSerializerNamespaces) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteNamespaceDeclarations_mF1DFEC2486E203E3324C20EB3A81210B18463CA9 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93* ___0_xmlns, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteAttributeMembers(System.Xml.Serialization.ClassMap,System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriterInterpreter_WriteAttributeMembers_mD3071391C2C5056FD39AF81858D0C29A8CDA83B1 (XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9* __this, ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* ___0_map, RuntimeObject* ___1_ob, bool ___2_isValueList, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteElementMembers(System.Xml.Serialization.ClassMap,System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriterInterpreter_WriteElementMembers_m473C65D604DE952FAC43116BD4A6BB98A2F08645 (XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9* __this, ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* ___0_map, RuntimeObject* ___1_ob, bool ___2_isValueList, const RuntimeMethod* method) ; // System.Boolean System.Xml.Serialization.XmlSerializationWriterInterpreter::MemberHasValue(System.Xml.Serialization.XmlTypeMapMember,System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlSerializationWriterInterpreter_MemberHasValue_mFEC8075A0CB8DC3279796618FBD2855E8081FE6C (XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9* __this, XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* ___0_member, RuntimeObject* ___1_ob, bool ___2_isValueList, const RuntimeMethod* method) ; // System.Object System.Xml.Serialization.XmlSerializationWriterInterpreter::GetMemberValue(System.Xml.Serialization.XmlTypeMapMember,System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationWriterInterpreter_GetMemberValue_mBA34A9A19CE56F7DD72184499257F1E7F1446E90 (XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9* __this, XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* ___0_member, RuntimeObject* ___1_ob, bool ___2_isValueList, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteXmlAttribute(System.Xml.XmlNode,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteXmlAttribute_mC90D083F605D89967073970C28C7CF10B6F6706F (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_node, RuntimeObject* ___1_container, const RuntimeMethod* method) ; // System.Collections.ICollection System.Xml.Serialization.ClassMap::get_AttributeMembers() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ClassMap_get_AttributeMembers_mB495B40347CA0E1075AB32C00E9D0E3D0510C94F (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method) ; // System.String System.Xml.Serialization.XmlTypeMapMemberAttribute::get_AttributeName() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlTypeMapMemberAttribute_get_AttributeName_m79384B2B6097452969DD46364D07C2F8B353B064_inline (XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* __this, const RuntimeMethod* method) ; // System.String System.Xml.Serialization.XmlTypeMapMemberAttribute::get_Namespace() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlTypeMapMemberAttribute_get_Namespace_m6907BC42459BA2FBEE550EF180E697DDF19A8C37_inline (XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* __this, const RuntimeMethod* method) ; // System.String System.Xml.Serialization.XmlSerializationWriterInterpreter::GetStringValue(System.Xml.Serialization.XmlTypeMapping,System.Xml.Serialization.TypeData,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlSerializationWriterInterpreter_GetStringValue_m417BDD772C59AA1A72558744FD56E78C129E1DEE (XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___0_typeMap, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___1_type, RuntimeObject* ___2_value, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteMemberElement(System.Xml.Serialization.XmlTypeMapElementInfo,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriterInterpreter_WriteMemberElement_mB29A5B7EFEB7D6FE5CCDEDA132F923E79D6F5F43 (XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9* __this, XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* ___0_elem, RuntimeObject* ___1_memberValue, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteListContent(System.Object,System.Xml.Serialization.TypeData,System.Xml.Serialization.ListMap,System.Object,System.Text.StringBuilder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriterInterpreter_WriteListContent_m134B4C06A45FA059536931340F9447EEBA4154E7 (XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9* __this, RuntimeObject* ___0_container, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___1_listType, ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* ___2_map, RuntimeObject* ___3_ob, StringBuilder_t* ___4_targetString, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteAnyElementContent(System.Xml.Serialization.XmlTypeMapMemberAnyElement,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriterInterpreter_WriteAnyElementContent_m6FA0CBF4CCF97E36DE0A4C4AC4CF557A965A8823 (XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9* __this, XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* ___0_member, RuntimeObject* ___1_memberValue, const RuntimeMethod* method) ; // System.Xml.Serialization.XmlTypeMapElementInfo System.Xml.Serialization.XmlTypeMapMemberElement::FindElement(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* XmlTypeMapMemberElement_FindElement_mD06805510E6920C0643A9C2C76800A87A97BCA40 (XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* __this, RuntimeObject* ___0_ob, RuntimeObject* ___1_memberValue, const RuntimeMethod* method) ; // System.Boolean System.Xml.Serialization.XmlTypeMapMember::GetValueSpecified(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeMapMember_GetValueSpecified_mC0FAFD520F9FE9A1DFAFFE40C0B1913CA83E3637 (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, RuntimeObject* ___0_ob, const RuntimeMethod* method) ; // System.Object System.Xml.Serialization.XmlTypeMapMember::get_DefaultValue() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* XmlTypeMapMember_get_DefaultValue_m9E7FE48431CBCD4C9757423398D48F30B919CFC3_inline (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, const RuntimeMethod* method) ; // System.Type System.Enum::GetUnderlyingType(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Enum_GetUnderlyingType_mEDDDC2C9F74ECC841E65E401C3703D59C37CBB05 (Type_t* ___0_enumType, const RuntimeMethod* method) ; // System.Object System.Convert::ChangeType(System.Object,System.Type,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Convert_ChangeType_m2AA053891B5D1BD5CA7689B72EE5ADC95CD3E14B (RuntimeObject* ___0_value, Type_t* ___1_conversionType, RuntimeObject* ___2_provider, const RuntimeMethod* method) ; // System.Boolean System.Xml.Serialization.XmlTypeMapElementInfo::get_WrappedElement() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlTypeMapElementInfo_get_WrappedElement_m4A1874E9B5785B35A519EC5266425156A3B78468_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method) ; // System.String System.Xml.Serialization.XmlTypeMapElementInfo::get_ElementName() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlTypeMapElementInfo_get_ElementName_m2B2B6484154E046A7FE5BE46092BF91A7B75D9CC_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method) ; // System.String System.Xml.Serialization.XmlTypeMapElementInfo::get_Namespace() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlTypeMapElementInfo_get_Namespace_m94DAAADC3EFEBC302C4D3574BD4835F222345498_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WritePrimitiveValueLiteral(System.Object,System.String,System.String,System.Xml.Serialization.XmlTypeMapping,System.Xml.Serialization.TypeData,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriterInterpreter_WritePrimitiveValueLiteral_m64F5EE0B8DF72D20007BEA801198FF8F8B381173 (XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9* __this, RuntimeObject* ___0_memberValue, String_t* ___1_name, String_t* ___2_ns, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___3_mappedType, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___4_typeData, bool ___5_wrapped, bool ___6_isNullable, const RuntimeMethod* method) ; // System.String System.Xml.Serialization.XmlTypeMapElementInfo::get_DataTypeName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTypeMapElementInfo_get_DataTypeName_mBC6E8CA4DD76FEE0551BFB93992D49C1C143519E (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method) ; // System.String System.Xml.Serialization.XmlTypeMapElementInfo::get_DataTypeNamespace() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTypeMapElementInfo_get_DataTypeNamespace_mA8278DAED1A896D6AC2B28664C54E0D81155252D (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WritePrimitiveValueEncoded(System.Object,System.String,System.String,System.Xml.XmlQualifiedName,System.Xml.Serialization.XmlTypeMapping,System.Xml.Serialization.TypeData,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriterInterpreter_WritePrimitiveValueEncoded_m49AE009A4355CB956686487B0A6617B714D30723 (XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9* __this, RuntimeObject* ___0_memberValue, String_t* ___1_name, String_t* ___2_ns, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___3_xsiType, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___4_mappedType, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___5_typeData, bool ___6_wrapped, bool ___7_isNullable, const RuntimeMethod* method) ; // System.Boolean System.Xml.Serialization.XmlTypeMapping::get_MultiReferenceType() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlTypeMapping_get_MultiReferenceType_m6FF513956B40419EBD15B5C1D3B0DEA151AABD84_inline (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteReferencingElement(System.String,System.String,System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteReferencingElement_m63BCDD79C5119664DA24591EA6620A14EBBC7251 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___0_n, String_t* ___1_ns, RuntimeObject* ___2_o, bool ___3_isNullable, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteSerializable(System.Xml.Serialization.IXmlSerializable,System.String,System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteSerializable_mBE2DC3FBAF8A1DA2921EE89701791176B63C40B9 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, RuntimeObject* ___0_serializable, String_t* ___1_name, String_t* ___2_ns, bool ___3_isNullable, const RuntimeMethod* method) ; // System.Boolean System.Reflection.MethodInfo::op_Inequality(System.Reflection.MethodInfo,System.Reflection.MethodInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodInfo_op_Inequality_mB73597A1FCC2F906DBCADDEC68A1B7D5B7E89FA8 (MethodInfo_t* ___0_left, MethodInfo_t* ___1_right, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteNullableQualifiedNameLiteral(System.String,System.String,System.Xml.XmlQualifiedName) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteNullableQualifiedNameLiteral_mA36BA50DE0EECCF7D1D2C8683F84D7DB94D34CBC (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___0_name, String_t* ___1_ns, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___2_value, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteNullableStringLiteral(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteNullableStringLiteral_m9E9A4BC99C000CCC14DFA45E91A01EEBACADE862 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___0_name, String_t* ___1_ns, String_t* ___2_value, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteElementString(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteElementString_m5B5F5B5F48FE69C157A86AEA91587F9A07EE3893 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___0_localName, String_t* ___1_ns, String_t* ___2_value, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteNullableQualifiedNameEncoded(System.String,System.String,System.Xml.XmlQualifiedName,System.Xml.XmlQualifiedName) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteNullableQualifiedNameEncoded_mE37935A882D73CCE63E8C070C2291CCB3FA720B6 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___0_name, String_t* ___1_ns, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___2_value, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___3_xsiType, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteNullableStringEncoded(System.String,System.String,System.String,System.Xml.XmlQualifiedName) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteNullableStringEncoded_m1129872B6401E60E8949119B9FA368F543FCC9B4 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___0_name, String_t* ___1_ns, String_t* ___2_value, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___3_xsiType, const RuntimeMethod* method) ; // System.Int32 System.Xml.Serialization.XmlSerializationWriterInterpreter::GetListCount(System.Xml.Serialization.TypeData,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlSerializationWriterInterpreter_GetListCount_m8FB8D13B1F87E95754A5CF8079D3DF2B9A46AE86 (XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9* __this, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___0_listType, RuntimeObject* ___1_ob, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.ListMap::GetArrayType(System.Int32,System.String&,System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListMap_GetArrayType_mE4DD0F95C5B8779C799547E896D8DE16632AA2B7 (ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* __this, int32_t ___0_itemCount, String_t** ___1_localName, String_t** ___2_ns, const RuntimeMethod* method) ; // System.Xml.Serialization.XmlTypeMapElementInfo System.Xml.Serialization.ListMap::FindElement(System.Object,System.Int32,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* ListMap_FindElement_m47E834380D86F46D9AE887F867CC2D3FCF7D4CC2 (ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* __this, RuntimeObject* ___0_ob, int32_t ___1_index, RuntimeObject* ___2_memberValue, 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* ___0_value, const RuntimeMethod* method) ; // System.Reflection.PropertyInfo System.Type::GetProperty(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyInfo_t* Type_GetProperty_mD183124FC8A89121E8368058B327A7750B14281D (Type_t* __this, String_t* ___0_name, const RuntimeMethod* method) ; // System.Reflection.PropertyInfo System.Xml.Serialization.TypeData::GetIndexerProperty(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyInfo_t* TypeData_GetIndexerProperty_mF9E62EEA9F25BCDA3E4B77677018DEBB8A4BA7F6 (Type_t* ___0_collectionType, const RuntimeMethod* method) ; // System.Collections.IEnumerator System.Array::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Array_GetEnumerator_mDB7E2AF23F2BDC715D429C71CA3B8D0151F0DC1E (RuntimeArray* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.Serialization.XmlTypeMapMemberAnyElement::IsElementDefined(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeMapMemberAnyElement_IsElementDefined_mA16BED80C2A28DF69D7242CAD45F8E4652DB1CAF (XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* __this, String_t* ___0_name, String_t* ___1_ns, const RuntimeMethod* method) ; // System.Exception System.Xml.Serialization.XmlSerializationWriter::CreateUnknownAnyElementException(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* XmlSerializationWriter_CreateUnknownAnyElementException_m10C764FCEE6FF3DDA1C9A17D7593D8DE7454417B (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___0_name, String_t* ___1_ns, const RuntimeMethod* method) ; // System.String System.Xml.Serialization.XmlSerializationWriterInterpreter::GetEnumXmlValue(System.Xml.Serialization.XmlTypeMapping,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlSerializationWriterInterpreter_GetEnumXmlValue_m6990DBD6D109E4EF5947900DCBCAEFAD60CCE88F (XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___0_typeMap, RuntimeObject* ___1_ob, 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.Xml.Serialization.EnumMap::GetXmlName(System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* EnumMap_GetXmlName_m673884ED5B4566B41AA3D16F95E4F21D9B687621 (EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C* __this, String_t* ___0_typeName, RuntimeObject* ___1_enumValue, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializer::.ctor(System.Type,System.Xml.Serialization.XmlAttributeOverrides,System.Type[],System.Xml.Serialization.XmlRootAttribute,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializer__ctor_m0DAA131F7E266D7999D10E867963DD2C4907C796 (XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* __this, Type_t* ___0_type, XmlAttributeOverrides_tEE6AE9EC795CDEF943B35BA538C86222F905EB60* ___1_overrides, TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___2_extraTypes, XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* ___3_root, String_t* ___4_defaultNamespace, 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* ___0_paramName, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlReflectionImporter::.ctor(System.Xml.Serialization.XmlAttributeOverrides,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReflectionImporter__ctor_mF3C2C417DAF876C4EFE9C4F415FAF171D6B7A142 (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* __this, XmlAttributeOverrides_tEE6AE9EC795CDEF943B35BA538C86222F905EB60* ___0_attributeOverrides, String_t* ___1_defaultNamespace, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlReflectionImporter::IncludeType(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlReflectionImporter_IncludeType_mE13BACE7F8651EA6C6C9B8C8D8257D27CEE9D1BD (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* __this, Type_t* ___0_type, const RuntimeMethod* method) ; // System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlReflectionImporter::ImportTypeMapping(System.Type,System.Xml.Serialization.XmlRootAttribute,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* XmlReflectionImporter_ImportTypeMapping_m9A034588C8D63CE07DB971D8C4647FE55145077D (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* __this, Type_t* ___0_type, XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* ___1_root, String_t* ___2_defaultNamespace, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlAttributeEventHandler::Invoke(System.Object,System.Xml.Serialization.XmlAttributeEventArgs) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlAttributeEventHandler_Invoke_m99D8E43DDDA786B20D62CC1A2BEE07B550FD459D_inline (XmlAttributeEventHandler_tA9EE5C77A13FDC19DB5B3340F27245C620480F65* __this, RuntimeObject* ___0_sender, XmlAttributeEventArgs_tE2113D9D778F9CC7EBD3D619A0342DB8C9CC7897* ___1_e, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlElementEventHandler::Invoke(System.Object,System.Xml.Serialization.XmlElementEventArgs) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlElementEventHandler_Invoke_m46A4766C6A278307DA5CA525C68490202667A38A_inline (XmlElementEventHandler_tA1451D76D0A21C15B71AC8B380CC097DF71951F3* __this, RuntimeObject* ___0_sender, XmlElementEventArgs_t415AB97F2EC45400E0E5FD5DCEE66D2FC4912036* ___1_e, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlNodeEventHandler::Invoke(System.Object,System.Xml.Serialization.XmlNodeEventArgs) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlNodeEventHandler_Invoke_mD6415CD57C5676C16FFFABFA463D1D68AC910D91_inline (XmlNodeEventHandler_t32503D9F2F1A9E9E183779774CEFC13425BF6670* __this, RuntimeObject* ___0_sender, XmlNodeEventArgs_tD4D3A349309C779296ED1395F49A9D4793D2E21D* ___1_e, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.UnreferencedObjectEventHandler::Invoke(System.Object,System.Xml.Serialization.UnreferencedObjectEventArgs) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnreferencedObjectEventHandler_Invoke_m8877BE504717016EC402AE274F191FB7B64FB458_inline (UnreferencedObjectEventHandler_t7342B517610EE6E277FB060ED3C983CE68E0463A* __this, RuntimeObject* ___0_sender, UnreferencedObjectEventArgs_tA88A95B9F0BE849323A166089D04903D288C5760* ___1_e, const RuntimeMethod* method) ; // System.Void System.NotImplementedException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotImplementedException__ctor_mDAB47BC6BD0E342E8F2171E5CABE3E67EA049F1C (NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReader::.ctor(System.IO.TextReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReader__ctor_mC97F8050EA5BC3E461C2B682AF238D00196594AF (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* ___0_input, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReader::set_Normalization(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReader_set_Normalization_m768F00DAC7C1B4BAA7F6A39CF041610777680E14 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, bool ___0_value, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReader::set_WhitespaceHandling(System.Xml.WhitespaceHandling) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReader_set_WhitespaceHandling_m7288BA1929C27448D6D26A744C102FA5F2628192 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, int32_t ___0_value, const RuntimeMethod* method) ; // System.Object System.Xml.Serialization.XmlSerializer::Deserialize(System.Xml.XmlReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializer_Deserialize_m3F8DFF8F5A4052487062BAB8C60C110FA9AE40A8 (XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___0_xmlReader, const RuntimeMethod* method) ; // System.Xml.Serialization.XmlSerializationReader System.Xml.Serialization.XmlSerializer::CreateReader(System.Xml.Serialization.XmlMapping) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* XmlSerializer_CreateReader_mA0B60291B13CE14CAE5F8908CA3BE1578328FC52 (XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* __this, XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* ___0_typeMapping, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationReader::Initialize(System.Xml.XmlReader,System.Xml.Serialization.XmlSerializer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReader_Initialize_m6788A7360CD9F0E55CBD18B68481A2A8AB55A5B8 (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___0_reader, XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* ___1_eventSource, const RuntimeMethod* method) ; // System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadRoot() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadRoot_mC64D2353CEDB7BDABAB7A640D8681396BB046B4E (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __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.Void System.InvalidOperationException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_m63F5561BE647F655D22C8289E53A5D3A2196B668 (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* __this, String_t* ___0_message, Exception_t* ___1_innerException, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteRoot(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriterInterpreter_WriteRoot_mDF5734ADBE4AE54FE85FF14C378249F22DCDDCAE (XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9* __this, RuntimeObject* ___0_ob, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextWriter::.ctor(System.IO.TextWriter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter__ctor_m4AE8363DFA5B2D16F3750514727C63D4A0096489 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___0_w, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextWriter::set_Formatting(System.Xml.Formatting) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextWriter_set_Formatting_mD13223E0443AB804ED5063976D4A8372BE7D7FA3 (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* __this, int32_t ___0_value, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializer::Serialize(System.Xml.XmlWriter,System.Object,System.Xml.Serialization.XmlSerializerNamespaces) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializer_Serialize_mA94F97CFE1760586CA9CFE865B5593DC0ADFCBB0 (XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* __this, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___0_xmlWriter, RuntimeObject* ___1_o, XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93* ___2_namespaces, const RuntimeMethod* method) ; // System.Xml.Serialization.XmlSerializationWriter System.Xml.Serialization.XmlSerializer::CreateWriter(System.Xml.Serialization.XmlMapping) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* XmlSerializer_CreateWriter_m63DD57F83F741F8457EF2DD61C399E0D08CAB75D (XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* __this, XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* ___0_typeMapping, const RuntimeMethod* method) ; // System.Int32 System.Xml.Serialization.XmlSerializerNamespaces::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlSerializerNamespaces_get_Count_mED22239758B4ED23956188752797F66FD3C3F0D2 (XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriter::Initialize(System.Xml.XmlWriter,System.Xml.Serialization.XmlSerializerNamespaces) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_Initialize_m11222210CAC28774F29C1EE771F734E71D70E95C (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___0_writer, XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93* ___1_nss, const RuntimeMethod* method) ; // System.Void System.Threading.Monitor::Exit(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA (RuntimeObject* ___0_obj, const RuntimeMethod* method) ; // System.Void System.Threading.Monitor::Enter(System.Object,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149 (RuntimeObject* ___0_obj, bool* ___1_lockTaken, const RuntimeMethod* method) ; // System.Xml.Serialization.XmlSerializationWriter System.Xml.Serialization.XmlSerializer/SerializerData::CreateWriter() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* SerializerData_CreateWriter_mD1B269EA292DDBF9FF0CC942CB18A7AA3F3A855C (SerializerData_t80E5CC9586C1782157CDE6EA3518737643CEDDDF* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::.ctor(System.Xml.Serialization.XmlMapping) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriterInterpreter__ctor_m03635FE7701F9E8ACEC9CF5D213284C18820CDDB (XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9* __this, XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* ___0_typeMap, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::.ctor(System.Xml.Serialization.XmlMapping) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReaderInterpreter__ctor_m6C881FC54D45877C33279E7DE29C17C53B821459 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* ___0_typeMap, const RuntimeMethod* method) ; // System.Object System.Activator::CreateInstance(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Activator_CreateInstance_mFF030428C64FDDFACC74DFAC97388A1C628BFBCF (Type_t* ___0_type, const RuntimeMethod* method) ; // System.Xml.Serialization.XmlSerializer System.Xml.Serialization.XmlSerializerFactory::CreateSerializer(System.Type,System.Xml.Serialization.XmlAttributeOverrides,System.Type[],System.Xml.Serialization.XmlRootAttribute,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* XmlSerializerFactory_CreateSerializer_m196E45D3FA0AE356908D5295F7371878ADB0A907 (XmlSerializerFactory_t2486639A11775A86C56EA319CD0AF4848B465BA1* __this, Type_t* ___0_type, XmlAttributeOverrides_tEE6AE9EC795CDEF943B35BA538C86222F905EB60* ___1_overrides, TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___2_extraTypes, XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* ___3_root, String_t* ___4_defaultNamespace, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlTypeSerializationSource::.ctor(System.Type,System.Xml.Serialization.XmlRootAttribute,System.Xml.Serialization.XmlAttributeOverrides,System.String,System.Type[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeSerializationSource__ctor_m34EF43265E5E8713A8F92E7DFEA6112615904CDC (XmlTypeSerializationSource_tE995CC9E60F76C0EDAC4CFAA7808ACCEF4225984* __this, Type_t* ___0_type, XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* ___1_root, XmlAttributeOverrides_tEE6AE9EC795CDEF943B35BA538C86222F905EB60* ___2_attributeOverrides, String_t* ___3_namspace, TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___4_includedTypes, const RuntimeMethod* method) ; // System.Xml.Serialization.XmlMapping System.Xml.Serialization.XmlSerializer::get_Mapping() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* XmlSerializer_get_Mapping_mF9907A88C9DE4C5C31ACD6804471760CBD17B84B_inline (XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* __this, const RuntimeMethod* method) ; // System.Xml.Serialization.SerializationSource System.Xml.Serialization.XmlMapping::get_Source() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR SerializationSource_t2F3A53A0FFC7BF8994CF332961FD3C0671E4A58C* XmlMapping_get_Source_mE7270AE0C3619E1C39600FDE01BC069D94BB6652_inline (XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* __this, const RuntimeMethod* method) ; // System.Void System.NotSupportedException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_m1398D0CDE19B36AA3DE9392879738C1EA2439CDF (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* __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.Xml.Serialization.KeyHelper::AddField(System.Text.StringBuilder,System.Int32,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyHelper_AddField_m0F0BB7334D857FD3C3C45CED49E29A85D13CD966 (StringBuilder_t* ___0_sb, int32_t ___1_n, Type_t* ___2_val, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.KeyHelper::AddField(System.Text.StringBuilder,System.Int32,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyHelper_AddField_m768E2F45F0F3BF4B11D640BE8CCB308BA9FCE439 (StringBuilder_t* ___0_sb, int32_t ___1_n, String_t* ___2_val, 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 ___0_value, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.KeyHelper::AddField(System.Text.StringBuilder,System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyHelper_AddField_mDC2C3F5C998DFFF8EEA9842D02A98A18796ADBFD (StringBuilder_t* ___0_sb, int32_t ___1_n, bool ___2_val, const RuntimeMethod* method) ; // System.Boolean System.Xml.Serialization.TypeData::get_IsNullable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeData_get_IsNullable_m31728B62ACF57A01989472F565DAAC86DA179D07 (TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlTypeMapElementInfo::set_ElementName(System.String) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo_set_ElementName_mEE8DF5FA9A346D3D437DF38E2B5E0BC20AA5DC40_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, String_t* ___0_value, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlTypeMapElementInfo::set_Namespace(System.String) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo_set_Namespace_mB1BAB4E18DAF612183E318500F2010C73D7B3B5A_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, String_t* ___0_value, const RuntimeMethod* method) ; // System.Int32 System.Object::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Object_GetHashCode_m372C5A7AB16CAC13307C11C4256D706CE57E090C (RuntimeObject* __this, const RuntimeMethod* method) ; // System.Boolean System.Reflection.MemberInfo::op_Equality(System.Reflection.MemberInfo,System.Reflection.MemberInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MemberInfo_op_Equality_m4B4F1AF29C9361D125F6D7FAB3D227ED3FECE685 (MemberInfo_t* ___0_left, MemberInfo_t* ___1_right, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlTypeMapMember::InitMember(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMember_InitMember_mDF86C7533AF7AB6E65BCA9AC7DD578135CECE28A (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, Type_t* ___0_type, const RuntimeMethod* method) ; // System.Void System.Reflection.FieldInfo::SetValue(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FieldInfo_SetValue_mD8C0DA3A1A0CFF073F971622BBDBAAB6688B4B6C (FieldInfo_t* __this, RuntimeObject* ___0_obj, RuntimeObject* ___1_value, const RuntimeMethod* method) ; // System.Reflection.MethodInfo System.Type::GetMethod(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Type[],System.Reflection.ParameterModifier[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t* Type_GetMethod_mF3AF3FA3834D7F99592A4CA715FFD2DE12291562 (Type_t* __this, String_t* ___0_name, int32_t ___1_bindingAttr, Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235* ___2_binder, TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___3_types, ParameterModifierU5BU5D_t685261AD991B1E6582A0E53243DEE3B745E13364* ___4_modifiers, const RuntimeMethod* method) ; // System.Boolean System.Reflection.MemberInfo::op_Inequality(System.Reflection.MemberInfo,System.Reflection.MemberInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MemberInfo_op_Inequality_m30A32A50379A6AD359992D3DED56EDE4646D17CA (MemberInfo_t* ___0_left, MemberInfo_t* ___1_right, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlTypeMapMember::set_IsOptionalValueType(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMember_set_IsOptionalValueType_m1ECC62001B49DDCD0356F7813B56837977884C92 (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, bool ___0_value, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlTypeMapMember::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMember__ctor_m0FD3AECC0F53452D27E035C52A8B91C5941A7184 (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlTypeMapElementInfoList::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapElementInfoList__ctor_mEEBEB4330F01D3172DDE3C685C96D1FDB5E70D1B (XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* __this, const RuntimeMethod* method) ; // System.Object System.Xml.Serialization.XmlTypeMapMember::GetValue(System.Object,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlTypeMapMember_GetValue_mD731B7698E115C16C268EBC285CDDD1BDC608504 (RuntimeObject* ___0_ob, String_t* ___1_name, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlTypeMapMemberElement::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMemberElement__ctor_m1C521481C567615C591328B512832B144B153169 (XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlTypeMapMemberExpandable::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMemberExpandable__ctor_m6263CF97C7A882C300CD2A7FE9C9F7BE8E3DA6E5 (XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.Serialization.XmlTypeMapElementInfo::get_IsUnnamedAnyElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeMapElementInfo_get_IsUnnamedAnyElement_m037614B195603B217B28697A93F9BD4950E6CC30 (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlMapping::.ctor(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlMapping__ctor_mC78EC821A5F29E9EFEE0DE8BDB285ED6A5EFE164 (XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* __this, String_t* ___0_elementName, String_t* ___1_ns, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlTypeMapping::.ctor(System.String,System.String,System.Xml.Serialization.TypeData,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapping__ctor_m1F3CFD9D36CE8A9EFA55D3A44070D97AB1605558 (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, String_t* ___0_elementName, String_t* ___1_ns, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___2_typeData, String_t* ___3_xmlType, String_t* ___4_xmlTypeNamespace, const RuntimeMethod* method) ; // System.Attribute System.Attribute::GetCustomAttribute(System.Reflection.MemberInfo,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA* Attribute_GetCustomAttribute_mF48604D4722E67239F3D6A48CFCCBCDE7BCFFB06 (MemberInfo_t* ___0_element, Type_t* ___1_attributeType, const RuntimeMethod* method) ; // System.Boolean System.Xml.Serialization.XmlSchemaProviderAttribute::get_IsAny() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlSchemaProviderAttribute_get_IsAny_mEEC8E5450FC08174F878AE52B6DD1DB1E1E03014_inline (XmlSchemaProviderAttribute_t913656BFB1429C8144C9EE53E18CC300D1C431AF* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlTypeMapping::set_IsAny(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapping_set_IsAny_mFAEAE6BA5E6D80112F10CF222570B9BCF739A942_inline (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, bool ___0_value, const RuntimeMethod* method) ; // System.String System.Xml.Serialization.XmlSchemaProviderAttribute::get_MethodName() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlSchemaProviderAttribute_get_MethodName_mC1499496A0CFF04AD9F315ABB8D3709508EBF23A_inline (XmlSchemaProviderAttribute_t913656BFB1429C8144C9EE53E18CC300D1C431AF* __this, const RuntimeMethod* method) ; // System.Reflection.MethodInfo System.Type::GetMethod(System.String,System.Reflection.BindingFlags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t* Type_GetMethod_m9E66B5053F150537A74C490C1DA5174A7875189D (Type_t* __this, String_t* ___0_name, int32_t ___1_bindingAttr, const RuntimeMethod* method) ; // System.Boolean System.Reflection.MethodInfo::op_Equality(System.Reflection.MethodInfo,System.Reflection.MethodInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodInfo_op_Equality_m1466AB76300C9F07856E706E7E914062175189D1 (MethodInfo_t* ___0_left, MethodInfo_t* ___1_right, const RuntimeMethod* method) ; // System.Void System.Xml.Schema.XmlSchemaSet::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSchemaSet__ctor_m3D365A1BB668EC9DBFBE314F44F00B1AFB3257BD (XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* __this, const RuntimeMethod* method) ; // System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaType::get_QualifiedName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* XmlSchemaType_get_QualifiedName_m4DFF2E93FF1C517E0B80685D7F50C26D1F1DB184 (XmlSchemaType_t36630F421D730DDFA33CBA5BA6548094ABF40DDF* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlQualifiedName::get_IsEmpty() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlQualifiedName_get_IsEmpty_m37942163D9A870E85BE8762845953C6A6579A400 (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* __this, const RuntimeMethod* method) ; // System.String System.Xml.Serialization.XmlRootAttribute::get_ElementName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlRootAttribute_get_ElementName_m8E9F810E8C3AEA05914EF8AEA47DCC31EDD7B2AE (XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* __this, const RuntimeMethod* method) ; // System.String System.Xml.Serialization.XmlRootAttribute::get_Namespace() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlRootAttribute_get_Namespace_mFB0A84474D83BF812BA15DA2D59498384F202FE4_inline (XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlTypeMapping::UpdateRoot(System.Xml.XmlQualifiedName) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapping_UpdateRoot_m1D4F34D903646D5C13C60D3620F5C0ABEA441530 (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___0_qname, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlTypeMapping::set_XmlTypeNamespace(System.String) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapping_set_XmlTypeNamespace_m29104EA2A5D1A505DAC69E158419FF55472C653D_inline (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, String_t* ___0_value, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlTypeMapping::set_XmlType(System.String) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapping_set_XmlType_m32DCAB0634D72D0F98B59A7B0C5BBD4633E2B545_inline (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, String_t* ___0_value, const RuntimeMethod* method) ; // System.Int32 System.Xml.Schema.XmlSchemaSet::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlSchemaSet_get_Count_mF4D867C2937A5F6CB0070F087C4FFF5909ABE397 (XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Schema.XmlSchemaSet::CopyTo(System.Xml.Schema.XmlSchema[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSchemaSet_CopyTo_mE195556997080731FCF64D0424CEF381DD20FABA (XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* __this, XmlSchemaU5BU5D_t5DB5D05598D599A3F21C7D3D9A9F3F000AD6A4D3* ___0_schemas, int32_t ___1_index, const RuntimeMethod* method) ; // System.String System.Xml.Schema.XmlSchema::get_Id() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlSchema_get_Id_mFA10A91F54597E48FB75C5824D0263ABDAA8B6F5_inline (XmlSchema_t5C9506D00418BF5FD524254D0C6C405C620C941D* __this, const RuntimeMethod* method) ; // System.String System.String::Concat(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B (String_t* ___0_str0, String_t* ___1_str1, String_t* ___2_str2, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlTypeMapMember::set_GlobalIndex(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapMember_set_GlobalIndex_m472100DAE18C222CFAD14F0085743759FB1B11C3_inline (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, int32_t ___0_value, const RuntimeMethod* method) ; // System.String System.Xml.Serialization.ClassMap::BuildKey(System.String,System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ClassMap_BuildKey_m8B51C41F6F666CBAB211F3885269AF8D66371054 (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, String_t* ___0_name, String_t* ___1_ns, int32_t ___2_explicitOrder, const RuntimeMethod* method) ; // System.String System.String::Concat(System.String[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___0_values, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlTypeMapMember::set_Index(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapMember_set_Index_m2CF151DEBC1293A91B0126F579B2CA6730CC4D56_inline (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, int32_t ___0_value, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.ClassMap::RegisterFlatList(System.Xml.Serialization.XmlTypeMapMemberExpandable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ClassMap_RegisterFlatList_mD8FD4FD7E17159E8BE8C9373E303CB582D979F6A (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* ___0_member, const RuntimeMethod* method) ; // System.Boolean System.Xml.Serialization.XmlTypeMapMemberAnyElement::get_IsDefaultAny() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeMapMemberAnyElement_get_IsDefaultAny_m909FBA6B86D7667653B60EEE47228938214F22D5 (XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.Serialization.XmlTypeMapMemberElement::get_IsXmlTextCollector() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlTypeMapMemberElement_get_IsXmlTextCollector_m2FF0627D7710E6CB03FF540D8BE2AEF22ADB6570_inline (XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.XmlTypeMapMemberExpandable::set_FlatArrayIndex(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapMemberExpandable_set_FlatArrayIndex_m34257D88ADAD9D20AD7BD89FB29EA298553567CA_inline (XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* __this, int32_t ___0_value, const RuntimeMethod* method) ; // System.Boolean System.Nullable`1::get_HasValue() inline bool Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_inline (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* __this, const RuntimeMethod* method) { return (( bool (*) (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01*, const RuntimeMethod*))Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_gshared_inline)(__this, method); } // System.Void System.Nullable`1::.ctor(T) inline void Nullable_1__ctor_m4FAA8281CB4EFFD8B817734351FB3AC20A0CD6F5 (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* __this, bool ___0_value, const RuntimeMethod* method) { (( void (*) (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01*, bool, const RuntimeMethod*))Nullable_1__ctor_m4FAA8281CB4EFFD8B817734351FB3AC20A0CD6F5_gshared)(__this, ___0_value, method); } // T System.Nullable`1::get_Value() inline bool Nullable_1_get_Value_mE2C54C6AE9FC9F05BF44CD9D7D61DC6CD56E3E28 (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* __this, const RuntimeMethod* method) { return (( bool (*) (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01*, const RuntimeMethod*))Nullable_1_get_Value_mE2C54C6AE9FC9F05BF44CD9D7D61DC6CD56E3E28_gshared)(__this, method); } // System.Boolean System.Xml.Serialization.XmlTypeMapElementInfo::get_IsTextElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeMapElementInfo_get_IsTextElement_m264B22862789A3E5250E3BC780F0E888115596AF (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method) ; // System.Xml.XmlQualifiedName System.Xml.Serialization.ClassMap::get_SimpleContentBaseType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ClassMap_get_SimpleContentBaseType_mCE46351CF4900E4F3990D896D8A0533253FE09AD (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Serialization.ObjectMap::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectMap__ctor_mE344582A0192332702FFC03592ECA4CB356D2E41 (ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0* __this, const RuntimeMethod* method) ; // System.String System.Xml.Serialization.EnumMap/EnumMapMember::get_EnumName() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* EnumMapMember_get_EnumName_m2E7534A1D65579CB33E8B43EF4186FC12A2D1B89_inline (EnumMapMember_tB7A0813F20CFA0758843C38C2ECE325B13893E38* __this, const RuntimeMethod* method) ; // System.String System.Xml.Serialization.EnumMap/EnumMapMember::get_XmlName() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* EnumMapMember_get_XmlName_mECD2830C6795BE2A0206F5A72D819C8DBAE015E8_inline (EnumMapMember_tB7A0813F20CFA0758843C38C2ECE325B13893E38* __this, const RuntimeMethod* method) ; // System.Int64 System.Xml.Serialization.EnumMap/EnumMapMember::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t EnumMapMember_get_Value_mD0B2EF80A4D874FF81E307E81063D9B52A98548E_inline (EnumMapMember_tB7A0813F20CFA0758843C38C2ECE325B13893E38* __this, const RuntimeMethod* method) ; // System.Void System.InvalidCastException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidCastException__ctor_mCBC218CE25034242D2EB33B3E59933295CE93C56 (InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* __this, const RuntimeMethod* method) ; // System.Globalization.CultureInfo System.Globalization.CultureInfo::get_CurrentCulture() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* CultureInfo_get_CurrentCulture_m8A4580F49DDD7E9DB34C699965423DB8E3BBA9A5 (const RuntimeMethod* method) ; // System.Int64[] System.Xml.Serialization.EnumMap::get_Values() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D* EnumMap_get_Values_m91652E064D00536B1B286304F49E3FD1EBCD7FDC_inline (EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C* __this, const RuntimeMethod* method) ; // System.String[] System.Xml.Serialization.EnumMap::get_XmlNames() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* EnumMap_get_XmlNames_m2E3DD7C64B62B3C6217CD1FBA64B76409E4BBF5F_inline (EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.Serialization.EnumMap::get_IsFlags() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool EnumMap_get_IsFlags_m579F34B1547F457834A6980C8E77BF1936D742CD_inline (EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C* __this, const RuntimeMethod* method) ; // System.String System.Xml.Serialization.XmlCustomFormatter::FromEnum(System.Int64,System.String[],System.Int64[],System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlCustomFormatter_FromEnum_mF298092C9B8DF7CFEB96557CE3FDFB7C7E1A6163 (int64_t ___0_value, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___1_values, Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D* ___2_ids, String_t* ___3_typeName, const RuntimeMethod* method) ; // System.String System.String::Format(System.IFormatProvider,System.String,System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m44BF8BF44DC9B67D6CF265A1A2703A6D743F5C56 (RuntimeObject* ___0_provider, String_t* ___1_format, RuntimeObject* ___2_arg0, RuntimeObject* ___3_arg1, const RuntimeMethod* method) ; // System.String[] System.String::Split(System.Char[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* String_Split_m101D35FEC86371D2BB4E3480F6F896880093B2E9 (String_t* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_separator, const RuntimeMethod* method) ; // System.String[] System.Xml.Serialization.EnumMap::get_EnumNames() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* EnumMap_get_EnumNames_m60EAEB72502A0F1E05871326127A80033BA7E35E_inline (EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C* __this, const RuntimeMethod* 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.Boolean System.Xml.XmlConfiguration.XmlReaderSection::get_ProhibitDefaultUrlResolver() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlReaderSection_get_ProhibitDefaultUrlResolver_m05ADF085D05F3BDBE922DE810EC83C717DA41A03 (const RuntimeMethod* method) ; // System.Void System.Xml.XmlUrlResolver::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlUrlResolver__ctor_m2BF23C41038D2825C0854A4C01DCE078E171A7BB (XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.XmlConfiguration.XsltConfigSection::get_s_ProhibitDefaultUrlResolver() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XsltConfigSection_get_s_ProhibitDefaultUrlResolver_m5B6373964884DFD155C3A48B73E181CDECE7A17F (const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.XslTransform::Load(System.Xml.XPath.XPathNavigator,System.Xml.XmlResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XslTransform_Load_m10C5F1E0536E482F12B9BA6AEA5CFA21FA11D8C9 (XslTransform_t32C87F5469FF9F15D11EAA03EE708AF205AE4BE0* __this, XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* ___0_stylesheet, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___1_resolver, const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.XslTransform::Compile(System.Xml.XPath.XPathNavigator,System.Xml.XmlResolver,System.Security.Policy.Evidence) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XslTransform_Compile_m35B6617E353EAB9AC975D2B3AA787B1DC009D909 (XslTransform_t32C87F5469FF9F15D11EAA03EE708AF205AE4BE0* __this, XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* ___0_stylesheet, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___1_resolver, Evidence_t890BA14A138D1935B7A361CA3FA55484D66B2F64* ___2_evidence, const RuntimeMethod* method) ; // System.String System.Xml.Res::GetString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Res_GetString_mBEE82ACFE97F93A6DDE81E322477CF2713466364 (String_t* ___0_name, const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.XslTransform::CheckCommand() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XslTransform_CheckCommand_m03A304F9DE1CC2DF29F707380F54F0F46D3C734D (XslTransform_t32C87F5469FF9F15D11EAA03EE708AF205AE4BE0* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.XsltOld.Processor::.ctor(System.Xml.XPath.XPathNavigator,System.Xml.Xsl.XsltArgumentList,System.Xml.XmlResolver,System.Xml.Xsl.XsltOld.Stylesheet,System.Collections.Generic.List`1,System.Xml.Xsl.XsltOld.RootAction,System.Xml.Xsl.XsltOld.Debugger.IXsltDebugger) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Processor__ctor_m78292156362DCD4589E6DE1E4F3E6D2F49DEE936 (Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83* __this, XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* ___0_doc, XsltArgumentList_tCB3312D17FD0D83C20E32BB7CE76B8A280A209BF* ___1_args, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___2_resolver, Stylesheet_t877F8405A546EAB0A26CE0F54A7F48533686E5AB* ___3_stylesheet, List_1_t34BD5FC03C0DFF68F2817059E6FD410AD98DF02A* ___4_queryStore, RootAction_t94281C7ECEF5D1837C8264D38E4486DF137E7035* ___5_rootAction, RuntimeObject* ___6_debugger, const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.XsltOld.Processor::Execute(System.Xml.XmlWriter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Processor_Execute_mA6A5DAADD4110FD44D378124B5F568F1D3EC8D2F (Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83* __this, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___0_writer, const RuntimeMethod* method) ; // System.Xml.Xsl.XsltOld.Debugger.IXsltDebugger System.Xml.Xsl.XslTransform::get_Debugger() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* XslTransform_get_Debugger_mEF9F9CEAFBFA9858AFC8F03E58D4AA42C7EF56AB_inline (XslTransform_t32C87F5469FF9F15D11EAA03EE708AF205AE4BE0* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.XsltOld.DbgCompiler::.ctor(System.Xml.Xsl.XsltOld.Debugger.IXsltDebugger) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DbgCompiler__ctor_m63E930476D4F073C9BC99F8E2FFD6769208FA2E8 (DbgCompiler_t310F6D239D695E13367E3160AA8A84AC2ECA5C34* __this, RuntimeObject* ___0_debugger, const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.XsltOld.Compiler::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Compiler__ctor_m79048DF18E888D1C7B7B6FB1E5601428DACBE11D (Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.XsltOld.NavigatorInput::.ctor(System.Xml.XPath.XPathNavigator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NavigatorInput__ctor_m567A59410920DB06976463A8FD6D89DBD5C57B5C (NavigatorInput_t320297C3DA5C438B7B111C375918046FAAE8F8A6* __this, XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* ___0_navigator, const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.XsltOld.Compiler::Compile(System.Xml.Xsl.XsltOld.NavigatorInput,System.Xml.XmlResolver,System.Security.Policy.Evidence) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Compiler_Compile_m73676674D3395DE868BA6F2073944215875C91DB (Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* __this, NavigatorInput_t320297C3DA5C438B7B111C375918046FAAE8F8A6* ___0_input, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___1_xmlResolver, Evidence_t890BA14A138D1935B7A361CA3FA55484D66B2F64* ___2_evidence, const RuntimeMethod* method) ; // System.Xml.Xsl.XsltOld.Stylesheet System.Xml.Xsl.XsltOld.Compiler::get_CompiledStylesheet() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Stylesheet_t877F8405A546EAB0A26CE0F54A7F48533686E5AB* Compiler_get_CompiledStylesheet_mA280D11E65BC25A124F7D85975F74CC6DC7D4F13_inline (Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* __this, const RuntimeMethod* method) ; // System.Collections.Generic.List`1 System.Xml.Xsl.XsltOld.Compiler::get_QueryStore() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_t34BD5FC03C0DFF68F2817059E6FD410AD98DF02A* Compiler_get_QueryStore_mE01B86F79B6BDABD76E3C8ECAFB10ADFD44A8B67_inline (Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* __this, const RuntimeMethod* method) ; // System.Xml.Xsl.XsltOld.RootAction System.Xml.Xsl.XsltOld.Compiler::get_RootAction() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RootAction_t94281C7ECEF5D1837C8264D38E4486DF137E7035* Compiler_get_RootAction_m2D01397452DADB6B7E8A55597729C7558400CCAE_inline (Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.XsltArgumentList::CheckArgumentNull(System.Object,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsltArgumentList_CheckArgumentNull_mEE9B687CAD14A539F48E7F7B142051C2DF9477A2 (RuntimeObject* ___0_param, String_t* ___1_paramName, const RuntimeMethod* method) ; // System.Void System.Xml.XmlQualifiedName::Verify() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlQualifiedName_Verify_mFB83DB0C546F66AA49618EB39EBC76EEA477F002 (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlNamespaceManager::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlNamespaceManager__ctor_m6485992B6D88F2C7276E1D562B9F643AD60AD4CD (XmlNamespaceManager_t95431ADE7A94108629DFF894819FB1A9709D810F* __this, 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* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, 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* ___0_name, Type_t* ___1_type, const RuntimeMethod* method) ; // System.Runtime.Serialization.SerializationInfoEnumerator System.Runtime.Serialization.SerializationInfo::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SerializationInfoEnumerator_t810DE600E5F6AA4F2B66A7F56074277CCD8F1540* SerializationInfo_GetEnumerator_m5230A1D4E4B612E90B10E2034C638CD42F667EA6 (SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* __this, const RuntimeMethod* method) ; // System.Runtime.Serialization.SerializationEntry System.Runtime.Serialization.SerializationInfoEnumerator::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SerializationEntry_t6A03B35039769EF0EDD14BE879E68F1C104FFF74 SerializationInfoEnumerator_get_Current_m820863174CF73089751ACC36BC34DD3188A1929B (SerializationInfoEnumerator_t810DE600E5F6AA4F2B66A7F56074277CCD8F1540* __this, const RuntimeMethod* method) ; // System.String System.Runtime.Serialization.SerializationEntry::get_Name() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* SerializationEntry_get_Name_mF6151F31B3F43C88AF08F39F178401406642EB67_inline (SerializationEntry_t6A03B35039769EF0EDD14BE879E68F1C104FFF74* __this, const RuntimeMethod* method) ; // System.Object System.Runtime.Serialization.SerializationEntry::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* SerializationEntry_get_Value_mA57713535F866795C180D20067C0E38A85327912_inline (SerializationEntry_t6A03B35039769EF0EDD14BE879E68F1C104FFF74* __this, const RuntimeMethod* method) ; // System.Boolean System.Runtime.Serialization.SerializationInfoEnumerator::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SerializationInfoEnumerator_MoveNext_m4F052C960AE85EFED1048CAAAC538AB3714078A6 (SerializationInfoEnumerator_t810DE600E5F6AA4F2B66A7F56074277CCD8F1540* __this, const RuntimeMethod* method) ; // System.String System.Xml.Xsl.XsltException::CreateMessage(System.String,System.String[],System.String,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XsltException_CreateMessage_m6761F40B0492F757CD4D4279B58EF768C2C689F5 (String_t* ___0_res, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___1_args, String_t* ___2_sourceUri, int32_t ___3_lineNumber, int32_t ___4_linePosition, 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* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, 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* ___0_name, RuntimeObject* ___1_value, const RuntimeMethod* method) ; // System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_m9D6ADD10966D1FE8D19050F3A269747C23FE9FC4 (SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* __this, String_t* ___0_name, int32_t ___1_value, const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.XsltException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsltException__ctor_m9843FBCCBCCC37EA819FDDBDC8DFBA4BC36B5051 (XsltException_t068DA14245E560F1D8DD1C0EF96303DE84BAAE1F* __this, String_t* ___0_message, Exception_t* ___1_innerException, const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.XsltException::.ctor(System.String,System.String[],System.String,System.Int32,System.Int32,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsltException__ctor_mB50154E8D32C1CFFCF6D2CFC6E74C1DE78CCBEA7 (XsltException_t068DA14245E560F1D8DD1C0EF96303DE84BAAE1F* __this, String_t* ___0_res, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___1_args, String_t* ___2_sourceUri, int32_t ___3_lineNumber, int32_t ___4_linePosition, Exception_t* ___5_inner, 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* ___0_message, Exception_t* ___1_innerException, 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 ___0_value, const RuntimeMethod* 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.String System.Xml.Xsl.XsltException::FormatMessage(System.String,System.String[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XsltException_FormatMessage_mDFA6759732F10AD5DC02FE4012E89A6F2F5BB6AE (String_t* ___0_key, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___1_args, 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* ___0_provider, const RuntimeMethod* method) ; // System.String System.Xml.Utils.Res::GetString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Res_GetString_mC3BCC903185C00797859D2B15C008DEAA715FC11 (String_t* ___0_name, const RuntimeMethod* method) ; // System.String System.String::Format(System.IFormatProvider,System.String,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m447B585713E5EB3EBF5D9D0710706D01E8A56D75 (RuntimeObject* ___0_provider, String_t* ___1_format, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___2_args, const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.XsltException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsltException__ctor_mD8928C4BCD9AF8020D359E01C81C7B47FF16645B (XsltException_t068DA14245E560F1D8DD1C0EF96303DE84BAAE1F* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.XsltException::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsltException_GetObjectData_mA93A1F279D08A0027549FF5AE767A5C0E1788D76 (XsltException_t068DA14245E560F1D8DD1C0EF96303DE84BAAE1F* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.XsltException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsltException__ctor_m4F440236D1276C2A5C434BF3EB76AD45DCB16CE7 (XsltException_t068DA14245E560F1D8DD1C0EF96303DE84BAAE1F* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.XsltSettings::.ctor(System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsltSettings__ctor_m74EDE5AC95C0092830FC2EBFB7405C784FB3B22B (XsltSettings_tA9657F26E369F2962E205F2EB1CFE7345AFE0AF8* __this, bool ___0_enableDocumentFunction, bool ___1_enableScript, const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.XslCompiledTransform::.ctor(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XslCompiledTransform__ctor_mF2019F0BF28A78F2BD396C0563F3CA1D229340C7 (XslCompiledTransform_tC8029B33AE36F66B77D1C1D1CB261EE0DA130AA9* __this, bool ___0_enableDebug, const RuntimeMethod* method) ; // System.Void System.Xml.XmlWriterSettings::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriterSettings__ctor_mD453709B5F0BA2D3E082FD52A309838171DF207C (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.XslTransform::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XslTransform__ctor_m850C1001C91A0B97129CCDF94A2EB332ED8A9035 (XslTransform_t32C87F5469FF9F15D11EAA03EE708AF205AE4BE0* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.NoOperationDebugger::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NoOperationDebugger__ctor_m3EFBC1515D7D0880D30E08AE174032B3325F6D90 (NoOperationDebugger_t40687C8E2388D9450605E42A54D1793422EEDC9E* __this, const RuntimeMethod* method) ; // System.Void System.Xml.XmlWriterSettings::set_ConformanceLevel(System.Xml.ConformanceLevel) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlWriterSettings_set_ConformanceLevel_m926D2A6BCDE9EBA5FB82B952692A51AC54E6A9A6 (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* __this, int32_t ___0_value, const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.XslCompiledTransform::Transform(System.Xml.XPath.XPathNavigator,System.Xml.Xsl.XsltArgumentList,System.Xml.XmlWriter,System.Xml.XmlResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XslCompiledTransform_Transform_mDA68F385D646316C2F1C74DD245428CF3F8D7FA6 (XslCompiledTransform_tC8029B33AE36F66B77D1C1D1CB261EE0DA130AA9* __this, XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* ___0_input, XsltArgumentList_tCB3312D17FD0D83C20E32BB7CE76B8A280A209BF* ___1_args, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___2_output, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___3_resolver, const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.XslTransform::Transform(System.Xml.XPath.XPathNavigator,System.Xml.Xsl.XsltArgumentList,System.Xml.XmlWriter,System.Xml.XmlResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XslTransform_Transform_m422442E485673BBE018CF29DF718F434F54B7A20 (XslTransform_t32C87F5469FF9F15D11EAA03EE708AF205AE4BE0* __this, XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* ___0_input, XsltArgumentList_tCB3312D17FD0D83C20E32BB7CE76B8A280A209BF* ___1_args, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___2_output, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___3_resolver, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReader::.ctor(System.String,System.IO.Stream) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReader__ctor_m84B76A629FF60D1C5B5356ECAC4A2B2640281AE0 (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, String_t* ___0_url, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___1_input, const RuntimeMethod* method) ; // System.Void System.Xml.XmlTextReader::set_XmlResolver(System.Xml.XmlResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextReader_set_XmlResolver_mF617E3EC08480FE4693FF9A473BB9528126FCCDA (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* __this, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___0_value, const RuntimeMethod* method) ; // System.Void System.Xml.XmlValidatingReader::.ctor(System.Xml.XmlReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlValidatingReader__ctor_m34645395E4D284B8470ECD69A0E65EDD1A733E67 (XmlValidatingReader_tC22B0C99C972133DC954BB9906B62835330FB3F9* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___0_reader, const RuntimeMethod* method) ; // System.Void System.Xml.XmlValidatingReader::set_XmlResolver(System.Xml.XmlResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlValidatingReader_set_XmlResolver_m2BB30D0674E902CA2CFB0E4CC40DAAA6839AF100 (XmlValidatingReader_tC22B0C99C972133DC954BB9906B62835330FB3F9* __this, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___0_value, const RuntimeMethod* method) ; // System.Void System.Xml.XmlValidatingReader::set_ValidationType(System.Xml.ValidationType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlValidatingReader_set_ValidationType_m298E7338CDFA6EE0531F51E6F4AF57EFC557F1E0 (XmlValidatingReader_tC22B0C99C972133DC954BB9906B62835330FB3F9* __this, int32_t ___0_value, const RuntimeMethod* method) ; // System.Xml.XmlReader System.Xml.Xsl.XslCompiledTransform::GetXmlReader(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* XslCompiledTransform_GetXmlReader_m26BA6D62E23D706C4BDE3BA7351DE9E88E22BCAD (XslCompiledTransform_tC8029B33AE36F66B77D1C1D1CB261EE0DA130AA9* __this, String_t* ___0_url, const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.XslCompiledTransform::Load(System.Xml.XmlReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XslCompiledTransform_Load_mA4ADA8A04740A367D6D1C4D33F2D70673AD67C93 (XslCompiledTransform_tC8029B33AE36F66B77D1C1D1CB261EE0DA130AA9* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___0_stylesheet, const RuntimeMethod* method) ; // System.Xml.Xsl.XsltSettings System.Xml.Xsl.XsltSettings::get_Default() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XsltSettings_tA9657F26E369F2962E205F2EB1CFE7345AFE0AF8* XsltSettings_get_Default_m1AC7216FF06B4FDD66AB83883B5724366E7FAF92 (const RuntimeMethod* method) ; // System.Xml.XmlResolver System.Xml.XmlConfiguration.XsltConfigSection::CreateDefaultResolver() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* XsltConfigSection_CreateDefaultResolver_m773D2DD5A10763470D44412F82C99F50BB4218A0 (const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.XslCompiledTransform::Load(System.Xml.XmlReader,System.Xml.Xsl.XsltSettings,System.Xml.XmlResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XslCompiledTransform_Load_mDFCBDC71A4F7BD6E5E8BE8292B28EC423D3443D9 (XslCompiledTransform_tC8029B33AE36F66B77D1C1D1CB261EE0DA130AA9* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___0_stylesheet, XsltSettings_tA9657F26E369F2962E205F2EB1CFE7345AFE0AF8* ___1_settings, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___2_stylesheetResolver, const RuntimeMethod* method) ; // System.Boolean System.Xml.Xsl.XsltSettings::get_EnableScript() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XsltSettings_get_EnableScript_m4D2A4FDA3AA730C3B7A172DC071FC43E4EC48052_inline (XsltSettings_tA9657F26E369F2962E205F2EB1CFE7345AFE0AF8* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.XslTransform::Load(System.Xml.XPath.IXPathNavigable,System.Xml.XmlResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XslTransform_Load_m9185E617122331192CA04784A20296E75C182C8F (XslTransform_t32C87F5469FF9F15D11EAA03EE708AF205AE4BE0* __this, RuntimeObject* ___0_stylesheet, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___1_resolver, const RuntimeMethod* method) ; // System.Void System.Xml.XPath.XPathDocument::.ctor(System.Xml.XmlReader,System.Xml.XmlSpace) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XPathDocument__ctor_mC70CBBCF189D168032C03EFDCF6643B55AF37F9A (XPathDocument_tE736154E9BF3ACCEB884DD1EFBADB58BD56DF5EE* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___0_reader, int32_t ___1_space, const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.XslCompiledTransform::Load(System.Xml.XPath.IXPathNavigable,System.Xml.Xsl.XsltSettings,System.Xml.XmlResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XslCompiledTransform_Load_mF5EEA8966930B740C537F2059C0F742C7157D5C6 (XslCompiledTransform_tC8029B33AE36F66B77D1C1D1CB261EE0DA130AA9* __this, RuntimeObject* ___0_stylesheet, XsltSettings_tA9657F26E369F2962E205F2EB1CFE7345AFE0AF8* ___1_settings, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___2_stylesheetResolver, const RuntimeMethod* method) ; // System.Void MS.Internal.Xml.XPath.XPathSortComparer::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XPathSortComparer__ctor_mD423AE3554F93D2E4F5F5B123AAD22FCD2EDD21E (XPathSortComparer_tC6A91D91913FA15EB8A345E07F8E2F1996CA34E2* __this, int32_t ___0_size, const RuntimeMethod* method) ; // MS.Internal.Xml.XPath.Query System.Xml.Xsl.XsltOld.Processor::GetCompiledQuery(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Query_tA79EC81C5C56470386C2FCCF4CC81C13847DCFB6* Processor_GetCompiledQuery_m1E97635E74D78331ED70B8370C2702002FB72328 (Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83* __this, int32_t ___0_key, const RuntimeMethod* method) ; // System.Void MS.Internal.Xml.XPath.XPathComparerHelper::.ctor(System.Xml.XPath.XmlSortOrder,System.Xml.XPath.XmlCaseOrder,System.String,System.Xml.XPath.XmlDataType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XPathComparerHelper__ctor_mA4866B15D92683656004DF338C8FC8FB62DE666F (XPathComparerHelper_t9ADF0F2ABF74B2DD147EB95DFE63769278CA8C3D* __this, int32_t ___0_order, int32_t ___1_caseOrder, String_t* ___2_lang, int32_t ___3_dataType, const RuntimeMethod* method) ; // System.Void MS.Internal.Xml.XPath.XPathSortComparer::AddSort(MS.Internal.Xml.XPath.Query,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XPathSortComparer_AddSort_m4FD3E4D0AC2F4232B2D8C842229429826A06F4C2 (XPathSortComparer_tC6A91D91913FA15EB8A345E07F8E2F1996CA34E2* __this, Query_tA79EC81C5C56470386C2FCCF4CC81C13847DCFB6* ___0_evalQuery, RuntimeObject* ___1_comparer, const RuntimeMethod* method) ; // System.Void System.Collections.Generic.List`1::.ctor() inline void List_1__ctor_m7E55844F5FC0578B2033A08A213818507B11782A (List_1_t4245B07839A68A90F431D9175D30BD836E9E63F8* __this, const RuntimeMethod* method) { (( void (*) (List_1_t4245B07839A68A90F431D9175D30BD836E9E63F8*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method); } // System.Int32 System.Collections.Generic.List`1::get_Count() inline int32_t List_1_get_Count_mFD18F8A7426D9609EE9DC40BA97292BCBE455F7E_inline (List_1_t4245B07839A68A90F431D9175D30BD836E9E63F8* __this, const RuntimeMethod* method) { return (( int32_t (*) (List_1_t4245B07839A68A90F431D9175D30BD836E9E63F8*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method); } // System.Void MS.Internal.Xml.XPath.SortKey::.ctor(System.Int32,System.Int32,System.Xml.XPath.XPathNavigator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortKey__ctor_m55EAE15C4BE4A41E4E50D9540EA53AB9F90057E6 (SortKey_tE0F5DE6818DC859C42F339AE7E95298553919EED* __this, int32_t ___0_numKeys, int32_t ___1_originalPosition, XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* ___2_node, const RuntimeMethod* method) ; // MS.Internal.Xml.XPath.Query MS.Internal.Xml.XPath.XPathSortComparer::Expression(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Query_tA79EC81C5C56470386C2FCCF4CC81C13847DCFB6* XPathSortComparer_Expression_m8ABC892343E30D9B356D90B30BB23DCAB8B31A37 (XPathSortComparer_tC6A91D91913FA15EB8A345E07F8E2F1996CA34E2* __this, int32_t ___0_i, const RuntimeMethod* method) ; // System.Void MS.Internal.Xml.XPath.SortKey::set_Item(System.Int32,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortKey_set_Item_m404CE4319ABB4C04C6A7787E9164D5BB97EF3671 (SortKey_tE0F5DE6818DC859C42F339AE7E95298553919EED* __this, int32_t ___0_index, RuntimeObject* ___1_value, const RuntimeMethod* method) ; // System.Void System.Collections.Generic.List`1::Add(T) inline void List_1_Add_mDD6A3DD680DC46B74AEA281B1FAEACDB9D667FA2_inline (List_1_t4245B07839A68A90F431D9175D30BD836E9E63F8* __this, SortKey_tE0F5DE6818DC859C42F339AE7E95298553919EED* ___0_item, const RuntimeMethod* method) { (( void (*) (List_1_t4245B07839A68A90F431D9175D30BD836E9E63F8*, SortKey_tE0F5DE6818DC859C42F339AE7E95298553919EED*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___0_item, method); } // System.Boolean System.Xml.Xsl.XsltOld.ActionFrame::NewNextNode(System.Xml.Xsl.XsltOld.Processor) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ActionFrame_NewNextNode_mC704C187FF5F774D9D2B98FFA7D2D279AD402186 (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83* ___0_proc, const RuntimeMethod* method) ; // System.Void System.Collections.Generic.List`1::Sort(System.Collections.Generic.IComparer`1) inline void List_1_Sort_m244E21579BD2CAC0145CA4C0ED2B567C303F04B4 (List_1_t4245B07839A68A90F431D9175D30BD836E9E63F8* __this, RuntimeObject* ___0_comparer, const RuntimeMethod* method) { (( void (*) (List_1_t4245B07839A68A90F431D9175D30BD836E9E63F8*, RuntimeObject*, const RuntimeMethod*))List_1_Sort_m4204C143D97E871DF2553329CFB0FBE3CD1A01F2_gshared)(__this, ___0_comparer, method); } // System.Void System.Xml.Xsl.XsltOld.ActionFrame/XPathSortArrayIterator::.ctor(System.Collections.Generic.List`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XPathSortArrayIterator__ctor_m958E4C10516C4AB5CF55296305AF190429A4A98C (XPathSortArrayIterator_t2BA6E0F1CB15B24F861F906EB20341A35B3988A1* __this, List_1_t4245B07839A68A90F431D9175D30BD836E9E63F8* ___0_list, const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.XsltOld.ActionFrame::set_State(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ActionFrame_set_State_m663CEB8FCA17DF07B008588F536CAC43C08583D5_inline (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, int32_t ___0_value, const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.XsltOld.ActionFrame::Init(System.Xml.Xsl.XsltOld.Action,System.Xml.Xsl.XsltOld.ActionFrame,System.Xml.XPath.XPathNodeIterator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionFrame_Init_mB91A40B9FF3140478D5E466BAC072772C7EE35A2 (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, Action_tEDC91260C2F42125F4520C9EA2C57E7BFF7A8F14* ___0_action, ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* ___1_container, XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* ___2_nodeSet, const RuntimeMethod* method) ; // System.Xml.Xsl.XsltOld.Action System.Xml.Xsl.XsltOld.ActionFrame::GetAction(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Action_tEDC91260C2F42125F4520C9EA2C57E7BFF7A8F14* ActionFrame_GetAction_m1F25C3348B76DA5D71F113FD2ADB303DDE7544CE (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, int32_t ___0_actionIndex, const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.XsltOld.ActionFrame::SetAction(System.Xml.Xsl.XsltOld.Action,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionFrame_SetAction_mA40C350156C181D865F0E1AD35CA8B84A7EAE9E8 (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, Action_tEDC91260C2F42125F4520C9EA2C57E7BFF7A8F14* ___0_action, int32_t ___1_state, const RuntimeMethod* method) ; // System.Xml.Xsl.XsltOld.Action System.Xml.Xsl.XsltOld.ContainerAction::GetAction(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Action_tEDC91260C2F42125F4520C9EA2C57E7BFF7A8F14* ContainerAction_GetAction_m4370B604BDF51547F5951118E2F7DC560F21ACC2 (ContainerAction_t7A45AFD9C9840A47FE328AAA30C84F47A0693CE3* __this, int32_t ___0_actionIndex, const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.XsltOld.ActionFrame::Finished() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionFrame_Finished_mDF172E8E38BD80DCD91901D46A92A327F8208EA5 (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, const RuntimeMethod* method) ; // System.Int32 System.Xml.Xsl.XsltOld.ActionFrame::get_State() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ActionFrame_get_State_m6C7068E9000AA86183FA799E3F92521FE6E76E7C_inline (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, const RuntimeMethod* method) ; // System.Xml.Xsl.XsltOld.Stylesheet System.Xml.Xsl.XsltOld.Processor::get_Stylesheet() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Stylesheet_t877F8405A546EAB0A26CE0F54A7F48533686E5AB* Processor_get_Stylesheet_m320A6D19C9D7650EAA886B1DA0049838ACC6FA28_inline (Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.Xsl.XsltOld.Stylesheet::get_Whitespace() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Stylesheet_get_Whitespace_m1938629178E91807BB328BDDCCC9D57D168BCCF9_inline (Stylesheet_t877F8405A546EAB0A26CE0F54A7F48533686E5AB* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.Xsl.XsltOld.Stylesheet::PreserveWhiteSpace(System.Xml.Xsl.XsltOld.Processor,System.Xml.XPath.XPathNavigator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Stylesheet_PreserveWhiteSpace_mE6C6F21B9F809CA675F847308365D0400273047F (Stylesheet_t877F8405A546EAB0A26CE0F54A7F48533686E5AB* __this, Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83* ___0_proc, XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* ___1_node, const RuntimeMethod* method) ; // System.Void MS.Internal.Xml.XPath.XPathArrayIterator::.ctor(System.Collections.IList) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XPathArrayIterator__ctor_m05345E27BF7C0D236CAC1BC3D03E450FBCE26FE5 (XPathArrayIterator_t99C9BCCC2BA66B7E0246D8C84C6866DE8DC23979* __this, RuntimeObject* ___0_list, const RuntimeMethod* method) ; // System.Void MS.Internal.Xml.XPath.XPathArrayIterator::.ctor(MS.Internal.Xml.XPath.XPathArrayIterator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XPathArrayIterator__ctor_m8780C5AD8A2E4C07D9FFE507E6F82EEB14C942F7 (XPathArrayIterator_t99C9BCCC2BA66B7E0246D8C84C6866DE8DC23979* __this, XPathArrayIterator_t99C9BCCC2BA66B7E0246D8C84C6866DE8DC23979* ___0_it, const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.XsltOld.ActionFrame/XPathSortArrayIterator::.ctor(System.Xml.Xsl.XsltOld.ActionFrame/XPathSortArrayIterator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XPathSortArrayIterator__ctor_mBCF136F7B076DC837AE9CAF477A60FFEE048DC4D (XPathSortArrayIterator_t2BA6E0F1CB15B24F861F906EB20341A35B3988A1* __this, XPathSortArrayIterator_t2BA6E0F1CB15B24F861F906EB20341A35B3988A1* ___0_it, const RuntimeMethod* method) ; // System.Xml.XPath.XPathNavigator MS.Internal.Xml.XPath.SortKey::get_Node() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* SortKey_get_Node_m49F470092A325A8D83EDA0C52414CE4DD725A8CA_inline (SortKey_tE0F5DE6818DC859C42F339AE7E95298553919EED* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.XsltOld.CompiledAction::CheckEmpty(System.Xml.Xsl.XsltOld.Compiler) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompiledAction_CheckEmpty_m4F8BE1F97D3388CF717260E60627BAE322B21271 (CompiledAction_t1A3FB546A91EDE365CB98FBACB26666C9217750E* __this, Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* ___0_compiler, const RuntimeMethod* method) ; // System.Boolean System.Xml.Xsl.XsltOld.Compiler::get_CanHaveApplyImports() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Compiler_get_CanHaveApplyImports_mCE2F4F6010361CE5FBB141778F5D7C37F0732613 (Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* __this, const RuntimeMethod* method) ; // T[] System.Array::Empty() inline StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* Array_Empty_TisString_t_m9832B70DF2B936246FE60F75D3D12CB946C39D16_inline (const RuntimeMethod* method) { return (( StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* (*) (const RuntimeMethod*))Array_Empty_TisRuntimeObject_mFB8A63D602BB6974D31E20300D9EB89C6FE7C278_gshared_inline)(method); } // System.Xml.Xsl.XsltException System.Xml.Xsl.XsltException::Create(System.String,System.String[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XsltException_t068DA14245E560F1D8DD1C0EF96303DE84BAAE1F* XsltException_Create_m05D682F3ED57C1BE81B4951BC325D469916DB86E (String_t* ___0_res, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___1_args, const RuntimeMethod* method) ; // System.Xml.XmlQualifiedName System.Xml.Xsl.XsltOld.Compiler::get_CurrentMode() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* Compiler_get_CurrentMode_mB6C9CA51647A0026CAD3E9127E5D7668F0419190_inline (Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* __this, const RuntimeMethod* method) ; // System.Xml.XPath.XPathNodeIterator System.Xml.Xsl.XsltOld.ActionFrame::get_NodeSet() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* ActionFrame_get_NodeSet_mCEA23754D948C80341C63E6DCD6B28A7C1DD8FBA_inline (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.XsltOld.Processor::PushTemplateLookup(System.Xml.XPath.XPathNodeIterator,System.Xml.XmlQualifiedName,System.Xml.Xsl.XsltOld.Stylesheet) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Processor_PushTemplateLookup_m073607F6ED4DFD6DF1C79E73E40AF3E3D5C86661 (Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83* __this, XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* ___0_nodeSet, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___1_mode, Stylesheet_t877F8405A546EAB0A26CE0F54A7F48533686E5AB* ___2_importsOf, const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.XsltOld.CompiledAction::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompiledAction__ctor_m5657EBCA346B8652AD43CDE1FB9130E3380EDF84 (CompiledAction_t1A3FB546A91EDE365CB98FBACB26666C9217750E* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.XsltOld.ApplyTemplatesAction::.ctor(System.Xml.XmlQualifiedName) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ApplyTemplatesAction__ctor_m94299EE029D7B9DE7B590BF47748344266180158 (ApplyTemplatesAction_t6239D436A0DB073AAF03DC4786AE2F86E4C60793* __this, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___0_mode, const RuntimeMethod* method) ; // System.Xml.Xsl.XsltOld.ApplyTemplatesAction System.Xml.Xsl.XsltOld.ApplyTemplatesAction::BuiltInRule() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ApplyTemplatesAction_t6239D436A0DB073AAF03DC4786AE2F86E4C60793* ApplyTemplatesAction_BuiltInRule_mBE6878C9A009CABCB9CD883A70302DDFA405ABDB_inline (const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.XsltOld.ContainerAction::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContainerAction__ctor_m8848BE88360BB872F078CA00271AE7910563343D (ContainerAction_t7A45AFD9C9840A47FE328AAA30C84F47A0693CE3* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.XsltOld.CompiledAction::CompileAttributes(System.Xml.Xsl.XsltOld.Compiler) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompiledAction_CompileAttributes_m89DE98DF58DF9B21DE5ABED32BBB10EA5BD9CF7C (CompiledAction_t1A3FB546A91EDE365CB98FBACB26666C9217750E* __this, Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* ___0_compiler, const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.XsltOld.ApplyTemplatesAction::CompileContent(System.Xml.Xsl.XsltOld.Compiler) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ApplyTemplatesAction_CompileContent_mF2A6AB5F74E4D87E6FE7FB4C3A3C3A9B70DB75DC (ApplyTemplatesAction_t6239D436A0DB073AAF03DC4786AE2F86E4C60793* __this, Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* ___0_compiler, const RuntimeMethod* method) ; // System.Xml.Xsl.XsltOld.NavigatorInput System.Xml.Xsl.XsltOld.Compiler::get_Input() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NavigatorInput_t320297C3DA5C438B7B111C375918046FAAE8F8A6* Compiler_get_Input_m4CB6E2667545733AA0FCB111CACB30EEB9B632C4_inline (Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* __this, const RuntimeMethod* method) ; // System.String System.Xml.Xsl.XsltOld.NavigatorInput::get_LocalName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NavigatorInput_get_LocalName_mFD21D36062437258B5586D500E83947FC9C4FAEE (NavigatorInput_t320297C3DA5C438B7B111C375918046FAAE8F8A6* __this, const RuntimeMethod* method) ; // System.String System.Xml.Xsl.XsltOld.NavigatorInput::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NavigatorInput_get_Value_m3F9C4256990322889ED561F7FCF24A6090D1C035 (NavigatorInput_t320297C3DA5C438B7B111C375918046FAAE8F8A6* __this, const RuntimeMethod* method) ; // System.Xml.Xsl.Xslt.KeywordsTable System.Xml.Xsl.XsltOld.Compiler::get_Atoms() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeywordsTable_t0E219DF02F8110A89E6F0FA77F351B312037EF83* Compiler_get_Atoms_mACC1EA63994DCCCFF058820A88AF91AFE3149A98_inline (Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.Ref::Equal(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Ref_Equal_m60FD3EF02546279815B785F856568B01F60FE1AF (String_t* ___0_strA, String_t* ___1_strB, const RuntimeMethod* method) ; // System.Int32 System.Xml.Xsl.XsltOld.Compiler::AddQuery(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Compiler_AddQuery_m89F9FCC406284250A732901334B6605987D9F252 (Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* __this, String_t* ___0_xpathQuery, const RuntimeMethod* method) ; // System.Xml.XmlQualifiedName System.Xml.Xsl.XsltOld.Compiler::CreateXPathQName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* Compiler_CreateXPathQName_m0E12EB361B9EB502960C97C10E41803AF0F0FC08 (Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* __this, String_t* ___0_qname, const RuntimeMethod* method) ; // System.Boolean System.Xml.Xsl.XsltOld.Compiler::Recurse() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Compiler_Recurse_m81ACA1B4B069C296EB6C649E3015141539D25CD0 (Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* __this, const RuntimeMethod* method) ; // System.Xml.XPath.XPathNodeType System.Xml.Xsl.XsltOld.NavigatorInput::get_NodeType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NavigatorInput_get_NodeType_m1770FD47D9F7384CB41B7846BD4F19739DDCCA4F (NavigatorInput_t320297C3DA5C438B7B111C375918046FAAE8F8A6* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.XsltOld.Compiler::PushNamespaceScope() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Compiler_PushNamespaceScope_m6219C8C05133F1781937B7DD7834763A5DBB4C70 (Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* __this, const RuntimeMethod* method) ; // System.String System.Xml.Xsl.XsltOld.NavigatorInput::get_NamespaceURI() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NavigatorInput_get_NamespaceURI_m8C0BEBA361DCF015572BFD7037F6ED1F5E939914 (NavigatorInput_t320297C3DA5C438B7B111C375918046FAAE8F8A6* __this, const RuntimeMethod* method) ; // System.Xml.Xsl.Xslt.KeywordsTable System.Xml.Xsl.XsltOld.NavigatorInput::get_Atoms() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeywordsTable_t0E219DF02F8110A89E6F0FA77F351B312037EF83* NavigatorInput_get_Atoms_m6860F1A958F5B7057EA725AD9704011D6CB6F993_inline (NavigatorInput_t320297C3DA5C438B7B111C375918046FAAE8F8A6* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.XsltOld.ContainerAction::AddAction(System.Xml.Xsl.XsltOld.Action) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContainerAction_AddAction_m4E1F4A8B91E71CCEE258F8B981B6DD466B30997B (ContainerAction_t7A45AFD9C9840A47FE328AAA30C84F47A0693CE3* __this, Action_tEDC91260C2F42125F4520C9EA2C57E7BFF7A8F14* ___0_action, const RuntimeMethod* method) ; // System.Xml.XmlQualifiedName System.Xml.Xsl.XsltOld.VariableAction::get_Name() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* VariableAction_get_Name_m513EB54577C762D5F08192F32C47D0917E3A0BD7_inline (VariableAction_t9CEFA9798405B9FCA0724A80692D1902659AE136* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.XsltOld.ContainerAction::CheckDuplicateParams(System.Xml.XmlQualifiedName) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContainerAction_CheckDuplicateParams_m828F8716F3C0989F279D292BBD23A9D0185B4849 (ContainerAction_t7A45AFD9C9840A47FE328AAA30C84F47A0693CE3* __this, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___0_name, const RuntimeMethod* method) ; // System.Xml.Xsl.XsltException System.Xml.Xsl.XsltOld.Compiler::UnexpectedKeyword() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XsltException_t068DA14245E560F1D8DD1C0EF96303DE84BAAE1F* Compiler_UnexpectedKeyword_m43E784A57E9881C71C20641A897F409379C4DA32 (Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.Xsl.XsltOld.Compiler::Advance() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Compiler_Advance_mF0C01C570FD6254C93861F325515B94E05304DEF (Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.Xsl.XsltOld.Compiler::ToParent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Compiler_ToParent_mCC417FE19E693F7CA60293576D6BAD3A81853664 (Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.XsltOld.Processor::ResetParams() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Processor_ResetParams_mD8A944A129B15E8A5257E1E8948C3842BE6DFF91 (Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.XsltOld.Processor::InitSortArray() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Processor_InitSortArray_mE2E402A84E6F17AA5F03081958C706C12CA66771 (Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.XsltOld.Processor::PushActionFrame(System.Xml.Xsl.XsltOld.ActionFrame) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Processor_PushActionFrame_m53F1695C6C0D48E3B199614E5E2B2A912A89502C (Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83* __this, ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* ___0_container, const RuntimeMethod* method) ; // System.Xml.XPath.XPathNavigator System.Xml.Xsl.XsltOld.ActionFrame::get_Node() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* ActionFrame_get_Node_m172274CE6AF3457979E81A9726AC0CBAF8F60F2B (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.XsltOld.ActionFrame::InitNewNodeSet(System.Xml.XPath.XPathNodeIterator) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ActionFrame_InitNewNodeSet_m90A241AB98A562D3BF2BB72712F3BE72C65623B1_inline (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* ___0_nodeSet, const RuntimeMethod* method) ; // System.Xml.XPath.XPathNodeIterator System.Xml.Xsl.XsltOld.Processor::StartQuery(System.Xml.XPath.XPathNodeIterator,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* Processor_StartQuery_m9BB80E34604B2868E9E6E1D83B62C1C90D15CF3D (Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83* __this, XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* ___0_context, int32_t ___1_key, const RuntimeMethod* method) ; // System.Collections.ArrayList System.Xml.Xsl.XsltOld.Processor::get_SortArray() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* Processor_get_SortArray_mD77A7777515A0F68D949FE6761F0D9E0D49E5143_inline (Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.XsltOld.ActionFrame::SortNewNodeSet(System.Xml.Xsl.XsltOld.Processor,System.Collections.ArrayList) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionFrame_SortNewNodeSet_mAC3292C9640460B37B7FEF2F9B4EF5BCEE0F04CC (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83* ___0_proc, ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ___1_sortarray, const RuntimeMethod* method) ; // System.Xml.XPath.XPathNodeIterator System.Xml.Xsl.XsltOld.ActionFrame::get_NewNodeSet() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* ActionFrame_get_NewNodeSet_m64499B616519A81E2895E932777D4542D6645ED1_inline (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.XsltOld.ApplyTemplatesAction::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ApplyTemplatesAction__ctor_m4EAABFD18219B021D7A73F27F83DE1F06B757BBD (ApplyTemplatesAction_t6239D436A0DB073AAF03DC4786AE2F86E4C60793* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.XsltOld.PrefixQName::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PrefixQName__ctor_m8907897329C215898E724AF7536F6DB913EE408D (PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.XsltOld.PrefixQName::SetQName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PrefixQName_SetQName_m6869D1088653657AF5E2A537DF1AF435179C0B45 (PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95* __this, String_t* ___0_qname, const RuntimeMethod* method) ; // System.String System.Xml.Xsl.XsltOld.InputScopeManager::ResolveXPathNamespace(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InputScopeManager_ResolveXPathNamespace_m23EC6A9B0C9D6215C5D7945BE9F177C8D43197FF (InputScopeManager_tF27B9679D4E5F5A5D5AA79DDC2C74F2A51D844E4* __this, String_t* ___0_prefix, 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* ___0_value, int32_t ___1_comparisonType, const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.XsltOld.PrefixQName::ClearPrefix() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PrefixQName_ClearPrefix_m82FFF8CDA839258F219DC39CD34BF5A7F6221CC2 (PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95* __this, const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.XsltOld.CompiledAction::CheckRequiredAttribute(System.Xml.Xsl.XsltOld.Compiler,System.Object,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompiledAction_CheckRequiredAttribute_m7E381CB09F81993F3FAAA5DAD65A4E69CBFB494E (CompiledAction_t1A3FB546A91EDE365CB98FBACB26666C9217750E* __this, Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* ___0_compiler, RuntimeObject* ___1_attrValue, String_t* ___2_attrName, const RuntimeMethod* method) ; // System.String System.Xml.Xsl.XsltOld.CompiledAction::PrecalculateAvt(System.Xml.Xsl.XsltOld.Avt&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CompiledAction_PrecalculateAvt_m00625370DFA83C049BF358A361AC9A84AF4648F9 (Avt_t68EC7ADCD01911FB2B2570645C28DAF9CA8DDE75** ___0_avt, const RuntimeMethod* method) ; // System.Xml.Xsl.XsltOld.InputScopeManager System.Xml.Xsl.XsltOld.Compiler::CloneScopeManager() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputScopeManager_tF27B9679D4E5F5A5D5AA79DDC2C74F2A51D844E4* Compiler_CloneScopeManager_m7CA8E62F546214BF3A0DE96E7B297420E306350E (Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* __this, const RuntimeMethod* method) ; // System.Xml.Xsl.XsltOld.PrefixQName System.Xml.Xsl.XsltOld.AttributeAction::CreateAttributeQName(System.String,System.String,System.Xml.Xsl.XsltOld.InputScopeManager) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95* AttributeAction_CreateAttributeQName_m538B0C2CDB5AD14582B91100E4150607120BE2B7 (String_t* ___0_name, String_t* ___1_nsUri, InputScopeManager_tF27B9679D4E5F5A5D5AA79DDC2C74F2A51D844E4* ___2_manager, const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.XsltOld.ContainerAction::CompileTemplate(System.Xml.Xsl.XsltOld.Compiler) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContainerAction_CompileTemplate_mE425BA69E405B94651EFE77FAE12ECD2F8B62362 (ContainerAction_t7A45AFD9C9840A47FE328AAA30C84F47A0693CE3* __this, Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* ___0_compiler, const RuntimeMethod* method) ; // System.Xml.Xsl.XsltOld.Avt System.Xml.Xsl.XsltOld.Avt::CompileAvt(System.Xml.Xsl.XsltOld.Compiler,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Avt_t68EC7ADCD01911FB2B2570645C28DAF9CA8DDE75* Avt_CompileAvt_m76B84AEE9A253668BEE747DB1BC61D14C699E627 (Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* ___0_compiler, String_t* ___1_avtText, const RuntimeMethod* method) ; // System.Void System.Xml.Xsl.XsltOld.ActionFrame::set_CalulatedName(System.Xml.Xsl.XsltOld.PrefixQName) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ActionFrame_set_CalulatedName_m2B99ED2D21B50B1ADB0760CBCF1DB3AF05093D03_inline (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95* ___0_value, const RuntimeMethod* method) ; // System.String System.Xml.Xsl.XsltOld.Avt::Evaluate(System.Xml.Xsl.XsltOld.Processor,System.Xml.Xsl.XsltOld.ActionFrame) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Avt_Evaluate_m62CDBB060BA728F11E3F640757E0D7E9CCF71BCB (Avt_t68EC7ADCD01911FB2B2570645C28DAF9CA8DDE75* __this, Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83* ___0_processor, ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* ___1_frame, const RuntimeMethod* method) ; // System.Xml.Xsl.XsltOld.PrefixQName System.Xml.Xsl.XsltOld.ActionFrame::get_CalulatedName() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95* ActionFrame_get_CalulatedName_mED295E10C089643BF4861C7A633DB0349919429A_inline (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, const RuntimeMethod* method) ; // System.Boolean System.Xml.Xsl.XsltOld.Processor::BeginEvent(System.Xml.XPath.XPathNodeType,System.String,System.String,System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Processor_BeginEvent_m6CE2B16ED12EA503CDA9526AC2FED1D03EFB36A5 (Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83* __this, int32_t ___0_nodeType, String_t* ___1_prefix, String_t* ___2_name, String_t* ___3_nspace, bool ___4_empty, const RuntimeMethod* method) ; // System.Boolean System.Xml.Xsl.XsltOld.Processor::EndEvent(System.Xml.XPath.XPathNodeType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Processor_EndEvent_m9E9C89E291F87F1A2AE6568797D66FD739B67BFD (Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83* __this, int32_t ___0_nodeType, const RuntimeMethod* method) ; #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Serialization.XmlSerializationReader/WriteCallbackInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WriteCallbackInfo__ctor_m37F31F6AFF382B838F022DFF2F6C49AEE921D110 (WriteCallbackInfo_t1B01208EBEF54FE064CBE2DD5062C89EBD7A4F7D* __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.Xml.Serialization.XmlSerializationReader/CollectionFixup::.ctor(System.Object,System.Xml.Serialization.XmlSerializationCollectionFixupCallback,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionFixup__ctor_m1F4ADF9D829F9B0BFEB1442AEB2167118F4EA0AB (CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702* __this, RuntimeObject* ___0_collection, XmlSerializationCollectionFixupCallback_t7A477E768FFD9DF76301088150243A493D5A4842* ___1_callback, String_t* ___2_id, const RuntimeMethod* method) { { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); XmlSerializationCollectionFixupCallback_t7A477E768FFD9DF76301088150243A493D5A4842* L_0 = ___1_callback; __this->___callback_0 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___callback_0), (void*)L_0); RuntimeObject* L_1 = ___0_collection; __this->___collection_1 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___collection_1), (void*)L_1); String_t* L_2 = ___2_id; __this->___id_3 = L_2; Il2CppCodeGenWriteBarrier((void**)(&__this->___id_3), (void*)L_2); return; } } // System.Xml.Serialization.XmlSerializationCollectionFixupCallback System.Xml.Serialization.XmlSerializationReader/CollectionFixup::get_Callback() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSerializationCollectionFixupCallback_t7A477E768FFD9DF76301088150243A493D5A4842* CollectionFixup_get_Callback_m1F1435C58DB8A0FDDC6EF46BAE8C871531BEDBAE (CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702* __this, const RuntimeMethod* method) { { XmlSerializationCollectionFixupCallback_t7A477E768FFD9DF76301088150243A493D5A4842* L_0 = __this->___callback_0; return L_0; } } // System.Object System.Xml.Serialization.XmlSerializationReader/CollectionFixup::get_Collection() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CollectionFixup_get_Collection_m33F4B486A798DB34A155875436454D248ADF0FD0 (CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702* __this, const RuntimeMethod* method) { { RuntimeObject* L_0 = __this->___collection_1; return L_0; } } // System.Object System.Xml.Serialization.XmlSerializationReader/CollectionFixup::get_Id() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CollectionFixup_get_Id_m02C21982C2A3986E65A34429213F203558849D40 (CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___id_3; return L_0; } } // System.Object System.Xml.Serialization.XmlSerializationReader/CollectionFixup::get_CollectionItems() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CollectionFixup_get_CollectionItems_m7C8D7CB07A7C17F517B09A5145424EB1DE0EB497 (CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702* __this, const RuntimeMethod* method) { { RuntimeObject* L_0 = __this->___collectionItems_2; return L_0; } } // System.Void System.Xml.Serialization.XmlSerializationReader/CollectionFixup::set_CollectionItems(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionFixup_set_CollectionItems_mE1B2C71D40112F90E2ECC65D1E14234BA2ED351F (CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702* __this, RuntimeObject* ___0_value, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___0_value; __this->___collectionItems_2 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___collectionItems_2), (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.Xml.Serialization.XmlSerializationReader/Fixup::.ctor(System.Object,System.Xml.Serialization.XmlSerializationFixupCallback,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Fixup__ctor_m7213A65447CD4248AA5F086E4C71C792B5A21F14 (Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* __this, RuntimeObject* ___0_o, XmlSerializationFixupCallback_t882A7D135707B29ECA0198EFF9BB512C8F54A3AE* ___1_callback, int32_t ___2_count, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); RuntimeObject* L_0 = ___0_o; __this->___source_0 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___source_0), (void*)L_0); XmlSerializationFixupCallback_t882A7D135707B29ECA0198EFF9BB512C8F54A3AE* L_1 = ___1_callback; __this->___callback_2 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___callback_2), (void*)L_1); int32_t L_2 = ___2_count; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_3 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)L_2); __this->___ids_1 = L_3; Il2CppCodeGenWriteBarrier((void**)(&__this->___ids_1), (void*)L_3); return; } } // System.Xml.Serialization.XmlSerializationFixupCallback System.Xml.Serialization.XmlSerializationReader/Fixup::get_Callback() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSerializationFixupCallback_t882A7D135707B29ECA0198EFF9BB512C8F54A3AE* Fixup_get_Callback_mF6D51DD8D4089ED7510FA16D29095F75BFB54D9B (Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* __this, const RuntimeMethod* method) { { XmlSerializationFixupCallback_t882A7D135707B29ECA0198EFF9BB512C8F54A3AE* L_0 = __this->___callback_2; return L_0; } } // System.String[] System.Xml.Serialization.XmlSerializationReader/Fixup::get_Ids() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* Fixup_get_Ids_m9B1A1A8EC0662A14A92B000F90A276C18E7690B2 (Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* __this, const RuntimeMethod* method) { { StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_0 = __this->___ids_1; return L_0; } } // System.Object System.Xml.Serialization.XmlSerializationReader/Fixup::get_Source() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Fixup_get_Source_mF424839086899F18C33B9604622D390C359819AE (Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* __this, const RuntimeMethod* method) { { RuntimeObject* L_0 = __this->___source_0; return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Serialization.XmlSerializationReader/CollectionItemFixup::.ctor(System.Array,System.Int32,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionItemFixup__ctor_mE654E8182AAE3013271D452C051AE10ADFD9C2AC (CollectionItemFixup_tB93D197F97AEEE471775D4EC6C7227434D7EDA11* __this, RuntimeArray* ___0_list, int32_t ___1_index, String_t* ___2_id, const RuntimeMethod* method) { { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); RuntimeArray* L_0 = ___0_list; __this->___list_0 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___list_0), (void*)L_0); int32_t L_1 = ___1_index; __this->___index_1 = L_1; String_t* L_2 = ___2_id; __this->___id_2 = L_2; Il2CppCodeGenWriteBarrier((void**)(&__this->___id_2), (void*)L_2); return; } } // System.Array System.Xml.Serialization.XmlSerializationReader/CollectionItemFixup::get_Collection() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray* CollectionItemFixup_get_Collection_m3A3D1F07DD384677EB43842B4E0C9AE6CAA8B8F6 (CollectionItemFixup_tB93D197F97AEEE471775D4EC6C7227434D7EDA11* __this, const RuntimeMethod* method) { { RuntimeArray* L_0 = __this->___list_0; return L_0; } } // System.Int32 System.Xml.Serialization.XmlSerializationReader/CollectionItemFixup::get_Index() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CollectionItemFixup_get_Index_m455C70697C9BD61D8E47E5867796671FAECBF958 (CollectionItemFixup_tB93D197F97AEEE471775D4EC6C7227434D7EDA11* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___index_1; return L_0; } } // System.String System.Xml.Serialization.XmlSerializationReader/CollectionItemFixup::get_Id() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CollectionItemFixup_get_Id_m01A755FF6A3F989910289A67DD5ADFA0528FD39F (CollectionItemFixup_tB93D197F97AEEE471775D4EC6C7227434D7EDA11* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___id_2; return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::.ctor(System.Xml.Serialization.XmlMapping) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReaderInterpreter__ctor_m6C881FC54D45877C33279E7DE29C17C53B821459 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* ___0_typeMap, const RuntimeMethod* method) { { XmlSerializationReader__ctor_mE7A1AB3E151A31FE7D934FBFBB9823F5C0D70C68(__this, NULL); XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* L_0 = ___0_typeMap; __this->____typeMap_25 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->____typeMap_25), (void*)L_0); XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* L_1 = ___0_typeMap; NullCheck(L_1); int32_t L_2; L_2 = XmlMapping_get_Format_mB9ACDCC642A2589BF20C9D02C2FA14F2C5D1C3F3_inline(L_1, NULL); __this->____format_26 = L_2; return; } } // System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::InitCallbacks() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReaderInterpreter_InitCallbacks_mD7FB33D4AC41F6362490CDA141D355292A527852 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReaderCallbackInfo_ReadObject_m9D91DB389AC65B4941DC11773FECC6EEAF180249_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReaderCallbackInfo_t414F9FC8F93718A4EAF961E66DE7A6C43B6A08FB_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSerializationReadCallback_tAEB657961D305723E5F13AF0D7ADE852E81D413B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* V_0 = NULL; RuntimeObject* V_1 = NULL; XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* V_2 = NULL; ReaderCallbackInfo_t414F9FC8F93718A4EAF961E66DE7A6C43B6A08FB* V_3 = NULL; RuntimeObject* V_4 = NULL; { XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* L_0 = __this->____typeMap_25; NullCheck(L_0); ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_1; L_1 = XmlMapping_get_RelatedMaps_m359C8ADACB98609060F82DCB82FB18E39274918C_inline(L_0, NULL); V_0 = L_1; ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_2 = V_0; if (!L_2) { goto IL_0092; } } { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_3 = V_0; NullCheck(L_3); RuntimeObject* L_4; L_4 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(38 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_3); V_1 = L_4; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_007e: {// begin finally (depth: 1) { RuntimeObject* L_5 = V_1; V_4 = ((RuntimeObject*)IsInst((RuntimeObject*)L_5, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var)); RuntimeObject* L_6 = V_4; if (!L_6) { goto IL_0091; } } { RuntimeObject* L_7 = V_4; NullCheck(L_7); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_7); } IL_0091: { return; } }// end finally (depth: 1) }); try {// begin try (depth: 1) { goto IL_0074_1; } IL_001b_1: { RuntimeObject* L_8 = V_1; NullCheck(L_8); RuntimeObject* L_9; L_9 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_8); V_2 = ((XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9*)CastclassClass((RuntimeObject*)L_9, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9_il2cpp_TypeInfo_var)); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_10 = V_2; NullCheck(L_10); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_11; L_11 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_10, NULL); NullCheck(L_11); int32_t L_12; L_12 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_11, NULL); if ((((int32_t)L_12) == ((int32_t)4))) { goto IL_0043_1; } } { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_13 = V_2; NullCheck(L_13); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_14; L_14 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_13, NULL); NullCheck(L_14); int32_t L_15; L_15 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_14, NULL); if ((!(((uint32_t)L_15) == ((uint32_t)2)))) { goto IL_0074_1; } } IL_0043_1: { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_16 = V_2; ReaderCallbackInfo_t414F9FC8F93718A4EAF961E66DE7A6C43B6A08FB* L_17 = (ReaderCallbackInfo_t414F9FC8F93718A4EAF961E66DE7A6C43B6A08FB*)il2cpp_codegen_object_new(ReaderCallbackInfo_t414F9FC8F93718A4EAF961E66DE7A6C43B6A08FB_il2cpp_TypeInfo_var); NullCheck(L_17); ReaderCallbackInfo__ctor_mA1DE9023122B9D262150A2AABCCB839AC4E31CBC(L_17, __this, L_16, NULL); V_3 = L_17; XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_18 = V_2; NullCheck(L_18); String_t* L_19; L_19 = XmlTypeMapping_get_XmlType_m5A30CB4EE3541CC1C65003757D5E743042846222_inline(L_18, NULL); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_20 = V_2; NullCheck(L_20); String_t* L_21; L_21 = XmlMapping_get_Namespace_m196651C91FB3C3442AC616C977345E89450F024F_inline(L_20, NULL); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_22 = V_2; NullCheck(L_22); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_23; L_23 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_22, NULL); NullCheck(L_23); Type_t* L_24; L_24 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_23, NULL); ReaderCallbackInfo_t414F9FC8F93718A4EAF961E66DE7A6C43B6A08FB* L_25 = V_3; XmlSerializationReadCallback_tAEB657961D305723E5F13AF0D7ADE852E81D413B* L_26 = (XmlSerializationReadCallback_tAEB657961D305723E5F13AF0D7ADE852E81D413B*)il2cpp_codegen_object_new(XmlSerializationReadCallback_tAEB657961D305723E5F13AF0D7ADE852E81D413B_il2cpp_TypeInfo_var); NullCheck(L_26); XmlSerializationReadCallback__ctor_m3E8920B08440F5007D60B89120F500D80C24B4F7(L_26, L_25, (intptr_t)((void*)ReaderCallbackInfo_ReadObject_m9D91DB389AC65B4941DC11773FECC6EEAF180249_RuntimeMethod_var), NULL); XmlSerializationReader_AddReadCallback_m7FBB39194FAA252273D04AAB981A83D81A690E98(__this, L_19, L_21, L_24, L_26, NULL); } IL_0074_1: { RuntimeObject* L_27 = V_1; NullCheck(L_27); bool L_28; L_28 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_27); if (L_28) { goto IL_001b_1; } } { goto IL_0092; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_0092: { return; } } // System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::InitIDs() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReaderInterpreter_InitIDs_m032310798F8812002D4EE41284F67E9D2CD57D0F (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, const RuntimeMethod* method) { { return; } } // System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadRoot() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadRoot_mC64D2353CEDB7BDABAB7A640D8681396BB046B4E (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlMembersMapping_t0D686C86E19B598F10E53AF79EC905A7E2BDB62C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0; L_0 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_0); int32_t L_1; L_1 = VirtualFuncInvoker0< int32_t >::Invoke(43 /* System.Xml.XmlNodeType System.Xml.XmlReader::MoveToContent() */, L_0); XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* L_2 = __this->____typeMap_25; if (!((XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9*)IsInstClass((RuntimeObject*)L_2, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9_il2cpp_TypeInfo_var))) { goto IL_0046; } } { int32_t L_3 = __this->____format_26; if ((!(((uint32_t)L_3) == ((uint32_t)1)))) { goto IL_0034; } } { XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* L_4 = __this->____typeMap_25; RuntimeObject* L_5; L_5 = XmlSerializationReaderInterpreter_ReadRoot_m86237F7D7333192034B74CFAF2BCE5019CCB3F23(__this, ((XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9*)CastclassClass((RuntimeObject*)L_4, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9_il2cpp_TypeInfo_var)), NULL); return L_5; } IL_0034: { XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* L_6 = __this->____typeMap_25; RuntimeObject* L_7; L_7 = XmlSerializationReaderInterpreter_ReadEncodedObject_m9CC3C125A75A6B0D04818456CD6C37A5D22453C0(__this, ((XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9*)CastclassClass((RuntimeObject*)L_6, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9_il2cpp_TypeInfo_var)), NULL); return L_7; } IL_0046: { XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* L_8 = __this->____typeMap_25; RuntimeObject* L_9; L_9 = VirtualFuncInvoker1< RuntimeObject*, XmlMembersMapping_t0D686C86E19B598F10E53AF79EC905A7E2BDB62C* >::Invoke(6 /* System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadMessage(System.Xml.Serialization.XmlMembersMapping) */, __this, ((XmlMembersMapping_t0D686C86E19B598F10E53AF79EC905A7E2BDB62C*)CastclassClass((RuntimeObject*)L_8, XmlMembersMapping_t0D686C86E19B598F10E53AF79EC905A7E2BDB62C_il2cpp_TypeInfo_var))); return L_9; } } // System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadEncodedObject(System.Xml.Serialization.XmlTypeMapping) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadEncodedObject_m9CC3C125A75A6B0D04818456CD6C37A5D22453C0 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___0_typeMap, const RuntimeMethod* method) { RuntimeObject* V_0 = NULL; { V_0 = NULL; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0; L_0 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_0); int32_t L_1; L_1 = VirtualFuncInvoker0< int32_t >::Invoke(43 /* System.Xml.XmlNodeType System.Xml.XmlReader::MoveToContent() */, L_0); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_2; L_2 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_2); int32_t L_3; L_3 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_2); if ((!(((uint32_t)L_3) == ((uint32_t)1)))) { goto IL_005c; } } { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_4; L_4 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_4); String_t* L_5; L_5 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_4); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_6 = ___0_typeMap; NullCheck(L_6); String_t* L_7; L_7 = XmlMapping_get_ElementName_m2BDBF7797A1F38972A4355CF694E0D468B2A9FC0_inline(L_6, NULL); bool L_8; L_8 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_5, L_7, NULL); if (!L_8) { goto IL_0055; } } { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_9; L_9 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_9); String_t* L_10; L_10 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_9); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_11 = ___0_typeMap; NullCheck(L_11); String_t* L_12; L_12 = XmlMapping_get_Namespace_m196651C91FB3C3442AC616C977345E89450F024F_inline(L_11, NULL); bool L_13; L_13 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_10, L_12, NULL); if (!L_13) { goto IL_0055; } } { RuntimeObject* L_14; L_14 = XmlSerializationReader_ReadReferencedElement_mFB866A61C9C26FA31E53EFCB673506A455120493(__this, NULL); V_0 = L_14; goto IL_0063; } IL_0055: { Exception_t* L_15; L_15 = XmlSerializationReader_CreateUnknownNodeException_mF60B75FE5A6871E6D670468C430AF474F19DC721(__this, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializationReaderInterpreter_ReadEncodedObject_m9CC3C125A75A6B0D04818456CD6C37A5D22453C0_RuntimeMethod_var))); } IL_005c: { XmlSerializationReader_UnknownNode_m2F762DBC510F96D1B12D002D405F4CEFBF2A2E18(__this, NULL, NULL); } IL_0063: { XmlSerializationReader_ReadReferencedElements_m49D3E58756DF9713D6C2D358461E020FC7855BF8(__this, NULL); RuntimeObject* L_16 = V_0; return L_16; } } // System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadMessage(System.Xml.Serialization.XmlMembersMapping) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadMessage_m7BD17B1A8CCE4FA3C728C795953ED908E0F0D032 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlMembersMapping_t0D686C86E19B598F10E53AF79EC905A7E2BDB62C* ___0_typeMap, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA2E138AD319A0E08FFC4A185CE05933BF5C01D5C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD29B87DC6B1B722C619FAD071A9157749710CDA6); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_0 = NULL; ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* V_1 = NULL; int32_t V_2 = 0; XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* V_3 = NULL; String_t* V_4 = NULL; { XmlMembersMapping_t0D686C86E19B598F10E53AF79EC905A7E2BDB62C* L_0 = ___0_typeMap; NullCheck(L_0); int32_t L_1; L_1 = XmlMembersMapping_get_Count_mDAFF3965B76D19DE0EFAE018FEE1B429419855A7(L_0, NULL); ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)L_1); V_0 = L_2; XmlMembersMapping_t0D686C86E19B598F10E53AF79EC905A7E2BDB62C* L_3 = ___0_typeMap; NullCheck(L_3); bool L_4; L_4 = XmlMembersMapping_get_HasWrapperElement_mE921652D9CEADD03E4BCC13C9AC26E457C640CE5_inline(L_3, NULL); if (!L_4) { goto IL_0188; } } { XmlMembersMapping_t0D686C86E19B598F10E53AF79EC905A7E2BDB62C* L_5 = ___0_typeMap; NullCheck(L_5); ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0* L_6; L_6 = XmlMapping_get_ObjectMap_m63D1AEAC8EDD8396357898D337E350673A1E9003_inline(L_5, NULL); NullCheck(((ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109*)CastclassClass((RuntimeObject*)L_6, ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109_il2cpp_TypeInfo_var))); ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_7; L_7 = ClassMap_get_AllMembers_m68939A09AB79846A722998916E288759CB918FED_inline(((ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109*)CastclassClass((RuntimeObject*)L_6, ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109_il2cpp_TypeInfo_var)), NULL); V_1 = L_7; V_2 = 0; goto IL_006c; } IL_002c: { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_8 = V_1; int32_t L_9 = V_2; NullCheck(L_8); RuntimeObject* L_10; L_10 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(28 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_8, L_9); V_3 = ((XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A*)CastclassClass((RuntimeObject*)L_10, XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A_il2cpp_TypeInfo_var)); XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_11 = V_3; NullCheck(L_11); bool L_12; L_12 = XmlTypeMapMember_get_IsReturnValue_m2FF8236466A439AB4412508BE3D78C3C71A47481(L_11, NULL); if (L_12) { goto IL_0068; } } { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_13 = V_3; NullCheck(L_13); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_14; L_14 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_13, NULL); NullCheck(L_14); bool L_15; L_15 = TypeData_get_IsValueType_m6A1F44C35FE034599DE34B16D1E5DFD8B83A021B(L_14, NULL); if (!L_15) { goto IL_0068; } } { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_16 = V_3; ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_17 = V_0; XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_18 = V_3; NullCheck(L_18); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_19; L_19 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_18, NULL); NullCheck(L_19); Type_t* L_20; L_20 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_19, NULL); RuntimeObject* L_21; L_21 = XmlSerializationReaderInterpreter_CreateInstance_m9CB41129916C0B5A2323C6EBD6031BB9CF3B693C(__this, L_20, NULL); XmlSerializationReaderInterpreter_SetMemberValueFromAttr_m7DCD796BFED1BC399DDA708281D49BAF3EF5CAF8(__this, L_16, (RuntimeObject*)L_17, L_21, (bool)1, NULL); } IL_0068: { int32_t L_22 = V_2; V_2 = ((int32_t)il2cpp_codegen_add(L_22, 1)); } IL_006c: { int32_t L_23 = V_2; ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_24 = V_1; NullCheck(L_24); int32_t L_25; L_25 = VirtualFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_24); if ((((int32_t)L_23) < ((int32_t)L_25))) { goto IL_002c; } } { int32_t L_26 = __this->____format_26; if (L_26) { goto IL_0166; } } { goto IL_00bf; } IL_0082: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_27; L_27 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_27); String_t* L_28; L_28 = VirtualFuncInvoker2< String_t*, String_t*, String_t* >::Invoke(23 /* System.String System.Xml.XmlReader::GetAttribute(System.String,System.String) */, L_27, _stringLiteralA2E138AD319A0E08FFC4A185CE05933BF5C01D5C, _stringLiteralD29B87DC6B1B722C619FAD071A9157749710CDA6); V_4 = L_28; String_t* L_29 = V_4; if (!L_29) { goto IL_0166; } } { String_t* L_30 = V_4; il2cpp_codegen_runtime_class_init_inline(XmlConvert_t5D100AFD62FF717BD4F8A6CABA9EDF7A5DF719EA_il2cpp_TypeInfo_var); bool L_31; L_31 = XmlConvert_ToBoolean_mB95C798BD6D849071E6A686CBF85851C25C7006A(L_30, NULL); if (L_31) { goto IL_0166; } } { RuntimeObject* L_32; L_32 = XmlSerializationReader_ReadReferencedElement_mFB866A61C9C26FA31E53EFCB673506A455120493(__this, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_33; L_33 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_33); int32_t L_34; L_34 = VirtualFuncInvoker0< int32_t >::Invoke(43 /* System.Xml.XmlNodeType System.Xml.XmlReader::MoveToContent() */, L_33); } IL_00bf: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_35; L_35 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_35); int32_t L_36; L_36 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_35); if ((((int32_t)L_36) == ((int32_t)1))) { goto IL_0082; } } { goto IL_0166; } IL_00d2: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_37; L_37 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); XmlMembersMapping_t0D686C86E19B598F10E53AF79EC905A7E2BDB62C* L_38 = ___0_typeMap; NullCheck(L_38); String_t* L_39; L_39 = XmlMapping_get_ElementName_m2BDBF7797A1F38972A4355CF694E0D468B2A9FC0_inline(L_38, NULL); XmlMembersMapping_t0D686C86E19B598F10E53AF79EC905A7E2BDB62C* L_40 = ___0_typeMap; NullCheck(L_40); String_t* L_41; L_41 = XmlMapping_get_Namespace_m196651C91FB3C3442AC616C977345E89450F024F_inline(L_40, NULL); NullCheck(L_37); bool L_42; L_42 = VirtualFuncInvoker2< bool, String_t*, String_t* >::Invoke(47 /* System.Boolean System.Xml.XmlReader::IsStartElement(System.String,System.String) */, L_37, L_39, L_41); if (L_42) { goto IL_00f3; } } { int32_t L_43 = __this->____format_26; if (L_43) { goto IL_0153; } } IL_00f3: { XmlMembersMapping_t0D686C86E19B598F10E53AF79EC905A7E2BDB62C* L_44 = ___0_typeMap; NullCheck(L_44); ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0* L_45; L_45 = XmlMapping_get_ObjectMap_m63D1AEAC8EDD8396357898D337E350673A1E9003_inline(L_44, NULL); ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_46 = V_0; XmlSerializationReaderInterpreter_ReadAttributeMembers_m7DAF4EA9F9401AC7C7ED1C8BC89E28C607203EB9(__this, ((ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109*)CastclassClass((RuntimeObject*)L_45, ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109_il2cpp_TypeInfo_var)), (RuntimeObject*)L_46, (bool)1, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_47; L_47 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_47); bool L_48; L_48 = VirtualFuncInvoker0< bool >::Invoke(14 /* System.Boolean System.Xml.XmlReader::get_IsEmptyElement() */, L_47); if (!L_48) { goto IL_012c; } } { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_49; L_49 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_49); VirtualActionInvoker0::Invoke(35 /* System.Void System.Xml.XmlReader::Skip() */, L_49); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_50; L_50 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_50); int32_t L_51; L_51 = VirtualFuncInvoker0< int32_t >::Invoke(43 /* System.Xml.XmlNodeType System.Xml.XmlReader::MoveToContent() */, L_50); goto IL_0166; } IL_012c: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_52; L_52 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_52); VirtualActionInvoker0::Invoke(44 /* System.Void System.Xml.XmlReader::ReadStartElement() */, L_52); XmlMembersMapping_t0D686C86E19B598F10E53AF79EC905A7E2BDB62C* L_53 = ___0_typeMap; NullCheck(L_53); ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0* L_54; L_54 = XmlMapping_get_ObjectMap_m63D1AEAC8EDD8396357898D337E350673A1E9003_inline(L_53, NULL); ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_55 = V_0; XmlSerializationReaderInterpreter_ReadMembers_m92FC821665FFF506E537CCDA5A70F4B1172E626B(__this, ((ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109*)CastclassClass((RuntimeObject*)L_54, ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109_il2cpp_TypeInfo_var)), (RuntimeObject*)L_55, (bool)1, (bool)0, NULL); XmlSerializationReader_ReadEndElement_mA33A1CB94EF5CA65501A3F63C4EBEBC53662E35E(__this, NULL); goto IL_01a4; } IL_0153: { XmlSerializationReader_UnknownNode_m2F762DBC510F96D1B12D002D405F4CEFBF2A2E18(__this, NULL, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_56; L_56 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_56); int32_t L_57; L_57 = VirtualFuncInvoker0< int32_t >::Invoke(43 /* System.Xml.XmlNodeType System.Xml.XmlReader::MoveToContent() */, L_56); } IL_0166: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_58; L_58 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_58); int32_t L_59; L_59 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_58); if ((((int32_t)L_59) == ((int32_t)((int32_t)15)))) { goto IL_01a4; } } { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_60; L_60 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_60); int32_t L_61; L_61 = VirtualFuncInvoker0< int32_t >::Invoke(34 /* System.Xml.ReadState System.Xml.XmlReader::get_ReadState() */, L_60); if ((((int32_t)L_61) == ((int32_t)1))) { goto IL_00d2; } } { goto IL_01a4; } IL_0188: { XmlMembersMapping_t0D686C86E19B598F10E53AF79EC905A7E2BDB62C* L_62 = ___0_typeMap; NullCheck(L_62); ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0* L_63; L_63 = XmlMapping_get_ObjectMap_m63D1AEAC8EDD8396357898D337E350673A1E9003_inline(L_62, NULL); ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_64 = V_0; int32_t L_65 = __this->____format_26; XmlSerializationReaderInterpreter_ReadMembers_m92FC821665FFF506E537CCDA5A70F4B1172E626B(__this, ((ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109*)CastclassClass((RuntimeObject*)L_63, ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109_il2cpp_TypeInfo_var)), (RuntimeObject*)L_64, (bool)1, (bool)((((int32_t)L_65) == ((int32_t)0))? 1 : 0), NULL); } IL_01a4: { int32_t L_66 = __this->____format_26; if (L_66) { goto IL_01b2; } } { XmlSerializationReader_ReadReferencedElements_m49D3E58756DF9713D6C2D358461E020FC7855BF8(__this, NULL); } IL_01b2: { ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_67 = V_0; return (RuntimeObject*)L_67; } } // System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadRoot(System.Xml.Serialization.XmlTypeMapping) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadRoot_m86237F7D7333192034B74CFAF2BCE5019CCB3F23 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___0_rootMap, const RuntimeMethod* method) { { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_0 = ___0_rootMap; NullCheck(L_0); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_1; L_1 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_0, NULL); NullCheck(L_1); int32_t L_2; L_2 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_1, NULL); if ((!(((uint32_t)L_2) == ((uint32_t)6)))) { goto IL_0017; } } { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_3 = ___0_rootMap; RuntimeObject* L_4; L_4 = XmlSerializationReaderInterpreter_ReadXmlNodeElement_mDDA1AC3864A682EB162DF1A8A7A3A05B80674709(__this, L_3, (bool)1, NULL); return L_4; } IL_0017: { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_5 = ___0_rootMap; NullCheck(L_5); bool L_6; L_6 = XmlTypeMapping_get_IsAny_m0C45955548B231D2E892D2924768B068138CBDD8_inline(L_5, NULL); if (L_6) { goto IL_0056; } } { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_7; L_7 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_7); String_t* L_8; L_8 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_7); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_9 = ___0_rootMap; NullCheck(L_9); String_t* L_10; L_10 = XmlMapping_get_ElementName_m2BDBF7797A1F38972A4355CF694E0D468B2A9FC0_inline(L_9, NULL); bool L_11; L_11 = String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6(L_8, L_10, NULL); if (L_11) { goto IL_004f; } } { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_12; L_12 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_12); String_t* L_13; L_13 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_12); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_14 = ___0_rootMap; NullCheck(L_14); String_t* L_15; L_15 = XmlMapping_get_Namespace_m196651C91FB3C3442AC616C977345E89450F024F_inline(L_14, NULL); bool L_16; L_16 = String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6(L_13, L_15, NULL); if (!L_16) { goto IL_0056; } } IL_004f: { Exception_t* L_17; L_17 = XmlSerializationReader_CreateUnknownNodeException_mF60B75FE5A6871E6D670468C430AF474F19DC721(__this, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializationReaderInterpreter_ReadRoot_m86237F7D7333192034B74CFAF2BCE5019CCB3F23_RuntimeMethod_var))); } IL_0056: { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_18 = ___0_rootMap; XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_19 = ___0_rootMap; NullCheck(L_19); bool L_20; L_20 = XmlTypeMapping_get_IsNullable_m2CE4D69DE9C4D1A7AFC01D0BE8C2369BD1C8107B_inline(L_19, NULL); RuntimeObject* L_21; L_21 = VirtualFuncInvoker3< RuntimeObject*, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9*, bool, bool >::Invoke(7 /* System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadObject(System.Xml.Serialization.XmlTypeMapping,System.Boolean,System.Boolean) */, __this, L_18, L_20, (bool)1); return L_21; } } // System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadObject(System.Xml.Serialization.XmlTypeMapping,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadObject_m96FED952EBA3659E737FBCED7883FFFB43EF113E (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___0_typeMap, bool ___1_isNullable, bool ___2_checkType, const RuntimeMethod* method) { int32_t V_0 = 0; { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_0 = ___0_typeMap; NullCheck(L_0); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_1; L_1 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_0, NULL); NullCheck(L_1); int32_t L_2; L_2 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_1, NULL); V_0 = L_2; int32_t L_3 = V_0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_3, 1))) { case 0: { goto IL_004c; } case 1: { goto IL_0055; } case 2: { goto IL_0038; } case 3: { goto IL_002e; } case 4: { goto IL_005e; } case 5: { goto IL_0043; } } } { goto IL_0067; } IL_002e: { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_4 = ___0_typeMap; bool L_5 = ___1_isNullable; bool L_6 = ___2_checkType; RuntimeObject* L_7; L_7 = VirtualFuncInvoker3< RuntimeObject*, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9*, bool, bool >::Invoke(8 /* System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadClassInstance(System.Xml.Serialization.XmlTypeMapping,System.Boolean,System.Boolean) */, __this, L_4, L_5, L_6); return L_7; } IL_0038: { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_8 = ___0_typeMap; bool L_9 = ___1_isNullable; RuntimeObject* L_10; L_10 = XmlSerializationReaderInterpreter_ReadListElement_m9DA9C6F2AC8812B8783E85AF2F99A4FE6CB14B14(__this, L_8, L_9, NULL, (bool)1, NULL); return L_10; } IL_0043: { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_11 = ___0_typeMap; bool L_12 = ___1_isNullable; RuntimeObject* L_13; L_13 = XmlSerializationReaderInterpreter_ReadXmlNodeElement_mDDA1AC3864A682EB162DF1A8A7A3A05B80674709(__this, L_11, L_12, NULL); return L_13; } IL_004c: { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_14 = ___0_typeMap; bool L_15 = ___1_isNullable; RuntimeObject* L_16; L_16 = XmlSerializationReaderInterpreter_ReadPrimitiveElement_m93C17C23DF8E7F7F2501CA2452E5CEA6EF2551A6(__this, L_14, L_15, NULL); return L_16; } IL_0055: { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_17 = ___0_typeMap; bool L_18 = ___1_isNullable; RuntimeObject* L_19; L_19 = XmlSerializationReaderInterpreter_ReadEnumElement_mB13411EB63D3EEEF92A41C2E3E29B243132E02B4(__this, L_17, L_18, NULL); return L_19; } IL_005e: { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_20 = ___0_typeMap; bool L_21 = ___1_isNullable; RuntimeObject* L_22; L_22 = XmlSerializationReaderInterpreter_ReadXmlSerializableElement_mEE3EDB95A3BF6553D4C677380E0C98CE9A977442(__this, L_20, L_21, NULL); return L_22; } IL_0067: { Exception_t* L_23 = (Exception_t*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var))); NullCheck(L_23); Exception__ctor_m9B2BD92CD68916245A75109105D9071C9D430E7F(L_23, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral171713B97115C9EE4E1D7643592C5AFA9193CE05)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_23, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializationReaderInterpreter_ReadObject_m96FED952EBA3659E737FBCED7883FFFB43EF113E_RuntimeMethod_var))); } } // System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadClassInstance(System.Xml.Serialization.XmlTypeMapping,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadClassInstance_m2D516034470771EE80D8AE702D2C74DEAC657AA2 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___0_typeMap, bool ___1_isNullable, bool ___2_checkType, 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*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* V_1 = NULL; XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* V_2 = NULL; { bool L_0 = ___1_isNullable; if (!L_0) { goto IL_000d; } } { bool L_1; L_1 = XmlSerializationReader_ReadNull_mA31B425F49779DE377E7CAD9786EE664D032FFB6(__this, NULL); if (!L_1) { goto IL_000d; } } { return NULL; } IL_000d: { bool L_2 = ___2_checkType; if (!L_2) { goto IL_009b; } } { XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_3; L_3 = XmlSerializationReader_GetXsiType_m4410C02427EB3A9BBD0FE460437AE86AADCA8D2B(__this, NULL); V_1 = L_3; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_4 = V_1; il2cpp_codegen_runtime_class_init_inline(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); bool L_5; L_5 = XmlQualifiedName_op_Inequality_m8A82F5213618F15B887A45C7B1461EB5C14C86A0(L_4, (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)NULL, NULL); if (!L_5) { goto IL_0073; } } { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_6 = ___0_typeMap; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_7 = V_1; NullCheck(L_7); String_t* L_8; L_8 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_7, NULL); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_9 = V_1; NullCheck(L_9); String_t* L_10; L_10 = XmlQualifiedName_get_Namespace_m0CAE4A651EF1CA6F0EB657C83608A796038A2615_inline(L_9, NULL); NullCheck(L_6); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_11; L_11 = XmlTypeMapping_GetRealElementMap_m2488C8E8ABFB81EE1181A68DA85C142579599ED8(L_6, L_8, L_10, NULL); V_2 = L_11; XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_12 = V_2; if (L_12) { goto IL_0065; } } { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_13 = ___0_typeMap; NullCheck(L_13); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_14; L_14 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_13, NULL); NullCheck(L_14); Type_t* L_15; L_15 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_14, NULL); RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_16 = { reinterpret_cast (RuntimeObject_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_17; L_17 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_16, NULL); bool L_18; L_18 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_15, L_17, NULL); if (!L_18) { goto IL_005d; } } { XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_19 = V_1; RuntimeObject* L_20; L_20 = XmlSerializationReader_ReadTypedPrimitive_mF25502A447F9DF1215F119C730C0874C5338B88C(__this, L_19, NULL); return L_20; } IL_005d: { XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_21 = V_1; Exception_t* L_22; L_22 = XmlSerializationReader_CreateUnknownTypeException_m158A6883E878D4147D071564F3BFF3B6B42D5296(__this, L_21, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_22, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializationReaderInterpreter_ReadClassInstance_m2D516034470771EE80D8AE702D2C74DEAC657AA2_RuntimeMethod_var))); } IL_0065: { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_23 = V_2; XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_24 = ___0_typeMap; if ((((RuntimeObject*)(XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9*)L_23) == ((RuntimeObject*)(XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9*)L_24))) { goto IL_009b; } } { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_25 = V_2; RuntimeObject* L_26; L_26 = VirtualFuncInvoker3< RuntimeObject*, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9*, bool, bool >::Invoke(7 /* System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadObject(System.Xml.Serialization.XmlTypeMapping,System.Boolean,System.Boolean) */, __this, L_25, (bool)0, (bool)0); return L_26; } IL_0073: { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_27 = ___0_typeMap; NullCheck(L_27); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_28; L_28 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_27, NULL); NullCheck(L_28); Type_t* L_29; L_29 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_28, NULL); RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_30 = { reinterpret_cast (RuntimeObject_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_31; L_31 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_30, NULL); bool L_32; L_32 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_29, L_31, NULL); if (!L_32) { goto IL_009b; } } { il2cpp_codegen_runtime_class_init_inline(XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_33 = ((XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_StaticFields*)il2cpp_codegen_static_fields_for(XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var))->___AnyType_27; RuntimeObject* L_34; L_34 = XmlSerializationReader_ReadTypedPrimitive_mF25502A447F9DF1215F119C730C0874C5338B88C(__this, L_33, NULL); return L_34; } IL_009b: { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_35 = ___0_typeMap; NullCheck(L_35); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_36; L_36 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_35, NULL); NullCheck(L_36); Type_t* L_37; L_37 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_36, NULL); il2cpp_codegen_runtime_class_init_inline(XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var); RuntimeObject* L_38; L_38 = XmlSerializationReaderInterpreter_CreateInstance_m52A3B7A31873EA03F569A85E7F1E874AAA07F55E(L_37, (bool)1, NULL); V_0 = L_38; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_39; L_39 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_39); bool L_40; L_40 = VirtualFuncInvoker0< bool >::Invoke(29 /* System.Boolean System.Xml.XmlReader::MoveToElement() */, L_39); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_41; L_41 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_41); bool L_42; L_42 = VirtualFuncInvoker0< bool >::Invoke(14 /* System.Boolean System.Xml.XmlReader::get_IsEmptyElement() */, L_41); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_43 = ___0_typeMap; RuntimeObject* L_44 = V_0; VirtualActionInvoker2< XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9*, RuntimeObject* >::Invoke(9 /* System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadClassInstanceMembers(System.Xml.Serialization.XmlTypeMapping,System.Object) */, __this, L_43, L_44); if (!L_42) { goto IL_00db; } } { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_45; L_45 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_45); VirtualActionInvoker0::Invoke(35 /* System.Void System.Xml.XmlReader::Skip() */, L_45); goto IL_00e1; } IL_00db: { XmlSerializationReader_ReadEndElement_mA33A1CB94EF5CA65501A3F63C4EBEBC53662E35E(__this, NULL); } IL_00e1: { RuntimeObject* L_46 = V_0; return L_46; } } // System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadClassInstanceMembers(System.Xml.Serialization.XmlTypeMapping,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReaderInterpreter_ReadClassInstanceMembers_m162FFA010EB62983DBB2DF7396CD8A34915B789F (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___0_typeMap, RuntimeObject* ___1_ob, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_0 = ___0_typeMap; NullCheck(L_0); ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0* L_1; L_1 = XmlMapping_get_ObjectMap_m63D1AEAC8EDD8396357898D337E350673A1E9003_inline(L_0, NULL); RuntimeObject* L_2 = ___1_ob; XmlSerializationReaderInterpreter_ReadMembers_m92FC821665FFF506E537CCDA5A70F4B1172E626B(__this, ((ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109*)CastclassClass((RuntimeObject*)L_1, ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109_il2cpp_TypeInfo_var)), L_2, (bool)0, (bool)0, NULL); return; } } // System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadAttributeMembers(System.Xml.Serialization.ClassMap,System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReaderInterpreter_ReadAttributeMembers_m7DAF4EA9F9401AC7C7ED1C8BC89E28C607203EB9 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* ___0_map, RuntimeObject* ___1_ob, bool ___2_isValueList, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeArray_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709); s_Il2CppMethodInitialized = true; } XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* V_0 = NULL; int32_t V_1 = 0; RuntimeObject* V_2 = NULL; XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* V_3 = NULL; XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93* V_4 = NULL; XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* V_5 = NULL; { ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_0 = ___0_map; NullCheck(L_0); XmlTypeMapMemberAnyAttribute_t936B5C08A209D3F342575957ACCBF1F7984095F1* L_1; L_1 = ClassMap_get_DefaultAnyAttributeMember_m88660193A65BE269D1E4F7ADEA4778BC78D40B08_inline(L_0, NULL); V_0 = L_1; V_1 = 0; V_2 = NULL; goto IL_013d; } IL_0010: { ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_2 = ___0_map; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_3; L_3 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_3); String_t* L_4; L_4 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_3); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_5; L_5 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_5); String_t* L_6; L_6 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_5); NullCheck(L_2); XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* L_7; L_7 = ClassMap_GetAttribute_mFAA51D19B1F7AAC3105A581FA1F2738B15BBBCD0(L_2, L_4, L_6, NULL); V_3 = L_7; XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* L_8 = V_3; if (!L_8) { goto IL_005b; } } { XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* L_9 = V_3; RuntimeObject* L_10 = ___1_ob; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_11; L_11 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_11); String_t* L_12; L_12 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_11); XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* L_13 = V_3; NullCheck(L_13); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_14; L_14 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_13, NULL); XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* L_15 = V_3; NullCheck(L_15); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_16; L_16 = XmlTypeMapMemberAttribute_get_MappedType_mD2DBE6E539F3B9A6F922C1DD37084DCDACE07025_inline(L_15, NULL); RuntimeObject* L_17; L_17 = XmlSerializationReaderInterpreter_GetValueFromXmlString_m21DC6B65AAF2E79AE5EC5C7B62A5E40B4C5498CA(__this, L_12, L_14, L_16, NULL); bool L_18 = ___2_isValueList; XmlSerializationReaderInterpreter_SetMemberValue_mABB21E3AEFF2EB1B198A0B915622E84D542D1D99(__this, L_9, L_10, L_17, L_18, NULL); goto IL_013d; } IL_005b: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_19; L_19 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_19); String_t* L_20; L_20 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlReader::get_Name() */, L_19); bool L_21; L_21 = XmlSerializationReader_IsXmlnsAttribute_m82CD3BEBE6E81699B23FDC923B5029DAFB05B06D(__this, L_20, NULL); if (!L_21) { goto IL_00fb; } } { ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_22 = ___0_map; NullCheck(L_22); XmlTypeMapMemberNamespaces_t1493E4BE21467D51FB1CDE88D538FA97815D3112* L_23; L_23 = ClassMap_get_NamespaceDeclarations_m5EF288255B1F07783CF889C781DB6D6BEAF133E1_inline(L_22, NULL); if (!L_23) { goto IL_013d; } } { ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_24 = ___0_map; NullCheck(L_24); XmlTypeMapMemberNamespaces_t1493E4BE21467D51FB1CDE88D538FA97815D3112* L_25; L_25 = ClassMap_get_NamespaceDeclarations_m5EF288255B1F07783CF889C781DB6D6BEAF133E1_inline(L_24, NULL); RuntimeObject* L_26 = ___1_ob; bool L_27 = ___2_isValueList; RuntimeObject* L_28; L_28 = XmlSerializationReaderInterpreter_GetMemberValue_mFA240C18B7888ACCAC3CED8800EAF6E2670BEF41(__this, L_25, L_26, L_27, NULL); V_4 = ((XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93*)IsInstClass((RuntimeObject*)L_28, XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93_il2cpp_TypeInfo_var)); XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93* L_29 = V_4; if (L_29) { goto IL_00ac; } } { XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93* L_30 = (XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93*)il2cpp_codegen_object_new(XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93_il2cpp_TypeInfo_var); NullCheck(L_30); XmlSerializerNamespaces__ctor_mBE51E0E9233359BCF1602C6200E9D85084E83E91(L_30, NULL); V_4 = L_30; ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_31 = ___0_map; NullCheck(L_31); XmlTypeMapMemberNamespaces_t1493E4BE21467D51FB1CDE88D538FA97815D3112* L_32; L_32 = ClassMap_get_NamespaceDeclarations_m5EF288255B1F07783CF889C781DB6D6BEAF133E1_inline(L_31, NULL); RuntimeObject* L_33 = ___1_ob; XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93* L_34 = V_4; bool L_35 = ___2_isValueList; XmlSerializationReaderInterpreter_SetMemberValue_mABB21E3AEFF2EB1B198A0B915622E84D542D1D99(__this, L_32, L_33, L_34, L_35, NULL); } IL_00ac: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_36; L_36 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_36); String_t* L_37; L_37 = VirtualFuncInvoker0< String_t* >::Invoke(10 /* System.String System.Xml.XmlReader::get_Prefix() */, L_36); bool L_38; L_38 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_37, _stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3, NULL); if (!L_38) { goto IL_00e2; } } { XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93* L_39 = V_4; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_40; L_40 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_40); String_t* L_41; L_41 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_40); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_42; L_42 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_42); String_t* L_43; L_43 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_42); NullCheck(L_39); XmlSerializerNamespaces_Add_m4204802D44C6E5763F669D618F0B3D2B7BE49C4B(L_39, L_41, L_43, NULL); goto IL_013d; } IL_00e2: { XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93* L_44 = V_4; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_45; L_45 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_45); String_t* L_46; L_46 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Xml.XmlReader::get_Value() */, L_45); NullCheck(L_44); XmlSerializerNamespaces_Add_m4204802D44C6E5763F669D618F0B3D2B7BE49C4B(L_44, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, L_46, NULL); goto IL_013d; } IL_00fb: { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_47 = V_0; if (!L_47) { goto IL_0136; } } { XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_48; L_48 = XmlSerializationReader_get_Document_mBDB6BC605B4A08F7174559852E281793D8F20CBA(__this, NULL); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_49; L_49 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_48); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_50; L_50 = VirtualFuncInvoker1< XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* >::Invoke(78 /* System.Xml.XmlNode System.Xml.XmlDocument::ReadNode(System.Xml.XmlReader) */, L_48, L_49); V_5 = ((XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)CastclassClass((RuntimeObject*)L_50, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var)); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_51 = V_5; XmlSerializationReader_ParseWsdlArrayType_mD66086D7B4A80B5F9F77DC8546472BD1B8087598(__this, L_51, NULL); XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_52 = V_0; NullCheck(L_52); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_53; L_53 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_52, NULL); int32_t L_54 = V_1; int32_t L_55 = L_54; V_1 = ((int32_t)il2cpp_codegen_add(L_55, 1)); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_56 = V_5; XmlSerializationReaderInterpreter_AddListValue_m12D3A8F7A8612DBA89872F736C275807EBB57EA4(__this, L_53, (&V_2), L_55, L_56, (bool)1, NULL); goto IL_013d; } IL_0136: { RuntimeObject* L_57 = ___1_ob; VirtualActionInvoker1< RuntimeObject* >::Invoke(10 /* System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::ProcessUnknownAttribute(System.Object) */, __this, L_57); } IL_013d: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_58; L_58 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_58); bool L_59; L_59 = VirtualFuncInvoker0< bool >::Invoke(28 /* System.Boolean System.Xml.XmlReader::MoveToNextAttribute() */, L_58); if (L_59) { goto IL_0010; } } { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_60 = V_0; if (!L_60) { goto IL_0179; } } { RuntimeObject* L_61 = V_2; int32_t L_62 = V_1; XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_63 = V_0; NullCheck(L_63); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_64; L_64 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_63, NULL); NullCheck(L_64); Type_t* L_65; L_65 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_64, NULL); NullCheck(L_65); Type_t* L_66; L_66 = VirtualFuncInvoker0< Type_t* >::Invoke(46 /* System.Type System.Type::GetElementType() */, L_65); RuntimeArray* L_67; L_67 = XmlSerializationReader_ShrinkArray_m76FE9D0683F22CDDEECBC9284FB9BB6C3A238552(__this, ((RuntimeArray*)CastclassClass((RuntimeObject*)L_61, RuntimeArray_il2cpp_TypeInfo_var)), L_62, L_66, (bool)1, NULL); V_2 = L_67; XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_68 = V_0; RuntimeObject* L_69 = ___1_ob; RuntimeObject* L_70 = V_2; bool L_71 = ___2_isValueList; XmlSerializationReaderInterpreter_SetMemberValue_mABB21E3AEFF2EB1B198A0B915622E84D542D1D99(__this, L_68, L_69, L_70, L_71, NULL); } IL_0179: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_72; L_72 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_72); bool L_73; L_73 = VirtualFuncInvoker0< bool >::Invoke(29 /* System.Boolean System.Xml.XmlReader::MoveToElement() */, L_72); return; } } // System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadMembers(System.Xml.Serialization.ClassMap,System.Object,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReaderInterpreter_ReadMembers_m92FC821665FFF506E537CCDA5A70F4B1172E626B (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* ___0_map, RuntimeObject* ___1_ob, bool ___2_isValueList, bool ___3_readBySoapOrder, 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*)&CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FixupCallbackInfo_FixupMembers_m80AD28B889F16F84A04A47F8895B582A50981E63_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FixupCallbackInfo_t4F096851101229F0692C9397633C653DE18E2475_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeArray_il2cpp_TypeInfo_var); 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*)&XmlSerializationCollectionFixupCallback_t7A477E768FFD9DF76301088150243A493D5A4842_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSerializationFixupCallback_t882A7D135707B29ECA0198EFF9BB512C8F54A3AE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSerializationReaderInterpreter_FillList_m5396649C8AB2996C6C7D25983BDAD9479A3F29D9_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapMemberList_t5542A0234B55CC3AD3EDD7B830E7C4603FAAD63E_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE249DDFD90EBFAAEE63734F28F6668A2FB5BD5AF); s_Il2CppMethodInitialized = true; } BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* V_0 = NULL; bool V_1 = false; Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_2 = NULL; ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_3 = NULL; ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_4 = NULL; Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* V_5 = NULL; int32_t V_6 = 0; int32_t V_7 = 0; XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* V_8 = NULL; RuntimeObject* V_9 = NULL; XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* V_10 = NULL; RuntimeObject* V_11 = NULL; RuntimeObject* V_12 = NULL; FixupCallbackInfo_t4F096851101229F0692C9397633C653DE18E2475* V_13 = NULL; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* V_14 = NULL; RuntimeObject* V_15 = NULL; RuntimeObject* V_16 = NULL; RuntimeObject* V_17 = NULL; XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38* V_18 = NULL; int32_t V_19 = 0; XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* V_20 = NULL; RuntimeObject* V_21 = NULL; XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* V_22 = NULL; XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* V_23 = NULL; XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38* V_24 = NULL; TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* V_25 = NULL; RuntimeObject* V_26 = NULL; XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* V_27 = NULL; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* V_28 = NULL; XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* V_29 = NULL; RuntimeObject* V_30 = NULL; XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* V_31 = NULL; RuntimeObject* V_32 = NULL; int32_t G_B7_0 = 0; int32_t G_B11_0 = 0; TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* G_B107_0 = NULL; RuntimeObject* G_B110_0 = NULL; { ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_0 = ___0_map; RuntimeObject* L_1 = ___1_ob; bool L_2 = ___2_isValueList; XmlSerializationReaderInterpreter_ReadAttributeMembers_m7DAF4EA9F9401AC7C7ED1C8BC89E28C607203EB9(__this, L_0, L_1, L_2, NULL); bool L_3 = ___2_isValueList; if (L_3) { goto IL_003a; } } { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_4; L_4 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_4); bool L_5; L_5 = VirtualFuncInvoker0< bool >::Invoke(29 /* System.Boolean System.Xml.XmlReader::MoveToElement() */, L_4); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_6; L_6 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_6); bool L_7; L_7 = VirtualFuncInvoker0< bool >::Invoke(14 /* System.Boolean System.Xml.XmlReader::get_IsEmptyElement() */, L_6); if (!L_7) { goto IL_002f; } } { ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_8 = ___0_map; RuntimeObject* L_9 = ___1_ob; bool L_10 = ___2_isValueList; XmlSerializationReaderInterpreter_SetListMembersDefaults_m9C3CFA88D73B9F2C87B02C6787802F9EB9CEE954(__this, L_8, L_9, L_10, NULL); return; } IL_002f: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_11; L_11 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_11); VirtualActionInvoker0::Invoke(44 /* System.Void System.Xml.XmlReader::ReadStartElement() */, L_11); } IL_003a: { ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_12 = ___0_map; NullCheck(L_12); RuntimeObject* L_13; L_13 = ClassMap_get_ElementMembers_m28BCFDC1D5FC50F910FBCF82D9C30472482A505D_inline(L_12, NULL); if (L_13) { goto IL_0045; } } { G_B7_0 = 0; goto IL_0050; } IL_0045: { ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_14 = ___0_map; NullCheck(L_14); RuntimeObject* L_15; L_15 = ClassMap_get_ElementMembers_m28BCFDC1D5FC50F910FBCF82D9C30472482A505D_inline(L_14, NULL); NullCheck(L_15); int32_t L_16; L_16 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var, L_15); G_B7_0 = L_16; } IL_0050: { BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_17 = (BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*)(BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*)SZArrayNew(BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4_il2cpp_TypeInfo_var, (uint32_t)G_B7_0); V_0 = L_17; bool L_18 = ___2_isValueList; if (!L_18) { goto IL_006c; } } { int32_t L_19 = __this->____format_26; if (L_19) { goto IL_006c; } } { ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_20 = ___0_map; NullCheck(L_20); XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_21; L_21 = ClassMap_get_ReturnMember_m17D5284F4873CF87F02814AF5BD96CFD23737F32_inline(L_20, NULL); G_B11_0 = ((!(((RuntimeObject*)(XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A*)L_21) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0); goto IL_006d; } IL_006c: { G_B11_0 = 0; } IL_006d: { V_1 = (bool)G_B11_0; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_22; L_22 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_22); int32_t L_23; L_23 = VirtualFuncInvoker0< int32_t >::Invoke(43 /* System.Xml.XmlNodeType System.Xml.XmlReader::MoveToContent() */, L_22); V_2 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)NULL; V_3 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL; V_4 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL; V_5 = (Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566*)NULL; V_6 = (-1); bool L_24 = ___3_readBySoapOrder; if (!L_24) { goto IL_00a7; } } { ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_25 = ___0_map; NullCheck(L_25); RuntimeObject* L_26; L_26 = ClassMap_get_ElementMembers_m28BCFDC1D5FC50F910FBCF82D9C30472482A505D_inline(L_25, NULL); if (!L_26) { goto IL_00a2; } } { ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_27 = ___0_map; NullCheck(L_27); RuntimeObject* L_28; L_28 = ClassMap_get_ElementMembers_m28BCFDC1D5FC50F910FBCF82D9C30472482A505D_inline(L_27, NULL); NullCheck(L_28); int32_t L_29; L_29 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var, L_28); V_7 = L_29; goto IL_00ae; } IL_00a2: { V_7 = (-1); goto IL_00ae; } IL_00a7: { V_7 = ((int32_t)2147483647LL); } IL_00ae: { ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_30 = ___0_map; NullCheck(L_30); ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_31; L_31 = ClassMap_get_FlatLists_m852941CF165941C1EB03137482353B221F335DE9_inline(L_30, NULL); if (!L_31) { goto IL_01d9; } } { ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_32 = ___0_map; NullCheck(L_32); ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_33; L_33 = ClassMap_get_FlatLists_m852941CF165941C1EB03137482353B221F335DE9_inline(L_32, NULL); NullCheck(L_33); int32_t L_34; L_34 = VirtualFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_33); Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_35 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)L_34); V_2 = L_35; ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_36 = ___0_map; NullCheck(L_36); ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_37; L_37 = ClassMap_get_FlatLists_m852941CF165941C1EB03137482353B221F335DE9_inline(L_36, NULL); NullCheck(L_37); int32_t L_38; L_38 = VirtualFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_37); ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_39 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)L_38); V_3 = L_39; ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_40 = ___0_map; NullCheck(L_40); ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_41; L_41 = ClassMap_get_FlatLists_m852941CF165941C1EB03137482353B221F335DE9_inline(L_40, NULL); NullCheck(L_41); RuntimeObject* L_42; L_42 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(38 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_41); V_9 = L_42; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_01c4: {// begin finally (depth: 1) { RuntimeObject* L_43 = V_9; V_12 = ((RuntimeObject*)IsInst((RuntimeObject*)L_43, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var)); RuntimeObject* L_44 = V_12; if (!L_44) { goto IL_01d8; } } { RuntimeObject* L_45 = V_12; NullCheck(L_45); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_45); } IL_01d8: { return; } }// end finally (depth: 1) }); try {// begin try (depth: 1) { goto IL_01b6_1; } IL_00ed_1: { RuntimeObject* L_46 = V_9; NullCheck(L_46); RuntimeObject* L_47; L_47 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_46); V_10 = ((XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE*)CastclassClass((RuntimeObject*)L_47, XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE_il2cpp_TypeInfo_var)); XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_48 = V_10; XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_49 = V_10; NullCheck(L_49); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_50; L_50 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_49, NULL); RuntimeObject* L_51 = ___1_ob; bool L_52 = ___2_isValueList; bool L_53; L_53 = XmlSerializationReaderInterpreter_IsReadOnly_m2C12724B3F9B47E6A7F30F73BD6279385A29AD58(__this, L_48, L_50, L_51, L_52, NULL); if (!L_53) { goto IL_0121_1; } } { ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_54 = V_3; XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_55 = V_10; NullCheck(L_55); int32_t L_56; L_56 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_mD83A6C690F8EA40C0FAF882E1549E0BD0831CC83_inline(L_55, NULL); XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_57 = V_10; RuntimeObject* L_58 = ___1_ob; NullCheck(L_57); RuntimeObject* L_59; L_59 = XmlTypeMapMember_GetValue_mB762710324E36B398ED02670400043C5462A5ECF(L_57, L_58, NULL); NullCheck(L_54); ArrayElementTypeCheck (L_54, L_59); (L_54)->SetAt(static_cast(L_56), (RuntimeObject*)L_59); goto IL_0180_1; } IL_0121_1: { XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_60 = V_10; NullCheck(L_60); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_61; L_61 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_60, NULL); NullCheck(L_61); Type_t* L_62; L_62 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_61, NULL); NullCheck(L_62); bool L_63; L_63 = Type_get_IsArray_mB9B8CA713B2AA9D6AFECC24E05AF78D22532B673(L_62, NULL); if (!L_63) { goto IL_014c_1; } } { ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_64 = V_3; XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_65 = V_10; NullCheck(L_65); int32_t L_66; L_66 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_mD83A6C690F8EA40C0FAF882E1549E0BD0831CC83_inline(L_65, NULL); XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_67 = V_10; NullCheck(L_67); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_68; L_68 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_67, NULL); RuntimeObject* L_69; L_69 = XmlSerializationReaderInterpreter_InitializeList_m9B8DC26F07D1636336A807E8AE75FA5E5BA74DA6(__this, L_68, NULL); NullCheck(L_64); ArrayElementTypeCheck (L_64, L_69); (L_64)->SetAt(static_cast(L_66), (RuntimeObject*)L_69); goto IL_0180_1; } IL_014c_1: { XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_70 = V_10; RuntimeObject* L_71 = ___1_ob; NullCheck(L_70); RuntimeObject* L_72; L_72 = XmlTypeMapMember_GetValue_mB762710324E36B398ED02670400043C5462A5ECF(L_70, L_71, NULL); V_11 = L_72; RuntimeObject* L_73 = V_11; if (L_73) { goto IL_0175_1; } } { XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_74 = V_10; NullCheck(L_74); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_75; L_75 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_74, NULL); RuntimeObject* L_76; L_76 = XmlSerializationReaderInterpreter_InitializeList_m9B8DC26F07D1636336A807E8AE75FA5E5BA74DA6(__this, L_75, NULL); V_11 = L_76; XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_77 = V_10; RuntimeObject* L_78 = ___1_ob; RuntimeObject* L_79 = V_11; bool L_80 = ___2_isValueList; XmlSerializationReaderInterpreter_SetMemberValue_mABB21E3AEFF2EB1B198A0B915622E84D542D1D99(__this, L_77, L_78, L_79, L_80, NULL); } IL_0175_1: { ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_81 = V_3; XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_82 = V_10; NullCheck(L_82); int32_t L_83; L_83 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_mD83A6C690F8EA40C0FAF882E1549E0BD0831CC83_inline(L_82, NULL); RuntimeObject* L_84 = V_11; NullCheck(L_81); ArrayElementTypeCheck (L_81, L_84); (L_81)->SetAt(static_cast(L_83), (RuntimeObject*)L_84); } IL_0180_1: { XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_85 = V_10; NullCheck(L_85); String_t* L_86; L_86 = XmlTypeMapMemberElement_get_ChoiceMember_m182A4AB876036DDA005F0760EF51C5FCA7F682D8_inline(L_85, NULL); if (!L_86) { goto IL_01b6_1; } } { ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_87 = V_4; if (L_87) { goto IL_019f_1; } } { ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_88 = ___0_map; NullCheck(L_88); ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_89; L_89 = ClassMap_get_FlatLists_m852941CF165941C1EB03137482353B221F335DE9_inline(L_88, NULL); NullCheck(L_89); int32_t L_90; L_90 = VirtualFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_89); ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_91 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)L_90); V_4 = L_91; } IL_019f_1: { ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_92 = V_4; XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_93 = V_10; NullCheck(L_93); int32_t L_94; L_94 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_mD83A6C690F8EA40C0FAF882E1549E0BD0831CC83_inline(L_93, NULL); XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_95 = V_10; NullCheck(L_95); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_96; L_96 = XmlTypeMapMemberElement_get_ChoiceTypeData_m1C40274707406AC69F5536776D0276266332B845_inline(L_95, NULL); RuntimeObject* L_97; L_97 = XmlSerializationReaderInterpreter_InitializeList_m9B8DC26F07D1636336A807E8AE75FA5E5BA74DA6(__this, L_96, NULL); NullCheck(L_92); ArrayElementTypeCheck (L_92, L_97); (L_92)->SetAt(static_cast(L_94), (RuntimeObject*)L_97); } IL_01b6_1: { RuntimeObject* L_98 = V_9; NullCheck(L_98); bool L_99; L_99 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_98); if (L_99) { goto IL_00ed_1; } } { goto IL_01d9; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_01d9: { int32_t L_100 = __this->____format_26; if (L_100) { goto IL_021b; } } { ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_101 = ___0_map; NullCheck(L_101); RuntimeObject* L_102; L_102 = ClassMap_get_ElementMembers_m28BCFDC1D5FC50F910FBCF82D9C30472482A505D_inline(L_101, NULL); if (!L_102) { goto IL_021b; } } { ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_103 = ___0_map; bool L_104 = ___2_isValueList; FixupCallbackInfo_t4F096851101229F0692C9397633C653DE18E2475* L_105 = (FixupCallbackInfo_t4F096851101229F0692C9397633C653DE18E2475*)il2cpp_codegen_object_new(FixupCallbackInfo_t4F096851101229F0692C9397633C653DE18E2475_il2cpp_TypeInfo_var); NullCheck(L_105); FixupCallbackInfo__ctor_m21B1A474D5B56C19F301C9D9EF4B235B7B8AE639(L_105, __this, L_103, L_104, NULL); V_13 = L_105; RuntimeObject* L_106 = ___1_ob; FixupCallbackInfo_t4F096851101229F0692C9397633C653DE18E2475* L_107 = V_13; XmlSerializationFixupCallback_t882A7D135707B29ECA0198EFF9BB512C8F54A3AE* L_108 = (XmlSerializationFixupCallback_t882A7D135707B29ECA0198EFF9BB512C8F54A3AE*)il2cpp_codegen_object_new(XmlSerializationFixupCallback_t882A7D135707B29ECA0198EFF9BB512C8F54A3AE_il2cpp_TypeInfo_var); NullCheck(L_108); XmlSerializationFixupCallback__ctor_mB41C79CFAA7CD40502E2C121836DF8A12FB521DD(L_108, L_107, (intptr_t)((void*)FixupCallbackInfo_FixupMembers_m80AD28B889F16F84A04A47F8895B582A50981E63_RuntimeMethod_var), NULL); ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_109 = ___0_map; NullCheck(L_109); RuntimeObject* L_110; L_110 = ClassMap_get_ElementMembers_m28BCFDC1D5FC50F910FBCF82D9C30472482A505D_inline(L_109, NULL); NullCheck(L_110); int32_t L_111; L_111 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var, L_110); Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* L_112 = (Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566*)il2cpp_codegen_object_new(Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566_il2cpp_TypeInfo_var); NullCheck(L_112); Fixup__ctor_m7213A65447CD4248AA5F086E4C71C792B5A21F14(L_112, L_106, L_108, L_111, NULL); V_5 = L_112; Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* L_113 = V_5; XmlSerializationReader_AddFixup_mF54D9CAC7E4D3149F057CBDD182C76A2EC78F794(__this, L_113, NULL); } IL_021b: { V_8 = (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A*)NULL; goto IL_0a24; } IL_0223: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_114; L_114 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_114); int32_t L_115; L_115 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_114); if ((!(((uint32_t)L_115) == ((uint32_t)1)))) { goto IL_08b2; } } { bool L_116 = ___3_readBySoapOrder; if (!L_116) { goto IL_025a; } } { ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_117 = ___0_map; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_118; L_118 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_118); String_t* L_119; L_119 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_118); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_120; L_120 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_120); String_t* L_121; L_121 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_120); int32_t L_122 = V_6; NullCheck(L_117); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_123; L_123 = ClassMap_GetElement_m5F9EF895E43E4009CB54E866BBD4C52A2BAE3528(L_117, L_119, L_121, L_122, NULL); V_14 = L_123; goto IL_02c6; } IL_025a: { bool L_124 = V_1; if (!L_124) { goto IL_027e; } } { ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_125 = ___0_map; NullCheck(L_125); XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_126; L_126 = ClassMap_get_ReturnMember_m17D5284F4873CF87F02814AF5BD96CFD23737F32_inline(L_125, NULL); NullCheck(((XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840*)CastclassClass((RuntimeObject*)L_126, XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840_il2cpp_TypeInfo_var))); XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_127; L_127 = XmlTypeMapMemberElement_get_ElementInfo_m62E3A285CDAFF7621EA03A0DA6B1966D5432D337(((XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840*)CastclassClass((RuntimeObject*)L_126, XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840_il2cpp_TypeInfo_var)), NULL); NullCheck(L_127); RuntimeObject* L_128; L_128 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(28 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_127, 0); V_14 = ((XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32*)CastclassClass((RuntimeObject*)L_128, XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var)); V_1 = (bool)0; goto IL_02c6; } IL_027e: { ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_129 = ___0_map; NullCheck(L_129); bool L_130; L_130 = ClassMap_get_IsOrderDependentMap_m0B479BCCCAECE8D9D5DC7659B5CFFB7CB949C93A(L_129, NULL); if (!L_130) { goto IL_02a8; } } { ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_131 = ___0_map; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_132; L_132 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_132); String_t* L_133; L_133 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_132); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_134; L_134 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_134); String_t* L_135; L_135 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_134); int32_t L_136 = V_6; NullCheck(L_131); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_137; L_137 = ClassMap_GetElement_m5F9EF895E43E4009CB54E866BBD4C52A2BAE3528(L_131, L_133, L_135, L_136, NULL); V_14 = L_137; goto IL_02c6; } IL_02a8: { ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_138 = ___0_map; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_139; L_139 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_139); String_t* L_140; L_140 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_139); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_141; L_141 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_141); String_t* L_142; L_142 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_141); NullCheck(L_138); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_143; L_143 = ClassMap_GetElement_m60767CE50696152D35651B8202236E105721F3C3(L_138, L_140, L_142, NULL); V_14 = L_143; } IL_02c6: { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_144 = V_14; if (!L_144) { goto IL_0820; } } { BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_145 = V_0; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_146 = V_14; NullCheck(L_146); XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_147; L_147 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_146, NULL); NullCheck(L_147); int32_t L_148; L_148 = XmlTypeMapMember_get_Index_m3EAB1243B03E5DBD10C6E7CA245E5A6C04406D12_inline(L_147, NULL); NullCheck(L_145); int32_t L_149 = L_148; uint8_t L_150 = (uint8_t)(L_145)->GetAt(static_cast(L_149)); if (L_150) { goto IL_0820; } } { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_151 = V_14; NullCheck(L_151); XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_152; L_152 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_151, NULL); XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_153 = V_8; if ((((RuntimeObject*)(XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A*)L_152) == ((RuntimeObject*)(XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A*)L_153))) { goto IL_0313; } } { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_154 = V_14; NullCheck(L_154); int32_t L_155; L_155 = XmlTypeMapElementInfo_get_ExplicitOrder_m929232F83C9F294565C56EC38C5BACCA530DEDAB_inline(L_154, NULL); V_6 = ((int32_t)il2cpp_codegen_add(L_155, 1)); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_156 = V_14; NullCheck(L_156); XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_157; L_157 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_156, NULL); if (!((XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38*)IsInstClass((RuntimeObject*)L_157, XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38_il2cpp_TypeInfo_var))) { goto IL_030a; } } { int32_t L_158 = V_6; V_6 = ((int32_t)il2cpp_codegen_subtract(L_158, 1)); } IL_030a: { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_159 = V_14; NullCheck(L_159); XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_160; L_160 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_159, NULL); V_8 = L_160; } IL_0313: { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_161 = V_14; NullCheck(L_161); XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_162; L_162 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_161, NULL); NullCheck(L_162); Type_t* L_163; L_163 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_162, NULL); RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_164 = { reinterpret_cast (XmlTypeMapMemberList_t5542A0234B55CC3AD3EDD7B830E7C4603FAAD63E_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_165; L_165 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_164, NULL); bool L_166; L_166 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_163, L_165, NULL); if (!L_166) { goto IL_0575; } } { int32_t L_167 = __this->____format_26; if (L_167) { goto IL_0478; } } { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_168 = V_14; NullCheck(L_168); bool L_169; L_169 = XmlTypeMapElementInfo_get_MultiReferenceType_m4176293D1962C6176A28D752B43F207817A93D2F(L_168, NULL); if (!L_169) { goto IL_0478; } } { Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* L_170 = V_5; NullCheck(L_170); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_171; L_171 = Fixup_get_Ids_m9B1A1A8EC0662A14A92B000F90A276C18E7690B2_inline(L_170, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_172 = V_14; NullCheck(L_172); XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_173; L_173 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_172, NULL); NullCheck(L_173); int32_t L_174; L_174 = XmlTypeMapMember_get_Index_m3EAB1243B03E5DBD10C6E7CA245E5A6C04406D12_inline(L_173, NULL); NullCheck(L_171); RuntimeObject* L_175; L_175 = XmlSerializationReader_ReadReferencingElement_mC2F7F98DBC0683ECE865560DBB9F1CBA0798EBB6(__this, ((L_171)->GetAddressAt(static_cast(L_174))), NULL); V_15 = L_175; Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* L_176 = V_5; NullCheck(L_176); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_177; L_177 = Fixup_get_Ids_m9B1A1A8EC0662A14A92B000F90A276C18E7690B2_inline(L_176, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_178 = V_14; NullCheck(L_178); XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_179; L_179 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_178, NULL); NullCheck(L_179); int32_t L_180; L_180 = XmlTypeMapMember_get_Index_m3EAB1243B03E5DBD10C6E7CA245E5A6C04406D12_inline(L_179, NULL); NullCheck(L_177); int32_t L_181 = L_180; String_t* L_182 = (L_177)->GetAt(static_cast(L_181)); if (L_182) { goto IL_03c1; } } { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_183 = V_14; NullCheck(L_183); XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_184; L_184 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_183, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_185 = V_14; NullCheck(L_185); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_186; L_186 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_185, NULL); RuntimeObject* L_187 = ___1_ob; bool L_188 = ___2_isValueList; bool L_189; L_189 = XmlSerializationReaderInterpreter_IsReadOnly_m2C12724B3F9B47E6A7F30F73BD6279385A29AD58(__this, L_184, L_186, L_187, L_188, NULL); if (!L_189) { goto IL_03ab; } } { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_190 = V_14; NullCheck(L_190); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_191; L_191 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_190, NULL); NullCheck(L_191); String_t* L_192; L_192 = TypeData_get_FullTypeName_m391893730DDFEE90F76197075F599FEA2E60BE43_inline(L_191, NULL); Exception_t* L_193; L_193 = XmlSerializationReader_CreateReadOnlyCollectionException_m7FDF903691CC369CC0F6E939D337DC0A8CB734C7(__this, L_192, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_193, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializationReaderInterpreter_ReadMembers_m92FC821665FFF506E537CCDA5A70F4B1172E626B_RuntimeMethod_var))); } IL_03ab: { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_194 = V_14; NullCheck(L_194); XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_195; L_195 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_194, NULL); RuntimeObject* L_196 = ___1_ob; RuntimeObject* L_197 = V_15; bool L_198 = ___2_isValueList; XmlSerializationReaderInterpreter_SetMemberValue_mABB21E3AEFF2EB1B198A0B915622E84D542D1D99(__this, L_195, L_196, L_197, L_198, NULL); goto IL_0561; } IL_03c1: { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_199 = V_14; NullCheck(L_199); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_200; L_200 = XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline(L_199, NULL); NullCheck(L_200); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_201; L_201 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_200, NULL); NullCheck(L_201); Type_t* L_202; L_202 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_201, NULL); NullCheck(L_202); bool L_203; L_203 = Type_get_IsArray_mB9B8CA713B2AA9D6AFECC24E05AF78D22532B673(L_202, NULL); if (L_203) { goto IL_0561; } } { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_204 = V_14; NullCheck(L_204); XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_205; L_205 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_204, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_206 = V_14; NullCheck(L_206); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_207; L_207 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_206, NULL); RuntimeObject* L_208 = ___1_ob; bool L_209 = ___2_isValueList; bool L_210; L_210 = XmlSerializationReaderInterpreter_IsReadOnly_m2C12724B3F9B47E6A7F30F73BD6279385A29AD58(__this, L_205, L_207, L_208, L_209, NULL); if (!L_210) { goto IL_0407; } } { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_211 = V_14; NullCheck(L_211); XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_212; L_212 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_211, NULL); RuntimeObject* L_213 = ___1_ob; bool L_214 = ___2_isValueList; RuntimeObject* L_215; L_215 = XmlSerializationReaderInterpreter_GetMemberValue_mFA240C18B7888ACCAC3CED8800EAF6E2670BEF41(__this, L_212, L_213, L_214, NULL); V_15 = L_215; goto IL_0431; } IL_0407: { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_216 = V_14; NullCheck(L_216); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_217; L_217 = XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline(L_216, NULL); NullCheck(L_217); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_218; L_218 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_217, NULL); NullCheck(L_218); Type_t* L_219; L_219 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_218, NULL); RuntimeObject* L_220; L_220 = XmlSerializationReaderInterpreter_CreateList_m8DEC17C3A9D8AB9C6659C503168A670217F052A3(__this, L_219, NULL); V_15 = L_220; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_221 = V_14; NullCheck(L_221); XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_222; L_222 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_221, NULL); RuntimeObject* L_223 = ___1_ob; RuntimeObject* L_224 = V_15; bool L_225 = ___2_isValueList; XmlSerializationReaderInterpreter_SetMemberValue_mABB21E3AEFF2EB1B198A0B915622E84D542D1D99(__this, L_222, L_223, L_224, L_225, NULL); } IL_0431: { RuntimeObject* L_226 = V_15; XmlSerializationCollectionFixupCallback_t7A477E768FFD9DF76301088150243A493D5A4842* L_227 = (XmlSerializationCollectionFixupCallback_t7A477E768FFD9DF76301088150243A493D5A4842*)il2cpp_codegen_object_new(XmlSerializationCollectionFixupCallback_t7A477E768FFD9DF76301088150243A493D5A4842_il2cpp_TypeInfo_var); NullCheck(L_227); XmlSerializationCollectionFixupCallback__ctor_mB50149D9773BF51E099E574127D057F454EC6DF8(L_227, __this, (intptr_t)((void*)XmlSerializationReaderInterpreter_FillList_m5396649C8AB2996C6C7D25983BDAD9479A3F29D9_RuntimeMethod_var), NULL); Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* L_228 = V_5; NullCheck(L_228); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_229; L_229 = Fixup_get_Ids_m9B1A1A8EC0662A14A92B000F90A276C18E7690B2_inline(L_228, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_230 = V_14; NullCheck(L_230); XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_231; L_231 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_230, NULL); NullCheck(L_231); int32_t L_232; L_232 = XmlTypeMapMember_get_Index_m3EAB1243B03E5DBD10C6E7CA245E5A6C04406D12_inline(L_231, NULL); NullCheck(L_229); int32_t L_233 = L_232; String_t* L_234 = (L_229)->GetAt(static_cast(L_233)); CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702* L_235 = (CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702*)il2cpp_codegen_object_new(CollectionFixup_t142C1E88C4ED855F059B391DBC2D2F9D4976E702_il2cpp_TypeInfo_var); NullCheck(L_235); CollectionFixup__ctor_m1F4ADF9D829F9B0BFEB1442AEB2167118F4EA0AB(L_235, L_226, L_227, L_234, NULL); XmlSerializationReader_AddFixup_m846FB4EEF12E21F5803BC41685952AFE6A3D98E1(__this, L_235, NULL); Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* L_236 = V_5; NullCheck(L_236); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_237; L_237 = Fixup_get_Ids_m9B1A1A8EC0662A14A92B000F90A276C18E7690B2_inline(L_236, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_238 = V_14; NullCheck(L_238); XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_239; L_239 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_238, NULL); NullCheck(L_239); int32_t L_240; L_240 = XmlTypeMapMember_get_Index_m3EAB1243B03E5DBD10C6E7CA245E5A6C04406D12_inline(L_239, NULL); NullCheck(L_237); ArrayElementTypeCheck (L_237, NULL); (L_237)->SetAt(static_cast(L_240), (String_t*)NULL); goto IL_0561; } IL_0478: { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_241 = V_14; NullCheck(L_241); XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_242; L_242 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_241, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_243 = V_14; NullCheck(L_243); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_244; L_244 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_243, NULL); RuntimeObject* L_245 = ___1_ob; bool L_246 = ___2_isValueList; bool L_247; L_247 = XmlSerializationReaderInterpreter_IsReadOnly_m2C12724B3F9B47E6A7F30F73BD6279385A29AD58(__this, L_242, L_244, L_245, L_246, NULL); if (!L_247) { goto IL_04ba; } } { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_248 = V_14; NullCheck(L_248); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_249; L_249 = XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline(L_248, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_250 = V_14; NullCheck(L_250); bool L_251; L_251 = XmlTypeMapElementInfo_get_IsNullable_m5E6F72E9E7ADFA39100C6C0FFA1585BCDE4ACE75_inline(L_250, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_252 = V_14; NullCheck(L_252); XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_253; L_253 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_252, NULL); RuntimeObject* L_254 = ___1_ob; bool L_255 = ___2_isValueList; RuntimeObject* L_256; L_256 = XmlSerializationReaderInterpreter_GetMemberValue_mFA240C18B7888ACCAC3CED8800EAF6E2670BEF41(__this, L_253, L_254, L_255, NULL); RuntimeObject* L_257; L_257 = XmlSerializationReaderInterpreter_ReadListElement_m9DA9C6F2AC8812B8783E85AF2F99A4FE6CB14B14(__this, L_249, L_251, L_256, (bool)0, NULL); goto IL_0561; } IL_04ba: { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_258 = V_14; NullCheck(L_258); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_259; L_259 = XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline(L_258, NULL); NullCheck(L_259); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_260; L_260 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_259, NULL); NullCheck(L_260); Type_t* L_261; L_261 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_260, NULL); NullCheck(L_261); bool L_262; L_262 = Type_get_IsArray_mB9B8CA713B2AA9D6AFECC24E05AF78D22532B673(L_261, NULL); if (!L_262) { goto IL_050a; } } { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_263 = V_14; NullCheck(L_263); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_264; L_264 = XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline(L_263, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_265 = V_14; NullCheck(L_265); bool L_266; L_266 = XmlTypeMapElementInfo_get_IsNullable_m5E6F72E9E7ADFA39100C6C0FFA1585BCDE4ACE75_inline(L_265, NULL); RuntimeObject* L_267; L_267 = XmlSerializationReaderInterpreter_ReadListElement_m9DA9C6F2AC8812B8783E85AF2F99A4FE6CB14B14(__this, L_264, L_266, NULL, (bool)1, NULL); V_16 = L_267; RuntimeObject* L_268 = V_16; if (L_268) { goto IL_04f7; } } { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_269 = V_14; NullCheck(L_269); bool L_270; L_270 = XmlTypeMapElementInfo_get_IsNullable_m5E6F72E9E7ADFA39100C6C0FFA1585BCDE4ACE75_inline(L_269, NULL); if (!L_270) { goto IL_0561; } } IL_04f7: { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_271 = V_14; NullCheck(L_271); XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_272; L_272 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_271, NULL); RuntimeObject* L_273 = ___1_ob; RuntimeObject* L_274 = V_16; bool L_275 = ___2_isValueList; XmlSerializationReaderInterpreter_SetMemberValue_mABB21E3AEFF2EB1B198A0B915622E84D542D1D99(__this, L_272, L_273, L_274, L_275, NULL); goto IL_0561; } IL_050a: { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_276 = V_14; NullCheck(L_276); XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_277; L_277 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_276, NULL); RuntimeObject* L_278 = ___1_ob; bool L_279 = ___2_isValueList; RuntimeObject* L_280; L_280 = XmlSerializationReaderInterpreter_GetMemberValue_mFA240C18B7888ACCAC3CED8800EAF6E2670BEF41(__this, L_277, L_278, L_279, NULL); V_17 = L_280; RuntimeObject* L_281 = V_17; if (L_281) { goto IL_0549; } } { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_282 = V_14; NullCheck(L_282); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_283; L_283 = XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline(L_282, NULL); NullCheck(L_283); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_284; L_284 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_283, NULL); NullCheck(L_284); Type_t* L_285; L_285 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_284, NULL); RuntimeObject* L_286; L_286 = XmlSerializationReaderInterpreter_CreateList_m8DEC17C3A9D8AB9C6659C503168A670217F052A3(__this, L_285, NULL); V_17 = L_286; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_287 = V_14; NullCheck(L_287); XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_288; L_288 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_287, NULL); RuntimeObject* L_289 = ___1_ob; RuntimeObject* L_290 = V_17; bool L_291 = ___2_isValueList; XmlSerializationReaderInterpreter_SetMemberValue_mABB21E3AEFF2EB1B198A0B915622E84D542D1D99(__this, L_288, L_289, L_290, L_291, NULL); } IL_0549: { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_292 = V_14; NullCheck(L_292); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_293; L_293 = XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline(L_292, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_294 = V_14; NullCheck(L_294); bool L_295; L_295 = XmlTypeMapElementInfo_get_IsNullable_m5E6F72E9E7ADFA39100C6C0FFA1585BCDE4ACE75_inline(L_294, NULL); RuntimeObject* L_296 = V_17; RuntimeObject* L_297; L_297 = XmlSerializationReaderInterpreter_ReadListElement_m9DA9C6F2AC8812B8783E85AF2F99A4FE6CB14B14(__this, L_293, L_295, L_296, (bool)1, NULL); } IL_0561: { BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_298 = V_0; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_299 = V_14; NullCheck(L_299); XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_300; L_300 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_299, NULL); NullCheck(L_300); int32_t L_301; L_301 = XmlTypeMapMember_get_Index_m3EAB1243B03E5DBD10C6E7CA245E5A6C04406D12_inline(L_300, NULL); NullCheck(L_298); (L_298)->SetAt(static_cast(L_301), (bool)1); goto IL_0a18; } IL_0575: { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_302 = V_14; NullCheck(L_302); XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_303; L_303 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_302, NULL); NullCheck(L_303); Type_t* L_304; L_304 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_303, NULL); RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_305 = { reinterpret_cast (XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_306; L_306 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_305, NULL); bool L_307; L_307 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_304, L_306, NULL); if (!L_307) { goto IL_0635; } } { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_308 = V_14; NullCheck(L_308); XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_309; L_309 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_308, NULL); V_18 = ((XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38*)CastclassClass((RuntimeObject*)L_309, XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38_il2cpp_TypeInfo_var)); XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38* L_310 = V_18; NullCheck(L_310); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_311; L_311 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_310, NULL); ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_312 = V_3; XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38* L_313 = V_18; NullCheck(L_313); int32_t L_314; L_314 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_mD83A6C690F8EA40C0FAF882E1549E0BD0831CC83_inline(L_313, NULL); NullCheck(L_312); Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_315 = V_2; XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38* L_316 = V_18; NullCheck(L_316); int32_t L_317; L_317 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_mD83A6C690F8EA40C0FAF882E1549E0BD0831CC83_inline(L_316, NULL); NullCheck(L_315); int32_t* L_318 = ((L_315)->GetAddressAt(static_cast(L_317))); int32_t L_319 = *((int32_t*)L_318); V_19 = L_319; int32_t L_320 = V_19; *((int32_t*)L_318) = (int32_t)((int32_t)il2cpp_codegen_add(L_320, 1)); int32_t L_321 = V_19; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_322 = V_14; RuntimeObject* L_323; L_323 = XmlSerializationReaderInterpreter_ReadObjectElement_mB76E426F3F5A3C4F36AC5563C3A546ECC8B6DF05(__this, L_322, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_324 = V_14; NullCheck(L_324); XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_325; L_325 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_324, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_326 = V_14; NullCheck(L_326); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_327; L_327 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_326, NULL); RuntimeObject* L_328 = ___1_ob; bool L_329 = ___2_isValueList; bool L_330; L_330 = XmlSerializationReaderInterpreter_IsReadOnly_m2C12724B3F9B47E6A7F30F73BD6279385A29AD58(__this, L_325, L_327, L_328, L_329, NULL); XmlSerializationReaderInterpreter_AddListValue_m12D3A8F7A8612DBA89872F736C275807EBB57EA4(__this, L_311, ((L_312)->GetAddressAt(static_cast(L_314))), L_321, L_323, (bool)((((int32_t)L_330) == ((int32_t)0))? 1 : 0), NULL); XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38* L_331 = V_18; NullCheck(L_331); String_t* L_332; L_332 = XmlTypeMapMemberElement_get_ChoiceMember_m182A4AB876036DDA005F0760EF51C5FCA7F682D8_inline(L_331, NULL); if (!L_332) { goto IL_0a18; } } { XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38* L_333 = V_18; NullCheck(L_333); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_334; L_334 = XmlTypeMapMemberElement_get_ChoiceTypeData_m1C40274707406AC69F5536776D0276266332B845_inline(L_333, NULL); ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_335 = V_4; XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38* L_336 = V_18; NullCheck(L_336); int32_t L_337; L_337 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_mD83A6C690F8EA40C0FAF882E1549E0BD0831CC83_inline(L_336, NULL); NullCheck(L_335); Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_338 = V_2; XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38* L_339 = V_18; NullCheck(L_339); int32_t L_340; L_340 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_mD83A6C690F8EA40C0FAF882E1549E0BD0831CC83_inline(L_339, NULL); NullCheck(L_338); int32_t L_341 = L_340; int32_t L_342 = (L_338)->GetAt(static_cast(L_341)); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_343 = V_14; NullCheck(L_343); RuntimeObject* L_344; L_344 = XmlTypeMapElementInfo_get_ChoiceValue_m7BC9464A497AFA7A1BF250BA0D88928706C6412E_inline(L_343, NULL); XmlSerializationReaderInterpreter_AddListValue_m12D3A8F7A8612DBA89872F736C275807EBB57EA4(__this, L_334, ((L_335)->GetAddressAt(static_cast(L_337))), ((int32_t)il2cpp_codegen_subtract(L_342, 1)), L_344, (bool)1, NULL); goto IL_0a18; } IL_0635: { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_345 = V_14; NullCheck(L_345); XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_346; L_346 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_345, NULL); NullCheck(L_346); Type_t* L_347; L_347 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_346, NULL); RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_348 = { reinterpret_cast (XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_349; L_349 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_348, NULL); bool L_350; L_350 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_347, L_349, NULL); if (!L_350) { goto IL_06d9; } } { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_351 = V_14; NullCheck(L_351); XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_352; L_352 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_351, NULL); V_20 = ((XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950*)CastclassClass((RuntimeObject*)L_352, XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950_il2cpp_TypeInfo_var)); XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* L_353 = V_20; NullCheck(L_353); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_354; L_354 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_353, NULL); NullCheck(L_354); bool L_355; L_355 = TypeData_get_IsListType_m40A6A12749C9A2F1729D6411A76C62768DB2D4F2(L_354, NULL); if (!L_355) { goto IL_06bc; } } { XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* L_356 = V_20; NullCheck(L_356); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_357; L_357 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_356, NULL); ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_358 = V_3; XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* L_359 = V_20; NullCheck(L_359); int32_t L_360; L_360 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_mD83A6C690F8EA40C0FAF882E1549E0BD0831CC83_inline(L_359, NULL); NullCheck(L_358); Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_361 = V_2; XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* L_362 = V_20; NullCheck(L_362); int32_t L_363; L_363 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_mD83A6C690F8EA40C0FAF882E1549E0BD0831CC83_inline(L_362, NULL); NullCheck(L_361); int32_t* L_364 = ((L_361)->GetAddressAt(static_cast(L_363))); int32_t L_365 = *((int32_t*)L_364); V_19 = L_365; int32_t L_366 = V_19; *((int32_t*)L_364) = (int32_t)((int32_t)il2cpp_codegen_add(L_366, 1)); int32_t L_367 = V_19; XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* L_368 = V_20; NullCheck(L_368); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_369; L_369 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_368, NULL); NullCheck(L_369); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_370; L_370 = TypeData_get_ListItemTypeData_m08EBC7760A430966A31E3C138C9BB359E429C6D7(L_369, NULL); RuntimeObject* L_371; L_371 = XmlSerializationReaderInterpreter_ReadXmlNode_m1EDAD554730C9248E429BADBBA381E16C94647CA(__this, L_370, (bool)0, NULL); XmlSerializationReaderInterpreter_AddListValue_m12D3A8F7A8612DBA89872F736C275807EBB57EA4(__this, L_357, ((L_358)->GetAddressAt(static_cast(L_360))), L_367, L_371, (bool)1, NULL); goto IL_0a18; } IL_06bc: { XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* L_372 = V_20; RuntimeObject* L_373 = ___1_ob; XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* L_374 = V_20; NullCheck(L_374); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_375; L_375 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_374, NULL); RuntimeObject* L_376; L_376 = XmlSerializationReaderInterpreter_ReadXmlNode_m1EDAD554730C9248E429BADBBA381E16C94647CA(__this, L_375, (bool)0, NULL); bool L_377 = ___2_isValueList; XmlSerializationReaderInterpreter_SetMemberValue_mABB21E3AEFF2EB1B198A0B915622E84D542D1D99(__this, L_372, L_373, L_376, L_377, NULL); goto IL_0a18; } IL_06d9: { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_378 = V_14; NullCheck(L_378); XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_379; L_379 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_378, NULL); NullCheck(L_379); Type_t* L_380; L_380 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_379, NULL); RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_381 = { reinterpret_cast (XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_382; L_382 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_381, NULL); bool L_383; L_383 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_380, L_382, NULL); if (!L_383) { goto IL_0815; } } { BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_384 = V_0; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_385 = V_14; NullCheck(L_385); XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_386; L_386 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_385, NULL); NullCheck(L_386); int32_t L_387; L_387 = XmlTypeMapMember_get_Index_m3EAB1243B03E5DBD10C6E7CA245E5A6C04406D12_inline(L_386, NULL); NullCheck(L_384); (L_384)->SetAt(static_cast(L_387), (bool)1); int32_t L_388 = __this->____format_26; if (L_388) { goto IL_07d4; } } { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_389 = V_14; NullCheck(L_389); XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_390; L_390 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_389, NULL); NullCheck(L_390); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_391; L_391 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_390, NULL); NullCheck(L_391); int32_t L_392; L_392 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_391, NULL); if ((((int32_t)L_392) == ((int32_t)1))) { goto IL_0749; } } { Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* L_393 = V_5; NullCheck(L_393); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_394; L_394 = Fixup_get_Ids_m9B1A1A8EC0662A14A92B000F90A276C18E7690B2_inline(L_393, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_395 = V_14; NullCheck(L_395); XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_396; L_396 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_395, NULL); NullCheck(L_396); int32_t L_397; L_397 = XmlTypeMapMember_get_Index_m3EAB1243B03E5DBD10C6E7CA245E5A6C04406D12_inline(L_396, NULL); NullCheck(L_394); RuntimeObject* L_398; L_398 = XmlSerializationReader_ReadReferencingElement_mC2F7F98DBC0683ECE865560DBB9F1CBA0798EBB6(__this, ((L_394)->GetAddressAt(static_cast(L_397))), NULL); V_21 = L_398; goto IL_077f; } IL_0749: { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_399 = V_14; NullCheck(L_399); XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_400; L_400 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_399, NULL); NullCheck(L_400); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_401; L_401 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_400, NULL); NullCheck(L_401); String_t* L_402; L_402 = TypeData_get_XmlType_m06749C1B19C57EB8649CBCD9B106C014DF511453_inline(L_401, NULL); Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* L_403 = V_5; NullCheck(L_403); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_404; L_404 = Fixup_get_Ids_m9B1A1A8EC0662A14A92B000F90A276C18E7690B2_inline(L_403, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_405 = V_14; NullCheck(L_405); XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_406; L_406 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_405, NULL); NullCheck(L_406); int32_t L_407; L_407 = XmlTypeMapMember_get_Index_m3EAB1243B03E5DBD10C6E7CA245E5A6C04406D12_inline(L_406, NULL); NullCheck(L_404); RuntimeObject* L_408; L_408 = XmlSerializationReader_ReadReferencingElement_m83079F8026EBB9E442B5F5BD09D7E5C1B53595D0(__this, L_402, _stringLiteralE249DDFD90EBFAAEE63734F28F6668A2FB5BD5AF, ((L_404)->GetAddressAt(static_cast(L_407))), NULL); V_21 = L_408; } IL_077f: { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_409 = V_14; NullCheck(L_409); bool L_410; L_410 = XmlTypeMapElementInfo_get_MultiReferenceType_m4176293D1962C6176A28D752B43F207817A93D2F(L_409, NULL); if (!L_410) { goto IL_07b7; } } { Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* L_411 = V_5; NullCheck(L_411); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_412; L_412 = Fixup_get_Ids_m9B1A1A8EC0662A14A92B000F90A276C18E7690B2_inline(L_411, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_413 = V_14; NullCheck(L_413); XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_414; L_414 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_413, NULL); NullCheck(L_414); int32_t L_415; L_415 = XmlTypeMapMember_get_Index_m3EAB1243B03E5DBD10C6E7CA245E5A6C04406D12_inline(L_414, NULL); NullCheck(L_412); int32_t L_416 = L_415; String_t* L_417 = (L_412)->GetAt(static_cast(L_416)); if (L_417) { goto IL_0a18; } } { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_418 = V_14; NullCheck(L_418); XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_419; L_419 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_418, NULL); RuntimeObject* L_420 = ___1_ob; RuntimeObject* L_421 = V_21; bool L_422 = ___2_isValueList; XmlSerializationReaderInterpreter_SetMemberValue_mABB21E3AEFF2EB1B198A0B915622E84D542D1D99(__this, L_419, L_420, L_421, L_422, NULL); goto IL_0a18; } IL_07b7: { RuntimeObject* L_423 = V_21; if (!L_423) { goto IL_0a18; } } { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_424 = V_14; NullCheck(L_424); XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_425; L_425 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_424, NULL); RuntimeObject* L_426 = ___1_ob; RuntimeObject* L_427 = V_21; bool L_428 = ___2_isValueList; XmlSerializationReaderInterpreter_SetMemberValue_mABB21E3AEFF2EB1B198A0B915622E84D542D1D99(__this, L_425, L_426, L_427, L_428, NULL); goto IL_0a18; } IL_07d4: { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_429 = V_14; NullCheck(L_429); XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_430; L_430 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_429, NULL); RuntimeObject* L_431 = ___1_ob; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_432 = V_14; RuntimeObject* L_433; L_433 = XmlSerializationReaderInterpreter_ReadObjectElement_mB76E426F3F5A3C4F36AC5563C3A546ECC8B6DF05(__this, L_432, NULL); bool L_434 = ___2_isValueList; XmlSerializationReaderInterpreter_SetMemberValue_mABB21E3AEFF2EB1B198A0B915622E84D542D1D99(__this, L_430, L_431, L_433, L_434, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_435 = V_14; NullCheck(L_435); RuntimeObject* L_436; L_436 = XmlTypeMapElementInfo_get_ChoiceValue_m7BC9464A497AFA7A1BF250BA0D88928706C6412E_inline(L_435, NULL); if (!L_436) { goto IL_0a18; } } { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_437 = V_14; NullCheck(L_437); XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_438; L_438 = XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline(L_437, NULL); RuntimeObject* L_439 = ___1_ob; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_440 = V_14; NullCheck(L_440); RuntimeObject* L_441; L_441 = XmlTypeMapElementInfo_get_ChoiceValue_m7BC9464A497AFA7A1BF250BA0D88928706C6412E_inline(L_440, NULL); NullCheck(((XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840*)CastclassClass((RuntimeObject*)L_438, XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840_il2cpp_TypeInfo_var))); XmlTypeMapMemberElement_SetChoice_m70A2968411084153BBDD57111C740A75C9D7AEB5(((XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840*)CastclassClass((RuntimeObject*)L_438, XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840_il2cpp_TypeInfo_var)), L_439, L_441, NULL); goto IL_0a18; } IL_0815: { InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_442 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_442); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_442, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6FFF89F12DC2A6CF2CA9D0A3799CAF055178ACE5)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_442, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializationReaderInterpreter_ReadMembers_m92FC821665FFF506E537CCDA5A70F4B1172E626B_RuntimeMethod_var))); } IL_0820: { ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_443 = ___0_map; NullCheck(L_443); XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* L_444; L_444 = ClassMap_get_DefaultAnyElementMember_m65CFF55B342204FE2E39B8BDF46E733DD43C6B4B_inline(L_443, NULL); if (!L_444) { goto IL_08a6; } } { ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_445 = ___0_map; NullCheck(L_445); XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* L_446; L_446 = ClassMap_get_DefaultAnyElementMember_m65CFF55B342204FE2E39B8BDF46E733DD43C6B4B_inline(L_445, NULL); V_22 = L_446; XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* L_447 = V_22; NullCheck(L_447); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_448; L_448 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_447, NULL); NullCheck(L_448); bool L_449; L_449 = TypeData_get_IsListType_m40A6A12749C9A2F1729D6411A76C62768DB2D4F2(L_448, NULL); if (!L_449) { goto IL_0889; } } { XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* L_450 = V_22; NullCheck(L_450); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_451; L_451 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_450, NULL); ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_452 = V_3; XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* L_453 = V_22; NullCheck(L_453); int32_t L_454; L_454 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_mD83A6C690F8EA40C0FAF882E1549E0BD0831CC83_inline(L_453, NULL); NullCheck(L_452); Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_455 = V_2; XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* L_456 = V_22; NullCheck(L_456); int32_t L_457; L_457 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_mD83A6C690F8EA40C0FAF882E1549E0BD0831CC83_inline(L_456, NULL); NullCheck(L_455); int32_t* L_458 = ((L_455)->GetAddressAt(static_cast(L_457))); int32_t L_459 = *((int32_t*)L_458); V_19 = L_459; int32_t L_460 = V_19; *((int32_t*)L_458) = (int32_t)((int32_t)il2cpp_codegen_add(L_460, 1)); int32_t L_461 = V_19; XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* L_462 = V_22; NullCheck(L_462); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_463; L_463 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_462, NULL); NullCheck(L_463); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_464; L_464 = TypeData_get_ListItemTypeData_m08EBC7760A430966A31E3C138C9BB359E429C6D7(L_463, NULL); RuntimeObject* L_465; L_465 = XmlSerializationReaderInterpreter_ReadXmlNode_m1EDAD554730C9248E429BADBBA381E16C94647CA(__this, L_464, (bool)0, NULL); XmlSerializationReaderInterpreter_AddListValue_m12D3A8F7A8612DBA89872F736C275807EBB57EA4(__this, L_451, ((L_452)->GetAddressAt(static_cast(L_454))), L_461, L_465, (bool)1, NULL); goto IL_0a18; } IL_0889: { XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* L_466 = V_22; RuntimeObject* L_467 = ___1_ob; XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* L_468 = V_22; NullCheck(L_468); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_469; L_469 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_468, NULL); RuntimeObject* L_470; L_470 = XmlSerializationReaderInterpreter_ReadXmlNode_m1EDAD554730C9248E429BADBBA381E16C94647CA(__this, L_469, (bool)0, NULL); bool L_471 = ___2_isValueList; XmlSerializationReaderInterpreter_SetMemberValue_mABB21E3AEFF2EB1B198A0B915622E84D542D1D99(__this, L_466, L_467, L_470, L_471, NULL); goto IL_0a18; } IL_08a6: { RuntimeObject* L_472 = ___1_ob; VirtualActionInvoker1< RuntimeObject* >::Invoke(11 /* System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::ProcessUnknownElement(System.Object) */, __this, L_472); goto IL_0a18; } IL_08b2: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_473; L_473 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_473); int32_t L_474; L_474 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_473); if ((((int32_t)L_474) == ((int32_t)3))) { goto IL_08d1; } } { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_475; L_475 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_475); int32_t L_476; L_476 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_475); if ((!(((uint32_t)L_476) == ((uint32_t)4)))) { goto IL_0a11; } } IL_08d1: { ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_477 = ___0_map; NullCheck(L_477); XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_478; L_478 = ClassMap_get_XmlTextCollector_m3FC50A0C0DEFAC7D4D70209D7D96C58AB7D1DA09_inline(L_477, NULL); if (!L_478) { goto IL_0a11; } } { ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_479 = ___0_map; NullCheck(L_479); XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_480; L_480 = ClassMap_get_XmlTextCollector_m3FC50A0C0DEFAC7D4D70209D7D96C58AB7D1DA09_inline(L_479, NULL); if (!((XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE*)IsInstClass((RuntimeObject*)L_480, XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE_il2cpp_TypeInfo_var))) { goto IL_0991; } } { ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_481 = ___0_map; NullCheck(L_481); XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_482; L_482 = ClassMap_get_XmlTextCollector_m3FC50A0C0DEFAC7D4D70209D7D96C58AB7D1DA09_inline(L_481, NULL); V_23 = ((XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE*)CastclassClass((RuntimeObject*)L_482, XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE_il2cpp_TypeInfo_var)); XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_483 = V_23; V_24 = ((XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38*)IsInstClass((RuntimeObject*)L_483, XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38_il2cpp_TypeInfo_var)); XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38* L_484 = V_24; if (!L_484) { goto IL_0919; } } { XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38* L_485 = V_24; NullCheck(L_485); ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* L_486; L_486 = XmlTypeMapMemberFlatList_get_ListMap_mAAD12C509481E6855A9C4865874566320C256EBC_inline(L_485, NULL); NullCheck(L_486); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_487; L_487 = ListMap_FindTextElement_m4A953DA460CF998CB59D87819531224C9069FC0A(L_486, NULL); NullCheck(L_487); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_488; L_488 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_487, NULL); G_B107_0 = L_488; goto IL_0925; } IL_0919: { XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_489 = V_23; NullCheck(L_489); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_490; L_490 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_489, NULL); NullCheck(L_490); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_491; L_491 = TypeData_get_ListItemTypeData_m08EBC7760A430966A31E3C138C9BB359E429C6D7(L_490, NULL); G_B107_0 = L_491; } IL_0925: { V_25 = G_B107_0; TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_492 = V_25; NullCheck(L_492); Type_t* L_493; L_493 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_492, NULL); RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_494 = { reinterpret_cast (String_t_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_495; L_495 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_494, NULL); bool L_496; L_496 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_493, L_495, NULL); if (L_496) { goto IL_094a; } } { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_497 = V_25; RuntimeObject* L_498; L_498 = XmlSerializationReaderInterpreter_ReadXmlNode_m1EDAD554730C9248E429BADBBA381E16C94647CA(__this, L_497, (bool)0, NULL); G_B110_0 = L_498; goto IL_0955; } IL_094a: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_499; L_499 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_499); String_t* L_500; L_500 = VirtualFuncInvoker0< String_t* >::Invoke(42 /* System.String System.Xml.XmlReader::ReadString() */, L_499); G_B110_0 = ((RuntimeObject*)(L_500)); } IL_0955: { V_26 = G_B110_0; XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_501 = V_23; NullCheck(L_501); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_502; L_502 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_501, NULL); ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_503 = V_3; XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_504 = V_23; NullCheck(L_504); int32_t L_505; L_505 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_mD83A6C690F8EA40C0FAF882E1549E0BD0831CC83_inline(L_504, NULL); NullCheck(L_503); Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_506 = V_2; XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_507 = V_23; NullCheck(L_507); int32_t L_508; L_508 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_mD83A6C690F8EA40C0FAF882E1549E0BD0831CC83_inline(L_507, NULL); NullCheck(L_506); int32_t* L_509 = ((L_506)->GetAddressAt(static_cast(L_508))); int32_t L_510 = *((int32_t*)L_509); V_19 = L_510; int32_t L_511 = V_19; *((int32_t*)L_509) = (int32_t)((int32_t)il2cpp_codegen_add(L_511, 1)); int32_t L_512 = V_19; RuntimeObject* L_513 = V_26; XmlSerializationReaderInterpreter_AddListValue_m12D3A8F7A8612DBA89872F736C275807EBB57EA4(__this, L_502, ((L_503)->GetAddressAt(static_cast(L_505))), L_512, L_513, (bool)1, NULL); goto IL_0a18; } IL_0991: { ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_514 = ___0_map; NullCheck(L_514); XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_515; L_515 = ClassMap_get_XmlTextCollector_m3FC50A0C0DEFAC7D4D70209D7D96C58AB7D1DA09_inline(L_514, NULL); V_27 = ((XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840*)CastclassClass((RuntimeObject*)L_515, XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840_il2cpp_TypeInfo_var)); XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* L_516 = V_27; NullCheck(L_516); XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_517; L_517 = XmlTypeMapMemberElement_get_ElementInfo_m62E3A285CDAFF7621EA03A0DA6B1966D5432D337(L_516, NULL); NullCheck(L_517); RuntimeObject* L_518; L_518 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(28 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_517, 0); V_28 = ((XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32*)CastclassClass((RuntimeObject*)L_518, XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var)); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_519 = V_28; NullCheck(L_519); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_520; L_520 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_519, NULL); NullCheck(L_520); Type_t* L_521; L_521 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_520, NULL); RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_522 = { reinterpret_cast (String_t_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_523; L_523 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_522, NULL); bool L_524; L_524 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_521, L_523, NULL); if (!L_524) { goto IL_09e6; } } { XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* L_525 = V_27; RuntimeObject* L_526 = ___1_ob; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_527; L_527 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_527); String_t* L_528; L_528 = VirtualFuncInvoker0< String_t* >::Invoke(42 /* System.String System.Xml.XmlReader::ReadString() */, L_527); bool L_529 = ___2_isValueList; XmlSerializationReaderInterpreter_SetMemberValue_mABB21E3AEFF2EB1B198A0B915622E84D542D1D99(__this, L_525, L_526, L_528, L_529, NULL); goto IL_0a18; } IL_09e6: { XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* L_530 = V_27; RuntimeObject* L_531 = ___1_ob; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_532; L_532 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_532); String_t* L_533; L_533 = VirtualFuncInvoker0< String_t* >::Invoke(42 /* System.String System.Xml.XmlReader::ReadString() */, L_532); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_534 = V_28; NullCheck(L_534); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_535; L_535 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_534, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_536 = V_28; NullCheck(L_536); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_537; L_537 = XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline(L_536, NULL); RuntimeObject* L_538; L_538 = XmlSerializationReaderInterpreter_GetValueFromXmlString_m21DC6B65AAF2E79AE5EC5C7B62A5E40B4C5498CA(__this, L_533, L_535, L_537, NULL); bool L_539 = ___2_isValueList; XmlSerializationReaderInterpreter_SetMemberValue_mABB21E3AEFF2EB1B198A0B915622E84D542D1D99(__this, L_530, L_531, L_538, L_539, NULL); goto IL_0a18; } IL_0a11: { RuntimeObject* L_540 = ___1_ob; XmlSerializationReader_UnknownNode_m2F762DBC510F96D1B12D002D405F4CEFBF2A2E18(__this, L_540, NULL); } IL_0a18: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_541; L_541 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_541); int32_t L_542; L_542 = VirtualFuncInvoker0< int32_t >::Invoke(43 /* System.Xml.XmlNodeType System.Xml.XmlReader::MoveToContent() */, L_541); } IL_0a24: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_543; L_543 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_543); int32_t L_544; L_544 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_543); if ((((int32_t)L_544) == ((int32_t)((int32_t)15)))) { goto IL_0a3e; } } { int32_t L_545 = V_6; int32_t L_546 = V_7; if ((((int32_t)L_545) < ((int32_t)((int32_t)il2cpp_codegen_subtract(L_546, 1))))) { goto IL_0223; } } IL_0a3e: { ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_547 = V_3; if (!L_547) { goto IL_0b01; } } { ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_548 = ___0_map; NullCheck(L_548); ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_549; L_549 = ClassMap_get_FlatLists_m852941CF165941C1EB03137482353B221F335DE9_inline(L_548, NULL); NullCheck(L_549); RuntimeObject* L_550; L_550 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(38 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_549); V_9 = L_550; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_0aec: {// begin finally (depth: 1) { RuntimeObject* L_551 = V_9; V_12 = ((RuntimeObject*)IsInst((RuntimeObject*)L_551, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var)); RuntimeObject* L_552 = V_12; if (!L_552) { goto IL_0b00; } } { RuntimeObject* L_553 = V_12; NullCheck(L_553); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_553); } IL_0b00: { return; } }// end finally (depth: 1) }); try {// begin try (depth: 1) { goto IL_0ade_1; } IL_0a56_1: { RuntimeObject* L_554 = V_9; NullCheck(L_554); RuntimeObject* L_555; L_555 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_554); V_29 = ((XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE*)CastclassClass((RuntimeObject*)L_555, XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE_il2cpp_TypeInfo_var)); ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_556 = V_3; XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_557 = V_29; NullCheck(L_557); int32_t L_558; L_558 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_mD83A6C690F8EA40C0FAF882E1549E0BD0831CC83_inline(L_557, NULL); NullCheck(L_556); int32_t L_559 = L_558; RuntimeObject* L_560 = (L_556)->GetAt(static_cast(L_559)); V_30 = L_560; XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_561 = V_29; NullCheck(L_561); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_562; L_562 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_561, NULL); NullCheck(L_562); Type_t* L_563; L_563 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_562, NULL); NullCheck(L_563); bool L_564; L_564 = Type_get_IsArray_mB9B8CA713B2AA9D6AFECC24E05AF78D22532B673(L_563, NULL); if (!L_564) { goto IL_0aac_1; } } { RuntimeObject* L_565 = V_30; Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_566 = V_2; XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_567 = V_29; NullCheck(L_567); int32_t L_568; L_568 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_mD83A6C690F8EA40C0FAF882E1549E0BD0831CC83_inline(L_567, NULL); NullCheck(L_566); int32_t L_569 = L_568; int32_t L_570 = (L_566)->GetAt(static_cast(L_569)); XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_571 = V_29; NullCheck(L_571); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_572; L_572 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_571, NULL); NullCheck(L_572); Type_t* L_573; L_573 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_572, NULL); NullCheck(L_573); Type_t* L_574; L_574 = VirtualFuncInvoker0< Type_t* >::Invoke(46 /* System.Type System.Type::GetElementType() */, L_573); RuntimeArray* L_575; L_575 = XmlSerializationReader_ShrinkArray_m76FE9D0683F22CDDEECBC9284FB9BB6C3A238552(__this, ((RuntimeArray*)CastclassClass((RuntimeObject*)L_565, RuntimeArray_il2cpp_TypeInfo_var)), L_570, L_574, (bool)1, NULL); V_30 = L_575; } IL_0aac_1: { XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_576 = V_29; XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_577 = V_29; NullCheck(L_577); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_578; L_578 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_577, NULL); RuntimeObject* L_579 = ___1_ob; bool L_580 = ___2_isValueList; bool L_581; L_581 = XmlSerializationReaderInterpreter_IsReadOnly_m2C12724B3F9B47E6A7F30F73BD6279385A29AD58(__this, L_576, L_578, L_579, L_580, NULL); if (L_581) { goto IL_0ade_1; } } { XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_582 = V_29; NullCheck(L_582); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_583; L_583 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_582, NULL); NullCheck(L_583); Type_t* L_584; L_584 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_583, NULL); NullCheck(L_584); bool L_585; L_585 = Type_get_IsArray_mB9B8CA713B2AA9D6AFECC24E05AF78D22532B673(L_584, NULL); if (!L_585) { goto IL_0ade_1; } } { XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_586 = V_29; RuntimeObject* L_587 = ___1_ob; RuntimeObject* L_588 = V_30; bool L_589 = ___2_isValueList; XmlSerializationReaderInterpreter_SetMemberValue_mABB21E3AEFF2EB1B198A0B915622E84D542D1D99(__this, L_586, L_587, L_588, L_589, NULL); } IL_0ade_1: { RuntimeObject* L_590 = V_9; NullCheck(L_590); bool L_591; L_591 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_590); if (L_591) { goto IL_0a56_1; } } { goto IL_0b01; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_0b01: { ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_592 = V_4; if (!L_592) { goto IL_0b8e; } } { ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_593 = ___0_map; NullCheck(L_593); ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_594; L_594 = ClassMap_get_FlatLists_m852941CF165941C1EB03137482353B221F335DE9_inline(L_593, NULL); NullCheck(L_594); RuntimeObject* L_595; L_595 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(38 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_594); V_9 = L_595; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_0b79: {// begin finally (depth: 1) { RuntimeObject* L_596 = V_9; V_12 = ((RuntimeObject*)IsInst((RuntimeObject*)L_596, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var)); RuntimeObject* L_597 = V_12; if (!L_597) { goto IL_0b8d; } } { RuntimeObject* L_598 = V_12; NullCheck(L_598); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_598); } IL_0b8d: { return; } }// end finally (depth: 1) }); try {// begin try (depth: 1) { goto IL_0b6e_1; } IL_0b17_1: { RuntimeObject* L_599 = V_9; NullCheck(L_599); RuntimeObject* L_600; L_600 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_599); V_31 = ((XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE*)CastclassClass((RuntimeObject*)L_600, XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE_il2cpp_TypeInfo_var)); ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_601 = V_4; XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_602 = V_31; NullCheck(L_602); int32_t L_603; L_603 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_mD83A6C690F8EA40C0FAF882E1549E0BD0831CC83_inline(L_602, NULL); NullCheck(L_601); int32_t L_604 = L_603; RuntimeObject* L_605 = (L_601)->GetAt(static_cast(L_604)); V_32 = L_605; RuntimeObject* L_606 = V_32; if (!L_606) { goto IL_0b6e_1; } } { RuntimeObject* L_607 = V_32; Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_608 = V_2; XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_609 = V_31; NullCheck(L_609); int32_t L_610; L_610 = XmlTypeMapMemberExpandable_get_FlatArrayIndex_mD83A6C690F8EA40C0FAF882E1549E0BD0831CC83_inline(L_609, NULL); NullCheck(L_608); int32_t L_611 = L_610; int32_t L_612 = (L_608)->GetAt(static_cast(L_611)); XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_613 = V_31; NullCheck(L_613); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_614; L_614 = XmlTypeMapMemberElement_get_ChoiceTypeData_m1C40274707406AC69F5536776D0276266332B845_inline(L_613, NULL); NullCheck(L_614); Type_t* L_615; L_615 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_614, NULL); NullCheck(L_615); Type_t* L_616; L_616 = VirtualFuncInvoker0< Type_t* >::Invoke(46 /* System.Type System.Type::GetElementType() */, L_615); RuntimeArray* L_617; L_617 = XmlSerializationReader_ShrinkArray_m76FE9D0683F22CDDEECBC9284FB9BB6C3A238552(__this, ((RuntimeArray*)CastclassClass((RuntimeObject*)L_607, RuntimeArray_il2cpp_TypeInfo_var)), L_612, L_616, (bool)1, NULL); V_32 = L_617; RuntimeObject* L_618 = ___1_ob; XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_619 = V_31; NullCheck(L_619); String_t* L_620; L_620 = XmlTypeMapMemberElement_get_ChoiceMember_m182A4AB876036DDA005F0760EF51C5FCA7F682D8_inline(L_619, NULL); RuntimeObject* L_621 = V_32; XmlTypeMapMember_SetValue_mE1E56C2E7FF4BC0699E6B6EF73CB23C436438F30(L_618, L_620, L_621, NULL); } IL_0b6e_1: { RuntimeObject* L_622 = V_9; NullCheck(L_622); bool L_623; L_623 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_622); if (L_623) { goto IL_0b17_1; } } { goto IL_0b8e; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_0b8e: { ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_624 = ___0_map; RuntimeObject* L_625 = ___1_ob; bool L_626 = ___2_isValueList; XmlSerializationReaderInterpreter_SetListMembersDefaults_m9C3CFA88D73B9F2C87B02C6787802F9EB9CEE954(__this, L_624, L_625, L_626, NULL); return; } } // System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::SetListMembersDefaults(System.Xml.Serialization.ClassMap,System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReaderInterpreter_SetListMembersDefaults_m9C3CFA88D73B9F2C87B02C6787802F9EB9CEE954 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* ___0_map, RuntimeObject* ___1_ob, bool ___2_isValueList, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* V_0 = NULL; int32_t V_1 = 0; XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* V_2 = NULL; { ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_0 = ___0_map; NullCheck(L_0); ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_1; L_1 = ClassMap_get_ListMembers_m21D695B14B2AF42EC1850374FDA24CDE2B356649_inline(L_0, NULL); if (!L_1) { goto IL_005e; } } { ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_2 = ___0_map; NullCheck(L_2); ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_3; L_3 = ClassMap_get_ListMembers_m21D695B14B2AF42EC1850374FDA24CDE2B356649_inline(L_2, NULL); V_0 = L_3; V_1 = 0; goto IL_0055; } IL_0013: { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_4 = V_0; int32_t L_5 = V_1; NullCheck(L_4); RuntimeObject* L_6; L_6 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(28 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_4, L_5); V_2 = ((XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A*)CastclassClass((RuntimeObject*)L_6, XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A_il2cpp_TypeInfo_var)); XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_7 = V_2; XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_8 = V_2; NullCheck(L_8); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_9; L_9 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_8, NULL); RuntimeObject* L_10 = ___1_ob; bool L_11 = ___2_isValueList; bool L_12; L_12 = XmlSerializationReaderInterpreter_IsReadOnly_m2C12724B3F9B47E6A7F30F73BD6279385A29AD58(__this, L_7, L_9, L_10, L_11, NULL); if (L_12) { goto IL_0051; } } { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_13 = V_2; RuntimeObject* L_14 = ___1_ob; bool L_15 = ___2_isValueList; RuntimeObject* L_16; L_16 = XmlSerializationReaderInterpreter_GetMemberValue_mFA240C18B7888ACCAC3CED8800EAF6E2670BEF41(__this, L_13, L_14, L_15, NULL); if (L_16) { goto IL_0051; } } { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_17 = V_2; RuntimeObject* L_18 = ___1_ob; XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_19 = V_2; NullCheck(L_19); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_20; L_20 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_19, NULL); RuntimeObject* L_21; L_21 = XmlSerializationReaderInterpreter_InitializeList_m9B8DC26F07D1636336A807E8AE75FA5E5BA74DA6(__this, L_20, NULL); bool L_22 = ___2_isValueList; XmlSerializationReaderInterpreter_SetMemberValue_mABB21E3AEFF2EB1B198A0B915622E84D542D1D99(__this, L_17, L_18, L_21, L_22, NULL); } IL_0051: { int32_t L_23 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_23, 1)); } IL_0055: { int32_t L_24 = V_1; ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_25 = V_0; NullCheck(L_25); int32_t L_26; L_26 = VirtualFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_25); if ((((int32_t)L_24) < ((int32_t)L_26))) { goto IL_0013; } } IL_005e: { return; } } // System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::FixupMembers(System.Xml.Serialization.ClassMap,System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReaderInterpreter_FixupMembers_mE0162576E13B7E40DD786B330C4D9D79326CFB75 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* ___0_map, RuntimeObject* ___1_obfixup, bool ___2_isValueList, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* V_0 = NULL; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_1 = NULL; RuntimeObject* V_2 = NULL; XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* V_3 = NULL; RuntimeObject* V_4 = NULL; { RuntimeObject* L_0 = ___1_obfixup; V_0 = ((Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566*)CastclassClass((RuntimeObject*)L_0, Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566_il2cpp_TypeInfo_var)); ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_1 = ___0_map; NullCheck(L_1); RuntimeObject* L_2; L_2 = ClassMap_get_ElementMembers_m28BCFDC1D5FC50F910FBCF82D9C30472482A505D_inline(L_1, NULL); Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* L_3 = V_0; NullCheck(L_3); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_4; L_4 = Fixup_get_Ids_m9B1A1A8EC0662A14A92B000F90A276C18E7690B2_inline(L_3, NULL); V_1 = L_4; NullCheck(L_2); RuntimeObject* L_5; L_5 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, L_2); V_2 = L_5; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_0058: {// begin finally (depth: 1) { RuntimeObject* L_6 = V_2; V_4 = ((RuntimeObject*)IsInst((RuntimeObject*)L_6, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var)); RuntimeObject* L_7 = V_4; if (!L_7) { goto IL_006b; } } { RuntimeObject* L_8 = V_4; NullCheck(L_8); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_8); } IL_006b: { return; } }// end finally (depth: 1) }); try {// begin try (depth: 1) { goto IL_004e_1; } IL_001c_1: { RuntimeObject* L_9 = V_2; NullCheck(L_9); RuntimeObject* L_10; L_10 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_9); V_3 = ((XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A*)CastclassClass((RuntimeObject*)L_10, XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A_il2cpp_TypeInfo_var)); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_11 = V_1; XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_12 = V_3; NullCheck(L_12); int32_t L_13; L_13 = XmlTypeMapMember_get_Index_m3EAB1243B03E5DBD10C6E7CA245E5A6C04406D12_inline(L_12, NULL); NullCheck(L_11); int32_t L_14 = L_13; String_t* L_15 = (L_11)->GetAt(static_cast(L_14)); if (!L_15) { goto IL_004e_1; } } { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_16 = V_3; Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* L_17 = V_0; NullCheck(L_17); RuntimeObject* L_18; L_18 = Fixup_get_Source_mF424839086899F18C33B9604622D390C359819AE_inline(L_17, NULL); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_19 = V_1; XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_20 = V_3; NullCheck(L_20); int32_t L_21; L_21 = XmlTypeMapMember_get_Index_m3EAB1243B03E5DBD10C6E7CA245E5A6C04406D12_inline(L_20, NULL); NullCheck(L_19); int32_t L_22 = L_21; String_t* L_23 = (L_19)->GetAt(static_cast(L_22)); RuntimeObject* L_24; L_24 = XmlSerializationReader_GetTarget_mA46C91CC3F9CD7D7C907903992390A28F388213F(__this, L_23, NULL); bool L_25 = ___2_isValueList; XmlSerializationReaderInterpreter_SetMemberValue_mABB21E3AEFF2EB1B198A0B915622E84D542D1D99(__this, L_16, L_18, L_24, L_25, NULL); } IL_004e_1: { RuntimeObject* L_26 = V_2; NullCheck(L_26); bool L_27; L_27 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_26); if (L_27) { goto IL_001c_1; } } { goto IL_006c; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_006c: { return; } } // System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::ProcessUnknownAttribute(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReaderInterpreter_ProcessUnknownAttribute_m643C849D5586733BE0EE557C6F33E44B645B3F22 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, RuntimeObject* ___0_target, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___0_target; XmlSerializationReader_UnknownNode_m2F762DBC510F96D1B12D002D405F4CEFBF2A2E18(__this, L_0, NULL); return; } } // System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::ProcessUnknownElement(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReaderInterpreter_ProcessUnknownElement_m2EBBA0C54E49BFD1F00131610B7F4375B703759B (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, RuntimeObject* ___0_target, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___0_target; XmlSerializationReader_UnknownNode_m2F762DBC510F96D1B12D002D405F4CEFBF2A2E18(__this, L_0, NULL); return; } } // System.Boolean System.Xml.Serialization.XmlSerializationReaderInterpreter::IsReadOnly(System.Xml.Serialization.XmlTypeMapMember,System.Xml.Serialization.TypeData,System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlSerializationReaderInterpreter_IsReadOnly_m2C12724B3F9B47E6A7F30F73BD6279385A29AD58 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* ___0_member, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___1_memType, RuntimeObject* ___2_ob, bool ___3_isValueList, const RuntimeMethod* method) { { bool L_0 = ___3_isValueList; if (!L_0) { goto IL_000e; } } { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_1 = ___1_memType; NullCheck(L_1); bool L_2; L_2 = TypeData_get_HasPublicConstructor_mB467688E3EC6E6B3AF0E9A179C1E173AB4FAC89D_inline(L_1, NULL); return (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0); } IL_000e: { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_3 = ___0_member; RuntimeObject* L_4 = ___2_ob; NullCheck(L_4); Type_t* L_5; L_5 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_4, NULL); NullCheck(L_3); bool L_6; L_6 = XmlTypeMapMember_IsReadOnly_mE3DBCC6D4CA65E2E2CAA00D4E21C30CAAC03F805(L_3, L_5, NULL); if (L_6) { goto IL_0026; } } { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_7 = ___1_memType; NullCheck(L_7); bool L_8; L_8 = TypeData_get_HasPublicConstructor_mB467688E3EC6E6B3AF0E9A179C1E173AB4FAC89D_inline(L_7, NULL); return (bool)((((int32_t)L_8) == ((int32_t)0))? 1 : 0); } IL_0026: { return (bool)1; } } // System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::SetMemberValue(System.Xml.Serialization.XmlTypeMapMember,System.Object,System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReaderInterpreter_SetMemberValue_mABB21E3AEFF2EB1B198A0B915622E84D542D1D99 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* ___0_member, RuntimeObject* ___1_ob, RuntimeObject* ___2_value, bool ___3_isValueList, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Type_t* V_0 = NULL; { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_0 = ___0_member; NullCheck(L_0); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_1; L_1 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_0, NULL); NullCheck(L_1); Type_t* L_2; L_2 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_1, NULL); V_0 = L_2; RuntimeObject* L_3 = ___2_value; if (!L_3) { goto IL_0026; } } { RuntimeObject* L_4 = ___2_value; NullCheck(L_4); Type_t* L_5; L_5 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_4, NULL); Type_t* L_6 = V_0; NullCheck(L_5); bool L_7; L_7 = VirtualFuncInvoker1< bool, Type_t* >::Invoke(22 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_5, L_6); if (L_7) { goto IL_0026; } } { RuntimeObject* L_8 = ___2_value; Type_t* L_9 = V_0; RuntimeObject* L_10; L_10 = XmlSerializationWriterInterpreter_ImplicitConvert_mC0A90835FFBC3F85D2DB9BA8944517142467716D(L_8, L_9, NULL); ___2_value = L_10; } IL_0026: { bool L_11 = ___3_isValueList; if (!L_11) { goto IL_003a; } } { RuntimeObject* L_12 = ___1_ob; XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_13 = ___0_member; NullCheck(L_13); int32_t L_14; L_14 = XmlTypeMapMember_get_GlobalIndex_mC43A1F277B76C624EFAF264B32293499D51853B6_inline(L_13, NULL); RuntimeObject* L_15 = ___2_value; NullCheck(((ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)Castclass((RuntimeObject*)L_12, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var))); ArrayElementTypeCheck (((ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)Castclass((RuntimeObject*)L_12, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)), L_15); (((ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)Castclass((RuntimeObject*)L_12, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)))->SetAt(static_cast(L_14), (RuntimeObject*)L_15); goto IL_0042; } IL_003a: { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_16 = ___0_member; RuntimeObject* L_17 = ___1_ob; RuntimeObject* L_18 = ___2_value; NullCheck(L_16); XmlTypeMapMember_SetValue_m22E52C02AD75799B95A242B6B73EECFC0B20B81D(L_16, L_17, L_18, NULL); } IL_0042: { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_19 = ___0_member; NullCheck(L_19); bool L_20; L_20 = XmlTypeMapMember_get_IsOptionalValueType_m21B5B22EAE095810603E2FE3CCD076B126272047(L_19, NULL); if (!L_20) { goto IL_0052; } } { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_21 = ___0_member; RuntimeObject* L_22 = ___1_ob; NullCheck(L_21); XmlTypeMapMember_SetValueSpecified_m59690B6CAF6C450B85F61653053632248FEE544C(L_21, L_22, (bool)1, NULL); } IL_0052: { return; } } // System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::SetMemberValueFromAttr(System.Xml.Serialization.XmlTypeMapMember,System.Object,System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReaderInterpreter_SetMemberValueFromAttr_m7DCD796BFED1BC399DDA708281D49BAF3EF5CAF8 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* ___0_member, RuntimeObject* ___1_ob, RuntimeObject* ___2_value, bool ___3_isValueList, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_0 = ___0_member; NullCheck(L_0); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_1; L_1 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_0, NULL); NullCheck(L_1); Type_t* L_2; L_2 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_1, NULL); NullCheck(L_2); bool L_3; L_3 = VirtualFuncInvoker0< bool >::Invoke(70 /* System.Boolean System.Type::get_IsEnum() */, L_2); if (!L_3) { goto IL_0025; } } { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_4 = ___0_member; NullCheck(L_4); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_5; L_5 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_4, NULL); NullCheck(L_5); Type_t* L_6; L_6 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_5, NULL); RuntimeObject* L_7 = ___2_value; il2cpp_codegen_runtime_class_init_inline(Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var); RuntimeObject* L_8; L_8 = Enum_ToObject_mD898E0819FA640BC4E98924613B5DBD41146D1FF(L_6, L_7, NULL); ___2_value = L_8; } IL_0025: { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_9 = ___0_member; RuntimeObject* L_10 = ___1_ob; RuntimeObject* L_11 = ___2_value; bool L_12 = ___3_isValueList; XmlSerializationReaderInterpreter_SetMemberValue_mABB21E3AEFF2EB1B198A0B915622E84D542D1D99(__this, L_9, L_10, L_11, L_12, NULL); return; } } // System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::GetMemberValue(System.Xml.Serialization.XmlTypeMapMember,System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_GetMemberValue_mFA240C18B7888ACCAC3CED8800EAF6E2670BEF41 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* ___0_member, RuntimeObject* ___1_ob, bool ___2_isValueList, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { bool L_0 = ___2_isValueList; if (!L_0) { goto IL_0011; } } { RuntimeObject* L_1 = ___1_ob; XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_2 = ___0_member; NullCheck(L_2); int32_t L_3; L_3 = XmlTypeMapMember_get_GlobalIndex_mC43A1F277B76C624EFAF264B32293499D51853B6_inline(L_2, NULL); NullCheck(((ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)Castclass((RuntimeObject*)L_1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var))); int32_t L_4 = L_3; RuntimeObject* L_5 = (((ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)Castclass((RuntimeObject*)L_1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)))->GetAt(static_cast(L_4)); return L_5; } IL_0011: { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_6 = ___0_member; RuntimeObject* L_7 = ___1_ob; NullCheck(L_6); RuntimeObject* L_8; L_8 = XmlTypeMapMember_GetValue_mB762710324E36B398ED02670400043C5462A5ECF(L_6, L_7, NULL); return L_8; } } // System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadObjectElement(System.Xml.Serialization.XmlTypeMapElementInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadObjectElement_mB76E426F3F5A3C4F36AC5563C3A546ECC8B6DF05 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* ___0_elem, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlSerializable_tE36AB1894460107283308E142C1106C4AB31A526_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; int32_t V_1 = 0; { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_0 = ___0_elem; NullCheck(L_0); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_1; L_1 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_0, NULL); NullCheck(L_1); int32_t L_2; L_2 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_1, NULL); V_1 = L_2; int32_t L_3 = V_1; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_3, 1))) { case 0: { goto IL_003c; } case 1: { goto IL_003c; } case 2: { goto IL_0044; } case 3: { goto IL_0059; } case 4: { goto IL_006d; } case 5: { goto IL_002e; } } } { goto IL_008c; } IL_002e: { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_4 = ___0_elem; NullCheck(L_4); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_5; L_5 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_4, NULL); RuntimeObject* L_6; L_6 = XmlSerializationReaderInterpreter_ReadXmlNode_m1EDAD554730C9248E429BADBBA381E16C94647CA(__this, L_5, (bool)1, NULL); return L_6; } IL_003c: { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_7 = ___0_elem; RuntimeObject* L_8; L_8 = XmlSerializationReaderInterpreter_ReadPrimitiveValue_m571D86640A7A892ABF759E35BC38F27B46C208F4(__this, L_7, NULL); return L_8; } IL_0044: { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_9 = ___0_elem; NullCheck(L_9); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_10; L_10 = XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline(L_9, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_11 = ___0_elem; NullCheck(L_11); bool L_12; L_12 = XmlTypeMapElementInfo_get_IsNullable_m5E6F72E9E7ADFA39100C6C0FFA1585BCDE4ACE75_inline(L_11, NULL); RuntimeObject* L_13; L_13 = XmlSerializationReaderInterpreter_ReadListElement_m9DA9C6F2AC8812B8783E85AF2F99A4FE6CB14B14(__this, L_10, L_12, NULL, (bool)1, NULL); return L_13; } IL_0059: { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_14 = ___0_elem; NullCheck(L_14); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_15; L_15 = XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline(L_14, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_16 = ___0_elem; NullCheck(L_16); bool L_17; L_17 = XmlTypeMapElementInfo_get_IsNullable_m5E6F72E9E7ADFA39100C6C0FFA1585BCDE4ACE75_inline(L_16, NULL); RuntimeObject* L_18; L_18 = VirtualFuncInvoker3< RuntimeObject*, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9*, bool, bool >::Invoke(7 /* System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadObject(System.Xml.Serialization.XmlTypeMapping,System.Boolean,System.Boolean) */, __this, L_15, L_17, (bool)1); return L_18; } IL_006d: { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_19 = ___0_elem; NullCheck(L_19); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_20; L_20 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_19, NULL); NullCheck(L_20); Type_t* L_21; L_21 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_20, NULL); il2cpp_codegen_runtime_class_init_inline(XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var); RuntimeObject* L_22; L_22 = XmlSerializationReaderInterpreter_CreateInstance_m52A3B7A31873EA03F569A85E7F1E874AAA07F55E(L_21, (bool)1, NULL); V_0 = L_22; RuntimeObject* L_23 = V_0; RuntimeObject* L_24; L_24 = XmlSerializationReader_ReadSerializable_m183EDA16E22E6B75BEAA74F8A514EF4FEDFFE54F(__this, ((RuntimeObject*)Castclass((RuntimeObject*)L_23, IXmlSerializable_tE36AB1894460107283308E142C1106C4AB31A526_il2cpp_TypeInfo_var)), NULL); return L_24; } IL_008c: { NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_25 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var))); NullCheck(L_25); NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_25, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA36CB49041E31496EDB0CF9BBB01CEF6120EA3F4)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_25, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializationReaderInterpreter_ReadObjectElement_mB76E426F3F5A3C4F36AC5563C3A546ECC8B6DF05_RuntimeMethod_var))); } } // System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadPrimitiveValue(System.Xml.Serialization.XmlTypeMapElementInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadPrimitiveValue_m571D86640A7A892ABF759E35BC38F27B46C208F4 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* ___0_elem, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_0_0_0_var); s_Il2CppMethodInitialized = true; } { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_0 = ___0_elem; NullCheck(L_0); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_1; L_1 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_0, NULL); NullCheck(L_1); Type_t* L_2; L_2 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_1, NULL); RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_3 = { reinterpret_cast (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_4; L_4 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_3, NULL); bool L_5; L_5 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_2, L_4, NULL); if (!L_5) { goto IL_0032; } } { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_6 = ___0_elem; NullCheck(L_6); bool L_7; L_7 = XmlTypeMapElementInfo_get_IsNullable_m5E6F72E9E7ADFA39100C6C0FFA1585BCDE4ACE75_inline(L_6, NULL); if (!L_7) { goto IL_002b; } } { XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_8; L_8 = XmlSerializationReader_ReadNullableQualifiedName_mCD286FFAEE778FD6CC3627B0F11085BAD744015D(__this, NULL); return L_8; } IL_002b: { XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_9; L_9 = XmlSerializationReader_ReadElementQualifiedName_m847D8D30671D41FE44EB696DB93C1B5281AFEFAD(__this, NULL); return L_9; } IL_0032: { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_10 = ___0_elem; NullCheck(L_10); bool L_11; L_11 = XmlTypeMapElementInfo_get_IsNullable_m5E6F72E9E7ADFA39100C6C0FFA1585BCDE4ACE75_inline(L_10, NULL); if (!L_11) { goto IL_0053; } } { String_t* L_12; L_12 = XmlSerializationReader_ReadNullableString_mF87F51B907EF4DC621A112ACDA569F46CAF7733F(__this, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_13 = ___0_elem; NullCheck(L_13); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_14; L_14 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_13, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_15 = ___0_elem; NullCheck(L_15); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_16; L_16 = XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline(L_15, NULL); RuntimeObject* L_17; L_17 = XmlSerializationReaderInterpreter_GetValueFromXmlString_m21DC6B65AAF2E79AE5EC5C7B62A5E40B4C5498CA(__this, L_12, L_14, L_16, NULL); return L_17; } IL_0053: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_18; L_18 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_18); String_t* L_19; L_19 = VirtualFuncInvoker0< String_t* >::Invoke(45 /* System.String System.Xml.XmlReader::ReadElementString() */, L_18); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_20 = ___0_elem; NullCheck(L_20); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_21; L_21 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_20, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_22 = ___0_elem; NullCheck(L_22); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_23; L_23 = XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline(L_22, NULL); RuntimeObject* L_24; L_24 = XmlSerializationReaderInterpreter_GetValueFromXmlString_m21DC6B65AAF2E79AE5EC5C7B62A5E40B4C5498CA(__this, L_19, L_21, L_23, NULL); return L_24; } } // System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::GetValueFromXmlString(System.String,System.Xml.Serialization.TypeData,System.Xml.Serialization.XmlTypeMapping) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_GetValueFromXmlString_m21DC6B65AAF2E79AE5EC5C7B62A5E40B4C5498CA (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, String_t* ___0_value, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___1_typeData, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___2_typeMap, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlCustomFormatter_t8021E588C6512752ACF5F834D7F8FF70E1D28471_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_0_0_0_var); s_Il2CppMethodInitialized = true; } { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_0 = ___1_typeData; NullCheck(L_0); int32_t L_1; L_1 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_0, NULL); if ((!(((uint32_t)L_1) == ((uint32_t)3)))) { goto IL_0012; } } { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_2 = ___2_typeMap; String_t* L_3 = ___0_value; RuntimeObject* L_4; L_4 = XmlSerializationReaderInterpreter_ReadListString_mA0DEC8B7D4D0939BF4250109EA9C9DB49F578A21(__this, L_2, L_3, NULL); return L_4; } IL_0012: { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_5 = ___1_typeData; NullCheck(L_5); int32_t L_6; L_6 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_5, NULL); if ((!(((uint32_t)L_6) == ((uint32_t)2)))) { goto IL_0024; } } { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_7 = ___2_typeMap; String_t* L_8 = ___0_value; RuntimeObject* L_9; L_9 = XmlSerializationReaderInterpreter_GetEnumValue_m435EF964CCD4D11623F78F71622983D05FA4C556(__this, L_7, L_8, NULL); return L_9; } IL_0024: { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_10 = ___1_typeData; NullCheck(L_10); Type_t* L_11; L_11 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_10, NULL); RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_12 = { reinterpret_cast (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_13; L_13 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_12, NULL); bool L_14; L_14 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_11, L_13, NULL); if (!L_14) { goto IL_0043; } } { String_t* L_15 = ___0_value; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_16; L_16 = XmlSerializationReader_ToXmlQualifiedName_m6F9287F428E3A10A1BBE1DCEF6A504EFF5CBF1F3(__this, L_15, NULL); return L_16; } IL_0043: { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_17 = ___1_typeData; String_t* L_18 = ___0_value; il2cpp_codegen_runtime_class_init_inline(XmlCustomFormatter_t8021E588C6512752ACF5F834D7F8FF70E1D28471_il2cpp_TypeInfo_var); RuntimeObject* L_19; L_19 = XmlCustomFormatter_FromXmlString_m1947DBEF2E6C21F92A675B56FAAF4C5C956AC554(L_17, L_18, NULL); return L_19; } } // System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadListElement(System.Xml.Serialization.XmlTypeMapping,System.Boolean,System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadListElement_m9DA9C6F2AC8812B8783E85AF2F99A4FE6CB14B14 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___0_typeMap, bool ___1_isNullable, RuntimeObject* ___2_list, bool ___3_canCreateInstance, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeArray_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Type_t* V_0 = NULL; ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* V_1 = NULL; int32_t V_2 = 0; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* V_3 = NULL; { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_0 = ___0_typeMap; NullCheck(L_0); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_1; L_1 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_0, NULL); NullCheck(L_1); Type_t* L_2; L_2 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_1, NULL); V_0 = L_2; XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_3 = ___0_typeMap; NullCheck(L_3); ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0* L_4; L_4 = XmlMapping_get_ObjectMap_m63D1AEAC8EDD8396357898D337E350673A1E9003_inline(L_3, NULL); V_1 = ((ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC*)CastclassClass((RuntimeObject*)L_4, ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC_il2cpp_TypeInfo_var)); Type_t* L_5 = V_0; NullCheck(L_5); bool L_6; L_6 = Type_get_IsArray_mB9B8CA713B2AA9D6AFECC24E05AF78D22532B673(L_5, NULL); if (!L_6) { goto IL_002a; } } { bool L_7; L_7 = XmlSerializationReader_ReadNull_mA31B425F49779DE377E7CAD9786EE664D032FFB6(__this, NULL); if (!L_7) { goto IL_002a; } } { return NULL; } IL_002a: { RuntimeObject* L_8 = ___2_list; if (L_8) { goto IL_0056; } } { bool L_9 = ___3_canCreateInstance; if (!L_9) { goto IL_0049; } } { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_10 = ___0_typeMap; NullCheck(L_10); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_11; L_11 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_10, NULL); NullCheck(L_11); bool L_12; L_12 = TypeData_get_HasPublicConstructor_mB467688E3EC6E6B3AF0E9A179C1E173AB4FAC89D_inline(L_11, NULL); if (!L_12) { goto IL_0049; } } { Type_t* L_13 = V_0; RuntimeObject* L_14; L_14 = XmlSerializationReaderInterpreter_CreateList_m8DEC17C3A9D8AB9C6659C503168A670217F052A3(__this, L_13, NULL); ___2_list = L_14; goto IL_0056; } IL_0049: { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_15 = ___0_typeMap; NullCheck(L_15); String_t* L_16; L_16 = XmlTypeMapping_get_TypeFullName_m8330E28FE282DDE67C41ADFBC2034E6E26A7ECAB(L_15, NULL); Exception_t* L_17; L_17 = XmlSerializationReader_CreateReadOnlyCollectionException_m7FDF903691CC369CC0F6E939D337DC0A8CB734C7(__this, L_16, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializationReaderInterpreter_ReadListElement_m9DA9C6F2AC8812B8783E85AF2F99A4FE6CB14B14_RuntimeMethod_var))); } IL_0056: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_18; L_18 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_18); bool L_19; L_19 = VirtualFuncInvoker0< bool >::Invoke(14 /* System.Boolean System.Xml.XmlReader::get_IsEmptyElement() */, L_18); if (!L_19) { goto IL_008e; } } { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_20; L_20 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_20); VirtualActionInvoker0::Invoke(35 /* System.Void System.Xml.XmlReader::Skip() */, L_20); Type_t* L_21 = V_0; NullCheck(L_21); bool L_22; L_22 = Type_get_IsArray_mB9B8CA713B2AA9D6AFECC24E05AF78D22532B673(L_21, NULL); if (!L_22) { goto IL_008c; } } { RuntimeObject* L_23 = ___2_list; Type_t* L_24 = V_0; NullCheck(L_24); Type_t* L_25; L_25 = VirtualFuncInvoker0< Type_t* >::Invoke(46 /* System.Type System.Type::GetElementType() */, L_24); RuntimeArray* L_26; L_26 = XmlSerializationReader_ShrinkArray_m76FE9D0683F22CDDEECBC9284FB9BB6C3A238552(__this, ((RuntimeArray*)CastclassClass((RuntimeObject*)L_23, RuntimeArray_il2cpp_TypeInfo_var)), 0, L_25, (bool)0, NULL); ___2_list = L_26; } IL_008c: { RuntimeObject* L_27 = ___2_list; return L_27; } IL_008e: { V_2 = 0; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_28; L_28 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_28); VirtualActionInvoker0::Invoke(44 /* System.Void System.Xml.XmlReader::ReadStartElement() */, L_28); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_29; L_29 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_29); int32_t L_30; L_30 = VirtualFuncInvoker0< int32_t >::Invoke(43 /* System.Xml.XmlNodeType System.Xml.XmlReader::MoveToContent() */, L_29); goto IL_0110; } IL_00a9: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_31; L_31 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_31); int32_t L_32; L_32 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_31); if ((!(((uint32_t)L_32) == ((uint32_t)1)))) { goto IL_00fd; } } { ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* L_33 = V_1; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_34; L_34 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_34); String_t* L_35; L_35 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_34); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_36; L_36 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_36); String_t* L_37; L_37 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_36); NullCheck(L_33); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_38; L_38 = ListMap_FindElement_mB8E8BCFD1D6C7A8C244598D1317BCC1296E47CD7(L_33, L_35, L_37, NULL); V_3 = L_38; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_39 = V_3; if (!L_39) { goto IL_00f4; } } { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_40 = ___0_typeMap; NullCheck(L_40); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_41; L_41 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_40, NULL); int32_t L_42 = V_2; int32_t L_43 = L_42; V_2 = ((int32_t)il2cpp_codegen_add(L_43, 1)); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_44 = V_3; RuntimeObject* L_45; L_45 = XmlSerializationReaderInterpreter_ReadObjectElement_mB76E426F3F5A3C4F36AC5563C3A546ECC8B6DF05(__this, L_44, NULL); XmlSerializationReaderInterpreter_AddListValue_m12D3A8F7A8612DBA89872F736C275807EBB57EA4(__this, L_41, (&___2_list), L_43, L_45, (bool)0, NULL); goto IL_0104; } IL_00f4: { XmlSerializationReader_UnknownNode_m2F762DBC510F96D1B12D002D405F4CEFBF2A2E18(__this, NULL, NULL); goto IL_0104; } IL_00fd: { XmlSerializationReader_UnknownNode_m2F762DBC510F96D1B12D002D405F4CEFBF2A2E18(__this, NULL, NULL); } IL_0104: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_46; L_46 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_46); int32_t L_47; L_47 = VirtualFuncInvoker0< int32_t >::Invoke(43 /* System.Xml.XmlNodeType System.Xml.XmlReader::MoveToContent() */, L_46); } IL_0110: { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_48; L_48 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_48); int32_t L_49; L_49 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_48); if ((!(((uint32_t)L_49) == ((uint32_t)((int32_t)15))))) { goto IL_00a9; } } { XmlSerializationReader_ReadEndElement_mA33A1CB94EF5CA65501A3F63C4EBEBC53662E35E(__this, NULL); Type_t* L_50 = V_0; NullCheck(L_50); bool L_51; L_51 = Type_get_IsArray_mB9B8CA713B2AA9D6AFECC24E05AF78D22532B673(L_50, NULL); if (!L_51) { goto IL_0143; } } { RuntimeObject* L_52 = ___2_list; int32_t L_53 = V_2; Type_t* L_54 = V_0; NullCheck(L_54); Type_t* L_55; L_55 = VirtualFuncInvoker0< Type_t* >::Invoke(46 /* System.Type System.Type::GetElementType() */, L_54); RuntimeArray* L_56; L_56 = XmlSerializationReader_ShrinkArray_m76FE9D0683F22CDDEECBC9284FB9BB6C3A238552(__this, ((RuntimeArray*)CastclassClass((RuntimeObject*)L_52, RuntimeArray_il2cpp_TypeInfo_var)), L_53, L_55, (bool)0, NULL); ___2_list = L_56; } IL_0143: { RuntimeObject* L_57 = ___2_list; return L_57; } } // System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadListString(System.Xml.Serialization.XmlTypeMapping,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadListString_mA0DEC8B7D4D0939BF4250109EA9C9DB49F578A21 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___0_typeMap, String_t* ___1_values, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Type_t* V_0 = NULL; ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* V_1 = NULL; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_2 = NULL; RuntimeArray* V_3 = NULL; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* V_4 = NULL; int32_t V_5 = 0; { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_0 = ___0_typeMap; NullCheck(L_0); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_1; L_1 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_0, NULL); NullCheck(L_1); Type_t* L_2; L_2 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_1, NULL); V_0 = L_2; XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_3 = ___0_typeMap; NullCheck(L_3); ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0* L_4; L_4 = XmlMapping_get_ObjectMap_m63D1AEAC8EDD8396357898D337E350673A1E9003_inline(L_3, NULL); V_1 = ((ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC*)CastclassClass((RuntimeObject*)L_4, ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC_il2cpp_TypeInfo_var)); String_t* L_5 = ___1_values; NullCheck(L_5); String_t* L_6; L_6 = String_Trim_mCD6D8C6D4CFD15225D12DB7D3E0544CA80FB8DA5(L_5, NULL); ___1_values = L_6; String_t* L_7 = ___1_values; String_t* L_8 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; bool L_9; L_9 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_7, L_8, NULL); if (!L_9) { goto IL_003a; } } { Type_t* L_10 = V_0; NullCheck(L_10); Type_t* L_11; L_11 = VirtualFuncInvoker0< Type_t* >::Invoke(46 /* System.Type System.Type::GetElementType() */, L_10); RuntimeArray* L_12; L_12 = Array_CreateInstance_m13B202130951A03AF5F52470A19E17D3AD2A8983(L_11, 0, NULL); return L_12; } IL_003a: { String_t* L_13 = ___1_values; NullCheck(L_13); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_14; L_14 = String_Split_m9530B73D02054692283BF35C3A27C8F2230946F4(L_13, ((int32_t)32), 0, NULL); V_2 = L_14; Type_t* L_15 = V_0; NullCheck(L_15); Type_t* L_16; L_16 = VirtualFuncInvoker0< Type_t* >::Invoke(46 /* System.Type System.Type::GetElementType() */, L_15); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_17 = V_2; NullCheck(L_17); RuntimeArray* L_18; L_18 = Array_CreateInstance_m13B202130951A03AF5F52470A19E17D3AD2A8983(L_16, ((int32_t)(((RuntimeArray*)L_17)->max_length)), NULL); V_3 = L_18; ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* L_19 = V_1; NullCheck(L_19); XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_20; L_20 = ListMap_get_ItemInfo_mF4B1E24F5658D05E8E1E6296F4A220D33E7EC579_inline(L_19, NULL); NullCheck(L_20); RuntimeObject* L_21; L_21 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(28 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_20, 0); V_4 = ((XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32*)CastclassClass((RuntimeObject*)L_21, XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var)); V_5 = 0; goto IL_0091; } IL_006b: { RuntimeArray* L_22 = V_3; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_23 = V_2; int32_t L_24 = V_5; NullCheck(L_23); int32_t L_25 = L_24; String_t* L_26 = (L_23)->GetAt(static_cast(L_25)); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_27 = V_4; NullCheck(L_27); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_28; L_28 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_27, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_29 = V_4; NullCheck(L_29); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_30; L_30 = XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline(L_29, NULL); RuntimeObject* L_31; L_31 = XmlSerializationReaderInterpreter_GetValueFromXmlString_m21DC6B65AAF2E79AE5EC5C7B62A5E40B4C5498CA(__this, L_26, L_28, L_30, NULL); int32_t L_32 = V_5; NullCheck(L_22); Array_SetValue_mE9507B366ED84E91E92BF32649D36916F96C67B8(L_22, L_31, L_32, NULL); int32_t L_33 = V_5; V_5 = ((int32_t)il2cpp_codegen_add(L_33, 1)); } IL_0091: { int32_t L_34 = V_5; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_35 = V_2; NullCheck(L_35); if ((((int32_t)L_34) < ((int32_t)((int32_t)(((RuntimeArray*)L_35)->max_length))))) { goto IL_006b; } } { RuntimeArray* L_36 = V_3; return L_36; } } // System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::AddListValue(System.Xml.Serialization.TypeData,System.Object&,System.Int32,System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReaderInterpreter_AddListValue_m12D3A8F7A8612DBA89872F736C275807EBB57EA4 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___0_listType, RuntimeObject** ___1_list, int32_t ___2_index, RuntimeObject* ___3_value, bool ___4_canCreateInstance, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeArray_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral107694947DB47644F8036602F63473486E1ED925); s_Il2CppMethodInitialized = true; } Type_t* V_0 = NULL; { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_0 = ___0_listType; NullCheck(L_0); Type_t* L_1; L_1 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_0, NULL); V_0 = L_1; Type_t* L_2 = V_0; NullCheck(L_2); bool L_3; L_3 = Type_get_IsArray_mB9B8CA713B2AA9D6AFECC24E05AF78D22532B673(L_2, NULL); if (!L_3) { goto IL_003d; } } { RuntimeObject** L_4 = ___1_list; RuntimeObject** L_5 = ___1_list; RuntimeObject* L_6 = *((RuntimeObject**)L_5); int32_t L_7 = ___2_index; Type_t* L_8 = V_0; NullCheck(L_8); Type_t* L_9; L_9 = VirtualFuncInvoker0< Type_t* >::Invoke(46 /* System.Type System.Type::GetElementType() */, L_8); RuntimeArray* L_10; L_10 = XmlSerializationReader_EnsureArrayIndex_m6FA80A012C4EDDBB7CFF9E6C32A556027CB18D80(__this, ((RuntimeArray*)CastclassClass((RuntimeObject*)L_6, RuntimeArray_il2cpp_TypeInfo_var)), L_7, L_9, NULL); *((RuntimeObject**)L_4) = (RuntimeObject*)L_10; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_4, (void*)(RuntimeObject*)L_10); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_11 = ___0_listType; NullCheck(L_11); TypeData_ConvertForAssignment_m342A0D4CC583DB70A219F8D9470EAF36DC263092(L_11, (&___3_value), NULL); RuntimeObject** L_12 = ___1_list; RuntimeObject* L_13 = *((RuntimeObject**)L_12); RuntimeObject* L_14 = ___3_value; int32_t L_15 = ___2_index; NullCheck(((RuntimeArray*)CastclassClass((RuntimeObject*)L_13, RuntimeArray_il2cpp_TypeInfo_var))); Array_SetValue_mE9507B366ED84E91E92BF32649D36916F96C67B8(((RuntimeArray*)CastclassClass((RuntimeObject*)L_13, RuntimeArray_il2cpp_TypeInfo_var)), L_14, L_15, NULL); return; } IL_003d: { RuntimeObject** L_16 = ___1_list; RuntimeObject* L_17 = *((RuntimeObject**)L_16); if (L_17) { goto IL_005d; } } { bool L_18 = ___4_canCreateInstance; if (!L_18) { goto IL_0050; } } { RuntimeObject** L_19 = ___1_list; Type_t* L_20 = V_0; il2cpp_codegen_runtime_class_init_inline(XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var); RuntimeObject* L_21; L_21 = XmlSerializationReaderInterpreter_CreateInstance_m52A3B7A31873EA03F569A85E7F1E874AAA07F55E(L_20, (bool)1, NULL); *((RuntimeObject**)L_19) = (RuntimeObject*)L_21; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_19, (void*)(RuntimeObject*)L_21); goto IL_005d; } IL_0050: { Type_t* L_22 = V_0; NullCheck(L_22); String_t* L_23; L_23 = VirtualFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_22); Exception_t* L_24; L_24 = XmlSerializationReader_CreateReadOnlyCollectionException_m7FDF903691CC369CC0F6E939D337DC0A8CB734C7(__this, L_23, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_24, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializationReaderInterpreter_AddListValue_m12D3A8F7A8612DBA89872F736C275807EBB57EA4_RuntimeMethod_var))); } IL_005d: { Type_t* L_25 = V_0; TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_26 = (TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)SZArrayNew(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var, (uint32_t)1); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_27 = L_26; TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_28 = ___0_listType; NullCheck(L_28); Type_t* L_29; L_29 = TypeData_get_ListItemType_m649E9D1FF5CF8721C54E6CCE22A66527A8A4DEC2(L_28, NULL); NullCheck(L_27); ArrayElementTypeCheck (L_27, L_29); (L_27)->SetAt(static_cast(0), (Type_t*)L_29); NullCheck(L_25); MethodInfo_t* L_30; L_30 = Type_GetMethod_m9E8E55EC8316CE8A2851B62AD4C73E841FEAC2EA(L_25, _stringLiteral107694947DB47644F8036602F63473486E1ED925, L_27, NULL); RuntimeObject** L_31 = ___1_list; RuntimeObject* L_32 = *((RuntimeObject**)L_31); ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_33 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1); ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_34 = L_33; RuntimeObject* L_35 = ___3_value; NullCheck(L_34); ArrayElementTypeCheck (L_34, L_35); (L_34)->SetAt(static_cast(0), (RuntimeObject*)L_35); NullCheck(L_30); RuntimeObject* L_36; L_36 = MethodBase_Invoke_mEEF3218648F111A8C338001A7804091A0747C826(L_30, L_32, L_34, NULL); return; } } // System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::CreateInstance(System.Type,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_CreateInstance_m52A3B7A31873EA03F569A85E7F1E874AAA07F55E (Type_t* ___0_type, bool ___1_nonPublic, const RuntimeMethod* method) { { Type_t* L_0 = ___0_type; bool L_1 = ___1_nonPublic; RuntimeObject* L_2; L_2 = Activator_CreateInstance_m2BE3252B26369EA17E06A564F25172F6D002469F(L_0, L_1, NULL); return L_2; } } // System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::CreateInstance(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_CreateInstance_m9CB41129916C0B5A2323C6EBD6031BB9CF3B693C (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, Type_t* ___0_type, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Type_t* L_0 = ___0_type; il2cpp_codegen_runtime_class_init_inline(XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var); ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = ((XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_StaticFields*)il2cpp_codegen_static_fields_for(XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var))->___empty_array_28; RuntimeObject* L_2; L_2 = Activator_CreateInstance_mDBC65647828F8A3D3E63807B5AEA4A4ECDE397E6(L_0, L_1, NULL); return L_2; } } // System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::CreateList(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_CreateList_m8DEC17C3A9D8AB9C6659C503168A670217F052A3 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, Type_t* ___0_listType, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Type_t* L_0 = ___0_listType; NullCheck(L_0); bool L_1; L_1 = Type_get_IsArray_mB9B8CA713B2AA9D6AFECC24E05AF78D22532B673(L_0, NULL); if (!L_1) { goto IL_0017; } } { Type_t* L_2 = ___0_listType; NullCheck(L_2); Type_t* L_3; L_3 = VirtualFuncInvoker0< Type_t* >::Invoke(46 /* System.Type System.Type::GetElementType() */, L_2); RuntimeArray* L_4; L_4 = XmlSerializationReader_EnsureArrayIndex_m6FA80A012C4EDDBB7CFF9E6C32A556027CB18D80(__this, (RuntimeArray*)NULL, 0, L_3, NULL); return L_4; } IL_0017: { Type_t* L_5 = ___0_listType; il2cpp_codegen_runtime_class_init_inline(XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var); RuntimeObject* L_6; L_6 = XmlSerializationReaderInterpreter_CreateInstance_m52A3B7A31873EA03F569A85E7F1E874AAA07F55E(L_5, (bool)1, NULL); return L_6; } } // System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::InitializeList(System.Xml.Serialization.TypeData) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_InitializeList_m9B8DC26F07D1636336A807E8AE75FA5E5BA74DA6 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___0_listType, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_0 = ___0_listType; NullCheck(L_0); Type_t* L_1; L_1 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_0, NULL); NullCheck(L_1); bool L_2; L_2 = Type_get_IsArray_mB9B8CA713B2AA9D6AFECC24E05AF78D22532B673(L_1, NULL); if (!L_2) { goto IL_000f; } } { return NULL; } IL_000f: { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_3 = ___0_listType; NullCheck(L_3); Type_t* L_4; L_4 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_3, NULL); il2cpp_codegen_runtime_class_init_inline(XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var); RuntimeObject* L_5; L_5 = XmlSerializationReaderInterpreter_CreateInstance_m52A3B7A31873EA03F569A85E7F1E874AAA07F55E(L_4, (bool)1, NULL); return L_5; } } // System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::FillList(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReaderInterpreter_FillList_m5396649C8AB2996C6C7D25983BDAD9479A3F29D9 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, RuntimeObject* ___0_list, RuntimeObject* ___1_items, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___1_items; RuntimeObject* L_1 = ___0_list; XmlSerializationReaderInterpreter_CopyEnumerableList_mF303386B1B9E939D03B2223788B48647E7E43BA3(__this, L_0, L_1, NULL); return; } } // System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::CopyEnumerableList(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReaderInterpreter_CopyEnumerableList_mF303386B1B9E939D03B2223788B48647E7E43BA3 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, RuntimeObject* ___0_source, RuntimeObject* ___1_dest, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral107694947DB47644F8036602F63473486E1ED925); s_Il2CppMethodInitialized = true; } ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_0 = NULL; MethodInfo_t* V_1 = NULL; RuntimeObject* V_2 = NULL; RuntimeObject* V_3 = NULL; RuntimeObject* V_4 = NULL; { RuntimeObject* L_0 = ___1_dest; if (L_0) { goto IL_0015; } } { RuntimeObject* L_1 = ___0_source; NullCheck(L_1); Type_t* L_2; L_2 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_1, NULL); NullCheck(L_2); String_t* L_3; L_3 = VirtualFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_2); Exception_t* L_4; L_4 = XmlSerializationReader_CreateReadOnlyCollectionException_m7FDF903691CC369CC0F6E939D337DC0A8CB734C7(__this, L_3, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializationReaderInterpreter_CopyEnumerableList_mF303386B1B9E939D03B2223788B48647E7E43BA3_RuntimeMethod_var))); } IL_0015: { ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1); V_0 = L_5; RuntimeObject* L_6 = ___1_dest; NullCheck(L_6); Type_t* L_7; L_7 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_6, NULL); NullCheck(L_7); MethodInfo_t* L_8; L_8 = Type_GetMethod_m66AD062187F19497DBCA900823B0C268322DC231(L_7, _stringLiteral107694947DB47644F8036602F63473486E1ED925, NULL); V_1 = L_8; RuntimeObject* L_9 = ___0_source; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_9, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var))); RuntimeObject* L_10; L_10 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_9, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var))); V_2 = L_10; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_0059: {// begin finally (depth: 1) { RuntimeObject* L_11 = V_2; V_4 = ((RuntimeObject*)IsInst((RuntimeObject*)L_11, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var)); RuntimeObject* L_12 = V_4; if (!L_12) { goto IL_006c; } } { RuntimeObject* L_13 = V_4; NullCheck(L_13); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_13); } IL_006c: { return; } }// end finally (depth: 1) }); try {// begin try (depth: 1) { goto IL_004f_1; } IL_003b_1: { RuntimeObject* L_14 = V_2; NullCheck(L_14); RuntimeObject* L_15; L_15 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_14); V_3 = L_15; ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_16 = V_0; RuntimeObject* L_17 = V_3; NullCheck(L_16); ArrayElementTypeCheck (L_16, L_17); (L_16)->SetAt(static_cast(0), (RuntimeObject*)L_17); MethodInfo_t* L_18 = V_1; RuntimeObject* L_19 = ___1_dest; ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_20 = V_0; NullCheck(L_18); RuntimeObject* L_21; L_21 = MethodBase_Invoke_mEEF3218648F111A8C338001A7804091A0747C826(L_18, L_19, L_20, NULL); } IL_004f_1: { RuntimeObject* L_22 = V_2; NullCheck(L_22); bool L_23; L_23 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_22); if (L_23) { goto IL_003b_1; } } { goto IL_006d; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_006d: { return; } } // System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadXmlNodeElement(System.Xml.Serialization.XmlTypeMapping,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadXmlNodeElement_mDDA1AC3864A682EB162DF1A8A7A3A05B80674709 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___0_typeMap, bool ___1_isNullable, const RuntimeMethod* method) { { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_0 = ___0_typeMap; NullCheck(L_0); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_1; L_1 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_0, NULL); RuntimeObject* L_2; L_2 = XmlSerializationReaderInterpreter_ReadXmlNode_m1EDAD554730C9248E429BADBBA381E16C94647CA(__this, L_1, (bool)0, NULL); return L_2; } } // System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadXmlNode(System.Xml.Serialization.TypeData,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadXmlNode_m1EDAD554730C9248E429BADBBA381E16C94647CA (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___0_type, bool ___1_wrapped, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_0_0_0_var); s_Il2CppMethodInitialized = true; } { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_0 = ___0_type; NullCheck(L_0); Type_t* L_1; L_1 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_0, NULL); RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_2 = { reinterpret_cast (XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_3; L_3 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_2, NULL); bool L_4; L_4 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_1, L_3, NULL); if (!L_4) { goto IL_001f; } } { bool L_5 = ___1_wrapped; XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B* L_6; L_6 = XmlSerializationReader_ReadXmlDocument_mFBCD46F2EADC620A3B2DF95B6EAAB8AC52B28AE5(__this, L_5, NULL); return L_6; } IL_001f: { bool L_7 = ___1_wrapped; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_8; L_8 = XmlSerializationReader_ReadXmlNode_mD224CFB90450934FC68CF9A0D720E40CE57CE945(__this, L_7, NULL); return L_8; } } // System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadPrimitiveElement(System.Xml.Serialization.XmlTypeMapping,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadPrimitiveElement_m93C17C23DF8E7F7F2501CA2452E5CEA6EF2551A6 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___0_typeMap, bool ___1_isNullable, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* V_0 = NULL; { XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_0; L_0 = XmlSerializationReader_GetXsiType_m4410C02427EB3A9BBD0FE460437AE86AADCA8D2B(__this, NULL); V_0 = L_0; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_1 = V_0; il2cpp_codegen_runtime_class_init_inline(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); bool L_2; L_2 = XmlQualifiedName_op_Equality_mAE17874DCEBAFB74CBFEC5CC1EE5399470A61D44(L_1, (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)NULL, NULL); if (!L_2) { goto IL_0022; } } { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_3 = ___0_typeMap; NullCheck(L_3); String_t* L_4; L_4 = XmlTypeMapping_get_XmlType_m5A30CB4EE3541CC1C65003757D5E743042846222_inline(L_3, NULL); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_5 = ___0_typeMap; NullCheck(L_5); String_t* L_6; L_6 = XmlMapping_get_Namespace_m196651C91FB3C3442AC616C977345E89450F024F_inline(L_5, NULL); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_7 = (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)il2cpp_codegen_object_new(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); NullCheck(L_7); XmlQualifiedName__ctor_m65632114A1726D9FAD0338BC2A8C28BB9D262C7B(L_7, L_4, L_6, NULL); V_0 = L_7; } IL_0022: { XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_8 = V_0; RuntimeObject* L_9; L_9 = XmlSerializationReader_ReadTypedPrimitive_mF25502A447F9DF1215F119C730C0874C5338B88C(__this, L_8, NULL); return L_9; } } // System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadEnumElement(System.Xml.Serialization.XmlTypeMapping,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadEnumElement_mB13411EB63D3EEEF92A41C2E3E29B243132E02B4 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___0_typeMap, bool ___1_isNullable, const RuntimeMethod* method) { { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0; L_0 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_0); VirtualActionInvoker0::Invoke(44 /* System.Void System.Xml.XmlReader::ReadStartElement() */, L_0); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_1 = ___0_typeMap; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_2; L_2 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_2); String_t* L_3; L_3 = VirtualFuncInvoker0< String_t* >::Invoke(42 /* System.String System.Xml.XmlReader::ReadString() */, L_2); RuntimeObject* L_4; L_4 = XmlSerializationReaderInterpreter_GetEnumValue_m435EF964CCD4D11623F78F71622983D05FA4C556(__this, L_1, L_3, NULL); XmlSerializationReader_ReadEndElement_mA33A1CB94EF5CA65501A3F63C4EBEBC53662E35E(__this, NULL); return L_4; } } // System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::GetEnumValue(System.Xml.Serialization.XmlTypeMapping,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_GetEnumValue_m435EF964CCD4D11623F78F71622983D05FA4C556 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___0_typeMap, String_t* ___1_val, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { String_t* L_0 = ___1_val; if (L_0) { goto IL_0005; } } { return NULL; } IL_0005: { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_1 = ___0_typeMap; NullCheck(L_1); ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0* L_2; L_2 = XmlMapping_get_ObjectMap_m63D1AEAC8EDD8396357898D337E350673A1E9003_inline(L_1, NULL); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_3 = ___0_typeMap; NullCheck(L_3); String_t* L_4; L_4 = XmlTypeMapping_get_TypeFullName_m8330E28FE282DDE67C41ADFBC2034E6E26A7ECAB(L_3, NULL); String_t* L_5 = ___1_val; NullCheck(((EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C*)CastclassClass((RuntimeObject*)L_2, EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C_il2cpp_TypeInfo_var))); String_t* L_6; L_6 = EnumMap_GetEnumName_m10DDCE7A6EB14899540AF62430B6133BBAF0CB94(((EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C*)CastclassClass((RuntimeObject*)L_2, EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C_il2cpp_TypeInfo_var)), L_4, L_5, NULL); V_0 = L_6; String_t* L_7 = V_0; if (L_7) { goto IL_0033; } } { String_t* L_8 = ___1_val; XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_9 = ___0_typeMap; NullCheck(L_9); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_10; L_10 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_9, NULL); NullCheck(L_10); Type_t* L_11; L_11 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_10, NULL); Exception_t* L_12; L_12 = XmlSerializationReader_CreateUnknownConstantException_m0C39D77BDAD36BD8A62AC7BACAA8BA9767441E4F(__this, L_8, L_11, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializationReaderInterpreter_GetEnumValue_m435EF964CCD4D11623F78F71622983D05FA4C556_RuntimeMethod_var))); } IL_0033: { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_13 = ___0_typeMap; NullCheck(L_13); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_14; L_14 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_13, NULL); NullCheck(L_14); Type_t* L_15; L_15 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_14, NULL); String_t* L_16 = V_0; il2cpp_codegen_runtime_class_init_inline(Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var); RuntimeObject* L_17; L_17 = Enum_Parse_m0316ABE916ED60AA2257A464A33A33D544EDEE12(L_15, L_16, (bool)0, NULL); return L_17; } } // System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadXmlSerializableElement(System.Xml.Serialization.XmlTypeMapping,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationReaderInterpreter_ReadXmlSerializableElement_mEE3EDB95A3BF6553D4C677380E0C98CE9A977442 (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___0_typeMap, bool ___1_isNullable, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlSerializable_tE36AB1894460107283308E142C1106C4AB31A526_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0; L_0 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_0); int32_t L_1; L_1 = VirtualFuncInvoker0< int32_t >::Invoke(43 /* System.Xml.XmlNodeType System.Xml.XmlReader::MoveToContent() */, L_0); XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_2; L_2 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_2); int32_t L_3; L_3 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Xml.XmlNodeType System.Xml.XmlReader::get_NodeType() */, L_2); if ((!(((uint32_t)L_3) == ((uint32_t)1)))) { goto IL_0078; } } { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_4 = ___0_typeMap; NullCheck(L_4); bool L_5; L_5 = XmlTypeMapping_get_IsAny_m0C45955548B231D2E892D2924768B068138CBDD8_inline(L_4, NULL); if (L_5) { goto IL_0052; } } { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_6; L_6 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_6); String_t* L_7; L_7 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlReader::get_LocalName() */, L_6); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_8 = ___0_typeMap; NullCheck(L_8); String_t* L_9; L_9 = XmlMapping_get_ElementName_m2BDBF7797A1F38972A4355CF694E0D468B2A9FC0_inline(L_8, NULL); bool L_10; L_10 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_7, L_9, NULL); if (!L_10) { goto IL_0071; } } { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_11; L_11 = XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline(__this, NULL); NullCheck(L_11); String_t* L_12; L_12 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_11); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_13 = ___0_typeMap; NullCheck(L_13); String_t* L_14; L_14 = XmlMapping_get_Namespace_m196651C91FB3C3442AC616C977345E89450F024F_inline(L_13, NULL); bool L_15; L_15 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_12, L_14, NULL); if (!L_15) { goto IL_0071; } } IL_0052: { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_16 = ___0_typeMap; NullCheck(L_16); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_17; L_17 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_16, NULL); NullCheck(L_17); Type_t* L_18; L_18 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_17, NULL); il2cpp_codegen_runtime_class_init_inline(XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var); RuntimeObject* L_19; L_19 = XmlSerializationReaderInterpreter_CreateInstance_m52A3B7A31873EA03F569A85E7F1E874AAA07F55E(L_18, (bool)1, NULL); V_0 = L_19; RuntimeObject* L_20 = V_0; RuntimeObject* L_21; L_21 = XmlSerializationReader_ReadSerializable_m183EDA16E22E6B75BEAA74F8A514EF4FEDFFE54F(__this, ((RuntimeObject*)Castclass((RuntimeObject*)L_20, IXmlSerializable_tE36AB1894460107283308E142C1106C4AB31A526_il2cpp_TypeInfo_var)), NULL); return L_21; } IL_0071: { Exception_t* L_22; L_22 = XmlSerializationReader_CreateUnknownNodeException_mF60B75FE5A6871E6D670468C430AF474F19DC721(__this, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_22, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializationReaderInterpreter_ReadXmlSerializableElement_mEE3EDB95A3BF6553D4C677380E0C98CE9A977442_RuntimeMethod_var))); } IL_0078: { XmlSerializationReader_UnknownNode_m2F762DBC510F96D1B12D002D405F4CEFBF2A2E18(__this, NULL, NULL); return NULL; } } // System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationReaderInterpreter__cctor_m9685DD91C197FE9144BD8298486C80297FD0B5BF (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA37D4B9061083962C5A0F6AA7E7F2314A643FF2E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE249DDFD90EBFAAEE63734F28F6668A2FB5BD5AF); s_Il2CppMethodInitialized = true; } { XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_0 = (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)il2cpp_codegen_object_new(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); NullCheck(L_0); XmlQualifiedName__ctor_m65632114A1726D9FAD0338BC2A8C28BB9D262C7B(L_0, _stringLiteralA37D4B9061083962C5A0F6AA7E7F2314A643FF2E, _stringLiteralE249DDFD90EBFAAEE63734F28F6668A2FB5BD5AF, NULL); ((XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_StaticFields*)il2cpp_codegen_static_fields_for(XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var))->___AnyType_27 = L_0; Il2CppCodeGenWriteBarrier((void**)(&((XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_StaticFields*)il2cpp_codegen_static_fields_for(XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var))->___AnyType_27), (void*)L_0); ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)0); ((XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_StaticFields*)il2cpp_codegen_static_fields_for(XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var))->___empty_array_28 = L_1; Il2CppCodeGenWriteBarrier((void**)(&((XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_StaticFields*)il2cpp_codegen_static_fields_for(XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var))->___empty_array_28), (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.Xml.Serialization.XmlSerializationReaderInterpreter/FixupCallbackInfo::.ctor(System.Xml.Serialization.XmlSerializationReaderInterpreter,System.Xml.Serialization.ClassMap,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FixupCallbackInfo__ctor_m21B1A474D5B56C19F301C9D9EF4B235B7B8AE639 (FixupCallbackInfo_t4F096851101229F0692C9397633C653DE18E2475* __this, XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* ___0_sri, ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* ___1_map, bool ___2_isValueList, const RuntimeMethod* method) { { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* L_0 = ___0_sri; __this->____sri_0 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->____sri_0), (void*)L_0); ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_1 = ___1_map; __this->____map_1 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->____map_1), (void*)L_1); bool L_2 = ___2_isValueList; __this->____isValueList_2 = L_2; return; } } // System.Void System.Xml.Serialization.XmlSerializationReaderInterpreter/FixupCallbackInfo::FixupMembers(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FixupCallbackInfo_FixupMembers_m80AD28B889F16F84A04A47F8895B582A50981E63 (FixupCallbackInfo_t4F096851101229F0692C9397633C653DE18E2475* __this, RuntimeObject* ___0_fixup, const RuntimeMethod* method) { { XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* L_0 = __this->____sri_0; ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_1 = __this->____map_1; RuntimeObject* L_2 = ___0_fixup; bool L_3 = __this->____isValueList_2; NullCheck(L_0); XmlSerializationReaderInterpreter_FixupMembers_mE0162576E13B7E40DD786B330C4D9D79326CFB75(L_0, L_1, L_2, L_3, 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.Xml.Serialization.XmlSerializationReaderInterpreter/ReaderCallbackInfo::.ctor(System.Xml.Serialization.XmlSerializationReaderInterpreter,System.Xml.Serialization.XmlTypeMapping) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReaderCallbackInfo__ctor_mA1DE9023122B9D262150A2AABCCB839AC4E31CBC (ReaderCallbackInfo_t414F9FC8F93718A4EAF961E66DE7A6C43B6A08FB* __this, XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* ___0_sri, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___1_typeMap, const RuntimeMethod* method) { { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* L_0 = ___0_sri; __this->____sri_0 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->____sri_0), (void*)L_0); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_1 = ___1_typeMap; __this->____typeMap_1 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->____typeMap_1), (void*)L_1); return; } } // System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter/ReaderCallbackInfo::ReadObject() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ReaderCallbackInfo_ReadObject_m9D91DB389AC65B4941DC11773FECC6EEAF180249 (ReaderCallbackInfo_t414F9FC8F93718A4EAF961E66DE7A6C43B6A08FB* __this, const RuntimeMethod* method) { { XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* L_0 = __this->____sri_0; XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_1 = __this->____typeMap_1; NullCheck(L_0); RuntimeObject* L_2; L_2 = VirtualFuncInvoker3< RuntimeObject*, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9*, bool, bool >::Invoke(7 /* System.Object System.Xml.Serialization.XmlSerializationReaderInterpreter::ReadObject(System.Xml.Serialization.XmlTypeMapping,System.Boolean,System.Boolean) */, L_0, L_1, (bool)1, (bool)1); return L_2; } } #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 XmlSerializationWriteCallback_Invoke_mC5FC4D5306E2C36BAE096E3B9BE05F4FC7488E9F_Multicast(XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA* __this, RuntimeObject* ___0_o, const RuntimeMethod* method) { il2cpp_array_size_t length = __this->___delegates_13->max_length; Delegate_t** delegatesToInvoke = reinterpret_cast(__this->___delegates_13->GetAddressAtUnchecked(0)); for (il2cpp_array_size_t i = 0; i < length; i++) { XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA* currentDelegate = reinterpret_cast(delegatesToInvoke[i]); typedef void (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, const RuntimeMethod*); ((FunctionPointerType)currentDelegate->___invoke_impl_1)((Il2CppObject*)currentDelegate->___method_code_6, ___0_o, reinterpret_cast(currentDelegate->___method_3)); } } void XmlSerializationWriteCallback_Invoke_mC5FC4D5306E2C36BAE096E3B9BE05F4FC7488E9F_OpenInst(XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA* __this, RuntimeObject* ___0_o, const RuntimeMethod* method) { NullCheck(___0_o); typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); ((FunctionPointerType)__this->___method_ptr_0)(___0_o, method); } void XmlSerializationWriteCallback_Invoke_mC5FC4D5306E2C36BAE096E3B9BE05F4FC7488E9F_OpenStatic(XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA* __this, RuntimeObject* ___0_o, const RuntimeMethod* method) { typedef void (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*); ((FunctionPointerType)__this->___method_ptr_0)(___0_o, method); } void XmlSerializationWriteCallback_Invoke_mC5FC4D5306E2C36BAE096E3B9BE05F4FC7488E9F_OpenStaticInvoker(XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA* __this, RuntimeObject* ___0_o, const RuntimeMethod* method) { InvokerActionInvoker1< RuntimeObject* >::Invoke(__this->___method_ptr_0, method, NULL, ___0_o); } void XmlSerializationWriteCallback_Invoke_mC5FC4D5306E2C36BAE096E3B9BE05F4FC7488E9F_ClosedStaticInvoker(XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA* __this, RuntimeObject* ___0_o, const RuntimeMethod* method) { InvokerActionInvoker2< RuntimeObject*, RuntimeObject* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___0_o); } void XmlSerializationWriteCallback_Invoke_mC5FC4D5306E2C36BAE096E3B9BE05F4FC7488E9F_OpenVirtual(XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA* __this, RuntimeObject* ___0_o, const RuntimeMethod* method) { NullCheck(___0_o); VirtualActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(method), ___0_o); } void XmlSerializationWriteCallback_Invoke_mC5FC4D5306E2C36BAE096E3B9BE05F4FC7488E9F_OpenInterface(XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA* __this, RuntimeObject* ___0_o, const RuntimeMethod* method) { NullCheck(___0_o); InterfaceActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(method), il2cpp_codegen_method_get_declaring_type(method), ___0_o); } void XmlSerializationWriteCallback_Invoke_mC5FC4D5306E2C36BAE096E3B9BE05F4FC7488E9F_OpenGenericVirtual(XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA* __this, RuntimeObject* ___0_o, const RuntimeMethod* method) { NullCheck(___0_o); GenericVirtualActionInvoker0::Invoke(method, ___0_o); } void XmlSerializationWriteCallback_Invoke_mC5FC4D5306E2C36BAE096E3B9BE05F4FC7488E9F_OpenGenericInterface(XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA* __this, RuntimeObject* ___0_o, const RuntimeMethod* method) { NullCheck(___0_o); GenericInterfaceActionInvoker0::Invoke(method, ___0_o); } // System.Void System.Xml.Serialization.XmlSerializationWriteCallback::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriteCallback__ctor_mC9EAA27EDBF9664212848EC6F45C065395C51AF9 (XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) { __this->___method_ptr_0 = il2cpp_codegen_get_virtual_call_method_pointer((RuntimeMethod*)___1_method); __this->___method_3 = ___1_method; __this->___m_target_2 = ___0_object; Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target_2), (void*)___0_object); int parameterCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___1_method); __this->___method_code_6 = (intptr_t)__this; if (MethodIsStatic((RuntimeMethod*)___1_method)) { bool isOpen = parameterCount == 1; if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___1_method)) if (isOpen) __this->___invoke_impl_1 = (intptr_t)&XmlSerializationWriteCallback_Invoke_mC5FC4D5306E2C36BAE096E3B9BE05F4FC7488E9F_OpenStaticInvoker; else __this->___invoke_impl_1 = (intptr_t)&XmlSerializationWriteCallback_Invoke_mC5FC4D5306E2C36BAE096E3B9BE05F4FC7488E9F_ClosedStaticInvoker; else if (isOpen) __this->___invoke_impl_1 = (intptr_t)&XmlSerializationWriteCallback_Invoke_mC5FC4D5306E2C36BAE096E3B9BE05F4FC7488E9F_OpenStatic; else { __this->___invoke_impl_1 = (intptr_t)__this->___method_ptr_0; __this->___method_code_6 = (intptr_t)__this->___m_target_2; } } else { bool isOpen = parameterCount == 0; if (isOpen) { if (__this->___method_is_virtual_12) { if (il2cpp_codegen_method_is_generic_instance_method((RuntimeMethod*)___1_method)) if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___1_method)) __this->___invoke_impl_1 = (intptr_t)&XmlSerializationWriteCallback_Invoke_mC5FC4D5306E2C36BAE096E3B9BE05F4FC7488E9F_OpenGenericInterface; else __this->___invoke_impl_1 = (intptr_t)&XmlSerializationWriteCallback_Invoke_mC5FC4D5306E2C36BAE096E3B9BE05F4FC7488E9F_OpenGenericVirtual; else if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___1_method)) __this->___invoke_impl_1 = (intptr_t)&XmlSerializationWriteCallback_Invoke_mC5FC4D5306E2C36BAE096E3B9BE05F4FC7488E9F_OpenInterface; else __this->___invoke_impl_1 = (intptr_t)&XmlSerializationWriteCallback_Invoke_mC5FC4D5306E2C36BAE096E3B9BE05F4FC7488E9F_OpenVirtual; } else { __this->___invoke_impl_1 = (intptr_t)&XmlSerializationWriteCallback_Invoke_mC5FC4D5306E2C36BAE096E3B9BE05F4FC7488E9F_OpenInst; } } else { if (___0_object == NULL) il2cpp_codegen_raise_exception(il2cpp_codegen_get_argument_exception(NULL, "Delegate to an instance method cannot have null 'this'."), NULL); __this->___invoke_impl_1 = (intptr_t)__this->___method_ptr_0; __this->___method_code_6 = (intptr_t)__this->___m_target_2; } } __this->___extra_arg_5 = (intptr_t)&XmlSerializationWriteCallback_Invoke_mC5FC4D5306E2C36BAE096E3B9BE05F4FC7488E9F_Multicast; } // System.Void System.Xml.Serialization.XmlSerializationWriteCallback::Invoke(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriteCallback_Invoke_mC5FC4D5306E2C36BAE096E3B9BE05F4FC7488E9F (XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA* __this, RuntimeObject* ___0_o, const RuntimeMethod* method) { typedef void (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, const RuntimeMethod*); ((FunctionPointerType)__this->___invoke_impl_1)((Il2CppObject*)__this->___method_code_6, ___0_o, 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.Xml.Serialization.XmlSerializationWriter::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter__ctor_m293C1A24C2354634334D6F0C0E205E2478ABFCB1 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlSerializationGeneratedCode__ctor_mBC7B26FB29C099BB456D537954F2AF3673AC28C6(__this, NULL); __this->___qnameCount_1 = 0; Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D*)il2cpp_codegen_object_new(Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var); NullCheck(L_0); Hashtable__ctor_mD7E2F1EB1BFD683186ECD6EDBE1708AF35C3A87D(L_0, NULL); __this->___serializedObjects_7 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___serializedObjects_7), (void*)L_0); return; } } // System.Void System.Xml.Serialization.XmlSerializationWriter::Initialize(System.Xml.XmlWriter,System.Xml.Serialization.XmlSerializerNamespaces) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_Initialize_m11222210CAC28774F29C1EE771F734E71D70E95C (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___0_writer, XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93* ___1_nss, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709); s_Il2CppMethodInitialized = true; } XmlQualifiedNameU5BU5D_t95C376ACDEA9261B842F45A4C4DF9ABEE0FB35D1* V_0 = NULL; int32_t V_1 = 0; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* V_2 = NULL; { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0 = ___0_writer; __this->___writer_4 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___writer_4), (void*)L_0); XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93* L_1 = ___1_nss; if (!L_1) { goto IL_005f; } } { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_2 = (ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)il2cpp_codegen_object_new(ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var); NullCheck(L_2); ArrayList__ctor_m07DC369002304B483B9FC41DBDAF4A25AC3C9F80(L_2, NULL); __this->___namespaces_3 = L_2; Il2CppCodeGenWriteBarrier((void**)(&__this->___namespaces_3), (void*)L_2); XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93* L_3 = ___1_nss; NullCheck(L_3); XmlQualifiedNameU5BU5D_t95C376ACDEA9261B842F45A4C4DF9ABEE0FB35D1* L_4; L_4 = XmlSerializerNamespaces_ToArray_m36788F0D0B36CF5704BA12E554987ACAA77E0661(L_3, NULL); V_0 = L_4; V_1 = 0; goto IL_0059; } IL_0020: { XmlQualifiedNameU5BU5D_t95C376ACDEA9261B842F45A4C4DF9ABEE0FB35D1* L_5 = V_0; int32_t L_6 = V_1; NullCheck(L_5); int32_t L_7 = L_6; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_8 = (L_5)->GetAt(static_cast(L_7)); V_2 = L_8; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_9 = V_2; NullCheck(L_9); String_t* L_10; L_10 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_9, NULL); bool L_11; L_11 = String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6(L_10, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, NULL); if (!L_11) { goto IL_0055; } } { XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_12 = V_2; NullCheck(L_12); String_t* L_13; L_13 = XmlQualifiedName_get_Namespace_m0CAE4A651EF1CA6F0EB657C83608A796038A2615_inline(L_12, NULL); bool L_14; L_14 = String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6(L_13, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, NULL); if (!L_14) { goto IL_0055; } } { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_15 = __this->___namespaces_3; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_16 = V_2; NullCheck(L_15); int32_t L_17; L_17 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_15, L_16); } IL_0055: { int32_t L_18 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_18, 1)); } IL_0059: { int32_t L_19 = V_1; XmlQualifiedNameU5BU5D_t95C376ACDEA9261B842F45A4C4DF9ABEE0FB35D1* L_20 = V_0; NullCheck(L_20); if ((((int32_t)L_19) < ((int32_t)((int32_t)(((RuntimeArray*)L_20)->max_length))))) { goto IL_0020; } } IL_005f: { return; } } // System.Xml.XmlWriter System.Xml.Serialization.XmlSerializationWriter::get_Writer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, const RuntimeMethod* method) { { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0 = __this->___writer_4; return L_0; } } // System.Void System.Xml.Serialization.XmlSerializationWriter::AddWriteCallback(System.Type,System.String,System.String,System.Xml.Serialization.XmlSerializationWriteCallback) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_AddWriteCallback_mA8F5217B979F653B829B0B36EA7C8A4202E4FA2D (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, Type_t* ___0_type, String_t* ___1_typeName, String_t* ___2_typeNs, XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA* ___3_callback, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6* V_0 = NULL; { WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6* L_0 = (WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6*)il2cpp_codegen_object_new(WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6_il2cpp_TypeInfo_var); NullCheck(L_0); WriteCallbackInfo__ctor_mCD5B02AA94A872AEB63A81C174520985F378E240(L_0, NULL); V_0 = L_0; WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6* L_1 = V_0; Type_t* L_2 = ___0_type; NullCheck(L_1); L_1->___Type_0 = L_2; Il2CppCodeGenWriteBarrier((void**)(&L_1->___Type_0), (void*)L_2); WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6* L_3 = V_0; String_t* L_4 = ___1_typeName; NullCheck(L_3); L_3->___TypeName_1 = L_4; Il2CppCodeGenWriteBarrier((void**)(&L_3->___TypeName_1), (void*)L_4); WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6* L_5 = V_0; String_t* L_6 = ___2_typeNs; NullCheck(L_5); L_5->___TypeNs_2 = L_6; Il2CppCodeGenWriteBarrier((void**)(&L_5->___TypeNs_2), (void*)L_6); WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6* L_7 = V_0; XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA* L_8 = ___3_callback; NullCheck(L_7); L_7->___Callback_3 = L_8; Il2CppCodeGenWriteBarrier((void**)(&L_7->___Callback_3), (void*)L_8); Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_9 = __this->___callbacks_6; if (L_9) { goto IL_0036; } } { Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_10 = (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D*)il2cpp_codegen_object_new(Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var); NullCheck(L_10); Hashtable__ctor_mD7E2F1EB1BFD683186ECD6EDBE1708AF35C3A87D(L_10, NULL); __this->___callbacks_6 = L_10; Il2CppCodeGenWriteBarrier((void**)(&__this->___callbacks_6), (void*)L_10); } IL_0036: { Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_11 = __this->___callbacks_6; Type_t* L_12 = ___0_type; WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6* L_13 = V_0; NullCheck(L_11); VirtualActionInvoker2< RuntimeObject*, RuntimeObject* >::Invoke(23 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_11, L_12, L_13); return; } } // System.Exception System.Xml.Serialization.XmlSerializationWriter::CreateUnknownAnyElementException(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* XmlSerializationWriter_CreateUnknownAnyElementException_m10C764FCEE6FF3DDA1C9A17D7593D8DE7454417B (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___0_name, String_t* ___1_ns, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral151F85AEE2A721730B1E7CDA9A1335DFEA63D095); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___0_name; String_t* L_1 = ___1_ns; String_t* L_2; L_2 = String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987(_stringLiteral151F85AEE2A721730B1E7CDA9A1335DFEA63D095, L_0, L_1, NULL); InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_3 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var); NullCheck(L_3); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_3, L_2, NULL); return L_3; } } // System.Exception System.Xml.Serialization.XmlSerializationWriter::CreateUnknownTypeException(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* XmlSerializationWriter_CreateUnknownTypeException_m390258930DA81870F1CB5744BEE12EE075A7BAC6 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, RuntimeObject* ___0_o, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___0_o; NullCheck(L_0); Type_t* L_1; L_1 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_0, NULL); Exception_t* L_2; L_2 = XmlSerializationWriter_CreateUnknownTypeException_m9551C746760505766F62166E975F43E6BC174F41(__this, L_1, NULL); return L_2; } } // System.Exception System.Xml.Serialization.XmlSerializationWriter::CreateUnknownTypeException(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t* XmlSerializationWriter_CreateUnknownTypeException_m9551C746760505766F62166E975F43E6BC174F41 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, Type_t* ___0_type, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2C5BD46A8428ACC39A710FFFCDEF0CD038A2E862); s_Il2CppMethodInitialized = true; } { Type_t* L_0 = ___0_type; String_t* L_1; L_1 = String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8(_stringLiteral2C5BD46A8428ACC39A710FFFCDEF0CD038A2E862, L_0, NULL); InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_2 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var); NullCheck(L_2); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_2, L_1, NULL); return L_2; } } // System.String System.Xml.Serialization.XmlSerializationWriter::FromXmlQualifiedName(System.Xml.XmlQualifiedName) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlSerializationWriter_FromXmlQualifiedName_m0025FF4410A037F0310220E2F36A1F55DD106829 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___0_xmlQualifiedName, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_0 = ___0_xmlQualifiedName; il2cpp_codegen_runtime_class_init_inline(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); bool L_1; L_1 = XmlQualifiedName_op_Equality_mAE17874DCEBAFB74CBFEC5CC1EE5399470A61D44(L_0, (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)NULL, NULL); if (L_1) { goto IL_0016; } } { XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_2 = ___0_xmlQualifiedName; il2cpp_codegen_runtime_class_init_inline(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_3 = ((XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_StaticFields*)il2cpp_codegen_static_fields_for(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var))->___Empty_4; bool L_4; L_4 = XmlQualifiedName_op_Equality_mAE17874DCEBAFB74CBFEC5CC1EE5399470A61D44(L_2, L_3, NULL); if (!L_4) { goto IL_0018; } } IL_0016: { return (String_t*)NULL; } IL_0018: { XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_5 = ___0_xmlQualifiedName; NullCheck(L_5); String_t* L_6; L_6 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_5, NULL); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_7 = ___0_xmlQualifiedName; NullCheck(L_7); String_t* L_8; L_8 = XmlQualifiedName_get_Namespace_m0CAE4A651EF1CA6F0EB657C83608A796038A2615_inline(L_7, NULL); String_t* L_9; L_9 = XmlSerializationWriter_GetQualifiedName_m6A393BACF5677C132F4FF0717F6F96522C55D518(__this, L_6, L_8, NULL); return L_9; } } // System.String System.Xml.Serialization.XmlSerializationWriter::GetId(System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlSerializationWriter_GetId_m119A741C6DE06B31C89202A1AB5B6F5F9BDB400E (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, RuntimeObject* ___0_o, bool ___1_addToReferencesList, 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*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectIDGenerator_tB34B9C0F2DDAED17FE8AB8D54462528D37DE101B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFC0CDAC241F1E33895C656656CCAFD1419A41699); s_Il2CppMethodInitialized = true; } bool V_0 = false; int64_t V_1 = 0; { ObjectIDGenerator_tB34B9C0F2DDAED17FE8AB8D54462528D37DE101B* L_0 = __this->___idGenerator_0; if (L_0) { goto IL_0013; } } { ObjectIDGenerator_tB34B9C0F2DDAED17FE8AB8D54462528D37DE101B* L_1 = (ObjectIDGenerator_tB34B9C0F2DDAED17FE8AB8D54462528D37DE101B*)il2cpp_codegen_object_new(ObjectIDGenerator_tB34B9C0F2DDAED17FE8AB8D54462528D37DE101B_il2cpp_TypeInfo_var); NullCheck(L_1); ObjectIDGenerator__ctor_m26261E5BF8675579F39157564153ECA733453B10(L_1, NULL); __this->___idGenerator_0 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___idGenerator_0), (void*)L_1); } IL_0013: { ObjectIDGenerator_tB34B9C0F2DDAED17FE8AB8D54462528D37DE101B* L_2 = __this->___idGenerator_0; RuntimeObject* L_3 = ___0_o; NullCheck(L_2); int64_t L_4; L_4 = VirtualFuncInvoker2< int64_t, RuntimeObject*, bool* >::Invoke(4 /* System.Int64 System.Runtime.Serialization.ObjectIDGenerator::GetId(System.Object,System.Boolean&) */, L_2, L_3, (&V_0)); V_1 = L_4; il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var); CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_5; L_5 = CultureInfo_get_InvariantCulture_mD1E96DC845E34B10F78CB744B0CB5D7D63CEB1E6(NULL); int64_t L_6 = V_1; int64_t L_7 = L_6; RuntimeObject* L_8 = Box(Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var, &L_7); String_t* L_9; L_9 = String_Format_m3844098E7C18576D263AAF62F69BE5C70BF9A744(L_5, _stringLiteralFC0CDAC241F1E33895C656656CCAFD1419A41699, L_8, NULL); return L_9; } } // System.Boolean System.Xml.Serialization.XmlSerializationWriter::AlreadyQueued(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlSerializationWriter_AlreadyQueued_mDEBACA2D31AC7B5D135065F0595AB02B68D2164D (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, RuntimeObject* ___0_ob, const RuntimeMethod* method) { bool V_0 = false; { ObjectIDGenerator_tB34B9C0F2DDAED17FE8AB8D54462528D37DE101B* L_0 = __this->___idGenerator_0; if (L_0) { goto IL_000a; } } { return (bool)0; } IL_000a: { ObjectIDGenerator_tB34B9C0F2DDAED17FE8AB8D54462528D37DE101B* L_1 = __this->___idGenerator_0; RuntimeObject* L_2 = ___0_ob; NullCheck(L_1); int64_t L_3; L_3 = VirtualFuncInvoker2< int64_t, RuntimeObject*, bool* >::Invoke(5 /* System.Int64 System.Runtime.Serialization.ObjectIDGenerator::HasId(System.Object,System.Boolean&) */, L_1, L_2, (&V_0)); bool L_4 = V_0; return (bool)((((int32_t)L_4) == ((int32_t)0))? 1 : 0); } } // System.String System.Xml.Serialization.XmlSerializationWriter::GetNamespacePrefix(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlSerializationWriter_GetNamespacePrefix_m5F129F48CEF46D93DCBE7B31D2CC13A73F77494B (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___0_ns, 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*)&_stringLiteral116AE9EE2F4E004AB8B7987E1296803B16C5F1C0); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; int32_t V_1 = 0; { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0; L_0 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL); String_t* L_1 = ___0_ns; NullCheck(L_0); String_t* L_2; L_2 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(30 /* System.String System.Xml.XmlWriter::LookupPrefix(System.String) */, L_0, L_1); V_0 = L_2; String_t* L_3 = V_0; if (L_3) { goto IL_0044; } } { il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var); CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_4; L_4 = CultureInfo_get_InvariantCulture_mD1E96DC845E34B10F78CB744B0CB5D7D63CEB1E6(NULL); int32_t L_5 = __this->___qnameCount_1; V_1 = ((int32_t)il2cpp_codegen_add(L_5, 1)); int32_t L_6 = V_1; __this->___qnameCount_1 = L_6; int32_t L_7 = V_1; int32_t L_8 = L_7; RuntimeObject* L_9 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_8); String_t* L_10; L_10 = String_Format_m3844098E7C18576D263AAF62F69BE5C70BF9A744(L_4, _stringLiteral116AE9EE2F4E004AB8B7987E1296803B16C5F1C0, L_9, NULL); V_0 = L_10; String_t* L_11 = V_0; String_t* L_12 = ___0_ns; XmlSerializationWriter_WriteAttribute_m25B87065E059F9AA2D8E46158DB0C3A9180CC63B(__this, _stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3, L_11, (String_t*)NULL, L_12, NULL); } IL_0044: { String_t* L_13 = V_0; return L_13; } } // System.String System.Xml.Serialization.XmlSerializationWriter::GetQualifiedName(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlSerializationWriter_GetQualifiedName_m6A393BACF5677C132F4FF0717F6F96522C55D518 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___0_name, String_t* ___1_ns, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAD6CD2C36915DEB6A18BCF0F46B294FC1D97072F); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { String_t* L_0 = ___1_ns; String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; bool L_2; L_2 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_0, L_1, NULL); if (!L_2) { goto IL_000f; } } { String_t* L_3 = ___0_name; return L_3; } IL_000f: { String_t* L_4 = ___1_ns; String_t* L_5; L_5 = XmlSerializationWriter_GetNamespacePrefix_m5F129F48CEF46D93DCBE7B31D2CC13A73F77494B(__this, L_4, NULL); V_0 = L_5; String_t* L_6 = V_0; String_t* L_7 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; bool L_8; L_8 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_6, L_7, NULL); if (!L_8) { goto IL_0026; } } { String_t* L_9 = ___0_name; return L_9; } IL_0026: { String_t* L_10 = V_0; String_t* L_11 = ___0_name; String_t* L_12; L_12 = String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987(_stringLiteralAD6CD2C36915DEB6A18BCF0F46B294FC1D97072F, L_10, L_11, NULL); return L_12; } } // System.Void System.Xml.Serialization.XmlSerializationWriter::TopLevelElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_TopLevelElement_mFEE610422C07AE555FDA27A05CEB1E9616026FEC (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, const RuntimeMethod* method) { { __this->___topLevelElement_2 = (bool)1; return; } } // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteAttribute(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteAttribute_mAA8601A17489000A033533611237057B779C91B1 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___0_localName, String_t* ___1_ns, String_t* ___2_value, const RuntimeMethod* method) { { String_t* L_0 = ___0_localName; String_t* L_1 = ___1_ns; String_t* L_2 = ___2_value; XmlSerializationWriter_WriteAttribute_m25B87065E059F9AA2D8E46158DB0C3A9180CC63B(__this, (String_t*)NULL, L_0, L_1, L_2, NULL); return; } } // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteAttribute(System.String,System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteAttribute_m25B87065E059F9AA2D8E46158DB0C3A9180CC63B (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___0_prefix, String_t* ___1_localName, String_t* ___2_ns, String_t* ___3_value, const RuntimeMethod* method) { { String_t* L_0 = ___3_value; if (L_0) { goto IL_0005; } } { return; } IL_0005: { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_1; L_1 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL); String_t* L_2 = ___0_prefix; String_t* L_3 = ___1_localName; String_t* L_4 = ___2_ns; String_t* L_5 = ___3_value; NullCheck(L_1); XmlWriter_WriteAttributeString_m9BECE5A394F9A9601AB66932AF0D7EF25E16AE0B(L_1, L_2, L_3, L_4, L_5, NULL); return; } } // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteXmlNode(System.Xml.XmlNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteXmlNode_m1B2279E9188950D212D082FE4A68AFE96A58D6CD (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_node, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___0_node; if (!((XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B*)IsInstClass((RuntimeObject*)L_0, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var))) { goto IL_0015; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_1 = ___0_node; NullCheck(((XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B*)CastclassClass((RuntimeObject*)L_1, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var))); XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1* L_2; L_2 = XmlDocument_get_DocumentElement_mE87523DCD2D59F8BA6175DBA01D70133E202A2C8(((XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B*)CastclassClass((RuntimeObject*)L_1, XmlDocument_t4DE82998E642C5C21A4A620A5278237C70D3E42B_il2cpp_TypeInfo_var)), NULL); ___0_node = L_2; } IL_0015: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3 = ___0_node; XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_4; L_4 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL); NullCheck(L_3); VirtualActionInvoker1< XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* >::Invoke(45 /* System.Void System.Xml.XmlNode::WriteTo(System.Xml.XmlWriter) */, L_3, L_4); return; } } // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteElementEncoded(System.Xml.XmlNode,System.String,System.String,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteElementEncoded_m669E23E74C69FAB9FEF6FAA511A0F6901E1FFEFA (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_node, String_t* ___1_name, String_t* ___2_ns, bool ___3_isNullable, bool ___4_any, 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 = ___1_name; String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; bool L_2; L_2 = String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6(L_0, L_1, NULL); if (!L_2) { goto IL_0049; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3 = ___0_node; if (L_3) { goto IL_001d; } } { bool L_4 = ___3_isNullable; if (!L_4) { goto IL_0050; } } { String_t* L_5 = ___1_name; String_t* L_6 = ___2_ns; XmlSerializationWriter_WriteNullTagEncoded_mE5653B11D1EE4E31F2F81B4AEE5CE85354576127(__this, L_5, L_6, NULL); return; } IL_001d: { bool L_7 = ___4_any; if (!L_7) { goto IL_0029; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_8 = ___0_node; XmlSerializationWriter_WriteXmlNode_m1B2279E9188950D212D082FE4A68AFE96A58D6CD(__this, L_8, NULL); return; } IL_0029: { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_9; L_9 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL); String_t* L_10 = ___1_name; String_t* L_11 = ___2_ns; NullCheck(L_9); XmlWriter_WriteStartElement_mAC8867077A8F222C966E6720B70F8808A655E3A0(L_9, L_10, L_11, NULL); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_12 = ___0_node; XmlSerializationWriter_WriteXmlNode_m1B2279E9188950D212D082FE4A68AFE96A58D6CD(__this, L_12, NULL); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_13; L_13 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL); NullCheck(L_13); VirtualActionInvoker0::Invoke(10 /* System.Void System.Xml.XmlWriter::WriteEndElement() */, L_13); return; } IL_0049: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_14 = ___0_node; XmlSerializationWriter_WriteXmlNode_m1B2279E9188950D212D082FE4A68AFE96A58D6CD(__this, L_14, NULL); } IL_0050: { return; } } // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteElementLiteral(System.Xml.XmlNode,System.String,System.String,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteElementLiteral_m0E74FD75FE42BEB8D43B79333598C8DDC6EC4238 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_node, String_t* ___1_name, String_t* ___2_ns, bool ___3_isNullable, bool ___4_any, 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 = ___1_name; String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; bool L_2; L_2 = String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6(L_0, L_1, NULL); if (!L_2) { goto IL_0049; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_3 = ___0_node; if (L_3) { goto IL_001d; } } { bool L_4 = ___3_isNullable; if (!L_4) { goto IL_0050; } } { String_t* L_5 = ___1_name; String_t* L_6 = ___2_ns; XmlSerializationWriter_WriteNullTagLiteral_m721825C6D540C0D0BECDE4BD2948B1A270ACD31E(__this, L_5, L_6, NULL); return; } IL_001d: { bool L_7 = ___4_any; if (!L_7) { goto IL_0029; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_8 = ___0_node; XmlSerializationWriter_WriteXmlNode_m1B2279E9188950D212D082FE4A68AFE96A58D6CD(__this, L_8, NULL); return; } IL_0029: { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_9; L_9 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL); String_t* L_10 = ___1_name; String_t* L_11 = ___2_ns; NullCheck(L_9); XmlWriter_WriteStartElement_mAC8867077A8F222C966E6720B70F8808A655E3A0(L_9, L_10, L_11, NULL); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_12 = ___0_node; XmlSerializationWriter_WriteXmlNode_m1B2279E9188950D212D082FE4A68AFE96A58D6CD(__this, L_12, NULL); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_13; L_13 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL); NullCheck(L_13); VirtualActionInvoker0::Invoke(10 /* System.Void System.Xml.XmlWriter::WriteEndElement() */, L_13); return; } IL_0049: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_14 = ___0_node; XmlSerializationWriter_WriteXmlNode_m1B2279E9188950D212D082FE4A68AFE96A58D6CD(__this, L_14, NULL); } IL_0050: { return; } } // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteElementQualifiedName(System.String,System.String,System.Xml.XmlQualifiedName) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteElementQualifiedName_mE0FE6CEB5D98A0B535C238812B64EB68C1F0933B (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___0_localName, String_t* ___1_ns, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___2_value, const RuntimeMethod* method) { { String_t* L_0 = ___0_localName; String_t* L_1 = ___1_ns; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_2 = ___2_value; XmlSerializationWriter_WriteElementQualifiedName_m4C1FA2E99623FA45F267849A74C9A561CB7402E8(__this, L_0, L_1, L_2, (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)NULL, NULL); return; } } // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteElementQualifiedName(System.String,System.String,System.Xml.XmlQualifiedName,System.Xml.XmlQualifiedName) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteElementQualifiedName_m4C1FA2E99623FA45F267849A74C9A561CB7402E8 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___0_localName, String_t* ___1_ns, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___2_value, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___3_xsiType, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlCustomFormatter_t8021E588C6512752ACF5F834D7F8FF70E1D28471_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___0_localName; il2cpp_codegen_runtime_class_init_inline(XmlCustomFormatter_t8021E588C6512752ACF5F834D7F8FF70E1D28471_il2cpp_TypeInfo_var); String_t* L_1; L_1 = XmlCustomFormatter_FromXmlNCName_mF375A18D8AF49FAFB3818038987A25161852F615(L_0, NULL); ___0_localName = L_1; String_t* L_2 = ___0_localName; String_t* L_3 = ___1_ns; XmlSerializationWriter_WriteStartElement_m14B47621699116DB0A0056C1437D1B0A1310E3BA(__this, L_2, L_3, NULL); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_4 = ___3_xsiType; il2cpp_codegen_runtime_class_init_inline(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); bool L_5; L_5 = XmlQualifiedName_op_Inequality_m8A82F5213618F15B887A45C7B1461EB5C14C86A0(L_4, (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)NULL, NULL); if (!L_5) { goto IL_002e; } } { XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_6 = ___3_xsiType; NullCheck(L_6); String_t* L_7; L_7 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_6, NULL); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_8 = ___3_xsiType; NullCheck(L_8); String_t* L_9; L_9 = XmlQualifiedName_get_Namespace_m0CAE4A651EF1CA6F0EB657C83608A796038A2615_inline(L_8, NULL); XmlSerializationWriter_WriteXsiType_m24C3B36D396116877E22848B9B12EF6D6BE4D122(__this, L_7, L_9, NULL); } IL_002e: { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_10; L_10 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_11 = ___2_value; String_t* L_12; L_12 = XmlSerializationWriter_FromXmlQualifiedName_m0025FF4410A037F0310220E2F36A1F55DD106829(__this, L_11, NULL); NullCheck(L_10); VirtualActionInvoker1< String_t* >::Invoke(20 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, L_10, L_12); XmlSerializationWriter_WriteEndElement_mDCC1D34A7B81C6B8EB8E6C924E5752EC39F9FA1F(__this, NULL); return; } } // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteElementString(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteElementString_m5B5F5B5F48FE69C157A86AEA91587F9A07EE3893 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___0_localName, String_t* ___1_ns, String_t* ___2_value, const RuntimeMethod* method) { { String_t* L_0 = ___0_localName; String_t* L_1 = ___1_ns; String_t* L_2 = ___2_value; XmlSerializationWriter_WriteElementString_m7F4678303C1631FCBE4B37FC404C838AF903F718(__this, L_0, L_1, L_2, (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)NULL, NULL); return; } } // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteElementString(System.String,System.String,System.String,System.Xml.XmlQualifiedName) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteElementString_m7F4678303C1631FCBE4B37FC404C838AF903F718 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___0_localName, String_t* ___1_ns, String_t* ___2_value, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___3_xsiType, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlCustomFormatter_t8021E588C6512752ACF5F834D7F8FF70E1D28471_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___2_value; if (L_0) { goto IL_0004; } } { return; } IL_0004: { XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_1 = ___3_xsiType; il2cpp_codegen_runtime_class_init_inline(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); bool L_2; L_2 = XmlQualifiedName_op_Inequality_m8A82F5213618F15B887A45C7B1461EB5C14C86A0(L_1, (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)NULL, NULL); if (!L_2) { goto IL_0045; } } { String_t* L_3 = ___0_localName; il2cpp_codegen_runtime_class_init_inline(XmlCustomFormatter_t8021E588C6512752ACF5F834D7F8FF70E1D28471_il2cpp_TypeInfo_var); String_t* L_4; L_4 = XmlCustomFormatter_FromXmlNCName_mF375A18D8AF49FAFB3818038987A25161852F615(L_3, NULL); ___0_localName = L_4; String_t* L_5 = ___0_localName; String_t* L_6 = ___1_ns; XmlSerializationWriter_WriteStartElement_m14B47621699116DB0A0056C1437D1B0A1310E3BA(__this, L_5, L_6, NULL); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_7 = ___3_xsiType; NullCheck(L_7); String_t* L_8; L_8 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_7, NULL); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_9 = ___3_xsiType; NullCheck(L_9); String_t* L_10; L_10 = XmlQualifiedName_get_Namespace_m0CAE4A651EF1CA6F0EB657C83608A796038A2615_inline(L_9, NULL); XmlSerializationWriter_WriteXsiType_m24C3B36D396116877E22848B9B12EF6D6BE4D122(__this, L_8, L_10, NULL); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_11; L_11 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL); String_t* L_12 = ___2_value; NullCheck(L_11); VirtualActionInvoker1< String_t* >::Invoke(20 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, L_11, L_12); XmlSerializationWriter_WriteEndElement_mDCC1D34A7B81C6B8EB8E6C924E5752EC39F9FA1F(__this, NULL); return; } IL_0045: { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_13; L_13 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL); String_t* L_14 = ___0_localName; String_t* L_15 = ___1_ns; String_t* L_16 = ___2_value; NullCheck(L_13); XmlWriter_WriteElementString_m35A6492D83CA4686148F3D39271BC94E29811C42(L_13, L_14, L_15, L_16, NULL); return; } } // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteEndElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteEndElement_mDCC1D34A7B81C6B8EB8E6C924E5752EC39F9FA1F (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, const RuntimeMethod* method) { { XmlSerializationWriter_WriteEndElement_m3ECF0B5AFAA9CD63B5B78470B1A48FE92CC6F5B8(__this, NULL, NULL); return; } } // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteEndElement(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteEndElement_m3ECF0B5AFAA9CD63B5B78470B1A48FE92CC6F5B8 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, RuntimeObject* ___0_o, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___0_o; if (!L_0) { goto IL_000f; } } { Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_1 = __this->___serializedObjects_7; RuntimeObject* L_2 = ___0_o; NullCheck(L_1); VirtualActionInvoker1< RuntimeObject* >::Invoke(39 /* System.Void System.Collections.Hashtable::Remove(System.Object) */, L_1, L_2); } IL_000f: { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_3; L_3 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL); NullCheck(L_3); VirtualActionInvoker0::Invoke(10 /* System.Void System.Xml.XmlWriter::WriteEndElement() */, L_3); return; } } // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteNamespaceDeclarations(System.Xml.Serialization.XmlSerializerNamespaces) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteNamespaceDeclarations_mF1DFEC2486E203E3324C20EB3A81210B18463CA9 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93* ___0_xmlns, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB V_1; memset((&V_1), 0, sizeof(V_1)); RuntimeObject* V_2 = NULL; { XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93* L_0 = ___0_xmlns; if (L_0) { goto IL_0004; } } { return; } IL_0004: { XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93* L_1 = ___0_xmlns; NullCheck(L_1); Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_2; L_2 = XmlSerializerNamespaces_get_Namespaces_mD6B8A3D282B91E40D13217289F2904CE4ACECD2D(L_1, NULL); NullCheck(L_2); RuntimeObject* L_3; L_3 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(31 /* System.Collections.IDictionaryEnumerator System.Collections.Hashtable::GetEnumerator() */, L_2); V_0 = L_3; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_0092: {// begin finally (depth: 1) { RuntimeObject* L_4 = V_0; V_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_4, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var)); RuntimeObject* L_5 = V_2; if (!L_5) { goto IL_00a2; } } { RuntimeObject* L_6 = V_2; NullCheck(L_6); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_6); } IL_00a2: { return; } }// end finally (depth: 1) }); try {// begin try (depth: 1) { goto IL_0088_1; } IL_0012_1: { RuntimeObject* L_7 = V_0; NullCheck(L_7); RuntimeObject* L_8; L_8 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_7); V_1 = ((*(DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB*)((DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB*)(DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB*)UnBox(L_8, DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_il2cpp_TypeInfo_var)))); RuntimeObject* L_9; L_9 = DictionaryEntry_get_Value_m75FD18FE968AE131F28AA2CB0DF4895EBA39075E_inline((&V_1), NULL); String_t* L_10 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; bool L_11; L_11 = String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6(((String_t*)CastclassSealed((RuntimeObject*)L_9, String_t_il2cpp_TypeInfo_var)), L_10, NULL); if (!L_11) { goto IL_0088_1; } } { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_12; L_12 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL); RuntimeObject* L_13; L_13 = DictionaryEntry_get_Value_m75FD18FE968AE131F28AA2CB0DF4895EBA39075E_inline((&V_1), NULL); NullCheck(L_12); String_t* L_14; L_14 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(30 /* System.String System.Xml.XmlWriter::LookupPrefix(System.String) */, L_12, ((String_t*)CastclassSealed((RuntimeObject*)L_13, String_t_il2cpp_TypeInfo_var))); RuntimeObject* L_15; L_15 = DictionaryEntry_get_Key_m09845C00732E530E6FCB9042079E90D3912215FE_inline((&V_1), NULL); bool L_16; L_16 = String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6(L_14, ((String_t*)CastclassSealed((RuntimeObject*)L_15, String_t_il2cpp_TypeInfo_var)), NULL); if (!L_16) { goto IL_0088_1; } } { RuntimeObject* L_17; L_17 = DictionaryEntry_get_Key_m09845C00732E530E6FCB9042079E90D3912215FE_inline((&V_1), NULL); RuntimeObject* L_18; L_18 = DictionaryEntry_get_Value_m75FD18FE968AE131F28AA2CB0DF4895EBA39075E_inline((&V_1), NULL); XmlSerializationWriter_WriteAttribute_m25B87065E059F9AA2D8E46158DB0C3A9180CC63B(__this, _stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3, ((String_t*)CastclassSealed((RuntimeObject*)L_17, String_t_il2cpp_TypeInfo_var)), _stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE, ((String_t*)CastclassSealed((RuntimeObject*)L_18, String_t_il2cpp_TypeInfo_var)), NULL); } IL_0088_1: { RuntimeObject* L_19 = V_0; NullCheck(L_19); bool L_20; L_20 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_19); if (L_20) { goto IL_0012_1; } } { goto IL_00a3; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_00a3: { return; } } // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteNullableQualifiedNameEncoded(System.String,System.String,System.Xml.XmlQualifiedName,System.Xml.XmlQualifiedName) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteNullableQualifiedNameEncoded_mE37935A882D73CCE63E8C070C2291CCB3FA720B6 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___0_name, String_t* ___1_ns, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___2_value, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___3_xsiType, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_0 = ___2_value; il2cpp_codegen_runtime_class_init_inline(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); bool L_1; L_1 = XmlQualifiedName_op_Inequality_m8A82F5213618F15B887A45C7B1461EB5C14C86A0(L_0, (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)NULL, NULL); if (!L_1) { goto IL_0015; } } { String_t* L_2 = ___0_name; String_t* L_3 = ___1_ns; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_4 = ___2_value; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_5 = ___3_xsiType; XmlSerializationWriter_WriteElementQualifiedName_m4C1FA2E99623FA45F267849A74C9A561CB7402E8(__this, L_2, L_3, L_4, L_5, NULL); return; } IL_0015: { String_t* L_6 = ___0_name; String_t* L_7 = ___1_ns; XmlSerializationWriter_WriteNullTagEncoded_mE5653B11D1EE4E31F2F81B4AEE5CE85354576127(__this, L_6, L_7, NULL); return; } } // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteNullableQualifiedNameLiteral(System.String,System.String,System.Xml.XmlQualifiedName) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteNullableQualifiedNameLiteral_mA36BA50DE0EECCF7D1D2C8683F84D7DB94D34CBC (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___0_name, String_t* ___1_ns, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___2_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_0 = ___2_value; il2cpp_codegen_runtime_class_init_inline(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); bool L_1; L_1 = XmlQualifiedName_op_Inequality_m8A82F5213618F15B887A45C7B1461EB5C14C86A0(L_0, (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)NULL, NULL); if (!L_1) { goto IL_0013; } } { String_t* L_2 = ___0_name; String_t* L_3 = ___1_ns; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_4 = ___2_value; XmlSerializationWriter_WriteElementQualifiedName_mE0FE6CEB5D98A0B535C238812B64EB68C1F0933B(__this, L_2, L_3, L_4, NULL); return; } IL_0013: { String_t* L_5 = ___0_name; String_t* L_6 = ___1_ns; XmlSerializationWriter_WriteNullTagLiteral_m721825C6D540C0D0BECDE4BD2948B1A270ACD31E(__this, L_5, L_6, NULL); return; } } // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteNullableStringEncoded(System.String,System.String,System.String,System.Xml.XmlQualifiedName) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteNullableStringEncoded_m1129872B6401E60E8949119B9FA368F543FCC9B4 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___0_name, String_t* ___1_ns, String_t* ___2_value, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___3_xsiType, const RuntimeMethod* method) { { String_t* L_0 = ___2_value; if (!L_0) { goto IL_000f; } } { String_t* L_1 = ___0_name; String_t* L_2 = ___1_ns; String_t* L_3 = ___2_value; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_4 = ___3_xsiType; XmlSerializationWriter_WriteElementString_m7F4678303C1631FCBE4B37FC404C838AF903F718(__this, L_1, L_2, L_3, L_4, NULL); return; } IL_000f: { String_t* L_5 = ___0_name; String_t* L_6 = ___1_ns; XmlSerializationWriter_WriteNullTagEncoded_mE5653B11D1EE4E31F2F81B4AEE5CE85354576127(__this, L_5, L_6, NULL); return; } } // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteNullableStringLiteral(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteNullableStringLiteral_m9E9A4BC99C000CCC14DFA45E91A01EEBACADE862 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___0_name, String_t* ___1_ns, String_t* ___2_value, const RuntimeMethod* method) { { String_t* L_0 = ___2_value; if (!L_0) { goto IL_000e; } } { String_t* L_1 = ___0_name; String_t* L_2 = ___1_ns; String_t* L_3 = ___2_value; XmlSerializationWriter_WriteElementString_m7F4678303C1631FCBE4B37FC404C838AF903F718(__this, L_1, L_2, L_3, (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)NULL, NULL); return; } IL_000e: { String_t* L_4 = ___0_name; String_t* L_5 = ___1_ns; XmlSerializationWriter_WriteNullTagLiteral_m721825C6D540C0D0BECDE4BD2948B1A270ACD31E(__this, L_4, L_5, NULL); return; } } // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteNullTagEncoded(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteNullTagEncoded_mE5653B11D1EE4E31F2F81B4AEE5CE85354576127 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___0_name, String_t* ___1_ns, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2CAB73EF57D40E8B63A7CA91D057C0B68DB59100); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7C014955313A7D33D5D04696B884B25325E6393C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB7C45DD316C68ABF3429C20058C2981C652192F2); s_Il2CppMethodInitialized = true; } { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0; L_0 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL); String_t* L_1 = ___0_name; String_t* L_2 = ___1_ns; NullCheck(L_0); XmlWriter_WriteStartElement_mAC8867077A8F222C966E6720B70F8808A655E3A0(L_0, L_1, L_2, NULL); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_3; L_3 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL); NullCheck(L_3); XmlWriter_WriteAttributeString_m1F3481B4EB9D711B7CAF93FB2B7D077A43D1AABB(L_3, _stringLiteral2CAB73EF57D40E8B63A7CA91D057C0B68DB59100, _stringLiteral7C014955313A7D33D5D04696B884B25325E6393C, _stringLiteralB7C45DD316C68ABF3429C20058C2981C652192F2, NULL); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_4; L_4 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL); NullCheck(L_4); VirtualActionInvoker0::Invoke(10 /* System.Void System.Xml.XmlWriter::WriteEndElement() */, L_4); return; } } // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteNullTagLiteral(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteNullTagLiteral_m721825C6D540C0D0BECDE4BD2948B1A270ACD31E (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___0_name, String_t* ___1_ns, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2CAB73EF57D40E8B63A7CA91D057C0B68DB59100); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7C014955313A7D33D5D04696B884B25325E6393C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB7C45DD316C68ABF3429C20058C2981C652192F2); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___0_name; String_t* L_1 = ___1_ns; XmlSerializationWriter_WriteStartElement_m14B47621699116DB0A0056C1437D1B0A1310E3BA(__this, L_0, L_1, NULL); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_2; L_2 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL); NullCheck(L_2); XmlWriter_WriteAttributeString_m1F3481B4EB9D711B7CAF93FB2B7D077A43D1AABB(L_2, _stringLiteral2CAB73EF57D40E8B63A7CA91D057C0B68DB59100, _stringLiteral7C014955313A7D33D5D04696B884B25325E6393C, _stringLiteralB7C45DD316C68ABF3429C20058C2981C652192F2, NULL); XmlSerializationWriter_WriteEndElement_mDCC1D34A7B81C6B8EB8E6C924E5752EC39F9FA1F(__this, NULL); return; } } // System.Void System.Xml.Serialization.XmlSerializationWriter::WritePotentiallyReferencingElement(System.String,System.String,System.Object,System.Type,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WritePotentiallyReferencingElement_mC08268FB0CD13EF92C5F0D92492F9310AB218CFB (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___0_n, String_t* ___1_ns, RuntimeObject* ___2_o, Type_t* ___3_ambientType, bool ___4_suppressReference, bool ___5_isNullable, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlCustomFormatter_t8021E588C6512752ACF5F834D7F8FF70E1D28471_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0AEA83737E2216962B6144625FC860B3F361A5ED); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0B0FEB3147CE20EB2C90076367F895C59BCD14B3); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral996E5360F80E16B2189CC1E536C91CE68083F694); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE249DDFD90EBFAAEE63734F28F6668A2FB5BD5AF); s_Il2CppMethodInitialized = true; } Type_t* V_0 = NULL; WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6* V_1 = NULL; TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* V_2 = NULL; { RuntimeObject* L_0 = ___2_o; if (L_0) { goto IL_0010; } } { bool L_1 = ___5_isNullable; if (!L_1) { goto IL_000f; } } { String_t* L_2 = ___0_n; String_t* L_3 = ___1_ns; XmlSerializationWriter_WriteNullTagEncoded_mE5653B11D1EE4E31F2F81B4AEE5CE85354576127(__this, L_2, L_3, NULL); } IL_000f: { return; } IL_0010: { RuntimeObject* L_4 = ___2_o; NullCheck(L_4); Type_t* L_5; L_5 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_4, NULL); V_0 = L_5; String_t* L_6 = ___0_n; String_t* L_7 = ___1_ns; XmlSerializationWriter_WriteStartElement_m10BA6216843AE75F6DB9631DDA883F1B831BEAF6(__this, L_6, L_7, (bool)1, NULL); XmlSerializationWriter_CheckReferenceQueue_m798F9CFD9FD0DBC8CC4E2B7BF4F6D1053A11E169(__this, NULL); Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_8 = __this->___callbacks_6; if (!L_8) { goto IL_00f7; } } { Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_9 = __this->___callbacks_6; RuntimeObject* L_10 = ___2_o; NullCheck(L_10); Type_t* L_11; L_11 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_10, NULL); NullCheck(L_9); bool L_12; L_12 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(27 /* System.Boolean System.Collections.Hashtable::ContainsKey(System.Object) */, L_9, L_11); if (!L_12) { goto IL_00f7; } } { Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_13 = __this->___callbacks_6; Type_t* L_14 = V_0; NullCheck(L_13); RuntimeObject* L_15; L_15 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_13, L_14); V_1 = ((WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6*)CastclassClass((RuntimeObject*)L_15, WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6_il2cpp_TypeInfo_var)); Type_t* L_16 = V_0; NullCheck(L_16); bool L_17; L_17 = VirtualFuncInvoker0< bool >::Invoke(70 /* System.Boolean System.Type::get_IsEnum() */, L_16); if (!L_17) { goto IL_0072; } } { WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6* L_18 = V_1; NullCheck(L_18); XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA* L_19 = L_18->___Callback_3; RuntimeObject* L_20 = ___2_o; NullCheck(L_19); XmlSerializationWriteCallback_Invoke_mC5FC4D5306E2C36BAE096E3B9BE05F4FC7488E9F_inline(L_19, L_20, NULL); goto IL_0190; } IL_0072: { bool L_21 = ___4_suppressReference; if (!L_21) { goto IL_00bb; } } { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_22; L_22 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL); RuntimeObject* L_23 = ___2_o; String_t* L_24; L_24 = XmlSerializationWriter_GetId_m119A741C6DE06B31C89202A1AB5B6F5F9BDB400E(__this, L_23, (bool)0, NULL); NullCheck(L_22); XmlWriter_WriteAttributeString_m828C9640305961C835B4B9B3D5C62E76649A08A7(L_22, _stringLiteral996E5360F80E16B2189CC1E536C91CE68083F694, L_24, NULL); Type_t* L_25 = ___3_ambientType; Type_t* L_26 = V_0; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); bool L_27; L_27 = Type_op_Inequality_m83209C7BB3C05DFBEA3B6199B0BEFE8037301172(L_25, L_26, NULL); if (!L_27) { goto IL_00aa; } } { WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6* L_28 = V_1; NullCheck(L_28); String_t* L_29 = L_28->___TypeName_1; WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6* L_30 = V_1; NullCheck(L_30); String_t* L_31 = L_30->___TypeNs_2; XmlSerializationWriter_WriteXsiType_m24C3B36D396116877E22848B9B12EF6D6BE4D122(__this, L_29, L_31, NULL); } IL_00aa: { WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6* L_32 = V_1; NullCheck(L_32); XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA* L_33 = L_32->___Callback_3; RuntimeObject* L_34 = ___2_o; NullCheck(L_33); XmlSerializationWriteCallback_Invoke_mC5FC4D5306E2C36BAE096E3B9BE05F4FC7488E9F_inline(L_33, L_34, NULL); goto IL_0190; } IL_00bb: { RuntimeObject* L_35 = ___2_o; bool L_36; L_36 = XmlSerializationWriter_AlreadyQueued_mDEBACA2D31AC7B5D135065F0595AB02B68D2164D(__this, L_35, NULL); if (L_36) { goto IL_00d0; } } { Queue_t82FD2BE12D138AF4D22C801CB5044DAEC2BA66BC* L_37 = __this->___referencedElements_5; RuntimeObject* L_38 = ___2_o; NullCheck(L_37); VirtualActionInvoker1< RuntimeObject* >::Invoke(15 /* System.Void System.Collections.Queue::Enqueue(System.Object) */, L_37, L_38); } IL_00d0: { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_39; L_39 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL); RuntimeObject* L_40 = ___2_o; String_t* L_41; L_41 = XmlSerializationWriter_GetId_m119A741C6DE06B31C89202A1AB5B6F5F9BDB400E(__this, L_40, (bool)1, NULL); String_t* L_42; L_42 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(_stringLiteral0B0FEB3147CE20EB2C90076367F895C59BCD14B3, L_41, NULL); NullCheck(L_39); XmlWriter_WriteAttributeString_m828C9640305961C835B4B9B3D5C62E76649A08A7(L_39, _stringLiteral0AEA83737E2216962B6144625FC860B3F361A5ED, L_42, NULL); goto IL_0190; } IL_00f7: { Type_t* L_43 = V_0; il2cpp_codegen_runtime_class_init_inline(TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_44; L_44 = TypeTranslator_GetTypeData_m0A06DC3C76F985DDB7219841C90F408DD8959DB9(L_43, (String_t*)NULL, (bool)1, NULL); V_2 = L_44; TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_45 = V_2; NullCheck(L_45); int32_t L_46; L_46 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_45, NULL); if ((!(((uint32_t)L_46) == ((uint32_t)1)))) { goto IL_0138; } } { Type_t* L_47 = V_0; Type_t* L_48 = ___3_ambientType; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); bool L_49; L_49 = Type_op_Inequality_m83209C7BB3C05DFBEA3B6199B0BEFE8037301172(L_47, L_48, NULL); if (!L_49) { goto IL_0124; } } { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_50 = V_2; NullCheck(L_50); String_t* L_51; L_51 = TypeData_get_XmlType_m06749C1B19C57EB8649CBCD9B106C014DF511453_inline(L_50, NULL); XmlSerializationWriter_WriteXsiType_m24C3B36D396116877E22848B9B12EF6D6BE4D122(__this, L_51, _stringLiteralE249DDFD90EBFAAEE63734F28F6668A2FB5BD5AF, NULL); } IL_0124: { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_52; L_52 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_53 = V_2; RuntimeObject* L_54 = ___2_o; il2cpp_codegen_runtime_class_init_inline(XmlCustomFormatter_t8021E588C6512752ACF5F834D7F8FF70E1D28471_il2cpp_TypeInfo_var); String_t* L_55; L_55 = XmlCustomFormatter_ToXmlString_m9C2EFDCCDABEAC5DEC075942605E8C3BCA836E45(L_53, L_54, NULL); NullCheck(L_52); VirtualActionInvoker1< String_t* >::Invoke(20 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, L_52, L_55); goto IL_0190; } IL_0138: { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_56 = V_2; bool L_57; L_57 = XmlSerializationWriter_IsPrimitiveArray_m56B5D6BE559D47B2DA0F2D698C619CDE3A8E0BE9(__this, L_56, NULL); if (!L_57) { goto IL_017a; } } { RuntimeObject* L_58 = ___2_o; bool L_59; L_59 = XmlSerializationWriter_AlreadyQueued_mDEBACA2D31AC7B5D135065F0595AB02B68D2164D(__this, L_58, NULL); if (L_59) { goto IL_0156; } } { Queue_t82FD2BE12D138AF4D22C801CB5044DAEC2BA66BC* L_60 = __this->___referencedElements_5; RuntimeObject* L_61 = ___2_o; NullCheck(L_60); VirtualActionInvoker1< RuntimeObject* >::Invoke(15 /* System.Void System.Collections.Queue::Enqueue(System.Object) */, L_60, L_61); } IL_0156: { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_62; L_62 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL); RuntimeObject* L_63 = ___2_o; String_t* L_64; L_64 = XmlSerializationWriter_GetId_m119A741C6DE06B31C89202A1AB5B6F5F9BDB400E(__this, L_63, (bool)1, NULL); String_t* L_65; L_65 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(_stringLiteral0B0FEB3147CE20EB2C90076367F895C59BCD14B3, L_64, NULL); NullCheck(L_62); XmlWriter_WriteAttributeString_m828C9640305961C835B4B9B3D5C62E76649A08A7(L_62, _stringLiteral0AEA83737E2216962B6144625FC860B3F361A5ED, L_65, NULL); goto IL_0190; } IL_017a: { Type_t* L_66 = V_0; NullCheck(L_66); String_t* L_67; L_67 = VirtualFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_66); String_t* L_68; L_68 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral39FA1E980BA741E69B2DC04AF2C961A72DA4E553)), L_67, NULL); InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_69 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_69); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_69, L_68, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_69, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializationWriter_WritePotentiallyReferencingElement_mC08268FB0CD13EF92C5F0D92492F9310AB218CFB_RuntimeMethod_var))); } IL_0190: { XmlSerializationWriter_WriteEndElement_mDCC1D34A7B81C6B8EB8E6C924E5752EC39F9FA1F(__this, NULL); return; } } // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteReferencedElements() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteReferencedElements_m470B7112650901740DB4667F483740083D52081C (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral996E5360F80E16B2189CC1E536C91CE68083F694); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* V_1 = NULL; WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6* V_2 = NULL; { Queue_t82FD2BE12D138AF4D22C801CB5044DAEC2BA66BC* L_0 = __this->___referencedElements_5; if (L_0) { goto IL_0009; } } { return; } IL_0009: { Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_1 = __this->___callbacks_6; if (L_1) { goto IL_00b2; } } { return; } IL_0015: { Queue_t82FD2BE12D138AF4D22C801CB5044DAEC2BA66BC* L_2 = __this->___referencedElements_5; NullCheck(L_2); RuntimeObject* L_3; L_3 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(17 /* System.Object System.Collections.Queue::Dequeue() */, L_2); V_0 = L_3; RuntimeObject* L_4 = V_0; NullCheck(L_4); Type_t* L_5; L_5 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_4, NULL); il2cpp_codegen_runtime_class_init_inline(TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_6; L_6 = TypeTranslator_GetTypeData_mF04C45D9093601749D33BB31BD3D6F4C4ADAC501(L_5, NULL); V_1 = L_6; Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_7 = __this->___callbacks_6; RuntimeObject* L_8 = V_0; NullCheck(L_8); Type_t* L_9; L_9 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_8, NULL); NullCheck(L_7); RuntimeObject* L_10; L_10 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_7, L_9); V_2 = ((WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6*)CastclassClass((RuntimeObject*)L_10, WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6_il2cpp_TypeInfo_var)); WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6* L_11 = V_2; if (!L_11) { goto IL_00a1; } } { WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6* L_12 = V_2; NullCheck(L_12); String_t* L_13 = L_12->___TypeName_1; WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6* L_14 = V_2; NullCheck(L_14); String_t* L_15 = L_14->___TypeNs_2; XmlSerializationWriter_WriteStartElement_m10BA6216843AE75F6DB9631DDA883F1B831BEAF6(__this, L_13, L_15, (bool)1, NULL); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_16; L_16 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL); RuntimeObject* L_17 = V_0; String_t* L_18; L_18 = XmlSerializationWriter_GetId_m119A741C6DE06B31C89202A1AB5B6F5F9BDB400E(__this, L_17, (bool)0, NULL); NullCheck(L_16); XmlWriter_WriteAttributeString_m828C9640305961C835B4B9B3D5C62E76649A08A7(L_16, _stringLiteral996E5360F80E16B2189CC1E536C91CE68083F694, L_18, NULL); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_19 = V_1; NullCheck(L_19); int32_t L_20; L_20 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_19, NULL); if ((((int32_t)L_20) == ((int32_t)3))) { goto IL_008d; } } { WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6* L_21 = V_2; NullCheck(L_21); String_t* L_22 = L_21->___TypeName_1; WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6* L_23 = V_2; NullCheck(L_23); String_t* L_24 = L_23->___TypeNs_2; XmlSerializationWriter_WriteXsiType_m24C3B36D396116877E22848B9B12EF6D6BE4D122(__this, L_22, L_24, NULL); } IL_008d: { WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6* L_25 = V_2; NullCheck(L_25); XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA* L_26 = L_25->___Callback_3; RuntimeObject* L_27 = V_0; NullCheck(L_26); XmlSerializationWriteCallback_Invoke_mC5FC4D5306E2C36BAE096E3B9BE05F4FC7488E9F_inline(L_26, L_27, NULL); XmlSerializationWriter_WriteEndElement_mDCC1D34A7B81C6B8EB8E6C924E5752EC39F9FA1F(__this, NULL); goto IL_00b2; } IL_00a1: { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_28 = V_1; bool L_29; L_29 = XmlSerializationWriter_IsPrimitiveArray_m56B5D6BE559D47B2DA0F2D698C619CDE3A8E0BE9(__this, L_28, NULL); if (!L_29) { goto IL_00b2; } } { RuntimeObject* L_30 = V_0; TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_31 = V_1; XmlSerializationWriter_WriteArray_mA3E69AB440FBF8F03DC25C3F8FD06071B1D07E37(__this, L_30, L_31, NULL); } IL_00b2: { Queue_t82FD2BE12D138AF4D22C801CB5044DAEC2BA66BC* L_32 = __this->___referencedElements_5; NullCheck(L_32); int32_t L_33; L_33 = VirtualFuncInvoker0< int32_t >::Invoke(10 /* System.Int32 System.Collections.Queue::get_Count() */, L_32); if ((((int32_t)L_33) > ((int32_t)0))) { goto IL_0015; } } { return; } } // System.Boolean System.Xml.Serialization.XmlSerializationWriter::IsPrimitiveArray(System.Xml.Serialization.TypeData) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlSerializationWriter_IsPrimitiveArray_m56B5D6BE559D47B2DA0F2D698C619CDE3A8E0BE9 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___0_td, 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); s_Il2CppMethodInitialized = true; } { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_0 = ___0_td; NullCheck(L_0); int32_t L_1; L_1 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_0, NULL); if ((!(((uint32_t)L_1) == ((uint32_t)3)))) { goto IL_003d; } } { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_2 = ___0_td; NullCheck(L_2); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_3; L_3 = TypeData_get_ListItemTypeData_m08EBC7760A430966A31E3C138C9BB359E429C6D7(L_2, NULL); NullCheck(L_3); int32_t L_4; L_4 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_3, NULL); if ((((int32_t)L_4) == ((int32_t)1))) { goto IL_002e; } } { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_5 = ___0_td; NullCheck(L_5); Type_t* L_6; L_6 = TypeData_get_ListItemType_m649E9D1FF5CF8721C54E6CCE22A66527A8A4DEC2(L_5, NULL); RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_7 = { reinterpret_cast (RuntimeObject_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_8; L_8 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_7, NULL); bool L_9; L_9 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_6, L_8, NULL); if (!L_9) { goto IL_0030; } } IL_002e: { return (bool)1; } IL_0030: { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_10 = ___0_td; NullCheck(L_10); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_11; L_11 = TypeData_get_ListItemTypeData_m08EBC7760A430966A31E3C138C9BB359E429C6D7(L_10, NULL); bool L_12; L_12 = XmlSerializationWriter_IsPrimitiveArray_m56B5D6BE559D47B2DA0F2D698C619CDE3A8E0BE9(__this, L_11, NULL); return L_12; } IL_003d: { return (bool)0; } } // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteArray(System.Object,System.Xml.Serialization.TypeData) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteArray_mA3E69AB440FBF8F03DC25C3F8FD06071B1D07E37 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, RuntimeObject* ___0_o, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___1_td, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeArray_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5B4F028A4070094FCA4E7762E2C376A65E2D59C6); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral996E5360F80E16B2189CC1E536C91CE68083F694); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9A24CC7BE5FB2E4DFFA4A80AD8B0335DAE91B662); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB6F02FE6CD732AB22BD11BE4254D9546F3BEEE58); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC3CA1105B0687AB04E8DB2CE95902C75EC2B661A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD29B87DC6B1B722C619FAD071A9157749710CDA6); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD9691C4FD8A1F6B09DB1147CA32B442772FB46A1); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE166C9564FBDE461738077E3B1B506525EB6ACCC); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE249DDFD90EBFAAEE63734F28F6668A2FB5BD5AF); s_Il2CppMethodInitialized = true; } TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* V_0 = NULL; String_t* V_1 = NULL; int32_t V_2 = 0; RuntimeArray* V_3 = NULL; int32_t V_4 = 0; int32_t V_5 = 0; { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_0 = ___1_td; V_0 = L_0; V_2 = (-1); } IL_0004: { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_1 = V_0; NullCheck(L_1); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_2; L_2 = TypeData_get_ListItemTypeData_m08EBC7760A430966A31E3C138C9BB359E429C6D7(L_1, NULL); V_0 = L_2; TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_3 = V_0; NullCheck(L_3); String_t* L_4; L_4 = TypeData_get_XmlType_m06749C1B19C57EB8649CBCD9B106C014DF511453_inline(L_3, NULL); V_1 = L_4; int32_t L_5 = V_2; V_2 = ((int32_t)il2cpp_codegen_add(L_5, 1)); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_6 = V_0; NullCheck(L_6); int32_t L_7; L_7 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_6, NULL); if ((((int32_t)L_7) == ((int32_t)3))) { goto IL_0004; } } { goto IL_002d; } IL_0021: { String_t* L_8 = V_1; String_t* L_9; L_9 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_8, _stringLiteral5B4F028A4070094FCA4E7762E2C376A65E2D59C6, NULL); V_1 = L_9; } IL_002d: { int32_t L_10 = V_2; int32_t L_11 = L_10; V_2 = ((int32_t)il2cpp_codegen_subtract(L_11, 1)); if ((((int32_t)L_11) > ((int32_t)0))) { goto IL_0021; } } { XmlSerializationWriter_WriteStartElement_m10BA6216843AE75F6DB9631DDA883F1B831BEAF6(__this, _stringLiteralC3CA1105B0687AB04E8DB2CE95902C75EC2B661A, _stringLiteralD29B87DC6B1B722C619FAD071A9157749710CDA6, (bool)1, NULL); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_12; L_12 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL); RuntimeObject* L_13 = ___0_o; String_t* L_14; L_14 = XmlSerializationWriter_GetId_m119A741C6DE06B31C89202A1AB5B6F5F9BDB400E(__this, L_13, (bool)0, NULL); NullCheck(L_12); XmlWriter_WriteAttributeString_m828C9640305961C835B4B9B3D5C62E76649A08A7(L_12, _stringLiteral996E5360F80E16B2189CC1E536C91CE68083F694, L_14, NULL); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_15 = ___1_td; NullCheck(L_15); int32_t L_16; L_16 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_15, NULL); if ((!(((uint32_t)L_16) == ((uint32_t)3)))) { goto IL_00de; } } { RuntimeObject* L_17 = ___0_o; V_3 = ((RuntimeArray*)CastclassClass((RuntimeObject*)L_17, RuntimeArray_il2cpp_TypeInfo_var)); RuntimeArray* L_18 = V_3; NullCheck(L_18); int32_t L_19; L_19 = Array_get_Length_m361285FB7CF44045DC369834D1CD01F72F94EF57(L_18, NULL); V_4 = L_19; XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_20; L_20 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL); String_t* L_21 = V_1; String_t* L_22; L_22 = XmlSerializationWriter_GetQualifiedName_m6A393BACF5677C132F4FF0717F6F96522C55D518(__this, L_21, _stringLiteralE249DDFD90EBFAAEE63734F28F6668A2FB5BD5AF, NULL); String_t* L_23; L_23 = Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5((&V_4), NULL); String_t* L_24; L_24 = String_Concat_m093934F71A9B351911EE46311674ED463B180006(L_22, _stringLiteralD9691C4FD8A1F6B09DB1147CA32B442772FB46A1, L_23, _stringLiteralE166C9564FBDE461738077E3B1B506525EB6ACCC, NULL); NullCheck(L_20); XmlWriter_WriteAttributeString_m1F3481B4EB9D711B7CAF93FB2B7D077A43D1AABB(L_20, _stringLiteral9A24CC7BE5FB2E4DFFA4A80AD8B0335DAE91B662, _stringLiteralD29B87DC6B1B722C619FAD071A9157749710CDA6, L_24, NULL); V_5 = 0; goto IL_00d8; } IL_00b2: { RuntimeArray* L_25 = V_3; int32_t L_26 = V_5; NullCheck(L_25); RuntimeObject* L_27; L_27 = Array_GetValue_m007D247B8A6FE5BD60FD1CD510A714A416F2BA21(L_25, L_26, NULL); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_28 = ___1_td; NullCheck(L_28); Type_t* L_29; L_29 = TypeData_get_ListItemType_m649E9D1FF5CF8721C54E6CCE22A66527A8A4DEC2(L_28, NULL); XmlSerializationWriter_WritePotentiallyReferencingElement_mC08268FB0CD13EF92C5F0D92492F9310AB218CFB(__this, _stringLiteralB6F02FE6CD732AB22BD11BE4254D9546F3BEEE58, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, L_27, L_29, (bool)0, (bool)1, NULL); int32_t L_30 = V_5; V_5 = ((int32_t)il2cpp_codegen_add(L_30, 1)); } IL_00d8: { int32_t L_31 = V_5; int32_t L_32 = V_4; if ((((int32_t)L_31) < ((int32_t)L_32))) { goto IL_00b2; } } IL_00de: { XmlSerializationWriter_WriteEndElement_mDCC1D34A7B81C6B8EB8E6C924E5752EC39F9FA1F(__this, NULL); return; } } // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteReferencingElement(System.String,System.String,System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteReferencingElement_m63BCDD79C5119664DA24591EA6620A14EBBC7251 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___0_n, String_t* ___1_ns, RuntimeObject* ___2_o, bool ___3_isNullable, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0AEA83737E2216962B6144625FC860B3F361A5ED); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0B0FEB3147CE20EB2C90076367F895C59BCD14B3); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___2_o; if (L_0) { goto IL_0010; } } { bool L_1 = ___3_isNullable; if (!L_1) { goto IL_000f; } } { String_t* L_2 = ___0_n; String_t* L_3 = ___1_ns; XmlSerializationWriter_WriteNullTagEncoded_mE5653B11D1EE4E31F2F81B4AEE5CE85354576127(__this, L_2, L_3, NULL); } IL_000f: { return; } IL_0010: { XmlSerializationWriter_CheckReferenceQueue_m798F9CFD9FD0DBC8CC4E2B7BF4F6D1053A11E169(__this, NULL); RuntimeObject* L_4 = ___2_o; bool L_5; L_5 = XmlSerializationWriter_AlreadyQueued_mDEBACA2D31AC7B5D135065F0595AB02B68D2164D(__this, L_4, NULL); if (L_5) { goto IL_002b; } } { Queue_t82FD2BE12D138AF4D22C801CB5044DAEC2BA66BC* L_6 = __this->___referencedElements_5; RuntimeObject* L_7 = ___2_o; NullCheck(L_6); VirtualActionInvoker1< RuntimeObject* >::Invoke(15 /* System.Void System.Collections.Queue::Enqueue(System.Object) */, L_6, L_7); } IL_002b: { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_8; L_8 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL); String_t* L_9 = ___0_n; String_t* L_10 = ___1_ns; NullCheck(L_8); XmlWriter_WriteStartElement_mAC8867077A8F222C966E6720B70F8808A655E3A0(L_8, L_9, L_10, NULL); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_11; L_11 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL); RuntimeObject* L_12 = ___2_o; String_t* L_13; L_13 = XmlSerializationWriter_GetId_m119A741C6DE06B31C89202A1AB5B6F5F9BDB400E(__this, L_12, (bool)1, NULL); String_t* L_14; L_14 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(_stringLiteral0B0FEB3147CE20EB2C90076367F895C59BCD14B3, L_13, NULL); NullCheck(L_11); XmlWriter_WriteAttributeString_m828C9640305961C835B4B9B3D5C62E76649A08A7(L_11, _stringLiteral0AEA83737E2216962B6144625FC860B3F361A5ED, L_14, NULL); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_15; L_15 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL); NullCheck(L_15); VirtualActionInvoker0::Invoke(10 /* System.Void System.Xml.XmlWriter::WriteEndElement() */, L_15); return; } } // System.Void System.Xml.Serialization.XmlSerializationWriter::CheckReferenceQueue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_CheckReferenceQueue_m798F9CFD9FD0DBC8CC4E2B7BF4F6D1053A11E169 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Queue_t82FD2BE12D138AF4D22C801CB5044DAEC2BA66BC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Queue_t82FD2BE12D138AF4D22C801CB5044DAEC2BA66BC* L_0 = __this->___referencedElements_5; if (L_0) { goto IL_0019; } } { Queue_t82FD2BE12D138AF4D22C801CB5044DAEC2BA66BC* L_1 = (Queue_t82FD2BE12D138AF4D22C801CB5044DAEC2BA66BC*)il2cpp_codegen_object_new(Queue_t82FD2BE12D138AF4D22C801CB5044DAEC2BA66BC_il2cpp_TypeInfo_var); NullCheck(L_1); Queue__ctor_mFCCBE2B4FFBD3F33D6FBE2D010C9A0CA976784CB(L_1, NULL); __this->___referencedElements_5 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___referencedElements_5), (void*)L_1); VirtualActionInvoker0::Invoke(4 /* System.Void System.Xml.Serialization.XmlSerializationWriter::InitCallbacks() */, __this); } IL_0019: { return; } } // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteSerializable(System.Xml.Serialization.IXmlSerializable,System.String,System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteSerializable_mBE2DC3FBAF8A1DA2921EE89701791176B63C40B9 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, RuntimeObject* ___0_serializable, String_t* ___1_name, String_t* ___2_ns, bool ___3_isNullable, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___0_serializable; String_t* L_1 = ___1_name; String_t* L_2 = ___2_ns; bool L_3 = ___3_isNullable; XmlSerializationWriter_WriteSerializable_m49BBC98F617B444A0BFE261D0BA42AE7E41622E1(__this, L_0, L_1, L_2, L_3, (bool)1, NULL); return; } } // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteSerializable(System.Xml.Serialization.IXmlSerializable,System.String,System.String,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteSerializable_m49BBC98F617B444A0BFE261D0BA42AE7E41622E1 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, RuntimeObject* ___0_serializable, String_t* ___1_name, String_t* ___2_ns, bool ___3_isNullable, bool ___4_wrapped, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlSerializable_tE36AB1894460107283308E142C1106C4AB31A526_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___0_serializable; if (L_0) { goto IL_0013; } } { bool L_1 = ___3_isNullable; bool L_2 = ___4_wrapped; if (!((int32_t)((int32_t)L_1&(int32_t)L_2))) { goto IL_0012; } } { String_t* L_3 = ___1_name; String_t* L_4 = ___2_ns; XmlSerializationWriter_WriteNullTagLiteral_m721825C6D540C0D0BECDE4BD2948B1A270ACD31E(__this, L_3, L_4, NULL); } IL_0012: { return; } IL_0013: { bool L_5 = ___4_wrapped; if (!L_5) { goto IL_0024; } } { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_6; L_6 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL); String_t* L_7 = ___1_name; String_t* L_8 = ___2_ns; NullCheck(L_6); XmlWriter_WriteStartElement_mAC8867077A8F222C966E6720B70F8808A655E3A0(L_6, L_7, L_8, NULL); } IL_0024: { RuntimeObject* L_9 = ___0_serializable; XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_10; L_10 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL); NullCheck(L_9); InterfaceActionInvoker1< XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* >::Invoke(2 /* System.Void System.Xml.Serialization.IXmlSerializable::WriteXml(System.Xml.XmlWriter) */, IXmlSerializable_tE36AB1894460107283308E142C1106C4AB31A526_il2cpp_TypeInfo_var, L_9, L_10); bool L_11 = ___4_wrapped; if (!L_11) { goto IL_003f; } } { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_12; L_12 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL); NullCheck(L_12); VirtualActionInvoker0::Invoke(10 /* System.Void System.Xml.XmlWriter::WriteEndElement() */, L_12); } IL_003f: { return; } } // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteStartDocument() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteStartDocument_m6E55154B291F834B4B5C7F692CCF53B6B3BF94FF (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, const RuntimeMethod* method) { { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0; L_0 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL); NullCheck(L_0); int32_t L_1; L_1 = VirtualFuncInvoker0< int32_t >::Invoke(27 /* System.Xml.WriteState System.Xml.XmlWriter::get_WriteState() */, L_0); if (L_1) { goto IL_0018; } } { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_2; L_2 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL); NullCheck(L_2); VirtualActionInvoker0::Invoke(5 /* System.Void System.Xml.XmlWriter::WriteStartDocument() */, L_2); } IL_0018: { return; } } // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteStartElement(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteStartElement_m14B47621699116DB0A0056C1437D1B0A1310E3BA (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___0_name, String_t* ___1_ns, const RuntimeMethod* method) { { String_t* L_0 = ___0_name; String_t* L_1 = ___1_ns; XmlSerializationWriter_WriteStartElement_mB1DC56074605855EB20F38FC8D2E4BDB2A760D89(__this, L_0, L_1, NULL, (bool)0, NULL); return; } } // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteStartElement(System.String,System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteStartElement_m10BA6216843AE75F6DB9631DDA883F1B831BEAF6 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___0_name, String_t* ___1_ns, bool ___2_writePrefixed, const RuntimeMethod* method) { { String_t* L_0 = ___0_name; String_t* L_1 = ___1_ns; bool L_2 = ___2_writePrefixed; XmlSerializationWriter_WriteStartElement_mB1DC56074605855EB20F38FC8D2E4BDB2A760D89(__this, L_0, L_1, NULL, L_2, NULL); return; } } // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteStartElement(System.String,System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteStartElement_mCB83EEA5BA0CDBDD2D62768D10D249B7D5835A70 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___0_name, String_t* ___1_ns, RuntimeObject* ___2_o, const RuntimeMethod* method) { { String_t* L_0 = ___0_name; String_t* L_1 = ___1_ns; RuntimeObject* L_2 = ___2_o; XmlSerializationWriter_WriteStartElement_mB1DC56074605855EB20F38FC8D2E4BDB2A760D89(__this, L_0, L_1, L_2, (bool)0, NULL); return; } } // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteStartElement(System.String,System.String,System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteStartElement_mB1DC56074605855EB20F38FC8D2E4BDB2A760D89 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___0_name, String_t* ___1_ns, RuntimeObject* ___2_o, bool ___3_writePrefixed, const RuntimeMethod* method) { { String_t* L_0 = ___0_name; String_t* L_1 = ___1_ns; RuntimeObject* L_2 = ___2_o; bool L_3 = ___3_writePrefixed; ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_4 = __this->___namespaces_3; XmlSerializationWriter_WriteStartElement_m88BB6D1190D3E5B8108CBA31ED8ADB5F654AD224(__this, L_0, L_1, L_2, L_3, L_4, NULL); return; } } // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteStartElement(System.String,System.String,System.Object,System.Boolean,System.Collections.ICollection) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteStartElement_m88BB6D1190D3E5B8108CBA31ED8ADB5F654AD224 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___0_name, String_t* ___1_ns, RuntimeObject* ___2_o, bool ___3_writePrefixed, RuntimeObject* ___4_namespaces, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlCustomFormatter_t8021E588C6512752ACF5F834D7F8FF70E1D28471_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral430E518F836082E0683698AB9E3F79D39C7F5140); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; RuntimeObject* V_1 = NULL; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* V_2 = NULL; RuntimeObject* V_3 = NULL; int32_t V_4 = 0; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* V_5 = NULL; String_t* V_6 = NULL; { RuntimeObject* L_0 = ___2_o; if (!L_0) { goto IL_0039; } } { Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_1 = __this->___serializedObjects_7; RuntimeObject* L_2 = ___2_o; NullCheck(L_1); bool L_3; L_3 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(26 /* System.Boolean System.Collections.Hashtable::Contains(System.Object) */, L_1, L_2); if (!L_3) { goto IL_002c; } } { RuntimeObject* L_4 = ___2_o; NullCheck(L_4); Type_t* L_5; L_5 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_4, NULL); NullCheck(L_5); String_t* L_6; L_6 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_5); String_t* L_7; L_7 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral40266A599D7FCF1D8A2E067A8C90873F38D822E2)), L_6, NULL); InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_8 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_8); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_8, L_7, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializationWriter_WriteStartElement_m88BB6D1190D3E5B8108CBA31ED8ADB5F654AD224_RuntimeMethod_var))); } IL_002c: { Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_9 = __this->___serializedObjects_7; RuntimeObject* L_10 = ___2_o; RuntimeObject* L_11 = ___2_o; NullCheck(L_9); VirtualActionInvoker2< RuntimeObject*, RuntimeObject* >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_9, L_10, L_11); } IL_0039: { V_0 = (String_t*)NULL; bool L_12 = __this->___topLevelElement_2; if (!L_12) { goto IL_009d; } } { String_t* L_13 = ___1_ns; if (!L_13) { goto IL_009d; } } { String_t* L_14 = ___1_ns; NullCheck(L_14); int32_t L_15; L_15 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_14, NULL); if (!L_15) { goto IL_009d; } } { RuntimeObject* L_16 = ___4_namespaces; if (!L_16) { goto IL_009d; } } { RuntimeObject* L_17 = ___4_namespaces; NullCheck(L_17); RuntimeObject* L_18; L_18 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, L_17); V_1 = L_18; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_008c: {// begin finally (depth: 1) { RuntimeObject* L_19 = V_1; V_3 = ((RuntimeObject*)IsInst((RuntimeObject*)L_19, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var)); RuntimeObject* L_20 = V_3; if (!L_20) { goto IL_009c; } } { RuntimeObject* L_21 = V_3; NullCheck(L_21); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_21); } IL_009c: { return; } }// end finally (depth: 1) }); try {// begin try (depth: 1) { goto IL_0082_1; } IL_005c_1: { RuntimeObject* L_22 = V_1; NullCheck(L_22); RuntimeObject* L_23; L_23 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_22); V_2 = ((XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)CastclassClass((RuntimeObject*)L_23, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var)); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_24 = V_2; NullCheck(L_24); String_t* L_25; L_25 = XmlQualifiedName_get_Namespace_m0CAE4A651EF1CA6F0EB657C83608A796038A2615_inline(L_24, NULL); String_t* L_26 = ___1_ns; bool L_27; L_27 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_25, L_26, NULL); if (!L_27) { goto IL_0082_1; } } { XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_28 = V_2; NullCheck(L_28); String_t* L_29; L_29 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_28, NULL); V_0 = L_29; ___3_writePrefixed = (bool)1; goto IL_009d; } IL_0082_1: { RuntimeObject* L_30 = V_1; NullCheck(L_30); bool L_31; L_31 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_30); if (L_31) { goto IL_005c_1; } } { goto IL_009d; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_009d: { bool L_32 = ___3_writePrefixed; if (!L_32) { goto IL_0105; } } { String_t* L_33 = ___1_ns; String_t* L_34 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; bool L_35; L_35 = String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6(L_33, L_34, NULL); if (!L_35) { goto IL_0105; } } { String_t* L_36 = ___0_name; il2cpp_codegen_runtime_class_init_inline(XmlCustomFormatter_t8021E588C6512752ACF5F834D7F8FF70E1D28471_il2cpp_TypeInfo_var); String_t* L_37; L_37 = XmlCustomFormatter_FromXmlName_m553FD3D43C31E549D1E14A7A8DE175B77C39F994(L_36, NULL); ___0_name = L_37; String_t* L_38 = V_0; if (L_38) { goto IL_00c6; } } { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_39; L_39 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL); String_t* L_40 = ___1_ns; NullCheck(L_39); String_t* L_41; L_41 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(30 /* System.String System.Xml.XmlWriter::LookupPrefix(System.String) */, L_39, L_40); V_0 = L_41; } IL_00c6: { String_t* L_42 = V_0; if (!L_42) { goto IL_00d1; } } { String_t* L_43 = V_0; NullCheck(L_43); int32_t L_44; L_44 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_43, NULL); if (L_44) { goto IL_00f5; } } IL_00d1: { int32_t L_45 = __this->___qnameCount_1; V_4 = ((int32_t)il2cpp_codegen_add(L_45, 1)); int32_t L_46 = V_4; __this->___qnameCount_1 = L_46; String_t* L_47; L_47 = Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5((&V_4), NULL); String_t* L_48; L_48 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(_stringLiteral430E518F836082E0683698AB9E3F79D39C7F5140, L_47, NULL); V_0 = L_48; } IL_00f5: { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_49; L_49 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL); String_t* L_50 = V_0; String_t* L_51 = ___0_name; String_t* L_52 = ___1_ns; NullCheck(L_49); VirtualActionInvoker3< String_t*, String_t*, String_t* >::Invoke(9 /* System.Void System.Xml.XmlWriter::WriteStartElement(System.String,System.String,System.String) */, L_49, L_50, L_51, L_52); goto IL_0112; } IL_0105: { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_53; L_53 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL); String_t* L_54 = ___0_name; String_t* L_55 = ___1_ns; NullCheck(L_53); XmlWriter_WriteStartElement_mAC8867077A8F222C966E6720B70F8808A655E3A0(L_53, L_54, L_55, NULL); } IL_0112: { bool L_56 = __this->___topLevelElement_2; if (!L_56) { goto IL_0196; } } { RuntimeObject* L_57 = ___4_namespaces; if (!L_57) { goto IL_018f; } } { RuntimeObject* L_58 = ___4_namespaces; NullCheck(L_58); RuntimeObject* L_59; L_59 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, L_58); V_1 = L_59; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_017e: {// begin finally (depth: 1) { RuntimeObject* L_60 = V_1; V_3 = ((RuntimeObject*)IsInst((RuntimeObject*)L_60, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var)); RuntimeObject* L_61 = V_3; if (!L_61) { goto IL_018e; } } { RuntimeObject* L_62 = V_3; NullCheck(L_62); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_62); } IL_018e: { return; } }// end finally (depth: 1) }); try {// begin try (depth: 1) { goto IL_0174_1; } IL_0128_1: { RuntimeObject* L_63 = V_1; NullCheck(L_63); RuntimeObject* L_64; L_64 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_63); V_5 = ((XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)CastclassClass((RuntimeObject*)L_64, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var)); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_65; L_65 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_66 = V_5; NullCheck(L_66); String_t* L_67; L_67 = XmlQualifiedName_get_Namespace_m0CAE4A651EF1CA6F0EB657C83608A796038A2615_inline(L_66, NULL); NullCheck(L_65); String_t* L_68; L_68 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(30 /* System.String System.Xml.XmlWriter::LookupPrefix(System.String) */, L_65, L_67); V_6 = L_68; String_t* L_69 = V_6; if (!L_69) { goto IL_0156_1; } } { String_t* L_70 = V_6; NullCheck(L_70); int32_t L_71; L_71 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_70, NULL); if (L_71) { goto IL_0174_1; } } IL_0156_1: { XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_72 = V_5; NullCheck(L_72); String_t* L_73; L_73 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_72, NULL); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_74 = V_5; NullCheck(L_74); String_t* L_75; L_75 = XmlQualifiedName_get_Namespace_m0CAE4A651EF1CA6F0EB657C83608A796038A2615_inline(L_74, NULL); XmlSerializationWriter_WriteAttribute_m25B87065E059F9AA2D8E46158DB0C3A9180CC63B(__this, _stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3, L_73, _stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE, L_75, NULL); } IL_0174_1: { RuntimeObject* L_76 = V_1; NullCheck(L_76); bool L_77; L_77 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_76); if (L_77) { goto IL_0128_1; } } { goto IL_018f; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_018f: { __this->___topLevelElement_2 = (bool)0; } IL_0196: { return; } } // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteTypedPrimitive(System.String,System.String,System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteTypedPrimitive_m9AF71A0CBE191A76BA04DF17501BB08C6C3E0D50 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___0_name, String_t* ___1_ns, RuntimeObject* ___2_o, bool ___3_xsiType, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlCustomFormatter_t8021E588C6512752ACF5F834D7F8FF70E1D28471_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE249DDFD90EBFAAEE63734F28F6668A2FB5BD5AF); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFC52EF0E935F6937D21D16F8AE523FA90242C407); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* V_1 = NULL; String_t* G_B6_0 = NULL; String_t* G_B16_0 = NULL; XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* G_B16_1 = NULL; String_t* G_B15_0 = NULL; XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* G_B15_1 = NULL; String_t* G_B17_0 = NULL; String_t* G_B17_1 = NULL; XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* G_B17_2 = NULL; { RuntimeObject* L_0 = ___2_o; NullCheck(L_0); Type_t* L_1; L_1 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_0, NULL); il2cpp_codegen_runtime_class_init_inline(TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_2; L_2 = TypeTranslator_GetTypeData_m0A06DC3C76F985DDB7219841C90F408DD8959DB9(L_1, (String_t*)NULL, (bool)1, NULL); V_1 = L_2; TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_3 = V_1; NullCheck(L_3); int32_t L_4; L_4 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_3, NULL); if ((((int32_t)L_4) == ((int32_t)1))) { goto IL_002d; } } { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_5 = V_1; NullCheck(L_5); String_t* L_6; L_6 = TypeData_get_FullTypeName_m391893730DDFEE90F76197075F599FEA2E60BE43_inline(L_5, NULL); String_t* L_7; L_7 = String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3BEF703FC97B2EF58FFDCB567F4C4F33758B77FD)), L_6, NULL); InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_8 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_8); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_8, L_7, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializationWriter_WriteTypedPrimitive_m9AF71A0CBE191A76BA04DF17501BB08C6C3E0D50_RuntimeMethod_var))); } IL_002d: { String_t* L_9 = ___0_name; if (L_9) { goto IL_0050; } } { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_10 = V_1; NullCheck(L_10); bool L_11; L_11 = TypeData_get_IsXsdType_m57CB2DF2ACE378E27A686B5AE138CA6749FF004A(L_10, NULL); if (L_11) { goto IL_003f; } } { G_B6_0 = _stringLiteralFC52EF0E935F6937D21D16F8AE523FA90242C407; goto IL_0044; } IL_003f: { G_B6_0 = _stringLiteralE249DDFD90EBFAAEE63734F28F6668A2FB5BD5AF; } IL_0044: { ___1_ns = G_B6_0; TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_12 = V_1; NullCheck(L_12); String_t* L_13; L_13 = TypeData_get_XmlType_m06749C1B19C57EB8649CBCD9B106C014DF511453_inline(L_12, NULL); ___0_name = L_13; goto IL_0058; } IL_0050: { String_t* L_14 = ___0_name; il2cpp_codegen_runtime_class_init_inline(XmlCustomFormatter_t8021E588C6512752ACF5F834D7F8FF70E1D28471_il2cpp_TypeInfo_var); String_t* L_15; L_15 = XmlCustomFormatter_FromXmlName_m553FD3D43C31E549D1E14A7A8DE175B77C39F994(L_14, NULL); ___0_name = L_15; } IL_0058: { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_16; L_16 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL); String_t* L_17 = ___0_name; String_t* L_18 = ___1_ns; NullCheck(L_16); XmlWriter_WriteStartElement_mAC8867077A8F222C966E6720B70F8808A655E3A0(L_16, L_17, L_18, NULL); RuntimeObject* L_19 = ___2_o; if (!((XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)IsInstClass((RuntimeObject*)L_19, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var))) { goto IL_007c; } } { RuntimeObject* L_20 = ___2_o; String_t* L_21; L_21 = XmlSerializationWriter_FromXmlQualifiedName_m0025FF4410A037F0310220E2F36A1F55DD106829(__this, ((XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)CastclassClass((RuntimeObject*)L_20, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var)), NULL); V_0 = L_21; goto IL_0084; } IL_007c: { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_22 = V_1; RuntimeObject* L_23 = ___2_o; il2cpp_codegen_runtime_class_init_inline(XmlCustomFormatter_t8021E588C6512752ACF5F834D7F8FF70E1D28471_il2cpp_TypeInfo_var); String_t* L_24; L_24 = XmlCustomFormatter_ToXmlString_m9C2EFDCCDABEAC5DEC075942605E8C3BCA836E45(L_22, L_23, NULL); V_0 = L_24; } IL_0084: { bool L_25 = ___3_xsiType; if (!L_25) { goto IL_00cc; } } { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_26 = V_1; NullCheck(L_26); int32_t L_27; L_27 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_26, NULL); if ((((int32_t)L_27) == ((int32_t)1))) { goto IL_00ac; } } { RuntimeObject* L_28 = ___2_o; NullCheck(L_28); Type_t* L_29; L_29 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_28, NULL); NullCheck(L_29); String_t* L_30; L_30 = VirtualFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_29); String_t* L_31; L_31 = String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD6879FB5AA9F284C75EF7F93BBF4F891A27C2426)), L_30, NULL); InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_32 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_32); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_32, L_31, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_32, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializationWriter_WriteTypedPrimitive_m9AF71A0CBE191A76BA04DF17501BB08C6C3E0D50_RuntimeMethod_var))); } IL_00ac: { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_33 = V_1; NullCheck(L_33); String_t* L_34; L_34 = TypeData_get_XmlType_m06749C1B19C57EB8649CBCD9B106C014DF511453_inline(L_33, NULL); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_35 = V_1; NullCheck(L_35); bool L_36; L_36 = TypeData_get_IsXsdType_m57CB2DF2ACE378E27A686B5AE138CA6749FF004A(L_35, NULL); G_B15_0 = L_34; G_B15_1 = __this; if (L_36) { G_B16_0 = L_34; G_B16_1 = __this; goto IL_00c2; } } { G_B17_0 = _stringLiteralFC52EF0E935F6937D21D16F8AE523FA90242C407; G_B17_1 = G_B15_0; G_B17_2 = G_B15_1; goto IL_00c7; } IL_00c2: { G_B17_0 = _stringLiteralE249DDFD90EBFAAEE63734F28F6668A2FB5BD5AF; G_B17_1 = G_B16_0; G_B17_2 = G_B16_1; } IL_00c7: { NullCheck(G_B17_2); XmlSerializationWriter_WriteXsiType_m24C3B36D396116877E22848B9B12EF6D6BE4D122(G_B17_2, G_B17_1, G_B17_0, NULL); } IL_00cc: { String_t* L_37 = V_0; XmlSerializationWriter_WriteValue_mFBAAF58EE4ECE002669126E42D9613880FA871A3(__this, L_37, NULL); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_38; L_38 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL); NullCheck(L_38); VirtualActionInvoker0::Invoke(10 /* System.Void System.Xml.XmlWriter::WriteEndElement() */, L_38); return; } } // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteValue(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteValue_mFBAAF58EE4ECE002669126E42D9613880FA871A3 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___0_value, const RuntimeMethod* method) { { String_t* L_0 = ___0_value; if (!L_0) { goto IL_000f; } } { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_1; L_1 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL); String_t* L_2 = ___0_value; NullCheck(L_1); VirtualActionInvoker1< String_t* >::Invoke(20 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, L_1, L_2); } IL_000f: { return; } } // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteXmlAttribute(System.Xml.XmlNode,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteXmlAttribute_mC90D083F605D89967073970C28C7CF10B6F6706F (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* ___0_node, RuntimeObject* ___1_container, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9A24CC7BE5FB2E4DFFA4A80AD8B0335DAE91B662); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE227F5E574CC64695563B031F22527F1B72B2D46); s_Il2CppMethodInitialized = true; } XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* V_0 = NULL; String_t* V_1 = NULL; String_t* V_2 = NULL; String_t* V_3 = NULL; String_t* V_4 = NULL; { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_0 = ___0_node; V_0 = ((XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)IsInstClass((RuntimeObject*)L_0, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var)); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_1 = V_0; if (L_1) { goto IL_0015; } } { InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_2 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_2); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0E0048FA0448CB3DFBD7A30FABD833FBB16CBC89)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializationWriter_WriteXmlAttribute_mC90D083F605D89967073970C28C7CF10B6F6706F_RuntimeMethod_var))); } IL_0015: { XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_3 = V_0; NullCheck(L_3); String_t* L_4; L_4 = VirtualFuncInvoker0< String_t* >::Invoke(35 /* System.String System.Xml.XmlNode::get_NamespaceURI() */, L_3); bool L_5; L_5 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_4, _stringLiteralE227F5E574CC64695563B031F22527F1B72B2D46, NULL); if (!L_5) { goto IL_0075; } } { XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_6 = V_0; NullCheck(L_6); String_t* L_7; L_7 = VirtualFuncInvoker0< String_t* >::Invoke(38 /* System.String System.Xml.XmlNode::get_LocalName() */, L_6); bool L_8; L_8 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_7, _stringLiteral9A24CC7BE5FB2E4DFFA4A80AD8B0335DAE91B662, NULL); if (!L_8) { goto IL_0075; } } { XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_9 = V_0; NullCheck(L_9); String_t* L_10; L_10 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlNode::get_Value() */, L_9); il2cpp_codegen_runtime_class_init_inline(TypeTranslator_t46FF5D65D6B7BE54B8643952A528D5930429C60D_il2cpp_TypeInfo_var); TypeTranslator_ParseArrayType_m34D4476D6FC3EF2918E186B1A59328C741E16CAC(L_10, (&V_2), (&V_1), (&V_3), NULL); String_t* L_11 = V_2; String_t* L_12 = V_3; String_t* L_13; L_13 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_11, L_12, NULL); String_t* L_14 = V_1; String_t* L_15; L_15 = XmlSerializationWriter_GetQualifiedName_m6A393BACF5677C132F4FF0717F6F96522C55D518(__this, L_13, L_14, NULL); V_4 = L_15; XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_16 = V_0; NullCheck(L_16); String_t* L_17; L_17 = VirtualFuncInvoker0< String_t* >::Invoke(36 /* System.String System.Xml.XmlNode::get_Prefix() */, L_16); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_18 = V_0; NullCheck(L_18); String_t* L_19; L_19 = VirtualFuncInvoker0< String_t* >::Invoke(38 /* System.String System.Xml.XmlNode::get_LocalName() */, L_18); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_20 = V_0; NullCheck(L_20); String_t* L_21; L_21 = VirtualFuncInvoker0< String_t* >::Invoke(35 /* System.String System.Xml.XmlNode::get_NamespaceURI() */, L_20); String_t* L_22 = V_4; XmlSerializationWriter_WriteAttribute_m25B87065E059F9AA2D8E46158DB0C3A9180CC63B(__this, L_17, L_19, L_21, L_22, NULL); return; } IL_0075: { XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_23 = V_0; NullCheck(L_23); String_t* L_24; L_24 = VirtualFuncInvoker0< String_t* >::Invoke(36 /* System.String System.Xml.XmlNode::get_Prefix() */, L_23); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_25 = V_0; NullCheck(L_25); String_t* L_26; L_26 = VirtualFuncInvoker0< String_t* >::Invoke(38 /* System.String System.Xml.XmlNode::get_LocalName() */, L_25); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_27 = V_0; NullCheck(L_27); String_t* L_28; L_28 = VirtualFuncInvoker0< String_t* >::Invoke(35 /* System.String System.Xml.XmlNode::get_NamespaceURI() */, L_27); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_29 = V_0; NullCheck(L_29); String_t* L_30; L_30 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Xml.XmlNode::get_Value() */, L_29); XmlSerializationWriter_WriteAttribute_m25B87065E059F9AA2D8E46158DB0C3A9180CC63B(__this, L_24, L_26, L_28, L_30, NULL); return; } } // System.Void System.Xml.Serialization.XmlSerializationWriter::WriteXsiType(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriter_WriteXsiType_m24C3B36D396116877E22848B9B12EF6D6BE4D122 (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, String_t* ___0_name, String_t* ___1_ns, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7C014955313A7D33D5D04696B884B25325E6393C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___1_ns; if (!L_0) { goto IL_0029; } } { String_t* L_1 = ___1_ns; String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; bool L_3; L_3 = String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6(L_1, L_2, NULL); if (!L_3) { goto IL_0029; } } { String_t* L_4 = ___0_name; String_t* L_5 = ___1_ns; String_t* L_6; L_6 = XmlSerializationWriter_GetQualifiedName_m6A393BACF5677C132F4FF0717F6F96522C55D518(__this, L_4, L_5, NULL); XmlSerializationWriter_WriteAttribute_mAA8601A17489000A033533611237057B779C91B1(__this, _stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7, _stringLiteral7C014955313A7D33D5D04696B884B25325E6393C, L_6, NULL); return; } IL_0029: { String_t* L_7 = ___0_name; XmlSerializationWriter_WriteAttribute_mAA8601A17489000A033533611237057B779C91B1(__this, _stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7, _stringLiteral7C014955313A7D33D5D04696B884B25325E6393C, L_7, 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.Xml.Serialization.XmlSerializationWriter/WriteCallbackInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WriteCallbackInfo__ctor_mCD5B02AA94A872AEB63A81C174520985F378E240 (WriteCallbackInfo_t60E40304F6E1EF7671F3C52BA73695C193B3E9C6* __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.Xml.Serialization.XmlSerializationWriterInterpreter::.ctor(System.Xml.Serialization.XmlMapping) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriterInterpreter__ctor_m03635FE7701F9E8ACEC9CF5D213284C18820CDDB (XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9* __this, XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* ___0_typeMap, const RuntimeMethod* method) { { XmlSerializationWriter__ctor_m293C1A24C2354634334D6F0C0E205E2478ABFCB1(__this, NULL); XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* L_0 = ___0_typeMap; __this->____typeMap_8 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->____typeMap_8), (void*)L_0); XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* L_1 = ___0_typeMap; NullCheck(L_1); int32_t L_2; L_2 = XmlMapping_get_Format_mB9ACDCC642A2589BF20C9D02C2FA14F2C5D1C3F3_inline(L_1, NULL); __this->____format_9 = L_2; return; } } // System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::InitCallbacks() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriterInterpreter_InitCallbacks_mFD6C7F1D12D67C1D973F1E2236F3ACD2C90F34F8 (XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackInfo_WriteEnum_m277626A9EC6D2C4713BA8BD4C45174875727F869_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackInfo_WriteObject_m5D5ED881A0F8AA17A296B0ABFE6063800F096564_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackInfo_t89714EAF889C7E9B3682A74ADF45DDACC78E60B2_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* V_0 = NULL; RuntimeObject* V_1 = NULL; XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* V_2 = NULL; CallbackInfo_t89714EAF889C7E9B3682A74ADF45DDACC78E60B2* V_3 = NULL; RuntimeObject* V_4 = NULL; { XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* L_0 = __this->____typeMap_8; NullCheck(L_0); ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_1; L_1 = XmlMapping_get_RelatedMaps_m359C8ADACB98609060F82DCB82FB18E39274918C_inline(L_0, NULL); V_0 = L_1; ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_2 = V_0; if (!L_2) { goto IL_00af; } } { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_3 = V_0; NullCheck(L_3); RuntimeObject* L_4; L_4 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(38 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_3); V_1 = L_4; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_009b: {// begin finally (depth: 1) { RuntimeObject* L_5 = V_1; V_4 = ((RuntimeObject*)IsInst((RuntimeObject*)L_5, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var)); RuntimeObject* L_6 = V_4; if (!L_6) { goto IL_00ae; } } { RuntimeObject* L_7 = V_4; NullCheck(L_7); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_7); } IL_00ae: { return; } }// end finally (depth: 1) }); try {// begin try (depth: 1) { goto IL_0091_1; } IL_001b_1: { RuntimeObject* L_8 = V_1; NullCheck(L_8); RuntimeObject* L_9; L_9 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_8); V_2 = ((XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9*)CastclassClass((RuntimeObject*)L_9, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9_il2cpp_TypeInfo_var)); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_10 = V_2; CallbackInfo_t89714EAF889C7E9B3682A74ADF45DDACC78E60B2* L_11 = (CallbackInfo_t89714EAF889C7E9B3682A74ADF45DDACC78E60B2*)il2cpp_codegen_object_new(CallbackInfo_t89714EAF889C7E9B3682A74ADF45DDACC78E60B2_il2cpp_TypeInfo_var); NullCheck(L_11); CallbackInfo__ctor_m8F675D9CC25A5368226CB51B0931B527F5FA9439(L_11, __this, L_10, NULL); V_3 = L_11; XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_12 = V_2; NullCheck(L_12); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_13; L_13 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_12, NULL); NullCheck(L_13); int32_t L_14; L_14 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_13, NULL); if ((!(((uint32_t)L_14) == ((uint32_t)2)))) { goto IL_0068_1; } } { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_15 = V_2; NullCheck(L_15); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_16; L_16 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_15, NULL); NullCheck(L_16); Type_t* L_17; L_17 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_16, NULL); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_18 = V_2; NullCheck(L_18); String_t* L_19; L_19 = XmlTypeMapping_get_XmlType_m5A30CB4EE3541CC1C65003757D5E743042846222_inline(L_18, NULL); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_20 = V_2; NullCheck(L_20); String_t* L_21; L_21 = XmlMapping_get_Namespace_m196651C91FB3C3442AC616C977345E89450F024F_inline(L_20, NULL); CallbackInfo_t89714EAF889C7E9B3682A74ADF45DDACC78E60B2* L_22 = V_3; XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA* L_23 = (XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA*)il2cpp_codegen_object_new(XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA_il2cpp_TypeInfo_var); NullCheck(L_23); XmlSerializationWriteCallback__ctor_mC9EAA27EDBF9664212848EC6F45C065395C51AF9(L_23, L_22, (intptr_t)((void*)CallbackInfo_WriteEnum_m277626A9EC6D2C4713BA8BD4C45174875727F869_RuntimeMethod_var), NULL); XmlSerializationWriter_AddWriteCallback_mA8F5217B979F653B829B0B36EA7C8A4202E4FA2D(__this, L_17, L_19, L_21, L_23, NULL); goto IL_0091_1; } IL_0068_1: { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_24 = V_2; NullCheck(L_24); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_25; L_25 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_24, NULL); NullCheck(L_25); Type_t* L_26; L_26 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_25, NULL); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_27 = V_2; NullCheck(L_27); String_t* L_28; L_28 = XmlTypeMapping_get_XmlType_m5A30CB4EE3541CC1C65003757D5E743042846222_inline(L_27, NULL); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_29 = V_2; NullCheck(L_29); String_t* L_30; L_30 = XmlMapping_get_Namespace_m196651C91FB3C3442AC616C977345E89450F024F_inline(L_29, NULL); CallbackInfo_t89714EAF889C7E9B3682A74ADF45DDACC78E60B2* L_31 = V_3; XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA* L_32 = (XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA*)il2cpp_codegen_object_new(XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA_il2cpp_TypeInfo_var); NullCheck(L_32); XmlSerializationWriteCallback__ctor_mC9EAA27EDBF9664212848EC6F45C065395C51AF9(L_32, L_31, (intptr_t)((void*)CallbackInfo_WriteObject_m5D5ED881A0F8AA17A296B0ABFE6063800F096564_RuntimeMethod_var), NULL); XmlSerializationWriter_AddWriteCallback_mA8F5217B979F653B829B0B36EA7C8A4202E4FA2D(__this, L_26, L_28, L_30, L_32, NULL); } IL_0091_1: { RuntimeObject* L_33 = V_1; NullCheck(L_33); bool L_34; L_34 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_33); if (L_34) { goto IL_001b_1; } } { goto IL_00af; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_00af: { return; } } // System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteRoot(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriterInterpreter_WriteRoot_mDF5734ADBE4AE54FE85FF14C378249F22DCDDCAE (XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9* __this, RuntimeObject* ___0_ob, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlMembersMapping_t0D686C86E19B598F10E53AF79EC905A7E2BDB62C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* V_0 = NULL; { XmlSerializationWriter_WriteStartDocument_m6E55154B291F834B4B5C7F692CCF53B6B3BF94FF(__this, NULL); XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* L_0 = __this->____typeMap_8; if (!((XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9*)IsInstClass((RuntimeObject*)L_0, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9_il2cpp_TypeInfo_var))) { goto IL_0085; } } { XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* L_1 = __this->____typeMap_8; V_0 = ((XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9*)CastclassClass((RuntimeObject*)L_1, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9_il2cpp_TypeInfo_var)); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_2 = V_0; NullCheck(L_2); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_3; L_3 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_2, NULL); NullCheck(L_3); int32_t L_4; L_4 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_3, NULL); if ((((int32_t)L_4) == ((int32_t)4))) { goto IL_003b; } } { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_5 = V_0; NullCheck(L_5); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_6; L_6 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_5, NULL); NullCheck(L_6); int32_t L_7; L_7 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_6, NULL); if ((!(((uint32_t)L_7) == ((uint32_t)3)))) { goto IL_0041; } } IL_003b: { XmlSerializationWriter_TopLevelElement_mFEE610422C07AE555FDA27A05CEB1E9616026FEC(__this, NULL); } IL_0041: { int32_t L_8 = __this->____format_9; if ((!(((uint32_t)L_8) == ((uint32_t)1)))) { goto IL_0063; } } { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_9 = V_0; RuntimeObject* L_10 = ___0_ob; XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_11 = V_0; NullCheck(L_11); String_t* L_12; L_12 = XmlMapping_get_ElementName_m2BDBF7797A1F38972A4355CF694E0D468B2A9FC0_inline(L_11, NULL); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_13 = V_0; NullCheck(L_13); String_t* L_14; L_14 = XmlMapping_get_Namespace_m196651C91FB3C3442AC616C977345E89450F024F_inline(L_13, NULL); VirtualActionInvoker7< XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9*, RuntimeObject*, String_t*, String_t*, bool, bool, bool >::Invoke(5 /* System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteObject(System.Xml.Serialization.XmlTypeMapping,System.Object,System.String,System.String,System.Boolean,System.Boolean,System.Boolean) */, __this, L_9, L_10, L_12, L_14, (bool)1, (bool)0, (bool)1); goto IL_00ae; } IL_0063: { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_15 = V_0; NullCheck(L_15); String_t* L_16; L_16 = XmlMapping_get_ElementName_m2BDBF7797A1F38972A4355CF694E0D468B2A9FC0_inline(L_15, NULL); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_17 = V_0; NullCheck(L_17); String_t* L_18; L_18 = XmlMapping_get_Namespace_m196651C91FB3C3442AC616C977345E89450F024F_inline(L_17, NULL); RuntimeObject* L_19 = ___0_ob; XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_20 = V_0; NullCheck(L_20); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_21; L_21 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_20, NULL); NullCheck(L_21); Type_t* L_22; L_22 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_21, NULL); XmlSerializationWriter_WritePotentiallyReferencingElement_mC08268FB0CD13EF92C5F0D92492F9310AB218CFB(__this, L_16, L_18, L_19, L_22, (bool)1, (bool)0, NULL); goto IL_00ae; } IL_0085: { RuntimeObject* L_23 = ___0_ob; if (!((ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)IsInst((RuntimeObject*)L_23, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var))) { goto IL_00a6; } } { XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* L_24 = __this->____typeMap_8; RuntimeObject* L_25 = ___0_ob; VirtualActionInvoker2< XmlMembersMapping_t0D686C86E19B598F10E53AF79EC905A7E2BDB62C*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* >::Invoke(6 /* System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteMessage(System.Xml.Serialization.XmlMembersMapping,System.Object[]) */, __this, ((XmlMembersMapping_t0D686C86E19B598F10E53AF79EC905A7E2BDB62C*)CastclassClass((RuntimeObject*)L_24, XmlMembersMapping_t0D686C86E19B598F10E53AF79EC905A7E2BDB62C_il2cpp_TypeInfo_var)), ((ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)Castclass((RuntimeObject*)L_25, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var))); goto IL_00ae; } IL_00a6: { RuntimeObject* L_26 = ___0_ob; Exception_t* L_27; L_27 = XmlSerializationWriter_CreateUnknownTypeException_m390258930DA81870F1CB5744BEE12EE075A7BAC6(__this, L_26, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_27, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializationWriterInterpreter_WriteRoot_mDF5734ADBE4AE54FE85FF14C378249F22DCDDCAE_RuntimeMethod_var))); } IL_00ae: { XmlSerializationWriter_WriteReferencedElements_m470B7112650901740DB4667F483740083D52081C(__this, NULL); return; } } // System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteObject(System.Xml.Serialization.XmlTypeMapping,System.Object,System.String,System.String,System.Boolean,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriterInterpreter_WriteObject_mB3E2841AD7153907308E41AD18BF2CF34352FE74 (XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___0_typeMap, RuntimeObject* ___1_ob, String_t* ___2_element, String_t* ___3_namesp, bool ___4_isNullable, bool ___5_needType, bool ___6_writeWrappingElem, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlSerializable_tE36AB1894460107283308E142C1106C4AB31A526_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709); s_Il2CppMethodInitialized = true; } Type_t* V_0 = NULL; XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* V_1 = NULL; RuntimeObject* V_2 = NULL; RuntimeObject* V_3 = NULL; int32_t V_4 = 0; { RuntimeObject* L_0 = ___1_ob; if (L_0) { goto IL_0024; } } { bool L_1 = ___4_isNullable; if (!L_1) { goto IL_0023; } } { int32_t L_2 = __this->____format_9; if ((!(((uint32_t)L_2) == ((uint32_t)1)))) { goto IL_001a; } } { String_t* L_3 = ___2_element; String_t* L_4 = ___3_namesp; XmlSerializationWriter_WriteNullTagLiteral_m721825C6D540C0D0BECDE4BD2948B1A270ACD31E(__this, L_3, L_4, NULL); return; } IL_001a: { String_t* L_5 = ___2_element; String_t* L_6 = ___3_namesp; XmlSerializationWriter_WriteNullTagEncoded_mE5653B11D1EE4E31F2F81B4AEE5CE85354576127(__this, L_5, L_6, NULL); } IL_0023: { return; } IL_0024: { RuntimeObject* L_7 = ___1_ob; if (!((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)IsInstClass((RuntimeObject*)L_7, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF_il2cpp_TypeInfo_var))) { goto IL_0071; } } { int32_t L_8 = __this->____format_9; if ((!(((uint32_t)L_8) == ((uint32_t)1)))) { goto IL_0053; } } { RuntimeObject* L_9 = ___1_ob; XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_10 = ___0_typeMap; NullCheck(L_10); bool L_11; L_11 = XmlTypeMapping_get_IsAny_m0C45955548B231D2E892D2924768B068138CBDD8_inline(L_10, NULL); XmlSerializationWriter_WriteElementLiteral_m0E74FD75FE42BEB8D43B79333598C8DDC6EC4238(__this, ((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)CastclassClass((RuntimeObject*)L_9, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF_il2cpp_TypeInfo_var)), _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, (bool)1, L_11, NULL); return; } IL_0053: { RuntimeObject* L_12 = ___1_ob; XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_13 = ___0_typeMap; NullCheck(L_13); bool L_14; L_14 = XmlTypeMapping_get_IsAny_m0C45955548B231D2E892D2924768B068138CBDD8_inline(L_13, NULL); XmlSerializationWriter_WriteElementEncoded_m669E23E74C69FAB9FEF6FAA511A0F6901E1FFEFA(__this, ((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)CastclassClass((RuntimeObject*)L_12, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF_il2cpp_TypeInfo_var)), _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, (bool)1, L_14, NULL); return; } IL_0071: { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_15 = ___0_typeMap; NullCheck(L_15); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_16; L_16 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_15, NULL); NullCheck(L_16); int32_t L_17; L_17 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_16, NULL); if ((!(((uint32_t)L_17) == ((uint32_t)5)))) { goto IL_009a; } } { RuntimeObject* L_18 = ___1_ob; String_t* L_19 = ___2_element; String_t* L_20 = ___3_namesp; bool L_21 = ___4_isNullable; XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_22 = ___0_typeMap; NullCheck(L_22); bool L_23; L_23 = XmlTypeMapping_get_IsAny_m0C45955548B231D2E892D2924768B068138CBDD8_inline(L_22, NULL); XmlSerializationWriter_WriteSerializable_m49BBC98F617B444A0BFE261D0BA42AE7E41622E1(__this, ((RuntimeObject*)Castclass((RuntimeObject*)L_18, IXmlSerializable_tE36AB1894460107283308E142C1106C4AB31A526_il2cpp_TypeInfo_var)), L_19, L_20, L_21, (bool)((((int32_t)L_23) == ((int32_t)0))? 1 : 0), NULL); return; } IL_009a: { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_24 = ___0_typeMap; NullCheck(L_24); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_25; L_25 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_24, NULL); NullCheck(L_25); Type_t* L_26; L_26 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_25, NULL); V_0 = L_26; RuntimeObject* L_27 = ___1_ob; NullCheck(L_27); Type_t* L_28; L_28 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_27, NULL); Type_t* L_29 = V_0; NullCheck(L_28); bool L_30; L_30 = VirtualFuncInvoker1< bool, Type_t* >::Invoke(22 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_28, L_29); if (L_30) { goto IL_00bd; } } { RuntimeObject* L_31 = ___1_ob; Type_t* L_32 = V_0; RuntimeObject* L_33; L_33 = XmlSerializationWriterInterpreter_ImplicitConvert_mC0A90835FFBC3F85D2DB9BA8944517142467716D(L_31, L_32, NULL); ___1_ob = L_33; } IL_00bd: { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_34 = ___0_typeMap; RuntimeObject* L_35 = ___1_ob; NullCheck(L_35); Type_t* L_36; L_36 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_35, NULL); NullCheck(L_34); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_37; L_37 = XmlTypeMapping_GetRealTypeMap_m0A55DB07D8FEEA87A8206F579D258D3FBC5D5F29(L_34, L_36, NULL); V_1 = L_37; XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_38 = V_1; if (L_38) { goto IL_015e; } } { RuntimeObject* L_39 = ___1_ob; NullCheck(L_39); Type_t* L_40; L_40 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_39, NULL); NullCheck(L_40); bool L_41; L_41 = Type_get_IsArray_mB9B8CA713B2AA9D6AFECC24E05AF78D22532B673(L_40, NULL); if (!L_41) { goto IL_0152; } } { RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_42 = { reinterpret_cast (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_43; L_43 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_42, NULL); RuntimeObject* L_44 = ___1_ob; NullCheck(L_44); Type_t* L_45; L_45 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_44, NULL); NullCheck(L_45); Type_t* L_46; L_46 = VirtualFuncInvoker0< Type_t* >::Invoke(46 /* System.Type System.Type::GetElementType() */, L_45); NullCheck(L_43); bool L_47; L_47 = VirtualFuncInvoker1< bool, Type_t* >::Invoke(22 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_43, L_46); if (!L_47) { goto IL_0152; } } { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_48; L_48 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL); String_t* L_49 = ___2_element; String_t* L_50 = ___3_namesp; NullCheck(L_48); XmlWriter_WriteStartElement_mAC8867077A8F222C966E6720B70F8808A655E3A0(L_48, L_49, L_50, NULL); RuntimeObject* L_51 = ___1_ob; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_51, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var))); RuntimeObject* L_52; L_52 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_51, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var))); V_2 = L_52; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_0135: {// begin finally (depth: 1) { RuntimeObject* L_53 = V_2; V_3 = ((RuntimeObject*)IsInst((RuntimeObject*)L_53, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var)); RuntimeObject* L_54 = V_3; if (!L_54) { goto IL_0145; } } { RuntimeObject* L_55 = V_3; NullCheck(L_55); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_55); } IL_0145: { return; } }// end finally (depth: 1) }); try {// begin try (depth: 1) { goto IL_012b_1; } IL_0115_1: { RuntimeObject* L_56 = V_2; NullCheck(L_56); RuntimeObject* L_57; L_57 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_56); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_58; L_58 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL); NullCheck(((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)CastclassClass((RuntimeObject*)L_57, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF_il2cpp_TypeInfo_var))); VirtualActionInvoker1< XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* >::Invoke(45 /* System.Void System.Xml.XmlNode::WriteTo(System.Xml.XmlWriter) */, ((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)CastclassClass((RuntimeObject*)L_57, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF_il2cpp_TypeInfo_var)), L_58); } IL_012b_1: { RuntimeObject* L_59 = V_2; NullCheck(L_59); bool L_60; L_60 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_59); if (L_60) { goto IL_0115_1; } } { goto IL_0146; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_0146: { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_61; L_61 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL); NullCheck(L_61); VirtualActionInvoker0::Invoke(10 /* System.Void System.Xml.XmlWriter::WriteEndElement() */, L_61); return; } IL_0152: { String_t* L_62 = ___2_element; String_t* L_63 = ___3_namesp; RuntimeObject* L_64 = ___1_ob; XmlSerializationWriter_WriteTypedPrimitive_m9AF71A0CBE191A76BA04DF17501BB08C6C3E0D50(__this, L_62, L_63, L_64, (bool)1, NULL); return; } IL_015e: { bool L_65 = ___6_writeWrappingElem; if (!L_65) { goto IL_017b; } } { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_66 = V_1; XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_67 = ___0_typeMap; if ((!(((RuntimeObject*)(XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9*)L_66) == ((RuntimeObject*)(XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9*)L_67)))) { goto IL_016e; } } { int32_t L_68 = __this->____format_9; if (L_68) { goto IL_0171; } } IL_016e: { ___5_needType = (bool)1; } IL_0171: { String_t* L_69 = ___2_element; String_t* L_70 = ___3_namesp; RuntimeObject* L_71 = ___1_ob; XmlSerializationWriter_WriteStartElement_mCB83EEA5BA0CDBDD2D62768D10D249B7D5835A70(__this, L_69, L_70, L_71, NULL); } IL_017b: { bool L_72 = ___5_needType; if (!L_72) { goto IL_0191; } } { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_73 = V_1; NullCheck(L_73); String_t* L_74; L_74 = XmlTypeMapping_get_XmlType_m5A30CB4EE3541CC1C65003757D5E743042846222_inline(L_73, NULL); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_75 = V_1; NullCheck(L_75); String_t* L_76; L_76 = XmlTypeMapping_get_XmlTypeNamespace_m9EF835B324606DBC55DF96AEFD62A9F4F7ED2B96(L_75, NULL); XmlSerializationWriter_WriteXsiType_m24C3B36D396116877E22848B9B12EF6D6BE4D122(__this, L_74, L_76, NULL); } IL_0191: { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_77 = V_1; NullCheck(L_77); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_78; L_78 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_77, NULL); NullCheck(L_78); int32_t L_79; L_79 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_78, NULL); V_4 = L_79; int32_t L_80 = V_4; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_80, 1))) { case 0: { goto IL_01d3; } case 1: { goto IL_01e0; } case 2: { goto IL_01c6; } case 3: { goto IL_01b9; } } } { goto IL_01eb; } IL_01b9: { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_81 = V_1; RuntimeObject* L_82 = ___1_ob; String_t* L_83 = ___2_element; String_t* L_84 = ___3_namesp; VirtualActionInvoker4< XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9*, RuntimeObject*, String_t*, String_t* >::Invoke(7 /* System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteObjectElement(System.Xml.Serialization.XmlTypeMapping,System.Object,System.String,System.String) */, __this, L_81, L_82, L_83, L_84); goto IL_01eb; } IL_01c6: { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_85 = V_1; RuntimeObject* L_86 = ___1_ob; String_t* L_87 = ___2_element; String_t* L_88 = ___3_namesp; VirtualActionInvoker4< XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9*, RuntimeObject*, String_t*, String_t* >::Invoke(10 /* System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteListElement(System.Xml.Serialization.XmlTypeMapping,System.Object,System.String,System.String) */, __this, L_85, L_86, L_87, L_88); goto IL_01eb; } IL_01d3: { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_89 = V_1; RuntimeObject* L_90 = ___1_ob; String_t* L_91 = ___2_element; String_t* L_92 = ___3_namesp; VirtualActionInvoker4< XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9*, RuntimeObject*, String_t*, String_t* >::Invoke(11 /* System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WritePrimitiveElement(System.Xml.Serialization.XmlTypeMapping,System.Object,System.String,System.String) */, __this, L_89, L_90, L_91, L_92); goto IL_01eb; } IL_01e0: { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_93 = V_1; RuntimeObject* L_94 = ___1_ob; String_t* L_95 = ___2_element; String_t* L_96 = ___3_namesp; VirtualActionInvoker4< XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9*, RuntimeObject*, String_t*, String_t* >::Invoke(12 /* System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteEnumElement(System.Xml.Serialization.XmlTypeMapping,System.Object,System.String,System.String) */, __this, L_93, L_94, L_95, L_96); } IL_01eb: { bool L_97 = ___6_writeWrappingElem; if (!L_97) { goto IL_01f6; } } { RuntimeObject* L_98 = ___1_ob; XmlSerializationWriter_WriteEndElement_m3ECF0B5AFAA9CD63B5B78470B1A48FE92CC6F5B8(__this, L_98, NULL); } IL_01f6: { return; } } // System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteMessage(System.Xml.Serialization.XmlMembersMapping,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriterInterpreter_WriteMessage_m67176FE66A5BE2488C8303DEFF8B6329CAE212A9 (XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9* __this, XmlMembersMapping_t0D686C86E19B598F10E53AF79EC905A7E2BDB62C* ___0_membersMap, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___1_parameters, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6D67ADE9CC145DA3A39BC63DF500A7B0EC88CE4A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7C014955313A7D33D5D04696B884B25325E6393C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral805B49550CB3377ECB61B1B75AB5C38E884BA80C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE249DDFD90EBFAAEE63734F28F6668A2FB5BD5AF); s_Il2CppMethodInitialized = true; } { XmlMembersMapping_t0D686C86E19B598F10E53AF79EC905A7E2BDB62C* L_0 = ___0_membersMap; NullCheck(L_0); bool L_1; L_1 = XmlMembersMapping_get_HasWrapperElement_mE921652D9CEADD03E4BCC13C9AC26E457C640CE5_inline(L_0, NULL); if (!L_1) { goto IL_0081; } } { XmlSerializationWriter_TopLevelElement_mFEE610422C07AE555FDA27A05CEB1E9616026FEC(__this, NULL); XmlMembersMapping_t0D686C86E19B598F10E53AF79EC905A7E2BDB62C* L_2 = ___0_membersMap; NullCheck(L_2); String_t* L_3; L_3 = XmlMapping_get_ElementName_m2BDBF7797A1F38972A4355CF694E0D468B2A9FC0_inline(L_2, NULL); XmlMembersMapping_t0D686C86E19B598F10E53AF79EC905A7E2BDB62C* L_4 = ___0_membersMap; NullCheck(L_4); String_t* L_5; L_5 = XmlMapping_get_Namespace_m196651C91FB3C3442AC616C977345E89450F024F_inline(L_4, NULL); int32_t L_6 = __this->____format_9; XmlSerializationWriter_WriteStartElement_m10BA6216843AE75F6DB9631DDA883F1B831BEAF6(__this, L_3, L_5, (bool)((((int32_t)L_6) == ((int32_t)0))? 1 : 0), NULL); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_7; L_7 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL); NullCheck(L_7); String_t* L_8; L_8 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(30 /* System.String System.Xml.XmlWriter::LookupPrefix(System.String) */, L_7, _stringLiteralE249DDFD90EBFAAEE63734F28F6668A2FB5BD5AF); if (L_8) { goto IL_0055; } } { XmlSerializationWriter_WriteAttribute_m25B87065E059F9AA2D8E46158DB0C3A9180CC63B(__this, _stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3, _stringLiteral805B49550CB3377ECB61B1B75AB5C38E884BA80C, _stringLiteralE249DDFD90EBFAAEE63734F28F6668A2FB5BD5AF, _stringLiteralE249DDFD90EBFAAEE63734F28F6668A2FB5BD5AF, NULL); } IL_0055: { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_9; L_9 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL); NullCheck(L_9); String_t* L_10; L_10 = VirtualFuncInvoker1< String_t*, String_t* >::Invoke(30 /* System.String System.Xml.XmlWriter::LookupPrefix(System.String) */, L_9, _stringLiteral7C014955313A7D33D5D04696B884B25325E6393C); if (L_10) { goto IL_0081; } } { XmlSerializationWriter_WriteAttribute_m25B87065E059F9AA2D8E46158DB0C3A9180CC63B(__this, _stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3, _stringLiteral6D67ADE9CC145DA3A39BC63DF500A7B0EC88CE4A, _stringLiteral7C014955313A7D33D5D04696B884B25325E6393C, _stringLiteral7C014955313A7D33D5D04696B884B25325E6393C, NULL); } IL_0081: { XmlMembersMapping_t0D686C86E19B598F10E53AF79EC905A7E2BDB62C* L_11 = ___0_membersMap; NullCheck(L_11); ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0* L_12; L_12 = XmlMapping_get_ObjectMap_m63D1AEAC8EDD8396357898D337E350673A1E9003_inline(L_11, NULL); ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_13 = ___1_parameters; XmlSerializationWriterInterpreter_WriteMembers_m3A9E0D500CD360DBC683D76DBE17EBAA796BBF98(__this, ((ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109*)CastclassClass((RuntimeObject*)L_12, ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109_il2cpp_TypeInfo_var)), (RuntimeObject*)L_13, (bool)1, NULL); XmlMembersMapping_t0D686C86E19B598F10E53AF79EC905A7E2BDB62C* L_14 = ___0_membersMap; NullCheck(L_14); bool L_15; L_15 = XmlMembersMapping_get_HasWrapperElement_mE921652D9CEADD03E4BCC13C9AC26E457C640CE5_inline(L_14, NULL); if (!L_15) { goto IL_00a2; } } { XmlSerializationWriter_WriteEndElement_mDCC1D34A7B81C6B8EB8E6C924E5752EC39F9FA1F(__this, NULL); } IL_00a2: { return; } } // System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteObjectElement(System.Xml.Serialization.XmlTypeMapping,System.Object,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriterInterpreter_WriteObjectElement_mC4AD7377974321D88668A5622FF6EE3A3D9C1A67 (XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___0_typeMap, RuntimeObject* ___1_ob, String_t* ___2_element, String_t* ___3_namesp, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* V_0 = NULL; { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_0 = ___0_typeMap; NullCheck(L_0); ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0* L_1; L_1 = XmlMapping_get_ObjectMap_m63D1AEAC8EDD8396357898D337E350673A1E9003_inline(L_0, NULL); V_0 = ((ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109*)CastclassClass((RuntimeObject*)L_1, ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109_il2cpp_TypeInfo_var)); ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_2 = V_0; NullCheck(L_2); XmlTypeMapMemberNamespaces_t1493E4BE21467D51FB1CDE88D538FA97815D3112* L_3; L_3 = ClassMap_get_NamespaceDeclarations_m5EF288255B1F07783CF889C781DB6D6BEAF133E1_inline(L_2, NULL); if (!L_3) { goto IL_002b; } } { ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_4 = V_0; NullCheck(L_4); XmlTypeMapMemberNamespaces_t1493E4BE21467D51FB1CDE88D538FA97815D3112* L_5; L_5 = ClassMap_get_NamespaceDeclarations_m5EF288255B1F07783CF889C781DB6D6BEAF133E1_inline(L_4, NULL); RuntimeObject* L_6 = ___1_ob; NullCheck(L_5); RuntimeObject* L_7; L_7 = XmlTypeMapMember_GetValue_mB762710324E36B398ED02670400043C5462A5ECF(L_5, L_6, NULL); XmlSerializationWriter_WriteNamespaceDeclarations_mF1DFEC2486E203E3324C20EB3A81210B18463CA9(__this, ((XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93*)CastclassClass((RuntimeObject*)L_7, XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93_il2cpp_TypeInfo_var)), NULL); } IL_002b: { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_8 = ___0_typeMap; RuntimeObject* L_9 = ___1_ob; VirtualActionInvoker2< XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9*, RuntimeObject* >::Invoke(8 /* System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteObjectElementAttributes(System.Xml.Serialization.XmlTypeMapping,System.Object) */, __this, L_8, L_9); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_10 = ___0_typeMap; RuntimeObject* L_11 = ___1_ob; VirtualActionInvoker2< XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9*, RuntimeObject* >::Invoke(9 /* System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteObjectElementElements(System.Xml.Serialization.XmlTypeMapping,System.Object) */, __this, L_10, L_11); return; } } // System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteObjectElementAttributes(System.Xml.Serialization.XmlTypeMapping,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriterInterpreter_WriteObjectElementAttributes_mE18347445161636A46E720A729B5C155DF9FF885 (XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___0_typeMap, RuntimeObject* ___1_ob, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* V_0 = NULL; { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_0 = ___0_typeMap; NullCheck(L_0); ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0* L_1; L_1 = XmlMapping_get_ObjectMap_m63D1AEAC8EDD8396357898D337E350673A1E9003_inline(L_0, NULL); V_0 = ((ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109*)CastclassClass((RuntimeObject*)L_1, ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109_il2cpp_TypeInfo_var)); ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_2 = V_0; RuntimeObject* L_3 = ___1_ob; XmlSerializationWriterInterpreter_WriteAttributeMembers_mD3071391C2C5056FD39AF81858D0C29A8CDA83B1(__this, L_2, L_3, (bool)0, NULL); return; } } // System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteObjectElementElements(System.Xml.Serialization.XmlTypeMapping,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriterInterpreter_WriteObjectElementElements_m025D3CC5CBC56E29581B8D0469B83D7DB5B88215 (XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___0_typeMap, RuntimeObject* ___1_ob, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* V_0 = NULL; { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_0 = ___0_typeMap; NullCheck(L_0); ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0* L_1; L_1 = XmlMapping_get_ObjectMap_m63D1AEAC8EDD8396357898D337E350673A1E9003_inline(L_0, NULL); V_0 = ((ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109*)CastclassClass((RuntimeObject*)L_1, ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109_il2cpp_TypeInfo_var)); ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_2 = V_0; RuntimeObject* L_3 = ___1_ob; XmlSerializationWriterInterpreter_WriteElementMembers_m473C65D604DE952FAC43116BD4A6BB98A2F08645(__this, L_2, L_3, (bool)0, NULL); return; } } // System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteMembers(System.Xml.Serialization.ClassMap,System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriterInterpreter_WriteMembers_m3A9E0D500CD360DBC683D76DBE17EBAA796BBF98 (XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9* __this, ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* ___0_map, RuntimeObject* ___1_ob, bool ___2_isValueList, const RuntimeMethod* method) { { ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_0 = ___0_map; RuntimeObject* L_1 = ___1_ob; bool L_2 = ___2_isValueList; XmlSerializationWriterInterpreter_WriteAttributeMembers_mD3071391C2C5056FD39AF81858D0C29A8CDA83B1(__this, L_0, L_1, L_2, NULL); ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_3 = ___0_map; RuntimeObject* L_4 = ___1_ob; bool L_5 = ___2_isValueList; XmlSerializationWriterInterpreter_WriteElementMembers_m473C65D604DE952FAC43116BD4A6BB98A2F08645(__this, L_3, L_4, L_5, NULL); return; } } // System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteAttributeMembers(System.Xml.Serialization.ClassMap,System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriterInterpreter_WriteAttributeMembers_mD3071391C2C5056FD39AF81858D0C29A8CDA83B1 (XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9* __this, ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* ___0_map, RuntimeObject* ___1_ob, bool ___2_isValueList, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE); s_Il2CppMethodInitialized = true; } XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* V_0 = NULL; RuntimeObject* V_1 = NULL; RuntimeObject* V_2 = NULL; RuntimeObject* V_3 = NULL; XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* V_4 = NULL; RuntimeObject* V_5 = NULL; XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* V_6 = NULL; { ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_0 = ___0_map; NullCheck(L_0); XmlTypeMapMemberAnyAttribute_t936B5C08A209D3F342575957ACCBF1F7984095F1* L_1; L_1 = ClassMap_get_DefaultAnyAttributeMember_m88660193A65BE269D1E4F7ADEA4778BC78D40B08_inline(L_0, NULL); V_0 = L_1; XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_2 = V_0; if (!L_2) { goto IL_0077; } } { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_3 = V_0; RuntimeObject* L_4 = ___1_ob; bool L_5 = ___2_isValueList; bool L_6; L_6 = XmlSerializationWriterInterpreter_MemberHasValue_mFEC8075A0CB8DC3279796618FBD2855E8081FE6C(__this, L_3, L_4, L_5, NULL); if (!L_6) { goto IL_0077; } } { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_7 = V_0; RuntimeObject* L_8 = ___1_ob; bool L_9 = ___2_isValueList; RuntimeObject* L_10; L_10 = XmlSerializationWriterInterpreter_GetMemberValue_mBA34A9A19CE56F7DD72184499257F1E7F1446E90(__this, L_7, L_8, L_9, NULL); V_2 = ((RuntimeObject*)Castclass((RuntimeObject*)L_10, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var)); RuntimeObject* L_11 = V_2; if (!L_11) { goto IL_0077; } } { RuntimeObject* L_12 = V_2; NullCheck(L_12); RuntimeObject* L_13; L_13 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, L_12); V_3 = L_13; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_0063: {// begin finally (depth: 1) { RuntimeObject* L_14 = V_3; V_5 = ((RuntimeObject*)IsInst((RuntimeObject*)L_14, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var)); RuntimeObject* L_15 = V_5; if (!L_15) { goto IL_0076; } } { RuntimeObject* L_16 = V_5; NullCheck(L_16); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_16); } IL_0076: { return; } }// end finally (depth: 1) }); try {// begin try (depth: 1) { goto IL_0059_1; } IL_0030_1: { RuntimeObject* L_17 = V_3; NullCheck(L_17); RuntimeObject* L_18; L_18 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_17); V_4 = ((XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18*)CastclassClass((RuntimeObject*)L_18, XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18_il2cpp_TypeInfo_var)); XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_19 = V_4; NullCheck(L_19); String_t* L_20; L_20 = VirtualFuncInvoker0< String_t* >::Invoke(35 /* System.String System.Xml.XmlNode::get_NamespaceURI() */, L_19); bool L_21; L_21 = String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6(L_20, _stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE, NULL); if (!L_21) { goto IL_0059_1; } } { XmlAttribute_t4B6CC461196FBF5CC9F777E74CC82C98E0CA9D18* L_22 = V_4; RuntimeObject* L_23 = ___1_ob; XmlSerializationWriter_WriteXmlAttribute_mC90D083F605D89967073970C28C7CF10B6F6706F(__this, L_22, L_23, NULL); } IL_0059_1: { RuntimeObject* L_24 = V_3; NullCheck(L_24); bool L_25; L_25 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_24); if (L_25) { goto IL_0030_1; } } { goto IL_0077; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_0077: { ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_26 = ___0_map; NullCheck(L_26); RuntimeObject* L_27; L_27 = ClassMap_get_AttributeMembers_mB495B40347CA0E1075AB32C00E9D0E3D0510C94F(L_26, NULL); V_1 = L_27; RuntimeObject* L_28 = V_1; if (!L_28) { goto IL_00f3; } } { RuntimeObject* L_29 = V_1; NullCheck(L_29); RuntimeObject* L_30; L_30 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, L_29); V_3 = L_30; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_00df: {// begin finally (depth: 1) { RuntimeObject* L_31 = V_3; V_5 = ((RuntimeObject*)IsInst((RuntimeObject*)L_31, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var)); RuntimeObject* L_32 = V_5; if (!L_32) { goto IL_00f2; } } { RuntimeObject* L_33 = V_5; NullCheck(L_33); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_33); } IL_00f2: { return; } }// end finally (depth: 1) }); try {// begin try (depth: 1) { goto IL_00d5_1; } IL_008a_1: { RuntimeObject* L_34 = V_3; NullCheck(L_34); RuntimeObject* L_35; L_35 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_34); V_6 = ((XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4*)CastclassClass((RuntimeObject*)L_35, XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4_il2cpp_TypeInfo_var)); XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* L_36 = V_6; RuntimeObject* L_37 = ___1_ob; bool L_38 = ___2_isValueList; bool L_39; L_39 = XmlSerializationWriterInterpreter_MemberHasValue_mFEC8075A0CB8DC3279796618FBD2855E8081FE6C(__this, L_36, L_37, L_38, NULL); if (!L_39) { goto IL_00d5_1; } } { XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* L_40 = V_6; NullCheck(L_40); String_t* L_41; L_41 = XmlTypeMapMemberAttribute_get_AttributeName_m79384B2B6097452969DD46364D07C2F8B353B064_inline(L_40, NULL); XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* L_42 = V_6; NullCheck(L_42); String_t* L_43; L_43 = XmlTypeMapMemberAttribute_get_Namespace_m6907BC42459BA2FBEE550EF180E697DDF19A8C37_inline(L_42, NULL); XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* L_44 = V_6; NullCheck(L_44); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_45; L_45 = XmlTypeMapMemberAttribute_get_MappedType_mD2DBE6E539F3B9A6F922C1DD37084DCDACE07025_inline(L_44, NULL); XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* L_46 = V_6; NullCheck(L_46); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_47; L_47 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_46, NULL); XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* L_48 = V_6; RuntimeObject* L_49 = ___1_ob; bool L_50 = ___2_isValueList; RuntimeObject* L_51; L_51 = XmlSerializationWriterInterpreter_GetMemberValue_mBA34A9A19CE56F7DD72184499257F1E7F1446E90(__this, L_48, L_49, L_50, NULL); String_t* L_52; L_52 = XmlSerializationWriterInterpreter_GetStringValue_m417BDD772C59AA1A72558744FD56E78C129E1DEE(__this, L_45, L_47, L_51, NULL); XmlSerializationWriter_WriteAttribute_mAA8601A17489000A033533611237057B779C91B1(__this, L_41, L_43, L_52, NULL); } IL_00d5_1: { RuntimeObject* L_53 = V_3; NullCheck(L_53); bool L_54; L_54 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_53); if (L_54) { goto IL_008a_1; } } { goto IL_00f3; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_00f3: { return; } } // System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteElementMembers(System.Xml.Serialization.ClassMap,System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriterInterpreter_WriteElementMembers_m473C65D604DE952FAC43116BD4A6BB98A2F08645 (XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9* __this, ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* ___0_map, RuntimeObject* ___1_ob, bool ___2_isValueList, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapMemberAnyAttribute_t936B5C08A209D3F342575957ACCBF1F7984095F1_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapMemberList_t5542A0234B55CC3AD3EDD7B830E7C4603FAAD63E_0_0_0_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; RuntimeObject* V_1 = NULL; XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* V_2 = NULL; RuntimeObject* V_3 = NULL; Type_t* V_4 = NULL; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* V_5 = NULL; RuntimeObject* V_6 = NULL; { ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* L_0 = ___0_map; NullCheck(L_0); RuntimeObject* L_1; L_1 = ClassMap_get_ElementMembers_m28BCFDC1D5FC50F910FBCF82D9C30472482A505D_inline(L_0, NULL); V_0 = L_1; RuntimeObject* L_2 = V_0; if (!L_2) { goto IL_0136; } } { RuntimeObject* L_3 = V_0; NullCheck(L_3); RuntimeObject* L_4; L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, L_3); V_1 = L_4; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_0122: {// begin finally (depth: 1) { RuntimeObject* L_5 = V_1; V_6 = ((RuntimeObject*)IsInst((RuntimeObject*)L_5, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var)); RuntimeObject* L_6 = V_6; if (!L_6) { goto IL_0135; } } { RuntimeObject* L_7 = V_6; NullCheck(L_7); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_7); } IL_0135: { return; } }// end finally (depth: 1) }); try {// begin try (depth: 1) { goto IL_0115_1; } IL_0019_1: { RuntimeObject* L_8 = V_1; NullCheck(L_8); RuntimeObject* L_9; L_9 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_8); V_2 = ((XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840*)CastclassClass((RuntimeObject*)L_9, XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840_il2cpp_TypeInfo_var)); XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* L_10 = V_2; RuntimeObject* L_11 = ___1_ob; bool L_12 = ___2_isValueList; bool L_13; L_13 = XmlSerializationWriterInterpreter_MemberHasValue_mFEC8075A0CB8DC3279796618FBD2855E8081FE6C(__this, L_10, L_11, L_12, NULL); if (!L_13) { goto IL_0115_1; } } { XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* L_14 = V_2; RuntimeObject* L_15 = ___1_ob; bool L_16 = ___2_isValueList; RuntimeObject* L_17; L_17 = XmlSerializationWriterInterpreter_GetMemberValue_mBA34A9A19CE56F7DD72184499257F1E7F1446E90(__this, L_14, L_15, L_16, NULL); V_3 = L_17; XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* L_18 = V_2; NullCheck(L_18); Type_t* L_19; L_19 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_18, NULL); V_4 = L_19; Type_t* L_20 = V_4; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_21 = { reinterpret_cast (XmlTypeMapMemberList_t5542A0234B55CC3AD3EDD7B830E7C4603FAAD63E_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_22; L_22 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_21, NULL); bool L_23; L_23 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_20, L_22, NULL); if (!L_23) { goto IL_0075_1; } } { XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* L_24 = V_2; NullCheck(L_24); XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_25; L_25 = XmlTypeMapMemberElement_get_ElementInfo_m62E3A285CDAFF7621EA03A0DA6B1966D5432D337(L_24, NULL); NullCheck(L_25); RuntimeObject* L_26; L_26 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(28 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_25, 0); RuntimeObject* L_27 = V_3; XmlSerializationWriterInterpreter_WriteMemberElement_mB29A5B7EFEB7D6FE5CCDEDA132F923E79D6F5F43(__this, ((XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32*)CastclassClass((RuntimeObject*)L_26, XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var)), L_27, NULL); goto IL_0115_1; } IL_0075_1: { Type_t* L_28 = V_4; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_29 = { reinterpret_cast (XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_30; L_30 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_29, NULL); bool L_31; L_31 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_28, L_30, NULL); if (!L_31) { goto IL_00aa_1; } } { RuntimeObject* L_32 = V_3; if (!L_32) { goto IL_0115_1; } } { RuntimeObject* L_33 = ___1_ob; XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* L_34 = V_2; NullCheck(L_34); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_35; L_35 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_34, NULL); XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* L_36 = V_2; NullCheck(((XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38*)CastclassClass((RuntimeObject*)L_36, XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38_il2cpp_TypeInfo_var))); ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* L_37; L_37 = XmlTypeMapMemberFlatList_get_ListMap_mAAD12C509481E6855A9C4865874566320C256EBC_inline(((XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38*)CastclassClass((RuntimeObject*)L_36, XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38_il2cpp_TypeInfo_var)), NULL); RuntimeObject* L_38 = V_3; XmlSerializationWriterInterpreter_WriteListContent_m134B4C06A45FA059536931340F9447EEBA4154E7(__this, L_33, L_35, L_37, L_38, (StringBuilder_t*)NULL, NULL); goto IL_0115_1; } IL_00aa_1: { Type_t* L_39 = V_4; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_40 = { reinterpret_cast (XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_41; L_41 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_40, NULL); bool L_42; L_42 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_39, L_41, NULL); if (!L_42) { goto IL_00cf_1; } } { RuntimeObject* L_43 = V_3; if (!L_43) { goto IL_0115_1; } } { XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* L_44 = V_2; RuntimeObject* L_45 = V_3; XmlSerializationWriterInterpreter_WriteAnyElementContent_m6FA0CBF4CCF97E36DE0A4C4AC4CF557A965A8823(__this, ((XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950*)CastclassClass((RuntimeObject*)L_44, XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950_il2cpp_TypeInfo_var)), L_45, NULL); goto IL_0115_1; } IL_00cf_1: { Type_t* L_46 = V_4; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_47 = { reinterpret_cast (XmlTypeMapMemberAnyAttribute_t936B5C08A209D3F342575957ACCBF1F7984095F1_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_48; L_48 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_47, NULL); bool L_49; L_49 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_46, L_48, NULL); if (L_49) { goto IL_0115_1; } } { Type_t* L_50 = V_4; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_51 = { reinterpret_cast (XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_52; L_52 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_51, NULL); bool L_53; L_53 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_50, L_52, NULL); if (!L_53) { goto IL_010a_1; } } { XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* L_54 = V_2; RuntimeObject* L_55 = ___1_ob; RuntimeObject* L_56 = V_3; NullCheck(L_54); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_57; L_57 = XmlTypeMapMemberElement_FindElement_mD06805510E6920C0643A9C2C76800A87A97BCA40(L_54, L_55, L_56, NULL); V_5 = L_57; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_58 = V_5; RuntimeObject* L_59 = V_3; XmlSerializationWriterInterpreter_WriteMemberElement_mB29A5B7EFEB7D6FE5CCDEDA132F923E79D6F5F43(__this, L_58, L_59, NULL); goto IL_0115_1; } IL_010a_1: { InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_60 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_60); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_60, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6FFF89F12DC2A6CF2CA9D0A3799CAF055178ACE5)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_60, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializationWriterInterpreter_WriteElementMembers_m473C65D604DE952FAC43116BD4A6BB98A2F08645_RuntimeMethod_var))); } IL_0115_1: { RuntimeObject* L_61 = V_1; NullCheck(L_61); bool L_62; L_62 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_61); if (L_62) { goto IL_0019_1; } } { goto IL_0136; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_0136: { return; } } // System.Object System.Xml.Serialization.XmlSerializationWriterInterpreter::GetMemberValue(System.Xml.Serialization.XmlTypeMapMember,System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationWriterInterpreter_GetMemberValue_mBA34A9A19CE56F7DD72184499257F1E7F1446E90 (XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9* __this, XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* ___0_member, RuntimeObject* ___1_ob, bool ___2_isValueList, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { bool L_0 = ___2_isValueList; if (!L_0) { goto IL_0011; } } { RuntimeObject* L_1 = ___1_ob; XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_2 = ___0_member; NullCheck(L_2); int32_t L_3; L_3 = XmlTypeMapMember_get_GlobalIndex_mC43A1F277B76C624EFAF264B32293499D51853B6_inline(L_2, NULL); NullCheck(((ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)Castclass((RuntimeObject*)L_1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var))); int32_t L_4 = L_3; RuntimeObject* L_5 = (((ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)Castclass((RuntimeObject*)L_1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)))->GetAt(static_cast(L_4)); return L_5; } IL_0011: { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_6 = ___0_member; RuntimeObject* L_7 = ___1_ob; NullCheck(L_6); RuntimeObject* L_8; L_8 = XmlTypeMapMember_GetValue_mB762710324E36B398ED02670400043C5462A5ECF(L_6, L_7, NULL); return L_8; } } // System.Boolean System.Xml.Serialization.XmlSerializationWriterInterpreter::MemberHasValue(System.Xml.Serialization.XmlTypeMapMember,System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlSerializationWriterInterpreter_MemberHasValue_mFEC8075A0CB8DC3279796618FBD2855E8081FE6C (XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9* __this, XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* ___0_member, RuntimeObject* ___1_ob, bool ___2_isValueList, 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*)&DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; Type_t* V_1 = NULL; { bool L_0 = ___2_isValueList; if (!L_0) { goto IL_0027; } } { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_1 = ___0_member; NullCheck(L_1); bool L_2; L_2 = XmlTypeMapMember_get_IsOptionalValueType_m21B5B22EAE095810603E2FE3CCD076B126272047(L_1, NULL); if (!L_2) { goto IL_0016; } } { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_3 = ___0_member; RuntimeObject* L_4 = ___1_ob; NullCheck(L_3); bool L_5; L_5 = XmlTypeMapMember_GetValueSpecified_mC0FAFD520F9FE9A1DFAFFE40C0B1913CA83E3637(L_3, L_4, NULL); if (L_5) { goto IL_0016; } } { return (bool)0; } IL_0016: { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_6 = ___0_member; NullCheck(L_6); int32_t L_7; L_7 = XmlTypeMapMember_get_GlobalIndex_mC43A1F277B76C624EFAF264B32293499D51853B6_inline(L_6, NULL); RuntimeObject* L_8 = ___1_ob; NullCheck(((ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)Castclass((RuntimeObject*)L_8, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var))); return (bool)((((int32_t)L_7) < ((int32_t)((int32_t)(((RuntimeArray*)((ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)Castclass((RuntimeObject*)L_8, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)))->max_length))))? 1 : 0); } IL_0027: { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_9 = ___0_member; NullCheck(L_9); RuntimeObject* L_10; L_10 = XmlTypeMapMember_get_DefaultValue_m9E7FE48431CBCD4C9757423398D48F30B919CFC3_inline(L_9, NULL); il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var); DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_11 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0; if ((((RuntimeObject*)(RuntimeObject*)L_10) == ((RuntimeObject*)(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC*)L_11))) { goto IL_0093; } } { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_12 = ___0_member; RuntimeObject* L_13 = ___1_ob; bool L_14 = ___2_isValueList; RuntimeObject* L_15; L_15 = XmlSerializationWriterInterpreter_GetMemberValue_mBA34A9A19CE56F7DD72184499257F1E7F1446E90(__this, L_12, L_13, L_14, NULL); V_0 = L_15; RuntimeObject* L_16 = V_0; if (L_16) { goto IL_004b; } } { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_17 = ___0_member; NullCheck(L_17); RuntimeObject* L_18; L_18 = XmlTypeMapMember_get_DefaultValue_m9E7FE48431CBCD4C9757423398D48F30B919CFC3_inline(L_17, NULL); if (L_18) { goto IL_004b; } } { return (bool)0; } IL_004b: { RuntimeObject* L_19 = V_0; if (!L_19) { goto IL_0080; } } { RuntimeObject* L_20 = V_0; NullCheck(L_20); Type_t* L_21; L_21 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_20, NULL); NullCheck(L_21); bool L_22; L_22 = VirtualFuncInvoker0< bool >::Invoke(70 /* System.Boolean System.Type::get_IsEnum() */, L_21); if (!L_22) { goto IL_0080; } } { RuntimeObject* L_23 = V_0; XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_24 = ___0_member; NullCheck(L_24); RuntimeObject* L_25; L_25 = XmlTypeMapMember_get_DefaultValue_m9E7FE48431CBCD4C9757423398D48F30B919CFC3_inline(L_24, NULL); NullCheck(L_23); bool L_26; L_26 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_23, L_25); if (!L_26) { goto IL_006b; } } { return (bool)0; } IL_006b: { RuntimeObject* L_27 = V_0; NullCheck(L_27); Type_t* L_28; L_28 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_27, NULL); il2cpp_codegen_runtime_class_init_inline(Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_il2cpp_TypeInfo_var); Type_t* L_29; L_29 = Enum_GetUnderlyingType_mEDDDC2C9F74ECC841E65E401C3703D59C37CBB05(L_28, NULL); V_1 = L_29; RuntimeObject* L_30 = V_0; Type_t* L_31 = V_1; il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var); RuntimeObject* L_32; L_32 = Convert_ChangeType_m2AA053891B5D1BD5CA7689B72EE5ADC95CD3E14B(L_30, L_31, (RuntimeObject*)NULL, NULL); V_0 = L_32; } IL_0080: { RuntimeObject* L_33 = V_0; if (!L_33) { goto IL_00a3; } } { RuntimeObject* L_34 = V_0; XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_35 = ___0_member; NullCheck(L_35); RuntimeObject* L_36; L_36 = XmlTypeMapMember_get_DefaultValue_m9E7FE48431CBCD4C9757423398D48F30B919CFC3_inline(L_35, NULL); NullCheck(L_34); bool L_37; L_37 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_34, L_36); if (!L_37) { goto IL_00a3; } } { return (bool)0; } IL_0093: { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_38 = ___0_member; NullCheck(L_38); bool L_39; L_39 = XmlTypeMapMember_get_IsOptionalValueType_m21B5B22EAE095810603E2FE3CCD076B126272047(L_38, NULL); if (!L_39) { goto IL_00a3; } } { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_40 = ___0_member; RuntimeObject* L_41 = ___1_ob; NullCheck(L_40); bool L_42; L_42 = XmlTypeMapMember_GetValueSpecified_mC0FAFD520F9FE9A1DFAFFE40C0B1913CA83E3637(L_40, L_41, NULL); return L_42; } IL_00a3: { return (bool)1; } } // System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteMemberElement(System.Xml.Serialization.XmlTypeMapElementInfo,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriterInterpreter_WriteMemberElement_mB29A5B7EFEB7D6FE5CCDEDA132F923E79D6F5F43 (XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9* __this, XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* ___0_elem, RuntimeObject* ___1_memberValue, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlSerializable_tE36AB1894460107283308E142C1106C4AB31A526_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC_il2cpp_TypeInfo_var); 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*)&XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; int32_t V_1 = 0; String_t* G_B5_0 = NULL; { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_0 = ___0_elem; NullCheck(L_0); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_1; L_1 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_0, NULL); NullCheck(L_1); int32_t L_2; L_2 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_1, NULL); V_1 = L_2; int32_t L_3 = V_1; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_3, 1))) { case 0: { goto IL_0086; } case 1: { goto IL_0086; } case 2: { goto IL_00f8; } case 3: { goto IL_0194; } case 4: { goto IL_021a; } case 5: { goto IL_0031; } } } { goto IL_0269; } IL_0031: { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_4 = ___0_elem; NullCheck(L_4); bool L_5; L_5 = XmlTypeMapElementInfo_get_WrappedElement_m4A1874E9B5785B35A519EC5266425156A3B78468_inline(L_4, NULL); if (L_5) { goto IL_0040; } } { G_B5_0 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709; goto IL_0046; } IL_0040: { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_6 = ___0_elem; NullCheck(L_6); String_t* L_7; L_7 = XmlTypeMapElementInfo_get_ElementName_m2B2B6484154E046A7FE5BE46092BF91A7B75D9CC_inline(L_6, NULL); G_B5_0 = L_7; } IL_0046: { V_0 = G_B5_0; int32_t L_8 = __this->____format_9; if ((!(((uint32_t)L_8) == ((uint32_t)1)))) { goto IL_006b; } } { RuntimeObject* L_9 = ___1_memberValue; String_t* L_10 = V_0; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_11 = ___0_elem; NullCheck(L_11); String_t* L_12; L_12 = XmlTypeMapElementInfo_get_Namespace_m94DAAADC3EFEBC302C4D3574BD4835F222345498_inline(L_11, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_13 = ___0_elem; NullCheck(L_13); bool L_14; L_14 = XmlTypeMapElementInfo_get_IsNullable_m5E6F72E9E7ADFA39100C6C0FFA1585BCDE4ACE75_inline(L_13, NULL); XmlSerializationWriter_WriteElementLiteral_m0E74FD75FE42BEB8D43B79333598C8DDC6EC4238(__this, ((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)CastclassClass((RuntimeObject*)L_9, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF_il2cpp_TypeInfo_var)), L_10, L_12, L_14, (bool)0, NULL); return; } IL_006b: { RuntimeObject* L_15 = ___1_memberValue; String_t* L_16 = V_0; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_17 = ___0_elem; NullCheck(L_17); String_t* L_18; L_18 = XmlTypeMapElementInfo_get_Namespace_m94DAAADC3EFEBC302C4D3574BD4835F222345498_inline(L_17, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_19 = ___0_elem; NullCheck(L_19); bool L_20; L_20 = XmlTypeMapElementInfo_get_IsNullable_m5E6F72E9E7ADFA39100C6C0FFA1585BCDE4ACE75_inline(L_19, NULL); XmlSerializationWriter_WriteElementEncoded_m669E23E74C69FAB9FEF6FAA511A0F6901E1FFEFA(__this, ((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)CastclassClass((RuntimeObject*)L_15, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF_il2cpp_TypeInfo_var)), L_16, L_18, L_20, (bool)0, NULL); return; } IL_0086: { int32_t L_21 = __this->____format_9; if ((!(((uint32_t)L_21) == ((uint32_t)1)))) { goto IL_00bb; } } { RuntimeObject* L_22 = ___1_memberValue; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_23 = ___0_elem; NullCheck(L_23); String_t* L_24; L_24 = XmlTypeMapElementInfo_get_ElementName_m2B2B6484154E046A7FE5BE46092BF91A7B75D9CC_inline(L_23, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_25 = ___0_elem; NullCheck(L_25); String_t* L_26; L_26 = XmlTypeMapElementInfo_get_Namespace_m94DAAADC3EFEBC302C4D3574BD4835F222345498_inline(L_25, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_27 = ___0_elem; NullCheck(L_27); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_28; L_28 = XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline(L_27, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_29 = ___0_elem; NullCheck(L_29); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_30; L_30 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_29, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_31 = ___0_elem; NullCheck(L_31); bool L_32; L_32 = XmlTypeMapElementInfo_get_WrappedElement_m4A1874E9B5785B35A519EC5266425156A3B78468_inline(L_31, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_33 = ___0_elem; NullCheck(L_33); bool L_34; L_34 = XmlTypeMapElementInfo_get_IsNullable_m5E6F72E9E7ADFA39100C6C0FFA1585BCDE4ACE75_inline(L_33, NULL); XmlSerializationWriterInterpreter_WritePrimitiveValueLiteral_m64F5EE0B8DF72D20007BEA801198FF8F8B381173(__this, L_22, L_24, L_26, L_28, L_30, L_32, L_34, NULL); return; } IL_00bb: { RuntimeObject* L_35 = ___1_memberValue; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_36 = ___0_elem; NullCheck(L_36); String_t* L_37; L_37 = XmlTypeMapElementInfo_get_ElementName_m2B2B6484154E046A7FE5BE46092BF91A7B75D9CC_inline(L_36, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_38 = ___0_elem; NullCheck(L_38); String_t* L_39; L_39 = XmlTypeMapElementInfo_get_Namespace_m94DAAADC3EFEBC302C4D3574BD4835F222345498_inline(L_38, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_40 = ___0_elem; NullCheck(L_40); String_t* L_41; L_41 = XmlTypeMapElementInfo_get_DataTypeName_mBC6E8CA4DD76FEE0551BFB93992D49C1C143519E(L_40, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_42 = ___0_elem; NullCheck(L_42); String_t* L_43; L_43 = XmlTypeMapElementInfo_get_DataTypeNamespace_mA8278DAED1A896D6AC2B28664C54E0D81155252D(L_42, NULL); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_44 = (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)il2cpp_codegen_object_new(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); NullCheck(L_44); XmlQualifiedName__ctor_m65632114A1726D9FAD0338BC2A8C28BB9D262C7B(L_44, L_41, L_43, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_45 = ___0_elem; NullCheck(L_45); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_46; L_46 = XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline(L_45, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_47 = ___0_elem; NullCheck(L_47); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_48; L_48 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_47, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_49 = ___0_elem; NullCheck(L_49); bool L_50; L_50 = XmlTypeMapElementInfo_get_WrappedElement_m4A1874E9B5785B35A519EC5266425156A3B78468_inline(L_49, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_51 = ___0_elem; NullCheck(L_51); bool L_52; L_52 = XmlTypeMapElementInfo_get_IsNullable_m5E6F72E9E7ADFA39100C6C0FFA1585BCDE4ACE75_inline(L_51, NULL); XmlSerializationWriterInterpreter_WritePrimitiveValueEncoded_m49AE009A4355CB956686487B0A6617B714D30723(__this, L_35, L_37, L_39, L_44, L_46, L_48, L_50, L_52, NULL); return; } IL_00f8: { RuntimeObject* L_53 = ___1_memberValue; if (L_53) { goto IL_0133; } } { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_54 = ___0_elem; NullCheck(L_54); bool L_55; L_55 = XmlTypeMapElementInfo_get_IsNullable_m5E6F72E9E7ADFA39100C6C0FFA1585BCDE4ACE75_inline(L_54, NULL); if (L_55) { goto IL_0104; } } { return; } IL_0104: { int32_t L_56 = __this->____format_9; if ((!(((uint32_t)L_56) == ((uint32_t)1)))) { goto IL_0120; } } { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_57 = ___0_elem; NullCheck(L_57); String_t* L_58; L_58 = XmlTypeMapElementInfo_get_ElementName_m2B2B6484154E046A7FE5BE46092BF91A7B75D9CC_inline(L_57, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_59 = ___0_elem; NullCheck(L_59); String_t* L_60; L_60 = XmlTypeMapElementInfo_get_Namespace_m94DAAADC3EFEBC302C4D3574BD4835F222345498_inline(L_59, NULL); XmlSerializationWriter_WriteNullTagLiteral_m721825C6D540C0D0BECDE4BD2948B1A270ACD31E(__this, L_58, L_60, NULL); return; } IL_0120: { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_61 = ___0_elem; NullCheck(L_61); String_t* L_62; L_62 = XmlTypeMapElementInfo_get_ElementName_m2B2B6484154E046A7FE5BE46092BF91A7B75D9CC_inline(L_61, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_63 = ___0_elem; NullCheck(L_63); String_t* L_64; L_64 = XmlTypeMapElementInfo_get_Namespace_m94DAAADC3EFEBC302C4D3574BD4835F222345498_inline(L_63, NULL); XmlSerializationWriter_WriteNullTagEncoded_mE5653B11D1EE4E31F2F81B4AEE5CE85354576127(__this, L_62, L_64, NULL); return; } IL_0133: { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_65 = ___0_elem; NullCheck(L_65); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_66; L_66 = XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline(L_65, NULL); NullCheck(L_66); bool L_67; L_67 = XmlTypeMapping_get_MultiReferenceType_m6FF513956B40419EBD15B5C1D3B0DEA151AABD84_inline(L_66, NULL); if (!L_67) { goto IL_015a; } } { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_68 = ___0_elem; NullCheck(L_68); String_t* L_69; L_69 = XmlTypeMapElementInfo_get_ElementName_m2B2B6484154E046A7FE5BE46092BF91A7B75D9CC_inline(L_68, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_70 = ___0_elem; NullCheck(L_70); String_t* L_71; L_71 = XmlTypeMapElementInfo_get_Namespace_m94DAAADC3EFEBC302C4D3574BD4835F222345498_inline(L_70, NULL); RuntimeObject* L_72 = ___1_memberValue; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_73 = ___0_elem; NullCheck(L_73); bool L_74; L_74 = XmlTypeMapElementInfo_get_IsNullable_m5E6F72E9E7ADFA39100C6C0FFA1585BCDE4ACE75_inline(L_73, NULL); XmlSerializationWriter_WriteReferencingElement_m63BCDD79C5119664DA24591EA6620A14EBBC7251(__this, L_69, L_71, L_72, L_74, NULL); return; } IL_015a: { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_75 = ___0_elem; NullCheck(L_75); String_t* L_76; L_76 = XmlTypeMapElementInfo_get_ElementName_m2B2B6484154E046A7FE5BE46092BF91A7B75D9CC_inline(L_75, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_77 = ___0_elem; NullCheck(L_77); String_t* L_78; L_78 = XmlTypeMapElementInfo_get_Namespace_m94DAAADC3EFEBC302C4D3574BD4835F222345498_inline(L_77, NULL); RuntimeObject* L_79 = ___1_memberValue; XmlSerializationWriter_WriteStartElement_mCB83EEA5BA0CDBDD2D62768D10D249B7D5835A70(__this, L_76, L_78, L_79, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_80 = ___0_elem; NullCheck(L_80); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_81; L_81 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_80, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_82 = ___0_elem; NullCheck(L_82); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_83; L_83 = XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline(L_82, NULL); NullCheck(L_83); ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0* L_84; L_84 = XmlMapping_get_ObjectMap_m63D1AEAC8EDD8396357898D337E350673A1E9003_inline(L_83, NULL); RuntimeObject* L_85 = ___1_memberValue; XmlSerializationWriterInterpreter_WriteListContent_m134B4C06A45FA059536931340F9447EEBA4154E7(__this, NULL, L_81, ((ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC*)CastclassClass((RuntimeObject*)L_84, ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC_il2cpp_TypeInfo_var)), L_85, (StringBuilder_t*)NULL, NULL); RuntimeObject* L_86 = ___1_memberValue; XmlSerializationWriter_WriteEndElement_m3ECF0B5AFAA9CD63B5B78470B1A48FE92CC6F5B8(__this, L_86, NULL); return; } IL_0194: { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_87 = ___0_elem; NullCheck(L_87); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_88; L_88 = XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline(L_87, NULL); NullCheck(L_88); bool L_89; L_89 = XmlTypeMapping_get_MultiReferenceType_m6FF513956B40419EBD15B5C1D3B0DEA151AABD84_inline(L_88, NULL); if (!L_89) { goto IL_01f8; } } { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_90 = ___0_elem; NullCheck(L_90); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_91; L_91 = XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline(L_90, NULL); NullCheck(L_91); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_92; L_92 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_91, NULL); NullCheck(L_92); Type_t* L_93; L_93 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_92, NULL); RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_94 = { reinterpret_cast (RuntimeObject_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_95; L_95 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_94, NULL); bool L_96; L_96 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_93, L_95, NULL); if (!L_96) { goto IL_01de; } } { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_97 = ___0_elem; NullCheck(L_97); String_t* L_98; L_98 = XmlTypeMapElementInfo_get_ElementName_m2B2B6484154E046A7FE5BE46092BF91A7B75D9CC_inline(L_97, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_99 = ___0_elem; NullCheck(L_99); String_t* L_100; L_100 = XmlTypeMapElementInfo_get_Namespace_m94DAAADC3EFEBC302C4D3574BD4835F222345498_inline(L_99, NULL); RuntimeObject* L_101 = ___1_memberValue; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_102 = ___0_elem; NullCheck(L_102); bool L_103; L_103 = XmlTypeMapElementInfo_get_IsNullable_m5E6F72E9E7ADFA39100C6C0FFA1585BCDE4ACE75_inline(L_102, NULL); XmlSerializationWriter_WritePotentiallyReferencingElement_mC08268FB0CD13EF92C5F0D92492F9310AB218CFB(__this, L_98, L_100, L_101, (Type_t*)NULL, (bool)0, L_103, NULL); return; } IL_01de: { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_104 = ___0_elem; NullCheck(L_104); String_t* L_105; L_105 = XmlTypeMapElementInfo_get_ElementName_m2B2B6484154E046A7FE5BE46092BF91A7B75D9CC_inline(L_104, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_106 = ___0_elem; NullCheck(L_106); String_t* L_107; L_107 = XmlTypeMapElementInfo_get_Namespace_m94DAAADC3EFEBC302C4D3574BD4835F222345498_inline(L_106, NULL); RuntimeObject* L_108 = ___1_memberValue; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_109 = ___0_elem; NullCheck(L_109); bool L_110; L_110 = XmlTypeMapElementInfo_get_IsNullable_m5E6F72E9E7ADFA39100C6C0FFA1585BCDE4ACE75_inline(L_109, NULL); XmlSerializationWriter_WriteReferencingElement_m63BCDD79C5119664DA24591EA6620A14EBBC7251(__this, L_105, L_107, L_108, L_110, NULL); return; } IL_01f8: { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_111 = ___0_elem; NullCheck(L_111); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_112; L_112 = XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline(L_111, NULL); RuntimeObject* L_113 = ___1_memberValue; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_114 = ___0_elem; NullCheck(L_114); String_t* L_115; L_115 = XmlTypeMapElementInfo_get_ElementName_m2B2B6484154E046A7FE5BE46092BF91A7B75D9CC_inline(L_114, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_116 = ___0_elem; NullCheck(L_116); String_t* L_117; L_117 = XmlTypeMapElementInfo_get_Namespace_m94DAAADC3EFEBC302C4D3574BD4835F222345498_inline(L_116, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_118 = ___0_elem; NullCheck(L_118); bool L_119; L_119 = XmlTypeMapElementInfo_get_IsNullable_m5E6F72E9E7ADFA39100C6C0FFA1585BCDE4ACE75_inline(L_118, NULL); VirtualActionInvoker7< XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9*, RuntimeObject*, String_t*, String_t*, bool, bool, bool >::Invoke(5 /* System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteObject(System.Xml.Serialization.XmlTypeMapping,System.Object,System.String,System.String,System.Boolean,System.Boolean,System.Boolean) */, __this, L_112, L_113, L_115, L_117, L_119, (bool)0, (bool)1); return; } IL_021a: { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_120 = ___0_elem; NullCheck(L_120); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_121; L_121 = XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline(L_120, NULL); NullCheck(L_121); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_122; L_122 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_121, NULL); NullCheck(L_122); Type_t* L_123; L_123 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_122, NULL); RuntimeObject* L_124 = ___1_memberValue; NullCheck(L_123); bool L_125; L_125 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(119 /* System.Boolean System.Type::IsInstanceOfType(System.Object) */, L_123, L_124); if (L_125) { goto IL_024a; } } { RuntimeObject* L_126 = ___1_memberValue; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_127 = ___0_elem; NullCheck(L_127); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_128; L_128 = XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline(L_127, NULL); NullCheck(L_128); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_129; L_129 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_128, NULL); NullCheck(L_129); Type_t* L_130; L_130 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_129, NULL); RuntimeObject* L_131; L_131 = XmlSerializationWriterInterpreter_ImplicitConvert_mC0A90835FFBC3F85D2DB9BA8944517142467716D(L_126, L_130, NULL); ___1_memberValue = L_131; } IL_024a: { RuntimeObject* L_132 = ___1_memberValue; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_133 = ___0_elem; NullCheck(L_133); String_t* L_134; L_134 = XmlTypeMapElementInfo_get_ElementName_m2B2B6484154E046A7FE5BE46092BF91A7B75D9CC_inline(L_133, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_135 = ___0_elem; NullCheck(L_135); String_t* L_136; L_136 = XmlTypeMapElementInfo_get_Namespace_m94DAAADC3EFEBC302C4D3574BD4835F222345498_inline(L_135, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_137 = ___0_elem; NullCheck(L_137); bool L_138; L_138 = XmlTypeMapElementInfo_get_IsNullable_m5E6F72E9E7ADFA39100C6C0FFA1585BCDE4ACE75_inline(L_137, NULL); XmlSerializationWriter_WriteSerializable_mBE2DC3FBAF8A1DA2921EE89701791176B63C40B9(__this, ((RuntimeObject*)Castclass((RuntimeObject*)L_132, IXmlSerializable_tE36AB1894460107283308E142C1106C4AB31A526_il2cpp_TypeInfo_var)), L_134, L_136, L_138, NULL); return; } IL_0269: { NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_139 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var))); NullCheck(L_139); NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_139, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA36CB49041E31496EDB0CF9BBB01CEF6120EA3F4)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_139, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializationWriterInterpreter_WriteMemberElement_mB29A5B7EFEB7D6FE5CCDEDA132F923E79D6F5F43_RuntimeMethod_var))); } } // System.Object System.Xml.Serialization.XmlSerializationWriterInterpreter::ImplicitConvert(System.Object,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializationWriterInterpreter_ImplicitConvert_mC0A90835FFBC3F85D2DB9BA8944517142467716D (RuntimeObject* ___0_obj, Type_t* ___1_type, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_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*)&_stringLiteral437906DA6527EA9BAA9A971EC5171183BEB85B59); s_Il2CppMethodInitialized = true; } Type_t* V_0 = NULL; MethodInfo_t* V_1 = NULL; { RuntimeObject* L_0 = ___0_obj; if (L_0) { goto IL_0005; } } { return NULL; } IL_0005: { RuntimeObject* L_1 = ___0_obj; NullCheck(L_1); Type_t* L_2; L_2 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_1, NULL); V_0 = L_2; goto IL_0096; } IL_0011: { Type_t* L_3 = V_0; TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_4 = (TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)SZArrayNew(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var, (uint32_t)1); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_5 = L_4; Type_t* L_6 = V_0; NullCheck(L_5); ArrayElementTypeCheck (L_5, L_6); (L_5)->SetAt(static_cast(0), (Type_t*)L_6); NullCheck(L_3); MethodInfo_t* L_7; L_7 = Type_GetMethod_m9E8E55EC8316CE8A2851B62AD4C73E841FEAC2EA(L_3, _stringLiteral437906DA6527EA9BAA9A971EC5171183BEB85B59, L_5, NULL); V_1 = L_7; MethodInfo_t* L_8 = V_1; bool L_9; L_9 = MethodInfo_op_Inequality_mB73597A1FCC2F906DBCADDEC68A1B7D5B7E89FA8(L_8, (MethodInfo_t*)NULL, NULL); if (!L_9) { goto IL_0050; } } { MethodInfo_t* L_10 = V_1; NullCheck(L_10); Type_t* L_11; L_11 = VirtualFuncInvoker0< Type_t* >::Invoke(41 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, L_10); Type_t* L_12 = ___1_type; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); bool L_13; L_13 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_11, L_12, NULL); if (!L_13) { goto IL_0050; } } { MethodInfo_t* L_14 = V_1; ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_15 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1); ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_16 = L_15; RuntimeObject* L_17 = ___0_obj; NullCheck(L_16); ArrayElementTypeCheck (L_16, L_17); (L_16)->SetAt(static_cast(0), (RuntimeObject*)L_17); NullCheck(L_14); RuntimeObject* L_18; L_18 = MethodBase_Invoke_mEEF3218648F111A8C338001A7804091A0747C826(L_14, NULL, L_16, NULL); return L_18; } IL_0050: { Type_t* L_19 = ___1_type; TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_20 = (TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)SZArrayNew(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var, (uint32_t)1); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_21 = L_20; Type_t* L_22 = V_0; NullCheck(L_21); ArrayElementTypeCheck (L_21, L_22); (L_21)->SetAt(static_cast(0), (Type_t*)L_22); NullCheck(L_19); MethodInfo_t* L_23; L_23 = Type_GetMethod_m9E8E55EC8316CE8A2851B62AD4C73E841FEAC2EA(L_19, _stringLiteral437906DA6527EA9BAA9A971EC5171183BEB85B59, L_21, NULL); V_1 = L_23; MethodInfo_t* L_24 = V_1; bool L_25; L_25 = MethodInfo_op_Inequality_mB73597A1FCC2F906DBCADDEC68A1B7D5B7E89FA8(L_24, (MethodInfo_t*)NULL, NULL); if (!L_25) { goto IL_008f; } } { MethodInfo_t* L_26 = V_1; NullCheck(L_26); Type_t* L_27; L_27 = VirtualFuncInvoker0< Type_t* >::Invoke(41 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, L_26); Type_t* L_28 = ___1_type; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); bool L_29; L_29 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_27, L_28, NULL); if (!L_29) { goto IL_008f; } } { MethodInfo_t* L_30 = V_1; ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_31 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1); ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_32 = L_31; RuntimeObject* L_33 = ___0_obj; NullCheck(L_32); ArrayElementTypeCheck (L_32, L_33); (L_32)->SetAt(static_cast(0), (RuntimeObject*)L_33); NullCheck(L_30); RuntimeObject* L_34; L_34 = MethodBase_Invoke_mEEF3218648F111A8C338001A7804091A0747C826(L_30, NULL, L_32, NULL); return L_34; } IL_008f: { Type_t* L_35 = V_0; NullCheck(L_35); Type_t* L_36; L_36 = VirtualFuncInvoker0< Type_t* >::Invoke(114 /* System.Type System.Type::get_BaseType() */, L_35); V_0 = L_36; } IL_0096: { Type_t* L_37 = V_0; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_38 = { reinterpret_cast (RuntimeObject_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_39; L_39 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_38, NULL); bool L_40; L_40 = Type_op_Inequality_m83209C7BB3C05DFBEA3B6199B0BEFE8037301172(L_37, L_39, NULL); if (L_40) { goto IL_0011; } } { RuntimeObject* L_41 = ___0_obj; return L_41; } } // System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WritePrimitiveValueLiteral(System.Object,System.String,System.String,System.Xml.Serialization.XmlTypeMapping,System.Xml.Serialization.TypeData,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriterInterpreter_WritePrimitiveValueLiteral_m64F5EE0B8DF72D20007BEA801198FF8F8B381173 (XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9* __this, RuntimeObject* ___0_memberValue, String_t* ___1_name, String_t* ___2_ns, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___3_mappedType, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___4_typeData, bool ___5_wrapped, bool ___6_isNullable, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { bool L_0 = ___5_wrapped; if (L_0) { goto IL_0016; } } { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_1 = ___3_mappedType; TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_2 = ___4_typeData; RuntimeObject* L_3 = ___0_memberValue; String_t* L_4; L_4 = XmlSerializationWriterInterpreter_GetStringValue_m417BDD772C59AA1A72558744FD56E78C129E1DEE(__this, L_1, L_2, L_3, NULL); XmlSerializationWriter_WriteValue_mFBAAF58EE4ECE002669126E42D9613880FA871A3(__this, L_4, NULL); return; } IL_0016: { bool L_5 = ___6_isNullable; if (!L_5) { goto IL_0055; } } { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_6 = ___4_typeData; NullCheck(L_6); Type_t* L_7; L_7 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_6, NULL); RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_8 = { reinterpret_cast (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_9; L_9 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_8, NULL); bool L_10; L_10 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_7, L_9, NULL); if (!L_10) { goto IL_0041; } } { String_t* L_11 = ___1_name; String_t* L_12 = ___2_ns; RuntimeObject* L_13 = ___0_memberValue; XmlSerializationWriter_WriteNullableQualifiedNameLiteral_mA36BA50DE0EECCF7D1D2C8683F84D7DB94D34CBC(__this, L_11, L_12, ((XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)CastclassClass((RuntimeObject*)L_13, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var)), NULL); return; } IL_0041: { String_t* L_14 = ___1_name; String_t* L_15 = ___2_ns; XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_16 = ___3_mappedType; TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_17 = ___4_typeData; RuntimeObject* L_18 = ___0_memberValue; String_t* L_19; L_19 = XmlSerializationWriterInterpreter_GetStringValue_m417BDD772C59AA1A72558744FD56E78C129E1DEE(__this, L_16, L_17, L_18, NULL); XmlSerializationWriter_WriteNullableStringLiteral_m9E9A4BC99C000CCC14DFA45E91A01EEBACADE862(__this, L_14, L_15, L_19, NULL); return; } IL_0055: { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_20 = ___4_typeData; NullCheck(L_20); Type_t* L_21; L_21 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_20, NULL); RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_22 = { reinterpret_cast (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_23; L_23 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_22, NULL); bool L_24; L_24 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_21, L_23, NULL); if (!L_24) { goto IL_007c; } } { String_t* L_25 = ___1_name; String_t* L_26 = ___2_ns; RuntimeObject* L_27 = ___0_memberValue; XmlSerializationWriter_WriteElementQualifiedName_mE0FE6CEB5D98A0B535C238812B64EB68C1F0933B(__this, L_25, L_26, ((XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)CastclassClass((RuntimeObject*)L_27, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var)), NULL); return; } IL_007c: { String_t* L_28 = ___1_name; String_t* L_29 = ___2_ns; XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_30 = ___3_mappedType; TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_31 = ___4_typeData; RuntimeObject* L_32 = ___0_memberValue; String_t* L_33; L_33 = XmlSerializationWriterInterpreter_GetStringValue_m417BDD772C59AA1A72558744FD56E78C129E1DEE(__this, L_30, L_31, L_32, NULL); XmlSerializationWriter_WriteElementString_m5B5F5B5F48FE69C157A86AEA91587F9A07EE3893(__this, L_28, L_29, L_33, NULL); return; } } // System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WritePrimitiveValueEncoded(System.Object,System.String,System.String,System.Xml.XmlQualifiedName,System.Xml.Serialization.XmlTypeMapping,System.Xml.Serialization.TypeData,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriterInterpreter_WritePrimitiveValueEncoded_m49AE009A4355CB956686487B0A6617B714D30723 (XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9* __this, RuntimeObject* ___0_memberValue, String_t* ___1_name, String_t* ___2_ns, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___3_xsiType, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___4_mappedType, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___5_typeData, bool ___6_wrapped, bool ___7_isNullable, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { bool L_0 = ___6_wrapped; if (L_0) { goto IL_0016; } } { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_1 = ___4_mappedType; TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_2 = ___5_typeData; RuntimeObject* L_3 = ___0_memberValue; String_t* L_4; L_4 = XmlSerializationWriterInterpreter_GetStringValue_m417BDD772C59AA1A72558744FD56E78C129E1DEE(__this, L_1, L_2, L_3, NULL); XmlSerializationWriter_WriteValue_mFBAAF58EE4ECE002669126E42D9613880FA871A3(__this, L_4, NULL); return; } IL_0016: { bool L_5 = ___7_isNullable; if (!L_5) { goto IL_0059; } } { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_6 = ___5_typeData; NullCheck(L_6); Type_t* L_7; L_7 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_6, NULL); RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_8 = { reinterpret_cast (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_9; L_9 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_8, NULL); bool L_10; L_10 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_7, L_9, NULL); if (!L_10) { goto IL_0043; } } { String_t* L_11 = ___1_name; String_t* L_12 = ___2_ns; RuntimeObject* L_13 = ___0_memberValue; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_14 = ___3_xsiType; XmlSerializationWriter_WriteNullableQualifiedNameEncoded_mE37935A882D73CCE63E8C070C2291CCB3FA720B6(__this, L_11, L_12, ((XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)CastclassClass((RuntimeObject*)L_13, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var)), L_14, NULL); return; } IL_0043: { String_t* L_15 = ___1_name; String_t* L_16 = ___2_ns; XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_17 = ___4_mappedType; TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_18 = ___5_typeData; RuntimeObject* L_19 = ___0_memberValue; String_t* L_20; L_20 = XmlSerializationWriterInterpreter_GetStringValue_m417BDD772C59AA1A72558744FD56E78C129E1DEE(__this, L_17, L_18, L_19, NULL); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_21 = ___3_xsiType; XmlSerializationWriter_WriteNullableStringEncoded_m1129872B6401E60E8949119B9FA368F543FCC9B4(__this, L_15, L_16, L_20, L_21, NULL); return; } IL_0059: { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_22 = ___5_typeData; NullCheck(L_22); Type_t* L_23; L_23 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_22, NULL); RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_24 = { reinterpret_cast (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_25; L_25 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_24, NULL); bool L_26; L_26 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_23, L_25, NULL); if (!L_26) { goto IL_0082; } } { String_t* L_27 = ___1_name; String_t* L_28 = ___2_ns; RuntimeObject* L_29 = ___0_memberValue; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_30 = ___3_xsiType; XmlSerializationWriter_WriteElementQualifiedName_m4C1FA2E99623FA45F267849A74C9A561CB7402E8(__this, L_27, L_28, ((XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)CastclassClass((RuntimeObject*)L_29, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var)), L_30, NULL); return; } IL_0082: { String_t* L_31 = ___1_name; String_t* L_32 = ___2_ns; XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_33 = ___4_mappedType; TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_34 = ___5_typeData; RuntimeObject* L_35 = ___0_memberValue; String_t* L_36; L_36 = XmlSerializationWriterInterpreter_GetStringValue_m417BDD772C59AA1A72558744FD56E78C129E1DEE(__this, L_33, L_34, L_35, NULL); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_37 = ___3_xsiType; XmlSerializationWriter_WriteElementString_m7F4678303C1631FCBE4B37FC404C838AF903F718(__this, L_31, L_32, L_36, L_37, NULL); return; } } // System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteListElement(System.Xml.Serialization.XmlTypeMapping,System.Object,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriterInterpreter_WriteListElement_m7860139850018CC144D7D8616B419DCF738DDC53 (XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___0_typeMap, RuntimeObject* ___1_ob, String_t* ___2_element, String_t* ___3_namesp, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9A24CC7BE5FB2E4DFFA4A80AD8B0335DAE91B662); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD29B87DC6B1B722C619FAD071A9157749710CDA6); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; String_t* V_1 = NULL; int32_t V_2 = 0; String_t* V_3 = NULL; String_t* G_B4_0 = NULL; { int32_t L_0 = __this->____format_9; if (L_0) { goto IL_005a; } } { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_1 = ___0_typeMap; NullCheck(L_1); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_2; L_2 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_1, NULL); RuntimeObject* L_3 = ___1_ob; int32_t L_4; L_4 = XmlSerializationWriterInterpreter_GetListCount_m8FB8D13B1F87E95754A5CF8079D3DF2B9A46AE86(__this, L_2, L_3, NULL); V_2 = L_4; XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_5 = ___0_typeMap; NullCheck(L_5); ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0* L_6; L_6 = XmlMapping_get_ObjectMap_m63D1AEAC8EDD8396357898D337E350673A1E9003_inline(L_5, NULL); int32_t L_7 = V_2; NullCheck(((ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC*)CastclassClass((RuntimeObject*)L_6, ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC_il2cpp_TypeInfo_var))); ListMap_GetArrayType_mE4DD0F95C5B8779C799547E896D8DE16632AA2B7(((ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC*)CastclassClass((RuntimeObject*)L_6, ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC_il2cpp_TypeInfo_var)), L_7, (&V_0), (&V_1), NULL); String_t* L_8 = V_1; String_t* L_9 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; bool L_10; L_10 = String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6(L_8, L_9, NULL); if (L_10) { goto IL_003b; } } { String_t* L_11 = V_0; G_B4_0 = L_11; goto IL_0048; } IL_003b: { String_t* L_12 = V_0; String_t* L_13 = V_1; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_14 = (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)il2cpp_codegen_object_new(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); NullCheck(L_14); XmlQualifiedName__ctor_m65632114A1726D9FAD0338BC2A8C28BB9D262C7B(L_14, L_12, L_13, NULL); String_t* L_15; L_15 = XmlSerializationWriter_FromXmlQualifiedName_m0025FF4410A037F0310220E2F36A1F55DD106829(__this, L_14, NULL); G_B4_0 = L_15; } IL_0048: { V_3 = G_B4_0; String_t* L_16 = V_3; XmlSerializationWriter_WriteAttribute_mAA8601A17489000A033533611237057B779C91B1(__this, _stringLiteral9A24CC7BE5FB2E4DFFA4A80AD8B0335DAE91B662, _stringLiteralD29B87DC6B1B722C619FAD071A9157749710CDA6, L_16, NULL); } IL_005a: { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_17 = ___0_typeMap; NullCheck(L_17); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_18; L_18 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_17, NULL); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_19 = ___0_typeMap; NullCheck(L_19); ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0* L_20; L_20 = XmlMapping_get_ObjectMap_m63D1AEAC8EDD8396357898D337E350673A1E9003_inline(L_19, NULL); RuntimeObject* L_21 = ___1_ob; XmlSerializationWriterInterpreter_WriteListContent_m134B4C06A45FA059536931340F9447EEBA4154E7(__this, NULL, L_18, ((ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC*)CastclassClass((RuntimeObject*)L_20, ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC_il2cpp_TypeInfo_var)), L_21, (StringBuilder_t*)NULL, NULL); return; } } // System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteListContent(System.Object,System.Xml.Serialization.TypeData,System.Xml.Serialization.ListMap,System.Object,System.Text.StringBuilder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriterInterpreter_WriteListContent_m134B4C06A45FA059536931340F9447EEBA4154E7 (XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9* __this, RuntimeObject* ___0_container, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___1_listType, ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* ___2_map, RuntimeObject* ___3_ob, StringBuilder_t* ___4_targetString, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeArray_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral37B9D73BE7368F9E631CD06C5DC3758F48D4E89C); s_Il2CppMethodInitialized = true; } RuntimeArray* V_0 = NULL; int32_t V_1 = 0; RuntimeObject* V_2 = NULL; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* V_3 = NULL; int32_t V_4 = 0; PropertyInfo_t* V_5 = NULL; ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_6 = NULL; int32_t V_7 = 0; RuntimeObject* V_8 = NULL; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* V_9 = NULL; RuntimeObject* V_10 = NULL; RuntimeObject* V_11 = NULL; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* V_12 = NULL; RuntimeObject* V_13 = NULL; { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_0 = ___1_listType; NullCheck(L_0); Type_t* L_1; L_1 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_0, NULL); NullCheck(L_1); bool L_2; L_2 = Type_get_IsArray_mB9B8CA713B2AA9D6AFECC24E05AF78D22532B673(L_1, NULL); if (!L_2) { goto IL_0083; } } { RuntimeObject* L_3 = ___3_ob; V_0 = ((RuntimeArray*)CastclassClass((RuntimeObject*)L_3, RuntimeArray_il2cpp_TypeInfo_var)); V_1 = 0; goto IL_0079; } IL_0019: { RuntimeArray* L_4 = V_0; int32_t L_5 = V_1; NullCheck(L_4); RuntimeObject* L_6; L_6 = Array_GetValue_m007D247B8A6FE5BD60FD1CD510A714A416F2BA21(L_4, L_5, NULL); V_2 = L_6; ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* L_7 = ___2_map; RuntimeObject* L_8 = ___0_container; int32_t L_9 = V_1; RuntimeObject* L_10 = V_2; NullCheck(L_7); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_11; L_11 = ListMap_FindElement_m47E834380D86F46D9AE887F867CC2D3FCF7D4CC2(L_7, L_8, L_9, L_10, NULL); V_3 = L_11; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_12 = V_3; if (!L_12) { goto IL_003c; } } { StringBuilder_t* L_13 = ___4_targetString; if (L_13) { goto IL_003c; } } { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_14 = V_3; RuntimeObject* L_15 = V_2; XmlSerializationWriterInterpreter_WriteMemberElement_mB29A5B7EFEB7D6FE5CCDEDA132F923E79D6F5F43(__this, L_14, L_15, NULL); goto IL_0075; } IL_003c: { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_16 = V_3; if (!L_16) { goto IL_006a; } } { StringBuilder_t* L_17 = ___4_targetString; if (!L_17) { goto IL_006a; } } { StringBuilder_t* L_18 = ___4_targetString; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_19 = V_3; NullCheck(L_19); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_20; L_20 = XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline(L_19, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_21 = V_3; NullCheck(L_21); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_22; L_22 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_21, NULL); RuntimeObject* L_23 = V_2; String_t* L_24; L_24 = XmlSerializationWriterInterpreter_GetStringValue_m417BDD772C59AA1A72558744FD56E78C129E1DEE(__this, L_20, L_22, L_23, NULL); NullCheck(L_18); StringBuilder_t* L_25; L_25 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_18, L_24, NULL); NullCheck(L_25); StringBuilder_t* L_26; L_26 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_25, _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745, NULL); goto IL_0075; } IL_006a: { RuntimeObject* L_27 = V_2; if (!L_27) { goto IL_0075; } } { RuntimeObject* L_28 = V_2; Exception_t* L_29; L_29 = XmlSerializationWriter_CreateUnknownTypeException_m390258930DA81870F1CB5744BEE12EE075A7BAC6(__this, L_28, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_29, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializationWriterInterpreter_WriteListContent_m134B4C06A45FA059536931340F9447EEBA4154E7_RuntimeMethod_var))); } IL_0075: { int32_t L_30 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_30, 1)); } IL_0079: { int32_t L_31 = V_1; RuntimeArray* L_32 = V_0; NullCheck(L_32); int32_t L_33; L_33 = Array_get_Length_m361285FB7CF44045DC369834D1CD01F72F94EF57(L_32, NULL); if ((((int32_t)L_31) < ((int32_t)L_33))) { goto IL_0019; } } { return; } IL_0083: { RuntimeObject* L_34 = ___3_ob; if (!((RuntimeObject*)IsInst((RuntimeObject*)L_34, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var))) { goto IL_0151; } } { RuntimeObject* L_35 = ___3_ob; NullCheck(L_35); Type_t* L_36; L_36 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_35, NULL); NullCheck(L_36); PropertyInfo_t* L_37; L_37 = Type_GetProperty_mD183124FC8A89121E8368058B327A7750B14281D(L_36, _stringLiteral37B9D73BE7368F9E631CD06C5DC3758F48D4E89C, NULL); RuntimeObject* L_38 = ___3_ob; NullCheck(L_37); RuntimeObject* L_39; L_39 = VirtualFuncInvoker2< RuntimeObject*, RuntimeObject*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* >::Invoke(26 /* System.Object System.Reflection.PropertyInfo::GetValue(System.Object,System.Object[]) */, L_37, L_38, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL); V_4 = ((*(int32_t*)((int32_t*)(int32_t*)UnBox(L_39, Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)))); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_40 = ___1_listType; NullCheck(L_40); Type_t* L_41; L_41 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_40, NULL); il2cpp_codegen_runtime_class_init_inline(TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704_il2cpp_TypeInfo_var); PropertyInfo_t* L_42; L_42 = TypeData_GetIndexerProperty_mF9E62EEA9F25BCDA3E4B77677018DEBB8A4BA7F6(L_41, NULL); V_5 = L_42; ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_43 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1); V_6 = L_43; V_7 = 0; goto IL_0147; } IL_00c9: { ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_44 = V_6; int32_t L_45 = V_7; int32_t L_46 = L_45; RuntimeObject* L_47 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_46); NullCheck(L_44); ArrayElementTypeCheck (L_44, L_47); (L_44)->SetAt(static_cast(0), (RuntimeObject*)L_47); PropertyInfo_t* L_48 = V_5; RuntimeObject* L_49 = ___3_ob; ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_50 = V_6; NullCheck(L_48); RuntimeObject* L_51; L_51 = VirtualFuncInvoker2< RuntimeObject*, RuntimeObject*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* >::Invoke(26 /* System.Object System.Reflection.PropertyInfo::GetValue(System.Object,System.Object[]) */, L_48, L_49, L_50); V_8 = L_51; ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* L_52 = ___2_map; RuntimeObject* L_53 = ___0_container; int32_t L_54 = V_7; RuntimeObject* L_55 = V_8; NullCheck(L_52); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_56; L_56 = ListMap_FindElement_m47E834380D86F46D9AE887F867CC2D3FCF7D4CC2(L_52, L_53, L_54, L_55, NULL); V_9 = L_56; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_57 = V_9; if (!L_57) { goto IL_0102; } } { StringBuilder_t* L_58 = ___4_targetString; if (L_58) { goto IL_0102; } } { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_59 = V_9; RuntimeObject* L_60 = V_8; XmlSerializationWriterInterpreter_WriteMemberElement_mB29A5B7EFEB7D6FE5CCDEDA132F923E79D6F5F43(__this, L_59, L_60, NULL); goto IL_0141; } IL_0102: { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_61 = V_9; if (!L_61) { goto IL_0134; } } { StringBuilder_t* L_62 = ___4_targetString; if (!L_62) { goto IL_0134; } } { StringBuilder_t* L_63 = ___4_targetString; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_64 = V_9; NullCheck(L_64); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_65; L_65 = XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline(L_64, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_66 = V_9; NullCheck(L_66); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_67; L_67 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_66, NULL); RuntimeObject* L_68 = V_8; String_t* L_69; L_69 = XmlSerializationWriterInterpreter_GetStringValue_m417BDD772C59AA1A72558744FD56E78C129E1DEE(__this, L_65, L_67, L_68, NULL); NullCheck(L_63); StringBuilder_t* L_70; L_70 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_63, L_69, NULL); NullCheck(L_70); StringBuilder_t* L_71; L_71 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_70, _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745, NULL); goto IL_0141; } IL_0134: { RuntimeObject* L_72 = V_8; if (!L_72) { goto IL_0141; } } { RuntimeObject* L_73 = V_8; Exception_t* L_74; L_74 = XmlSerializationWriter_CreateUnknownTypeException_m390258930DA81870F1CB5744BEE12EE075A7BAC6(__this, L_73, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_74, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializationWriterInterpreter_WriteListContent_m134B4C06A45FA059536931340F9447EEBA4154E7_RuntimeMethod_var))); } IL_0141: { int32_t L_75 = V_7; V_7 = ((int32_t)il2cpp_codegen_add(L_75, 1)); } IL_0147: { int32_t L_76 = V_7; int32_t L_77 = V_4; if ((((int32_t)L_76) < ((int32_t)L_77))) { goto IL_00c9; } } { return; } IL_0151: { RuntimeObject* L_78 = ___3_ob; if (!((RuntimeObject*)IsInst((RuntimeObject*)L_78, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var))) { goto IL_01f5; } } { RuntimeObject* L_79 = ___3_ob; NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_79, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var))); RuntimeObject* L_80; L_80 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_79, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var))); V_10 = L_80; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_01e0: {// begin finally (depth: 1) { RuntimeObject* L_81 = V_10; V_13 = ((RuntimeObject*)IsInst((RuntimeObject*)L_81, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var)); RuntimeObject* L_82 = V_13; if (!L_82) { goto IL_01f4; } } { RuntimeObject* L_83 = V_13; NullCheck(L_83); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_83); } IL_01f4: { return; } }// end finally (depth: 1) }); try {// begin try (depth: 1) { goto IL_01d5_1; } IL_016d_1: { RuntimeObject* L_84 = V_10; NullCheck(L_84); RuntimeObject* L_85; L_85 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_84); V_11 = L_85; ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* L_86 = ___2_map; RuntimeObject* L_87 = ___0_container; RuntimeObject* L_88 = V_11; NullCheck(L_86); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_89; L_89 = ListMap_FindElement_m47E834380D86F46D9AE887F867CC2D3FCF7D4CC2(L_86, L_87, (-1), L_88, NULL); V_12 = L_89; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_90 = V_12; if (!L_90) { goto IL_0196_1; } } { StringBuilder_t* L_91 = ___4_targetString; if (L_91) { goto IL_0196_1; } } { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_92 = V_12; RuntimeObject* L_93 = V_11; XmlSerializationWriterInterpreter_WriteMemberElement_mB29A5B7EFEB7D6FE5CCDEDA132F923E79D6F5F43(__this, L_92, L_93, NULL); goto IL_01d5_1; } IL_0196_1: { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_94 = V_12; if (!L_94) { goto IL_01c8_1; } } { StringBuilder_t* L_95 = ___4_targetString; if (!L_95) { goto IL_01c8_1; } } { StringBuilder_t* L_96 = ___4_targetString; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_97 = V_12; NullCheck(L_97); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_98; L_98 = XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline(L_97, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_99 = V_12; NullCheck(L_99); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_100; L_100 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_99, NULL); RuntimeObject* L_101 = V_11; String_t* L_102; L_102 = XmlSerializationWriterInterpreter_GetStringValue_m417BDD772C59AA1A72558744FD56E78C129E1DEE(__this, L_98, L_100, L_101, NULL); NullCheck(L_96); StringBuilder_t* L_103; L_103 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_96, L_102, NULL); NullCheck(L_103); StringBuilder_t* L_104; L_104 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_103, _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745, NULL); goto IL_01d5_1; } IL_01c8_1: { RuntimeObject* L_105 = V_11; if (!L_105) { goto IL_01d5_1; } } { RuntimeObject* L_106 = V_11; Exception_t* L_107; L_107 = XmlSerializationWriter_CreateUnknownTypeException_m390258930DA81870F1CB5744BEE12EE075A7BAC6(__this, L_106, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_107, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializationWriterInterpreter_WriteListContent_m134B4C06A45FA059536931340F9447EEBA4154E7_RuntimeMethod_var))); } IL_01d5_1: { RuntimeObject* L_108 = V_10; NullCheck(L_108); bool L_109; L_109 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_108); if (L_109) { goto IL_016d_1; } } { goto IL_0200; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_01f5: { Exception_t* L_110 = (Exception_t*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var))); NullCheck(L_110); Exception__ctor_m9B2BD92CD68916245A75109105D9071C9D430E7F(L_110, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral13524012C64F8AB64633395F585F5569225E9F99)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_110, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializationWriterInterpreter_WriteListContent_m134B4C06A45FA059536931340F9447EEBA4154E7_RuntimeMethod_var))); } IL_0200: { return; } } // System.Int32 System.Xml.Serialization.XmlSerializationWriterInterpreter::GetListCount(System.Xml.Serialization.TypeData,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlSerializationWriterInterpreter_GetListCount_m8FB8D13B1F87E95754A5CF8079D3DF2B9A46AE86 (XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9* __this, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___0_listType, RuntimeObject* ___1_ob, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeArray_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral37B9D73BE7368F9E631CD06C5DC3758F48D4E89C); s_Il2CppMethodInitialized = true; } { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_0 = ___0_listType; NullCheck(L_0); Type_t* L_1; L_1 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_0, NULL); NullCheck(L_1); bool L_2; L_2 = Type_get_IsArray_mB9B8CA713B2AA9D6AFECC24E05AF78D22532B673(L_1, NULL); if (!L_2) { goto IL_0019; } } { RuntimeObject* L_3 = ___1_ob; NullCheck(((RuntimeArray*)CastclassClass((RuntimeObject*)L_3, RuntimeArray_il2cpp_TypeInfo_var))); int32_t L_4; L_4 = Array_get_Length_m361285FB7CF44045DC369834D1CD01F72F94EF57(((RuntimeArray*)CastclassClass((RuntimeObject*)L_3, RuntimeArray_il2cpp_TypeInfo_var)), NULL); return L_4; } IL_0019: { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_5 = ___0_listType; NullCheck(L_5); Type_t* L_6; L_6 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_5, NULL); NullCheck(L_6); PropertyInfo_t* L_7; L_7 = Type_GetProperty_mD183124FC8A89121E8368058B327A7750B14281D(L_6, _stringLiteral37B9D73BE7368F9E631CD06C5DC3758F48D4E89C, NULL); RuntimeObject* L_8 = ___1_ob; NullCheck(L_7); RuntimeObject* L_9; L_9 = VirtualFuncInvoker2< RuntimeObject*, RuntimeObject*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* >::Invoke(26 /* System.Object System.Reflection.PropertyInfo::GetValue(System.Object,System.Object[]) */, L_7, L_8, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL); return ((*(int32_t*)((int32_t*)(int32_t*)UnBox(L_9, Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)))); } } // System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteAnyElementContent(System.Xml.Serialization.XmlTypeMapMemberAnyElement,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriterInterpreter_WriteAnyElementContent_m6FA0CBF4CCF97E36DE0A4C4AC4CF557A965A8823 (XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9* __this, XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* ___0_member, RuntimeObject* ___1_memberValue, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeArray_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; RuntimeObject* V_1 = NULL; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* V_2 = NULL; RuntimeObject* V_3 = NULL; String_t* G_B8_0 = NULL; String_t* G_B7_0 = NULL; Type_t* G_B9_0 = NULL; String_t* G_B9_1 = NULL; { XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* L_0 = ___0_member; NullCheck(L_0); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_1; L_1 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_0, NULL); NullCheck(L_1); Type_t* L_2; L_2 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_1, NULL); RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_3 = { reinterpret_cast (XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_4; L_4 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_3, NULL); bool L_5; L_5 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_2, L_4, NULL); if (L_5) { goto IL_0038; } } { XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* L_6 = ___0_member; NullCheck(L_6); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_7; L_7 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_6, NULL); NullCheck(L_7); Type_t* L_8; L_8 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_7, NULL); RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_9 = { reinterpret_cast (XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_10; L_10 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_9, NULL); bool L_11; L_11 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_8, L_10, NULL); if (!L_11) { goto IL_0044; } } IL_0038: { ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_12 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1); ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_13 = L_12; RuntimeObject* L_14 = ___1_memberValue; NullCheck(L_13); ArrayElementTypeCheck (L_13, L_14); (L_13)->SetAt(static_cast(0), (RuntimeObject*)L_14); ___1_memberValue = (RuntimeObject*)L_13; } IL_0044: { RuntimeObject* L_15 = ___1_memberValue; NullCheck(((RuntimeArray*)CastclassClass((RuntimeObject*)L_15, RuntimeArray_il2cpp_TypeInfo_var))); RuntimeObject* L_16; L_16 = Array_GetEnumerator_mDB7E2AF23F2BDC715D429C71CA3B8D0151F0DC1E(((RuntimeArray*)CastclassClass((RuntimeObject*)L_15, RuntimeArray_il2cpp_TypeInfo_var)), NULL); V_0 = L_16; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_00fd: {// begin finally (depth: 1) { RuntimeObject* L_17 = V_0; V_3 = ((RuntimeObject*)IsInst((RuntimeObject*)L_17, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var)); RuntimeObject* L_18 = V_3; if (!L_18) { goto IL_010d; } } { RuntimeObject* L_19 = V_3; NullCheck(L_19); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_19); } IL_010d: { return; } }// end finally (depth: 1) }); try {// begin try (depth: 1) { goto IL_00f0_1; } IL_0055_1: { RuntimeObject* L_20 = V_0; NullCheck(L_20); RuntimeObject* L_21; L_21 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_20); V_1 = L_21; RuntimeObject* L_22 = V_1; V_2 = ((XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF*)IsInstClass((RuntimeObject*)L_22, XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF_il2cpp_TypeInfo_var)); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_23 = V_2; if (L_23) { goto IL_0082_1; } } { RuntimeObject* L_24 = V_1; G_B7_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC0E8EAC5A9D528FF5200C5F8484AE09760D5C643)); if (L_24) { G_B8_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC0E8EAC5A9D528FF5200C5F8484AE09760D5C643)); goto IL_0071_1; } } { G_B9_0 = ((Type_t*)(NULL)); G_B9_1 = G_B7_0; goto IL_0077_1; } IL_0071_1: { RuntimeObject* L_25 = V_1; NullCheck(L_25); Type_t* L_26; L_26 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_25, NULL); G_B9_0 = L_26; G_B9_1 = G_B8_0; } IL_0077_1: { String_t* L_27; L_27 = String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8(G_B9_1, G_B9_0, NULL); InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_28 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_28); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_28, L_27, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_28, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializationWriterInterpreter_WriteAnyElementContent_m6FA0CBF4CCF97E36DE0A4C4AC4CF557A965A8823_RuntimeMethod_var))); } IL_0082_1: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_29 = V_2; if (!((XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1*)IsInstClass((RuntimeObject*)L_29, XmlElement_t9A08B533E9A6B3548A1DE35476186F7ECCDF6FF1_il2cpp_TypeInfo_var))) { goto IL_00e4_1; } } { XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* L_30 = ___0_member; XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_31 = V_2; NullCheck(L_31); String_t* L_32; L_32 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlNode::get_Name() */, L_31); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_33 = V_2; NullCheck(L_33); String_t* L_34; L_34 = VirtualFuncInvoker0< String_t* >::Invoke(35 /* System.String System.Xml.XmlNode::get_NamespaceURI() */, L_33); NullCheck(L_30); bool L_35; L_35 = XmlTypeMapMemberAnyElement_IsElementDefined_mA16BED80C2A28DF69D7242CAD45F8E4652DB1CAF(L_30, L_32, L_34, NULL); if (!L_35) { goto IL_00d1_1; } } { int32_t L_36 = __this->____format_9; if ((!(((uint32_t)L_36) == ((uint32_t)1)))) { goto IL_00bc_1; } } { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_37 = V_2; XmlSerializationWriter_WriteElementLiteral_m0E74FD75FE42BEB8D43B79333598C8DDC6EC4238(__this, L_37, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, (bool)0, (bool)1, NULL); goto IL_00f0_1; } IL_00bc_1: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_38 = V_2; XmlSerializationWriter_WriteElementEncoded_m669E23E74C69FAB9FEF6FAA511A0F6901E1FFEFA(__this, L_38, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, (bool)0, (bool)1, NULL); goto IL_00f0_1; } IL_00d1_1: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_39 = V_2; NullCheck(L_39); String_t* L_40; L_40 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Xml.XmlNode::get_Name() */, L_39); XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_41 = V_2; NullCheck(L_41); String_t* L_42; L_42 = VirtualFuncInvoker0< String_t* >::Invoke(35 /* System.String System.Xml.XmlNode::get_NamespaceURI() */, L_41); Exception_t* L_43; L_43 = XmlSerializationWriter_CreateUnknownAnyElementException_m10C764FCEE6FF3DDA1C9A17D7593D8DE7454417B(__this, L_40, L_42, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_43, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializationWriterInterpreter_WriteAnyElementContent_m6FA0CBF4CCF97E36DE0A4C4AC4CF557A965A8823_RuntimeMethod_var))); } IL_00e4_1: { XmlNode_t3180B9B3D5C36CD58F5327D9F13458E3B3F030AF* L_44 = V_2; XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_45; L_45 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL); NullCheck(L_44); VirtualActionInvoker1< XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* >::Invoke(45 /* System.Void System.Xml.XmlNode::WriteTo(System.Xml.XmlWriter) */, L_44, L_45); } IL_00f0_1: { RuntimeObject* L_46 = V_0; NullCheck(L_46); bool L_47; L_47 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_46); if (L_47) { goto IL_0055_1; } } { goto IL_010e; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_010e: { return; } } // System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WritePrimitiveElement(System.Xml.Serialization.XmlTypeMapping,System.Object,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriterInterpreter_WritePrimitiveElement_m249A1D6B8790790AE65BCE416F8B0E78FDE95568 (XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___0_typeMap, RuntimeObject* ___1_ob, String_t* ___2_element, String_t* ___3_namesp, const RuntimeMethod* method) { { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0; L_0 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_1 = ___0_typeMap; XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_2 = ___0_typeMap; NullCheck(L_2); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_3; L_3 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_2, NULL); RuntimeObject* L_4 = ___1_ob; String_t* L_5; L_5 = XmlSerializationWriterInterpreter_GetStringValue_m417BDD772C59AA1A72558744FD56E78C129E1DEE(__this, L_1, L_3, L_4, NULL); NullCheck(L_0); VirtualActionInvoker1< String_t* >::Invoke(20 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, L_0, L_5); return; } } // System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteEnumElement(System.Xml.Serialization.XmlTypeMapping,System.Object,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializationWriterInterpreter_WriteEnumElement_m205F2F0D7D6375408F8BFFD80AEEE5B4CD4C4DE3 (XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___0_typeMap, RuntimeObject* ___1_ob, String_t* ___2_element, String_t* ___3_namesp, const RuntimeMethod* method) { { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0; L_0 = XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline(__this, NULL); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_1 = ___0_typeMap; RuntimeObject* L_2 = ___1_ob; String_t* L_3; L_3 = XmlSerializationWriterInterpreter_GetEnumXmlValue_m6990DBD6D109E4EF5947900DCBCAEFAD60CCE88F(__this, L_1, L_2, NULL); NullCheck(L_0); VirtualActionInvoker1< String_t* >::Invoke(20 /* System.Void System.Xml.XmlWriter::WriteString(System.String) */, L_0, L_3); return; } } // System.String System.Xml.Serialization.XmlSerializationWriterInterpreter::GetStringValue(System.Xml.Serialization.XmlTypeMapping,System.Xml.Serialization.TypeData,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlSerializationWriterInterpreter_GetStringValue_m417BDD772C59AA1A72558744FD56E78C129E1DEE (XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___0_typeMap, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___1_type, RuntimeObject* ___2_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlCustomFormatter_t8021E588C6512752ACF5F834D7F8FF70E1D28471_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } StringBuilder_t* V_0 = NULL; { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_0 = ___1_type; NullCheck(L_0); int32_t L_1; L_1 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_0, NULL); if ((!(((uint32_t)L_1) == ((uint32_t)3)))) { goto IL_003a; } } { RuntimeObject* L_2 = ___2_value; if (L_2) { goto IL_000e; } } { return (String_t*)NULL; } IL_000e: { StringBuilder_t* L_3 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); NullCheck(L_3); StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D(L_3, NULL); V_0 = L_3; XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_4 = ___0_typeMap; NullCheck(L_4); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_5; L_5 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_4, NULL); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_6 = ___0_typeMap; NullCheck(L_6); ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0* L_7; L_7 = XmlMapping_get_ObjectMap_m63D1AEAC8EDD8396357898D337E350673A1E9003_inline(L_6, NULL); RuntimeObject* L_8 = ___2_value; StringBuilder_t* L_9 = V_0; XmlSerializationWriterInterpreter_WriteListContent_m134B4C06A45FA059536931340F9447EEBA4154E7(__this, NULL, L_5, ((ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC*)CastclassClass((RuntimeObject*)L_7, ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC_il2cpp_TypeInfo_var)), L_8, L_9, NULL); StringBuilder_t* L_10 = V_0; NullCheck(L_10); String_t* L_11; L_11 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_10); NullCheck(L_11); String_t* L_12; L_12 = String_Trim_mCD6D8C6D4CFD15225D12DB7D3E0544CA80FB8DA5(L_11, NULL); return L_12; } IL_003a: { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_13 = ___1_type; NullCheck(L_13); int32_t L_14; L_14 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_13, NULL); if ((!(((uint32_t)L_14) == ((uint32_t)2)))) { goto IL_004c; } } { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_15 = ___0_typeMap; RuntimeObject* L_16 = ___2_value; String_t* L_17; L_17 = XmlSerializationWriterInterpreter_GetEnumXmlValue_m6990DBD6D109E4EF5947900DCBCAEFAD60CCE88F(__this, L_15, L_16, NULL); return L_17; } IL_004c: { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_18 = ___1_type; NullCheck(L_18); Type_t* L_19; L_19 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_18, NULL); RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_20 = { reinterpret_cast (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_21; L_21 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_20, NULL); bool L_22; L_22 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_19, L_21, NULL); if (!L_22) { goto IL_0070; } } { RuntimeObject* L_23 = ___2_value; String_t* L_24; L_24 = XmlSerializationWriter_FromXmlQualifiedName_m0025FF4410A037F0310220E2F36A1F55DD106829(__this, ((XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)CastclassClass((RuntimeObject*)L_23, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var)), NULL); return L_24; } IL_0070: { RuntimeObject* L_25 = ___2_value; if (L_25) { goto IL_0075; } } { return (String_t*)NULL; } IL_0075: { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_26 = ___1_type; RuntimeObject* L_27 = ___2_value; il2cpp_codegen_runtime_class_init_inline(XmlCustomFormatter_t8021E588C6512752ACF5F834D7F8FF70E1D28471_il2cpp_TypeInfo_var); String_t* L_28; L_28 = XmlCustomFormatter_ToXmlString_m9C2EFDCCDABEAC5DEC075942605E8C3BCA836E45(L_26, L_27, NULL); return L_28; } } // System.String System.Xml.Serialization.XmlSerializationWriterInterpreter::GetEnumXmlValue(System.Xml.Serialization.XmlTypeMapping,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlSerializationWriterInterpreter_GetEnumXmlValue_m6990DBD6D109E4EF5947900DCBCAEFAD60CCE88F (XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___0_typeMap, RuntimeObject* ___1_ob, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___1_ob; if (L_0) { goto IL_0005; } } { return (String_t*)NULL; } IL_0005: { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_1 = ___0_typeMap; NullCheck(L_1); ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0* L_2; L_2 = XmlMapping_get_ObjectMap_m63D1AEAC8EDD8396357898D337E350673A1E9003_inline(L_1, NULL); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_3 = ___0_typeMap; NullCheck(L_3); String_t* L_4; L_4 = XmlTypeMapping_get_TypeFullName_m8330E28FE282DDE67C41ADFBC2034E6E26A7ECAB(L_3, NULL); RuntimeObject* L_5 = ___1_ob; NullCheck(((EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C*)CastclassClass((RuntimeObject*)L_2, EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C_il2cpp_TypeInfo_var))); String_t* L_6; L_6 = EnumMap_GetXmlName_m673884ED5B4566B41AA3D16F95E4F21D9B687621(((EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C*)CastclassClass((RuntimeObject*)L_2, EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C_il2cpp_TypeInfo_var)), L_4, L_5, NULL); return L_6; } } #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.Xml.Serialization.XmlSerializationWriterInterpreter/CallbackInfo::.ctor(System.Xml.Serialization.XmlSerializationWriterInterpreter,System.Xml.Serialization.XmlTypeMapping) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CallbackInfo__ctor_m8F675D9CC25A5368226CB51B0931B527F5FA9439 (CallbackInfo_t89714EAF889C7E9B3682A74ADF45DDACC78E60B2* __this, XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9* ___0_swi, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___1_typeMap, const RuntimeMethod* method) { { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9* L_0 = ___0_swi; __this->____swi_0 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->____swi_0), (void*)L_0); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_1 = ___1_typeMap; __this->____typeMap_1 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->____typeMap_1), (void*)L_1); return; } } // System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter/CallbackInfo::WriteObject(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CallbackInfo_WriteObject_m5D5ED881A0F8AA17A296B0ABFE6063800F096564 (CallbackInfo_t89714EAF889C7E9B3682A74ADF45DDACC78E60B2* __this, RuntimeObject* ___0_ob, const RuntimeMethod* method) { { XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9* L_0 = __this->____swi_0; XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_1 = __this->____typeMap_1; RuntimeObject* L_2 = ___0_ob; XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_3 = __this->____typeMap_1; NullCheck(L_3); String_t* L_4; L_4 = XmlMapping_get_ElementName_m2BDBF7797A1F38972A4355CF694E0D468B2A9FC0_inline(L_3, NULL); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_5 = __this->____typeMap_1; NullCheck(L_5); String_t* L_6; L_6 = XmlMapping_get_Namespace_m196651C91FB3C3442AC616C977345E89450F024F_inline(L_5, NULL); NullCheck(L_0); VirtualActionInvoker7< XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9*, RuntimeObject*, String_t*, String_t*, bool, bool, bool >::Invoke(5 /* System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteObject(System.Xml.Serialization.XmlTypeMapping,System.Object,System.String,System.String,System.Boolean,System.Boolean,System.Boolean) */, L_0, L_1, L_2, L_4, L_6, (bool)0, (bool)0, (bool)0); return; } } // System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter/CallbackInfo::WriteEnum(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CallbackInfo_WriteEnum_m277626A9EC6D2C4713BA8BD4C45174875727F869 (CallbackInfo_t89714EAF889C7E9B3682A74ADF45DDACC78E60B2* __this, RuntimeObject* ___0_ob, const RuntimeMethod* method) { { XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9* L_0 = __this->____swi_0; XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_1 = __this->____typeMap_1; RuntimeObject* L_2 = ___0_ob; XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_3 = __this->____typeMap_1; NullCheck(L_3); String_t* L_4; L_4 = XmlMapping_get_ElementName_m2BDBF7797A1F38972A4355CF694E0D468B2A9FC0_inline(L_3, NULL); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_5 = __this->____typeMap_1; NullCheck(L_5); String_t* L_6; L_6 = XmlMapping_get_Namespace_m196651C91FB3C3442AC616C977345E89450F024F_inline(L_5, NULL); NullCheck(L_0); VirtualActionInvoker7< XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9*, RuntimeObject*, String_t*, String_t*, bool, bool, bool >::Invoke(5 /* System.Void System.Xml.Serialization.XmlSerializationWriterInterpreter::WriteObject(System.Xml.Serialization.XmlTypeMapping,System.Object,System.String,System.String,System.Boolean,System.Boolean,System.Boolean) */, L_0, L_1, L_2, L_4, L_6, (bool)0, (bool)1, (bool)0); return; } } #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.Xml.Serialization.XmlSerializer::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializer__cctor_m892E3B0E66A41F03ADE5B573B41124D0CE79F6E8 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7BFA33A11F0B12AF1B7FA1D9BA996EAE1EF77B49); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; int32_t G_B3_0 = 0; { ((XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B_StaticFields*)il2cpp_codegen_static_fields_for(XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B_il2cpp_TypeInfo_var))->___backgroundGeneration_1 = (bool)1; ((XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B_StaticFields*)il2cpp_codegen_static_fields_for(XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B_il2cpp_TypeInfo_var))->___deleteTempFiles_2 = (bool)1; ((XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B_StaticFields*)il2cpp_codegen_static_fields_for(XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B_il2cpp_TypeInfo_var))->___generatorFallback_3 = (bool)1; Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D*)il2cpp_codegen_object_new(Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var); NullCheck(L_0); Hashtable__ctor_mD7E2F1EB1BFD683186ECD6EDBE1708AF35C3A87D(L_0, NULL); ((XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B_StaticFields*)il2cpp_codegen_static_fields_for(XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B_il2cpp_TypeInfo_var))->___serializerTypes_7 = L_0; Il2CppCodeGenWriteBarrier((void**)(&((XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B_StaticFields*)il2cpp_codegen_static_fields_for(XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B_il2cpp_TypeInfo_var))->___serializerTypes_7), (void*)L_0); V_0 = (String_t*)NULL; ((XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B_StaticFields*)il2cpp_codegen_static_fields_for(XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B_il2cpp_TypeInfo_var))->___generationThreshold_0 = (-1); ((XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B_StaticFields*)il2cpp_codegen_static_fields_for(XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B_il2cpp_TypeInfo_var))->___backgroundGeneration_1 = (bool)0; String_t* L_1 = V_0; if (!L_1) { goto IL_003a; } } { String_t* L_2 = V_0; bool L_3; L_3 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_2, _stringLiteral7BFA33A11F0B12AF1B7FA1D9BA996EAE1EF77B49, NULL); G_B3_0 = ((int32_t)(L_3)); goto IL_003b; } IL_003a: { G_B3_0 = 1; } IL_003b: { ((XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B_StaticFields*)il2cpp_codegen_static_fields_for(XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B_il2cpp_TypeInfo_var))->___deleteTempFiles_2 = (bool)G_B3_0; return; } } // System.Void System.Xml.Serialization.XmlSerializer::.ctor(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializer__ctor_m3B27E3092ABEAA766FD4002A0F5D786992060604 (XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* __this, Type_t* ___0_type, const RuntimeMethod* method) { { Type_t* L_0 = ___0_type; XmlSerializer__ctor_m0DAA131F7E266D7999D10E867963DD2C4907C796(__this, L_0, (XmlAttributeOverrides_tEE6AE9EC795CDEF943B35BA538C86222F905EB60*)NULL, (TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)NULL, (XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF*)NULL, (String_t*)NULL, NULL); return; } } // System.Void System.Xml.Serialization.XmlSerializer::.ctor(System.Type,System.Xml.Serialization.XmlAttributeOverrides,System.Type[],System.Xml.Serialization.XmlRootAttribute,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializer__ctor_m0DAA131F7E266D7999D10E867963DD2C4907C796 (XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* __this, Type_t* ___0_type, XmlAttributeOverrides_tEE6AE9EC795CDEF943B35BA538C86222F905EB60* ___1_overrides, TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___2_extraTypes, XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* ___3_root, String_t* ___4_defaultNamespace, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* V_0 = NULL; TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* V_1 = NULL; int32_t V_2 = 0; Type_t* V_3 = NULL; { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); Type_t* L_0 = ___0_type; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); bool L_1; L_1 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_0, (Type_t*)NULL, NULL); if (!L_1) { goto IL_001a; } } { 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*)&_stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializer__ctor_m0DAA131F7E266D7999D10E867963DD2C4907C796_RuntimeMethod_var))); } IL_001a: { XmlAttributeOverrides_tEE6AE9EC795CDEF943B35BA538C86222F905EB60* L_3 = ___1_overrides; String_t* L_4 = ___4_defaultNamespace; XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* L_5 = (XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6*)il2cpp_codegen_object_new(XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6_il2cpp_TypeInfo_var); NullCheck(L_5); XmlReflectionImporter__ctor_mF3C2C417DAF876C4EFE9C4F415FAF171D6B7A142(L_5, L_3, L_4, NULL); V_0 = L_5; TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_6 = ___2_extraTypes; if (!L_6) { goto IL_0041; } } { TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_7 = ___2_extraTypes; V_1 = L_7; V_2 = 0; goto IL_003b; } IL_002c: { TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_8 = V_1; int32_t L_9 = V_2; NullCheck(L_8); int32_t L_10 = L_9; Type_t* L_11 = (L_8)->GetAt(static_cast(L_10)); V_3 = L_11; XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* L_12 = V_0; Type_t* L_13 = V_3; NullCheck(L_12); XmlReflectionImporter_IncludeType_mE13BACE7F8651EA6C6C9B8C8D8257D27CEE9D1BD(L_12, L_13, NULL); int32_t L_14 = V_2; V_2 = ((int32_t)il2cpp_codegen_add(L_14, 1)); } IL_003b: { int32_t L_15 = V_2; TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_16 = V_1; NullCheck(L_16); if ((((int32_t)L_15) < ((int32_t)((int32_t)(((RuntimeArray*)L_16)->max_length))))) { goto IL_002c; } } IL_0041: { XmlReflectionImporter_t35377D35396A0B7AF610724CE3256E34C0D271E6* L_17 = V_0; Type_t* L_18 = ___0_type; XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_19 = ___3_root; String_t* L_20 = ___4_defaultNamespace; NullCheck(L_17); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_21; L_21 = XmlReflectionImporter_ImportTypeMapping_m9A034588C8D63CE07DB971D8C4647FE55145077D(L_17, L_18, L_19, L_20, NULL); __this->___typeMapping_5 = L_21; Il2CppCodeGenWriteBarrier((void**)(&__this->___typeMapping_5), (void*)L_21); return; } } // System.Xml.Serialization.XmlMapping System.Xml.Serialization.XmlSerializer::get_Mapping() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* XmlSerializer_get_Mapping_mF9907A88C9DE4C5C31ACD6804471760CBD17B84B (XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* __this, const RuntimeMethod* method) { { XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* L_0 = __this->___typeMapping_5; return L_0; } } // System.Void System.Xml.Serialization.XmlSerializer::OnUnknownAttribute(System.Xml.Serialization.XmlAttributeEventArgs) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializer_OnUnknownAttribute_m83955AABD86AF00C5605A838877C54C48F01EC67 (XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* __this, XmlAttributeEventArgs_tE2113D9D778F9CC7EBD3D619A0342DB8C9CC7897* ___0_e, const RuntimeMethod* method) { { XmlAttributeEventHandler_tA9EE5C77A13FDC19DB5B3340F27245C620480F65* L_0 = __this->___onUnknownAttribute_9; if (!L_0) { goto IL_0015; } } { XmlAttributeEventHandler_tA9EE5C77A13FDC19DB5B3340F27245C620480F65* L_1 = __this->___onUnknownAttribute_9; XmlAttributeEventArgs_tE2113D9D778F9CC7EBD3D619A0342DB8C9CC7897* L_2 = ___0_e; NullCheck(L_1); XmlAttributeEventHandler_Invoke_m99D8E43DDDA786B20D62CC1A2BEE07B550FD459D_inline(L_1, __this, L_2, NULL); } IL_0015: { return; } } // System.Void System.Xml.Serialization.XmlSerializer::OnUnknownElement(System.Xml.Serialization.XmlElementEventArgs) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializer_OnUnknownElement_m40BA866EF7DE746B508A1815F5D833B63D1E05A0 (XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* __this, XmlElementEventArgs_t415AB97F2EC45400E0E5FD5DCEE66D2FC4912036* ___0_e, const RuntimeMethod* method) { { XmlElementEventHandler_tA1451D76D0A21C15B71AC8B380CC097DF71951F3* L_0 = __this->___onUnknownElement_10; if (!L_0) { goto IL_0015; } } { XmlElementEventHandler_tA1451D76D0A21C15B71AC8B380CC097DF71951F3* L_1 = __this->___onUnknownElement_10; XmlElementEventArgs_t415AB97F2EC45400E0E5FD5DCEE66D2FC4912036* L_2 = ___0_e; NullCheck(L_1); XmlElementEventHandler_Invoke_m46A4766C6A278307DA5CA525C68490202667A38A_inline(L_1, __this, L_2, NULL); } IL_0015: { return; } } // System.Void System.Xml.Serialization.XmlSerializer::OnUnknownNode(System.Xml.Serialization.XmlNodeEventArgs) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializer_OnUnknownNode_m3CB84FB8D0BC988F6A16253DA80D6165E28DC7DA (XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* __this, XmlNodeEventArgs_tD4D3A349309C779296ED1395F49A9D4793D2E21D* ___0_e, const RuntimeMethod* method) { { XmlNodeEventHandler_t32503D9F2F1A9E9E183779774CEFC13425BF6670* L_0 = __this->___onUnknownNode_11; if (!L_0) { goto IL_0015; } } { XmlNodeEventHandler_t32503D9F2F1A9E9E183779774CEFC13425BF6670* L_1 = __this->___onUnknownNode_11; XmlNodeEventArgs_tD4D3A349309C779296ED1395F49A9D4793D2E21D* L_2 = ___0_e; NullCheck(L_1); XmlNodeEventHandler_Invoke_mD6415CD57C5676C16FFFABFA463D1D68AC910D91_inline(L_1, __this, L_2, NULL); } IL_0015: { return; } } // System.Void System.Xml.Serialization.XmlSerializer::OnUnreferencedObject(System.Xml.Serialization.UnreferencedObjectEventArgs) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializer_OnUnreferencedObject_mEBD84F2A2C0972DC90465593AD4BBF211591E9E6 (XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* __this, UnreferencedObjectEventArgs_tA88A95B9F0BE849323A166089D04903D288C5760* ___0_e, const RuntimeMethod* method) { { UnreferencedObjectEventHandler_t7342B517610EE6E277FB060ED3C983CE68E0463A* L_0 = __this->___onUnreferencedObject_8; if (!L_0) { goto IL_0015; } } { UnreferencedObjectEventHandler_t7342B517610EE6E277FB060ED3C983CE68E0463A* L_1 = __this->___onUnreferencedObject_8; UnreferencedObjectEventArgs_tA88A95B9F0BE849323A166089D04903D288C5760* L_2 = ___0_e; NullCheck(L_1); UnreferencedObjectEventHandler_Invoke_m8877BE504717016EC402AE274F191FB7B64FB458_inline(L_1, __this, L_2, NULL); } IL_0015: { return; } } // System.Xml.Serialization.XmlSerializationReader System.Xml.Serialization.XmlSerializer::CreateReader() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* XmlSerializer_CreateReader_mFF7A9328B1A882BAE053F9A97E9BE08CFB6D4A59 (XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* __this, const RuntimeMethod* method) { { NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* L_0 = (NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8_il2cpp_TypeInfo_var))); NullCheck(L_0); NotImplementedException__ctor_mDAB47BC6BD0E342E8F2171E5CABE3E67EA049F1C(L_0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializer_CreateReader_mFF7A9328B1A882BAE053F9A97E9BE08CFB6D4A59_RuntimeMethod_var))); } } // System.Xml.Serialization.XmlSerializationWriter System.Xml.Serialization.XmlSerializer::CreateWriter() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* XmlSerializer_CreateWriter_mF409D1E7D954220C0567920449C9024C6DC9E2CA (XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* __this, const RuntimeMethod* method) { { NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* L_0 = (NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8_il2cpp_TypeInfo_var))); NullCheck(L_0); NotImplementedException__ctor_mDAB47BC6BD0E342E8F2171E5CABE3E67EA049F1C(L_0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializer_CreateWriter_mF409D1E7D954220C0567920449C9024C6DC9E2CA_RuntimeMethod_var))); } } // System.Object System.Xml.Serialization.XmlSerializer::Deserialize(System.IO.TextReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializer_Deserialize_m7487D353E77EED4F6A255D415AE87DBCBC0A6E2D (XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* __this, TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* ___0_textReader, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* V_0 = NULL; { TextReader_tB8D43017CB6BE1633E5A86D64E7757366507C1F7* L_0 = ___0_textReader; XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* L_1 = (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B*)il2cpp_codegen_object_new(XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B_il2cpp_TypeInfo_var); NullCheck(L_1); XmlTextReader__ctor_mC97F8050EA5BC3E461C2B682AF238D00196594AF(L_1, L_0, NULL); V_0 = L_1; XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* L_2 = V_0; NullCheck(L_2); XmlTextReader_set_Normalization_m768F00DAC7C1B4BAA7F6A39CF041610777680E14(L_2, (bool)1, NULL); XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* L_3 = V_0; NullCheck(L_3); XmlTextReader_set_WhitespaceHandling_m7288BA1929C27448D6D26A744C102FA5F2628192(L_3, 1, NULL); XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* L_4 = V_0; RuntimeObject* L_5; L_5 = XmlSerializer_Deserialize_m3F8DFF8F5A4052487062BAB8C60C110FA9AE40A8(__this, L_4, NULL); return L_5; } } // System.Object System.Xml.Serialization.XmlSerializer::Deserialize(System.Xml.XmlReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializer_Deserialize_m3F8DFF8F5A4052487062BAB8C60C110FA9AE40A8 (XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___0_xmlReader, const RuntimeMethod* method) { XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* V_0 = NULL; { bool L_0 = __this->___customSerializer_4; if (!L_0) { goto IL_0011; } } { XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* L_1; L_1 = VirtualFuncInvoker0< XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* >::Invoke(8 /* System.Xml.Serialization.XmlSerializationReader System.Xml.Serialization.XmlSerializer::CreateReader() */, __this); V_0 = L_1; goto IL_001e; } IL_0011: { XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* L_2 = __this->___typeMapping_5; XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* L_3; L_3 = XmlSerializer_CreateReader_mA0B60291B13CE14CAE5F8908CA3BE1578328FC52(__this, L_2, NULL); V_0 = L_3; } IL_001e: { XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* L_4 = V_0; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_5 = ___0_xmlReader; NullCheck(L_4); XmlSerializationReader_Initialize_m6788A7360CD9F0E55CBD18B68481A2A8AB55A5B8(L_4, L_5, __this, NULL); XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* L_6 = V_0; RuntimeObject* L_7; L_7 = VirtualFuncInvoker1< RuntimeObject*, XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* >::Invoke(10 /* System.Object System.Xml.Serialization.XmlSerializer::Deserialize(System.Xml.Serialization.XmlSerializationReader) */, __this, L_6); return L_7; } } // System.Object System.Xml.Serialization.XmlSerializer::Deserialize(System.Xml.Serialization.XmlSerializationReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlSerializer_Deserialize_mF6A93541E4FA8342534ACCA762F854541EBCD86B (XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* __this, XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* ___0_reader, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; Exception_t* V_1 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; { bool L_0 = __this->___customSerializer_4; if (!L_0) { goto IL_000e; } } { NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* L_1 = (NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8_il2cpp_TypeInfo_var))); NullCheck(L_1); NotImplementedException__ctor_mDAB47BC6BD0E342E8F2171E5CABE3E67EA049F1C(L_1, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializer_Deserialize_mF6A93541E4FA8342534ACCA762F854541EBCD86B_RuntimeMethod_var))); } IL_000e: { } try {// begin try (depth: 1) { XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* L_2 = ___0_reader; if (!((XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8*)IsInstClass((RuntimeObject*)L_2, XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var))) { goto IL_0025_1; } } { XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* L_3 = ___0_reader; NullCheck(((XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8*)CastclassClass((RuntimeObject*)L_3, XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var))); RuntimeObject* L_4; L_4 = XmlSerializationReaderInterpreter_ReadRoot_mC64D2353CEDB7BDABAB7A640D8681396BB046B4E(((XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8*)CastclassClass((RuntimeObject*)L_3, XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var)), NULL); V_0 = L_4; goto IL_0060; } IL_0025_1: { } try {// begin try (depth: 2) SerializerData_t80E5CC9586C1782157CDE6EA3518737643CEDDDF* L_5 = __this->___serializerData_6; NullCheck(L_5); MethodInfo_t* L_6 = L_5->___ReaderMethod_0; XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* L_7 = ___0_reader; NullCheck(L_6); RuntimeObject* L_8; L_8 = MethodBase_Invoke_mEEF3218648F111A8C338001A7804091A0747C826(L_6, L_7, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL, NULL); V_0 = L_8; goto IL_0060; }// end try (depth: 2) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TargetInvocationException_t46C470A37ED9947AFD45BD814387DF64665B69F2_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_003b_1; } throw e; } CATCH_003b_1: {// begin catch(System.Reflection.TargetInvocationException) NullCheck(((TargetInvocationException_t46C470A37ED9947AFD45BD814387DF64665B69F2*)IL2CPP_GET_ACTIVE_EXCEPTION(TargetInvocationException_t46C470A37ED9947AFD45BD814387DF64665B69F2*))); Exception_t* L_9; L_9 = Exception_get_InnerException_m0C1BDB339C786BA4DA7D2C1AD214571CFBBB1410_inline(((TargetInvocationException_t46C470A37ED9947AFD45BD814387DF64665B69F2*)IL2CPP_GET_ACTIVE_EXCEPTION(TargetInvocationException_t46C470A37ED9947AFD45BD814387DF64665B69F2*)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializer_Deserialize_mF6A93541E4FA8342534ACCA762F854541EBCD86B_RuntimeMethod_var))); }// end catch (depth: 2) }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0041; } throw e; } CATCH_0041: {// begin catch(System.Exception) { V_1 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*)); Exception_t* L_10 = V_1; if (((InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)IsInstClass((RuntimeObject*)L_10, ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))))) { goto IL_0052; } } { Exception_t* L_11 = V_1; if (!((InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)IsInstClass((RuntimeObject*)L_11, ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))))) { goto IL_005e; } } IL_0052: { Exception_t* L_12 = V_1; InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_13 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_13); InvalidOperationException__ctor_m63F5561BE647F655D22C8289E53A5D3A2196B668(L_13, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA0456228CB07E3980C756D1BE420870078E58D64)), L_12, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializer_Deserialize_mF6A93541E4FA8342534ACCA762F854541EBCD86B_RuntimeMethod_var))); } IL_005e: { IL2CPP_RETHROW_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*)); } }// end catch (depth: 1) IL_0060: { RuntimeObject* L_14 = V_0; return L_14; } } // System.Void System.Xml.Serialization.XmlSerializer::Serialize(System.Object,System.Xml.Serialization.XmlSerializationWriter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializer_Serialize_m4B83578545703FEF01E48C05DD5EFDF15E301964 (XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* __this, RuntimeObject* ___0_o, XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* ___1_writer, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } il2cpp::utils::ExceptionSupportStack __active_exceptions; { bool L_0 = __this->___customSerializer_4; if (!L_0) { goto IL_000e; } } { NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8* L_1 = (NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotImplementedException_t6366FE4DCF15094C51F4833B91A2AE68D4DA90E8_il2cpp_TypeInfo_var))); NullCheck(L_1); NotImplementedException__ctor_mDAB47BC6BD0E342E8F2171E5CABE3E67EA049F1C(L_1, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializer_Serialize_m4B83578545703FEF01E48C05DD5EFDF15E301964_RuntimeMethod_var))); } IL_000e: { XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* L_2 = ___1_writer; if (!((XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9*)IsInstClass((RuntimeObject*)L_2, XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9_il2cpp_TypeInfo_var))) { goto IL_0023; } } { XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* L_3 = ___1_writer; RuntimeObject* L_4 = ___0_o; NullCheck(((XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9*)CastclassClass((RuntimeObject*)L_3, XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9_il2cpp_TypeInfo_var))); XmlSerializationWriterInterpreter_WriteRoot_mDF5734ADBE4AE54FE85FF14C378249F22DCDDCAE(((XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9*)CastclassClass((RuntimeObject*)L_3, XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9_il2cpp_TypeInfo_var)), L_4, NULL); return; } IL_0023: { } try {// begin try (depth: 1) SerializerData_t80E5CC9586C1782157CDE6EA3518737643CEDDDF* L_5 = __this->___serializerData_6; NullCheck(L_5); MethodInfo_t* L_6 = L_5->___WriterMethod_2; XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* L_7 = ___1_writer; ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_8 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1); ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_9 = L_8; RuntimeObject* L_10 = ___0_o; NullCheck(L_9); ArrayElementTypeCheck (L_9, L_10); (L_9)->SetAt(static_cast(0), (RuntimeObject*)L_10); NullCheck(L_6); RuntimeObject* L_11; L_11 = MethodBase_Invoke_mEEF3218648F111A8C338001A7804091A0747C826(L_6, L_7, L_9, NULL); goto IL_0048; }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TargetInvocationException_t46C470A37ED9947AFD45BD814387DF64665B69F2_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0042; } throw e; } CATCH_0042: {// begin catch(System.Reflection.TargetInvocationException) NullCheck(((TargetInvocationException_t46C470A37ED9947AFD45BD814387DF64665B69F2*)IL2CPP_GET_ACTIVE_EXCEPTION(TargetInvocationException_t46C470A37ED9947AFD45BD814387DF64665B69F2*))); Exception_t* L_12; L_12 = Exception_get_InnerException_m0C1BDB339C786BA4DA7D2C1AD214571CFBBB1410_inline(((TargetInvocationException_t46C470A37ED9947AFD45BD814387DF64665B69F2*)IL2CPP_GET_ACTIVE_EXCEPTION(TargetInvocationException_t46C470A37ED9947AFD45BD814387DF64665B69F2*)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializer_Serialize_m4B83578545703FEF01E48C05DD5EFDF15E301964_RuntimeMethod_var))); }// end catch (depth: 1) IL_0048: { return; } } // System.Void System.Xml.Serialization.XmlSerializer::Serialize(System.IO.TextWriter,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializer_Serialize_m2EEA80F41157A3088A0E74EB55EA04ECAEE32CCF (XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* __this, TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___0_textWriter, RuntimeObject* ___1_o, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* V_0 = NULL; { TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* L_0 = ___0_textWriter; XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* L_1 = (XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B*)il2cpp_codegen_object_new(XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B_il2cpp_TypeInfo_var); NullCheck(L_1); XmlTextWriter__ctor_m4AE8363DFA5B2D16F3750514727C63D4A0096489(L_1, L_0, NULL); V_0 = L_1; XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* L_2 = V_0; NullCheck(L_2); XmlTextWriter_set_Formatting_mD13223E0443AB804ED5063976D4A8372BE7D7FA3(L_2, 1, NULL); XmlTextWriter_t9CB64E379F8FE646DA31698A03CE6AF8A594A73B* L_3 = V_0; RuntimeObject* L_4 = ___1_o; XmlSerializer_Serialize_mA94F97CFE1760586CA9CFE865B5593DC0ADFCBB0(__this, L_3, L_4, (XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93*)NULL, NULL); return; } } // System.Void System.Xml.Serialization.XmlSerializer::Serialize(System.Xml.XmlWriter,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializer_Serialize_mB74F49E255C6BCCE6912F2049914C6D18B73A2D1 (XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* __this, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___0_xmlWriter, RuntimeObject* ___1_o, const RuntimeMethod* method) { { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0 = ___0_xmlWriter; RuntimeObject* L_1 = ___1_o; XmlSerializer_Serialize_mA94F97CFE1760586CA9CFE865B5593DC0ADFCBB0(__this, L_0, L_1, (XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93*)NULL, NULL); return; } } // System.Void System.Xml.Serialization.XmlSerializer::Serialize(System.Xml.XmlWriter,System.Object,System.Xml.Serialization.XmlSerializerNamespaces) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializer_Serialize_mA94F97CFE1760586CA9CFE865B5593DC0ADFCBB0 (XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* __this, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___0_xmlWriter, RuntimeObject* ___1_o, XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93* ___2_namespaces, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6D67ADE9CC145DA3A39BC63DF500A7B0EC88CE4A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7C014955313A7D33D5D04696B884B25325E6393C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral805B49550CB3377ECB61B1B75AB5C38E884BA80C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE249DDFD90EBFAAEE63734F28F6668A2FB5BD5AF); s_Il2CppMethodInitialized = true; } XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* V_0 = NULL; Exception_t* V_1 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; try {// begin try (depth: 1) { bool L_0 = __this->___customSerializer_4; if (!L_0) { goto IL_0011_1; } } { XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* L_1; L_1 = VirtualFuncInvoker0< XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* >::Invoke(9 /* System.Xml.Serialization.XmlSerializationWriter System.Xml.Serialization.XmlSerializer::CreateWriter() */, __this); V_0 = L_1; goto IL_001e_1; } IL_0011_1: { XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* L_2 = __this->___typeMapping_5; XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* L_3; L_3 = XmlSerializer_CreateWriter_m63DD57F83F741F8457EF2DD61C399E0D08CAB75D(__this, L_2, NULL); V_0 = L_3; } IL_001e_1: { XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93* L_4 = ___2_namespaces; if (!L_4) { goto IL_0029_1; } } { XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93* L_5 = ___2_namespaces; NullCheck(L_5); int32_t L_6; L_6 = XmlSerializerNamespaces_get_Count_mED22239758B4ED23956188752797F66FD3C3F0D2(L_5, NULL); if (L_6) { goto IL_0050_1; } } IL_0029_1: { XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93* L_7 = (XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93*)il2cpp_codegen_object_new(XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93_il2cpp_TypeInfo_var); NullCheck(L_7); XmlSerializerNamespaces__ctor_mBE51E0E9233359BCF1602C6200E9D85084E83E91(L_7, NULL); ___2_namespaces = L_7; XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93* L_8 = ___2_namespaces; NullCheck(L_8); XmlSerializerNamespaces_Add_m4204802D44C6E5763F669D618F0B3D2B7BE49C4B(L_8, _stringLiteral6D67ADE9CC145DA3A39BC63DF500A7B0EC88CE4A, _stringLiteral7C014955313A7D33D5D04696B884B25325E6393C, NULL); XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93* L_9 = ___2_namespaces; NullCheck(L_9); XmlSerializerNamespaces_Add_m4204802D44C6E5763F669D618F0B3D2B7BE49C4B(L_9, _stringLiteral805B49550CB3377ECB61B1B75AB5C38E884BA80C, _stringLiteralE249DDFD90EBFAAEE63734F28F6668A2FB5BD5AF, NULL); } IL_0050_1: { XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* L_10 = V_0; XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_11 = ___0_xmlWriter; XmlSerializerNamespaces_t55D593FB2AB45488862F2C620A08F84A422A7E93* L_12 = ___2_namespaces; NullCheck(L_10); XmlSerializationWriter_Initialize_m11222210CAC28774F29C1EE771F734E71D70E95C(L_10, L_11, L_12, NULL); RuntimeObject* L_13 = ___1_o; XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* L_14 = V_0; VirtualActionInvoker2< RuntimeObject*, XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* >::Invoke(11 /* System.Void System.Xml.Serialization.XmlSerializer::Serialize(System.Object,System.Xml.Serialization.XmlSerializationWriter) */, __this, L_13, L_14); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_15 = ___0_xmlWriter; NullCheck(L_15); VirtualActionInvoker0::Invoke(29 /* System.Void System.Xml.XmlWriter::Flush() */, L_15); goto IL_0096; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0068; } throw e; } CATCH_0068: {// begin catch(System.Exception) { V_1 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*)); Exception_t* L_16 = V_1; if (!((TargetInvocationException_t46C470A37ED9947AFD45BD814387DF64665B69F2*)IsInstSealed((RuntimeObject*)L_16, ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TargetInvocationException_t46C470A37ED9947AFD45BD814387DF64665B69F2_il2cpp_TypeInfo_var))))) { goto IL_0078; } } { Exception_t* L_17 = V_1; NullCheck(L_17); Exception_t* L_18; L_18 = Exception_get_InnerException_m0C1BDB339C786BA4DA7D2C1AD214571CFBBB1410_inline(L_17, NULL); V_1 = L_18; } IL_0078: { Exception_t* L_19 = V_1; if (((InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)IsInstClass((RuntimeObject*)L_19, ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))))) { goto IL_0088; } } { Exception_t* L_20 = V_1; if (!((InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)IsInstClass((RuntimeObject*)L_20, ((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var))))) { goto IL_0094; } } IL_0088: { Exception_t* L_21 = V_1; InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_22 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_22); InvalidOperationException__ctor_m63F5561BE647F655D22C8289E53A5D3A2196B668(L_22, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral26B7C05AA4B2488CAA1781DA8040534799003358)), L_21, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_22, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializer_Serialize_mA94F97CFE1760586CA9CFE865B5593DC0ADFCBB0_RuntimeMethod_var))); } IL_0094: { IL2CPP_RETHROW_MANAGED_EXCEPTION(IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*)); } }// end catch (depth: 1) IL_0096: { return; } } // System.Xml.Serialization.XmlSerializationWriter System.Xml.Serialization.XmlSerializer::CreateWriter(System.Xml.Serialization.XmlMapping) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* XmlSerializer_CreateWriter_m63DD57F83F741F8457EF2DD61C399E0D08CAB75D (XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* __this, XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* ___0_typeMapping, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* V_0 = NULL; XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* V_1 = NULL; bool V_2 = false; SerializerData_t80E5CC9586C1782157CDE6EA3518737643CEDDDF* V_3 = NULL; bool V_4 = false; XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* V_5 = NULL; { V_1 = __this; V_2 = (bool)0; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_0049: {// begin finally (depth: 1) { bool L_0 = V_2; if (!L_0) { goto IL_0052; } } { XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* L_1 = V_1; Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_1, NULL); } IL_0052: { return; } }// end finally (depth: 1) }); try {// begin try (depth: 1) { XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* L_2 = V_1; Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_2, (&V_2), NULL); SerializerData_t80E5CC9586C1782157CDE6EA3518737643CEDDDF* L_3 = __this->___serializerData_6; if (!L_3) { goto IL_0047_1; } } { SerializerData_t80E5CC9586C1782157CDE6EA3518737643CEDDDF* L_4 = __this->___serializerData_6; V_3 = L_4; V_4 = (bool)0; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_0034_1: {// begin finally (depth: 2) { bool L_5 = V_4; if (!L_5) { goto IL_003e_1; } } { SerializerData_t80E5CC9586C1782157CDE6EA3518737643CEDDDF* L_6 = V_3; Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_6, NULL); } IL_003e_1: { return; } }// end finally (depth: 2) }); try {// begin try (depth: 2) SerializerData_t80E5CC9586C1782157CDE6EA3518737643CEDDDF* L_7 = V_3; Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_7, (&V_4), NULL); SerializerData_t80E5CC9586C1782157CDE6EA3518737643CEDDDF* L_8 = __this->___serializerData_6; NullCheck(L_8); XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* L_9; L_9 = SerializerData_CreateWriter_mD1B269EA292DDBF9FF0CC942CB18A7AA3F3A855C(L_8, NULL); V_0 = L_9; goto IL_003f_1; }// end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_003f_1: { XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* L_10 = V_0; if (!L_10) { goto IL_0047_1; } } { XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* L_11 = V_0; V_5 = L_11; goto IL_005a; } IL_0047_1: { goto IL_0053; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_0053: { XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* L_12 = ___0_typeMapping; XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9* L_13 = (XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9*)il2cpp_codegen_object_new(XmlSerializationWriterInterpreter_tDBB5111B4927E68D162B53A8B14976A1388E2EA9_il2cpp_TypeInfo_var); NullCheck(L_13); XmlSerializationWriterInterpreter__ctor_m03635FE7701F9E8ACEC9CF5D213284C18820CDDB(L_13, L_12, NULL); return L_13; } IL_005a: { XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* L_14 = V_5; return L_14; } } // System.Xml.Serialization.XmlSerializationReader System.Xml.Serialization.XmlSerializer::CreateReader(System.Xml.Serialization.XmlMapping) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* XmlSerializer_CreateReader_mA0B60291B13CE14CAE5F8908CA3BE1578328FC52 (XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* __this, XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* ___0_typeMapping, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* L_0 = ___0_typeMapping; XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8* L_1 = (XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8*)il2cpp_codegen_object_new(XmlSerializationReaderInterpreter_t912EF8FEC9E40E218B269BB1B990E9732A442CB8_il2cpp_TypeInfo_var); NullCheck(L_1); XmlSerializationReaderInterpreter__ctor_m6C881FC54D45877C33279E7DE29C17C53B821459(L_1, L_0, NULL); 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.Xml.Serialization.XmlSerializationWriter System.Xml.Serialization.XmlSerializer/SerializerData::CreateWriter() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* SerializerData_CreateWriter_mD1B269EA292DDBF9FF0CC942CB18A7AA3F3A855C (SerializerData_t80E5CC9586C1782157CDE6EA3518737643CEDDDF* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Type_t* L_0 = __this->___WriterType_1; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); bool L_1; L_1 = Type_op_Inequality_m83209C7BB3C05DFBEA3B6199B0BEFE8037301172(L_0, (Type_t*)NULL, NULL); if (!L_1) { goto IL_001f; } } { Type_t* L_2 = __this->___WriterType_1; RuntimeObject* L_3; L_3 = Activator_CreateInstance_mFF030428C64FDDFACC74DFAC97388A1C628BFBCF(L_2, NULL); return ((XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B*)CastclassClass((RuntimeObject*)L_3, XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B_il2cpp_TypeInfo_var)); } IL_001f: { XmlSerializerImplementation_tA5FE9BE0F0A19E7D007C585CFCB9A983FD88CE57* L_4 = __this->___Implementation_3; if (!L_4) { goto IL_0033; } } { XmlSerializerImplementation_tA5FE9BE0F0A19E7D007C585CFCB9A983FD88CE57* L_5 = __this->___Implementation_3; NullCheck(L_5); XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* L_6; L_6 = VirtualFuncInvoker0< XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* >::Invoke(4 /* System.Xml.Serialization.XmlSerializationWriter System.Xml.Serialization.XmlSerializerImplementation::get_Writer() */, L_5); return L_6; } IL_0033: { return (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B*)NULL; } } #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.Xml.Serialization.XmlSerializerFactory::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializerFactory__ctor_m66D9BF0716EB5B7B5CEECF0369FD0E8310698A9D (XmlSerializerFactory_t2486639A11775A86C56EA319CD0AF4848B465BA1* __this, const RuntimeMethod* method) { { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); return; } } // System.Xml.Serialization.XmlSerializer System.Xml.Serialization.XmlSerializerFactory::CreateSerializer(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* XmlSerializerFactory_CreateSerializer_m95D02B284CD5DE439A9302166F039EFE640E2B17 (XmlSerializerFactory_t2486639A11775A86C56EA319CD0AF4848B465BA1* __this, Type_t* ___0_type, const RuntimeMethod* method) { { Type_t* L_0 = ___0_type; XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* L_1; L_1 = XmlSerializerFactory_CreateSerializer_m196E45D3FA0AE356908D5295F7371878ADB0A907(__this, L_0, (XmlAttributeOverrides_tEE6AE9EC795CDEF943B35BA538C86222F905EB60*)NULL, (TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)NULL, (XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF*)NULL, (String_t*)NULL, NULL); return L_1; } } // System.Xml.Serialization.XmlSerializer System.Xml.Serialization.XmlSerializerFactory::CreateSerializer(System.Type,System.Xml.Serialization.XmlRootAttribute) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* XmlSerializerFactory_CreateSerializer_mE60D290D733550C098F9DB8F8DD31B6B7C1C9936 (XmlSerializerFactory_t2486639A11775A86C56EA319CD0AF4848B465BA1* __this, Type_t* ___0_type, XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* ___1_root, const RuntimeMethod* method) { { Type_t* L_0 = ___0_type; XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_1 = ___1_root; XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* L_2; L_2 = XmlSerializerFactory_CreateSerializer_m196E45D3FA0AE356908D5295F7371878ADB0A907(__this, L_0, (XmlAttributeOverrides_tEE6AE9EC795CDEF943B35BA538C86222F905EB60*)NULL, (TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)NULL, L_1, (String_t*)NULL, NULL); return L_2; } } // System.Xml.Serialization.XmlSerializer System.Xml.Serialization.XmlSerializerFactory::CreateSerializer(System.Type,System.Xml.Serialization.XmlAttributeOverrides,System.Type[],System.Xml.Serialization.XmlRootAttribute,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* XmlSerializerFactory_CreateSerializer_m196E45D3FA0AE356908D5295F7371878ADB0A907 (XmlSerializerFactory_t2486639A11775A86C56EA319CD0AF4848B465BA1* __this, Type_t* ___0_type, XmlAttributeOverrides_tEE6AE9EC795CDEF943B35BA538C86222F905EB60* ___1_overrides, TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___2_extraTypes, XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* ___3_root, String_t* ___4_defaultNamespace, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSerializerFactory_t2486639A11775A86C56EA319CD0AF4848B465BA1_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeSerializationSource_tE995CC9E60F76C0EDAC4CFAA7808ACCEF4225984_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlTypeSerializationSource_tE995CC9E60F76C0EDAC4CFAA7808ACCEF4225984* V_0 = NULL; Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* V_1 = NULL; bool V_2 = false; XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* V_3 = NULL; XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* V_4 = NULL; { Type_t* L_0 = ___0_type; XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_1 = ___3_root; XmlAttributeOverrides_tEE6AE9EC795CDEF943B35BA538C86222F905EB60* L_2 = ___1_overrides; String_t* L_3 = ___4_defaultNamespace; TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_4 = ___2_extraTypes; XmlTypeSerializationSource_tE995CC9E60F76C0EDAC4CFAA7808ACCEF4225984* L_5 = (XmlTypeSerializationSource_tE995CC9E60F76C0EDAC4CFAA7808ACCEF4225984*)il2cpp_codegen_object_new(XmlTypeSerializationSource_tE995CC9E60F76C0EDAC4CFAA7808ACCEF4225984_il2cpp_TypeInfo_var); NullCheck(L_5); XmlTypeSerializationSource__ctor_m34EF43265E5E8713A8F92E7DFEA6112615904CDC(L_5, L_0, L_1, L_2, L_3, L_4, NULL); V_0 = L_5; il2cpp_codegen_runtime_class_init_inline(XmlSerializerFactory_t2486639A11775A86C56EA319CD0AF4848B465BA1_il2cpp_TypeInfo_var); Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_6 = ((XmlSerializerFactory_t2486639A11775A86C56EA319CD0AF4848B465BA1_StaticFields*)il2cpp_codegen_static_fields_for(XmlSerializerFactory_t2486639A11775A86C56EA319CD0AF4848B465BA1_il2cpp_TypeInfo_var))->___serializersBySource_0; V_1 = L_6; V_2 = (bool)0; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_0059: {// begin finally (depth: 1) { bool L_7 = V_2; if (!L_7) { goto IL_0062; } } { Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_8 = V_1; Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_8, NULL); } IL_0062: { return; } }// end finally (depth: 1) }); try {// begin try (depth: 1) { Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_9 = V_1; Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_9, (&V_2), NULL); il2cpp_codegen_runtime_class_init_inline(XmlSerializerFactory_t2486639A11775A86C56EA319CD0AF4848B465BA1_il2cpp_TypeInfo_var); Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_10 = ((XmlSerializerFactory_t2486639A11775A86C56EA319CD0AF4848B465BA1_StaticFields*)il2cpp_codegen_static_fields_for(XmlSerializerFactory_t2486639A11775A86C56EA319CD0AF4848B465BA1_il2cpp_TypeInfo_var))->___serializersBySource_0; XmlTypeSerializationSource_tE995CC9E60F76C0EDAC4CFAA7808ACCEF4225984* L_11 = V_0; NullCheck(L_10); RuntimeObject* L_12; L_12 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_10, L_11); V_3 = ((XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B*)CastclassClass((RuntimeObject*)L_12, XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B_il2cpp_TypeInfo_var)); XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* L_13 = V_3; if (L_13) { goto IL_0054_1; } } { Type_t* L_14 = ___0_type; XmlAttributeOverrides_tEE6AE9EC795CDEF943B35BA538C86222F905EB60* L_15 = ___1_overrides; TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_16 = ___2_extraTypes; XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_17 = ___3_root; String_t* L_18 = ___4_defaultNamespace; XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* L_19 = (XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B*)il2cpp_codegen_object_new(XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B_il2cpp_TypeInfo_var); NullCheck(L_19); XmlSerializer__ctor_m0DAA131F7E266D7999D10E867963DD2C4907C796(L_19, L_14, L_15, L_16, L_17, L_18, NULL); V_3 = L_19; il2cpp_codegen_runtime_class_init_inline(XmlSerializerFactory_t2486639A11775A86C56EA319CD0AF4848B465BA1_il2cpp_TypeInfo_var); Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_20 = ((XmlSerializerFactory_t2486639A11775A86C56EA319CD0AF4848B465BA1_StaticFields*)il2cpp_codegen_static_fields_for(XmlSerializerFactory_t2486639A11775A86C56EA319CD0AF4848B465BA1_il2cpp_TypeInfo_var))->___serializersBySource_0; XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* L_21 = V_3; NullCheck(L_21); XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* L_22; L_22 = XmlSerializer_get_Mapping_mF9907A88C9DE4C5C31ACD6804471760CBD17B84B_inline(L_21, NULL); NullCheck(L_22); SerializationSource_t2F3A53A0FFC7BF8994CF332961FD3C0671E4A58C* L_23; L_23 = XmlMapping_get_Source_mE7270AE0C3619E1C39600FDE01BC069D94BB6652_inline(L_22, NULL); XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* L_24 = V_3; NullCheck(L_20); VirtualActionInvoker2< RuntimeObject*, RuntimeObject* >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_20, L_23, L_24); } IL_0054_1: { XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* L_25 = V_3; V_4 = L_25; goto IL_0063; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_0063: { XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* L_26 = V_4; return L_26; } } // System.Void System.Xml.Serialization.XmlSerializerFactory::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializerFactory__cctor_m02AED97D292DED49306EFCBF8BD3BBB786E4A832 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSerializerFactory_t2486639A11775A86C56EA319CD0AF4848B465BA1_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D*)il2cpp_codegen_object_new(Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var); NullCheck(L_0); Hashtable__ctor_mD7E2F1EB1BFD683186ECD6EDBE1708AF35C3A87D(L_0, NULL); ((XmlSerializerFactory_t2486639A11775A86C56EA319CD0AF4848B465BA1_StaticFields*)il2cpp_codegen_static_fields_for(XmlSerializerFactory_t2486639A11775A86C56EA319CD0AF4848B465BA1_il2cpp_TypeInfo_var))->___serializersBySource_0 = L_0; Il2CppCodeGenWriteBarrier((void**)(&((XmlSerializerFactory_t2486639A11775A86C56EA319CD0AF4848B465BA1_StaticFields*)il2cpp_codegen_static_fields_for(XmlSerializerFactory_t2486639A11775A86C56EA319CD0AF4848B465BA1_il2cpp_TypeInfo_var))->___serializersBySource_0), (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.Xml.Serialization.XmlSerializationWriter System.Xml.Serialization.XmlSerializerImplementation::get_Writer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* XmlSerializerImplementation_get_Writer_mAF12CDF082924FA5DC0A52A39662B78FCB545001 (XmlSerializerImplementation_tA5FE9BE0F0A19E7D007C585CFCB9A983FD88CE57* __this, const RuntimeMethod* method) { { NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var))); NullCheck(L_0); NotSupportedException__ctor_m1398D0CDE19B36AA3DE9392879738C1EA2439CDF(L_0, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializerImplementation_get_Writer_mAF12CDF082924FA5DC0A52A39662B78FCB545001_RuntimeMethod_var))); } } #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.Xml.Serialization.XmlTextAttribute::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextAttribute__ctor_mFC48949F7FA6F8C194579364B1C64FFCAF9C3F2B (XmlTextAttribute_tAA8BE9BA759F78BB4CDF00D3848B7746C0EDEFE0* __this, const RuntimeMethod* method) { { Attribute__ctor_m79ED1BF1EE36D1E417BA89A0D9F91F8AAD8D19E2(__this, NULL); return; } } // System.String System.Xml.Serialization.XmlTextAttribute::get_DataType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTextAttribute_get_DataType_m6B266372322103E2D735DC26D210652ECD475B07 (XmlTextAttribute_tAA8BE9BA759F78BB4CDF00D3848B7746C0EDEFE0* __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* L_0 = __this->___dataType_0; if (L_0) { goto IL_000e; } } { String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; return L_1; } IL_000e: { String_t* L_2 = __this->___dataType_0; return L_2; } } // System.Type System.Xml.Serialization.XmlTextAttribute::get_Type() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* XmlTextAttribute_get_Type_m6D956F711B1336CEAE650DDC4A35A9899CEF9861 (XmlTextAttribute_tAA8BE9BA759F78BB4CDF00D3848B7746C0EDEFE0* __this, const RuntimeMethod* method) { { Type_t* L_0 = __this->___type_1; return L_0; } } // System.Void System.Xml.Serialization.XmlTextAttribute::AddKeyHash(System.Text.StringBuilder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTextAttribute_AddKeyHash_m5084FCEC37C0FEABFFA86617BB1F2993D9F544DC (XmlTextAttribute_tAA8BE9BA759F78BB4CDF00D3848B7746C0EDEFE0* __this, StringBuilder_t* ___0_sb, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7914982E97DD1620A36E78FAF1791907C7625BE1); s_Il2CppMethodInitialized = true; } { StringBuilder_t* L_0 = ___0_sb; NullCheck(L_0); StringBuilder_t* L_1; L_1 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_0, _stringLiteral7914982E97DD1620A36E78FAF1791907C7625BE1, NULL); StringBuilder_t* L_2 = ___0_sb; Type_t* L_3 = __this->___type_1; KeyHelper_AddField_m0F0BB7334D857FD3C3C45CED49E29A85D13CD966(L_2, 1, L_3, NULL); StringBuilder_t* L_4 = ___0_sb; String_t* L_5 = __this->___dataType_0; KeyHelper_AddField_m768E2F45F0F3BF4B11D640BE8CCB308BA9FCE439(L_4, 2, L_5, NULL); StringBuilder_t* L_6 = ___0_sb; NullCheck(L_6); StringBuilder_t* L_7; L_7 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_6, ((int32_t)124), 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.Boolean System.Xml.Serialization.XmlTypeAttribute::get_IncludeInSchema() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeAttribute_get_IncludeInSchema_mDC85FE2BB6FE9BE2A457394CEEF91341CAA84DA3 (XmlTypeAttribute_t0EC23A25BEDDEB533D28BD2B87F5B3270E718EE5* __this, const RuntimeMethod* method) { { bool L_0 = __this->___includeInSchema_0; return L_0; } } // System.String System.Xml.Serialization.XmlTypeAttribute::get_Namespace() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTypeAttribute_get_Namespace_m856E7657F70CD29601993200EEAA7D1771F0FCC9 (XmlTypeAttribute_t0EC23A25BEDDEB533D28BD2B87F5B3270E718EE5* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___ns_1; return L_0; } } // System.String System.Xml.Serialization.XmlTypeAttribute::get_TypeName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTypeAttribute_get_TypeName_mB06CCEC7168EF5AF9B5286049A3E0571CAFDAD42 (XmlTypeAttribute_t0EC23A25BEDDEB533D28BD2B87F5B3270E718EE5* __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* L_0 = __this->___typeName_2; if (L_0) { goto IL_000e; } } { String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; return L_1; } IL_000e: { String_t* L_2 = __this->___typeName_2; return L_2; } } // System.Void System.Xml.Serialization.XmlTypeAttribute::AddKeyHash(System.Text.StringBuilder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeAttribute_AddKeyHash_mC4DAB0436EA984594404652066A6EFCF264465F9 (XmlTypeAttribute_t0EC23A25BEDDEB533D28BD2B87F5B3270E718EE5* __this, StringBuilder_t* ___0_sb, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB7FA3B4A2BBE0C82AE2519D75CC2237B2CD6663F); s_Il2CppMethodInitialized = true; } { StringBuilder_t* L_0 = ___0_sb; NullCheck(L_0); StringBuilder_t* L_1; L_1 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_0, _stringLiteralB7FA3B4A2BBE0C82AE2519D75CC2237B2CD6663F, NULL); StringBuilder_t* L_2 = ___0_sb; String_t* L_3 = __this->___ns_1; KeyHelper_AddField_m768E2F45F0F3BF4B11D640BE8CCB308BA9FCE439(L_2, 1, L_3, NULL); StringBuilder_t* L_4 = ___0_sb; String_t* L_5 = __this->___typeName_2; KeyHelper_AddField_m768E2F45F0F3BF4B11D640BE8CCB308BA9FCE439(L_4, 2, L_5, NULL); StringBuilder_t* L_6 = ___0_sb; bool L_7 = __this->___includeInSchema_0; KeyHelper_AddField_mDC2C3F5C998DFFF8EEA9842D02A98A18796ADBFD(L_6, 4, L_7, NULL); StringBuilder_t* L_8 = ___0_sb; NullCheck(L_8); StringBuilder_t* L_9; L_9 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_8, ((int32_t)124), 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.Xml.Serialization.XmlTypeMapElementInfo::.ctor(System.Xml.Serialization.XmlTypeMapMember,System.Xml.Serialization.TypeData) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo__ctor_m8E544F8C477BEB4FBA162B7D5B2DB2502EB4EE1D (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* ___0_member, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___1_type, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709); s_Il2CppMethodInitialized = true; } { __this->____namespace_1 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709; Il2CppCodeGenWriteBarrier((void**)(&__this->____namespace_1), (void*)_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709); __this->____wrappedElement_9 = (bool)1; __this->____explicitOrder_10 = (-1); Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_0 = ___0_member; __this->____member_3 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->____member_3), (void*)L_0); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_1 = ___1_type; __this->____type_8 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->____type_8), (void*)L_1); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_2 = ___1_type; NullCheck(L_2); bool L_3; L_3 = TypeData_get_IsValueType_m6A1F44C35FE034599DE34B16D1E5DFD8B83A021B(L_2, NULL); if (!L_3) { goto IL_0044; } } { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_4 = ___1_type; NullCheck(L_4); bool L_5; L_5 = TypeData_get_IsNullable_m31728B62ACF57A01989472F565DAAC86DA179D07(L_4, NULL); if (!L_5) { goto IL_0044; } } { __this->____isNullable_5 = (bool)1; } IL_0044: { return; } } // System.Xml.Serialization.TypeData System.Xml.Serialization.XmlTypeMapElementInfo::get_TypeData() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method) { { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_0 = __this->____type_8; return L_0; } } // System.Object System.Xml.Serialization.XmlTypeMapElementInfo::get_ChoiceValue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlTypeMapElementInfo_get_ChoiceValue_m7BC9464A497AFA7A1BF250BA0D88928706C6412E (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method) { { RuntimeObject* L_0 = __this->____choiceValue_4; return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapElementInfo::set_ChoiceValue(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo_set_ChoiceValue_m51083B31BC4A97D6C58F2A8FA96355BED2E37AAB (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, RuntimeObject* ___0_value, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___0_value; __this->____choiceValue_4 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->____choiceValue_4), (void*)L_0); return; } } // System.String System.Xml.Serialization.XmlTypeMapElementInfo::get_ElementName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTypeMapElementInfo_get_ElementName_m2B2B6484154E046A7FE5BE46092BF91A7B75D9CC (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->____elementName_0; return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapElementInfo::set_ElementName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo_set_ElementName_mEE8DF5FA9A346D3D437DF38E2B5E0BC20AA5DC40 (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, String_t* ___0_value, const RuntimeMethod* method) { { String_t* L_0 = ___0_value; __this->____elementName_0 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->____elementName_0), (void*)L_0); return; } } // System.String System.Xml.Serialization.XmlTypeMapElementInfo::get_Namespace() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTypeMapElementInfo_get_Namespace_m94DAAADC3EFEBC302C4D3574BD4835F222345498 (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->____namespace_1; return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapElementInfo::set_Namespace(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo_set_Namespace_mB1BAB4E18DAF612183E318500F2010C73D7B3B5A (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, String_t* ___0_value, const RuntimeMethod* method) { { String_t* L_0 = ___0_value; __this->____namespace_1 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->____namespace_1), (void*)L_0); return; } } // System.String System.Xml.Serialization.XmlTypeMapElementInfo::get_DataTypeNamespace() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTypeMapElementInfo_get_DataTypeNamespace_mA8278DAED1A896D6AC2B28664C54E0D81155252D (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE249DDFD90EBFAAEE63734F28F6668A2FB5BD5AF); s_Il2CppMethodInitialized = true; } { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_0 = __this->____mappedType_7; if (L_0) { goto IL_000e; } } { return _stringLiteralE249DDFD90EBFAAEE63734F28F6668A2FB5BD5AF; } IL_000e: { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_1 = __this->____mappedType_7; NullCheck(L_1); String_t* L_2; L_2 = XmlTypeMapping_get_XmlTypeNamespace_m9EF835B324606DBC55DF96AEFD62A9F4F7ED2B96(L_1, NULL); return L_2; } } // System.String System.Xml.Serialization.XmlTypeMapElementInfo::get_DataTypeName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTypeMapElementInfo_get_DataTypeName_mBC6E8CA4DD76FEE0551BFB93992D49C1C143519E (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method) { { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_0 = __this->____mappedType_7; if (L_0) { goto IL_0014; } } { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_1; L_1 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(__this, NULL); NullCheck(L_1); String_t* L_2; L_2 = TypeData_get_XmlType_m06749C1B19C57EB8649CBCD9B106C014DF511453_inline(L_1, NULL); return L_2; } IL_0014: { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_3 = __this->____mappedType_7; NullCheck(L_3); String_t* L_4; L_4 = XmlTypeMapping_get_XmlType_m5A30CB4EE3541CC1C65003757D5E743042846222_inline(L_3, NULL); return L_4; } } // System.Xml.Schema.XmlSchemaForm System.Xml.Serialization.XmlTypeMapElementInfo::get_Form() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTypeMapElementInfo_get_Form_m6D632374F4C5C58870DFDB60928B518C216180FA (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->____form_2; return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapElementInfo::set_Form(System.Xml.Schema.XmlSchemaForm) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo_set_Form_m404075D5C7B4E4CE0EC5ED46881D4D84C73E0102 (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, int32_t ___0_value, const RuntimeMethod* method) { { int32_t L_0 = ___0_value; __this->____form_2 = L_0; return; } } // System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlTypeMapElementInfo::get_MappedType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032 (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method) { { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_0 = __this->____mappedType_7; return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapElementInfo::set_MappedType(System.Xml.Serialization.XmlTypeMapping) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo_set_MappedType_m2FD5B0A4823A3FAF00E86D03C959D9B0E0D2A409 (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___0_value, const RuntimeMethod* method) { { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_0 = ___0_value; __this->____mappedType_7 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->____mappedType_7), (void*)L_0); return; } } // System.Boolean System.Xml.Serialization.XmlTypeMapElementInfo::get_IsNullable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeMapElementInfo_get_IsNullable_m5E6F72E9E7ADFA39100C6C0FFA1585BCDE4ACE75 (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method) { { bool L_0 = __this->____isNullable_5; return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapElementInfo::set_IsNullable(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo_set_IsNullable_m3F3A06CB2CB7DACBB6CF90B60346469EA5EE0A6F (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, bool ___0_value, const RuntimeMethod* method) { { bool L_0 = ___0_value; __this->____isNullable_5 = L_0; return; } } // System.Xml.Serialization.XmlTypeMapMember System.Xml.Serialization.XmlTypeMapElementInfo::get_Member() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742 (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method) { { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_0 = __this->____member_3; return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapElementInfo::set_NestingLevel(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo_set_NestingLevel_m104B8F548E5E7B0982E55AFA8900F9BB4E0E1A35 (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, int32_t ___0_value, const RuntimeMethod* method) { { int32_t L_0 = ___0_value; __this->____nestingLevel_6 = L_0; return; } } // System.Boolean System.Xml.Serialization.XmlTypeMapElementInfo::get_MultiReferenceType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeMapElementInfo_get_MultiReferenceType_m4176293D1962C6176A28D752B43F207817A93D2F (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method) { { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_0 = __this->____mappedType_7; if (!L_0) { goto IL_0014; } } { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_1 = __this->____mappedType_7; NullCheck(L_1); bool L_2; L_2 = XmlTypeMapping_get_MultiReferenceType_m6FF513956B40419EBD15B5C1D3B0DEA151AABD84_inline(L_1, NULL); return L_2; } IL_0014: { return (bool)0; } } // System.Boolean System.Xml.Serialization.XmlTypeMapElementInfo::get_WrappedElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeMapElementInfo_get_WrappedElement_m4A1874E9B5785B35A519EC5266425156A3B78468 (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method) { { bool L_0 = __this->____wrappedElement_9; return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapElementInfo::set_WrappedElement(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo_set_WrappedElement_m45FA9CFAFC7B8EB395F59D7832542F3410089195 (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, bool ___0_value, const RuntimeMethod* method) { { bool L_0 = ___0_value; __this->____wrappedElement_9 = L_0; return; } } // System.Boolean System.Xml.Serialization.XmlTypeMapElementInfo::get_IsTextElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeMapElementInfo_get_IsTextElement_m264B22862789A3E5250E3BC780F0E888115596AF (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral299A91A94BC12579A25B9F1508F87ACC3282548C); s_Il2CppMethodInitialized = true; } { String_t* L_0; L_0 = XmlTypeMapElementInfo_get_ElementName_m2B2B6484154E046A7FE5BE46092BF91A7B75D9CC_inline(__this, NULL); bool L_1; L_1 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_0, _stringLiteral299A91A94BC12579A25B9F1508F87ACC3282548C, NULL); return L_1; } } // System.Void System.Xml.Serialization.XmlTypeMapElementInfo::set_IsTextElement(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo_set_IsTextElement_mCE031A8FDAFEACF48094CCDF5C90BBB2A64E2655 (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, bool ___0_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral299A91A94BC12579A25B9F1508F87ACC3282548C); s_Il2CppMethodInitialized = true; } { bool L_0 = ___0_value; if (L_0) { goto IL_000e; } } { Exception_t* L_1 = (Exception_t*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var))); NullCheck(L_1); Exception__ctor_m9B2BD92CD68916245A75109105D9071C9D430E7F(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC4E721B999A0498B0D3E99AFADED5BDAD3296EC8)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTypeMapElementInfo_set_IsTextElement_mCE031A8FDAFEACF48094CCDF5C90BBB2A64E2655_RuntimeMethod_var))); } IL_000e: { XmlTypeMapElementInfo_set_ElementName_mEE8DF5FA9A346D3D437DF38E2B5E0BC20AA5DC40_inline(__this, _stringLiteral299A91A94BC12579A25B9F1508F87ACC3282548C, NULL); String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; XmlTypeMapElementInfo_set_Namespace_mB1BAB4E18DAF612183E318500F2010C73D7B3B5A_inline(__this, L_2, NULL); return; } } // System.Boolean System.Xml.Serialization.XmlTypeMapElementInfo::get_IsUnnamedAnyElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeMapElementInfo_get_IsUnnamedAnyElement_m037614B195603B217B28697A93F9BD4950E6CC30 (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __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* L_0; L_0 = XmlTypeMapElementInfo_get_ElementName_m2B2B6484154E046A7FE5BE46092BF91A7B75D9CC_inline(__this, NULL); String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; bool L_2; L_2 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_0, L_1, NULL); return L_2; } } // System.Void System.Xml.Serialization.XmlTypeMapElementInfo::set_IsUnnamedAnyElement(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo_set_IsUnnamedAnyElement_m9C07E7FD57FE290F705A2EC1EF3F4F3C36AB1DDD (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, bool ___0_value, 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; } { bool L_0 = ___0_value; if (L_0) { goto IL_000e; } } { Exception_t* L_1 = (Exception_t*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var))); NullCheck(L_1); Exception__ctor_m9B2BD92CD68916245A75109105D9071C9D430E7F(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC4E721B999A0498B0D3E99AFADED5BDAD3296EC8)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlTypeMapElementInfo_set_IsUnnamedAnyElement_m9C07E7FD57FE290F705A2EC1EF3F4F3C36AB1DDD_RuntimeMethod_var))); } IL_000e: { String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; XmlTypeMapElementInfo_set_ElementName_mEE8DF5FA9A346D3D437DF38E2B5E0BC20AA5DC40_inline(__this, L_2, NULL); String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; XmlTypeMapElementInfo_set_Namespace_mB1BAB4E18DAF612183E318500F2010C73D7B3B5A_inline(__this, L_3, NULL); return; } } // System.Int32 System.Xml.Serialization.XmlTypeMapElementInfo::get_ExplicitOrder() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTypeMapElementInfo_get_ExplicitOrder_m929232F83C9F294565C56EC38C5BACCA530DEDAB (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->____explicitOrder_10; return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapElementInfo::set_ExplicitOrder(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo_set_ExplicitOrder_mD893A153D81289F4A8C4A429800FEDB81E3578B4 (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, int32_t ___0_value, const RuntimeMethod* method) { { int32_t L_0 = ___0_value; __this->____explicitOrder_10 = L_0; return; } } // System.Boolean System.Xml.Serialization.XmlTypeMapElementInfo::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeMapElementInfo_Equals_mAA4A32B975EBE1CFE4611049CF4554F40591C3C5 (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, RuntimeObject* ___0_other, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* V_0 = NULL; { RuntimeObject* L_0 = ___0_other; if (L_0) { goto IL_0005; } } { return (bool)0; } IL_0005: { RuntimeObject* L_1 = ___0_other; V_0 = ((XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32*)CastclassClass((RuntimeObject*)L_1, XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var)); String_t* L_2 = __this->____elementName_0; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_3 = V_0; NullCheck(L_3); String_t* L_4 = L_3->____elementName_0; bool L_5; L_5 = String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6(L_2, L_4, NULL); if (!L_5) { goto IL_0021; } } { return (bool)0; } IL_0021: { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_6 = __this->____type_8; NullCheck(L_6); String_t* L_7; L_7 = TypeData_get_XmlType_m06749C1B19C57EB8649CBCD9B106C014DF511453_inline(L_6, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_8 = V_0; NullCheck(L_8); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_9 = L_8->____type_8; NullCheck(L_9); String_t* L_10; L_10 = TypeData_get_XmlType_m06749C1B19C57EB8649CBCD9B106C014DF511453_inline(L_9, NULL); bool L_11; L_11 = String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6(L_7, L_10, NULL); if (!L_11) { goto IL_0040; } } { return (bool)0; } IL_0040: { String_t* L_12 = __this->____namespace_1; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_13 = V_0; NullCheck(L_13); String_t* L_14 = L_13->____namespace_1; bool L_15; L_15 = String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6(L_12, L_14, NULL); if (!L_15) { goto IL_0055; } } { return (bool)0; } IL_0055: { int32_t L_16 = __this->____form_2; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_17 = V_0; NullCheck(L_17); int32_t L_18 = L_17->____form_2; if ((((int32_t)L_16) == ((int32_t)L_18))) { goto IL_0065; } } { return (bool)0; } IL_0065: { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_19 = __this->____type_8; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_20 = V_0; NullCheck(L_20); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_21 = L_20->____type_8; if ((((RuntimeObject*)(TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704*)L_19) == ((RuntimeObject*)(TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704*)L_21))) { goto IL_0075; } } { return (bool)0; } IL_0075: { bool L_22 = __this->____isNullable_5; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_23 = V_0; NullCheck(L_23); bool L_24 = L_23->____isNullable_5; if ((((int32_t)L_22) == ((int32_t)L_24))) { goto IL_0085; } } { return (bool)0; } IL_0085: { RuntimeObject* L_25 = __this->____choiceValue_4; if (!L_25) { goto IL_00a2; } } { RuntimeObject* L_26 = __this->____choiceValue_4; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_27 = V_0; NullCheck(L_27); RuntimeObject* L_28 = L_27->____choiceValue_4; NullCheck(L_26); bool L_29; L_29 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_26, L_28); if (L_29) { goto IL_00a2; } } { return (bool)0; } IL_00a2: { RuntimeObject* L_30 = __this->____choiceValue_4; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_31 = V_0; NullCheck(L_31); RuntimeObject* L_32 = L_31->____choiceValue_4; if ((((RuntimeObject*)(RuntimeObject*)L_30) == ((RuntimeObject*)(RuntimeObject*)L_32))) { goto IL_00b2; } } { return (bool)0; } IL_00b2: { return (bool)1; } } // System.Int32 System.Xml.Serialization.XmlTypeMapElementInfo::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTypeMapElementInfo_GetHashCode_mD0F042327569EC962B924DA88F33551266192819 (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method) { { int32_t L_0; L_0 = Object_GetHashCode_m372C5A7AB16CAC13307C11C4256D706CE57E090C(__this, NULL); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Serialization.XmlTypeMapElementInfoList::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapElementInfoList__ctor_mEEBEB4330F01D3172DDE3C685C96D1FDB5E70D1B (XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* __this, const RuntimeMethod* method) { { ArrayList__ctor_m07DC369002304B483B9FC41DBDAF4A25AC3C9F80(__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.Xml.Serialization.XmlTypeMapMember::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMember__ctor_m0FD3AECC0F53452D27E035C52A8B91C5941A7184 (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { __this->____globalIndex_2 = (-1); __this->____specifiedGlobalIndex_3 = (-1); il2cpp_codegen_runtime_class_init_inline(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var); DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC* L_0 = ((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_StaticFields*)il2cpp_codegen_static_fields_for(DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))->___Value_0; __this->____defaultValue_8 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->____defaultValue_8), (void*)L_0); Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); return; } } // System.String System.Xml.Serialization.XmlTypeMapMember::get_Name() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTypeMapMember_get_Name_mCF37113EDBC93BBAE3E38DDA503BF83C752287F9 (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->____name_0; return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapMember::set_Name(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMember_set_Name_m388D6A30E3DD11FD6068A5D5C180110C327EFC08 (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, String_t* ___0_value, const RuntimeMethod* method) { { String_t* L_0 = ___0_value; __this->____name_0 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->____name_0), (void*)L_0); return; } } // System.Object System.Xml.Serialization.XmlTypeMapMember::get_DefaultValue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlTypeMapMember_get_DefaultValue_m9E7FE48431CBCD4C9757423398D48F30B919CFC3 (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, const RuntimeMethod* method) { { RuntimeObject* L_0 = __this->____defaultValue_8; return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapMember::set_DefaultValue(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMember_set_DefaultValue_m97AC90D89BFEE878DA9FE3150292AD6E69B6FA27 (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, RuntimeObject* ___0_value, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___0_value; __this->____defaultValue_8 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->____defaultValue_8), (void*)L_0); return; } } // System.Boolean System.Xml.Serialization.XmlTypeMapMember::IsReadOnly(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeMapMember_IsReadOnly_mE3DBCC6D4CA65E2E2CAA00D4E21C30CAAC03F805 (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, Type_t* ___0_type, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyInfo_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { MemberInfo_t* L_0 = __this->____member_5; bool L_1; L_1 = MemberInfo_op_Equality_m4B4F1AF29C9361D125F6D7FAB3D227ED3FECE685(L_0, (MemberInfo_t*)NULL, NULL); if (!L_1) { goto IL_0015; } } { Type_t* L_2 = ___0_type; XmlTypeMapMember_InitMember_mDF86C7533AF7AB6E65BCA9AC7DD578135CECE28A(__this, L_2, NULL); } IL_0015: { MemberInfo_t* L_3 = __this->____member_5; if (!((PropertyInfo_t*)IsInstClass((RuntimeObject*)L_3, PropertyInfo_t_il2cpp_TypeInfo_var))) { goto IL_0036; } } { MemberInfo_t* L_4 = __this->____member_5; NullCheck(((PropertyInfo_t*)CastclassClass((RuntimeObject*)L_4, PropertyInfo_t_il2cpp_TypeInfo_var))); bool L_5; L_5 = VirtualFuncInvoker0< bool >::Invoke(21 /* System.Boolean System.Reflection.PropertyInfo::get_CanWrite() */, ((PropertyInfo_t*)CastclassClass((RuntimeObject*)L_4, PropertyInfo_t_il2cpp_TypeInfo_var))); return (bool)((((int32_t)L_5) == ((int32_t)0))? 1 : 0); } IL_0036: { return (bool)0; } } // System.Object System.Xml.Serialization.XmlTypeMapMember::GetValue(System.Object,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlTypeMapMember_GetValue_mD731B7698E115C16C268EBC285CDDD1BDC608504 (RuntimeObject* ___0_ob, String_t* ___1_name, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FieldInfo_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyInfo_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* V_0 = NULL; { RuntimeObject* L_0 = ___0_ob; NullCheck(L_0); Type_t* L_1; L_1 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_0, NULL); String_t* L_2 = ___1_name; NullCheck(L_1); MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* L_3; L_3 = VirtualFuncInvoker2< MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053*, String_t*, int32_t >::Invoke(89 /* System.Reflection.MemberInfo[] System.Type::GetMember(System.String,System.Reflection.BindingFlags) */, L_1, L_2, ((int32_t)20)); V_0 = L_3; MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* L_4 = V_0; NullCheck(L_4); int32_t L_5 = 0; MemberInfo_t* L_6 = (L_4)->GetAt(static_cast(L_5)); if (!((PropertyInfo_t*)IsInstClass((RuntimeObject*)L_6, PropertyInfo_t_il2cpp_TypeInfo_var))) { goto IL_0029; } } { MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* L_7 = V_0; NullCheck(L_7); int32_t L_8 = 0; MemberInfo_t* L_9 = (L_7)->GetAt(static_cast(L_8)); RuntimeObject* L_10 = ___0_ob; NullCheck(((PropertyInfo_t*)CastclassClass((RuntimeObject*)L_9, PropertyInfo_t_il2cpp_TypeInfo_var))); RuntimeObject* L_11; L_11 = VirtualFuncInvoker2< RuntimeObject*, RuntimeObject*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* >::Invoke(26 /* System.Object System.Reflection.PropertyInfo::GetValue(System.Object,System.Object[]) */, ((PropertyInfo_t*)CastclassClass((RuntimeObject*)L_9, PropertyInfo_t_il2cpp_TypeInfo_var)), L_10, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL); return L_11; } IL_0029: { MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* L_12 = V_0; NullCheck(L_12); int32_t L_13 = 0; MemberInfo_t* L_14 = (L_12)->GetAt(static_cast(L_13)); RuntimeObject* L_15 = ___0_ob; NullCheck(((FieldInfo_t*)CastclassClass((RuntimeObject*)L_14, FieldInfo_t_il2cpp_TypeInfo_var))); RuntimeObject* L_16; L_16 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(25 /* System.Object System.Reflection.FieldInfo::GetValue(System.Object) */, ((FieldInfo_t*)CastclassClass((RuntimeObject*)L_14, FieldInfo_t_il2cpp_TypeInfo_var)), L_15); return L_16; } } // System.Object System.Xml.Serialization.XmlTypeMapMember::GetValue(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XmlTypeMapMember_GetValue_mB762710324E36B398ED02670400043C5462A5ECF (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, RuntimeObject* ___0_ob, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FieldInfo_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyInfo_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { MemberInfo_t* L_0 = __this->____member_5; bool L_1; L_1 = MemberInfo_op_Equality_m4B4F1AF29C9361D125F6D7FAB3D227ED3FECE685(L_0, (MemberInfo_t*)NULL, NULL); if (!L_1) { goto IL_001a; } } { RuntimeObject* L_2 = ___0_ob; NullCheck(L_2); Type_t* L_3; L_3 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_2, NULL); XmlTypeMapMember_InitMember_mDF86C7533AF7AB6E65BCA9AC7DD578135CECE28A(__this, L_3, NULL); } IL_001a: { MemberInfo_t* L_4 = __this->____member_5; if (!((PropertyInfo_t*)IsInstClass((RuntimeObject*)L_4, PropertyInfo_t_il2cpp_TypeInfo_var))) { goto IL_003a; } } { MemberInfo_t* L_5 = __this->____member_5; RuntimeObject* L_6 = ___0_ob; NullCheck(((PropertyInfo_t*)CastclassClass((RuntimeObject*)L_5, PropertyInfo_t_il2cpp_TypeInfo_var))); RuntimeObject* L_7; L_7 = VirtualFuncInvoker2< RuntimeObject*, RuntimeObject*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* >::Invoke(26 /* System.Object System.Reflection.PropertyInfo::GetValue(System.Object,System.Object[]) */, ((PropertyInfo_t*)CastclassClass((RuntimeObject*)L_5, PropertyInfo_t_il2cpp_TypeInfo_var)), L_6, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL); return L_7; } IL_003a: { MemberInfo_t* L_8 = __this->____member_5; RuntimeObject* L_9 = ___0_ob; NullCheck(((FieldInfo_t*)CastclassClass((RuntimeObject*)L_8, FieldInfo_t_il2cpp_TypeInfo_var))); RuntimeObject* L_10; L_10 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(25 /* System.Object System.Reflection.FieldInfo::GetValue(System.Object) */, ((FieldInfo_t*)CastclassClass((RuntimeObject*)L_8, FieldInfo_t_il2cpp_TypeInfo_var)), L_9); return L_10; } } // System.Void System.Xml.Serialization.XmlTypeMapMember::SetValue(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMember_SetValue_m22E52C02AD75799B95A242B6B73EECFC0B20B81D (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, RuntimeObject* ___0_ob, RuntimeObject* ___1_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FieldInfo_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyInfo_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { MemberInfo_t* L_0 = __this->____member_5; bool L_1; L_1 = MemberInfo_op_Equality_m4B4F1AF29C9361D125F6D7FAB3D227ED3FECE685(L_0, (MemberInfo_t*)NULL, NULL); if (!L_1) { goto IL_001a; } } { RuntimeObject* L_2 = ___0_ob; NullCheck(L_2); Type_t* L_3; L_3 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_2, NULL); XmlTypeMapMember_InitMember_mDF86C7533AF7AB6E65BCA9AC7DD578135CECE28A(__this, L_3, NULL); } IL_001a: { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_4 = __this->____typeData_4; NullCheck(L_4); TypeData_ConvertForAssignment_m342A0D4CC583DB70A219F8D9470EAF36DC263092(L_4, (&___1_value), NULL); MemberInfo_t* L_5 = __this->____member_5; if (!((PropertyInfo_t*)IsInstClass((RuntimeObject*)L_5, PropertyInfo_t_il2cpp_TypeInfo_var))) { goto IL_0048; } } { MemberInfo_t* L_6 = __this->____member_5; RuntimeObject* L_7 = ___0_ob; RuntimeObject* L_8 = ___1_value; NullCheck(((PropertyInfo_t*)CastclassClass((RuntimeObject*)L_6, PropertyInfo_t_il2cpp_TypeInfo_var))); VirtualActionInvoker3< RuntimeObject*, RuntimeObject*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* >::Invoke(28 /* System.Void System.Reflection.PropertyInfo::SetValue(System.Object,System.Object,System.Object[]) */, ((PropertyInfo_t*)CastclassClass((RuntimeObject*)L_6, PropertyInfo_t_il2cpp_TypeInfo_var)), L_7, L_8, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL); return; } IL_0048: { MemberInfo_t* L_9 = __this->____member_5; RuntimeObject* L_10 = ___0_ob; RuntimeObject* L_11 = ___1_value; NullCheck(((FieldInfo_t*)CastclassClass((RuntimeObject*)L_9, FieldInfo_t_il2cpp_TypeInfo_var))); FieldInfo_SetValue_mD8C0DA3A1A0CFF073F971622BBDBAAB6688B4B6C(((FieldInfo_t*)CastclassClass((RuntimeObject*)L_9, FieldInfo_t_il2cpp_TypeInfo_var)), L_10, L_11, NULL); return; } } // System.Void System.Xml.Serialization.XmlTypeMapMember::SetValue(System.Object,System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMember_SetValue_mE1E56C2E7FF4BC0699E6B6EF73CB23C436438F30 (RuntimeObject* ___0_ob, String_t* ___1_name, RuntimeObject* ___2_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FieldInfo_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyInfo_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* V_0 = NULL; { RuntimeObject* L_0 = ___0_ob; NullCheck(L_0); Type_t* L_1; L_1 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_0, NULL); String_t* L_2 = ___1_name; NullCheck(L_1); MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* L_3; L_3 = VirtualFuncInvoker2< MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053*, String_t*, int32_t >::Invoke(89 /* System.Reflection.MemberInfo[] System.Type::GetMember(System.String,System.Reflection.BindingFlags) */, L_1, L_2, ((int32_t)20)); V_0 = L_3; MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* L_4 = V_0; NullCheck(L_4); int32_t L_5 = 0; MemberInfo_t* L_6 = (L_4)->GetAt(static_cast(L_5)); if (!((PropertyInfo_t*)IsInstClass((RuntimeObject*)L_6, PropertyInfo_t_il2cpp_TypeInfo_var))) { goto IL_002a; } } { MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* L_7 = V_0; NullCheck(L_7); int32_t L_8 = 0; MemberInfo_t* L_9 = (L_7)->GetAt(static_cast(L_8)); RuntimeObject* L_10 = ___0_ob; RuntimeObject* L_11 = ___2_value; NullCheck(((PropertyInfo_t*)CastclassClass((RuntimeObject*)L_9, PropertyInfo_t_il2cpp_TypeInfo_var))); VirtualActionInvoker3< RuntimeObject*, RuntimeObject*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* >::Invoke(28 /* System.Void System.Reflection.PropertyInfo::SetValue(System.Object,System.Object,System.Object[]) */, ((PropertyInfo_t*)CastclassClass((RuntimeObject*)L_9, PropertyInfo_t_il2cpp_TypeInfo_var)), L_10, L_11, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL); return; } IL_002a: { MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* L_12 = V_0; NullCheck(L_12); int32_t L_13 = 0; MemberInfo_t* L_14 = (L_12)->GetAt(static_cast(L_13)); RuntimeObject* L_15 = ___0_ob; RuntimeObject* L_16 = ___2_value; NullCheck(((FieldInfo_t*)CastclassClass((RuntimeObject*)L_14, FieldInfo_t_il2cpp_TypeInfo_var))); FieldInfo_SetValue_mD8C0DA3A1A0CFF073F971622BBDBAAB6688B4B6C(((FieldInfo_t*)CastclassClass((RuntimeObject*)L_14, FieldInfo_t_il2cpp_TypeInfo_var)), L_15, L_16, NULL); return; } } // System.Void System.Xml.Serialization.XmlTypeMapMember::InitMember(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMember_InitMember_mDF86C7533AF7AB6E65BCA9AC7DD578135CECE28A (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, Type_t* ___0_type, 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*)&PropertyInfo_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7A846A225A3909AB39CFF23BE13DACF54C540FEC); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral87C858E345116CE7C4123AF185CDD74EFDD94384); s_Il2CppMethodInitialized = true; } MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* V_0 = NULL; MethodInfo_t* V_1 = NULL; { Type_t* L_0 = ___0_type; String_t* L_1 = __this->____name_0; NullCheck(L_0); MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* L_2; L_2 = VirtualFuncInvoker2< MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053*, String_t*, int32_t >::Invoke(89 /* System.Reflection.MemberInfo[] System.Type::GetMember(System.String,System.Reflection.BindingFlags) */, L_0, L_1, ((int32_t)20)); V_0 = L_2; MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* L_3 = V_0; NullCheck(L_3); int32_t L_4 = 0; MemberInfo_t* L_5 = (L_3)->GetAt(static_cast(L_4)); __this->____member_5 = L_5; Il2CppCodeGenWriteBarrier((void**)(&__this->____member_5), (void*)L_5); Type_t* L_6 = ___0_type; String_t* L_7 = __this->____name_0; String_t* L_8; L_8 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_7, _stringLiteral87C858E345116CE7C4123AF185CDD74EFDD94384, NULL); NullCheck(L_6); MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* L_9; L_9 = VirtualFuncInvoker2< MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053*, String_t*, int32_t >::Invoke(89 /* System.Reflection.MemberInfo[] System.Type::GetMember(System.String,System.Reflection.BindingFlags) */, L_6, L_8, ((int32_t)20)); V_0 = L_9; MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* L_10 = V_0; NullCheck(L_10); if (!(((RuntimeArray*)L_10)->max_length)) { goto IL_003e; } } { MemberInfoU5BU5D_t4CB6970BB166E8E1CFB06152B2A2284971873053* L_11 = V_0; NullCheck(L_11); int32_t L_12 = 0; MemberInfo_t* L_13 = (L_11)->GetAt(static_cast(L_12)); __this->____specifiedMember_6 = L_13; Il2CppCodeGenWriteBarrier((void**)(&__this->____specifiedMember_6), (void*)L_13); } IL_003e: { MemberInfo_t* L_14 = __this->____specifiedMember_6; if (!((PropertyInfo_t*)IsInstClass((RuntimeObject*)L_14, PropertyInfo_t_il2cpp_TypeInfo_var))) { goto IL_0064; } } { MemberInfo_t* L_15 = __this->____specifiedMember_6; NullCheck(((PropertyInfo_t*)CastclassClass((RuntimeObject*)L_15, PropertyInfo_t_il2cpp_TypeInfo_var))); bool L_16; L_16 = VirtualFuncInvoker0< bool >::Invoke(20 /* System.Boolean System.Reflection.PropertyInfo::get_CanRead() */, ((PropertyInfo_t*)CastclassClass((RuntimeObject*)L_15, PropertyInfo_t_il2cpp_TypeInfo_var))); if (L_16) { goto IL_0064; } } { __this->____specifiedMember_6 = (MemberInfo_t*)NULL; Il2CppCodeGenWriteBarrier((void**)(&__this->____specifiedMember_6), (void*)(MemberInfo_t*)NULL); } IL_0064: { Type_t* L_17 = ___0_type; String_t* L_18 = __this->____name_0; String_t* L_19; L_19 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(_stringLiteral7A846A225A3909AB39CFF23BE13DACF54C540FEC, L_18, NULL); il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_20 = ((Type_t_StaticFields*)il2cpp_codegen_static_fields_for(Type_t_il2cpp_TypeInfo_var))->___EmptyTypes_2; NullCheck(L_17); MethodInfo_t* L_21; L_21 = Type_GetMethod_mF3AF3FA3834D7F99592A4CA715FFD2DE12291562(L_17, L_19, ((int32_t)20), (Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235*)NULL, L_20, (ParameterModifierU5BU5D_t685261AD991B1E6582A0E53243DEE3B745E13364*)NULL, NULL); V_1 = L_21; MethodInfo_t* L_22 = V_1; bool L_23; L_23 = MethodInfo_op_Inequality_mB73597A1FCC2F906DBCADDEC68A1B7D5B7E89FA8(L_22, (MethodInfo_t*)NULL, NULL); if (!L_23) { goto IL_00b3; } } { MethodInfo_t* L_24 = V_1; NullCheck(L_24); Type_t* L_25; L_25 = VirtualFuncInvoker0< Type_t* >::Invoke(41 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, L_24); RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_26 = { reinterpret_cast (Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_27; L_27 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_26, NULL); bool L_28; L_28 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_25, L_27, NULL); if (!L_28) { goto IL_00b3; } } { MethodInfo_t* L_29 = V_1; NullCheck(L_29); bool L_30; L_30 = VirtualFuncInvoker0< bool >::Invoke(27 /* System.Boolean System.Reflection.MethodBase::get_IsGenericMethod() */, L_29); if (L_30) { goto IL_00b3; } } { MethodInfo_t* L_31 = V_1; __this->____shouldSerialize_7 = L_31; Il2CppCodeGenWriteBarrier((void**)(&__this->____shouldSerialize_7), (void*)L_31); } IL_00b3: { return; } } // System.Xml.Serialization.TypeData System.Xml.Serialization.XmlTypeMapMember::get_TypeData() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, const RuntimeMethod* method) { { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_0 = __this->____typeData_4; return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapMember::set_TypeData(System.Xml.Serialization.TypeData) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMember_set_TypeData_m9C4CAF5B4A21DE54C9DE9F90C1332BBDAA4A4B4C (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___0_value, const RuntimeMethod* method) { { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_0 = ___0_value; __this->____typeData_4 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->____typeData_4), (void*)L_0); return; } } // System.Int32 System.Xml.Serialization.XmlTypeMapMember::get_Index() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTypeMapMember_get_Index_m3EAB1243B03E5DBD10C6E7CA245E5A6C04406D12 (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->____index_1; return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapMember::set_Index(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMember_set_Index_m2CF151DEBC1293A91B0126F579B2CA6730CC4D56 (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, int32_t ___0_value, const RuntimeMethod* method) { { int32_t L_0 = ___0_value; __this->____index_1 = L_0; return; } } // System.Int32 System.Xml.Serialization.XmlTypeMapMember::get_GlobalIndex() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTypeMapMember_get_GlobalIndex_mC43A1F277B76C624EFAF264B32293499D51853B6 (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->____globalIndex_2; return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapMember::set_GlobalIndex(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMember_set_GlobalIndex_m472100DAE18C222CFAD14F0085743759FB1B11C3 (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, int32_t ___0_value, const RuntimeMethod* method) { { int32_t L_0 = ___0_value; __this->____globalIndex_2 = L_0; return; } } // System.Boolean System.Xml.Serialization.XmlTypeMapMember::get_IsOptionalValueType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeMapMember_get_IsOptionalValueType_m21B5B22EAE095810603E2FE3CCD076B126272047 (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->____flags_9; return (bool)((!(((uint32_t)((int32_t)(L_0&1))) <= ((uint32_t)0)))? 1 : 0); } } // System.Void System.Xml.Serialization.XmlTypeMapMember::set_IsOptionalValueType(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMember_set_IsOptionalValueType_m1ECC62001B49DDCD0356F7813B56837977884C92 (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, bool ___0_value, const RuntimeMethod* method) { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* G_B2_0 = NULL; XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* G_B1_0 = NULL; int32_t G_B3_0 = 0; XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* G_B3_1 = NULL; { bool L_0 = ___0_value; G_B1_0 = __this; if (L_0) { G_B2_0 = __this; goto IL_000f; } } { int32_t L_1 = __this->____flags_9; G_B3_0 = ((int32_t)(L_1&((int32_t)-2))); G_B3_1 = G_B1_0; goto IL_0017; } IL_000f: { int32_t L_2 = __this->____flags_9; G_B3_0 = ((int32_t)(L_2|1)); G_B3_1 = G_B2_0; } IL_0017: { NullCheck(G_B3_1); G_B3_1->____flags_9 = G_B3_0; return; } } // System.Boolean System.Xml.Serialization.XmlTypeMapMember::get_IsReturnValue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeMapMember_get_IsReturnValue_m2FF8236466A439AB4412508BE3D78C3C71A47481 (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->____flags_9; return (bool)((!(((uint32_t)((int32_t)(L_0&2))) <= ((uint32_t)0)))? 1 : 0); } } // System.Void System.Xml.Serialization.XmlTypeMapMember::set_IsReturnValue(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMember_set_IsReturnValue_m8E27F10143941CADA16EEB3F2B81DCE9BB573AD1 (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, bool ___0_value, const RuntimeMethod* method) { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* G_B2_0 = NULL; XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* G_B1_0 = NULL; int32_t G_B3_0 = 0; XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* G_B3_1 = NULL; { bool L_0 = ___0_value; G_B1_0 = __this; if (L_0) { G_B2_0 = __this; goto IL_000f; } } { int32_t L_1 = __this->____flags_9; G_B3_0 = ((int32_t)(L_1&((int32_t)-3))); G_B3_1 = G_B1_0; goto IL_0017; } IL_000f: { int32_t L_2 = __this->____flags_9; G_B3_0 = ((int32_t)(L_2|2)); G_B3_1 = G_B2_0; } IL_0017: { NullCheck(G_B3_1); G_B3_1->____flags_9 = G_B3_0; return; } } // System.Void System.Xml.Serialization.XmlTypeMapMember::CheckOptionalValueType(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMember_CheckOptionalValueType_mC3A9B15424B4E2F537CAD6602EA32522C47FC36B (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, Type_t* ___0_type, const RuntimeMethod* method) { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* G_B4_0 = NULL; XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* G_B3_0 = NULL; int32_t G_B5_0 = 0; XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* G_B5_1 = NULL; { MemberInfo_t* L_0 = __this->____member_5; bool L_1; L_1 = MemberInfo_op_Equality_m4B4F1AF29C9361D125F6D7FAB3D227ED3FECE685(L_0, (MemberInfo_t*)NULL, NULL); if (!L_1) { goto IL_0015; } } { Type_t* L_2 = ___0_type; XmlTypeMapMember_InitMember_mDF86C7533AF7AB6E65BCA9AC7DD578135CECE28A(__this, L_2, NULL); } IL_0015: { MemberInfo_t* L_3 = __this->____specifiedMember_6; bool L_4; L_4 = MemberInfo_op_Inequality_m30A32A50379A6AD359992D3DED56EDE4646D17CA(L_3, (MemberInfo_t*)NULL, NULL); G_B3_0 = __this; if (L_4) { G_B4_0 = __this; goto IL_0032; } } { MethodInfo_t* L_5 = __this->____shouldSerialize_7; bool L_6; L_6 = MethodInfo_op_Inequality_mB73597A1FCC2F906DBCADDEC68A1B7D5B7E89FA8(L_5, (MethodInfo_t*)NULL, NULL); G_B5_0 = ((int32_t)(L_6)); G_B5_1 = G_B3_0; goto IL_0033; } IL_0032: { G_B5_0 = 1; G_B5_1 = G_B4_0; } IL_0033: { NullCheck(G_B5_1); XmlTypeMapMember_set_IsOptionalValueType_m1ECC62001B49DDCD0356F7813B56837977884C92(G_B5_1, (bool)G_B5_0, NULL); return; } } // System.Boolean System.Xml.Serialization.XmlTypeMapMember::GetValueSpecified(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeMapMember_GetValueSpecified_mC0FAFD520F9FE9A1DFAFFE40C0B1913CA83E3637 (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, RuntimeObject* ___0_ob, 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*)&FieldInfo_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyInfo_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_1 = NULL; int32_t G_B12_0 = 0; { int32_t L_0 = __this->____specifiedGlobalIndex_3; if ((((int32_t)L_0) == ((int32_t)(-1)))) { goto IL_002b; } } { RuntimeObject* L_1 = ___0_ob; V_1 = ((ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)Castclass((RuntimeObject*)L_1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)); int32_t L_2 = __this->____specifiedGlobalIndex_3; ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = V_1; NullCheck(L_3); if ((((int32_t)L_2) >= ((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length))))) { goto IL_0029; } } { ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = V_1; int32_t L_5 = __this->____specifiedGlobalIndex_3; NullCheck(L_4); int32_t L_6 = L_5; RuntimeObject* L_7 = (L_4)->GetAt(static_cast(L_6)); return ((*(bool*)((bool*)(bool*)UnBox(L_7, Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var)))); } IL_0029: { return (bool)0; } IL_002b: { V_0 = (bool)1; MemberInfo_t* L_8 = __this->____specifiedMember_6; bool L_9; L_9 = MemberInfo_op_Inequality_m30A32A50379A6AD359992D3DED56EDE4646D17CA(L_8, (MemberInfo_t*)NULL, NULL); if (!L_9) { goto IL_0079; } } { MemberInfo_t* L_10 = __this->____specifiedMember_6; if (!((PropertyInfo_t*)IsInstClass((RuntimeObject*)L_10, PropertyInfo_t_il2cpp_TypeInfo_var))) { goto IL_0062; } } { MemberInfo_t* L_11 = __this->____specifiedMember_6; RuntimeObject* L_12 = ___0_ob; NullCheck(((PropertyInfo_t*)CastclassClass((RuntimeObject*)L_11, PropertyInfo_t_il2cpp_TypeInfo_var))); RuntimeObject* L_13; L_13 = VirtualFuncInvoker2< RuntimeObject*, RuntimeObject*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* >::Invoke(26 /* System.Object System.Reflection.PropertyInfo::GetValue(System.Object,System.Object[]) */, ((PropertyInfo_t*)CastclassClass((RuntimeObject*)L_11, PropertyInfo_t_il2cpp_TypeInfo_var)), L_12, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL); V_0 = ((*(bool*)((bool*)(bool*)UnBox(L_13, Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var)))); goto IL_0079; } IL_0062: { MemberInfo_t* L_14 = __this->____specifiedMember_6; RuntimeObject* L_15 = ___0_ob; NullCheck(((FieldInfo_t*)CastclassClass((RuntimeObject*)L_14, FieldInfo_t_il2cpp_TypeInfo_var))); RuntimeObject* L_16; L_16 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(25 /* System.Object System.Reflection.FieldInfo::GetValue(System.Object) */, ((FieldInfo_t*)CastclassClass((RuntimeObject*)L_14, FieldInfo_t_il2cpp_TypeInfo_var)), L_15); V_0 = ((*(bool*)((bool*)(bool*)UnBox(L_16, Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var)))); } IL_0079: { MethodInfo_t* L_17 = __this->____shouldSerialize_7; bool L_18; L_18 = MethodInfo_op_Inequality_mB73597A1FCC2F906DBCADDEC68A1B7D5B7E89FA8(L_17, (MethodInfo_t*)NULL, NULL); if (!L_18) { goto IL_00a5; } } { bool L_19 = V_0; if (!L_19) { goto IL_00a3; } } { MethodInfo_t* L_20 = __this->____shouldSerialize_7; RuntimeObject* L_21 = ___0_ob; ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_22 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)0); NullCheck(L_20); RuntimeObject* L_23; L_23 = MethodBase_Invoke_mEEF3218648F111A8C338001A7804091A0747C826(L_20, L_21, L_22, NULL); G_B12_0 = ((int32_t)(((*(bool*)((bool*)(bool*)UnBox(L_23, Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var)))))); goto IL_00a4; } IL_00a3: { G_B12_0 = 0; } IL_00a4: { V_0 = (bool)G_B12_0; } IL_00a5: { bool L_24 = V_0; return L_24; } } // System.Void System.Xml.Serialization.XmlTypeMapMember::SetValueSpecified(System.Object,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMember_SetValueSpecified_m59690B6CAF6C450B85F61653053632248FEE544C (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, RuntimeObject* ___0_ob, bool ___1_value, 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*)&FieldInfo_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyInfo_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->____specifiedGlobalIndex_3; if ((((int32_t)L_0) == ((int32_t)(-1)))) { goto IL_001d; } } { RuntimeObject* L_1 = ___0_ob; int32_t L_2 = __this->____specifiedGlobalIndex_3; bool L_3 = ___1_value; bool L_4 = L_3; RuntimeObject* L_5 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_4); NullCheck(((ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)Castclass((RuntimeObject*)L_1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var))); ArrayElementTypeCheck (((ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)Castclass((RuntimeObject*)L_1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)), L_5); (((ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)Castclass((RuntimeObject*)L_1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var)))->SetAt(static_cast(L_2), (RuntimeObject*)L_5); return; } IL_001d: { MemberInfo_t* L_6 = __this->____specifiedMember_6; if (!((PropertyInfo_t*)IsInstClass((RuntimeObject*)L_6, PropertyInfo_t_il2cpp_TypeInfo_var))) { goto IL_0056; } } { MemberInfo_t* L_7 = __this->____specifiedMember_6; NullCheck(((PropertyInfo_t*)CastclassClass((RuntimeObject*)L_7, PropertyInfo_t_il2cpp_TypeInfo_var))); bool L_8; L_8 = VirtualFuncInvoker0< bool >::Invoke(21 /* System.Boolean System.Reflection.PropertyInfo::get_CanWrite() */, ((PropertyInfo_t*)CastclassClass((RuntimeObject*)L_7, PropertyInfo_t_il2cpp_TypeInfo_var))); if (L_8) { goto IL_003d; } } { return; } IL_003d: { MemberInfo_t* L_9 = __this->____specifiedMember_6; RuntimeObject* L_10 = ___0_ob; bool L_11 = ___1_value; bool L_12 = L_11; RuntimeObject* L_13 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_12); NullCheck(((PropertyInfo_t*)CastclassClass((RuntimeObject*)L_9, PropertyInfo_t_il2cpp_TypeInfo_var))); VirtualActionInvoker3< RuntimeObject*, RuntimeObject*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* >::Invoke(28 /* System.Void System.Reflection.PropertyInfo::SetValue(System.Object,System.Object,System.Object[]) */, ((PropertyInfo_t*)CastclassClass((RuntimeObject*)L_9, PropertyInfo_t_il2cpp_TypeInfo_var)), L_10, L_13, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL); return; } IL_0056: { MemberInfo_t* L_14 = __this->____specifiedMember_6; if (!((FieldInfo_t*)IsInstClass((RuntimeObject*)L_14, FieldInfo_t_il2cpp_TypeInfo_var))) { goto IL_007a; } } { MemberInfo_t* L_15 = __this->____specifiedMember_6; RuntimeObject* L_16 = ___0_ob; bool L_17 = ___1_value; bool L_18 = L_17; RuntimeObject* L_19 = Box(Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var, &L_18); NullCheck(((FieldInfo_t*)CastclassClass((RuntimeObject*)L_15, FieldInfo_t_il2cpp_TypeInfo_var))); FieldInfo_SetValue_mD8C0DA3A1A0CFF073F971622BBDBAAB6688B4B6C(((FieldInfo_t*)CastclassClass((RuntimeObject*)L_15, FieldInfo_t_il2cpp_TypeInfo_var)), L_16, L_19, NULL); } IL_007a: { 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.Xml.Serialization.XmlTypeMapMemberAttribute::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMemberAttribute__ctor_m114811B0B3047CF56B5C834D9B72D64CE7DA45AD (XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709); s_Il2CppMethodInitialized = true; } { __this->____namespace_11 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709; Il2CppCodeGenWriteBarrier((void**)(&__this->____namespace_11), (void*)_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709); XmlTypeMapMember__ctor_m0FD3AECC0F53452D27E035C52A8B91C5941A7184(__this, NULL); return; } } // System.String System.Xml.Serialization.XmlTypeMapMemberAttribute::get_AttributeName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTypeMapMemberAttribute_get_AttributeName_m79384B2B6097452969DD46364D07C2F8B353B064 (XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->____attributeName_10; return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapMemberAttribute::set_AttributeName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMemberAttribute_set_AttributeName_m9FA871900139C9A680D39F3FA1D64593EA0A8A37 (XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* __this, String_t* ___0_value, const RuntimeMethod* method) { { String_t* L_0 = ___0_value; __this->____attributeName_10 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->____attributeName_10), (void*)L_0); return; } } // System.String System.Xml.Serialization.XmlTypeMapMemberAttribute::get_Namespace() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTypeMapMemberAttribute_get_Namespace_m6907BC42459BA2FBEE550EF180E697DDF19A8C37 (XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->____namespace_11; return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapMemberAttribute::set_Namespace(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMemberAttribute_set_Namespace_m75CC38F536B9F3D71532845F4D741A6A37489277 (XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* __this, String_t* ___0_value, const RuntimeMethod* method) { { String_t* L_0 = ___0_value; __this->____namespace_11 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->____namespace_11), (void*)L_0); return; } } // System.Void System.Xml.Serialization.XmlTypeMapMemberAttribute::set_Form(System.Xml.Schema.XmlSchemaForm) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMemberAttribute_set_Form_m060BDBE9694B862C8E46DCEB5CAD8F6C52E9691B (XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* __this, int32_t ___0_value, const RuntimeMethod* method) { { int32_t L_0 = ___0_value; __this->____form_12 = L_0; return; } } // System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlTypeMapMemberAttribute::get_MappedType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* XmlTypeMapMemberAttribute_get_MappedType_mD2DBE6E539F3B9A6F922C1DD37084DCDACE07025 (XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* __this, const RuntimeMethod* method) { { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_0 = __this->____mappedType_13; return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapMemberAttribute::set_MappedType(System.Xml.Serialization.XmlTypeMapping) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMemberAttribute_set_MappedType_mA7E95DC2D885930465A715589EF224E64286F518 (XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___0_value, const RuntimeMethod* method) { { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_0 = ___0_value; __this->____mappedType_13 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->____mappedType_13), (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.Xml.Serialization.XmlTypeMapMemberElement::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMemberElement__ctor_m1C521481C567615C591328B512832B144B153169 (XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* __this, const RuntimeMethod* method) { { XmlTypeMapMember__ctor_m0FD3AECC0F53452D27E035C52A8B91C5941A7184(__this, NULL); return; } } // System.Xml.Serialization.XmlTypeMapElementInfoList System.Xml.Serialization.XmlTypeMapMemberElement::get_ElementInfo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* XmlTypeMapMemberElement_get_ElementInfo_m62E3A285CDAFF7621EA03A0DA6B1966D5432D337 (XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_0 = __this->____elementInfo_10; if (L_0) { goto IL_0013; } } { XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_1 = (XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78*)il2cpp_codegen_object_new(XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78_il2cpp_TypeInfo_var); NullCheck(L_1); XmlTypeMapElementInfoList__ctor_mEEBEB4330F01D3172DDE3C685C96D1FDB5E70D1B(L_1, NULL); __this->____elementInfo_10 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->____elementInfo_10), (void*)L_1); } IL_0013: { XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_2 = __this->____elementInfo_10; return L_2; } } // System.Void System.Xml.Serialization.XmlTypeMapMemberElement::set_ElementInfo(System.Xml.Serialization.XmlTypeMapElementInfoList) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMemberElement_set_ElementInfo_m3E7B4C2A13CE5733E5C41B5A559A64327795C038 (XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* __this, XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* ___0_value, const RuntimeMethod* method) { { XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_0 = ___0_value; __this->____elementInfo_10 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->____elementInfo_10), (void*)L_0); return; } } // System.String System.Xml.Serialization.XmlTypeMapMemberElement::get_ChoiceMember() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTypeMapMemberElement_get_ChoiceMember_m182A4AB876036DDA005F0760EF51C5FCA7F682D8 (XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->____choiceMember_11; return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapMemberElement::set_ChoiceMember(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMemberElement_set_ChoiceMember_m8F271920DC329BABB1F6CC20C327EFABC5D5FAD4 (XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* __this, String_t* ___0_value, const RuntimeMethod* method) { { String_t* L_0 = ___0_value; __this->____choiceMember_11 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->____choiceMember_11), (void*)L_0); return; } } // System.Xml.Serialization.TypeData System.Xml.Serialization.XmlTypeMapMemberElement::get_ChoiceTypeData() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* XmlTypeMapMemberElement_get_ChoiceTypeData_m1C40274707406AC69F5536776D0276266332B845 (XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* __this, const RuntimeMethod* method) { { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_0 = __this->____choiceTypeData_13; return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapMemberElement::set_ChoiceTypeData(System.Xml.Serialization.TypeData) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMemberElement_set_ChoiceTypeData_mC09197CF2429D39C3771B2E1903663FEE114877D (XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* __this, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___0_value, const RuntimeMethod* method) { { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_0 = ___0_value; __this->____choiceTypeData_13 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->____choiceTypeData_13), (void*)L_0); return; } } // System.Xml.Serialization.XmlTypeMapElementInfo System.Xml.Serialization.XmlTypeMapMemberElement::FindElement(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* XmlTypeMapMemberElement_FindElement_mD06805510E6920C0643A9C2C76800A87A97BCA40 (XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* __this, RuntimeObject* ___0_ob, RuntimeObject* ___1_memberValue, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; RuntimeObject* V_1 = NULL; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* V_2 = NULL; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* V_3 = NULL; RuntimeObject* V_4 = NULL; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* V_5 = NULL; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* V_6 = NULL; { XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_0 = __this->____elementInfo_10; NullCheck(L_0); int32_t L_1; L_1 = VirtualFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_0); if ((!(((uint32_t)L_1) == ((uint32_t)1)))) { goto IL_0020; } } { XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_2 = __this->____elementInfo_10; NullCheck(L_2); RuntimeObject* L_3; L_3 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(28 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_2, 0); return ((XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32*)CastclassClass((RuntimeObject*)L_3, XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var)); } IL_0020: { String_t* L_4 = __this->____choiceMember_11; if (!L_4) { goto IL_008d; } } { RuntimeObject* L_5 = ___0_ob; String_t* L_6 = __this->____choiceMember_11; RuntimeObject* L_7; L_7 = XmlTypeMapMember_GetValue_mD731B7698E115C16C268EBC285CDDD1BDC608504(L_5, L_6, NULL); V_0 = L_7; XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_8 = __this->____elementInfo_10; NullCheck(L_8); RuntimeObject* L_9; L_9 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(38 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_8); V_1 = L_9; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_0079: {// begin finally (depth: 1) { RuntimeObject* L_10 = V_1; V_4 = ((RuntimeObject*)IsInst((RuntimeObject*)L_10, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var)); RuntimeObject* L_11 = V_4; if (!L_11) { goto IL_008c; } } { RuntimeObject* L_12 = V_4; NullCheck(L_12); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_12); } IL_008c: { return; } }// end finally (depth: 1) }); try {// begin try (depth: 1) { goto IL_006c_1; } IL_0043_1: { RuntimeObject* L_13 = V_1; NullCheck(L_13); RuntimeObject* L_14; L_14 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_13); V_2 = ((XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32*)CastclassClass((RuntimeObject*)L_14, XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var)); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_15 = V_2; NullCheck(L_15); RuntimeObject* L_16; L_16 = XmlTypeMapElementInfo_get_ChoiceValue_m7BC9464A497AFA7A1BF250BA0D88928706C6412E_inline(L_15, NULL); if (!L_16) { goto IL_006c_1; } } { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_17 = V_2; NullCheck(L_17); RuntimeObject* L_18; L_18 = XmlTypeMapElementInfo_get_ChoiceValue_m7BC9464A497AFA7A1BF250BA0D88928706C6412E_inline(L_17, NULL); RuntimeObject* L_19 = V_0; NullCheck(L_18); bool L_20; L_20 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_18, L_19); if (!L_20) { goto IL_006c_1; } } { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_21 = V_2; V_3 = L_21; goto IL_011e; } IL_006c_1: { RuntimeObject* L_22 = V_1; NullCheck(L_22); bool L_23; L_23 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_22); if (L_23) { goto IL_0043_1; } } { goto IL_011c; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_008d: { RuntimeObject* L_24 = ___1_memberValue; if (L_24) { goto IL_00a2; } } { XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_25 = __this->____elementInfo_10; NullCheck(L_25); RuntimeObject* L_26; L_26 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(28 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_25, 0); return ((XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32*)CastclassClass((RuntimeObject*)L_26, XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var)); } IL_00a2: { V_5 = (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32*)NULL; XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_27 = __this->____elementInfo_10; NullCheck(L_27); RuntimeObject* L_28; L_28 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(38 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_27); V_1 = L_28; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_0105: {// begin finally (depth: 1) { RuntimeObject* L_29 = V_1; V_4 = ((RuntimeObject*)IsInst((RuntimeObject*)L_29, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var)); RuntimeObject* L_30 = V_4; if (!L_30) { goto IL_0118; } } { RuntimeObject* L_31 = V_4; NullCheck(L_31); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_31); } IL_0118: { return; } }// end finally (depth: 1) }); try {// begin try (depth: 1) { goto IL_00fb_1; } IL_00b3_1: { RuntimeObject* L_32 = V_1; NullCheck(L_32); RuntimeObject* L_33; L_33 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_32); V_6 = ((XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32*)CastclassClass((RuntimeObject*)L_33, XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var)); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_34 = V_6; NullCheck(L_34); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_35; L_35 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_34, NULL); NullCheck(L_35); Type_t* L_36; L_36 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_35, NULL); RuntimeObject* L_37 = ___1_memberValue; NullCheck(L_36); bool L_38; L_38 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(119 /* System.Boolean System.Type::IsInstanceOfType(System.Object) */, L_36, L_37); if (!L_38) { goto IL_00fb_1; } } { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_39 = V_5; if (!L_39) { goto IL_00f7_1; } } { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_40 = V_6; NullCheck(L_40); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_41; L_41 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_40, NULL); NullCheck(L_41); Type_t* L_42; L_42 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_41, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_43 = V_5; NullCheck(L_43); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_44; L_44 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_43, NULL); NullCheck(L_44); Type_t* L_45; L_45 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_44, NULL); NullCheck(L_42); bool L_46; L_46 = VirtualFuncInvoker1< bool, Type_t* >::Invoke(21 /* System.Boolean System.Type::IsSubclassOf(System.Type) */, L_42, L_45); if (!L_46) { goto IL_00fb_1; } } IL_00f7_1: { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_47 = V_6; V_5 = L_47; } IL_00fb_1: { RuntimeObject* L_48 = V_1; NullCheck(L_48); bool L_49; L_49 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_48); if (L_49) { goto IL_00b3_1; } } { goto IL_0119; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_0119: { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_50 = V_5; return L_50; } IL_011c: { return (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32*)NULL; } IL_011e: { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_51 = V_3; return L_51; } } // System.Void System.Xml.Serialization.XmlTypeMapMemberElement::SetChoice(System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMemberElement_SetChoice_m70A2968411084153BBDD57111C740A75C9D7AEB5 (XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* __this, RuntimeObject* ___0_ob, RuntimeObject* ___1_choice, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___0_ob; String_t* L_1 = __this->____choiceMember_11; RuntimeObject* L_2 = ___1_choice; XmlTypeMapMember_SetValue_mE1E56C2E7FF4BC0699E6B6EF73CB23C436438F30(L_0, L_1, L_2, NULL); return; } } // System.Boolean System.Xml.Serialization.XmlTypeMapMemberElement::get_IsXmlTextCollector() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeMapMemberElement_get_IsXmlTextCollector_m2FF0627D7710E6CB03FF540D8BE2AEF22ADB6570 (XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* __this, const RuntimeMethod* method) { { bool L_0 = __this->____isTextCollector_12; return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapMemberElement::set_IsXmlTextCollector(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMemberElement_set_IsXmlTextCollector_m3825384EFF73E2990FD5746E45CE7AF2D69B456B (XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* __this, bool ___0_value, const RuntimeMethod* method) { { bool L_0 = ___0_value; __this->____isTextCollector_12 = 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.Xml.Serialization.XmlTypeMapMemberList::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMemberList__ctor_mBD734CDCEE34AF3580EF194A4AB86CDBFD5F47D7 (XmlTypeMapMemberList_t5542A0234B55CC3AD3EDD7B830E7C4603FAAD63E* __this, const RuntimeMethod* method) { { XmlTypeMapMemberElement__ctor_m1C521481C567615C591328B512832B144B153169(__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.Int32 System.Xml.Serialization.XmlTypeMapMemberExpandable::get_FlatArrayIndex() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XmlTypeMapMemberExpandable_get_FlatArrayIndex_mD83A6C690F8EA40C0FAF882E1549E0BD0831CC83 (XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->____flatArrayIndex_14; return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapMemberExpandable::set_FlatArrayIndex(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMemberExpandable_set_FlatArrayIndex_m34257D88ADAD9D20AD7BD89FB29EA298553567CA (XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* __this, int32_t ___0_value, const RuntimeMethod* method) { { int32_t L_0 = ___0_value; __this->____flatArrayIndex_14 = L_0; return; } } // System.Void System.Xml.Serialization.XmlTypeMapMemberExpandable::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMemberExpandable__ctor_m6263CF97C7A882C300CD2A7FE9C9F7BE8E3DA6E5 (XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* __this, const RuntimeMethod* method) { { XmlTypeMapMemberElement__ctor_m1C521481C567615C591328B512832B144B153169(__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.Xml.Serialization.ListMap System.Xml.Serialization.XmlTypeMapMemberFlatList::get_ListMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* XmlTypeMapMemberFlatList_get_ListMap_mAAD12C509481E6855A9C4865874566320C256EBC (XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38* __this, const RuntimeMethod* method) { { ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* L_0 = __this->____listMap_15; return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapMemberFlatList::set_ListMap(System.Xml.Serialization.ListMap) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMemberFlatList_set_ListMap_mFEBE950843FA798DFC8628E296696296C953071E (XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38* __this, ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* ___0_value, const RuntimeMethod* method) { { ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* L_0 = ___0_value; __this->____listMap_15 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->____listMap_15), (void*)L_0); return; } } // System.Void System.Xml.Serialization.XmlTypeMapMemberFlatList::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMemberFlatList__ctor_m184FE28F5A2FAA15F1BFBC27F3A2904497E4C8B7 (XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38* __this, const RuntimeMethod* method) { { XmlTypeMapMemberExpandable__ctor_m6263CF97C7A882C300CD2A7FE9C9F7BE8E3DA6E5(__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.Boolean System.Xml.Serialization.XmlTypeMapMemberAnyElement::IsElementDefined(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeMapMemberAnyElement_IsElementDefined_mA16BED80C2A28DF69D7242CAD45F8E4652DB1CAF (XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* __this, String_t* ___0_name, String_t* ___1_ns, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* V_1 = NULL; bool V_2 = false; RuntimeObject* V_3 = NULL; { XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_0; L_0 = XmlTypeMapMemberElement_get_ElementInfo_m62E3A285CDAFF7621EA03A0DA6B1966D5432D337(__this, NULL); NullCheck(L_0); RuntimeObject* L_1; L_1 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(38 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_0); V_0 = L_1; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_0050: {// begin finally (depth: 1) { RuntimeObject* L_2 = V_0; V_3 = ((RuntimeObject*)IsInst((RuntimeObject*)L_2, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var)); RuntimeObject* L_3 = V_3; if (!L_3) { goto IL_0060; } } { RuntimeObject* L_4 = V_3; NullCheck(L_4); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_4); } IL_0060: { return; } }// end finally (depth: 1) }); try {// begin try (depth: 1) { goto IL_0046_1; } IL_000e_1: { RuntimeObject* L_5 = V_0; NullCheck(L_5); RuntimeObject* L_6; L_6 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_5); V_1 = ((XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32*)CastclassClass((RuntimeObject*)L_6, XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var)); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_7 = V_1; NullCheck(L_7); bool L_8; L_8 = XmlTypeMapElementInfo_get_IsUnnamedAnyElement_m037614B195603B217B28697A93F9BD4950E6CC30(L_7, NULL); if (!L_8) { goto IL_0026_1; } } { V_2 = (bool)1; goto IL_0063; } IL_0026_1: { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_9 = V_1; NullCheck(L_9); String_t* L_10; L_10 = XmlTypeMapElementInfo_get_ElementName_m2B2B6484154E046A7FE5BE46092BF91A7B75D9CC_inline(L_9, NULL); String_t* L_11 = ___0_name; bool L_12; L_12 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_10, L_11, NULL); if (!L_12) { goto IL_0046_1; } } { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_13 = V_1; NullCheck(L_13); String_t* L_14; L_14 = XmlTypeMapElementInfo_get_Namespace_m94DAAADC3EFEBC302C4D3574BD4835F222345498_inline(L_13, NULL); String_t* L_15 = ___1_ns; bool L_16; L_16 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_14, L_15, NULL); if (!L_16) { goto IL_0046_1; } } { V_2 = (bool)1; goto IL_0063; } IL_0046_1: { RuntimeObject* L_17 = V_0; NullCheck(L_17); bool L_18; L_18 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_17); if (L_18) { goto IL_000e_1; } } { goto IL_0061; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_0061: { return (bool)0; } IL_0063: { bool L_19 = V_2; return L_19; } } // System.Boolean System.Xml.Serialization.XmlTypeMapMemberAnyElement::get_IsDefaultAny() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeMapMemberAnyElement_get_IsDefaultAny_m909FBA6B86D7667653B60EEE47228938214F22D5 (XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; bool V_1 = false; RuntimeObject* V_2 = NULL; { XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_0; L_0 = XmlTypeMapMemberElement_get_ElementInfo_m62E3A285CDAFF7621EA03A0DA6B1966D5432D337(__this, NULL); NullCheck(L_0); RuntimeObject* L_1; L_1 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(38 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_0); V_0 = L_1; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_002e: {// begin finally (depth: 1) { RuntimeObject* L_2 = V_0; V_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_2, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var)); RuntimeObject* L_3 = V_2; if (!L_3) { goto IL_003e; } } { RuntimeObject* L_4 = V_2; NullCheck(L_4); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_4); } IL_003e: { return; } }// end finally (depth: 1) }); try {// begin try (depth: 1) { goto IL_0024_1; } IL_000e_1: { RuntimeObject* L_5 = V_0; NullCheck(L_5); RuntimeObject* L_6; L_6 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_5); NullCheck(((XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32*)CastclassClass((RuntimeObject*)L_6, XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var))); bool L_7; L_7 = XmlTypeMapElementInfo_get_IsUnnamedAnyElement_m037614B195603B217B28697A93F9BD4950E6CC30(((XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32*)CastclassClass((RuntimeObject*)L_6, XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var)), NULL); if (!L_7) { goto IL_0024_1; } } { V_1 = (bool)1; goto IL_0041; } IL_0024_1: { RuntimeObject* L_8 = V_0; NullCheck(L_8); bool L_9; L_9 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_8); if (L_9) { goto IL_000e_1; } } { goto IL_003f; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_003f: { return (bool)0; } IL_0041: { bool L_10 = V_1; return L_10; } } // System.Void System.Xml.Serialization.XmlTypeMapMemberAnyElement::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMemberAnyElement__ctor_m66FD3FF1033A6C41F21CA1677897AA554794E750 (XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* __this, const RuntimeMethod* method) { { XmlTypeMapMemberExpandable__ctor_m6263CF97C7A882C300CD2A7FE9C9F7BE8E3DA6E5(__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.Xml.Serialization.XmlTypeMapMemberAnyAttribute::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMemberAnyAttribute__ctor_m55E6BD862DFD1709C359931225EFCC70AF9F8C35 (XmlTypeMapMemberAnyAttribute_t936B5C08A209D3F342575957ACCBF1F7984095F1* __this, const RuntimeMethod* method) { { XmlTypeMapMember__ctor_m0FD3AECC0F53452D27E035C52A8B91C5941A7184(__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.Xml.Serialization.XmlTypeMapMemberNamespaces::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapMemberNamespaces__ctor_m655334756FB0C4721F7AB415FF4C7D25E2A7863B (XmlTypeMapMemberNamespaces_t1493E4BE21467D51FB1CDE88D538FA97815D3112* __this, const RuntimeMethod* method) { { XmlTypeMapMember__ctor_m0FD3AECC0F53452D27E035C52A8B91C5941A7184(__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.Xml.Serialization.XmlTypeMapping::.ctor(System.String,System.String,System.Xml.Serialization.TypeData,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapping__ctor_m1F3CFD9D36CE8A9EFA55D3A44070D97AB1605558 (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, String_t* ___0_elementName, String_t* ___1_ns, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___2_typeData, String_t* ___3_xmlType, String_t* ___4_xmlTypeNamespace, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { __this->___isNullable_13 = (bool)1; ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = (ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)il2cpp_codegen_object_new(ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var); NullCheck(L_0); ArrayList__ctor_m07DC369002304B483B9FC41DBDAF4A25AC3C9F80(L_0, NULL); __this->____derivedTypes_15 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->____derivedTypes_15), (void*)L_0); String_t* L_1 = ___0_elementName; String_t* L_2 = ___1_ns; XmlMapping__ctor_mC78EC821A5F29E9EFEE0DE8BDB285ED6A5EFE164(__this, L_1, L_2, NULL); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_3 = ___2_typeData; __this->___type_9 = L_3; Il2CppCodeGenWriteBarrier((void**)(&__this->___type_9), (void*)L_3); String_t* L_4 = ___3_xmlType; __this->___xmlType_7 = L_4; Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlType_7), (void*)L_4); String_t* L_5 = ___4_xmlTypeNamespace; __this->___xmlTypeNamespace_8 = L_5; Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlTypeNamespace_8), (void*)L_5); return; } } // System.String System.Xml.Serialization.XmlTypeMapping::get_TypeFullName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTypeMapping_get_TypeFullName_m8330E28FE282DDE67C41ADFBC2034E6E26A7ECAB (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, const RuntimeMethod* method) { { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_0 = __this->___type_9; NullCheck(L_0); String_t* L_1; L_1 = TypeData_get_FullTypeName_m391893730DDFEE90F76197075F599FEA2E60BE43_inline(L_0, NULL); return L_1; } } // System.Xml.Serialization.TypeData System.Xml.Serialization.XmlTypeMapping::get_TypeData() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4 (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, const RuntimeMethod* method) { { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_0 = __this->___type_9; return L_0; } } // System.String System.Xml.Serialization.XmlTypeMapping::get_XmlType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTypeMapping_get_XmlType_m5A30CB4EE3541CC1C65003757D5E743042846222 (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___xmlType_7; return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapping::set_XmlType(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapping_set_XmlType_m32DCAB0634D72D0F98B59A7B0C5BBD4633E2B545 (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, String_t* ___0_value, const RuntimeMethod* method) { { String_t* L_0 = ___0_value; __this->___xmlType_7 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlType_7), (void*)L_0); return; } } // System.String System.Xml.Serialization.XmlTypeMapping::get_XmlTypeNamespace() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XmlTypeMapping_get_XmlTypeNamespace_m9EF835B324606DBC55DF96AEFD62A9F4F7ED2B96 (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __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->___xmlTypeNamespace_8; 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.Void System.Xml.Serialization.XmlTypeMapping::set_XmlTypeNamespace(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapping_set_XmlTypeNamespace_m29104EA2A5D1A505DAC69E158419FF55472C653D (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, String_t* ___0_value, const RuntimeMethod* method) { { String_t* L_0 = ___0_value; __this->___xmlTypeNamespace_8 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlTypeNamespace_8), (void*)L_0); return; } } // System.Boolean System.Xml.Serialization.XmlTypeMapping::get_HasXmlTypeNamespace() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeMapping_get_HasXmlTypeNamespace_m461935579477604F7ECB9D989B49EF4621DF3FF8 (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___xmlTypeNamespace_8; return (bool)((!(((RuntimeObject*)(String_t*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0); } } // System.Collections.ArrayList System.Xml.Serialization.XmlTypeMapping::get_DerivedTypes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* XmlTypeMapping_get_DerivedTypes_mC03579CBAD487E7DF121E24DF3CD0F4976CB3A16 (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, const RuntimeMethod* method) { { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = __this->____derivedTypes_15; return L_0; } } // System.Boolean System.Xml.Serialization.XmlTypeMapping::get_MultiReferenceType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeMapping_get_MultiReferenceType_m6FF513956B40419EBD15B5C1D3B0DEA151AABD84 (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, const RuntimeMethod* method) { { bool L_0 = __this->___multiReferenceType_11; return L_0; } } // System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlTypeMapping::get_BaseMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* XmlTypeMapping_get_BaseMap_m4596D5703D08B93CE429A7C62CEB9AA91506B32D (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, const RuntimeMethod* method) { { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_0 = __this->___baseMap_10; return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapping::set_BaseMap(System.Xml.Serialization.XmlTypeMapping) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapping_set_BaseMap_m1B6EC933148E6ED405775C6A56CF888DF489988F (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* ___0_value, const RuntimeMethod* method) { { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_0 = ___0_value; __this->___baseMap_10 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___baseMap_10), (void*)L_0); return; } } // System.Void System.Xml.Serialization.XmlTypeMapping::set_IncludeInSchema(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapping_set_IncludeInSchema_m4ADFB54087375F1E855F955A23FD6A75499C95CB (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, bool ___0_value, const RuntimeMethod* method) { { bool L_0 = ___0_value; __this->___includeInSchema_12 = L_0; return; } } // System.Boolean System.Xml.Serialization.XmlTypeMapping::get_IsNullable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeMapping_get_IsNullable_m2CE4D69DE9C4D1A7AFC01D0BE8C2369BD1C8107B (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, const RuntimeMethod* method) { { bool L_0 = __this->___isNullable_13; return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapping::set_IsNullable(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapping_set_IsNullable_mD892626D9838297535D63A2CE20F0F0E93B0E06F (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, bool ___0_value, const RuntimeMethod* method) { { bool L_0 = ___0_value; __this->___isNullable_13 = L_0; return; } } // System.Boolean System.Xml.Serialization.XmlTypeMapping::get_IsAny() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlTypeMapping_get_IsAny_m0C45955548B231D2E892D2924768B068138CBDD8 (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, const RuntimeMethod* method) { { bool L_0 = __this->___isAny_14; return L_0; } } // System.Void System.Xml.Serialization.XmlTypeMapping::set_IsAny(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapping_set_IsAny_mFAEAE6BA5E6D80112F10CF222570B9BCF739A942 (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, bool ___0_value, const RuntimeMethod* method) { { bool L_0 = ___0_value; __this->___isAny_14 = L_0; return; } } // System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlTypeMapping::GetRealTypeMap(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* XmlTypeMapping_GetRealTypeMap_m0A55DB07D8FEEA87A8206F579D258D3FBC5D5F29 (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, Type_t* ___0_objectType, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* V_1 = NULL; { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_0; L_0 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(__this, NULL); NullCheck(L_0); int32_t L_1; L_1 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_0, NULL); if ((!(((uint32_t)L_1) == ((uint32_t)2)))) { goto IL_0010; } } { return __this; } IL_0010: { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_2; L_2 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(__this, NULL); NullCheck(L_2); Type_t* L_3; L_3 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_2, NULL); Type_t* L_4 = ___0_objectType; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); bool L_5; L_5 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_3, L_4, NULL); if (!L_5) { goto IL_0025; } } { return __this; } IL_0025: { V_0 = 0; goto IL_0054; } IL_0029: { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_6 = __this->____derivedTypes_15; int32_t L_7 = V_0; NullCheck(L_6); RuntimeObject* L_8; L_8 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(28 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_6, L_7); V_1 = ((XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9*)CastclassClass((RuntimeObject*)L_8, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9_il2cpp_TypeInfo_var)); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_9 = V_1; NullCheck(L_9); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_10; L_10 = XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline(L_9, NULL); NullCheck(L_10); Type_t* L_11; L_11 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_10, NULL); Type_t* L_12 = ___0_objectType; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); bool L_13; L_13 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_11, L_12, NULL); if (!L_13) { goto IL_0050; } } { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_14 = V_1; return L_14; } IL_0050: { int32_t L_15 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_15, 1)); } IL_0054: { int32_t L_16 = V_0; ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_17 = __this->____derivedTypes_15; NullCheck(L_17); int32_t L_18; L_18 = VirtualFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_17); if ((((int32_t)L_16) < ((int32_t)L_18))) { goto IL_0029; } } { return (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9*)NULL; } } // System.Xml.Serialization.XmlTypeMapping System.Xml.Serialization.XmlTypeMapping::GetRealElementMap(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* XmlTypeMapping_GetRealElementMap_m2488C8E8ABFB81EE1181A68DA85C142579599ED8 (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, String_t* ___0_name, String_t* ___1_ens, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* V_1 = NULL; XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* V_2 = NULL; RuntimeObject* V_3 = NULL; { String_t* L_0 = __this->___xmlType_7; String_t* L_1 = ___0_name; bool L_2; L_2 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_0, L_1, NULL); if (!L_2) { goto IL_001e; } } { String_t* L_3; L_3 = XmlTypeMapping_get_XmlTypeNamespace_m9EF835B324606DBC55DF96AEFD62A9F4F7ED2B96(__this, NULL); String_t* L_4 = ___1_ens; bool L_5; L_5 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_3, L_4, NULL); if (!L_5) { goto IL_001e; } } { return __this; } IL_001e: { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_6 = __this->____derivedTypes_15; NullCheck(L_6); RuntimeObject* L_7; L_7 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(38 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_6); V_0 = L_7; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_0062: {// begin finally (depth: 1) { RuntimeObject* L_8 = V_0; V_3 = ((RuntimeObject*)IsInst((RuntimeObject*)L_8, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var)); RuntimeObject* L_9 = V_3; if (!L_9) { goto IL_0072; } } { RuntimeObject* L_10 = V_3; NullCheck(L_10); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_10); } IL_0072: { return; } }// end finally (depth: 1) }); try {// begin try (depth: 1) { goto IL_0058_1; } IL_002c_1: { RuntimeObject* L_11 = V_0; NullCheck(L_11); RuntimeObject* L_12; L_12 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_11); V_1 = ((XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9*)CastclassClass((RuntimeObject*)L_12, XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9_il2cpp_TypeInfo_var)); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_13 = V_1; NullCheck(L_13); String_t* L_14 = L_13->___xmlType_7; String_t* L_15 = ___0_name; bool L_16; L_16 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_14, L_15, NULL); if (!L_16) { goto IL_0058_1; } } { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_17 = V_1; NullCheck(L_17); String_t* L_18; L_18 = XmlTypeMapping_get_XmlTypeNamespace_m9EF835B324606DBC55DF96AEFD62A9F4F7ED2B96(L_17, NULL); String_t* L_19 = ___1_ens; bool L_20; L_20 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_18, L_19, NULL); if (!L_20) { goto IL_0058_1; } } { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_21 = V_1; V_2 = L_21; goto IL_0075; } IL_0058_1: { RuntimeObject* L_22 = V_0; NullCheck(L_22); bool L_23; L_23 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_22); if (L_23) { goto IL_002c_1; } } { goto IL_0073; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_0073: { return (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9*)NULL; } IL_0075: { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_24 = V_2; return L_24; } } // System.Void System.Xml.Serialization.XmlTypeMapping::UpdateRoot(System.Xml.XmlQualifiedName) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlTypeMapping_UpdateRoot_m1D4F34D903646D5C13C60D3620F5C0ABEA441530 (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___0_qname, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_0 = ___0_qname; il2cpp_codegen_runtime_class_init_inline(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); bool L_1; L_1 = XmlQualifiedName_op_Inequality_m8A82F5213618F15B887A45C7B1461EB5C14C86A0(L_0, (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)NULL, NULL); if (!L_1) { goto IL_0021; } } { XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_2 = ___0_qname; NullCheck(L_2); String_t* L_3; L_3 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_2, NULL); ((XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97*)__this)->____elementName_4 = L_3; Il2CppCodeGenWriteBarrier((void**)(&((XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97*)__this)->____elementName_4), (void*)L_3); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_4 = ___0_qname; NullCheck(L_4); String_t* L_5; L_5 = XmlQualifiedName_get_Namespace_m0CAE4A651EF1CA6F0EB657C83608A796038A2615_inline(L_4, NULL); ((XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97*)__this)->____namespace_5 = L_5; Il2CppCodeGenWriteBarrier((void**)(&((XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97*)__this)->____namespace_5), (void*)L_5); } IL_0021: { 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.Xml.Serialization.XmlSerializableMapping::.ctor(System.Xml.Serialization.XmlRootAttribute,System.String,System.String,System.Xml.Serialization.TypeData,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializableMapping__ctor_mF15D3F92AF6B8B5698F26636C0ACCC8EC20CABD2 (XmlSerializableMapping_tE7BDFC1308A79813DF734102D332FD528FD841E7* __this, XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* ___0_root, String_t* ___1_elementName, String_t* ___2_ns, TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* ___3_typeData, String_t* ___4_xmlType, String_t* ___5_xmlTypeNamespace, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXmlSerializable_tE36AB1894460107283308E142C1106C4AB31A526_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaComplexType_t3C6B94A26B4C70D8780E4158E2A37D31BA88FEE0_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaComplexType_t3C6B94A26B4C70D8780E4158E2A37D31BA88FEE0_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaProviderAttribute_t913656BFB1429C8144C9EE53E18CC300D1C431AF_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaProviderAttribute_t913656BFB1429C8144C9EE53E18CC300D1C431AF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSchemaU5BU5D_t5DB5D05598D599A3F21C7D3D9A9F3F000AD6A4D3_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlSchemaProviderAttribute_t913656BFB1429C8144C9EE53E18CC300D1C431AF* V_0 = NULL; RuntimeObject* V_1 = NULL; String_t* V_2 = NULL; MethodInfo_t* V_3 = NULL; XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* V_4 = NULL; RuntimeObject* V_5 = NULL; XmlSchemaU5BU5D_t5DB5D05598D599A3F21C7D3D9A9F3F000AD6A4D3* V_6 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; XmlSerializableMapping_tE7BDFC1308A79813DF734102D332FD528FD841E7* G_B19_0 = NULL; XmlSerializableMapping_tE7BDFC1308A79813DF734102D332FD528FD841E7* G_B18_0 = NULL; String_t* G_B20_0 = NULL; XmlSerializableMapping_tE7BDFC1308A79813DF734102D332FD528FD841E7* G_B20_1 = NULL; String_t* G_B23_0 = NULL; XmlSerializableMapping_tE7BDFC1308A79813DF734102D332FD528FD841E7* G_B23_1 = NULL; String_t* G_B21_0 = NULL; XmlSerializableMapping_tE7BDFC1308A79813DF734102D332FD528FD841E7* G_B21_1 = NULL; String_t* G_B24_0 = NULL; String_t* G_B24_1 = NULL; XmlSerializableMapping_tE7BDFC1308A79813DF734102D332FD528FD841E7* G_B24_2 = NULL; String_t* G_B22_0 = NULL; String_t* G_B22_1 = NULL; XmlSerializableMapping_tE7BDFC1308A79813DF734102D332FD528FD841E7* G_B22_2 = NULL; { String_t* L_0 = ___1_elementName; String_t* L_1 = ___2_ns; TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_2 = ___3_typeData; String_t* L_3 = ___4_xmlType; String_t* L_4 = ___5_xmlTypeNamespace; XmlTypeMapping__ctor_m1F3CFD9D36CE8A9EFA55D3A44070D97AB1605558(__this, L_0, L_1, L_2, L_3, L_4, NULL); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_5 = ___3_typeData; NullCheck(L_5); Type_t* L_6; L_6 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_5, NULL); RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_7 = { reinterpret_cast (XmlSchemaProviderAttribute_t913656BFB1429C8144C9EE53E18CC300D1C431AF_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_8; L_8 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_7, NULL); Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA* L_9; L_9 = Attribute_GetCustomAttribute_mF48604D4722E67239F3D6A48CFCCBCDE7BCFFB06(L_6, L_8, NULL); V_0 = ((XmlSchemaProviderAttribute_t913656BFB1429C8144C9EE53E18CC300D1C431AF*)CastclassSealed((RuntimeObject*)L_9, XmlSchemaProviderAttribute_t913656BFB1429C8144C9EE53E18CC300D1C431AF_il2cpp_TypeInfo_var)); XmlSchemaProviderAttribute_t913656BFB1429C8144C9EE53E18CC300D1C431AF* L_10 = V_0; if (!L_10) { goto IL_0200; } } { il2cpp_codegen_runtime_class_init_inline(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_11 = ((XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_StaticFields*)il2cpp_codegen_static_fields_for(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var))->___Empty_4; __this->____schemaTypeName_18 = L_11; Il2CppCodeGenWriteBarrier((void**)(&__this->____schemaTypeName_18), (void*)L_11); XmlSchemaProviderAttribute_t913656BFB1429C8144C9EE53E18CC300D1C431AF* L_12 = V_0; NullCheck(L_12); bool L_13; L_13 = XmlSchemaProviderAttribute_get_IsAny_mEEC8E5450FC08174F878AE52B6DD1DB1E1E03014_inline(L_12, NULL); if (!L_13) { goto IL_004b; } } { XmlTypeMapping_set_IsAny_mFAEAE6BA5E6D80112F10CF222570B9BCF739A942_inline(__this, (bool)1, NULL); return; } IL_004b: { XmlSchemaProviderAttribute_t913656BFB1429C8144C9EE53E18CC300D1C431AF* L_14 = V_0; NullCheck(L_14); String_t* L_15; L_15 = XmlSchemaProviderAttribute_get_MethodName_mC1499496A0CFF04AD9F315ABB8D3709508EBF23A_inline(L_14, NULL); V_2 = L_15; TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_16 = ___3_typeData; NullCheck(L_16); Type_t* L_17; L_17 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_16, NULL); String_t* L_18 = V_2; NullCheck(L_17); MethodInfo_t* L_19; L_19 = Type_GetMethod_m9E66B5053F150537A74C490C1DA5174A7875189D(L_17, L_18, ((int32_t)88), NULL); V_3 = L_19; MethodInfo_t* L_20 = V_3; bool L_21; L_21 = MethodInfo_op_Equality_m1466AB76300C9F07856E706E7E914062175189D1(L_20, (MethodInfo_t*)NULL, NULL); if (!L_21) { goto IL_0083; } } { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_22 = ___3_typeData; NullCheck(L_22); Type_t* L_23; L_23 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_22, NULL); String_t* L_24 = V_2; String_t* L_25; L_25 = String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6A3C2DA0F9E8B442541C0AF562469F9A7B1AF34A)), L_23, L_24, NULL); InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_26 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_26); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_26, L_25, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_26, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializableMapping__ctor_mF15D3F92AF6B8B5698F26636C0ACCC8EC20CABD2_RuntimeMethod_var))); } IL_0083: { RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_27 = { reinterpret_cast (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_28; L_28 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_27, NULL); MethodInfo_t* L_29 = V_3; NullCheck(L_29); Type_t* L_30; L_30 = VirtualFuncInvoker0< Type_t* >::Invoke(41 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, L_29); NullCheck(L_28); bool L_31; L_31 = VirtualFuncInvoker1< bool, Type_t* >::Invoke(22 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_28, L_30); if (L_31) { goto IL_00c2; } } { RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_32 = { reinterpret_cast (XmlSchemaComplexType_t3C6B94A26B4C70D8780E4158E2A37D31BA88FEE0_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_33; L_33 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_32, NULL); MethodInfo_t* L_34 = V_3; NullCheck(L_34); Type_t* L_35; L_35 = VirtualFuncInvoker0< Type_t* >::Invoke(41 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, L_34); NullCheck(L_33); bool L_36; L_36 = VirtualFuncInvoker1< bool, Type_t* >::Invoke(22 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_33, L_35); if (L_36) { goto IL_00c2; } } { String_t* L_37 = V_2; String_t* L_38; L_38 = String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral232AE0D402FAC47960A8CA8DD393C63B8FF64178)), L_37, NULL); InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_39 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_39); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_39, L_38, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_39, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializableMapping__ctor_mF15D3F92AF6B8B5698F26636C0ACCC8EC20CABD2_RuntimeMethod_var))); } IL_00c2: { XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* L_40 = (XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1*)il2cpp_codegen_object_new(XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1_il2cpp_TypeInfo_var); NullCheck(L_40); XmlSchemaSet__ctor_m3D365A1BB668EC9DBFBE314F44F00B1AFB3257BD(L_40, NULL); V_4 = L_40; MethodInfo_t* L_41 = V_3; ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_42 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1); ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_43 = L_42; XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* L_44 = V_4; NullCheck(L_43); ArrayElementTypeCheck (L_43, L_44); (L_43)->SetAt(static_cast(0), (RuntimeObject*)L_44); NullCheck(L_41); RuntimeObject* L_45; L_45 = MethodBase_Invoke_mEEF3218648F111A8C338001A7804091A0747C826(L_41, NULL, L_43, NULL); V_5 = L_45; RuntimeObject* L_46 = V_5; if (L_46) { goto IL_00e2; } } { return; } IL_00e2: { RuntimeObject* L_47 = V_5; if (!((XmlSchemaComplexType_t3C6B94A26B4C70D8780E4158E2A37D31BA88FEE0*)IsInstClass((RuntimeObject*)L_47, XmlSchemaComplexType_t3C6B94A26B4C70D8780E4158E2A37D31BA88FEE0_il2cpp_TypeInfo_var))) { goto IL_012e; } } { RuntimeObject* L_48 = V_5; __this->____schemaType_17 = ((XmlSchemaComplexType_t3C6B94A26B4C70D8780E4158E2A37D31BA88FEE0*)CastclassClass((RuntimeObject*)L_48, XmlSchemaComplexType_t3C6B94A26B4C70D8780E4158E2A37D31BA88FEE0_il2cpp_TypeInfo_var)); Il2CppCodeGenWriteBarrier((void**)(&__this->____schemaType_17), (void*)((XmlSchemaComplexType_t3C6B94A26B4C70D8780E4158E2A37D31BA88FEE0*)CastclassClass((RuntimeObject*)L_48, XmlSchemaComplexType_t3C6B94A26B4C70D8780E4158E2A37D31BA88FEE0_il2cpp_TypeInfo_var))); XmlSchemaComplexType_t3C6B94A26B4C70D8780E4158E2A37D31BA88FEE0* L_49 = __this->____schemaType_17; NullCheck(L_49); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_50; L_50 = XmlSchemaType_get_QualifiedName_m4DFF2E93FF1C517E0B80685D7F50C26D1F1DB184(L_49, NULL); NullCheck(L_50); bool L_51; L_51 = XmlQualifiedName_get_IsEmpty_m37942163D9A870E85BE8762845953C6A6579A400(L_50, NULL); if (L_51) { goto IL_011d; } } { XmlSchemaComplexType_t3C6B94A26B4C70D8780E4158E2A37D31BA88FEE0* L_52 = __this->____schemaType_17; NullCheck(L_52); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_53; L_53 = XmlSchemaType_get_QualifiedName_m4DFF2E93FF1C517E0B80685D7F50C26D1F1DB184(L_52, NULL); __this->____schemaTypeName_18 = L_53; Il2CppCodeGenWriteBarrier((void**)(&__this->____schemaTypeName_18), (void*)L_53); goto IL_0163; } IL_011d: { String_t* L_54 = ___4_xmlType; String_t* L_55 = ___5_xmlTypeNamespace; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_56 = (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)il2cpp_codegen_object_new(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); NullCheck(L_56); XmlQualifiedName__ctor_m65632114A1726D9FAD0338BC2A8C28BB9D262C7B(L_56, L_54, L_55, NULL); __this->____schemaTypeName_18 = L_56; Il2CppCodeGenWriteBarrier((void**)(&__this->____schemaTypeName_18), (void*)L_56); goto IL_0163; } IL_012e: { RuntimeObject* L_57 = V_5; if (!((XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)IsInstClass((RuntimeObject*)L_57, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var))) { goto IL_0146; } } { RuntimeObject* L_58 = V_5; __this->____schemaTypeName_18 = ((XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)CastclassClass((RuntimeObject*)L_58, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var)); Il2CppCodeGenWriteBarrier((void**)(&__this->____schemaTypeName_18), (void*)((XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)CastclassClass((RuntimeObject*)L_58, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var))); goto IL_0163; } IL_0146: { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_59 = ___3_typeData; NullCheck(L_59); Type_t* L_60; L_60 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_59, NULL); NullCheck(L_60); String_t* L_61; L_61 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_60); String_t* L_62 = V_2; String_t* L_63; L_63 = String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral558ED33B9D0E36FD1CA98DD526816AE654BA4E92)), L_61, L_62, NULL); InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_64 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_64); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_64, L_63, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_64, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializableMapping__ctor_mF15D3F92AF6B8B5698F26636C0ACCC8EC20CABD2_RuntimeMethod_var))); } IL_0163: { XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_65 = ___0_root; G_B18_0 = __this; if (L_65) { G_B19_0 = __this; goto IL_0174; } } { XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_66 = __this->____schemaTypeName_18; NullCheck(L_66); String_t* L_67; L_67 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_66, NULL); G_B20_0 = L_67; G_B20_1 = G_B18_0; goto IL_017a; } IL_0174: { XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_68 = ___0_root; NullCheck(L_68); String_t* L_69; L_69 = XmlRootAttribute_get_ElementName_m8E9F810E8C3AEA05914EF8AEA47DCC31EDD7B2AE(L_68, NULL); G_B20_0 = L_69; G_B20_1 = G_B19_0; } IL_017a: { XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_70 = ___0_root; G_B21_0 = G_B20_0; G_B21_1 = G_B20_1; if (L_70) { G_B23_0 = G_B20_0; G_B23_1 = G_B20_1; goto IL_0194; } } { String_t* L_71; L_71 = XmlMapping_get_Namespace_m196651C91FB3C3442AC616C977345E89450F024F_inline(__this, NULL); String_t* L_72 = L_71; G_B22_0 = L_72; G_B22_1 = G_B21_0; G_B22_2 = G_B21_1; if (L_72) { G_B24_0 = L_72; G_B24_1 = G_B21_0; G_B24_2 = G_B21_1; goto IL_019a; } } { XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_73 = __this->____schemaTypeName_18; NullCheck(L_73); String_t* L_74; L_74 = XmlQualifiedName_get_Namespace_m0CAE4A651EF1CA6F0EB657C83608A796038A2615_inline(L_73, NULL); G_B24_0 = L_74; G_B24_1 = G_B22_1; G_B24_2 = G_B22_2; goto IL_019a; } IL_0194: { XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* L_75 = ___0_root; NullCheck(L_75); String_t* L_76; L_76 = XmlRootAttribute_get_Namespace_mFB0A84474D83BF812BA15DA2D59498384F202FE4_inline(L_75, NULL); G_B24_0 = L_76; G_B24_1 = G_B23_0; G_B24_2 = G_B23_1; } IL_019a: { XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_77 = (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)il2cpp_codegen_object_new(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); NullCheck(L_77); XmlQualifiedName__ctor_m65632114A1726D9FAD0338BC2A8C28BB9D262C7B(L_77, G_B24_1, G_B24_0, NULL); NullCheck(G_B24_2); XmlTypeMapping_UpdateRoot_m1D4F34D903646D5C13C60D3620F5C0ABEA441530(G_B24_2, L_77, NULL); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_78 = __this->____schemaTypeName_18; NullCheck(L_78); String_t* L_79; L_79 = XmlQualifiedName_get_Namespace_m0CAE4A651EF1CA6F0EB657C83608A796038A2615_inline(L_78, NULL); XmlTypeMapping_set_XmlTypeNamespace_m29104EA2A5D1A505DAC69E158419FF55472C653D_inline(__this, L_79, NULL); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_80 = __this->____schemaTypeName_18; NullCheck(L_80); String_t* L_81; L_81 = XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline(L_80, NULL); XmlTypeMapping_set_XmlType_m32DCAB0634D72D0F98B59A7B0C5BBD4633E2B545_inline(__this, L_81, NULL); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_82 = __this->____schemaTypeName_18; NullCheck(L_82); bool L_83; L_83 = XmlQualifiedName_get_IsEmpty_m37942163D9A870E85BE8762845953C6A6579A400(L_82, NULL); if (L_83) { goto IL_01ff; } } { XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* L_84 = V_4; NullCheck(L_84); int32_t L_85; L_85 = XmlSchemaSet_get_Count_mF4D867C2937A5F6CB0070F087C4FFF5909ABE397(L_84, NULL); if ((((int32_t)L_85) <= ((int32_t)0))) { goto IL_01ff; } } { XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* L_86 = V_4; NullCheck(L_86); int32_t L_87; L_87 = XmlSchemaSet_get_Count_mF4D867C2937A5F6CB0070F087C4FFF5909ABE397(L_86, NULL); XmlSchemaU5BU5D_t5DB5D05598D599A3F21C7D3D9A9F3F000AD6A4D3* L_88 = (XmlSchemaU5BU5D_t5DB5D05598D599A3F21C7D3D9A9F3F000AD6A4D3*)(XmlSchemaU5BU5D_t5DB5D05598D599A3F21C7D3D9A9F3F000AD6A4D3*)SZArrayNew(XmlSchemaU5BU5D_t5DB5D05598D599A3F21C7D3D9A9F3F000AD6A4D3_il2cpp_TypeInfo_var, (uint32_t)L_87); V_6 = L_88; XmlSchemaSet_t048A12CE7D00EF330EF32A388B69A240899F88D1* L_89 = V_4; XmlSchemaU5BU5D_t5DB5D05598D599A3F21C7D3D9A9F3F000AD6A4D3* L_90 = V_6; NullCheck(L_89); XmlSchemaSet_CopyTo_mE195556997080731FCF64D0424CEF381DD20FABA(L_89, L_90, 0, NULL); XmlSchemaU5BU5D_t5DB5D05598D599A3F21C7D3D9A9F3F000AD6A4D3* L_91 = V_6; NullCheck(L_91); int32_t L_92 = 0; XmlSchema_t5C9506D00418BF5FD524254D0C6C405C620C941D* L_93 = (L_91)->GetAt(static_cast(L_92)); __this->____schema_16 = L_93; Il2CppCodeGenWriteBarrier((void**)(&__this->____schema_16), (void*)L_93); } IL_01ff: { return; } IL_0200: { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_94 = ___3_typeData; NullCheck(L_94); Type_t* L_95; L_95 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_94, NULL); RuntimeObject* L_96; L_96 = Activator_CreateInstance_m2BE3252B26369EA17E06A564F25172F6D002469F(L_95, (bool)1, NULL); V_1 = ((RuntimeObject*)Castclass((RuntimeObject*)L_96, IXmlSerializable_tE36AB1894460107283308E142C1106C4AB31A526_il2cpp_TypeInfo_var)); } try {// begin try (depth: 1) RuntimeObject* L_97 = V_1; NullCheck(L_97); XmlSchema_t5C9506D00418BF5FD524254D0C6C405C620C941D* L_98; L_98 = InterfaceFuncInvoker0< XmlSchema_t5C9506D00418BF5FD524254D0C6C405C620C941D* >::Invoke(0 /* System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable::GetSchema() */, IXmlSerializable_tE36AB1894460107283308E142C1106C4AB31A526_il2cpp_TypeInfo_var, L_97); __this->____schema_16 = L_98; Il2CppCodeGenWriteBarrier((void**)(&__this->____schema_16), (void*)L_98); goto IL_0224; }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0221; } throw e; } CATCH_0221: {// begin catch(System.Exception) IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_0224; }// end catch (depth: 1) IL_0224: { XmlSchema_t5C9506D00418BF5FD524254D0C6C405C620C941D* L_99 = __this->____schema_16; if (!L_99) { goto IL_026c; } } { XmlSchema_t5C9506D00418BF5FD524254D0C6C405C620C941D* L_100 = __this->____schema_16; NullCheck(L_100); String_t* L_101; L_101 = XmlSchema_get_Id_mFA10A91F54597E48FB75C5824D0263ABDAA8B6F5_inline(L_100, NULL); if (!L_101) { goto IL_024b; } } { XmlSchema_t5C9506D00418BF5FD524254D0C6C405C620C941D* L_102 = __this->____schema_16; NullCheck(L_102); String_t* L_103; L_103 = XmlSchema_get_Id_mFA10A91F54597E48FB75C5824D0263ABDAA8B6F5_inline(L_102, NULL); NullCheck(L_103); int32_t L_104; L_104 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_103, NULL); if (L_104) { goto IL_026c; } } IL_024b: { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_105 = ___3_typeData; NullCheck(L_105); Type_t* L_106; L_106 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_105, NULL); NullCheck(L_106); String_t* L_107; L_107 = VirtualFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_106); String_t* L_108; L_108 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEDE169578D0784988295F2BB094D04C3F7C9B832)), L_107, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDD640DD960B4CEB48E82A897FEAB7F64F88777F4)), NULL); InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_109 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_109); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_109, L_108, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_109, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XmlSerializableMapping__ctor_mF15D3F92AF6B8B5698F26636C0ACCC8EC20CABD2_RuntimeMethod_var))); } IL_026c: { 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.Xml.Serialization.ClassMap::AddMember(System.Xml.Serialization.XmlTypeMapMember) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ClassMap_AddMember_m68EC50B8B34647C81D1EFEC1D14083A150A2B49B (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* ___0_member, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapMemberAnyAttribute_t936B5C08A209D3F342575957ACCBF1F7984095F1_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapMemberNamespaces_t1493E4BE21467D51FB1CDE88D538FA97815D3112_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* V_0 = NULL; String_t* V_1 = NULL; XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* V_2 = NULL; RuntimeObject* V_3 = NULL; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* V_4 = NULL; String_t* V_5 = NULL; RuntimeObject* V_6 = NULL; { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_0 = ___0_member; NullCheck(L_0); int32_t L_1; L_1 = XmlTypeMapMember_get_GlobalIndex_mC43A1F277B76C624EFAF264B32293499D51853B6_inline(L_0, NULL); if ((!(((uint32_t)L_1) == ((uint32_t)(-1))))) { goto IL_001a; } } { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_2 = ___0_member; ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_3 = __this->____allMembers_5; NullCheck(L_3); int32_t L_4; L_4 = VirtualFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_3); NullCheck(L_2); XmlTypeMapMember_set_GlobalIndex_m472100DAE18C222CFAD14F0085743759FB1B11C3_inline(L_2, L_4, NULL); } IL_001a: { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_5 = __this->____allMembers_5; XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_6 = ___0_member; NullCheck(L_5); int32_t L_7; L_7 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_5, L_6); XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_8 = ___0_member; NullCheck(L_8); RuntimeObject* L_9; L_9 = XmlTypeMapMember_get_DefaultValue_m9E7FE48431CBCD4C9757423398D48F30B919CFC3_inline(L_8, NULL); if (((DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC*)IsInstSealed((RuntimeObject*)L_9, DBNull_t33A9BF6787D27894A593CF4A5E58B8DDC63BBEFC_il2cpp_TypeInfo_var))) { goto IL_005c; } } { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_10 = ___0_member; NullCheck(L_10); RuntimeObject* L_11; L_11 = XmlTypeMapMember_get_DefaultValue_m9E7FE48431CBCD4C9757423398D48F30B919CFC3_inline(L_10, NULL); if (!L_11) { goto IL_005c; } } { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_12 = __this->____membersWithDefault_6; if (L_12) { goto IL_004f; } } { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_13 = (ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)il2cpp_codegen_object_new(ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var); NullCheck(L_13); ArrayList__ctor_m07DC369002304B483B9FC41DBDAF4A25AC3C9F80(L_13, NULL); __this->____membersWithDefault_6 = L_13; Il2CppCodeGenWriteBarrier((void**)(&__this->____membersWithDefault_6), (void*)L_13); } IL_004f: { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_14 = __this->____membersWithDefault_6; XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_15 = ___0_member; NullCheck(L_14); int32_t L_16; L_16 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_14, L_15); } IL_005c: { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_17 = ___0_member; NullCheck(L_17); bool L_18; L_18 = XmlTypeMapMember_get_IsReturnValue_m2FF8236466A439AB4412508BE3D78C3C71A47481(L_17, NULL); if (!L_18) { goto IL_006b; } } { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_19 = ___0_member; __this->____returnMember_12 = L_19; Il2CppCodeGenWriteBarrier((void**)(&__this->____returnMember_12), (void*)L_19); } IL_006b: { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_20 = ___0_member; if (!((XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4*)IsInstClass((RuntimeObject*)L_20, XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4_il2cpp_TypeInfo_var))) { goto IL_010c; } } { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_21 = ___0_member; V_0 = ((XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4*)CastclassClass((RuntimeObject*)L_21, XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4_il2cpp_TypeInfo_var)); Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_22 = __this->____attributeMembers_2; if (L_22) { goto IL_0090; } } { Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_23 = (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D*)il2cpp_codegen_object_new(Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var); NullCheck(L_23); Hashtable__ctor_mD7E2F1EB1BFD683186ECD6EDBE1708AF35C3A87D(L_23, NULL); __this->____attributeMembers_2 = L_23; Il2CppCodeGenWriteBarrier((void**)(&__this->____attributeMembers_2), (void*)L_23); } IL_0090: { XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* L_24 = V_0; NullCheck(L_24); String_t* L_25; L_25 = XmlTypeMapMemberAttribute_get_AttributeName_m79384B2B6097452969DD46364D07C2F8B353B064_inline(L_24, NULL); XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* L_26 = V_0; NullCheck(L_26); String_t* L_27; L_27 = XmlTypeMapMemberAttribute_get_Namespace_m6907BC42459BA2FBEE550EF180E697DDF19A8C37_inline(L_26, NULL); String_t* L_28; L_28 = ClassMap_BuildKey_m8B51C41F6F666CBAB211F3885269AF8D66371054(__this, L_25, L_27, (-1), NULL); V_1 = L_28; Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_29 = __this->____attributeMembers_2; String_t* L_30 = V_1; NullCheck(L_29); bool L_31; L_31 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(27 /* System.Boolean System.Collections.Hashtable::ContainsKey(System.Object) */, L_29, L_30); if (!L_31) { goto IL_00ed; } } { StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_32 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var)), (uint32_t)5); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_33 = L_32; NullCheck(L_33); ArrayElementTypeCheck (L_33, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral10843A43CD4C64637831AF0FF399A1ED2FB29D7D))); (L_33)->SetAt(static_cast(0), (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral10843A43CD4C64637831AF0FF399A1ED2FB29D7D))); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_34 = L_33; XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* L_35 = V_0; NullCheck(L_35); String_t* L_36; L_36 = XmlTypeMapMemberAttribute_get_AttributeName_m79384B2B6097452969DD46364D07C2F8B353B064_inline(L_35, NULL); NullCheck(L_34); ArrayElementTypeCheck (L_34, L_36); (L_34)->SetAt(static_cast(1), (String_t*)L_36); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_37 = L_34; NullCheck(L_37); ArrayElementTypeCheck (L_37, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAD39D69B3EED7D6A7B1F9D5CEAE6AC85B41A3DBC))); (L_37)->SetAt(static_cast(2), (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAD39D69B3EED7D6A7B1F9D5CEAE6AC85B41A3DBC))); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_38 = L_37; XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* L_39 = V_0; NullCheck(L_39); String_t* L_40; L_40 = XmlTypeMapMemberAttribute_get_Namespace_m6907BC42459BA2FBEE550EF180E697DDF19A8C37_inline(L_39, NULL); NullCheck(L_38); ArrayElementTypeCheck (L_38, L_40); (L_38)->SetAt(static_cast(3), (String_t*)L_40); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_41 = L_38; NullCheck(L_41); ArrayElementTypeCheck (L_41, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral594C9B74105FC363004860F96C38805E33805AA9))); (L_41)->SetAt(static_cast(4), (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral594C9B74105FC363004860F96C38805E33805AA9))); String_t* L_42; L_42 = String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A(L_41, NULL); InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_43 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_43); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_43, L_42, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_43, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ClassMap_AddMember_m68EC50B8B34647C81D1EFEC1D14083A150A2B49B_RuntimeMethod_var))); } IL_00ed: { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_44 = ___0_member; Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_45 = __this->____attributeMembers_2; NullCheck(L_45); int32_t L_46; L_46 = VirtualFuncInvoker0< int32_t >::Invoke(41 /* System.Int32 System.Collections.Hashtable::get_Count() */, L_45); NullCheck(L_44); XmlTypeMapMember_set_Index_m2CF151DEBC1293A91B0126F579B2CA6730CC4D56_inline(L_44, L_46, NULL); Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_47 = __this->____attributeMembers_2; String_t* L_48 = V_1; XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_49 = ___0_member; NullCheck(L_47); VirtualActionInvoker2< RuntimeObject*, RuntimeObject* >::Invoke(23 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_47, L_48, L_49); return; } IL_010c: { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_50 = ___0_member; if (!((XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38*)IsInstClass((RuntimeObject*)L_50, XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38_il2cpp_TypeInfo_var))) { goto IL_0122; } } { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_51 = ___0_member; ClassMap_RegisterFlatList_mD8FD4FD7E17159E8BE8C9373E303CB582D979F6A(__this, ((XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38*)CastclassClass((RuntimeObject*)L_51, XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38_il2cpp_TypeInfo_var)), NULL); goto IL_0180; } IL_0122: { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_52 = ___0_member; if (!((XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950*)IsInstClass((RuntimeObject*)L_52, XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950_il2cpp_TypeInfo_var))) { goto IL_0156; } } { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_53 = ___0_member; V_2 = ((XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950*)CastclassClass((RuntimeObject*)L_53, XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950_il2cpp_TypeInfo_var)); XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* L_54 = V_2; NullCheck(L_54); bool L_55; L_55 = XmlTypeMapMemberAnyElement_get_IsDefaultAny_m909FBA6B86D7667653B60EEE47228938214F22D5(L_54, NULL); if (!L_55) { goto IL_0140; } } { XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* L_56 = V_2; __this->____defaultAnyElement_8 = L_56; Il2CppCodeGenWriteBarrier((void**)(&__this->____defaultAnyElement_8), (void*)L_56); } IL_0140: { XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* L_57 = V_2; NullCheck(L_57); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_58; L_58 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_57, NULL); NullCheck(L_58); bool L_59; L_59 = TypeData_get_IsListType_m40A6A12749C9A2F1729D6411A76C62768DB2D4F2(L_58, NULL); if (!L_59) { goto IL_0180; } } { XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* L_60 = V_2; ClassMap_RegisterFlatList_mD8FD4FD7E17159E8BE8C9373E303CB582D979F6A(__this, L_60, NULL); goto IL_0180; } IL_0156: { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_61 = ___0_member; if (!((XmlTypeMapMemberAnyAttribute_t936B5C08A209D3F342575957ACCBF1F7984095F1*)IsInstClass((RuntimeObject*)L_61, XmlTypeMapMemberAnyAttribute_t936B5C08A209D3F342575957ACCBF1F7984095F1_il2cpp_TypeInfo_var))) { goto IL_016b; } } { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_62 = ___0_member; __this->____defaultAnyAttribute_9 = ((XmlTypeMapMemberAnyAttribute_t936B5C08A209D3F342575957ACCBF1F7984095F1*)CastclassClass((RuntimeObject*)L_62, XmlTypeMapMemberAnyAttribute_t936B5C08A209D3F342575957ACCBF1F7984095F1_il2cpp_TypeInfo_var)); Il2CppCodeGenWriteBarrier((void**)(&__this->____defaultAnyAttribute_9), (void*)((XmlTypeMapMemberAnyAttribute_t936B5C08A209D3F342575957ACCBF1F7984095F1*)CastclassClass((RuntimeObject*)L_62, XmlTypeMapMemberAnyAttribute_t936B5C08A209D3F342575957ACCBF1F7984095F1_il2cpp_TypeInfo_var))); return; } IL_016b: { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_63 = ___0_member; if (!((XmlTypeMapMemberNamespaces_t1493E4BE21467D51FB1CDE88D538FA97815D3112*)IsInstClass((RuntimeObject*)L_63, XmlTypeMapMemberNamespaces_t1493E4BE21467D51FB1CDE88D538FA97815D3112_il2cpp_TypeInfo_var))) { goto IL_0180; } } { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_64 = ___0_member; __this->____namespaceDeclarations_10 = ((XmlTypeMapMemberNamespaces_t1493E4BE21467D51FB1CDE88D538FA97815D3112*)CastclassClass((RuntimeObject*)L_64, XmlTypeMapMemberNamespaces_t1493E4BE21467D51FB1CDE88D538FA97815D3112_il2cpp_TypeInfo_var)); Il2CppCodeGenWriteBarrier((void**)(&__this->____namespaceDeclarations_10), (void*)((XmlTypeMapMemberNamespaces_t1493E4BE21467D51FB1CDE88D538FA97815D3112*)CastclassClass((RuntimeObject*)L_64, XmlTypeMapMemberNamespaces_t1493E4BE21467D51FB1CDE88D538FA97815D3112_il2cpp_TypeInfo_var))); return; } IL_0180: { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_65 = ___0_member; if (!((XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840*)IsInstClass((RuntimeObject*)L_65, XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840_il2cpp_TypeInfo_var))) { goto IL_01af; } } { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_66 = ___0_member; NullCheck(((XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840*)CastclassClass((RuntimeObject*)L_66, XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840_il2cpp_TypeInfo_var))); bool L_67; L_67 = XmlTypeMapMemberElement_get_IsXmlTextCollector_m2FF0627D7710E6CB03FF540D8BE2AEF22ADB6570_inline(((XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840*)CastclassClass((RuntimeObject*)L_66, XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840_il2cpp_TypeInfo_var)), NULL); if (!L_67) { goto IL_01af; } } { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_68 = __this->____xmlTextCollector_11; if (!L_68) { goto IL_01a8; } } { InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_69 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_69); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_69, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA209B37D33B4476CEC46AD3B1D553C7B0BECB32A)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_69, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ClassMap_AddMember_m68EC50B8B34647C81D1EFEC1D14083A150A2B49B_RuntimeMethod_var))); } IL_01a8: { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_70 = ___0_member; __this->____xmlTextCollector_11 = L_70; Il2CppCodeGenWriteBarrier((void**)(&__this->____xmlTextCollector_11), (void*)L_70); } IL_01af: { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_71 = __this->____elementMembers_1; if (L_71) { goto IL_01cd; } } { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_72 = (ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)il2cpp_codegen_object_new(ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var); NullCheck(L_72); ArrayList__ctor_m07DC369002304B483B9FC41DBDAF4A25AC3C9F80(L_72, NULL); __this->____elementMembers_1 = L_72; Il2CppCodeGenWriteBarrier((void**)(&__this->____elementMembers_1), (void*)L_72); Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_73 = (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D*)il2cpp_codegen_object_new(Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var); NullCheck(L_73); Hashtable__ctor_mD7E2F1EB1BFD683186ECD6EDBE1708AF35C3A87D(L_73, NULL); __this->____elements_0 = L_73; Il2CppCodeGenWriteBarrier((void**)(&__this->____elements_0), (void*)L_73); } IL_01cd: { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_74 = ___0_member; ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_75 = __this->____elementMembers_1; NullCheck(L_75); int32_t L_76; L_76 = VirtualFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_75); NullCheck(L_74); XmlTypeMapMember_set_Index_m2CF151DEBC1293A91B0126F579B2CA6730CC4D56_inline(L_74, L_76, NULL); ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_77 = __this->____elementMembers_1; XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_78 = ___0_member; NullCheck(L_77); int32_t L_79; L_79 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_77, L_78); XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_80 = ___0_member; NullCheck(((XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840*)CastclassClass((RuntimeObject*)L_80, XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840_il2cpp_TypeInfo_var))); XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_81; L_81 = XmlTypeMapMemberElement_get_ElementInfo_m62E3A285CDAFF7621EA03A0DA6B1966D5432D337(((XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840*)CastclassClass((RuntimeObject*)L_80, XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840_il2cpp_TypeInfo_var)), NULL); NullCheck(L_81); RuntimeObject* L_82; L_82 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, L_81); V_3 = L_82; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_0293: {// begin finally (depth: 1) { RuntimeObject* L_83 = V_3; V_6 = ((RuntimeObject*)IsInst((RuntimeObject*)L_83, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var)); RuntimeObject* L_84 = V_6; if (!L_84) { goto IL_02a6; } } { RuntimeObject* L_85 = V_6; NullCheck(L_85); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_85); } IL_02a6: { return; } }// end finally (depth: 1) }); try {// begin try (depth: 1) { goto IL_0286_1; } IL_0201_1: { RuntimeObject* L_86 = V_3; NullCheck(L_86); RuntimeObject* L_87; L_87 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_86); V_4 = ((XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32*)CastclassClass((RuntimeObject*)L_87, XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var)); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_88 = V_4; NullCheck(L_88); String_t* L_89; L_89 = XmlTypeMapElementInfo_get_ElementName_m2B2B6484154E046A7FE5BE46092BF91A7B75D9CC_inline(L_88, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_90 = V_4; NullCheck(L_90); String_t* L_91; L_91 = XmlTypeMapElementInfo_get_Namespace_m94DAAADC3EFEBC302C4D3574BD4835F222345498_inline(L_90, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_92 = V_4; NullCheck(L_92); int32_t L_93; L_93 = XmlTypeMapElementInfo_get_ExplicitOrder_m929232F83C9F294565C56EC38C5BACCA530DEDAB_inline(L_92, NULL); String_t* L_94; L_94 = ClassMap_BuildKey_m8B51C41F6F666CBAB211F3885269AF8D66371054(__this, L_89, L_91, L_93, NULL); V_5 = L_94; Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_95 = __this->____elements_0; String_t* L_96 = V_5; NullCheck(L_95); bool L_97; L_97 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(27 /* System.Boolean System.Collections.Hashtable::ContainsKey(System.Object) */, L_95, L_96); if (!L_97) { goto IL_0277_1; } } { StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_98 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var)), (uint32_t)5); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_99 = L_98; NullCheck(L_99); ArrayElementTypeCheck (L_99, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC66F579DCA45D04AA08CC18AEAEC2741A63B494F))); (L_99)->SetAt(static_cast(0), (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC66F579DCA45D04AA08CC18AEAEC2741A63B494F))); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_100 = L_99; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_101 = V_4; NullCheck(L_101); String_t* L_102; L_102 = XmlTypeMapElementInfo_get_ElementName_m2B2B6484154E046A7FE5BE46092BF91A7B75D9CC_inline(L_101, NULL); NullCheck(L_100); ArrayElementTypeCheck (L_100, L_102); (L_100)->SetAt(static_cast(1), (String_t*)L_102); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_103 = L_100; NullCheck(L_103); ArrayElementTypeCheck (L_103, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAD39D69B3EED7D6A7B1F9D5CEAE6AC85B41A3DBC))); (L_103)->SetAt(static_cast(2), (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAD39D69B3EED7D6A7B1F9D5CEAE6AC85B41A3DBC))); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_104 = L_103; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_105 = V_4; NullCheck(L_105); String_t* L_106; L_106 = XmlTypeMapElementInfo_get_Namespace_m94DAAADC3EFEBC302C4D3574BD4835F222345498_inline(L_105, NULL); NullCheck(L_104); ArrayElementTypeCheck (L_104, L_106); (L_104)->SetAt(static_cast(3), (String_t*)L_106); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_107 = L_104; NullCheck(L_107); ArrayElementTypeCheck (L_107, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD692E67438BD707EE1906F28C246C0A0A23AE7A5))); (L_107)->SetAt(static_cast(4), (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD692E67438BD707EE1906F28C246C0A0A23AE7A5))); String_t* L_108; L_108 = String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A(L_107, NULL); InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_109 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_109); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_109, L_108, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_109, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ClassMap_AddMember_m68EC50B8B34647C81D1EFEC1D14083A150A2B49B_RuntimeMethod_var))); } IL_0277_1: { Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_110 = __this->____elements_0; String_t* L_111 = V_5; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_112 = V_4; NullCheck(L_110); VirtualActionInvoker2< RuntimeObject*, RuntimeObject* >::Invoke(23 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_110, L_111, L_112); } IL_0286_1: { RuntimeObject* L_113 = V_3; NullCheck(L_113); bool L_114; L_114 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_113); if (L_114) { goto IL_0201_1; } } { goto IL_02a7; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_02a7: { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_115 = ___0_member; NullCheck(L_115); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_116; L_116 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_115, NULL); NullCheck(L_116); bool L_117; L_117 = TypeData_get_IsListType_m40A6A12749C9A2F1729D6411A76C62768DB2D4F2(L_116, NULL); if (!L_117) { goto IL_02f9; } } { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_118 = ___0_member; NullCheck(L_118); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_119; L_119 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_118, NULL); NullCheck(L_119); Type_t* L_120; L_120 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_119, NULL); il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); bool L_121; L_121 = Type_op_Inequality_m83209C7BB3C05DFBEA3B6199B0BEFE8037301172(L_120, (Type_t*)NULL, NULL); if (!L_121) { goto IL_02f9; } } { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_122 = ___0_member; NullCheck(L_122); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_123; L_123 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_122, NULL); NullCheck(L_123); Type_t* L_124; L_124 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_123, NULL); NullCheck(L_124); bool L_125; L_125 = Type_get_IsArray_mB9B8CA713B2AA9D6AFECC24E05AF78D22532B673(L_124, NULL); if (L_125) { goto IL_02f9; } } { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_126 = __this->____listMembers_7; if (L_126) { goto IL_02ec; } } { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_127 = (ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)il2cpp_codegen_object_new(ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var); NullCheck(L_127); ArrayList__ctor_m07DC369002304B483B9FC41DBDAF4A25AC3C9F80(L_127, NULL); __this->____listMembers_7 = L_127; Il2CppCodeGenWriteBarrier((void**)(&__this->____listMembers_7), (void*)L_127); } IL_02ec: { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_128 = __this->____listMembers_7; XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_129 = ___0_member; NullCheck(L_128); int32_t L_130; L_130 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_128, L_129); } IL_02f9: { return; } } // System.Void System.Xml.Serialization.ClassMap::RegisterFlatList(System.Xml.Serialization.XmlTypeMapMemberExpandable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ClassMap_RegisterFlatList_mD8FD4FD7E17159E8BE8C9373E303CB582D979F6A (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* ___0_member, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = __this->____flatLists_4; if (L_0) { goto IL_0013; } } { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_1 = (ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)il2cpp_codegen_object_new(ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var); NullCheck(L_1); ArrayList__ctor_m07DC369002304B483B9FC41DBDAF4A25AC3C9F80(L_1, NULL); __this->____flatLists_4 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->____flatLists_4), (void*)L_1); } IL_0013: { XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_2 = ___0_member; ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_3 = __this->____flatLists_4; NullCheck(L_3); int32_t L_4; L_4 = VirtualFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_3); NullCheck(L_2); XmlTypeMapMemberExpandable_set_FlatArrayIndex_m34257D88ADAD9D20AD7BD89FB29EA298553567CA_inline(L_2, L_4, NULL); ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_5 = __this->____flatLists_4; XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* L_6 = ___0_member; NullCheck(L_5); int32_t L_7; L_7 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_5, L_6); return; } } // System.Xml.Serialization.XmlTypeMapMemberAttribute System.Xml.Serialization.ClassMap::GetAttribute(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* ClassMap_GetAttribute_mFAA51D19B1F7AAC3105A581FA1F2738B15BBBCD0 (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, String_t* ___0_name, String_t* ___1_ns, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->____attributeMembers_2; if (L_0) { goto IL_000a; } } { return (XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4*)NULL; } IL_000a: { Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_1 = __this->____attributeMembers_2; String_t* L_2 = ___0_name; String_t* L_3 = ___1_ns; String_t* L_4; L_4 = ClassMap_BuildKey_m8B51C41F6F666CBAB211F3885269AF8D66371054(__this, L_2, L_3, (-1), NULL); NullCheck(L_1); RuntimeObject* L_5; L_5 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_1, L_4); return ((XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4*)CastclassClass((RuntimeObject*)L_5, XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4_il2cpp_TypeInfo_var)); } } // System.Xml.Serialization.XmlTypeMapElementInfo System.Xml.Serialization.ClassMap::GetElement(System.String,System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* ClassMap_GetElement_m5F9EF895E43E4009CB54E866BBD4C52A2BAE3528 (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, String_t* ___0_name, String_t* ___1_ns, int32_t ___2_minimalOrder, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* V_0 = NULL; RuntimeObject* V_1 = NULL; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* V_2 = NULL; RuntimeObject* V_3 = NULL; { Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->____elements_0; if (L_0) { goto IL_000a; } } { return (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32*)NULL; } IL_000a: { V_0 = (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32*)NULL; Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_1 = __this->____elements_0; NullCheck(L_1); RuntimeObject* L_2; L_2 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(38 /* System.Collections.ICollection System.Collections.Hashtable::get_Values() */, L_1); NullCheck(L_2); RuntimeObject* L_3; L_3 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, L_2); V_1 = L_3; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_006d: {// begin finally (depth: 1) { RuntimeObject* L_4 = V_1; V_3 = ((RuntimeObject*)IsInst((RuntimeObject*)L_4, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var)); RuntimeObject* L_5 = V_3; if (!L_5) { goto IL_007d; } } { RuntimeObject* L_6 = V_3; NullCheck(L_6); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_6); } IL_007d: { return; } }// end finally (depth: 1) }); try {// begin try (depth: 1) { goto IL_0063_1; } IL_001f_1: { RuntimeObject* L_7 = V_1; NullCheck(L_7); RuntimeObject* L_8; L_8 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_7); V_2 = ((XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32*)CastclassClass((RuntimeObject*)L_8, XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var)); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_9 = V_2; NullCheck(L_9); String_t* L_10; L_10 = XmlTypeMapElementInfo_get_ElementName_m2B2B6484154E046A7FE5BE46092BF91A7B75D9CC_inline(L_9, NULL); String_t* L_11 = ___0_name; bool L_12; L_12 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_10, L_11, NULL); if (!L_12) { goto IL_0063_1; } } { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_13 = V_2; NullCheck(L_13); String_t* L_14; L_14 = XmlTypeMapElementInfo_get_Namespace_m94DAAADC3EFEBC302C4D3574BD4835F222345498_inline(L_13, NULL); String_t* L_15 = ___1_ns; bool L_16; L_16 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_14, L_15, NULL); if (!L_16) { goto IL_0063_1; } } { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_17 = V_2; NullCheck(L_17); int32_t L_18; L_18 = XmlTypeMapElementInfo_get_ExplicitOrder_m929232F83C9F294565C56EC38C5BACCA530DEDAB_inline(L_17, NULL); int32_t L_19 = ___2_minimalOrder; if ((((int32_t)L_18) < ((int32_t)L_19))) { goto IL_0063_1; } } { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_20 = V_0; if (!L_20) { goto IL_0061_1; } } { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_21 = V_0; NullCheck(L_21); int32_t L_22; L_22 = XmlTypeMapElementInfo_get_ExplicitOrder_m929232F83C9F294565C56EC38C5BACCA530DEDAB_inline(L_21, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_23 = V_2; NullCheck(L_23); int32_t L_24; L_24 = XmlTypeMapElementInfo_get_ExplicitOrder_m929232F83C9F294565C56EC38C5BACCA530DEDAB_inline(L_23, NULL); if ((((int32_t)L_22) <= ((int32_t)L_24))) { goto IL_0063_1; } } IL_0061_1: { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_25 = V_2; V_0 = L_25; } IL_0063_1: { RuntimeObject* L_26 = V_1; NullCheck(L_26); bool L_27; L_27 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_26); if (L_27) { goto IL_001f_1; } } { goto IL_007e; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_007e: { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_28 = V_0; return L_28; } } // System.Xml.Serialization.XmlTypeMapElementInfo System.Xml.Serialization.ClassMap::GetElement(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* ClassMap_GetElement_m60767CE50696152D35651B8202236E105721F3C3 (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, String_t* ___0_name, String_t* ___1_ns, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* V_1 = NULL; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* V_2 = NULL; RuntimeObject* V_3 = NULL; { Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->____elements_0; if (L_0) { goto IL_000a; } } { return (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32*)NULL; } IL_000a: { Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_1 = __this->____elements_0; NullCheck(L_1); RuntimeObject* L_2; L_2 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(38 /* System.Collections.ICollection System.Collections.Hashtable::get_Values() */, L_1); NullCheck(L_2); RuntimeObject* L_3; L_3 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, L_2); V_0 = L_3; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_0053: {// begin finally (depth: 1) { RuntimeObject* L_4 = V_0; V_3 = ((RuntimeObject*)IsInst((RuntimeObject*)L_4, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var)); RuntimeObject* L_5 = V_3; if (!L_5) { goto IL_0063; } } { RuntimeObject* L_6 = V_3; NullCheck(L_6); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_6); } IL_0063: { return; } }// end finally (depth: 1) }); try {// begin try (depth: 1) { goto IL_0049_1; } IL_001d_1: { RuntimeObject* L_7 = V_0; NullCheck(L_7); RuntimeObject* L_8; L_8 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_7); V_1 = ((XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32*)CastclassClass((RuntimeObject*)L_8, XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var)); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_9 = V_1; NullCheck(L_9); String_t* L_10; L_10 = XmlTypeMapElementInfo_get_ElementName_m2B2B6484154E046A7FE5BE46092BF91A7B75D9CC_inline(L_9, NULL); String_t* L_11 = ___0_name; bool L_12; L_12 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_10, L_11, NULL); if (!L_12) { goto IL_0049_1; } } { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_13 = V_1; NullCheck(L_13); String_t* L_14; L_14 = XmlTypeMapElementInfo_get_Namespace_m94DAAADC3EFEBC302C4D3574BD4835F222345498_inline(L_13, NULL); String_t* L_15 = ___1_ns; bool L_16; L_16 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_14, L_15, NULL); if (!L_16) { goto IL_0049_1; } } { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_17 = V_1; V_2 = L_17; goto IL_0066; } IL_0049_1: { RuntimeObject* L_18 = V_0; NullCheck(L_18); bool L_19; L_19 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_18); if (L_19) { goto IL_001d_1; } } { goto IL_0064; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_0064: { return (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32*)NULL; } IL_0066: { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_20 = V_2; return L_20; } } // System.String System.Xml.Serialization.ClassMap::BuildKey(System.String,System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ClassMap_BuildKey_m8B51C41F6F666CBAB211F3885269AF8D66371054 (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, String_t* ___0_name, String_t* ___1_ns, int32_t ___2_explicitOrder, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral86BBAACC00198DBB3046818AD3FC2AA10AE48DE1); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8F8BFCFC439A636B20C06C334A493AB7004843ED); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709); s_Il2CppMethodInitialized = true; } String_t* G_B4_0 = NULL; String_t* G_B4_1 = NULL; String_t* G_B4_2 = NULL; String_t* G_B3_0 = NULL; String_t* G_B3_1 = NULL; String_t* G_B3_2 = NULL; String_t* G_B5_0 = NULL; String_t* G_B5_1 = NULL; String_t* G_B5_2 = NULL; String_t* G_B5_3 = NULL; { bool L_0 = __this->____ignoreMemberNamespace_13; if (!L_0) { goto IL_000a; } } { String_t* L_1 = ___0_name; return L_1; } IL_000a: { String_t* L_2 = ___0_name; String_t* L_3 = ___1_ns; int32_t L_4 = ___2_explicitOrder; G_B3_0 = L_3; G_B3_1 = _stringLiteral8F8BFCFC439A636B20C06C334A493AB7004843ED; G_B3_2 = L_2; if ((((int32_t)L_4) < ((int32_t)0))) { G_B4_0 = L_3; G_B4_1 = _stringLiteral8F8BFCFC439A636B20C06C334A493AB7004843ED; G_B4_2 = L_2; goto IL_0028; } } { String_t* L_5; L_5 = Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5((&___2_explicitOrder), NULL); String_t* L_6; L_6 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(_stringLiteral86BBAACC00198DBB3046818AD3FC2AA10AE48DE1, L_5, NULL); G_B5_0 = L_6; G_B5_1 = G_B3_0; G_B5_2 = G_B3_1; G_B5_3 = G_B3_2; goto IL_002d; } IL_0028: { G_B5_0 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709; G_B5_1 = G_B4_0; G_B5_2 = G_B4_1; G_B5_3 = G_B4_2; } IL_002d: { String_t* L_7; L_7 = String_Concat_m093934F71A9B351911EE46311674ED463B180006(G_B5_3, G_B5_2, G_B5_1, G_B5_0, NULL); return L_7; } } // System.Boolean System.Xml.Serialization.ClassMap::get_IsOrderDependentMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ClassMap_get_IsOrderDependentMap_m0B479BCCCAECE8D9D5DC7659B5CFFB7CB949C93A (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m4FAA8281CB4EFFD8B817734351FB3AC20A0CD6F5_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_Value_mE2C54C6AE9FC9F05BF44CD9D7D61DC6CD56E3E28_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; RuntimeObject* V_1 = NULL; { Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* L_0 = (&__this->____isOrderDependentMap_15); bool L_1; L_1 = Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_inline(L_0, Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_RuntimeMethod_var); if (L_1) { goto IL_0068; } } { Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 L_2; memset((&L_2), 0, sizeof(L_2)); Nullable_1__ctor_m4FAA8281CB4EFFD8B817734351FB3AC20A0CD6F5((&L_2), (bool)0, /*hidden argument*/Nullable_1__ctor_m4FAA8281CB4EFFD8B817734351FB3AC20A0CD6F5_RuntimeMethod_var); __this->____isOrderDependentMap_15 = L_2; Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_3 = __this->____elements_0; NullCheck(L_3); RuntimeObject* L_4; L_4 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(38 /* System.Collections.ICollection System.Collections.Hashtable::get_Values() */, L_3); NullCheck(L_4); RuntimeObject* L_5; L_5 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, L_4); V_0 = L_5; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_0057: {// begin finally (depth: 1) { RuntimeObject* L_6 = V_0; V_1 = ((RuntimeObject*)IsInst((RuntimeObject*)L_6, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var)); RuntimeObject* L_7 = V_1; if (!L_7) { goto IL_0067; } } { RuntimeObject* L_8 = V_1; NullCheck(L_8); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_8); } IL_0067: { return; } }// end finally (depth: 1) }); try {// begin try (depth: 1) { goto IL_004d_1; } IL_002c_1: { RuntimeObject* L_9 = V_0; NullCheck(L_9); RuntimeObject* L_10; L_10 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_9); NullCheck(((XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32*)CastclassClass((RuntimeObject*)L_10, XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var))); int32_t L_11; L_11 = XmlTypeMapElementInfo_get_ExplicitOrder_m929232F83C9F294565C56EC38C5BACCA530DEDAB_inline(((XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32*)CastclassClass((RuntimeObject*)L_10, XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var)), NULL); if ((((int32_t)L_11) < ((int32_t)0))) { goto IL_004d_1; } } { Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 L_12; memset((&L_12), 0, sizeof(L_12)); Nullable_1__ctor_m4FAA8281CB4EFFD8B817734351FB3AC20A0CD6F5((&L_12), (bool)1, /*hidden argument*/Nullable_1__ctor_m4FAA8281CB4EFFD8B817734351FB3AC20A0CD6F5_RuntimeMethod_var); __this->____isOrderDependentMap_15 = L_12; goto IL_0068; } IL_004d_1: { RuntimeObject* L_13 = V_0; NullCheck(L_13); bool L_14; L_14 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_13); if (L_14) { goto IL_002c_1; } } { goto IL_0068; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_0068: { Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* L_15 = (&__this->____isOrderDependentMap_15); bool L_16; L_16 = Nullable_1_get_Value_mE2C54C6AE9FC9F05BF44CD9D7D61DC6CD56E3E28(L_15, Nullable_1_get_Value_mE2C54C6AE9FC9F05BF44CD9D7D61DC6CD56E3E28_RuntimeMethod_var); return L_16; } } // System.Xml.Serialization.XmlTypeMapMemberAnyElement System.Xml.Serialization.ClassMap::get_DefaultAnyElementMember() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* ClassMap_get_DefaultAnyElementMember_m65CFF55B342204FE2E39B8BDF46E733DD43C6B4B (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method) { { XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* L_0 = __this->____defaultAnyElement_8; return L_0; } } // System.Xml.Serialization.XmlTypeMapMemberAnyAttribute System.Xml.Serialization.ClassMap::get_DefaultAnyAttributeMember() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapMemberAnyAttribute_t936B5C08A209D3F342575957ACCBF1F7984095F1* ClassMap_get_DefaultAnyAttributeMember_m88660193A65BE269D1E4F7ADEA4778BC78D40B08 (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method) { { XmlTypeMapMemberAnyAttribute_t936B5C08A209D3F342575957ACCBF1F7984095F1* L_0 = __this->____defaultAnyAttribute_9; return L_0; } } // System.Xml.Serialization.XmlTypeMapMemberNamespaces System.Xml.Serialization.ClassMap::get_NamespaceDeclarations() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapMemberNamespaces_t1493E4BE21467D51FB1CDE88D538FA97815D3112* ClassMap_get_NamespaceDeclarations_m5EF288255B1F07783CF889C781DB6D6BEAF133E1 (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method) { { XmlTypeMapMemberNamespaces_t1493E4BE21467D51FB1CDE88D538FA97815D3112* L_0 = __this->____namespaceDeclarations_10; return L_0; } } // System.Collections.ICollection System.Xml.Serialization.ClassMap::get_AttributeMembers() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ClassMap_get_AttributeMembers_mB495B40347CA0E1075AB32C00E9D0E3D0510C94F (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapMemberAttributeU5BU5D_tD4F816722F17A6B481400D6F933E68A38D97EB83_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* V_1 = NULL; RuntimeObject* V_2 = NULL; { Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->____attributeMembers_2; if (L_0) { goto IL_000a; } } { return (RuntimeObject*)NULL; } IL_000a: { XmlTypeMapMemberAttributeU5BU5D_tD4F816722F17A6B481400D6F933E68A38D97EB83* L_1 = __this->____attributeMembersArray_3; if (!L_1) { goto IL_0019; } } { XmlTypeMapMemberAttributeU5BU5D_tD4F816722F17A6B481400D6F933E68A38D97EB83* L_2 = __this->____attributeMembersArray_3; return (RuntimeObject*)L_2; } IL_0019: { Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_3 = __this->____attributeMembers_2; NullCheck(L_3); int32_t L_4; L_4 = VirtualFuncInvoker0< int32_t >::Invoke(41 /* System.Int32 System.Collections.Hashtable::get_Count() */, L_3); XmlTypeMapMemberAttributeU5BU5D_tD4F816722F17A6B481400D6F933E68A38D97EB83* L_5 = (XmlTypeMapMemberAttributeU5BU5D_tD4F816722F17A6B481400D6F933E68A38D97EB83*)(XmlTypeMapMemberAttributeU5BU5D_tD4F816722F17A6B481400D6F933E68A38D97EB83*)SZArrayNew(XmlTypeMapMemberAttributeU5BU5D_tD4F816722F17A6B481400D6F933E68A38D97EB83_il2cpp_TypeInfo_var, (uint32_t)L_4); __this->____attributeMembersArray_3 = L_5; Il2CppCodeGenWriteBarrier((void**)(&__this->____attributeMembersArray_3), (void*)L_5); Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_6 = __this->____attributeMembers_2; NullCheck(L_6); RuntimeObject* L_7; L_7 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(38 /* System.Collections.ICollection System.Collections.Hashtable::get_Values() */, L_6); NullCheck(L_7); RuntimeObject* L_8; L_8 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, L_7); V_0 = L_8; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_0066: {// begin finally (depth: 1) { RuntimeObject* L_9 = V_0; V_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_9, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var)); RuntimeObject* L_10 = V_2; if (!L_10) { goto IL_0076; } } { RuntimeObject* L_11 = V_2; NullCheck(L_11); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_11); } IL_0076: { return; } }// end finally (depth: 1) }); try {// begin try (depth: 1) { goto IL_005c_1; } IL_0042_1: { RuntimeObject* L_12 = V_0; NullCheck(L_12); RuntimeObject* L_13; L_13 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_12); V_1 = ((XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4*)CastclassClass((RuntimeObject*)L_13, XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4_il2cpp_TypeInfo_var)); XmlTypeMapMemberAttributeU5BU5D_tD4F816722F17A6B481400D6F933E68A38D97EB83* L_14 = __this->____attributeMembersArray_3; XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* L_15 = V_1; NullCheck(L_15); int32_t L_16; L_16 = XmlTypeMapMember_get_Index_m3EAB1243B03E5DBD10C6E7CA245E5A6C04406D12_inline(L_15, NULL); XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* L_17 = V_1; NullCheck(L_14); ArrayElementTypeCheck (L_14, L_17); (L_14)->SetAt(static_cast(L_16), (XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4*)L_17); } IL_005c_1: { RuntimeObject* L_18 = V_0; NullCheck(L_18); bool L_19; L_19 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_18); if (L_19) { goto IL_0042_1; } } { goto IL_0077; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_0077: { XmlTypeMapMemberAttributeU5BU5D_tD4F816722F17A6B481400D6F933E68A38D97EB83* L_20 = __this->____attributeMembersArray_3; return (RuntimeObject*)L_20; } } // System.Collections.ICollection System.Xml.Serialization.ClassMap::get_ElementMembers() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ClassMap_get_ElementMembers_m28BCFDC1D5FC50F910FBCF82D9C30472482A505D (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method) { { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = __this->____elementMembers_1; return L_0; } } // System.Collections.ArrayList System.Xml.Serialization.ClassMap::get_AllMembers() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ClassMap_get_AllMembers_m68939A09AB79846A722998916E288759CB918FED (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method) { { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = __this->____allMembers_5; return L_0; } } // System.Collections.ArrayList System.Xml.Serialization.ClassMap::get_FlatLists() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ClassMap_get_FlatLists_m852941CF165941C1EB03137482353B221F335DE9 (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method) { { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = __this->____flatLists_4; return L_0; } } // System.Collections.ArrayList System.Xml.Serialization.ClassMap::get_ListMembers() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ClassMap_get_ListMembers_m21D695B14B2AF42EC1850374FDA24CDE2B356649 (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method) { { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = __this->____listMembers_7; return L_0; } } // System.Xml.Serialization.XmlTypeMapMember System.Xml.Serialization.ClassMap::get_XmlTextCollector() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* ClassMap_get_XmlTextCollector_m3FC50A0C0DEFAC7D4D70209D7D96C58AB7D1DA09 (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method) { { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_0 = __this->____xmlTextCollector_11; return L_0; } } // System.Xml.Serialization.XmlTypeMapMember System.Xml.Serialization.ClassMap::get_ReturnMember() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* ClassMap_get_ReturnMember_m17D5284F4873CF87F02814AF5BD96CFD23737F32 (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method) { { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_0 = __this->____returnMember_12; return L_0; } } // System.Xml.XmlQualifiedName System.Xml.Serialization.ClassMap::get_SimpleContentBaseType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ClassMap_get_SimpleContentBaseType_mCE46351CF4900E4F3990D896D8A0533253FE09AD (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* V_0 = NULL; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* V_1 = NULL; { bool L_0 = __this->____canBeSimpleType_14; if (!L_0) { goto IL_001e; } } { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_1 = __this->____elementMembers_1; if (!L_1) { goto IL_001e; } } { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_2 = __this->____elementMembers_1; NullCheck(L_2); int32_t L_3; L_3 = VirtualFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_2); if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0020; } } IL_001e: { return (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)NULL; } IL_0020: { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_4 = __this->____elementMembers_1; NullCheck(L_4); RuntimeObject* L_5; L_5 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(28 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_4, 0); V_0 = ((XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840*)CastclassClass((RuntimeObject*)L_5, XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840_il2cpp_TypeInfo_var)); XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* L_6 = V_0; NullCheck(L_6); XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_7; L_7 = XmlTypeMapMemberElement_get_ElementInfo_m62E3A285CDAFF7621EA03A0DA6B1966D5432D337(L_6, NULL); NullCheck(L_7); int32_t L_8; L_8 = VirtualFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_7); if ((((int32_t)L_8) == ((int32_t)1))) { goto IL_0042; } } { return (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)NULL; } IL_0042: { XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* L_9 = V_0; NullCheck(L_9); XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_10; L_10 = XmlTypeMapMemberElement_get_ElementInfo_m62E3A285CDAFF7621EA03A0DA6B1966D5432D337(L_9, NULL); NullCheck(L_10); RuntimeObject* L_11; L_11 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(28 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_10, 0); V_1 = ((XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32*)CastclassClass((RuntimeObject*)L_11, XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var)); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_12 = V_1; NullCheck(L_12); bool L_13; L_13 = XmlTypeMapElementInfo_get_IsTextElement_m264B22862789A3E5250E3BC780F0E888115596AF(L_12, NULL); if (L_13) { goto IL_005e; } } { return (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)NULL; } IL_005e: { XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* L_14 = V_0; NullCheck(L_14); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_15; L_15 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_14, NULL); NullCheck(L_15); int32_t L_16; L_16 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_15, NULL); if ((((int32_t)L_16) == ((int32_t)1))) { goto IL_007a; } } { XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* L_17 = V_0; NullCheck(L_17); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_18; L_18 = XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline(L_17, NULL); NullCheck(L_18); int32_t L_19; L_19 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_18, NULL); if ((!(((uint32_t)L_19) == ((uint32_t)2)))) { goto IL_0091; } } IL_007a: { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_20 = V_1; NullCheck(L_20); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_21; L_21 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_20, NULL); NullCheck(L_21); String_t* L_22; L_22 = TypeData_get_XmlType_m06749C1B19C57EB8649CBCD9B106C014DF511453_inline(L_21, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_23 = V_1; NullCheck(L_23); String_t* L_24; L_24 = XmlTypeMapElementInfo_get_DataTypeNamespace_mA8278DAED1A896D6AC2B28664C54E0D81155252D(L_23, NULL); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_25 = (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)il2cpp_codegen_object_new(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); NullCheck(L_25); XmlQualifiedName__ctor_m65632114A1726D9FAD0338BC2A8C28BB9D262C7B(L_25, L_22, L_24, NULL); return L_25; } IL_0091: { return (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)NULL; } } // System.Void System.Xml.Serialization.ClassMap::SetCanBeSimpleType(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ClassMap_SetCanBeSimpleType_mEFA2779827B16C4BACF378B6536121C5FE1AE74C (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, bool ___0_can, const RuntimeMethod* method) { { bool L_0 = ___0_can; __this->____canBeSimpleType_14 = L_0; return; } } // System.Boolean System.Xml.Serialization.ClassMap::get_HasSimpleContent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ClassMap_get_HasSimpleContent_m7023F99D0994EB07A18F31EC2FFF7CEC4FA38960 (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_0; L_0 = ClassMap_get_SimpleContentBaseType_mCE46351CF4900E4F3990D896D8A0533253FE09AD(__this, NULL); il2cpp_codegen_runtime_class_init_inline(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); bool L_1; L_1 = XmlQualifiedName_op_Inequality_m8A82F5213618F15B887A45C7B1461EB5C14C86A0(L_0, (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)NULL, NULL); return L_1; } } // System.Void System.Xml.Serialization.ClassMap::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ClassMap__ctor_m2E0CDD6C951F89A117B800D1EFA07A15B61D32F6 (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D*)il2cpp_codegen_object_new(Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var); NullCheck(L_0); Hashtable__ctor_mD7E2F1EB1BFD683186ECD6EDBE1708AF35C3A87D(L_0, NULL); __this->____elements_0 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->____elements_0), (void*)L_0); ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_1 = (ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)il2cpp_codegen_object_new(ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var); NullCheck(L_1); ArrayList__ctor_m07DC369002304B483B9FC41DBDAF4A25AC3C9F80(L_1, NULL); __this->____allMembers_5 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->____allMembers_5), (void*)L_1); __this->____canBeSimpleType_14 = (bool)1; ObjectMap__ctor_mE344582A0192332702FFC03592ECA4CB356D2E41(__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.Xml.Serialization.ListMap::set_ChoiceMember(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListMap_set_ChoiceMember_m25EB1F93541895E0647E420B7BF9C8C7194621D6 (ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* __this, String_t* ___0_value, const RuntimeMethod* method) { { String_t* L_0 = ___0_value; __this->____choiceMember_1 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->____choiceMember_1), (void*)L_0); return; } } // System.Xml.Serialization.XmlTypeMapElementInfoList System.Xml.Serialization.ListMap::get_ItemInfo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* ListMap_get_ItemInfo_mF4B1E24F5658D05E8E1E6296F4A220D33E7EC579 (ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* __this, const RuntimeMethod* method) { { XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_0 = __this->____itemInfo_0; return L_0; } } // System.Void System.Xml.Serialization.ListMap::set_ItemInfo(System.Xml.Serialization.XmlTypeMapElementInfoList) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListMap_set_ItemInfo_mD0E132CC2807675C9308B26F69EA38EC9EB3EF11 (ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* __this, XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* ___0_value, const RuntimeMethod* method) { { XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_0 = ___0_value; __this->____itemInfo_0 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->____itemInfo_0), (void*)L_0); return; } } // System.Xml.Serialization.XmlTypeMapElementInfo System.Xml.Serialization.ListMap::FindElement(System.Object,System.Int32,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* ListMap_FindElement_m47E834380D86F46D9AE887F867CC2D3FCF7D4CC2 (ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* __this, RuntimeObject* ___0_ob, int32_t ___1_index, RuntimeObject* ___2_memberValue, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeArray_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeArray* V_0 = NULL; RuntimeObject* V_1 = NULL; RuntimeObject* V_2 = NULL; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* V_3 = NULL; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* V_4 = NULL; RuntimeObject* V_5 = NULL; Type_t* V_6 = NULL; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* V_7 = NULL; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* V_8 = NULL; { XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_0 = __this->____itemInfo_0; NullCheck(L_0); int32_t L_1; L_1 = VirtualFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_0); if ((!(((uint32_t)L_1) == ((uint32_t)1)))) { goto IL_0020; } } { XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_2 = __this->____itemInfo_0; NullCheck(L_2); RuntimeObject* L_3; L_3 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(28 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_2, 0); return ((XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32*)CastclassClass((RuntimeObject*)L_3, XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var)); } IL_0020: { String_t* L_4 = __this->____choiceMember_1; if (!L_4) { goto IL_00cc; } } { int32_t L_5 = ___1_index; if ((((int32_t)L_5) == ((int32_t)(-1)))) { goto IL_00cc; } } { RuntimeObject* L_6 = ___0_ob; String_t* L_7 = __this->____choiceMember_1; RuntimeObject* L_8; L_8 = XmlTypeMapMember_GetValue_mD731B7698E115C16C268EBC285CDDD1BDC608504(L_6, L_7, NULL); V_0 = ((RuntimeArray*)CastclassClass((RuntimeObject*)L_8, RuntimeArray_il2cpp_TypeInfo_var)); RuntimeArray* L_9 = V_0; if (!L_9) { goto IL_0050; } } { int32_t L_10 = ___1_index; RuntimeArray* L_11 = V_0; NullCheck(L_11); int32_t L_12; L_12 = Array_get_Length_m361285FB7CF44045DC369834D1CD01F72F94EF57(L_11, NULL); if ((((int32_t)L_10) < ((int32_t)L_12))) { goto IL_006b; } } IL_0050: { String_t* L_13 = __this->____choiceMember_1; String_t* L_14; L_14 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3D6EB261B6E5AC1669A2C14AFA8CA0EBB13AA820)), L_13, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC7A7939E82BEFEF8DDB755713442AA62963F09F8)), NULL); InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_15 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_15); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_15, L_14, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ListMap_FindElement_m47E834380D86F46D9AE887F867CC2D3FCF7D4CC2_RuntimeMethod_var))); } IL_006b: { RuntimeArray* L_16 = V_0; int32_t L_17 = ___1_index; NullCheck(L_16); RuntimeObject* L_18; L_18 = Array_GetValue_m007D247B8A6FE5BD60FD1CD510A714A416F2BA21(L_16, L_17, NULL); V_1 = L_18; XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_19 = __this->____itemInfo_0; NullCheck(L_19); RuntimeObject* L_20; L_20 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(38 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_19); V_2 = L_20; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_00b8: {// begin finally (depth: 1) { RuntimeObject* L_21 = V_2; V_5 = ((RuntimeObject*)IsInst((RuntimeObject*)L_21, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var)); RuntimeObject* L_22 = V_5; if (!L_22) { goto IL_00cb; } } { RuntimeObject* L_23 = V_5; NullCheck(L_23); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_23); } IL_00cb: { return; } }// end finally (depth: 1) }); try {// begin try (depth: 1) { goto IL_00ab_1; } IL_0081_1: { RuntimeObject* L_24 = V_2; NullCheck(L_24); RuntimeObject* L_25; L_25 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_24); V_3 = ((XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32*)CastclassClass((RuntimeObject*)L_25, XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var)); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_26 = V_3; NullCheck(L_26); RuntimeObject* L_27; L_27 = XmlTypeMapElementInfo_get_ChoiceValue_m7BC9464A497AFA7A1BF250BA0D88928706C6412E_inline(L_26, NULL); if (!L_27) { goto IL_00ab_1; } } { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_28 = V_3; NullCheck(L_28); RuntimeObject* L_29; L_29 = XmlTypeMapElementInfo_get_ChoiceValue_m7BC9464A497AFA7A1BF250BA0D88928706C6412E_inline(L_28, NULL); RuntimeObject* L_30 = V_1; NullCheck(L_29); bool L_31; L_31 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_29, L_30); if (!L_31) { goto IL_00ab_1; } } { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_32 = V_3; V_4 = L_32; goto IL_0171; } IL_00ab_1: { RuntimeObject* L_33 = V_2; NullCheck(L_33); bool L_34; L_34 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_33); if (L_34) { goto IL_0081_1; } } { goto IL_016f; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_00cc: { RuntimeObject* L_35 = ___2_memberValue; if (L_35) { goto IL_00d1; } } { return (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32*)NULL; } IL_00d1: { RuntimeObject* L_36 = ___2_memberValue; NullCheck(L_36); Type_t* L_37; L_37 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_36, NULL); V_6 = L_37; V_7 = (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32*)NULL; XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_38 = __this->____itemInfo_0; NullCheck(L_38); RuntimeObject* L_39; L_39 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(38 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_38); V_2 = L_39; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_0158: {// begin finally (depth: 1) { RuntimeObject* L_40 = V_2; V_5 = ((RuntimeObject*)IsInst((RuntimeObject*)L_40, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var)); RuntimeObject* L_41 = V_5; if (!L_41) { goto IL_016b; } } { RuntimeObject* L_42 = V_5; NullCheck(L_42); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_42); } IL_016b: { return; } }// end finally (depth: 1) }); try {// begin try (depth: 1) { goto IL_014e_1; } IL_00ea_1: { RuntimeObject* L_43 = V_2; NullCheck(L_43); RuntimeObject* L_44; L_44 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_43); V_8 = ((XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32*)CastclassClass((RuntimeObject*)L_44, XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var)); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_45 = V_8; NullCheck(L_45); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_46; L_46 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_45, NULL); NullCheck(L_46); Type_t* L_47; L_47 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_46, NULL); Type_t* L_48 = V_6; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); bool L_49; L_49 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_47, L_48, NULL); if (!L_49) { goto IL_0112_1; } } { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_50 = V_8; V_4 = L_50; goto IL_0171; } IL_0112_1: { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_51 = V_8; NullCheck(L_51); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_52; L_52 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_51, NULL); NullCheck(L_52); Type_t* L_53; L_53 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_52, NULL); Type_t* L_54 = V_6; NullCheck(L_53); bool L_55; L_55 = VirtualFuncInvoker1< bool, Type_t* >::Invoke(22 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_53, L_54); if (!L_55) { goto IL_014e_1; } } { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_56 = V_7; if (!L_56) { goto IL_014a_1; } } { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_57 = V_8; NullCheck(L_57); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_58; L_58 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_57, NULL); NullCheck(L_58); Type_t* L_59; L_59 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_58, NULL); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_60 = V_7; NullCheck(L_60); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_61; L_61 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_60, NULL); NullCheck(L_61); Type_t* L_62; L_62 = TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline(L_61, NULL); NullCheck(L_59); bool L_63; L_63 = VirtualFuncInvoker1< bool, Type_t* >::Invoke(22 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_59, L_62); if (!L_63) { goto IL_014e_1; } } IL_014a_1: { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_64 = V_8; V_7 = L_64; } IL_014e_1: { RuntimeObject* L_65 = V_2; NullCheck(L_65); bool L_66; L_66 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_65); if (L_66) { goto IL_00ea_1; } } { goto IL_016c; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_016c: { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_67 = V_7; return L_67; } IL_016f: { return (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32*)NULL; } IL_0171: { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_68 = V_4; return L_68; } } // System.Xml.Serialization.XmlTypeMapElementInfo System.Xml.Serialization.ListMap::FindElement(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* ListMap_FindElement_mB8E8BCFD1D6C7A8C244598D1317BCC1296E47CD7 (ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* __this, String_t* ___0_elementName, String_t* ___1_ns, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* V_1 = NULL; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* V_2 = NULL; RuntimeObject* V_3 = NULL; { XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_0 = __this->____itemInfo_0; NullCheck(L_0); RuntimeObject* L_1; L_1 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(38 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_0); V_0 = L_1; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_0044: {// begin finally (depth: 1) { RuntimeObject* L_2 = V_0; V_3 = ((RuntimeObject*)IsInst((RuntimeObject*)L_2, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var)); RuntimeObject* L_3 = V_3; if (!L_3) { goto IL_0054; } } { RuntimeObject* L_4 = V_3; NullCheck(L_4); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_4); } IL_0054: { return; } }// end finally (depth: 1) }); try {// begin try (depth: 1) { goto IL_003a_1; } IL_000e_1: { RuntimeObject* L_5 = V_0; NullCheck(L_5); RuntimeObject* L_6; L_6 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_5); V_1 = ((XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32*)CastclassClass((RuntimeObject*)L_6, XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var)); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_7 = V_1; NullCheck(L_7); String_t* L_8; L_8 = XmlTypeMapElementInfo_get_ElementName_m2B2B6484154E046A7FE5BE46092BF91A7B75D9CC_inline(L_7, NULL); String_t* L_9 = ___0_elementName; bool L_10; L_10 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_8, L_9, NULL); if (!L_10) { goto IL_003a_1; } } { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_11 = V_1; NullCheck(L_11); String_t* L_12; L_12 = XmlTypeMapElementInfo_get_Namespace_m94DAAADC3EFEBC302C4D3574BD4835F222345498_inline(L_11, NULL); String_t* L_13 = ___1_ns; bool L_14; L_14 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_12, L_13, NULL); if (!L_14) { goto IL_003a_1; } } { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_15 = V_1; V_2 = L_15; goto IL_0057; } IL_003a_1: { RuntimeObject* L_16 = V_0; NullCheck(L_16); bool L_17; L_17 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_16); if (L_17) { goto IL_000e_1; } } { goto IL_0055; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_0055: { return (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32*)NULL; } IL_0057: { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_18 = V_2; return L_18; } } // System.Xml.Serialization.XmlTypeMapElementInfo System.Xml.Serialization.ListMap::FindTextElement() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* ListMap_FindTextElement_m4A953DA460CF998CB59D87819531224C9069FC0A (ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* V_1 = NULL; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* V_2 = NULL; RuntimeObject* V_3 = NULL; { XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_0 = __this->____itemInfo_0; NullCheck(L_0); RuntimeObject* L_1; L_1 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(38 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_0); V_0 = L_1; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_0030: {// begin finally (depth: 1) { RuntimeObject* L_2 = V_0; V_3 = ((RuntimeObject*)IsInst((RuntimeObject*)L_2, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var)); RuntimeObject* L_3 = V_3; if (!L_3) { goto IL_0040; } } { RuntimeObject* L_4 = V_3; NullCheck(L_4); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_4); } IL_0040: { return; } }// end finally (depth: 1) }); try {// begin try (depth: 1) { goto IL_0026_1; } IL_000e_1: { RuntimeObject* L_5 = V_0; NullCheck(L_5); RuntimeObject* L_6; L_6 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_5); V_1 = ((XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32*)CastclassClass((RuntimeObject*)L_6, XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var)); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_7 = V_1; NullCheck(L_7); bool L_8; L_8 = XmlTypeMapElementInfo_get_IsTextElement_m264B22862789A3E5250E3BC780F0E888115596AF(L_7, NULL); if (!L_8) { goto IL_0026_1; } } { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_9 = V_1; V_2 = L_9; goto IL_0043; } IL_0026_1: { RuntimeObject* L_10 = V_0; NullCheck(L_10); bool L_11; L_11 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_10); if (L_11) { goto IL_000e_1; } } { goto IL_0041; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_0041: { return (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32*)NULL; } IL_0043: { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_12 = V_2; return L_12; } } // System.Void System.Xml.Serialization.ListMap::GetArrayType(System.Int32,System.String&,System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListMap_GetArrayType_mE4DD0F95C5B8779C799547E896D8DE16632AA2B7 (ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* __this, int32_t ___0_itemCount, String_t** ___1_localName, String_t** ___2_ns, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5B4F028A4070094FCA4E7762E2C376A65E2D59C6); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD9691C4FD8A1F6B09DB1147CA32B442772FB46A1); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE166C9564FBDE461738077E3B1B506525EB6ACCC); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* V_1 = NULL; String_t* V_2 = NULL; { int32_t L_0 = ___0_itemCount; if ((((int32_t)L_0) == ((int32_t)(-1)))) { goto IL_001d; } } { String_t* L_1; L_1 = Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5((&___0_itemCount), NULL); String_t* L_2; L_2 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(_stringLiteralD9691C4FD8A1F6B09DB1147CA32B442772FB46A1, L_1, _stringLiteralE166C9564FBDE461738077E3B1B506525EB6ACCC, NULL); V_0 = L_2; goto IL_0023; } IL_001d: { V_0 = _stringLiteral5B4F028A4070094FCA4E7762E2C376A65E2D59C6; } IL_0023: { XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_3 = __this->____itemInfo_0; NullCheck(L_3); RuntimeObject* L_4; L_4 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(28 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_3, 0); V_1 = ((XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32*)CastclassClass((RuntimeObject*)L_4, XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32_il2cpp_TypeInfo_var)); XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_5 = V_1; NullCheck(L_5); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_6; L_6 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_5, NULL); NullCheck(L_6); int32_t L_7; L_7 = TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline(L_6, NULL); if ((!(((uint32_t)L_7) == ((uint32_t)3)))) { goto IL_0066; } } { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_8 = V_1; NullCheck(L_8); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_9; L_9 = XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline(L_8, NULL); NullCheck(L_9); ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0* L_10; L_10 = XmlMapping_get_ObjectMap_m63D1AEAC8EDD8396357898D337E350673A1E9003_inline(L_9, NULL); String_t** L_11 = ___2_ns; NullCheck(((ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC*)CastclassClass((RuntimeObject*)L_10, ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC_il2cpp_TypeInfo_var))); ListMap_GetArrayType_mE4DD0F95C5B8779C799547E896D8DE16632AA2B7(((ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC*)CastclassClass((RuntimeObject*)L_10, ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC_il2cpp_TypeInfo_var)), (-1), (&V_2), L_11, NULL); String_t** L_12 = ___1_localName; String_t* L_13 = V_2; String_t* L_14 = V_0; String_t* L_15; L_15 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_13, L_14, NULL); *((RuntimeObject**)L_12) = (RuntimeObject*)L_15; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_12, (void*)(RuntimeObject*)L_15); return; } IL_0066: { XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_16 = V_1; NullCheck(L_16); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_17; L_17 = XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline(L_16, NULL); if (!L_17) { goto IL_008f; } } { String_t** L_18 = ___1_localName; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_19 = V_1; NullCheck(L_19); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_20; L_20 = XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline(L_19, NULL); NullCheck(L_20); String_t* L_21; L_21 = XmlTypeMapping_get_XmlType_m5A30CB4EE3541CC1C65003757D5E743042846222_inline(L_20, NULL); String_t* L_22 = V_0; String_t* L_23; L_23 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_21, L_22, NULL); *((RuntimeObject**)L_18) = (RuntimeObject*)L_23; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_18, (void*)(RuntimeObject*)L_23); String_t** L_24 = ___2_ns; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_25 = V_1; NullCheck(L_25); XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_26; L_26 = XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline(L_25, NULL); NullCheck(L_26); String_t* L_27; L_27 = XmlMapping_get_Namespace_m196651C91FB3C3442AC616C977345E89450F024F_inline(L_26, NULL); *((RuntimeObject**)L_24) = (RuntimeObject*)L_27; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_24, (void*)(RuntimeObject*)L_27); return; } IL_008f: { String_t** L_28 = ___1_localName; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_29 = V_1; NullCheck(L_29); TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_30; L_30 = XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline(L_29, NULL); NullCheck(L_30); String_t* L_31; L_31 = TypeData_get_XmlType_m06749C1B19C57EB8649CBCD9B106C014DF511453_inline(L_30, NULL); String_t* L_32 = V_0; String_t* L_33; L_33 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_31, L_32, NULL); *((RuntimeObject**)L_28) = (RuntimeObject*)L_33; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_28, (void*)(RuntimeObject*)L_33); String_t** L_34 = ___2_ns; XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* L_35 = V_1; NullCheck(L_35); String_t* L_36; L_36 = XmlTypeMapElementInfo_get_DataTypeNamespace_mA8278DAED1A896D6AC2B28664C54E0D81155252D(L_35, NULL); *((RuntimeObject**)L_34) = (RuntimeObject*)L_36; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_34, (void*)(RuntimeObject*)L_36); return; } } // System.Boolean System.Xml.Serialization.ListMap::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ListMap_Equals_mD8B8083FC75AEC4A4F652FDD8C3748970A5C43CA (ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* __this, RuntimeObject* ___0_other, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* V_0 = NULL; int32_t V_1 = 0; { RuntimeObject* L_0 = ___0_other; V_0 = ((ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC*)IsInstClass((RuntimeObject*)L_0, ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC_il2cpp_TypeInfo_var)); ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* L_1 = V_0; if (L_1) { goto IL_000c; } } { return (bool)0; } IL_000c: { XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_2 = __this->____itemInfo_0; NullCheck(L_2); int32_t L_3; L_3 = VirtualFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_2); ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* L_4 = V_0; NullCheck(L_4); XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_5 = L_4->____itemInfo_0; NullCheck(L_5); int32_t L_6; L_6 = VirtualFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_5); if ((((int32_t)L_3) == ((int32_t)L_6))) { goto IL_0026; } } { return (bool)0; } IL_0026: { V_1 = 0; goto IL_004f; } IL_002a: { XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_7 = __this->____itemInfo_0; int32_t L_8 = V_1; NullCheck(L_7); RuntimeObject* L_9; L_9 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(28 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_7, L_8); ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* L_10 = V_0; NullCheck(L_10); XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_11 = L_10->____itemInfo_0; int32_t L_12 = V_1; NullCheck(L_11); RuntimeObject* L_13; L_13 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(28 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_11, L_12); NullCheck(L_9); bool L_14; L_14 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_9, L_13); if (L_14) { goto IL_004b; } } { return (bool)0; } IL_004b: { int32_t L_15 = V_1; V_1 = ((int32_t)il2cpp_codegen_add(L_15, 1)); } IL_004f: { int32_t L_16 = V_1; XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_17 = __this->____itemInfo_0; NullCheck(L_17); int32_t L_18; L_18 = VirtualFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_17); if ((((int32_t)L_16) < ((int32_t)L_18))) { goto IL_002a; } } { return (bool)1; } } // System.Int32 System.Xml.Serialization.ListMap::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ListMap_GetHashCode_m1EE90FD4B8CF4EAB771A8209BCDECAEB92C56AFA (ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* __this, const RuntimeMethod* method) { { int32_t L_0; L_0 = Object_GetHashCode_m372C5A7AB16CAC13307C11C4256D706CE57E090C(__this, NULL); return L_0; } } // System.Void System.Xml.Serialization.ListMap::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListMap__ctor_m89E81F66CB6B669B50E293853AAF98AD4DED0F67 (ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* __this, const RuntimeMethod* method) { { ObjectMap__ctor_mE344582A0192332702FFC03592ECA4CB356D2E41(__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.Xml.Serialization.EnumMap::.ctor(System.Xml.Serialization.EnumMap/EnumMapMember[],System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumMap__ctor_m8B507CB9A313B5FEC589E7C3F0A6B573D665768D (EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C* __this, EnumMapMemberU5BU5D_t9142B305BA0F44DC126D50BA43D74FAA86A7D520* ___0_members, bool ___1_isFlags, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; EnumMapMember_tB7A0813F20CFA0758843C38C2ECE325B13893E38* V_1 = NULL; { ObjectMap__ctor_mE344582A0192332702FFC03592ECA4CB356D2E41(__this, NULL); EnumMapMemberU5BU5D_t9142B305BA0F44DC126D50BA43D74FAA86A7D520* L_0 = ___0_members; __this->____members_0 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->____members_0), (void*)L_0); bool L_1 = ___1_isFlags; __this->____isFlags_1 = L_1; EnumMapMemberU5BU5D_t9142B305BA0F44DC126D50BA43D74FAA86A7D520* L_2 = __this->____members_0; NullCheck(L_2); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_3 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)((int32_t)(((RuntimeArray*)L_2)->max_length))); __this->____enumNames_2 = L_3; Il2CppCodeGenWriteBarrier((void**)(&__this->____enumNames_2), (void*)L_3); EnumMapMemberU5BU5D_t9142B305BA0F44DC126D50BA43D74FAA86A7D520* L_4 = __this->____members_0; NullCheck(L_4); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_5 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))); __this->____xmlNames_3 = L_5; Il2CppCodeGenWriteBarrier((void**)(&__this->____xmlNames_3), (void*)L_5); EnumMapMemberU5BU5D_t9142B305BA0F44DC126D50BA43D74FAA86A7D520* L_6 = __this->____members_0; NullCheck(L_6); Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D* L_7 = (Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D*)(Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D*)SZArrayNew(Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D_il2cpp_TypeInfo_var, (uint32_t)((int32_t)(((RuntimeArray*)L_6)->max_length))); __this->____values_4 = L_7; Il2CppCodeGenWriteBarrier((void**)(&__this->____values_4), (void*)L_7); V_0 = 0; goto IL_0088; } IL_0051: { EnumMapMemberU5BU5D_t9142B305BA0F44DC126D50BA43D74FAA86A7D520* L_8 = __this->____members_0; int32_t L_9 = V_0; NullCheck(L_8); int32_t L_10 = L_9; EnumMapMember_tB7A0813F20CFA0758843C38C2ECE325B13893E38* L_11 = (L_8)->GetAt(static_cast(L_10)); V_1 = L_11; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_12 = __this->____enumNames_2; int32_t L_13 = V_0; EnumMapMember_tB7A0813F20CFA0758843C38C2ECE325B13893E38* L_14 = V_1; NullCheck(L_14); String_t* L_15; L_15 = EnumMapMember_get_EnumName_m2E7534A1D65579CB33E8B43EF4186FC12A2D1B89_inline(L_14, NULL); NullCheck(L_12); ArrayElementTypeCheck (L_12, L_15); (L_12)->SetAt(static_cast(L_13), (String_t*)L_15); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_16 = __this->____xmlNames_3; int32_t L_17 = V_0; EnumMapMember_tB7A0813F20CFA0758843C38C2ECE325B13893E38* L_18 = V_1; NullCheck(L_18); String_t* L_19; L_19 = EnumMapMember_get_XmlName_mECD2830C6795BE2A0206F5A72D819C8DBAE015E8_inline(L_18, NULL); NullCheck(L_16); ArrayElementTypeCheck (L_16, L_19); (L_16)->SetAt(static_cast(L_17), (String_t*)L_19); Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D* L_20 = __this->____values_4; int32_t L_21 = V_0; EnumMapMember_tB7A0813F20CFA0758843C38C2ECE325B13893E38* L_22 = V_1; NullCheck(L_22); int64_t L_23; L_23 = EnumMapMember_get_Value_mD0B2EF80A4D874FF81E307E81063D9B52A98548E_inline(L_22, NULL); NullCheck(L_20); (L_20)->SetAt(static_cast(L_21), (int64_t)L_23); int32_t L_24 = V_0; V_0 = ((int32_t)il2cpp_codegen_add(L_24, 1)); } IL_0088: { int32_t L_25 = V_0; EnumMapMemberU5BU5D_t9142B305BA0F44DC126D50BA43D74FAA86A7D520* L_26 = __this->____members_0; NullCheck(L_26); if ((((int32_t)L_25) < ((int32_t)((int32_t)(((RuntimeArray*)L_26)->max_length))))) { goto IL_0051; } } { return; } } // System.Boolean System.Xml.Serialization.EnumMap::get_IsFlags() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EnumMap_get_IsFlags_m579F34B1547F457834A6980C8E77BF1936D742CD (EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C* __this, const RuntimeMethod* method) { { bool L_0 = __this->____isFlags_1; return L_0; } } // System.String[] System.Xml.Serialization.EnumMap::get_EnumNames() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* EnumMap_get_EnumNames_m60EAEB72502A0F1E05871326127A80033BA7E35E (EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C* __this, const RuntimeMethod* method) { { StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_0 = __this->____enumNames_2; return L_0; } } // System.String[] System.Xml.Serialization.EnumMap::get_XmlNames() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* EnumMap_get_XmlNames_m2E3DD7C64B62B3C6217CD1FBA64B76409E4BBF5F (EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C* __this, const RuntimeMethod* method) { { StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_0 = __this->____xmlNames_3; return L_0; } } // System.Int64[] System.Xml.Serialization.EnumMap::get_Values() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D* EnumMap_get_Values_m91652E064D00536B1B286304F49E3FD1EBCD7FDC (EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C* __this, const RuntimeMethod* method) { { Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D* L_0 = __this->____values_4; return L_0; } } // System.String System.Xml.Serialization.EnumMap::GetXmlName(System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* EnumMap_GetXmlName_m673884ED5B4566B41AA3D16F95E4F21D9B687621 (EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C* __this, String_t* ___0_typeName, RuntimeObject* ___1_enumValue, 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*)&IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlCustomFormatter_t8021E588C6512752ACF5F834D7F8FF70E1D28471_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int64_t V_0 = 0; String_t* V_1 = NULL; int32_t V_2 = 0; il2cpp::utils::ExceptionSupportStack __active_exceptions; { RuntimeObject* L_0 = ___1_enumValue; if (!((String_t*)IsInstSealed((RuntimeObject*)L_0, String_t_il2cpp_TypeInfo_var))) { goto IL_000e; } } { 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_mCBC218CE25034242D2EB33B3E59933295CE93C56(L_1, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EnumMap_GetXmlName_m673884ED5B4566B41AA3D16F95E4F21D9B687621_RuntimeMethod_var))); } IL_000e: { V_0 = ((int64_t)0); } try {// begin try (depth: 1) RuntimeObject* L_2 = ___1_enumValue; il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var); CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_3; L_3 = CultureInfo_get_CurrentCulture_m8A4580F49DDD7E9DB34C699965423DB8E3BBA9A5(NULL); NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_2, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var))); int64_t L_4; L_4 = InterfaceFuncInvoker1< int64_t, RuntimeObject* >::Invoke(9 /* System.Int64 System.IConvertible::ToInt64(System.IFormatProvider) */, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_2, IConvertible_tC7F4E6F8CAA007182834D242AEDB0F0E09C09515_il2cpp_TypeInfo_var)), L_3); V_0 = L_4; goto IL_002b; }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0024; } throw e; } CATCH_0024: {// begin catch(System.FormatException) 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_mCBC218CE25034242D2EB33B3E59933295CE93C56(L_5, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EnumMap_GetXmlName_m673884ED5B4566B41AA3D16F95E4F21D9B687621_RuntimeMethod_var))); }// end catch (depth: 1) IL_002b: { V_2 = 0; goto IL_0047; } IL_002f: { Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D* L_6; L_6 = EnumMap_get_Values_m91652E064D00536B1B286304F49E3FD1EBCD7FDC_inline(__this, NULL); int32_t L_7 = V_2; NullCheck(L_6); int32_t L_8 = L_7; int64_t L_9 = (L_6)->GetAt(static_cast(L_8)); int64_t L_10 = V_0; if ((!(((uint64_t)L_9) == ((uint64_t)L_10)))) { goto IL_0043; } } { StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_11; L_11 = EnumMap_get_XmlNames_m2E3DD7C64B62B3C6217CD1FBA64B76409E4BBF5F_inline(__this, NULL); int32_t L_12 = V_2; NullCheck(L_11); int32_t L_13 = L_12; String_t* L_14 = (L_11)->GetAt(static_cast(L_13)); return L_14; } IL_0043: { int32_t L_15 = V_2; V_2 = ((int32_t)il2cpp_codegen_add(L_15, 1)); } IL_0047: { int32_t L_16 = V_2; Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D* L_17; L_17 = EnumMap_get_Values_m91652E064D00536B1B286304F49E3FD1EBCD7FDC_inline(__this, NULL); NullCheck(L_17); if ((((int32_t)L_16) < ((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length))))) { goto IL_002f; } } { bool L_18; L_18 = EnumMap_get_IsFlags_m579F34B1547F457834A6980C8E77BF1936D742CD_inline(__this, NULL); if (!L_18) { goto IL_0063; } } { int64_t L_19 = V_0; if (L_19) { goto IL_0063; } } { String_t* L_20 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; return L_20; } IL_0063: { String_t* L_21 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; V_1 = L_21; bool L_22; L_22 = EnumMap_get_IsFlags_m579F34B1547F457834A6980C8E77BF1936D742CD_inline(__this, NULL); if (!L_22) { goto IL_0085; } } { int64_t L_23 = V_0; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_24; L_24 = EnumMap_get_XmlNames_m2E3DD7C64B62B3C6217CD1FBA64B76409E4BBF5F_inline(__this, NULL); Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D* L_25; L_25 = EnumMap_get_Values_m91652E064D00536B1B286304F49E3FD1EBCD7FDC_inline(__this, NULL); String_t* L_26 = ___0_typeName; il2cpp_codegen_runtime_class_init_inline(XmlCustomFormatter_t8021E588C6512752ACF5F834D7F8FF70E1D28471_il2cpp_TypeInfo_var); String_t* L_27; L_27 = XmlCustomFormatter_FromEnum_mF298092C9B8DF7CFEB96557CE3FDFB7C7E1A6163(L_23, L_24, L_25, L_26, NULL); V_1 = L_27; } IL_0085: { String_t* L_28 = V_1; NullCheck(L_28); int32_t L_29; L_29 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_28, NULL); if (L_29) { goto IL_00a9; } } { il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var))); CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_30; L_30 = CultureInfo_get_CurrentCulture_m8A4580F49DDD7E9DB34C699965423DB8E3BBA9A5(NULL); int64_t L_31 = V_0; int64_t L_32 = L_31; RuntimeObject* L_33 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var)), &L_32); String_t* L_34 = ___0_typeName; String_t* L_35; L_35 = String_Format_m44BF8BF44DC9B67D6CF265A1A2703A6D743F5C56(L_30, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF395EC26F95056DBC29912935F80FD26FEC80D35)), L_33, L_34, NULL); InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_36 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_36); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_36, L_35, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_36, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EnumMap_GetXmlName_m673884ED5B4566B41AA3D16F95E4F21D9B687621_RuntimeMethod_var))); } IL_00a9: { String_t* L_37 = V_1; return L_37; } } // System.String System.Xml.Serialization.EnumMap::GetEnumName(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* EnumMap_GetEnumName_m10DDCE7A6EB14899540AF62430B6133BBAF0CB94 (EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C* __this, String_t* ___0_typeName, String_t* ___1_xmlName, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF944DCD635F9801F7AC90A407FBC479964DEC024); s_Il2CppMethodInitialized = true; } StringBuilder_t* V_0 = NULL; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_1 = NULL; int32_t V_2 = 0; String_t* V_3 = NULL; String_t* V_4 = NULL; int32_t V_5 = 0; EnumMapMemberU5BU5D_t9142B305BA0F44DC126D50BA43D74FAA86A7D520* V_6 = NULL; EnumMapMember_tB7A0813F20CFA0758843C38C2ECE325B13893E38* V_7 = NULL; { bool L_0 = __this->____isFlags_1; if (!L_0) { goto IL_00cb; } } { String_t* L_1 = ___1_xmlName; NullCheck(L_1); String_t* L_2; L_2 = String_Trim_mCD6D8C6D4CFD15225D12DB7D3E0544CA80FB8DA5(L_1, NULL); ___1_xmlName = L_2; String_t* L_3 = ___1_xmlName; NullCheck(L_3); int32_t L_4; L_4 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_3, NULL); if (L_4) { goto IL_0021; } } { return _stringLiteralF944DCD635F9801F7AC90A407FBC479964DEC024; } IL_0021: { StringBuilder_t* L_5 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); NullCheck(L_5); StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D(L_5, NULL); V_0 = L_5; String_t* L_6 = ___1_xmlName; NullCheck(L_6); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_7; L_7 = String_Split_m101D35FEC86371D2BB4E3480F6F896880093B2E9(L_6, (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)NULL, NULL); V_1 = L_7; V_2 = 0; goto IL_00bb; } IL_0036: { StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_8 = V_1; int32_t L_9 = V_2; NullCheck(L_8); int32_t L_10 = L_9; String_t* L_11 = (L_8)->GetAt(static_cast(L_10)); V_3 = L_11; String_t* L_12 = V_3; String_t* L_13 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; bool L_14; L_14 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_12, L_13, NULL); if (L_14) { goto IL_00b7; } } { V_4 = (String_t*)NULL; V_5 = 0; goto IL_0073; } IL_004f: { StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_15; L_15 = EnumMap_get_XmlNames_m2E3DD7C64B62B3C6217CD1FBA64B76409E4BBF5F_inline(__this, NULL); int32_t L_16 = V_5; NullCheck(L_15); int32_t L_17 = L_16; String_t* L_18 = (L_15)->GetAt(static_cast(L_17)); String_t* L_19 = V_3; bool L_20; L_20 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_18, L_19, NULL); if (!L_20) { goto IL_006d; } } { StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_21; L_21 = EnumMap_get_EnumNames_m60EAEB72502A0F1E05871326127A80033BA7E35E_inline(__this, NULL); int32_t L_22 = V_5; NullCheck(L_21); int32_t L_23 = L_22; String_t* L_24 = (L_21)->GetAt(static_cast(L_23)); V_4 = L_24; goto IL_007f; } IL_006d: { int32_t L_25 = V_5; V_5 = ((int32_t)il2cpp_codegen_add(L_25, 1)); } IL_0073: { int32_t L_26 = V_5; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_27; L_27 = EnumMap_get_XmlNames_m2E3DD7C64B62B3C6217CD1FBA64B76409E4BBF5F_inline(__this, NULL); NullCheck(L_27); if ((((int32_t)L_26) < ((int32_t)((int32_t)(((RuntimeArray*)L_27)->max_length))))) { goto IL_004f; } } IL_007f: { String_t* L_28 = V_4; if (!L_28) { goto IL_00a0; } } { StringBuilder_t* L_29 = V_0; NullCheck(L_29); int32_t L_30; L_30 = StringBuilder_get_Length_mDEA041E7357C68CC3B5885276BB403676DAAE0D8(L_29, NULL); if ((((int32_t)L_30) <= ((int32_t)0))) { goto IL_0095; } } { StringBuilder_t* L_31 = V_0; NullCheck(L_31); StringBuilder_t* L_32; L_32 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_31, ((int32_t)44), NULL); } IL_0095: { StringBuilder_t* L_33 = V_0; String_t* L_34 = V_4; NullCheck(L_33); StringBuilder_t* L_35; L_35 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_33, L_34, NULL); goto IL_00b7; } IL_00a0: { il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var))); CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_36; L_36 = CultureInfo_get_CurrentCulture_m8A4580F49DDD7E9DB34C699965423DB8E3BBA9A5(NULL); String_t* L_37 = V_3; String_t* L_38 = ___0_typeName; String_t* L_39; L_39 = String_Format_m44BF8BF44DC9B67D6CF265A1A2703A6D743F5C56(L_36, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF395EC26F95056DBC29912935F80FD26FEC80D35)), L_37, L_38, NULL); InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_40 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_40); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_40, L_39, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_40, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EnumMap_GetEnumName_m10DDCE7A6EB14899540AF62430B6133BBAF0CB94_RuntimeMethod_var))); } IL_00b7: { int32_t L_41 = V_2; V_2 = ((int32_t)il2cpp_codegen_add(L_41, 1)); } IL_00bb: { int32_t L_42 = V_2; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_43 = V_1; NullCheck(L_43); if ((((int32_t)L_42) < ((int32_t)((int32_t)(((RuntimeArray*)L_43)->max_length))))) { goto IL_0036; } } { StringBuilder_t* L_44 = V_0; NullCheck(L_44); String_t* L_45; L_45 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_44); return L_45; } IL_00cb: { EnumMapMemberU5BU5D_t9142B305BA0F44DC126D50BA43D74FAA86A7D520* L_46 = __this->____members_0; V_6 = L_46; V_2 = 0; goto IL_00f8; } IL_00d7: { EnumMapMemberU5BU5D_t9142B305BA0F44DC126D50BA43D74FAA86A7D520* L_47 = V_6; int32_t L_48 = V_2; NullCheck(L_47); int32_t L_49 = L_48; EnumMapMember_tB7A0813F20CFA0758843C38C2ECE325B13893E38* L_50 = (L_47)->GetAt(static_cast(L_49)); V_7 = L_50; EnumMapMember_tB7A0813F20CFA0758843C38C2ECE325B13893E38* L_51 = V_7; NullCheck(L_51); String_t* L_52; L_52 = EnumMapMember_get_XmlName_mECD2830C6795BE2A0206F5A72D819C8DBAE015E8_inline(L_51, NULL); String_t* L_53 = ___1_xmlName; bool L_54; L_54 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_52, L_53, NULL); if (!L_54) { goto IL_00f4; } } { EnumMapMember_tB7A0813F20CFA0758843C38C2ECE325B13893E38* L_55 = V_7; NullCheck(L_55); String_t* L_56; L_56 = EnumMapMember_get_EnumName_m2E7534A1D65579CB33E8B43EF4186FC12A2D1B89_inline(L_55, NULL); return L_56; } IL_00f4: { int32_t L_57 = V_2; V_2 = ((int32_t)il2cpp_codegen_add(L_57, 1)); } IL_00f8: { int32_t L_58 = V_2; EnumMapMemberU5BU5D_t9142B305BA0F44DC126D50BA43D74FAA86A7D520* L_59 = V_6; NullCheck(L_59); if ((((int32_t)L_58) < ((int32_t)((int32_t)(((RuntimeArray*)L_59)->max_length))))) { goto IL_00d7; } } { return (String_t*)NULL; } } #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.Xml.Serialization.EnumMap/EnumMapMember::.ctor(System.String,System.String,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumMapMember__ctor_m706EC5F580B4D0A8E3470E22AF8B091AE551ABA1 (EnumMapMember_tB7A0813F20CFA0758843C38C2ECE325B13893E38* __this, String_t* ___0_xmlName, String_t* ___1_enumName, int64_t ___2_value, const RuntimeMethod* method) { { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); String_t* L_0 = ___0_xmlName; __this->____xmlName_0 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->____xmlName_0), (void*)L_0); String_t* L_1 = ___1_enumName; __this->____enumName_1 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->____enumName_1), (void*)L_1); int64_t L_2 = ___2_value; __this->____value_2 = L_2; return; } } // System.String System.Xml.Serialization.EnumMap/EnumMapMember::get_XmlName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* EnumMapMember_get_XmlName_mECD2830C6795BE2A0206F5A72D819C8DBAE015E8 (EnumMapMember_tB7A0813F20CFA0758843C38C2ECE325B13893E38* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->____xmlName_0; return L_0; } } // System.String System.Xml.Serialization.EnumMap/EnumMapMember::get_EnumName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* EnumMapMember_get_EnumName_m2E7534A1D65579CB33E8B43EF4186FC12A2D1B89 (EnumMapMember_tB7A0813F20CFA0758843C38C2ECE325B13893E38* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->____enumName_1; return L_0; } } // System.Int64 System.Xml.Serialization.EnumMap/EnumMapMember::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EnumMapMember_get_Value_mD0B2EF80A4D874FF81E307E81063D9B52A98548E (EnumMapMember_tB7A0813F20CFA0758843C38C2ECE325B13893E38* __this, const RuntimeMethod* method) { { int64_t L_0 = __this->____value_2; return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Boolean System.Xml.XmlConfiguration.XmlReaderSection::get_ProhibitDefaultUrlResolver() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlReaderSection_get_ProhibitDefaultUrlResolver_m05ADF085D05F3BDBE922DE810EC83C717DA41A03 (const RuntimeMethod* method) { { return (bool)0; } } // System.Xml.XmlResolver System.Xml.XmlConfiguration.XmlReaderSection::CreateDefaultResolver() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* XmlReaderSection_CreateDefaultResolver_mFD1998137CA6D8275C4DADD37104CD0F09845EDD (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { bool L_0; L_0 = XmlReaderSection_get_ProhibitDefaultUrlResolver_m05ADF085D05F3BDBE922DE810EC83C717DA41A03(NULL); if (!L_0) { goto IL_0009; } } { return (XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF*)NULL; } IL_0009: { XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E* L_1 = (XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E*)il2cpp_codegen_object_new(XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E_il2cpp_TypeInfo_var); NullCheck(L_1); XmlUrlResolver__ctor_m2BF23C41038D2825C0854A4C01DCE078E171A7BB(L_1, NULL); return L_1; } } // System.Boolean System.Xml.XmlConfiguration.XmlReaderSection::get_CollapseWhiteSpaceIntoEmptyString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XmlReaderSection_get_CollapseWhiteSpaceIntoEmptyString_m48E1EFA57B782267B6D68180AEE43D138B7C8E5F (const RuntimeMethod* method) { { 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.Boolean System.Xml.XmlConfiguration.XsltConfigSection::get_s_ProhibitDefaultUrlResolver() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XsltConfigSection_get_s_ProhibitDefaultUrlResolver_m5B6373964884DFD155C3A48B73E181CDECE7A17F (const RuntimeMethod* method) { { return (bool)0; } } // System.Xml.XmlResolver System.Xml.XmlConfiguration.XsltConfigSection::CreateDefaultResolver() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* XsltConfigSection_CreateDefaultResolver_m773D2DD5A10763470D44412F82C99F50BB4218A0 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNullResolver_t2569417DA15677E9831E2DEFD875034F37088FB2_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { bool L_0; L_0 = XsltConfigSection_get_s_ProhibitDefaultUrlResolver_m5B6373964884DFD155C3A48B73E181CDECE7A17F(NULL); if (!L_0) { goto IL_000d; } } { il2cpp_codegen_runtime_class_init_inline(XmlNullResolver_t2569417DA15677E9831E2DEFD875034F37088FB2_il2cpp_TypeInfo_var); XmlNullResolver_t2569417DA15677E9831E2DEFD875034F37088FB2* L_1 = ((XmlNullResolver_t2569417DA15677E9831E2DEFD875034F37088FB2_StaticFields*)il2cpp_codegen_static_fields_for(XmlNullResolver_t2569417DA15677E9831E2DEFD875034F37088FB2_il2cpp_TypeInfo_var))->___Singleton_0; return L_1; } IL_000d: { XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E* L_2 = (XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E*)il2cpp_codegen_object_new(XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E_il2cpp_TypeInfo_var); NullCheck(L_2); XmlUrlResolver__ctor_m2BF23C41038D2825C0854A4C01DCE078E171A7BB(L_2, NULL); return L_2; } } #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.Xml.Xsl.XslTransform::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XslTransform__ctor_m850C1001C91A0B97129CCDF94A2EB332ED8A9035 (XslTransform_t32C87F5469FF9F15D11EAA03EE708AF205AE4BE0* __this, const RuntimeMethod* method) { { Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); return; } } // System.Void System.Xml.Xsl.XslTransform::Load(System.Xml.XPath.IXPathNavigable,System.Xml.XmlResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XslTransform_Load_m9185E617122331192CA04784A20296E75C182C8F (XslTransform_t32C87F5469FF9F15D11EAA03EE708AF205AE4BE0* __this, RuntimeObject* ___0_stylesheet, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___1_resolver, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXPathNavigable_t7BF6ADB512E5C0F5D286F6EE65D1C0ED525098EA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___0_stylesheet; 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*)&_stringLiteralA27C715712810E2C8124CA729C2B73744ADA1464)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XslTransform_Load_m9185E617122331192CA04784A20296E75C182C8F_RuntimeMethod_var))); } IL_000e: { RuntimeObject* L_2 = ___0_stylesheet; NullCheck(L_2); XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* L_3; L_3 = InterfaceFuncInvoker0< XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* >::Invoke(0 /* System.Xml.XPath.XPathNavigator System.Xml.XPath.IXPathNavigable::CreateNavigator() */, IXPathNavigable_t7BF6ADB512E5C0F5D286F6EE65D1C0ED525098EA_il2cpp_TypeInfo_var, L_2); XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_4 = ___1_resolver; XslTransform_Load_m10C5F1E0536E482F12B9BA6AEA5CFA21FA11D8C9(__this, L_3, L_4, NULL); return; } } // System.Void System.Xml.Xsl.XslTransform::Load(System.Xml.XPath.XPathNavigator,System.Xml.XmlResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XslTransform_Load_m10C5F1E0536E482F12B9BA6AEA5CFA21FA11D8C9 (XslTransform_t32C87F5469FF9F15D11EAA03EE708AF205AE4BE0* __this, XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* ___0_stylesheet, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___1_resolver, const RuntimeMethod* method) { { XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* L_0 = ___0_stylesheet; 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*)&_stringLiteralA27C715712810E2C8124CA729C2B73744ADA1464)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XslTransform_Load_m10C5F1E0536E482F12B9BA6AEA5CFA21FA11D8C9_RuntimeMethod_var))); } IL_000e: { XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* L_2 = ___0_stylesheet; XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_3 = ___1_resolver; XslTransform_Compile_m35B6617E353EAB9AC975D2B3AA787B1DC009D909(__this, L_2, L_3, (Evidence_t890BA14A138D1935B7A361CA3FA55484D66B2F64*)NULL, NULL); return; } } // System.Void System.Xml.Xsl.XslTransform::CheckCommand() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XslTransform_CheckCommand_m03A304F9DE1CC2DF29F707380F54F0F46D3C734D (XslTransform_t32C87F5469FF9F15D11EAA03EE708AF205AE4BE0* __this, const RuntimeMethod* method) { { Stylesheet_t877F8405A546EAB0A26CE0F54A7F48533686E5AB* L_0 = __this->____CompiledStylesheet_0; if (L_0) { goto IL_0018; } } { String_t* L_1; L_1 = Res_GetString_mBEE82ACFE97F93A6DDE81E322477CF2713466364(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAD256F5DDB3F0EB4C0F66FD08235C1F3ABA620E2)), NULL); InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_2 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var))); NullCheck(L_2); InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_2, L_1, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XslTransform_CheckCommand_m03A304F9DE1CC2DF29F707380F54F0F46D3C734D_RuntimeMethod_var))); } IL_0018: { return; } } // System.Void System.Xml.Xsl.XslTransform::Transform(System.Xml.XPath.XPathNavigator,System.Xml.Xsl.XsltArgumentList,System.Xml.XmlWriter,System.Xml.XmlResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XslTransform_Transform_m422442E485673BBE018CF29DF718F434F54B7A20 (XslTransform_t32C87F5469FF9F15D11EAA03EE708AF205AE4BE0* __this, XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* ___0_input, XsltArgumentList_tCB3312D17FD0D83C20E32BB7CE76B8A280A209BF* ___1_args, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___2_output, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___3_resolver, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XslTransform_CheckCommand_m03A304F9DE1CC2DF29F707380F54F0F46D3C734D(__this, NULL); XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* L_0 = ___0_input; XsltArgumentList_tCB3312D17FD0D83C20E32BB7CE76B8A280A209BF* L_1 = ___1_args; XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_2 = ___3_resolver; Stylesheet_t877F8405A546EAB0A26CE0F54A7F48533686E5AB* L_3 = __this->____CompiledStylesheet_0; List_1_t34BD5FC03C0DFF68F2817059E6FD410AD98DF02A* L_4 = __this->____QueryStore_1; RootAction_t94281C7ECEF5D1837C8264D38E4486DF137E7035* L_5 = __this->____RootAction_2; RuntimeObject* L_6 = __this->___debugger_3; Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83* L_7 = (Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83*)il2cpp_codegen_object_new(Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83_il2cpp_TypeInfo_var); NullCheck(L_7); Processor__ctor_m78292156362DCD4589E6DE1E4F3E6D2F49DEE936(L_7, L_0, L_1, L_2, L_3, L_4, L_5, L_6, NULL); XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_8 = ___2_output; NullCheck(L_7); Processor_Execute_mA6A5DAADD4110FD44D378124B5F568F1D3EC8D2F(L_7, L_8, NULL); return; } } // System.Void System.Xml.Xsl.XslTransform::Compile(System.Xml.XPath.XPathNavigator,System.Xml.XmlResolver,System.Security.Policy.Evidence) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XslTransform_Compile_m35B6617E353EAB9AC975D2B3AA787B1DC009D909 (XslTransform_t32C87F5469FF9F15D11EAA03EE708AF205AE4BE0* __this, XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* ___0_stylesheet, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___1_resolver, Evidence_t890BA14A138D1935B7A361CA3FA55484D66B2F64* ___2_evidence, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DbgCompiler_t310F6D239D695E13367E3160AA8A84AC2ECA5C34_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NavigatorInput_t320297C3DA5C438B7B111C375918046FAAE8F8A6_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlNullResolver_t2569417DA15677E9831E2DEFD875034F37088FB2_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* V_0 = NULL; NavigatorInput_t320297C3DA5C438B7B111C375918046FAAE8F8A6* V_1 = NULL; DbgCompiler_t310F6D239D695E13367E3160AA8A84AC2ECA5C34* G_B3_0 = NULL; XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* G_B5_0 = NULL; NavigatorInput_t320297C3DA5C438B7B111C375918046FAAE8F8A6* G_B5_1 = NULL; Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* G_B5_2 = NULL; XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* G_B4_0 = NULL; NavigatorInput_t320297C3DA5C438B7B111C375918046FAAE8F8A6* G_B4_1 = NULL; Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* G_B4_2 = NULL; { RuntimeObject* L_0; L_0 = XslTransform_get_Debugger_mEF9F9CEAFBFA9858AFC8F03E58D4AA42C7EF56AB_inline(__this, NULL); if (!L_0) { goto IL_0015; } } { RuntimeObject* L_1; L_1 = XslTransform_get_Debugger_mEF9F9CEAFBFA9858AFC8F03E58D4AA42C7EF56AB_inline(__this, NULL); DbgCompiler_t310F6D239D695E13367E3160AA8A84AC2ECA5C34* L_2 = (DbgCompiler_t310F6D239D695E13367E3160AA8A84AC2ECA5C34*)il2cpp_codegen_object_new(DbgCompiler_t310F6D239D695E13367E3160AA8A84AC2ECA5C34_il2cpp_TypeInfo_var); NullCheck(L_2); DbgCompiler__ctor_m63E930476D4F073C9BC99F8E2FFD6769208FA2E8(L_2, L_1, NULL); G_B3_0 = L_2; goto IL_001a; } IL_0015: { Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* L_3 = (Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5*)il2cpp_codegen_object_new(Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5_il2cpp_TypeInfo_var); NullCheck(L_3); Compiler__ctor_m79048DF18E888D1C7B7B6FB1E5601428DACBE11D(L_3, NULL); G_B3_0 = ((DbgCompiler_t310F6D239D695E13367E3160AA8A84AC2ECA5C34*)(L_3)); } IL_001a: { V_0 = G_B3_0; XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* L_4 = ___0_stylesheet; NavigatorInput_t320297C3DA5C438B7B111C375918046FAAE8F8A6* L_5 = (NavigatorInput_t320297C3DA5C438B7B111C375918046FAAE8F8A6*)il2cpp_codegen_object_new(NavigatorInput_t320297C3DA5C438B7B111C375918046FAAE8F8A6_il2cpp_TypeInfo_var); NullCheck(L_5); NavigatorInput__ctor_m567A59410920DB06976463A8FD6D89DBD5C57B5C(L_5, L_4, NULL); V_1 = L_5; Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* L_6 = V_0; NavigatorInput_t320297C3DA5C438B7B111C375918046FAAE8F8A6* L_7 = V_1; XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_8 = ___1_resolver; XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_9 = L_8; G_B4_0 = L_9; G_B4_1 = L_7; G_B4_2 = L_6; if (L_9) { G_B5_0 = L_9; G_B5_1 = L_7; G_B5_2 = L_6; goto IL_002e; } } { il2cpp_codegen_runtime_class_init_inline(XmlNullResolver_t2569417DA15677E9831E2DEFD875034F37088FB2_il2cpp_TypeInfo_var); XmlNullResolver_t2569417DA15677E9831E2DEFD875034F37088FB2* L_10 = ((XmlNullResolver_t2569417DA15677E9831E2DEFD875034F37088FB2_StaticFields*)il2cpp_codegen_static_fields_for(XmlNullResolver_t2569417DA15677E9831E2DEFD875034F37088FB2_il2cpp_TypeInfo_var))->___Singleton_0; G_B5_0 = ((XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF*)(L_10)); G_B5_1 = G_B4_1; G_B5_2 = G_B4_2; } IL_002e: { Evidence_t890BA14A138D1935B7A361CA3FA55484D66B2F64* L_11 = ___2_evidence; NullCheck(G_B5_2); Compiler_Compile_m73676674D3395DE868BA6F2073944215875C91DB(G_B5_2, G_B5_1, G_B5_0, L_11, NULL); Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* L_12 = V_0; NullCheck(L_12); Stylesheet_t877F8405A546EAB0A26CE0F54A7F48533686E5AB* L_13; L_13 = Compiler_get_CompiledStylesheet_mA280D11E65BC25A124F7D85975F74CC6DC7D4F13_inline(L_12, NULL); __this->____CompiledStylesheet_0 = L_13; Il2CppCodeGenWriteBarrier((void**)(&__this->____CompiledStylesheet_0), (void*)L_13); Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* L_14 = V_0; NullCheck(L_14); List_1_t34BD5FC03C0DFF68F2817059E6FD410AD98DF02A* L_15; L_15 = Compiler_get_QueryStore_mE01B86F79B6BDABD76E3C8ECAFB10ADFD44A8B67_inline(L_14, NULL); __this->____QueryStore_1 = L_15; Il2CppCodeGenWriteBarrier((void**)(&__this->____QueryStore_1), (void*)L_15); Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* L_16 = V_0; NullCheck(L_16); RootAction_t94281C7ECEF5D1837C8264D38E4486DF137E7035* L_17; L_17 = Compiler_get_RootAction_m2D01397452DADB6B7E8A55597729C7558400CCAE_inline(L_16, NULL); __this->____RootAction_2 = L_17; Il2CppCodeGenWriteBarrier((void**)(&__this->____RootAction_2), (void*)L_17); return; } } // System.Xml.Xsl.XsltOld.Debugger.IXsltDebugger System.Xml.Xsl.XslTransform::get_Debugger() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XslTransform_get_Debugger_mEF9F9CEAFBFA9858AFC8F03E58D4AA42C7EF56AB (XslTransform_t32C87F5469FF9F15D11EAA03EE708AF205AE4BE0* __this, const RuntimeMethod* method) { { RuntimeObject* L_0 = __this->___debugger_3; return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Xsl.XsltArgumentList::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsltArgumentList__ctor_m655C1DF65FE5179AAAF751644C7948D10020741F (XsltArgumentList_tCB3312D17FD0D83C20E32BB7CE76B8A280A209BF* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D*)il2cpp_codegen_object_new(Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var); NullCheck(L_0); Hashtable__ctor_mD7E2F1EB1BFD683186ECD6EDBE1708AF35C3A87D(L_0, NULL); __this->___parameters_0 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___parameters_0), (void*)L_0); Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_1 = (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D*)il2cpp_codegen_object_new(Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var); NullCheck(L_1); Hashtable__ctor_mD7E2F1EB1BFD683186ECD6EDBE1708AF35C3A87D(L_1, NULL); __this->___extensions_1 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___extensions_1), (void*)L_1); Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); return; } } // System.Object System.Xml.Xsl.XsltArgumentList::GetParam(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XsltArgumentList_GetParam_mF581EADC5D86FB7589B55624CA53097F6C3EC609 (XsltArgumentList_tCB3312D17FD0D83C20E32BB7CE76B8A280A209BF* __this, String_t* ___0_name, String_t* ___1_namespaceUri, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->___parameters_0; String_t* L_1 = ___0_name; String_t* L_2 = ___1_namespaceUri; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_3 = (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)il2cpp_codegen_object_new(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); NullCheck(L_3); XmlQualifiedName__ctor_m65632114A1726D9FAD0338BC2A8C28BB9D262C7B(L_3, L_1, L_2, NULL); NullCheck(L_0); RuntimeObject* L_4; L_4 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_0, L_3); return L_4; } } // System.Object System.Xml.Xsl.XsltArgumentList::GetExtensionObject(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* XsltArgumentList_GetExtensionObject_mE6CF7AB26CF4F30935E5BF45DE3ADF0A8147549A (XsltArgumentList_tCB3312D17FD0D83C20E32BB7CE76B8A280A209BF* __this, String_t* ___0_namespaceUri, const RuntimeMethod* method) { { Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->___extensions_1; String_t* L_1 = ___0_namespaceUri; NullCheck(L_0); RuntimeObject* L_2; L_2 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_0, L_1); return L_2; } } // System.Void System.Xml.Xsl.XsltArgumentList::AddParam(System.String,System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsltArgumentList_AddParam_m2B735A39E995BC3924AC12D22FEB9AB82799A8E7 (XsltArgumentList_tCB3312D17FD0D83C20E32BB7CE76B8A280A209BF* __this, String_t* ___0_name, String_t* ___1_namespaceUri, RuntimeObject* ___2_parameter, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral48EDA577A470BC146F744077BDE5D2F740425218); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral599D9E1A003C7DC39A506894643A0BD90634925B); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCE18B047107AA23D1AA9B2ED32D316148E02655F); s_Il2CppMethodInitialized = true; } XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* V_0 = NULL; { String_t* L_0 = ___0_name; XsltArgumentList_CheckArgumentNull_mEE9B687CAD14A539F48E7F7B142051C2DF9477A2(L_0, _stringLiteralCE18B047107AA23D1AA9B2ED32D316148E02655F, NULL); String_t* L_1 = ___1_namespaceUri; XsltArgumentList_CheckArgumentNull_mEE9B687CAD14A539F48E7F7B142051C2DF9477A2(L_1, _stringLiteral48EDA577A470BC146F744077BDE5D2F740425218, NULL); RuntimeObject* L_2 = ___2_parameter; XsltArgumentList_CheckArgumentNull_mEE9B687CAD14A539F48E7F7B142051C2DF9477A2(L_2, _stringLiteral599D9E1A003C7DC39A506894643A0BD90634925B, NULL); String_t* L_3 = ___0_name; String_t* L_4 = ___1_namespaceUri; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_5 = (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)il2cpp_codegen_object_new(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); NullCheck(L_5); XmlQualifiedName__ctor_m65632114A1726D9FAD0338BC2A8C28BB9D262C7B(L_5, L_3, L_4, NULL); V_0 = L_5; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_6 = V_0; NullCheck(L_6); XmlQualifiedName_Verify_mFB83DB0C546F66AA49618EB39EBC76EEA477F002(L_6, NULL); Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_7 = __this->___parameters_0; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_8 = V_0; RuntimeObject* L_9 = ___2_parameter; NullCheck(L_7); VirtualActionInvoker2< RuntimeObject*, RuntimeObject* >::Invoke(23 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_7, L_8, L_9); return; } } // System.Void System.Xml.Xsl.XsltArgumentList::CheckArgumentNull(System.Object,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsltArgumentList_CheckArgumentNull_mEE9B687CAD14A539F48E7F7B142051C2DF9477A2 (RuntimeObject* ___0_param, String_t* ___1_paramName, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___0_param; if (L_0) { goto IL_000a; } } { String_t* L_1 = ___1_paramName; 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, L_1, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XsltArgumentList_CheckArgumentNull_mEE9B687CAD14A539F48E7F7B142051C2DF9477A2_RuntimeMethod_var))); } IL_000a: { 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.Xml.Xsl.XsltContext::.ctor(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsltContext__ctor_m3512C20F502004B0EC2CC8EA53ED7A7E378BCC99 (XsltContext_tF2EF16CAEEBE0A1639BEED02DB3FE1058E19CD8B* __this, bool ___0_dummy, const RuntimeMethod* method) { { XmlNamespaceManager__ctor_m6485992B6D88F2C7276E1D562B9F643AD60AD4CD(__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.Xml.Xsl.XsltException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsltException__ctor_mD8928C4BCD9AF8020D359E01C81C7B47FF16645B (XsltException_t068DA14245E560F1D8DD1C0EF96303DE84BAAE1F* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_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*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0BA9045FCB28C8C8B2ACED641BB5013BAC05D492); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral47EB169AEE74B181812673783C66416B39F5F464); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9F0051E3370AA31B69F5CBF0E35FBE94ACAE0651); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD2D2F8D3F9F04A081FFBE6B2AF7917BAAADFC052); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE1356901E9F96E6ACC91632889AE94286AFE4CD4); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEDC12722FE0763003109C7EDBACB6977C0E31132); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; SerializationInfoEnumerator_t810DE600E5F6AA4F2B66A7F56074277CCD8F1540* V_1 = NULL; SerializationEntry_t6A03B35039769EF0EDD14BE879E68F1C104FFF74 V_2; memset((&V_2), 0, sizeof(V_2)); { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___0_info; StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___1_context; SystemException__ctor_mA2BB392E0F4CD8A4C132984F76B7A9FBDB3B6879(__this, L_0, L_1, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_2 = ___0_info; 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_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_3, NULL); NullCheck(L_2); RuntimeObject* L_5; L_5 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_2, _stringLiteral9F0051E3370AA31B69F5CBF0E35FBE94ACAE0651, L_4, NULL); __this->___res_18 = ((String_t*)CastclassSealed((RuntimeObject*)L_5, String_t_il2cpp_TypeInfo_var)); Il2CppCodeGenWriteBarrier((void**)(&__this->___res_18), (void*)((String_t*)CastclassSealed((RuntimeObject*)L_5, String_t_il2cpp_TypeInfo_var))); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_6 = ___0_info; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_7 = { reinterpret_cast (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_0_0_0_var) }; Type_t* L_8; L_8 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_7, NULL); NullCheck(L_6); RuntimeObject* L_9; L_9 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_6, _stringLiteralEDC12722FE0763003109C7EDBACB6977C0E31132, L_8, NULL); __this->___args_19 = ((StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)Castclass((RuntimeObject*)L_9, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var)); Il2CppCodeGenWriteBarrier((void**)(&__this->___args_19), (void*)((StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)Castclass((RuntimeObject*)L_9, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var))); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_10 = ___0_info; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_11 = { reinterpret_cast (String_t_0_0_0_var) }; Type_t* L_12; L_12 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_11, NULL); NullCheck(L_10); RuntimeObject* L_13; L_13 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_10, _stringLiteral47EB169AEE74B181812673783C66416B39F5F464, L_12, NULL); __this->___sourceUri_20 = ((String_t*)CastclassSealed((RuntimeObject*)L_13, String_t_il2cpp_TypeInfo_var)); Il2CppCodeGenWriteBarrier((void**)(&__this->___sourceUri_20), (void*)((String_t*)CastclassSealed((RuntimeObject*)L_13, String_t_il2cpp_TypeInfo_var))); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_14 = ___0_info; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_15 = { reinterpret_cast (Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_0_0_0_var) }; Type_t* L_16; L_16 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_15, NULL); NullCheck(L_14); RuntimeObject* L_17; L_17 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_14, _stringLiteral0BA9045FCB28C8C8B2ACED641BB5013BAC05D492, L_16, NULL); __this->___lineNumber_21 = ((*(int32_t*)((int32_t*)(int32_t*)UnBox(L_17, Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)))); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_18 = ___0_info; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_19 = { reinterpret_cast (Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_0_0_0_var) }; Type_t* L_20; L_20 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_19, NULL); NullCheck(L_18); RuntimeObject* L_21; L_21 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_18, _stringLiteralE1356901E9F96E6ACC91632889AE94286AFE4CD4, L_20, NULL); __this->___linePosition_22 = ((*(int32_t*)((int32_t*)(int32_t*)UnBox(L_21, Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var)))); V_0 = (String_t*)NULL; SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_22 = ___0_info; NullCheck(L_22); SerializationInfoEnumerator_t810DE600E5F6AA4F2B66A7F56074277CCD8F1540* L_23; L_23 = SerializationInfo_GetEnumerator_m5230A1D4E4B612E90B10E2034C638CD42F667EA6(L_22, NULL); V_1 = L_23; goto IL_00da; } IL_00b3: { SerializationInfoEnumerator_t810DE600E5F6AA4F2B66A7F56074277CCD8F1540* L_24 = V_1; NullCheck(L_24); SerializationEntry_t6A03B35039769EF0EDD14BE879E68F1C104FFF74 L_25; L_25 = SerializationInfoEnumerator_get_Current_m820863174CF73089751ACC36BC34DD3188A1929B(L_24, NULL); V_2 = L_25; String_t* L_26; L_26 = SerializationEntry_get_Name_mF6151F31B3F43C88AF08F39F178401406642EB67_inline((&V_2), NULL); bool L_27; L_27 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_26, _stringLiteralD2D2F8D3F9F04A081FFBE6B2AF7917BAAADFC052, NULL); if (!L_27) { goto IL_00da; } } { RuntimeObject* L_28; L_28 = SerializationEntry_get_Value_mA57713535F866795C180D20067C0E38A85327912_inline((&V_2), NULL); V_0 = ((String_t*)CastclassSealed((RuntimeObject*)L_28, String_t_il2cpp_TypeInfo_var)); } IL_00da: { SerializationInfoEnumerator_t810DE600E5F6AA4F2B66A7F56074277CCD8F1540* L_29 = V_1; NullCheck(L_29); bool L_30; L_30 = SerializationInfoEnumerator_MoveNext_m4F052C960AE85EFED1048CAAAC538AB3714078A6(L_29, NULL); if (L_30) { goto IL_00b3; } } { String_t* L_31 = V_0; if (L_31) { goto IL_010f; } } { String_t* L_32 = __this->___res_18; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_33 = __this->___args_19; String_t* L_34 = __this->___sourceUri_20; int32_t L_35 = __this->___lineNumber_21; int32_t L_36 = __this->___linePosition_22; String_t* L_37; L_37 = XsltException_CreateMessage_m6761F40B0492F757CD4D4279B58EF768C2C689F5(L_32, L_33, L_34, L_35, L_36, NULL); __this->___message_23 = L_37; Il2CppCodeGenWriteBarrier((void**)(&__this->___message_23), (void*)L_37); return; } IL_010f: { __this->___message_23 = (String_t*)NULL; Il2CppCodeGenWriteBarrier((void**)(&__this->___message_23), (void*)(String_t*)NULL); return; } } // System.Void System.Xml.Xsl.XsltException::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsltException_GetObjectData_mA93A1F279D08A0027549FF5AE767A5C0E1788D76 (XsltException_t068DA14245E560F1D8DD1C0EF96303DE84BAAE1F* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0BA9045FCB28C8C8B2ACED641BB5013BAC05D492); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral47EB169AEE74B181812673783C66416B39F5F464); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4A962F7AAEC3B50EF4B2CD52A7A2C969B759A960); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9F0051E3370AA31B69F5CBF0E35FBE94ACAE0651); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD2D2F8D3F9F04A081FFBE6B2AF7917BAAADFC052); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE1356901E9F96E6ACC91632889AE94286AFE4CD4); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEDC12722FE0763003109C7EDBACB6977C0E31132); s_Il2CppMethodInitialized = true; } { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___0_info; StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___1_context; Exception_GetObjectData_mD69929DB0BB2512240908B9EEE21778CB7B72DA9(__this, L_0, L_1, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_2 = ___0_info; String_t* L_3 = __this->___res_18; NullCheck(L_2); SerializationInfo_AddValue_m28FE9B110F21DDB8FF5F5E35A0EABD659DB22C2F(L_2, _stringLiteral9F0051E3370AA31B69F5CBF0E35FBE94ACAE0651, L_3, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_4 = ___0_info; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_5 = __this->___args_19; NullCheck(L_4); SerializationInfo_AddValue_m28FE9B110F21DDB8FF5F5E35A0EABD659DB22C2F(L_4, _stringLiteralEDC12722FE0763003109C7EDBACB6977C0E31132, (RuntimeObject*)L_5, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_6 = ___0_info; String_t* L_7 = __this->___sourceUri_20; NullCheck(L_6); SerializationInfo_AddValue_m28FE9B110F21DDB8FF5F5E35A0EABD659DB22C2F(L_6, _stringLiteral47EB169AEE74B181812673783C66416B39F5F464, L_7, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_8 = ___0_info; int32_t L_9 = __this->___lineNumber_21; NullCheck(L_8); SerializationInfo_AddValue_m9D6ADD10966D1FE8D19050F3A269747C23FE9FC4(L_8, _stringLiteral0BA9045FCB28C8C8B2ACED641BB5013BAC05D492, L_9, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_10 = ___0_info; int32_t L_11 = __this->___linePosition_22; NullCheck(L_10); SerializationInfo_AddValue_m9D6ADD10966D1FE8D19050F3A269747C23FE9FC4(L_10, _stringLiteralE1356901E9F96E6ACC91632889AE94286AFE4CD4, L_11, NULL); SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_12 = ___0_info; NullCheck(L_12); SerializationInfo_AddValue_m28FE9B110F21DDB8FF5F5E35A0EABD659DB22C2F(L_12, _stringLiteralD2D2F8D3F9F04A081FFBE6B2AF7917BAAADFC052, _stringLiteral4A962F7AAEC3B50EF4B2CD52A7A2C969B759A960, NULL); return; } } // System.Void System.Xml.Xsl.XsltException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsltException__ctor_m4F440236D1276C2A5C434BF3EB76AD45DCB16CE7 (XsltException_t068DA14245E560F1D8DD1C0EF96303DE84BAAE1F* __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* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6; XsltException__ctor_m9843FBCCBCCC37EA819FDDBDC8DFBA4BC36B5051(__this, L_0, (Exception_t*)NULL, NULL); return; } } // System.Void System.Xml.Xsl.XsltException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsltException__ctor_m9843FBCCBCCC37EA819FDDBDC8DFBA4BC36B5051 (XsltException_t068DA14245E560F1D8DD1C0EF96303DE84BAAE1F* __this, String_t* ___0_message, Exception_t* ___1_innerException, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral23114468D04FA2B7A2DA455B545DB914D0A3ED94); s_Il2CppMethodInitialized = true; } { StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_0 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)1); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_1 = L_0; String_t* L_2 = ___0_message; NullCheck(L_1); ArrayElementTypeCheck (L_1, L_2); (L_1)->SetAt(static_cast(0), (String_t*)L_2); Exception_t* L_3 = ___1_innerException; XsltException__ctor_mB50154E8D32C1CFFCF6D2CFC6E74C1DE78CCBEA7(__this, _stringLiteral23114468D04FA2B7A2DA455B545DB914D0A3ED94, L_1, (String_t*)NULL, 0, 0, L_3, NULL); return; } } // System.Xml.Xsl.XsltException System.Xml.Xsl.XsltException::Create(System.String,System.String[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XsltException_t068DA14245E560F1D8DD1C0EF96303DE84BAAE1F* XsltException_Create_m05D682F3ED57C1BE81B4951BC325D469916DB86E (String_t* ___0_res, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___1_args, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XsltException_t068DA14245E560F1D8DD1C0EF96303DE84BAAE1F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___0_res; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_1 = ___1_args; XsltException_t068DA14245E560F1D8DD1C0EF96303DE84BAAE1F* L_2 = (XsltException_t068DA14245E560F1D8DD1C0EF96303DE84BAAE1F*)il2cpp_codegen_object_new(XsltException_t068DA14245E560F1D8DD1C0EF96303DE84BAAE1F_il2cpp_TypeInfo_var); NullCheck(L_2); XsltException__ctor_mB50154E8D32C1CFFCF6D2CFC6E74C1DE78CCBEA7(L_2, L_0, L_1, (String_t*)NULL, 0, 0, (Exception_t*)NULL, NULL); return L_2; } } // System.Xml.Xsl.XsltException System.Xml.Xsl.XsltException::Create(System.String,System.String[],System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XsltException_t068DA14245E560F1D8DD1C0EF96303DE84BAAE1F* XsltException_Create_mBEA703FCACDAF0C2291698DD1B52EDDFFEEBD977 (String_t* ___0_res, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___1_args, Exception_t* ___2_inner, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XsltException_t068DA14245E560F1D8DD1C0EF96303DE84BAAE1F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___0_res; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_1 = ___1_args; Exception_t* L_2 = ___2_inner; XsltException_t068DA14245E560F1D8DD1C0EF96303DE84BAAE1F* L_3 = (XsltException_t068DA14245E560F1D8DD1C0EF96303DE84BAAE1F*)il2cpp_codegen_object_new(XsltException_t068DA14245E560F1D8DD1C0EF96303DE84BAAE1F_il2cpp_TypeInfo_var); NullCheck(L_3); XsltException__ctor_mB50154E8D32C1CFFCF6D2CFC6E74C1DE78CCBEA7(L_3, L_0, L_1, (String_t*)NULL, 0, 0, L_2, NULL); return L_3; } } // System.Void System.Xml.Xsl.XsltException::.ctor(System.String,System.String[],System.String,System.Int32,System.Int32,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsltException__ctor_mB50154E8D32C1CFFCF6D2CFC6E74C1DE78CCBEA7 (XsltException_t068DA14245E560F1D8DD1C0EF96303DE84BAAE1F* __this, String_t* ___0_res, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___1_args, String_t* ___2_sourceUri, int32_t ___3_lineNumber, int32_t ___4_linePosition, Exception_t* ___5_inner, const RuntimeMethod* method) { { String_t* L_0 = ___0_res; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_1 = ___1_args; String_t* L_2 = ___2_sourceUri; int32_t L_3 = ___3_lineNumber; int32_t L_4 = ___4_linePosition; String_t* L_5; L_5 = XsltException_CreateMessage_m6761F40B0492F757CD4D4279B58EF768C2C689F5(L_0, L_1, L_2, L_3, L_4, NULL); Exception_t* L_6 = ___5_inner; SystemException__ctor_m0FC84CACD2A5D66222998AA601A5C41CEC36A611(__this, L_5, L_6, NULL); Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2146231998), NULL); String_t* L_7 = ___0_res; __this->___res_18 = L_7; Il2CppCodeGenWriteBarrier((void**)(&__this->___res_18), (void*)L_7); String_t* L_8 = ___2_sourceUri; __this->___sourceUri_20 = L_8; Il2CppCodeGenWriteBarrier((void**)(&__this->___sourceUri_20), (void*)L_8); int32_t L_9 = ___3_lineNumber; __this->___lineNumber_21 = L_9; int32_t L_10 = ___4_linePosition; __this->___linePosition_22 = L_10; return; } } // System.String System.Xml.Xsl.XsltException::get_Message() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XsltException_get_Message_m35B1111F83C79A3ABD61C176A6870B82411AA4B6 (XsltException_t068DA14245E560F1D8DD1C0EF96303DE84BAAE1F* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___message_23; if (!L_0) { goto IL_000f; } } { String_t* L_1 = __this->___message_23; return L_1; } IL_000f: { String_t* L_2; L_2 = Exception_get_Message_mCFE0D38FDF9001405299AAE43BBE2A9AD806C441(__this, NULL); return L_2; } } // System.String System.Xml.Xsl.XsltException::CreateMessage(System.String,System.String[],System.String,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XsltException_CreateMessage_m6761F40B0492F757CD4D4279B58EF768C2C689F5 (String_t* ___0_res, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___1_args, String_t* ___2_sourceUri, int32_t ___3_lineNumber, int32_t ___4_linePosition, 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*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral84F87BA2EB96A02555C340863103658061C99B72); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9560C3E0F8C2682733A59BD1323058EAEE27D746); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; String_t* V_1 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; try {// begin try (depth: 1) { String_t* L_0 = ___0_res; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_1 = ___1_args; String_t* L_2; L_2 = XsltException_FormatMessage_mDFA6759732F10AD5DC02FE4012E89A6F2F5BB6AE(L_0, L_1, NULL); V_0 = L_2; String_t* L_3 = ___0_res; bool L_4; L_4 = String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6(L_3, _stringLiteral84F87BA2EB96A02555C340863103658061C99B72, NULL); if (!L_4) { goto IL_0056_1; } } { int32_t L_5 = ___3_lineNumber; if (!L_5) { goto IL_0056_1; } } { String_t* L_6 = V_0; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_7 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)3); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_8 = L_7; String_t* L_9 = ___2_sourceUri; NullCheck(L_8); ArrayElementTypeCheck (L_8, L_9); (L_8)->SetAt(static_cast(0), (String_t*)L_9); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_10 = L_8; il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var); CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_11; L_11 = CultureInfo_get_InvariantCulture_mD1E96DC845E34B10F78CB744B0CB5D7D63CEB1E6(NULL); String_t* L_12; L_12 = Int32_ToString_m3B2730D9F5B0C1C57DCCC8B8DCFB8E5EC4E8979B((&___3_lineNumber), L_11, NULL); NullCheck(L_10); ArrayElementTypeCheck (L_10, L_12); (L_10)->SetAt(static_cast(1), (String_t*)L_12); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_13 = L_10; CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_14; L_14 = CultureInfo_get_InvariantCulture_mD1E96DC845E34B10F78CB744B0CB5D7D63CEB1E6(NULL); String_t* L_15; L_15 = Int32_ToString_m3B2730D9F5B0C1C57DCCC8B8DCFB8E5EC4E8979B((&___4_linePosition), L_14, NULL); NullCheck(L_13); ArrayElementTypeCheck (L_13, L_15); (L_13)->SetAt(static_cast(2), (String_t*)L_15); String_t* L_16; L_16 = XsltException_FormatMessage_mDFA6759732F10AD5DC02FE4012E89A6F2F5BB6AE(_stringLiteral9560C3E0F8C2682733A59BD1323058EAEE27D746, L_13, NULL); String_t* L_17; L_17 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(L_6, _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745, L_16, NULL); V_0 = L_17; } IL_0056_1: { String_t* L_18 = V_0; V_1 = L_18; goto IL_006e; } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&MissingManifestResourceException_t136A089345909ADB6333D6F4E2AA84C7A00CB3FD_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_005a; } throw e; } CATCH_005a: {// begin catch(System.Resources.MissingManifestResourceException) String_t* L_19 = ___0_res; String_t* L_20; L_20 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral16C0D1A98D99C5FB32B981C3E41FDB407A083C18)), L_19, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D)), NULL); V_1 = L_20; IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_006e; }// end catch (depth: 1) IL_006e: { String_t* L_21 = V_1; return L_21; } } // System.String System.Xml.Xsl.XsltException::FormatMessage(System.String,System.String[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XsltException_FormatMessage_mDFA6759732F10AD5DC02FE4012E89A6F2F5BB6AE (String_t* ___0_key, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___1_args, 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* V_0 = NULL; ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_1 = NULL; { String_t* L_0 = ___0_key; String_t* L_1; L_1 = Res_GetString_mC3BCC903185C00797859D2B15C008DEAA715FC11(L_0, NULL); V_0 = L_1; String_t* L_2 = V_0; if (!L_2) { goto IL_001c; } } { StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_3 = ___1_args; if (!L_3) { goto IL_001c; } } { il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var); CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_4; L_4 = CultureInfo_get_InvariantCulture_mD1E96DC845E34B10F78CB744B0CB5D7D63CEB1E6(NULL); String_t* L_5 = V_0; StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_6 = ___1_args; V_1 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)L_6; ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_7 = V_1; String_t* L_8; L_8 = String_Format_m447B585713E5EB3EBF5D9D0710706D01E8A56D75(L_4, L_5, L_7, NULL); V_0 = L_8; } IL_001c: { 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.Xml.Xsl.XsltCompileException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsltCompileException__ctor_mF107F4F6320CDF58D786282B118CB91C69A4F570 (XsltCompileException_t0F23DFF01AB6DCE2EE02944886720D42A427CFC0* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) { { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___0_info; StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___1_context; XsltException__ctor_mD8928C4BCD9AF8020D359E01C81C7B47FF16645B(__this, L_0, L_1, NULL); return; } } // System.Void System.Xml.Xsl.XsltCompileException::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsltCompileException_GetObjectData_mE1CBA50980BF56956E801BFA69106C1C00E7C5B5 (XsltCompileException_t0F23DFF01AB6DCE2EE02944886720D42A427CFC0* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) { { SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___0_info; StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___1_context; XsltException_GetObjectData_mA93A1F279D08A0027549FF5AE767A5C0E1788D76(__this, L_0, L_1, NULL); return; } } // System.Void System.Xml.Xsl.XsltCompileException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsltCompileException__ctor_m953290EDA08A1061599F8EF20BF9C242A2A681EC (XsltCompileException_t0F23DFF01AB6DCE2EE02944886720D42A427CFC0* __this, const RuntimeMethod* method) { { XsltException__ctor_m4F440236D1276C2A5C434BF3EB76AD45DCB16CE7(__this, NULL); return; } } // System.Void System.Xml.Xsl.XsltCompileException::.ctor(System.Exception,System.String,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsltCompileException__ctor_m538ED162CC3840AFE2812F9AC2C639BD5E1D8F2C (XsltCompileException_t0F23DFF01AB6DCE2EE02944886720D42A427CFC0* __this, Exception_t* ___0_inner, String_t* ___1_sourceUri, int32_t ___2_lineNumber, int32_t ___3_linePosition, 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*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral84F87BA2EB96A02555C340863103658061C99B72); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAB5C19F5E55B9C93F0D98A55405850A3A9761D28); s_Il2CppMethodInitialized = true; } XsltCompileException_t0F23DFF01AB6DCE2EE02944886720D42A427CFC0* G_B2_0 = NULL; XsltCompileException_t0F23DFF01AB6DCE2EE02944886720D42A427CFC0* G_B1_0 = NULL; String_t* G_B3_0 = NULL; XsltCompileException_t0F23DFF01AB6DCE2EE02944886720D42A427CFC0* G_B3_1 = NULL; { int32_t L_0 = ___2_lineNumber; G_B1_0 = __this; if (L_0) { G_B2_0 = __this; goto IL_000b; } } { G_B3_0 = _stringLiteralAB5C19F5E55B9C93F0D98A55405850A3A9761D28; G_B3_1 = G_B1_0; goto IL_0010; } IL_000b: { G_B3_0 = _stringLiteral84F87BA2EB96A02555C340863103658061C99B72; G_B3_1 = G_B2_0; } IL_0010: { StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_1 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)3); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_2 = L_1; String_t* L_3 = ___1_sourceUri; NullCheck(L_2); ArrayElementTypeCheck (L_2, L_3); (L_2)->SetAt(static_cast(0), (String_t*)L_3); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_4 = L_2; il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var); CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_5; L_5 = CultureInfo_get_InvariantCulture_mD1E96DC845E34B10F78CB744B0CB5D7D63CEB1E6(NULL); String_t* L_6; L_6 = Int32_ToString_m3B2730D9F5B0C1C57DCCC8B8DCFB8E5EC4E8979B((&___2_lineNumber), L_5, NULL); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_6); (L_4)->SetAt(static_cast(1), (String_t*)L_6); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_7 = L_4; CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_8; L_8 = CultureInfo_get_InvariantCulture_mD1E96DC845E34B10F78CB744B0CB5D7D63CEB1E6(NULL); String_t* L_9; L_9 = Int32_ToString_m3B2730D9F5B0C1C57DCCC8B8DCFB8E5EC4E8979B((&___3_linePosition), L_8, NULL); NullCheck(L_7); ArrayElementTypeCheck (L_7, L_9); (L_7)->SetAt(static_cast(2), (String_t*)L_9); String_t* L_10 = ___1_sourceUri; int32_t L_11 = ___2_lineNumber; int32_t L_12 = ___3_linePosition; Exception_t* L_13 = ___0_inner; XsltException__ctor_mB50154E8D32C1CFFCF6D2CFC6E74C1DE78CCBEA7(G_B3_1, G_B3_0, L_7, L_10, L_11, L_12, L_13, 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.Xml.Xsl.XsltSettings::.ctor(System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XsltSettings__ctor_m74EDE5AC95C0092830FC2EBFB7405C784FB3B22B (XsltSettings_tA9657F26E369F2962E205F2EB1CFE7345AFE0AF8* __this, bool ___0_enableDocumentFunction, bool ___1_enableScript, const RuntimeMethod* method) { { __this->___warningLevel_2 = (-1); Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); bool L_0 = ___0_enableDocumentFunction; __this->___enableDocumentFunction_0 = L_0; bool L_1 = ___1_enableScript; __this->___enableScript_1 = L_1; return; } } // System.Xml.Xsl.XsltSettings System.Xml.Xsl.XsltSettings::get_Default() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XsltSettings_tA9657F26E369F2962E205F2EB1CFE7345AFE0AF8* XsltSettings_get_Default_m1AC7216FF06B4FDD66AB83883B5724366E7FAF92 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XsltSettings_tA9657F26E369F2962E205F2EB1CFE7345AFE0AF8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XsltSettings_tA9657F26E369F2962E205F2EB1CFE7345AFE0AF8* L_0 = (XsltSettings_tA9657F26E369F2962E205F2EB1CFE7345AFE0AF8*)il2cpp_codegen_object_new(XsltSettings_tA9657F26E369F2962E205F2EB1CFE7345AFE0AF8_il2cpp_TypeInfo_var); NullCheck(L_0); XsltSettings__ctor_m74EDE5AC95C0092830FC2EBFB7405C784FB3B22B(L_0, (bool)0, (bool)0, NULL); return L_0; } } // System.Boolean System.Xml.Xsl.XsltSettings::get_EnableScript() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XsltSettings_get_EnableScript_m4D2A4FDA3AA730C3B7A172DC071FC43E4EC48052 (XsltSettings_tA9657F26E369F2962E205F2EB1CFE7345AFE0AF8* __this, const RuntimeMethod* method) { { bool L_0 = __this->___enableScript_1; return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Xsl.XslCompiledTransform::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XslCompiledTransform__ctor_m8BA4154FAE6F7F275212177F8CF70F35B35F1514 (XslCompiledTransform_tC8029B33AE36F66B77D1C1D1CB261EE0DA130AA9* __this, const RuntimeMethod* method) { { XslCompiledTransform__ctor_mF2019F0BF28A78F2BD396C0563F3CA1D229340C7(__this, (bool)0, NULL); return; } } // System.Void System.Xml.Xsl.XslCompiledTransform::.ctor(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XslCompiledTransform__ctor_mF2019F0BF28A78F2BD396C0563F3CA1D229340C7 (XslCompiledTransform_tC8029B33AE36F66B77D1C1D1CB261EE0DA130AA9* __this, bool ___0_enableDebug, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NoOperationDebugger_t40687C8E2388D9450605E42A54D1793422EEDC9E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XslTransform_t32C87F5469FF9F15D11EAA03EE708AF205AE4BE0_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_0 = (XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674*)il2cpp_codegen_object_new(XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674_il2cpp_TypeInfo_var); NullCheck(L_0); XmlWriterSettings__ctor_mD453709B5F0BA2D3E082FD52A309838171DF207C(L_0, NULL); __this->___output_settings_2 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___output_settings_2), (void*)L_0); XslTransform_t32C87F5469FF9F15D11EAA03EE708AF205AE4BE0* L_1 = (XslTransform_t32C87F5469FF9F15D11EAA03EE708AF205AE4BE0*)il2cpp_codegen_object_new(XslTransform_t32C87F5469FF9F15D11EAA03EE708AF205AE4BE0_il2cpp_TypeInfo_var); NullCheck(L_1); XslTransform__ctor_m850C1001C91A0B97129CCDF94A2EB332ED8A9035(L_1, NULL); __this->___impl_3 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___impl_3), (void*)L_1); Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL); bool L_2 = ___0_enableDebug; __this->___enable_debug_0 = L_2; bool L_3 = __this->___enable_debug_0; if (!L_3) { goto IL_0036; } } { NoOperationDebugger_t40687C8E2388D9450605E42A54D1793422EEDC9E* L_4 = (NoOperationDebugger_t40687C8E2388D9450605E42A54D1793422EEDC9E*)il2cpp_codegen_object_new(NoOperationDebugger_t40687C8E2388D9450605E42A54D1793422EEDC9E_il2cpp_TypeInfo_var); NullCheck(L_4); NoOperationDebugger__ctor_m3EFBC1515D7D0880D30E08AE174032B3325F6D90(L_4, NULL); __this->___debugger_1 = L_4; Il2CppCodeGenWriteBarrier((void**)(&__this->___debugger_1), (void*)L_4); } IL_0036: { XmlWriterSettings_t4C33BC8989A2AF592E88EAE69930915E6D960674* L_5 = __this->___output_settings_2; NullCheck(L_5); XmlWriterSettings_set_ConformanceLevel_m926D2A6BCDE9EBA5FB82B952692A51AC54E6A9A6(L_5, 1, NULL); return; } } // System.Void System.Xml.Xsl.XslCompiledTransform::Transform(System.Xml.XPath.IXPathNavigable,System.Xml.Xsl.XsltArgumentList,System.Xml.XmlWriter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XslCompiledTransform_Transform_m7B94B4C727D328D7014580ACEE5B7CEC4DFACD28 (XslCompiledTransform_tC8029B33AE36F66B77D1C1D1CB261EE0DA130AA9* __this, RuntimeObject* ___0_input, XsltArgumentList_tCB3312D17FD0D83C20E32BB7CE76B8A280A209BF* ___1_arguments, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___2_results, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IXPathNavigable_t7BF6ADB512E5C0F5D286F6EE65D1C0ED525098EA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ___0_input; NullCheck(L_0); XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* L_1; L_1 = InterfaceFuncInvoker0< XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* >::Invoke(0 /* System.Xml.XPath.XPathNavigator System.Xml.XPath.IXPathNavigable::CreateNavigator() */, IXPathNavigable_t7BF6ADB512E5C0F5D286F6EE65D1C0ED525098EA_il2cpp_TypeInfo_var, L_0); XsltArgumentList_tCB3312D17FD0D83C20E32BB7CE76B8A280A209BF* L_2 = ___1_arguments; XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_3 = ___2_results; XslCompiledTransform_Transform_mDA68F385D646316C2F1C74DD245428CF3F8D7FA6(__this, L_1, L_2, L_3, (XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF*)NULL, NULL); return; } } // System.Void System.Xml.Xsl.XslCompiledTransform::Transform(System.Xml.XPath.XPathNavigator,System.Xml.Xsl.XsltArgumentList,System.Xml.XmlWriter,System.Xml.XmlResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XslCompiledTransform_Transform_mDA68F385D646316C2F1C74DD245428CF3F8D7FA6 (XslCompiledTransform_tC8029B33AE36F66B77D1C1D1CB261EE0DA130AA9* __this, XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* ___0_input, XsltArgumentList_tCB3312D17FD0D83C20E32BB7CE76B8A280A209BF* ___1_args, XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* ___2_output, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___3_resolver, const RuntimeMethod* method) { { XslTransform_t32C87F5469FF9F15D11EAA03EE708AF205AE4BE0* L_0 = __this->___impl_3; XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* L_1 = ___0_input; XsltArgumentList_tCB3312D17FD0D83C20E32BB7CE76B8A280A209BF* L_2 = ___1_args; XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_3 = ___2_output; XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_4 = ___3_resolver; NullCheck(L_0); XslTransform_Transform_m422442E485673BBE018CF29DF718F434F54B7A20(L_0, L_1, L_2, L_3, L_4, NULL); return; } } // System.Xml.XmlReader System.Xml.Xsl.XslCompiledTransform::GetXmlReader(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* XslCompiledTransform_GetXmlReader_m26BA6D62E23D706C4BDE3BA7351DE9E88E22BCAD (XslCompiledTransform_tC8029B33AE36F66B77D1C1D1CB261EE0DA130AA9* __this, String_t* ___0_url, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlValidatingReader_tC22B0C99C972133DC954BB9906B62835330FB3F9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* V_0 = NULL; Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* V_1 = NULL; Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* V_2 = NULL; { XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E* L_0 = (XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E*)il2cpp_codegen_object_new(XmlUrlResolver_tD1DCA07B66A58F98930187AF17C9B31258C1008E_il2cpp_TypeInfo_var); NullCheck(L_0); XmlUrlResolver__ctor_m2BF23C41038D2825C0854A4C01DCE078E171A7BB(L_0, NULL); V_0 = L_0; XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_1 = V_0; String_t* L_2 = ___0_url; NullCheck(L_1); Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_3; L_3 = VirtualFuncInvoker2< Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*, String_t* >::Invoke(5 /* System.Uri System.Xml.XmlResolver::ResolveUri(System.Uri,System.String) */, L_1, (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL, L_2); V_1 = L_3; XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_4 = V_0; Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_5 = V_1; RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_6 = { reinterpret_cast (Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_0_0_0_var) }; il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var); Type_t* L_7; L_7 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_6, NULL); NullCheck(L_4); RuntimeObject* L_8; L_8 = VirtualFuncInvoker3< RuntimeObject*, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*, String_t*, Type_t* >::Invoke(4 /* System.Object System.Xml.XmlResolver::GetEntity(System.Uri,System.String,System.Type) */, L_4, L_5, (String_t*)NULL, L_7); V_2 = ((Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE*)IsInstClass((RuntimeObject*)L_8, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_il2cpp_TypeInfo_var)); Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_9 = V_1; NullCheck(L_9); String_t* L_10; L_10 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_9); Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_11 = V_2; XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* L_12 = (XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B*)il2cpp_codegen_object_new(XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B_il2cpp_TypeInfo_var); NullCheck(L_12); XmlTextReader__ctor_m84B76A629FF60D1C5B5356ECAC4A2B2640281AE0(L_12, L_10, L_11, NULL); XmlTextReader_tC907887DA34B51126640DA590B4C9358DF45738B* L_13 = L_12; XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_14 = V_0; NullCheck(L_13); XmlTextReader_set_XmlResolver_mF617E3EC08480FE4693FF9A473BB9528126FCCDA(L_13, L_14, NULL); XmlValidatingReader_tC22B0C99C972133DC954BB9906B62835330FB3F9* L_15 = (XmlValidatingReader_tC22B0C99C972133DC954BB9906B62835330FB3F9*)il2cpp_codegen_object_new(XmlValidatingReader_tC22B0C99C972133DC954BB9906B62835330FB3F9_il2cpp_TypeInfo_var); NullCheck(L_15); XmlValidatingReader__ctor_m34645395E4D284B8470ECD69A0E65EDD1A733E67(L_15, L_13, NULL); XmlValidatingReader_tC22B0C99C972133DC954BB9906B62835330FB3F9* L_16 = L_15; XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_17 = V_0; NullCheck(L_16); XmlValidatingReader_set_XmlResolver_m2BB30D0674E902CA2CFB0E4CC40DAAA6839AF100(L_16, L_17, NULL); XmlValidatingReader_tC22B0C99C972133DC954BB9906B62835330FB3F9* L_18 = L_16; NullCheck(L_18); XmlValidatingReader_set_ValidationType_m298E7338CDFA6EE0531F51E6F4AF57EFC557F1E0(L_18, 0, NULL); return L_18; } } // System.Void System.Xml.Xsl.XslCompiledTransform::Load(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XslCompiledTransform_Load_m258663AE06BE71EE4BCDED2A7788BEC8717F83E4 (XslCompiledTransform_tC8029B33AE36F66B77D1C1D1CB261EE0DA130AA9* __this, String_t* ___0_stylesheetUri, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* V_0 = NULL; { String_t* L_0 = ___0_stylesheetUri; XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_1; L_1 = XslCompiledTransform_GetXmlReader_m26BA6D62E23D706C4BDE3BA7351DE9E88E22BCAD(__this, L_0, NULL); V_0 = L_1; } { auto __finallyBlock = il2cpp::utils::Finally([&] { FINALLY_0011: {// begin finally (depth: 1) { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_2 = V_0; if (!L_2) { goto IL_001a; } } { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_3 = V_0; NullCheck(L_3); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_3); } IL_001a: { return; } }// end finally (depth: 1) }); try {// begin try (depth: 1) XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_4 = V_0; XslCompiledTransform_Load_mA4ADA8A04740A367D6D1C4D33F2D70673AD67C93(__this, L_4, NULL); goto IL_001b; }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __finallyBlock.StoreException(e.ex); } } IL_001b: { return; } } // System.Void System.Xml.Xsl.XslCompiledTransform::Load(System.Xml.XmlReader) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XslCompiledTransform_Load_mA4ADA8A04740A367D6D1C4D33F2D70673AD67C93 (XslCompiledTransform_tC8029B33AE36F66B77D1C1D1CB261EE0DA130AA9* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___0_stylesheet, const RuntimeMethod* method) { { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = ___0_stylesheet; XsltSettings_tA9657F26E369F2962E205F2EB1CFE7345AFE0AF8* L_1; L_1 = XsltSettings_get_Default_m1AC7216FF06B4FDD66AB83883B5724366E7FAF92(NULL); XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_2; L_2 = XsltConfigSection_CreateDefaultResolver_m773D2DD5A10763470D44412F82C99F50BB4218A0(NULL); XslCompiledTransform_Load_mDFCBDC71A4F7BD6E5E8BE8292B28EC423D3443D9(__this, L_0, L_1, L_2, NULL); return; } } // System.Void System.Xml.Xsl.XslCompiledTransform::Load(System.Xml.XPath.IXPathNavigable,System.Xml.Xsl.XsltSettings,System.Xml.XmlResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XslCompiledTransform_Load_mF5EEA8966930B740C537F2059C0F742C7157D5C6 (XslCompiledTransform_tC8029B33AE36F66B77D1C1D1CB261EE0DA130AA9* __this, RuntimeObject* ___0_stylesheet, XsltSettings_tA9657F26E369F2962E205F2EB1CFE7345AFE0AF8* ___1_settings, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___2_stylesheetResolver, const RuntimeMethod* method) { { XsltSettings_tA9657F26E369F2962E205F2EB1CFE7345AFE0AF8* L_0 = ___1_settings; NullCheck(L_0); bool L_1; L_1 = XsltSettings_get_EnableScript_m4D2A4FDA3AA730C3B7A172DC071FC43E4EC48052_inline(L_0, NULL); if (!L_1) { goto IL_0013; } } { NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_2 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var))); NullCheck(L_2); NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6E7FC0886A022D8909FC0B61D02527E1D5AEB0C3)), NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XslCompiledTransform_Load_mF5EEA8966930B740C537F2059C0F742C7157D5C6_RuntimeMethod_var))); } IL_0013: { XslTransform_t32C87F5469FF9F15D11EAA03EE708AF205AE4BE0* L_3 = __this->___impl_3; RuntimeObject* L_4 = ___0_stylesheet; XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_5 = ___2_stylesheetResolver; NullCheck(L_3); XslTransform_Load_m9185E617122331192CA04784A20296E75C182C8F(L_3, L_4, L_5, NULL); return; } } // System.Void System.Xml.Xsl.XslCompiledTransform::Load(System.Xml.XmlReader,System.Xml.Xsl.XsltSettings,System.Xml.XmlResolver) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XslCompiledTransform_Load_mDFCBDC71A4F7BD6E5E8BE8292B28EC423D3443D9 (XslCompiledTransform_tC8029B33AE36F66B77D1C1D1CB261EE0DA130AA9* __this, XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* ___0_stylesheet, XsltSettings_tA9657F26E369F2962E205F2EB1CFE7345AFE0AF8* ___1_settings, XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* ___2_stylesheetResolver, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XPathDocument_tE736154E9BF3ACCEB884DD1EFBADB58BD56DF5EE_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = ___0_stylesheet; XPathDocument_tE736154E9BF3ACCEB884DD1EFBADB58BD56DF5EE* L_1 = (XPathDocument_tE736154E9BF3ACCEB884DD1EFBADB58BD56DF5EE*)il2cpp_codegen_object_new(XPathDocument_tE736154E9BF3ACCEB884DD1EFBADB58BD56DF5EE_il2cpp_TypeInfo_var); NullCheck(L_1); XPathDocument__ctor_mC70CBBCF189D168032C03EFDCF6643B55AF37F9A(L_1, L_0, 2, NULL); XsltSettings_tA9657F26E369F2962E205F2EB1CFE7345AFE0AF8* L_2 = ___1_settings; XmlResolver_tE25A33DFCB87A939D11BC8543970F6857AEC3DCF* L_3 = ___2_stylesheetResolver; XslCompiledTransform_Load_mF5EEA8966930B740C537F2059C0F742C7157D5C6(__this, L_1, L_2, L_3, 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.Xml.Xsl.NoOperationDebugger::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NoOperationDebugger__ctor_m3EFBC1515D7D0880D30E08AE174032B3325F6D90 (NoOperationDebugger_t40687C8E2388D9450605E42A54D1793422EEDC9E* __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.Xml.Xsl.XsltOld.Action::ReplaceNamespaceAlias(System.Xml.Xsl.XsltOld.Compiler) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_ReplaceNamespaceAlias_mCD29EBF39229165B449E7D0220FA39CD5B9C76FC (Action_tEDC91260C2F42125F4520C9EA2C57E7BFF7A8F14* __this, Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* ___0_compiler, const RuntimeMethod* method) { { return; } } // System.Void System.Xml.Xsl.XsltOld.Action::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action__ctor_m72A36A586A7C6DA8A7ED52EFABCDE390F9CD5FE2 (Action_tEDC91260C2F42125F4520C9EA2C57E7BFF7A8F14* __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.Xml.Xsl.XsltOld.PrefixQName System.Xml.Xsl.XsltOld.ActionFrame::get_CalulatedName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95* ActionFrame_get_CalulatedName_mED295E10C089643BF4861C7A633DB0349919429A (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, const RuntimeMethod* method) { { PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95* L_0 = __this->___calulatedName_9; return L_0; } } // System.Void System.Xml.Xsl.XsltOld.ActionFrame::set_CalulatedName(System.Xml.Xsl.XsltOld.PrefixQName) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionFrame_set_CalulatedName_m2B99ED2D21B50B1ADB0760CBCF1DB3AF05093D03 (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95* ___0_value, const RuntimeMethod* method) { { PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95* L_0 = ___0_value; __this->___calulatedName_9 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___calulatedName_9), (void*)L_0); return; } } // System.String System.Xml.Xsl.XsltOld.ActionFrame::get_StoredOutput() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ActionFrame_get_StoredOutput_m449929A33561AAAFBDA57F1EBA4BFCEA67A67A1C (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___storedOutput_10; return L_0; } } // System.Void System.Xml.Xsl.XsltOld.ActionFrame::set_StoredOutput(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionFrame_set_StoredOutput_mA58E9D9FC68ABFAFEC52D18B6219724BF199A1C5 (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, String_t* ___0_value, const RuntimeMethod* method) { { String_t* L_0 = ___0_value; __this->___storedOutput_10 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___storedOutput_10), (void*)L_0); return; } } // System.Int32 System.Xml.Xsl.XsltOld.ActionFrame::get_State() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ActionFrame_get_State_m6C7068E9000AA86183FA799E3F92521FE6E76E7C (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___state_0; return L_0; } } // System.Void System.Xml.Xsl.XsltOld.ActionFrame::set_State(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionFrame_set_State_m663CEB8FCA17DF07B008588F536CAC43C08583D5 (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, int32_t ___0_value, const RuntimeMethod* method) { { int32_t L_0 = ___0_value; __this->___state_0 = L_0; return; } } // System.Int32 System.Xml.Xsl.XsltOld.ActionFrame::get_Counter() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ActionFrame_get_Counter_m035F6D36B973ABADABE4D5FB649ECA65EF85C4F5 (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___counter_1; return L_0; } } // System.Void System.Xml.Xsl.XsltOld.ActionFrame::set_Counter(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionFrame_set_Counter_m038095D36A9235E1883347FA12577AF6CE6F8D8C (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, int32_t ___0_value, const RuntimeMethod* method) { { int32_t L_0 = ___0_value; __this->___counter_1 = L_0; return; } } // System.Xml.XPath.XPathNavigator System.Xml.Xsl.XsltOld.ActionFrame::get_Node() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* ActionFrame_get_Node_m172274CE6AF3457979E81A9726AC0CBAF8F60F2B (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, const RuntimeMethod* method) { { XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* L_0 = __this->___nodeSet_7; if (!L_0) { goto IL_0014; } } { XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* L_1 = __this->___nodeSet_7; NullCheck(L_1); XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* L_2; L_2 = VirtualFuncInvoker0< XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* >::Invoke(8 /* System.Xml.XPath.XPathNavigator System.Xml.XPath.XPathNodeIterator::get_Current() */, L_1); return L_2; } IL_0014: { return (XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13*)NULL; } } // System.Xml.XPath.XPathNodeIterator System.Xml.Xsl.XsltOld.ActionFrame::get_NodeSet() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* ActionFrame_get_NodeSet_mCEA23754D948C80341C63E6DCD6B28A7C1DD8FBA (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, const RuntimeMethod* method) { { XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* L_0 = __this->___nodeSet_7; return L_0; } } // System.Xml.XPath.XPathNodeIterator System.Xml.Xsl.XsltOld.ActionFrame::get_NewNodeSet() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* ActionFrame_get_NewNodeSet_m64499B616519A81E2895E932777D4542D6645ED1 (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, const RuntimeMethod* method) { { XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* L_0 = __this->___newNodeSet_8; return L_0; } } // System.Int32 System.Xml.Xsl.XsltOld.ActionFrame::IncrementCounter() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ActionFrame_IncrementCounter_m2FEF478B3C0A90462F6BC41067E5151976BED363 (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = __this->___counter_1; V_0 = ((int32_t)il2cpp_codegen_add(L_0, 1)); int32_t L_1 = V_0; __this->___counter_1 = L_1; int32_t L_2 = V_0; return L_2; } } // System.Void System.Xml.Xsl.XsltOld.ActionFrame::AllocateVariables(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionFrame_AllocateVariables_mB784A76B7567D00A0CA6D84E38D5C3015C5E8394 (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, int32_t ___0_count, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___0_count; if ((((int32_t)0) >= ((int32_t)L_0))) { goto IL_0011; } } { int32_t L_1 = ___0_count; ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)L_1); __this->___variables_2 = L_2; Il2CppCodeGenWriteBarrier((void**)(&__this->___variables_2), (void*)L_2); return; } IL_0011: { __this->___variables_2 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL; Il2CppCodeGenWriteBarrier((void**)(&__this->___variables_2), (void*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL); return; } } // System.Object System.Xml.Xsl.XsltOld.ActionFrame::GetVariable(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ActionFrame_GetVariable_mEABF4B3642EA170DD7439C80E771ED39AABDB943 (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, int32_t ___0_index, const RuntimeMethod* method) { { ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = __this->___variables_2; int32_t L_1 = ___0_index; NullCheck(L_0); int32_t L_2 = L_1; RuntimeObject* L_3 = (L_0)->GetAt(static_cast(L_2)); return L_3; } } // System.Void System.Xml.Xsl.XsltOld.ActionFrame::SetVariable(System.Int32,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionFrame_SetVariable_mA29628511D966C88414DADFD8CAACC266CE7B47F (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, int32_t ___0_index, RuntimeObject* ___1_value, const RuntimeMethod* method) { { ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = __this->___variables_2; int32_t L_1 = ___0_index; RuntimeObject* L_2 = ___1_value; NullCheck(L_0); ArrayElementTypeCheck (L_0, L_2); (L_0)->SetAt(static_cast(L_1), (RuntimeObject*)L_2); return; } } // System.Void System.Xml.Xsl.XsltOld.ActionFrame::SetParameter(System.Xml.XmlQualifiedName,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionFrame_SetParameter_mFB29AAC2E36D779B8AB3F9921CA632E44A3B42C7 (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___0_name, RuntimeObject* ___1_value, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->___withParams_3; if (L_0) { goto IL_0013; } } { Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_1 = (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D*)il2cpp_codegen_object_new(Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var); NullCheck(L_1); Hashtable__ctor_mD7E2F1EB1BFD683186ECD6EDBE1708AF35C3A87D(L_1, NULL); __this->___withParams_3 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___withParams_3), (void*)L_1); } IL_0013: { Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_2 = __this->___withParams_3; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_3 = ___0_name; RuntimeObject* L_4 = ___1_value; NullCheck(L_2); VirtualActionInvoker2< RuntimeObject*, RuntimeObject* >::Invoke(30 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_2, L_3, L_4); return; } } // System.Void System.Xml.Xsl.XsltOld.ActionFrame::ResetParams() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionFrame_ResetParams_m4070D1A15FA6B30AA0EE7C210AFD8C04ED12984A (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, const RuntimeMethod* method) { { Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->___withParams_3; if (!L_0) { goto IL_0013; } } { Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_1 = __this->___withParams_3; NullCheck(L_1); VirtualActionInvoker0::Invoke(24 /* System.Void System.Collections.Hashtable::Clear() */, L_1); } IL_0013: { return; } } // System.Object System.Xml.Xsl.XsltOld.ActionFrame::GetParameter(System.Xml.XmlQualifiedName) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ActionFrame_GetParameter_m529F3676DD2F7E7CA112D7A23C48BF998B9C55A8 (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___0_name, const RuntimeMethod* method) { { Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->___withParams_3; if (!L_0) { goto IL_0015; } } { Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_1 = __this->___withParams_3; XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_2 = ___0_name; NullCheck(L_1); RuntimeObject* L_3; L_3 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(29 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_1, L_2); return L_3; } IL_0015: { return NULL; } } // System.Void System.Xml.Xsl.XsltOld.ActionFrame::InitNodeSet(System.Xml.XPath.XPathNodeIterator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionFrame_InitNodeSet_m1F55B7FC9E62D8389941BB36147BCF5765B4A162 (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* ___0_nodeSet, const RuntimeMethod* method) { { XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* L_0 = ___0_nodeSet; __this->___nodeSet_7 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___nodeSet_7), (void*)L_0); return; } } // System.Void System.Xml.Xsl.XsltOld.ActionFrame::InitNewNodeSet(System.Xml.XPath.XPathNodeIterator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionFrame_InitNewNodeSet_m90A241AB98A562D3BF2BB72712F3BE72C65623B1 (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* ___0_nodeSet, const RuntimeMethod* method) { { XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* L_0 = ___0_nodeSet; __this->___newNodeSet_8 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___newNodeSet_8), (void*)L_0); return; } } // System.Void System.Xml.Xsl.XsltOld.ActionFrame::SortNewNodeSet(System.Xml.Xsl.XsltOld.Processor,System.Collections.ArrayList) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionFrame_SortNewNodeSet_mAC3292C9640460B37B7FEF2F9B4EF5BCEE0F04CC (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83* ___0_proc, ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ___1_sortarray, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mDD6A3DD680DC46B74AEA281B1FAEACDB9D667FA2_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Sort_m244E21579BD2CAC0145CA4C0ED2B567C303F04B4_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m7E55844F5FC0578B2033A08A213818507B11782A_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mFD18F8A7426D9609EE9DC40BA97292BCBE455F7E_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t4245B07839A68A90F431D9175D30BD836E9E63F8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SortKey_tE0F5DE6818DC859C42F339AE7E95298553919EED_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Sort_tF34CA4FAE0CA6224605904970FB0F7DD8F2C5D82_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XPathComparerHelper_t9ADF0F2ABF74B2DD147EB95DFE63769278CA8C3D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XPathSortArrayIterator_t2BA6E0F1CB15B24F861F906EB20341A35B3988A1_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XPathSortComparer_tC6A91D91913FA15EB8A345E07F8E2F1996CA34E2_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; XPathSortComparer_tC6A91D91913FA15EB8A345E07F8E2F1996CA34E2* V_1 = NULL; List_1_t4245B07839A68A90F431D9175D30BD836E9E63F8* V_2 = NULL; int32_t V_3 = 0; Sort_tF34CA4FAE0CA6224605904970FB0F7DD8F2C5D82* V_4 = NULL; Query_tA79EC81C5C56470386C2FCCF4CC81C13847DCFB6* V_5 = NULL; XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* V_6 = NULL; SortKey_tE0F5DE6818DC859C42F339AE7E95298553919EED* V_7 = NULL; int32_t V_8 = 0; { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = ___1_sortarray; NullCheck(L_0); int32_t L_1; L_1 = VirtualFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_0); V_0 = L_1; int32_t L_2 = V_0; XPathSortComparer_tC6A91D91913FA15EB8A345E07F8E2F1996CA34E2* L_3 = (XPathSortComparer_tC6A91D91913FA15EB8A345E07F8E2F1996CA34E2*)il2cpp_codegen_object_new(XPathSortComparer_tC6A91D91913FA15EB8A345E07F8E2F1996CA34E2_il2cpp_TypeInfo_var); NullCheck(L_3); XPathSortComparer__ctor_mD423AE3554F93D2E4F5F5B123AAD22FCD2EDD21E(L_3, L_2, NULL); V_1 = L_3; V_3 = 0; goto IL_005c; } IL_0012: { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_4 = ___1_sortarray; int32_t L_5 = V_3; NullCheck(L_4); RuntimeObject* L_6; L_6 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(28 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_4, L_5); V_4 = ((Sort_tF34CA4FAE0CA6224605904970FB0F7DD8F2C5D82*)CastclassClass((RuntimeObject*)L_6, Sort_tF34CA4FAE0CA6224605904970FB0F7DD8F2C5D82_il2cpp_TypeInfo_var)); Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83* L_7 = ___0_proc; Sort_tF34CA4FAE0CA6224605904970FB0F7DD8F2C5D82* L_8 = V_4; NullCheck(L_8); int32_t L_9 = L_8->___select_0; NullCheck(L_7); Query_tA79EC81C5C56470386C2FCCF4CC81C13847DCFB6* L_10; L_10 = Processor_GetCompiledQuery_m1E97635E74D78331ED70B8370C2702002FB72328(L_7, L_9, NULL); V_5 = L_10; XPathSortComparer_tC6A91D91913FA15EB8A345E07F8E2F1996CA34E2* L_11 = V_1; Query_tA79EC81C5C56470386C2FCCF4CC81C13847DCFB6* L_12 = V_5; Sort_tF34CA4FAE0CA6224605904970FB0F7DD8F2C5D82* L_13 = V_4; NullCheck(L_13); int32_t L_14 = L_13->___order_3; Sort_tF34CA4FAE0CA6224605904970FB0F7DD8F2C5D82* L_15 = V_4; NullCheck(L_15); int32_t L_16 = L_15->___caseOrder_4; Sort_tF34CA4FAE0CA6224605904970FB0F7DD8F2C5D82* L_17 = V_4; NullCheck(L_17); String_t* L_18 = L_17->___lang_1; Sort_tF34CA4FAE0CA6224605904970FB0F7DD8F2C5D82* L_19 = V_4; NullCheck(L_19); int32_t L_20 = L_19->___dataType_2; XPathComparerHelper_t9ADF0F2ABF74B2DD147EB95DFE63769278CA8C3D* L_21 = (XPathComparerHelper_t9ADF0F2ABF74B2DD147EB95DFE63769278CA8C3D*)il2cpp_codegen_object_new(XPathComparerHelper_t9ADF0F2ABF74B2DD147EB95DFE63769278CA8C3D_il2cpp_TypeInfo_var); NullCheck(L_21); XPathComparerHelper__ctor_mA4866B15D92683656004DF338C8FC8FB62DE666F(L_21, L_14, L_16, L_18, L_20, NULL); NullCheck(L_11); XPathSortComparer_AddSort_m4FD3E4D0AC2F4232B2D8C842229429826A06F4C2(L_11, L_12, L_21, NULL); int32_t L_22 = V_3; V_3 = ((int32_t)il2cpp_codegen_add(L_22, 1)); } IL_005c: { int32_t L_23 = V_3; int32_t L_24 = V_0; if ((((int32_t)L_23) < ((int32_t)L_24))) { goto IL_0012; } } { List_1_t4245B07839A68A90F431D9175D30BD836E9E63F8* L_25 = (List_1_t4245B07839A68A90F431D9175D30BD836E9E63F8*)il2cpp_codegen_object_new(List_1_t4245B07839A68A90F431D9175D30BD836E9E63F8_il2cpp_TypeInfo_var); NullCheck(L_25); List_1__ctor_m7E55844F5FC0578B2033A08A213818507B11782A(L_25, List_1__ctor_m7E55844F5FC0578B2033A08A213818507B11782A_RuntimeMethod_var); V_2 = L_25; goto IL_00d6; } IL_0068: { XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* L_26 = __this->___nodeSet_7; V_6 = L_26; XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* L_27 = __this->___newNodeSet_8; __this->___nodeSet_7 = L_27; Il2CppCodeGenWriteBarrier((void**)(&__this->___nodeSet_7), (void*)L_27); int32_t L_28 = V_0; List_1_t4245B07839A68A90F431D9175D30BD836E9E63F8* L_29 = V_2; NullCheck(L_29); int32_t L_30; L_30 = List_1_get_Count_mFD18F8A7426D9609EE9DC40BA97292BCBE455F7E_inline(L_29, List_1_get_Count_mFD18F8A7426D9609EE9DC40BA97292BCBE455F7E_RuntimeMethod_var); XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* L_31 = __this->___newNodeSet_8; NullCheck(L_31); XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* L_32; L_32 = VirtualFuncInvoker0< XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* >::Invoke(8 /* System.Xml.XPath.XPathNavigator System.Xml.XPath.XPathNodeIterator::get_Current() */, L_31); NullCheck(L_32); XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* L_33; L_33 = VirtualFuncInvoker0< XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* >::Invoke(25 /* System.Xml.XPath.XPathNavigator System.Xml.XPath.XPathNavigator::Clone() */, L_32); SortKey_tE0F5DE6818DC859C42F339AE7E95298553919EED* L_34 = (SortKey_tE0F5DE6818DC859C42F339AE7E95298553919EED*)il2cpp_codegen_object_new(SortKey_tE0F5DE6818DC859C42F339AE7E95298553919EED_il2cpp_TypeInfo_var); NullCheck(L_34); SortKey__ctor_m55EAE15C4BE4A41E4E50D9540EA53AB9F90057E6(L_34, L_28, L_30, L_33, NULL); V_7 = L_34; V_8 = 0; goto IL_00c1; } IL_009f: { SortKey_tE0F5DE6818DC859C42F339AE7E95298553919EED* L_35 = V_7; int32_t L_36 = V_8; XPathSortComparer_tC6A91D91913FA15EB8A345E07F8E2F1996CA34E2* L_37 = V_1; int32_t L_38 = V_8; NullCheck(L_37); Query_tA79EC81C5C56470386C2FCCF4CC81C13847DCFB6* L_39; L_39 = XPathSortComparer_Expression_m8ABC892343E30D9B356D90B30BB23DCAB8B31A37(L_37, L_38, NULL); XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* L_40 = __this->___newNodeSet_8; NullCheck(L_39); RuntimeObject* L_41; L_41 = VirtualFuncInvoker1< RuntimeObject*, XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* >::Invoke(14 /* System.Object MS.Internal.Xml.XPath.Query::Evaluate(System.Xml.XPath.XPathNodeIterator) */, L_39, L_40); NullCheck(L_35); SortKey_set_Item_m404CE4319ABB4C04C6A7787E9164D5BB97EF3671(L_35, L_36, L_41, NULL); int32_t L_42 = V_8; V_8 = ((int32_t)il2cpp_codegen_add(L_42, 1)); } IL_00c1: { int32_t L_43 = V_8; int32_t L_44 = V_0; if ((((int32_t)L_43) < ((int32_t)L_44))) { goto IL_009f; } } { List_1_t4245B07839A68A90F431D9175D30BD836E9E63F8* L_45 = V_2; SortKey_tE0F5DE6818DC859C42F339AE7E95298553919EED* L_46 = V_7; NullCheck(L_45); List_1_Add_mDD6A3DD680DC46B74AEA281B1FAEACDB9D667FA2_inline(L_45, L_46, List_1_Add_mDD6A3DD680DC46B74AEA281B1FAEACDB9D667FA2_RuntimeMethod_var); XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* L_47 = V_6; __this->___nodeSet_7 = L_47; Il2CppCodeGenWriteBarrier((void**)(&__this->___nodeSet_7), (void*)L_47); } IL_00d6: { Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83* L_48 = ___0_proc; bool L_49; L_49 = ActionFrame_NewNextNode_mC704C187FF5F774D9D2B98FFA7D2D279AD402186(__this, L_48, NULL); if (L_49) { goto IL_0068; } } { List_1_t4245B07839A68A90F431D9175D30BD836E9E63F8* L_50 = V_2; XPathSortComparer_tC6A91D91913FA15EB8A345E07F8E2F1996CA34E2* L_51 = V_1; NullCheck(L_50); List_1_Sort_m244E21579BD2CAC0145CA4C0ED2B567C303F04B4(L_50, L_51, List_1_Sort_m244E21579BD2CAC0145CA4C0ED2B567C303F04B4_RuntimeMethod_var); List_1_t4245B07839A68A90F431D9175D30BD836E9E63F8* L_52 = V_2; XPathSortArrayIterator_t2BA6E0F1CB15B24F861F906EB20341A35B3988A1* L_53 = (XPathSortArrayIterator_t2BA6E0F1CB15B24F861F906EB20341A35B3988A1*)il2cpp_codegen_object_new(XPathSortArrayIterator_t2BA6E0F1CB15B24F861F906EB20341A35B3988A1_il2cpp_TypeInfo_var); NullCheck(L_53); XPathSortArrayIterator__ctor_m958E4C10516C4AB5CF55296305AF190429A4A98C(L_53, L_52, NULL); __this->___newNodeSet_8 = L_53; Il2CppCodeGenWriteBarrier((void**)(&__this->___newNodeSet_8), (void*)L_53); return; } } // System.Void System.Xml.Xsl.XsltOld.ActionFrame::Finished() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionFrame_Finished_mDF172E8E38BD80DCD91901D46A92A327F8208EA5 (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, const RuntimeMethod* method) { { ActionFrame_set_State_m663CEB8FCA17DF07B008588F536CAC43C08583D5_inline(__this, (-1), NULL); return; } } // System.Void System.Xml.Xsl.XsltOld.ActionFrame::Inherit(System.Xml.Xsl.XsltOld.ActionFrame) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionFrame_Inherit_m41797AB324EADB512D5DA050ABBAD8B34D0AE8E7 (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* ___0_parent, const RuntimeMethod* method) { { ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* L_0 = ___0_parent; NullCheck(L_0); ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = L_0->___variables_2; __this->___variables_2 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___variables_2), (void*)L_1); return; } } // System.Void System.Xml.Xsl.XsltOld.ActionFrame::Init(System.Xml.Xsl.XsltOld.Action,System.Xml.Xsl.XsltOld.ActionFrame,System.Xml.XPath.XPathNodeIterator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionFrame_Init_mB91A40B9FF3140478D5E466BAC072772C7EE35A2 (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, Action_tEDC91260C2F42125F4520C9EA2C57E7BFF7A8F14* ___0_action, ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* ___1_container, XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* ___2_nodeSet, const RuntimeMethod* method) { { __this->___state_0 = 0; Action_tEDC91260C2F42125F4520C9EA2C57E7BFF7A8F14* L_0 = ___0_action; __this->___action_4 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___action_4), (void*)L_0); ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* L_1 = ___1_container; __this->___container_5 = L_1; Il2CppCodeGenWriteBarrier((void**)(&__this->___container_5), (void*)L_1); __this->___currentAction_6 = 0; XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* L_2 = ___2_nodeSet; __this->___nodeSet_7 = L_2; Il2CppCodeGenWriteBarrier((void**)(&__this->___nodeSet_7), (void*)L_2); __this->___newNodeSet_8 = (XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B*)NULL; Il2CppCodeGenWriteBarrier((void**)(&__this->___newNodeSet_8), (void*)(XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B*)NULL); return; } } // System.Void System.Xml.Xsl.XsltOld.ActionFrame::Init(System.Xml.Xsl.XsltOld.Action,System.Xml.XPath.XPathNodeIterator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionFrame_Init_m25F90C19AAB324CBB7FF4B0565821713776DCEBA (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, Action_tEDC91260C2F42125F4520C9EA2C57E7BFF7A8F14* ___0_action, XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* ___1_nodeSet, const RuntimeMethod* method) { { Action_tEDC91260C2F42125F4520C9EA2C57E7BFF7A8F14* L_0 = ___0_action; XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* L_1 = ___1_nodeSet; ActionFrame_Init_mB91A40B9FF3140478D5E466BAC072772C7EE35A2(__this, L_0, (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F*)NULL, L_1, NULL); return; } } // System.Void System.Xml.Xsl.XsltOld.ActionFrame::Init(System.Xml.Xsl.XsltOld.ActionFrame,System.Xml.XPath.XPathNodeIterator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionFrame_Init_mE2B5FC2EA7DDC5126A6B4FA68A1B2CC6D9095F44 (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* ___0_containerFrame, XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* ___1_nodeSet, const RuntimeMethod* method) { { ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* L_0 = ___0_containerFrame; NullCheck(L_0); Action_tEDC91260C2F42125F4520C9EA2C57E7BFF7A8F14* L_1; L_1 = ActionFrame_GetAction_m1F25C3348B76DA5D71F113FD2ADB303DDE7544CE(L_0, 0, NULL); ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* L_2 = ___0_containerFrame; XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* L_3 = ___1_nodeSet; ActionFrame_Init_mB91A40B9FF3140478D5E466BAC072772C7EE35A2(__this, L_1, L_2, L_3, NULL); return; } } // System.Void System.Xml.Xsl.XsltOld.ActionFrame::SetAction(System.Xml.Xsl.XsltOld.Action) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionFrame_SetAction_m6A3CC1BB08FD4BE7D67170F4E132A3B83FE0BEFC (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, Action_tEDC91260C2F42125F4520C9EA2C57E7BFF7A8F14* ___0_action, const RuntimeMethod* method) { { Action_tEDC91260C2F42125F4520C9EA2C57E7BFF7A8F14* L_0 = ___0_action; ActionFrame_SetAction_mA40C350156C181D865F0E1AD35CA8B84A7EAE9E8(__this, L_0, 0, NULL); return; } } // System.Void System.Xml.Xsl.XsltOld.ActionFrame::SetAction(System.Xml.Xsl.XsltOld.Action,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionFrame_SetAction_mA40C350156C181D865F0E1AD35CA8B84A7EAE9E8 (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, Action_tEDC91260C2F42125F4520C9EA2C57E7BFF7A8F14* ___0_action, int32_t ___1_state, const RuntimeMethod* method) { { Action_tEDC91260C2F42125F4520C9EA2C57E7BFF7A8F14* L_0 = ___0_action; __this->___action_4 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___action_4), (void*)L_0); int32_t L_1 = ___1_state; __this->___state_0 = L_1; return; } } // System.Xml.Xsl.XsltOld.Action System.Xml.Xsl.XsltOld.ActionFrame::GetAction(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Action_tEDC91260C2F42125F4520C9EA2C57E7BFF7A8F14* ActionFrame_GetAction_m1F25C3348B76DA5D71F113FD2ADB303DDE7544CE (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, int32_t ___0_actionIndex, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContainerAction_t7A45AFD9C9840A47FE328AAA30C84F47A0693CE3_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Action_tEDC91260C2F42125F4520C9EA2C57E7BFF7A8F14* L_0 = __this->___action_4; int32_t L_1 = ___0_actionIndex; NullCheck(((ContainerAction_t7A45AFD9C9840A47FE328AAA30C84F47A0693CE3*)CastclassClass((RuntimeObject*)L_0, ContainerAction_t7A45AFD9C9840A47FE328AAA30C84F47A0693CE3_il2cpp_TypeInfo_var))); Action_tEDC91260C2F42125F4520C9EA2C57E7BFF7A8F14* L_2; L_2 = ContainerAction_GetAction_m4370B604BDF51547F5951118E2F7DC560F21ACC2(((ContainerAction_t7A45AFD9C9840A47FE328AAA30C84F47A0693CE3*)CastclassClass((RuntimeObject*)L_0, ContainerAction_t7A45AFD9C9840A47FE328AAA30C84F47A0693CE3_il2cpp_TypeInfo_var)), L_1, NULL); return L_2; } } // System.Void System.Xml.Xsl.XsltOld.ActionFrame::Exit() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionFrame_Exit_mAC435C8D351074B05B284249857D0FC14213D81A (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, const RuntimeMethod* method) { { ActionFrame_Finished_mDF172E8E38BD80DCD91901D46A92A327F8208EA5(__this, NULL); __this->___container_5 = (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F*)NULL; Il2CppCodeGenWriteBarrier((void**)(&__this->___container_5), (void*)(ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F*)NULL); return; } } // System.Boolean System.Xml.Xsl.XsltOld.ActionFrame::Execute(System.Xml.Xsl.XsltOld.Processor) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ActionFrame_Execute_mFC59582C446426BEB7A86D4D5FEFA92D3003AEA8 (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83* ___0_processor, const RuntimeMethod* method) { { Action_tEDC91260C2F42125F4520C9EA2C57E7BFF7A8F14* L_0 = __this->___action_4; if (L_0) { goto IL_000a; } } { return (bool)1; } IL_000a: { Action_tEDC91260C2F42125F4520C9EA2C57E7BFF7A8F14* L_1 = __this->___action_4; Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83* L_2 = ___0_processor; NullCheck(L_1); VirtualActionInvoker2< Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83*, ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* >::Invoke(4 /* System.Void System.Xml.Xsl.XsltOld.Action::Execute(System.Xml.Xsl.XsltOld.Processor,System.Xml.Xsl.XsltOld.ActionFrame) */, L_1, L_2, __this); int32_t L_3; L_3 = ActionFrame_get_State_m6C7068E9000AA86183FA799E3F92521FE6E76E7C_inline(__this, NULL); if ((!(((uint32_t)L_3) == ((uint32_t)(-1))))) { goto IL_0067; } } { ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* L_4 = __this->___container_5; if (!L_4) { goto IL_0056; } } { int32_t L_5 = __this->___currentAction_6; __this->___currentAction_6 = ((int32_t)il2cpp_codegen_add(L_5, 1)); ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* L_6 = __this->___container_5; int32_t L_7 = __this->___currentAction_6; NullCheck(L_6); Action_tEDC91260C2F42125F4520C9EA2C57E7BFF7A8F14* L_8; L_8 = ActionFrame_GetAction_m1F25C3348B76DA5D71F113FD2ADB303DDE7544CE(L_6, L_7, NULL); __this->___action_4 = L_8; Il2CppCodeGenWriteBarrier((void**)(&__this->___action_4), (void*)L_8); ActionFrame_set_State_m663CEB8FCA17DF07B008588F536CAC43C08583D5_inline(__this, 0, NULL); goto IL_005d; } IL_0056: { __this->___action_4 = (Action_tEDC91260C2F42125F4520C9EA2C57E7BFF7A8F14*)NULL; Il2CppCodeGenWriteBarrier((void**)(&__this->___action_4), (void*)(Action_tEDC91260C2F42125F4520C9EA2C57E7BFF7A8F14*)NULL); } IL_005d: { Action_tEDC91260C2F42125F4520C9EA2C57E7BFF7A8F14* L_9 = __this->___action_4; return (bool)((((RuntimeObject*)(Action_tEDC91260C2F42125F4520C9EA2C57E7BFF7A8F14*)L_9) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0); } IL_0067: { return (bool)0; } } // System.Boolean System.Xml.Xsl.XsltOld.ActionFrame::NextNode(System.Xml.Xsl.XsltOld.Processor) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ActionFrame_NextNode_mA3C2868F42AA94648C9E93A215BB48ED25E87E27 (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83* ___0_proc, const RuntimeMethod* method) { bool V_0 = false; int32_t V_1 = 0; XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* V_2 = NULL; bool V_3 = false; int32_t G_B7_0 = 0; { XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* L_0 = __this->___nodeSet_7; NullCheck(L_0); bool L_1; L_1 = VirtualFuncInvoker0< bool >::Invoke(7 /* System.Boolean System.Xml.XPath.XPathNodeIterator::MoveNext() */, L_0); V_0 = L_1; bool L_2 = V_0; if (!L_2) { goto IL_0096; } } { Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83* L_3 = ___0_proc; NullCheck(L_3); Stylesheet_t877F8405A546EAB0A26CE0F54A7F48533686E5AB* L_4; L_4 = Processor_get_Stylesheet_m320A6D19C9D7650EAA886B1DA0049838ACC6FA28_inline(L_3, NULL); NullCheck(L_4); bool L_5; L_5 = Stylesheet_get_Whitespace_m1938629178E91807BB328BDDCCC9D57D168BCCF9_inline(L_4, NULL); if (!L_5) { goto IL_0096; } } { XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* L_6 = __this->___nodeSet_7; NullCheck(L_6); XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* L_7; L_7 = VirtualFuncInvoker0< XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* >::Invoke(8 /* System.Xml.XPath.XPathNavigator System.Xml.XPath.XPathNodeIterator::get_Current() */, L_6); NullCheck(L_7); int32_t L_8; L_8 = VirtualFuncInvoker0< int32_t >::Invoke(26 /* System.Xml.XPath.XPathNodeType System.Xml.XPath.XPathNavigator::get_NodeType() */, L_7); V_1 = L_8; int32_t L_9 = V_1; if ((!(((uint32_t)L_9) == ((uint32_t)6)))) { goto IL_0096; } } { XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* L_10 = __this->___nodeSet_7; NullCheck(L_10); XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* L_11; L_11 = VirtualFuncInvoker0< XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* >::Invoke(8 /* System.Xml.XPath.XPathNavigator System.Xml.XPath.XPathNodeIterator::get_Current() */, L_10); NullCheck(L_11); XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* L_12; L_12 = VirtualFuncInvoker0< XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* >::Invoke(25 /* System.Xml.XPath.XPathNavigator System.Xml.XPath.XPathNavigator::Clone() */, L_11); V_2 = L_12; } IL_0045: { XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* L_13 = V_2; XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* L_14 = __this->___nodeSet_7; NullCheck(L_14); XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* L_15; L_15 = VirtualFuncInvoker0< XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* >::Invoke(8 /* System.Xml.XPath.XPathNavigator System.Xml.XPath.XPathNodeIterator::get_Current() */, L_14); NullCheck(L_13); bool L_16; L_16 = VirtualFuncInvoker1< bool, XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* >::Invoke(50 /* System.Boolean System.Xml.XPath.XPathNavigator::MoveTo(System.Xml.XPath.XPathNavigator) */, L_13, L_15); XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* L_17 = V_2; NullCheck(L_17); bool L_18; L_18 = VirtualFuncInvoker0< bool >::Invoke(48 /* System.Boolean System.Xml.XPath.XPathNavigator::MoveToParent() */, L_17); Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83* L_19 = ___0_proc; NullCheck(L_19); Stylesheet_t877F8405A546EAB0A26CE0F54A7F48533686E5AB* L_20; L_20 = Processor_get_Stylesheet_m320A6D19C9D7650EAA886B1DA0049838ACC6FA28_inline(L_19, NULL); Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83* L_21 = ___0_proc; XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* L_22 = V_2; NullCheck(L_20); bool L_23; L_23 = Stylesheet_PreserveWhiteSpace_mE6C6F21B9F809CA675F847308365D0400273047F(L_20, L_21, L_22, NULL); if (L_23) { goto IL_007c; } } { XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* L_24 = __this->___nodeSet_7; NullCheck(L_24); bool L_25; L_25 = VirtualFuncInvoker0< bool >::Invoke(7 /* System.Boolean System.Xml.XPath.XPathNodeIterator::MoveNext() */, L_24); bool L_26 = L_25; V_0 = L_26; G_B7_0 = ((int32_t)(L_26)); goto IL_007d; } IL_007c: { G_B7_0 = 0; } IL_007d: { V_3 = (bool)G_B7_0; XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* L_27 = __this->___nodeSet_7; NullCheck(L_27); XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* L_28; L_28 = VirtualFuncInvoker0< XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* >::Invoke(8 /* System.Xml.XPath.XPathNavigator System.Xml.XPath.XPathNodeIterator::get_Current() */, L_27); NullCheck(L_28); int32_t L_29; L_29 = VirtualFuncInvoker0< int32_t >::Invoke(26 /* System.Xml.XPath.XPathNodeType System.Xml.XPath.XPathNavigator::get_NodeType() */, L_28); V_1 = L_29; bool L_30 = V_3; if (!L_30) { goto IL_0096; } } { int32_t L_31 = V_1; if ((((int32_t)L_31) == ((int32_t)6))) { goto IL_0045; } } IL_0096: { bool L_32 = V_0; return L_32; } } // System.Boolean System.Xml.Xsl.XsltOld.ActionFrame::NewNextNode(System.Xml.Xsl.XsltOld.Processor) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ActionFrame_NewNextNode_mC704C187FF5F774D9D2B98FFA7D2D279AD402186 (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83* ___0_proc, const RuntimeMethod* method) { bool V_0 = false; int32_t V_1 = 0; XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* V_2 = NULL; bool V_3 = false; int32_t G_B7_0 = 0; { XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* L_0 = __this->___newNodeSet_8; NullCheck(L_0); bool L_1; L_1 = VirtualFuncInvoker0< bool >::Invoke(7 /* System.Boolean System.Xml.XPath.XPathNodeIterator::MoveNext() */, L_0); V_0 = L_1; bool L_2 = V_0; if (!L_2) { goto IL_0096; } } { Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83* L_3 = ___0_proc; NullCheck(L_3); Stylesheet_t877F8405A546EAB0A26CE0F54A7F48533686E5AB* L_4; L_4 = Processor_get_Stylesheet_m320A6D19C9D7650EAA886B1DA0049838ACC6FA28_inline(L_3, NULL); NullCheck(L_4); bool L_5; L_5 = Stylesheet_get_Whitespace_m1938629178E91807BB328BDDCCC9D57D168BCCF9_inline(L_4, NULL); if (!L_5) { goto IL_0096; } } { XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* L_6 = __this->___newNodeSet_8; NullCheck(L_6); XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* L_7; L_7 = VirtualFuncInvoker0< XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* >::Invoke(8 /* System.Xml.XPath.XPathNavigator System.Xml.XPath.XPathNodeIterator::get_Current() */, L_6); NullCheck(L_7); int32_t L_8; L_8 = VirtualFuncInvoker0< int32_t >::Invoke(26 /* System.Xml.XPath.XPathNodeType System.Xml.XPath.XPathNavigator::get_NodeType() */, L_7); V_1 = L_8; int32_t L_9 = V_1; if ((!(((uint32_t)L_9) == ((uint32_t)6)))) { goto IL_0096; } } { XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* L_10 = __this->___newNodeSet_8; NullCheck(L_10); XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* L_11; L_11 = VirtualFuncInvoker0< XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* >::Invoke(8 /* System.Xml.XPath.XPathNavigator System.Xml.XPath.XPathNodeIterator::get_Current() */, L_10); NullCheck(L_11); XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* L_12; L_12 = VirtualFuncInvoker0< XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* >::Invoke(25 /* System.Xml.XPath.XPathNavigator System.Xml.XPath.XPathNavigator::Clone() */, L_11); V_2 = L_12; } IL_0045: { XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* L_13 = V_2; XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* L_14 = __this->___newNodeSet_8; NullCheck(L_14); XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* L_15; L_15 = VirtualFuncInvoker0< XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* >::Invoke(8 /* System.Xml.XPath.XPathNavigator System.Xml.XPath.XPathNodeIterator::get_Current() */, L_14); NullCheck(L_13); bool L_16; L_16 = VirtualFuncInvoker1< bool, XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* >::Invoke(50 /* System.Boolean System.Xml.XPath.XPathNavigator::MoveTo(System.Xml.XPath.XPathNavigator) */, L_13, L_15); XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* L_17 = V_2; NullCheck(L_17); bool L_18; L_18 = VirtualFuncInvoker0< bool >::Invoke(48 /* System.Boolean System.Xml.XPath.XPathNavigator::MoveToParent() */, L_17); Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83* L_19 = ___0_proc; NullCheck(L_19); Stylesheet_t877F8405A546EAB0A26CE0F54A7F48533686E5AB* L_20; L_20 = Processor_get_Stylesheet_m320A6D19C9D7650EAA886B1DA0049838ACC6FA28_inline(L_19, NULL); Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83* L_21 = ___0_proc; XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* L_22 = V_2; NullCheck(L_20); bool L_23; L_23 = Stylesheet_PreserveWhiteSpace_mE6C6F21B9F809CA675F847308365D0400273047F(L_20, L_21, L_22, NULL); if (L_23) { goto IL_007c; } } { XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* L_24 = __this->___newNodeSet_8; NullCheck(L_24); bool L_25; L_25 = VirtualFuncInvoker0< bool >::Invoke(7 /* System.Boolean System.Xml.XPath.XPathNodeIterator::MoveNext() */, L_24); bool L_26 = L_25; V_0 = L_26; G_B7_0 = ((int32_t)(L_26)); goto IL_007d; } IL_007c: { G_B7_0 = 0; } IL_007d: { V_3 = (bool)G_B7_0; XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* L_27 = __this->___newNodeSet_8; NullCheck(L_27); XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* L_28; L_28 = VirtualFuncInvoker0< XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* >::Invoke(8 /* System.Xml.XPath.XPathNavigator System.Xml.XPath.XPathNodeIterator::get_Current() */, L_27); NullCheck(L_28); int32_t L_29; L_29 = VirtualFuncInvoker0< int32_t >::Invoke(26 /* System.Xml.XPath.XPathNodeType System.Xml.XPath.XPathNavigator::get_NodeType() */, L_28); V_1 = L_29; bool L_30 = V_3; if (!L_30) { goto IL_0096; } } { int32_t L_31 = V_1; if ((((int32_t)L_31) == ((int32_t)6))) { goto IL_0045; } } IL_0096: { bool L_32 = V_0; return L_32; } } // System.Void System.Xml.Xsl.XsltOld.ActionFrame::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActionFrame__ctor_m8BC371190733ADB7B8BAA81E565D0EA7EE0525E4 (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __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.Xml.Xsl.XsltOld.ActionFrame/XPathSortArrayIterator::.ctor(System.Collections.Generic.List`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XPathSortArrayIterator__ctor_m958E4C10516C4AB5CF55296305AF190429A4A98C (XPathSortArrayIterator_t2BA6E0F1CB15B24F861F906EB20341A35B3988A1* __this, List_1_t4245B07839A68A90F431D9175D30BD836E9E63F8* ___0_list, const RuntimeMethod* method) { { List_1_t4245B07839A68A90F431D9175D30BD836E9E63F8* L_0 = ___0_list; XPathArrayIterator__ctor_m05345E27BF7C0D236CAC1BC3D03E450FBCE26FE5(__this, L_0, NULL); return; } } // System.Void System.Xml.Xsl.XsltOld.ActionFrame/XPathSortArrayIterator::.ctor(System.Xml.Xsl.XsltOld.ActionFrame/XPathSortArrayIterator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XPathSortArrayIterator__ctor_mBCF136F7B076DC837AE9CAF477A60FFEE048DC4D (XPathSortArrayIterator_t2BA6E0F1CB15B24F861F906EB20341A35B3988A1* __this, XPathSortArrayIterator_t2BA6E0F1CB15B24F861F906EB20341A35B3988A1* ___0_it, const RuntimeMethod* method) { { XPathSortArrayIterator_t2BA6E0F1CB15B24F861F906EB20341A35B3988A1* L_0 = ___0_it; XPathArrayIterator__ctor_m8780C5AD8A2E4C07D9FFE507E6F82EEB14C942F7(__this, L_0, NULL); return; } } // System.Xml.XPath.XPathNodeIterator System.Xml.Xsl.XsltOld.ActionFrame/XPathSortArrayIterator::Clone() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* XPathSortArrayIterator_Clone_m1DF329C4522E55F4C50B9A2291B54C88B9D83AB9 (XPathSortArrayIterator_t2BA6E0F1CB15B24F861F906EB20341A35B3988A1* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XPathSortArrayIterator_t2BA6E0F1CB15B24F861F906EB20341A35B3988A1_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XPathSortArrayIterator_t2BA6E0F1CB15B24F861F906EB20341A35B3988A1* L_0 = (XPathSortArrayIterator_t2BA6E0F1CB15B24F861F906EB20341A35B3988A1*)il2cpp_codegen_object_new(XPathSortArrayIterator_t2BA6E0F1CB15B24F861F906EB20341A35B3988A1_il2cpp_TypeInfo_var); NullCheck(L_0); XPathSortArrayIterator__ctor_mBCF136F7B076DC837AE9CAF477A60FFEE048DC4D(L_0, __this, NULL); return L_0; } } // System.Xml.XPath.XPathNavigator System.Xml.Xsl.XsltOld.ActionFrame/XPathSortArrayIterator::get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* XPathSortArrayIterator_get_Current_m1216CAAB63867623D81AF90A58196ED7322C8029 (XPathSortArrayIterator_t2BA6E0F1CB15B24F861F906EB20341A35B3988A1* __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SortKey_tE0F5DE6818DC859C42F339AE7E95298553919EED_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RuntimeObject* L_0 = ((XPathArrayIterator_t99C9BCCC2BA66B7E0246D8C84C6866DE8DC23979*)__this)->___list_1; int32_t L_1 = ((XPathArrayIterator_t99C9BCCC2BA66B7E0246D8C84C6866DE8DC23979*)__this)->___index_2; NullCheck(L_0); RuntimeObject* L_2; L_2 = InterfaceFuncInvoker1< RuntimeObject*, int32_t >::Invoke(0 /* System.Object System.Collections.IList::get_Item(System.Int32) */, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_0, ((int32_t)il2cpp_codegen_subtract(L_1, 1))); NullCheck(((SortKey_tE0F5DE6818DC859C42F339AE7E95298553919EED*)CastclassSealed((RuntimeObject*)L_2, SortKey_tE0F5DE6818DC859C42F339AE7E95298553919EED_il2cpp_TypeInfo_var))); XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* L_3; L_3 = SortKey_get_Node_m49F470092A325A8D83EDA0C52414CE4DD725A8CA_inline(((SortKey_tE0F5DE6818DC859C42F339AE7E95298553919EED*)CastclassSealed((RuntimeObject*)L_2, SortKey_tE0F5DE6818DC859C42F339AE7E95298553919EED_il2cpp_TypeInfo_var)), NULL); return L_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.Xml.Xsl.XsltOld.ApplyImportsAction::Compile(System.Xml.Xsl.XsltOld.Compiler) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ApplyImportsAction_Compile_m272197992E51853078075BC7677C2AF3B6FECBCA (ApplyImportsAction_tE8400005F12DD6D225C8523127634F8BABEC4684* __this, Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* ___0_compiler, const RuntimeMethod* method) { { Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* L_0 = ___0_compiler; CompiledAction_CheckEmpty_m4F8BE1F97D3388CF717260E60627BAE322B21271(__this, L_0, NULL); Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* L_1 = ___0_compiler; NullCheck(L_1); bool L_2; L_2 = Compiler_get_CanHaveApplyImports_mCE2F4F6010361CE5FBB141778F5D7C37F0732613(L_1, NULL); if (L_2) { goto IL_001f; } } { StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_3; L_3 = Array_Empty_TisString_t_m9832B70DF2B936246FE60F75D3D12CB946C39D16_inline(((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Array_Empty_TisString_t_m9832B70DF2B936246FE60F75D3D12CB946C39D16_RuntimeMethod_var))); XsltException_t068DA14245E560F1D8DD1C0EF96303DE84BAAE1F* L_4; L_4 = XsltException_Create_m05D682F3ED57C1BE81B4951BC325D469916DB86E(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF051CD5C431DE8A15EDEFF4A4204FDC27AE3C4F8)), L_3, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ApplyImportsAction_Compile_m272197992E51853078075BC7677C2AF3B6FECBCA_RuntimeMethod_var))); } IL_001f: { Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* L_5 = ___0_compiler; NullCheck(L_5); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_6; L_6 = Compiler_get_CurrentMode_mB6C9CA51647A0026CAD3E9127E5D7668F0419190_inline(L_5, NULL); __this->___mode_0 = L_6; Il2CppCodeGenWriteBarrier((void**)(&__this->___mode_0), (void*)L_6); Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* L_7 = ___0_compiler; NullCheck(L_7); Stylesheet_t877F8405A546EAB0A26CE0F54A7F48533686E5AB* L_8; L_8 = Compiler_get_CompiledStylesheet_mA280D11E65BC25A124F7D85975F74CC6DC7D4F13_inline(L_7, NULL); __this->___stylesheet_1 = L_8; Il2CppCodeGenWriteBarrier((void**)(&__this->___stylesheet_1), (void*)L_8); return; } } // System.Void System.Xml.Xsl.XsltOld.ApplyImportsAction::Execute(System.Xml.Xsl.XsltOld.Processor,System.Xml.Xsl.XsltOld.ActionFrame) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ApplyImportsAction_Execute_mD1AC9FDE276B4196D8BB9EC0AC0761B715DC2A7C (ApplyImportsAction_tE8400005F12DD6D225C8523127634F8BABEC4684* __this, Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83* ___0_processor, ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* ___1_frame, const RuntimeMethod* method) { int32_t V_0 = 0; { ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* L_0 = ___1_frame; NullCheck(L_0); int32_t L_1; L_1 = ActionFrame_get_State_m6C7068E9000AA86183FA799E3F92521FE6E76E7C_inline(L_0, NULL); V_0 = L_1; int32_t L_2 = V_0; if (!L_2) { goto IL_000f; } } { int32_t L_3 = V_0; if ((((int32_t)L_3) == ((int32_t)2))) { goto IL_002f; } } { return; } IL_000f: { Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83* L_4 = ___0_processor; ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* L_5 = ___1_frame; NullCheck(L_5); XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* L_6; L_6 = ActionFrame_get_NodeSet_mCEA23754D948C80341C63E6DCD6B28A7C1DD8FBA_inline(L_5, NULL); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_7 = __this->___mode_0; Stylesheet_t877F8405A546EAB0A26CE0F54A7F48533686E5AB* L_8 = __this->___stylesheet_1; NullCheck(L_4); Processor_PushTemplateLookup_m073607F6ED4DFD6DF1C79E73E40AF3E3D5C86661(L_4, L_6, L_7, L_8, NULL); ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* L_9 = ___1_frame; NullCheck(L_9); ActionFrame_set_State_m663CEB8FCA17DF07B008588F536CAC43C08583D5_inline(L_9, 2, NULL); return; } IL_002f: { ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* L_10 = ___1_frame; NullCheck(L_10); ActionFrame_Finished_mDF172E8E38BD80DCD91901D46A92A327F8208EA5(L_10, NULL); return; } } // System.Void System.Xml.Xsl.XsltOld.ApplyImportsAction::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ApplyImportsAction__ctor_mD1596B453E1483CDA38FA368F6EEE285BAC72D56 (ApplyImportsAction_tE8400005F12DD6D225C8523127634F8BABEC4684* __this, const RuntimeMethod* method) { { CompiledAction__ctor_m5657EBCA346B8652AD43CDE1FB9130E3380EDF84(__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.Xml.Xsl.XsltOld.ApplyTemplatesAction System.Xml.Xsl.XsltOld.ApplyTemplatesAction::BuiltInRule() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ApplyTemplatesAction_t6239D436A0DB073AAF03DC4786AE2F86E4C60793* ApplyTemplatesAction_BuiltInRule_mBE6878C9A009CABCB9CD883A70302DDFA405ABDB (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ApplyTemplatesAction_t6239D436A0DB073AAF03DC4786AE2F86E4C60793_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_runtime_class_init_inline(ApplyTemplatesAction_t6239D436A0DB073AAF03DC4786AE2F86E4C60793_il2cpp_TypeInfo_var); ApplyTemplatesAction_t6239D436A0DB073AAF03DC4786AE2F86E4C60793* L_0 = ((ApplyTemplatesAction_t6239D436A0DB073AAF03DC4786AE2F86E4C60793_StaticFields*)il2cpp_codegen_static_fields_for(ApplyTemplatesAction_t6239D436A0DB073AAF03DC4786AE2F86E4C60793_il2cpp_TypeInfo_var))->___s_BuiltInRule_5; return L_0; } } // System.Xml.Xsl.XsltOld.ApplyTemplatesAction System.Xml.Xsl.XsltOld.ApplyTemplatesAction::BuiltInRule(System.Xml.XmlQualifiedName) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ApplyTemplatesAction_t6239D436A0DB073AAF03DC4786AE2F86E4C60793* ApplyTemplatesAction_BuiltInRule_mE5752C8D32B42679BC4C6A4B65055741A2E0404C (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___0_mode, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ApplyTemplatesAction_t6239D436A0DB073AAF03DC4786AE2F86E4C60793_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_0 = ___0_mode; il2cpp_codegen_runtime_class_init_inline(XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9_il2cpp_TypeInfo_var); bool L_1; L_1 = XmlQualifiedName_op_Equality_mAE17874DCEBAFB74CBFEC5CC1EE5399470A61D44(L_0, (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9*)NULL, NULL); if (L_1) { goto IL_0018; } } { XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_2 = ___0_mode; NullCheck(L_2); bool L_3; L_3 = XmlQualifiedName_get_IsEmpty_m37942163D9A870E85BE8762845953C6A6579A400(L_2, NULL); if (L_3) { goto IL_0018; } } { XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_4 = ___0_mode; ApplyTemplatesAction_t6239D436A0DB073AAF03DC4786AE2F86E4C60793* L_5 = (ApplyTemplatesAction_t6239D436A0DB073AAF03DC4786AE2F86E4C60793*)il2cpp_codegen_object_new(ApplyTemplatesAction_t6239D436A0DB073AAF03DC4786AE2F86E4C60793_il2cpp_TypeInfo_var); NullCheck(L_5); ApplyTemplatesAction__ctor_m94299EE029D7B9DE7B590BF47748344266180158(L_5, L_4, NULL); return L_5; } IL_0018: { il2cpp_codegen_runtime_class_init_inline(ApplyTemplatesAction_t6239D436A0DB073AAF03DC4786AE2F86E4C60793_il2cpp_TypeInfo_var); ApplyTemplatesAction_t6239D436A0DB073AAF03DC4786AE2F86E4C60793* L_6; L_6 = ApplyTemplatesAction_BuiltInRule_mBE6878C9A009CABCB9CD883A70302DDFA405ABDB_inline(NULL); return L_6; } } // System.Void System.Xml.Xsl.XsltOld.ApplyTemplatesAction::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ApplyTemplatesAction__ctor_m4EAABFD18219B021D7A73F27F83DE1F06B757BBD (ApplyTemplatesAction_t6239D436A0DB073AAF03DC4786AE2F86E4C60793* __this, const RuntimeMethod* method) { { __this->___selectKey_3 = (-1); ContainerAction__ctor_m8848BE88360BB872F078CA00271AE7910563343D(__this, NULL); return; } } // System.Void System.Xml.Xsl.XsltOld.ApplyTemplatesAction::.ctor(System.Xml.XmlQualifiedName) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ApplyTemplatesAction__ctor_m94299EE029D7B9DE7B590BF47748344266180158 (ApplyTemplatesAction_t6239D436A0DB073AAF03DC4786AE2F86E4C60793* __this, XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* ___0_mode, const RuntimeMethod* method) { { __this->___selectKey_3 = (-1); ContainerAction__ctor_m8848BE88360BB872F078CA00271AE7910563343D(__this, NULL); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_0 = ___0_mode; __this->___mode_4 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___mode_4), (void*)L_0); return; } } // System.Void System.Xml.Xsl.XsltOld.ApplyTemplatesAction::Compile(System.Xml.Xsl.XsltOld.Compiler) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ApplyTemplatesAction_Compile_mF9BA7C4AA49564580C9A2EE2C8E4DACDA6362DD8 (ApplyTemplatesAction_t6239D436A0DB073AAF03DC4786AE2F86E4C60793* __this, Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* ___0_compiler, const RuntimeMethod* method) { { Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* L_0 = ___0_compiler; CompiledAction_CompileAttributes_m89DE98DF58DF9B21DE5ABED32BBB10EA5BD9CF7C(__this, L_0, NULL); Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* L_1 = ___0_compiler; ApplyTemplatesAction_CompileContent_mF2A6AB5F74E4D87E6FE7FB4C3A3C3A9B70DB75DC(__this, L_1, NULL); return; } } // System.Boolean System.Xml.Xsl.XsltOld.ApplyTemplatesAction::CompileAttribute(System.Xml.Xsl.XsltOld.Compiler) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ApplyTemplatesAction_CompileAttribute_mA0E1482ABB6CDFD1E9F51014E666CD88A5E1936D (ApplyTemplatesAction_t6239D436A0DB073AAF03DC4786AE2F86E4C60793* __this, Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* ___0_compiler, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE280D065A824A791F8305234D3E093FC9A5A90C7); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; String_t* V_1 = NULL; { Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* L_0 = ___0_compiler; NullCheck(L_0); NavigatorInput_t320297C3DA5C438B7B111C375918046FAAE8F8A6* L_1; L_1 = Compiler_get_Input_m4CB6E2667545733AA0FCB111CACB30EEB9B632C4_inline(L_0, NULL); NullCheck(L_1); String_t* L_2; L_2 = NavigatorInput_get_LocalName_mFD21D36062437258B5586D500E83947FC9C4FAEE(L_1, NULL); V_0 = L_2; Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* L_3 = ___0_compiler; NullCheck(L_3); NavigatorInput_t320297C3DA5C438B7B111C375918046FAAE8F8A6* L_4; L_4 = Compiler_get_Input_m4CB6E2667545733AA0FCB111CACB30EEB9B632C4_inline(L_3, NULL); NullCheck(L_4); String_t* L_5; L_5 = NavigatorInput_get_Value_m3F9C4256990322889ED561F7FCF24A6090D1C035(L_4, NULL); V_1 = L_5; String_t* L_6 = V_0; Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* L_7 = ___0_compiler; NullCheck(L_7); KeywordsTable_t0E219DF02F8110A89E6F0FA77F351B312037EF83* L_8; L_8 = Compiler_get_Atoms_mACC1EA63994DCCCFF058820A88AF91AFE3149A98_inline(L_7, NULL); NullCheck(L_8); String_t* L_9 = L_8->___Select_86; bool L_10; L_10 = Ref_Equal_m60FD3EF02546279815B785F856568B01F60FE1AF(L_6, L_9, NULL); if (!L_10) { goto IL_003a; } } { Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* L_11 = ___0_compiler; String_t* L_12 = V_1; NullCheck(L_11); int32_t L_13; L_13 = Compiler_AddQuery_m89F9FCC406284250A732901334B6605987D9F252(L_11, L_12, NULL); __this->___selectKey_3 = L_13; goto IL_0080; } IL_003a: { String_t* L_14 = V_0; Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* L_15 = ___0_compiler; NullCheck(L_15); KeywordsTable_t0E219DF02F8110A89E6F0FA77F351B312037EF83* L_16; L_16 = Compiler_get_Atoms_mACC1EA63994DCCCFF058820A88AF91AFE3149A98_inline(L_15, NULL); NullCheck(L_16); String_t* L_17 = L_16->___Mode_60; bool L_18; L_18 = Ref_Equal_m60FD3EF02546279815B785F856568B01F60FE1AF(L_14, L_17, NULL); if (!L_18) { goto IL_007e; } } { Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* L_19 = ___0_compiler; NullCheck(L_19); bool L_20 = L_19->___AllowBuiltInMode_18; if (!L_20) { goto IL_006f; } } { String_t* L_21 = V_1; bool L_22; L_22 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_21, _stringLiteralE280D065A824A791F8305234D3E093FC9A5A90C7, NULL); if (!L_22) { goto IL_006f; } } { il2cpp_codegen_runtime_class_init_inline(Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5_il2cpp_TypeInfo_var); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_23 = ((Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5_StaticFields*)il2cpp_codegen_static_fields_for(Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5_il2cpp_TypeInfo_var))->___BuiltInMode_19; __this->___mode_4 = L_23; Il2CppCodeGenWriteBarrier((void**)(&__this->___mode_4), (void*)L_23); goto IL_0080; } IL_006f: { Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* L_24 = ___0_compiler; String_t* L_25 = V_1; NullCheck(L_24); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_26; L_26 = Compiler_CreateXPathQName_m0E12EB361B9EB502960C97C10E41803AF0F0FC08(L_24, L_25, NULL); __this->___mode_4 = L_26; Il2CppCodeGenWriteBarrier((void**)(&__this->___mode_4), (void*)L_26); goto IL_0080; } IL_007e: { return (bool)0; } IL_0080: { return (bool)1; } } // System.Void System.Xml.Xsl.XsltOld.ApplyTemplatesAction::CompileContent(System.Xml.Xsl.XsltOld.Compiler) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ApplyTemplatesAction_CompileContent_mF2A6AB5F74E4D87E6FE7FB4C3A3C3A9B70DB75DC (ApplyTemplatesAction_t6239D436A0DB073AAF03DC4786AE2F86E4C60793* __this, Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* ___0_compiler, const RuntimeMethod* method) { NavigatorInput_t320297C3DA5C438B7B111C375918046FAAE8F8A6* V_0 = NULL; String_t* V_1 = NULL; int32_t V_2 = 0; WithParamAction_t37FFCE9EC03A70D4F0F9F046A20235E26AB9ACC1* V_3 = NULL; { Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* L_0 = ___0_compiler; NullCheck(L_0); NavigatorInput_t320297C3DA5C438B7B111C375918046FAAE8F8A6* L_1; L_1 = Compiler_get_Input_m4CB6E2667545733AA0FCB111CACB30EEB9B632C4_inline(L_0, NULL); V_0 = L_1; Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* L_2 = ___0_compiler; NullCheck(L_2); bool L_3; L_3 = Compiler_Recurse_m81ACA1B4B069C296EB6C649E3015141539D25CD0(L_2, NULL); if (!L_3) { goto IL_00e1; } } IL_0012: { NavigatorInput_t320297C3DA5C438B7B111C375918046FAAE8F8A6* L_4 = V_0; NullCheck(L_4); int32_t L_5; L_5 = NavigatorInput_get_NodeType_m1770FD47D9F7384CB41B7846BD4F19739DDCCA4F(L_4, NULL); V_2 = L_5; int32_t L_6 = V_2; if ((((int32_t)L_6) == ((int32_t)1))) { goto IL_002b; } } { int32_t L_7 = V_2; if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_7, 5))) > ((uint32_t)3)))) { goto IL_00cf; } } { goto IL_00b6; } IL_002b: { Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* L_8 = ___0_compiler; NullCheck(L_8); Compiler_PushNamespaceScope_m6219C8C05133F1781937B7DD7834763A5DBB4C70(L_8, NULL); NavigatorInput_t320297C3DA5C438B7B111C375918046FAAE8F8A6* L_9 = V_0; NullCheck(L_9); String_t* L_10; L_10 = NavigatorInput_get_NamespaceURI_m8C0BEBA361DCF015572BFD7037F6ED1F5E939914(L_9, NULL); NavigatorInput_t320297C3DA5C438B7B111C375918046FAAE8F8A6* L_11 = V_0; NullCheck(L_11); String_t* L_12; L_12 = NavigatorInput_get_LocalName_mFD21D36062437258B5586D500E83947FC9C4FAEE(L_11, NULL); V_1 = L_12; NavigatorInput_t320297C3DA5C438B7B111C375918046FAAE8F8A6* L_13 = V_0; NullCheck(L_13); KeywordsTable_t0E219DF02F8110A89E6F0FA77F351B312037EF83* L_14; L_14 = NavigatorInput_get_Atoms_m6860F1A958F5B7057EA725AD9704011D6CB6F993_inline(L_13, NULL); NullCheck(L_14); String_t* L_15 = L_14->___UriXsl_102; bool L_16; L_16 = Ref_Equal_m60FD3EF02546279815B785F856568B01F60FE1AF(L_10, L_15, NULL); if (!L_16) { goto IL_00a7; } } { String_t* L_17 = V_1; NavigatorInput_t320297C3DA5C438B7B111C375918046FAAE8F8A6* L_18 = V_0; NullCheck(L_18); KeywordsTable_t0E219DF02F8110A89E6F0FA77F351B312037EF83* L_19; L_19 = NavigatorInput_get_Atoms_m6860F1A958F5B7057EA725AD9704011D6CB6F993_inline(L_18, NULL); NullCheck(L_19); String_t* L_20 = L_19->___Sort_89; bool L_21; L_21 = Ref_Equal_m60FD3EF02546279815B785F856568B01F60FE1AF(L_17, L_20, NULL); if (!L_21) { goto IL_0071; } } { Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* L_22 = ___0_compiler; NullCheck(L_22); SortAction_t04B5F7519A2AF45F3013AC30C8BFEF5FA78F3B2C* L_23; L_23 = VirtualFuncInvoker0< SortAction_t04B5F7519A2AF45F3013AC30C8BFEF5FA78F3B2C* >::Invoke(23 /* System.Xml.Xsl.XsltOld.SortAction System.Xml.Xsl.XsltOld.Compiler::CreateSortAction() */, L_22); ContainerAction_AddAction_m4E1F4A8B91E71CCEE258F8B981B6DD466B30997B(__this, L_23, NULL); goto IL_00ae; } IL_0071: { String_t* L_24 = V_1; NavigatorInput_t320297C3DA5C438B7B111C375918046FAAE8F8A6* L_25 = V_0; NullCheck(L_25); KeywordsTable_t0E219DF02F8110A89E6F0FA77F351B312037EF83* L_26; L_26 = NavigatorInput_get_Atoms_m6860F1A958F5B7057EA725AD9704011D6CB6F993_inline(L_25, NULL); NullCheck(L_26); String_t* L_27 = L_26->___WithParam_113; bool L_28; L_28 = Ref_Equal_m60FD3EF02546279815B785F856568B01F60FE1AF(L_24, L_27, NULL); if (!L_28) { goto IL_00a0; } } { Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* L_29 = ___0_compiler; NullCheck(L_29); WithParamAction_t37FFCE9EC03A70D4F0F9F046A20235E26AB9ACC1* L_30; L_30 = VirtualFuncInvoker0< WithParamAction_t37FFCE9EC03A70D4F0F9F046A20235E26AB9ACC1* >::Invoke(30 /* System.Xml.Xsl.XsltOld.WithParamAction System.Xml.Xsl.XsltOld.Compiler::CreateWithParamAction() */, L_29); V_3 = L_30; WithParamAction_t37FFCE9EC03A70D4F0F9F046A20235E26AB9ACC1* L_31 = V_3; NullCheck(L_31); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_32; L_32 = VariableAction_get_Name_m513EB54577C762D5F08192F32C47D0917E3A0BD7_inline(L_31, NULL); ContainerAction_CheckDuplicateParams_m828F8716F3C0989F279D292BBD23A9D0185B4849(__this, L_32, NULL); WithParamAction_t37FFCE9EC03A70D4F0F9F046A20235E26AB9ACC1* L_33 = V_3; ContainerAction_AddAction_m4E1F4A8B91E71CCEE258F8B981B6DD466B30997B(__this, L_33, NULL); goto IL_00ae; } IL_00a0: { Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* L_34 = ___0_compiler; NullCheck(L_34); XsltException_t068DA14245E560F1D8DD1C0EF96303DE84BAAE1F* L_35; L_35 = Compiler_UnexpectedKeyword_m43E784A57E9881C71C20641A897F409379C4DA32(L_34, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_35, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ApplyTemplatesAction_CompileContent_mF2A6AB5F74E4D87E6FE7FB4C3A3C3A9B70DB75DC_RuntimeMethod_var))); } IL_00a7: { Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* L_36 = ___0_compiler; NullCheck(L_36); XsltException_t068DA14245E560F1D8DD1C0EF96303DE84BAAE1F* L_37; L_37 = Compiler_UnexpectedKeyword_m43E784A57E9881C71C20641A897F409379C4DA32(L_36, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_37, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ApplyTemplatesAction_CompileContent_mF2A6AB5F74E4D87E6FE7FB4C3A3C3A9B70DB75DC_RuntimeMethod_var))); } IL_00ae: { Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* L_38 = ___0_compiler; NullCheck(L_38); VirtualActionInvoker0::Invoke(5 /* System.Void System.Xml.Xsl.XsltOld.Compiler::PopScope() */, L_38); goto IL_00cf; } IL_00b6: { StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_39 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var)), (uint32_t)1); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_40 = L_39; NullCheck(L_40); ArrayElementTypeCheck (L_40, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF66E15BC243CEA210A303D016AC77253102B8D2F))); (L_40)->SetAt(static_cast(0), (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF66E15BC243CEA210A303D016AC77253102B8D2F))); XsltException_t068DA14245E560F1D8DD1C0EF96303DE84BAAE1F* L_41; L_41 = XsltException_Create_m05D682F3ED57C1BE81B4951BC325D469916DB86E(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB18E1F73375E8AB88B15CB60CB890BAB9F2E87EF)), L_40, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_41, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ApplyTemplatesAction_CompileContent_mF2A6AB5F74E4D87E6FE7FB4C3A3C3A9B70DB75DC_RuntimeMethod_var))); } IL_00cf: { Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* L_42 = ___0_compiler; NullCheck(L_42); bool L_43; L_43 = Compiler_Advance_mF0C01C570FD6254C93861F325515B94E05304DEF(L_42, NULL); if (L_43) { goto IL_0012; } } { Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* L_44 = ___0_compiler; NullCheck(L_44); bool L_45; L_45 = Compiler_ToParent_mCC417FE19E693F7CA60293576D6BAD3A81853664(L_44, NULL); } IL_00e1: { return; } } // System.Void System.Xml.Xsl.XsltOld.ApplyTemplatesAction::Execute(System.Xml.Xsl.XsltOld.Processor,System.Xml.Xsl.XsltOld.ActionFrame) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ApplyTemplatesAction_Execute_mFBF5F26D5B169547D1E99439D88DE8D0479FB824 (ApplyTemplatesAction_t6239D436A0DB073AAF03DC4786AE2F86E4C60793* __this, Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83* ___0_processor, ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* ___1_frame, const RuntimeMethod* method) { int32_t V_0 = 0; { ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* L_0 = ___1_frame; NullCheck(L_0); int32_t L_1; L_1 = ActionFrame_get_State_m6C7068E9000AA86183FA799E3F92521FE6E76E7C_inline(L_0, NULL); V_0 = L_1; int32_t L_2 = V_0; switch (L_2) { case 0: { goto IL_0026; } case 1: { goto IL_00ff; } case 2: { goto IL_0057; } case 3: { goto IL_00c2; } case 4: { goto IL_00db; } case 5: { goto IL_00f6; } } } { return; } IL_0026: { Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83* L_3 = ___0_processor; NullCheck(L_3); Processor_ResetParams_mD8A944A129B15E8A5257E1E8948C3842BE6DFF91(L_3, NULL); Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83* L_4 = ___0_processor; NullCheck(L_4); Processor_InitSortArray_mE2E402A84E6F17AA5F03081958C706C12CA66771(L_4, NULL); ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_5 = ((ContainerAction_t7A45AFD9C9840A47FE328AAA30C84F47A0693CE3*)__this)->___containedActions_0; if (!L_5) { goto IL_0057; } } { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_6 = ((ContainerAction_t7A45AFD9C9840A47FE328AAA30C84F47A0693CE3*)__this)->___containedActions_0; NullCheck(L_6); int32_t L_7; L_7 = VirtualFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_6); if ((((int32_t)L_7) <= ((int32_t)0))) { goto IL_0057; } } { Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83* L_8 = ___0_processor; ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* L_9 = ___1_frame; NullCheck(L_8); Processor_PushActionFrame_m53F1695C6C0D48E3B199614E5E2B2A912A89502C(L_8, L_9, NULL); ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* L_10 = ___1_frame; NullCheck(L_10); ActionFrame_set_State_m663CEB8FCA17DF07B008588F536CAC43C08583D5_inline(L_10, 2, NULL); return; } IL_0057: { int32_t L_11 = __this->___selectKey_3; if ((!(((uint32_t)L_11) == ((uint32_t)(-1))))) { goto IL_0089; } } { ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* L_12 = ___1_frame; NullCheck(L_12); XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* L_13; L_13 = ActionFrame_get_Node_m172274CE6AF3457979E81A9726AC0CBAF8F60F2B(L_12, NULL); NullCheck(L_13); bool L_14; L_14 = VirtualFuncInvoker0< bool >::Invoke(58 /* System.Boolean System.Xml.XPath.XPathNavigator::get_HasChildren() */, L_13); if (L_14) { goto IL_0074; } } { ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* L_15 = ___1_frame; NullCheck(L_15); ActionFrame_Finished_mDF172E8E38BD80DCD91901D46A92A327F8208EA5(L_15, NULL); return; } IL_0074: { ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* L_16 = ___1_frame; ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* L_17 = ___1_frame; NullCheck(L_17); XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* L_18; L_18 = ActionFrame_get_Node_m172274CE6AF3457979E81A9726AC0CBAF8F60F2B(L_17, NULL); NullCheck(L_18); XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* L_19; L_19 = VirtualFuncInvoker1< XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B*, int32_t >::Invoke(67 /* System.Xml.XPath.XPathNodeIterator System.Xml.XPath.XPathNavigator::SelectChildren(System.Xml.XPath.XPathNodeType) */, L_18, ((int32_t)9)); NullCheck(L_16); ActionFrame_InitNewNodeSet_m90A241AB98A562D3BF2BB72712F3BE72C65623B1_inline(L_16, L_19, NULL); goto IL_00a1; } IL_0089: { ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* L_20 = ___1_frame; Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83* L_21 = ___0_processor; ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* L_22 = ___1_frame; NullCheck(L_22); XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* L_23; L_23 = ActionFrame_get_NodeSet_mCEA23754D948C80341C63E6DCD6B28A7C1DD8FBA_inline(L_22, NULL); int32_t L_24 = __this->___selectKey_3; NullCheck(L_21); XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* L_25; L_25 = Processor_StartQuery_m9BB80E34604B2868E9E6E1D83B62C1C90D15CF3D(L_21, L_23, L_24, NULL); NullCheck(L_20); ActionFrame_InitNewNodeSet_m90A241AB98A562D3BF2BB72712F3BE72C65623B1_inline(L_20, L_25, NULL); } IL_00a1: { Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83* L_26 = ___0_processor; NullCheck(L_26); ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_27; L_27 = Processor_get_SortArray_mD77A7777515A0F68D949FE6761F0D9E0D49E5143_inline(L_26, NULL); NullCheck(L_27); int32_t L_28; L_28 = VirtualFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_27); if (!L_28) { goto IL_00bb; } } { ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* L_29 = ___1_frame; Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83* L_30 = ___0_processor; Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83* L_31 = ___0_processor; NullCheck(L_31); ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_32; L_32 = Processor_get_SortArray_mD77A7777515A0F68D949FE6761F0D9E0D49E5143_inline(L_31, NULL); NullCheck(L_29); ActionFrame_SortNewNodeSet_mAC3292C9640460B37B7FEF2F9B4EF5BCEE0F04CC(L_29, L_30, L_32, NULL); } IL_00bb: { ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* L_33 = ___1_frame; NullCheck(L_33); ActionFrame_set_State_m663CEB8FCA17DF07B008588F536CAC43C08583D5_inline(L_33, 3, NULL); } IL_00c2: { ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* L_34 = ___1_frame; Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83* L_35 = ___0_processor; NullCheck(L_34); bool L_36; L_36 = ActionFrame_NewNextNode_mC704C187FF5F774D9D2B98FFA7D2D279AD402186(L_34, L_35, NULL); if (!L_36) { goto IL_00d4; } } { ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* L_37 = ___1_frame; NullCheck(L_37); ActionFrame_set_State_m663CEB8FCA17DF07B008588F536CAC43C08583D5_inline(L_37, 4, NULL); goto IL_00db; } IL_00d4: { ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* L_38 = ___1_frame; NullCheck(L_38); ActionFrame_Finished_mDF172E8E38BD80DCD91901D46A92A327F8208EA5(L_38, NULL); return; } IL_00db: { Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83* L_39 = ___0_processor; ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* L_40 = ___1_frame; NullCheck(L_40); XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* L_41; L_41 = ActionFrame_get_NewNodeSet_m64499B616519A81E2895E932777D4542D6645ED1_inline(L_40, NULL); XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_42 = __this->___mode_4; NullCheck(L_39); Processor_PushTemplateLookup_m073607F6ED4DFD6DF1C79E73E40AF3E3D5C86661(L_39, L_41, L_42, (Stylesheet_t877F8405A546EAB0A26CE0F54A7F48533686E5AB*)NULL, NULL); ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* L_43 = ___1_frame; NullCheck(L_43); ActionFrame_set_State_m663CEB8FCA17DF07B008588F536CAC43C08583D5_inline(L_43, 5, NULL); return; } IL_00f6: { ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* L_44 = ___1_frame; NullCheck(L_44); ActionFrame_set_State_m663CEB8FCA17DF07B008588F536CAC43C08583D5_inline(L_44, 3, NULL); goto IL_00c2; } IL_00ff: { return; } } // System.Void System.Xml.Xsl.XsltOld.ApplyTemplatesAction::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ApplyTemplatesAction__cctor_mDC5C7D81205558B4759CB73590D4EA5397D43673 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ApplyTemplatesAction_t6239D436A0DB073AAF03DC4786AE2F86E4C60793_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { ApplyTemplatesAction_t6239D436A0DB073AAF03DC4786AE2F86E4C60793* L_0 = (ApplyTemplatesAction_t6239D436A0DB073AAF03DC4786AE2F86E4C60793*)il2cpp_codegen_object_new(ApplyTemplatesAction_t6239D436A0DB073AAF03DC4786AE2F86E4C60793_il2cpp_TypeInfo_var); NullCheck(L_0); ApplyTemplatesAction__ctor_m4EAABFD18219B021D7A73F27F83DE1F06B757BBD(L_0, NULL); ((ApplyTemplatesAction_t6239D436A0DB073AAF03DC4786AE2F86E4C60793_StaticFields*)il2cpp_codegen_static_fields_for(ApplyTemplatesAction_t6239D436A0DB073AAF03DC4786AE2F86E4C60793_il2cpp_TypeInfo_var))->___s_BuiltInRule_5 = L_0; Il2CppCodeGenWriteBarrier((void**)(&((ApplyTemplatesAction_t6239D436A0DB073AAF03DC4786AE2F86E4C60793_StaticFields*)il2cpp_codegen_static_fields_for(ApplyTemplatesAction_t6239D436A0DB073AAF03DC4786AE2F86E4C60793_il2cpp_TypeInfo_var))->___s_BuiltInRule_5), (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.Xml.Xsl.XsltOld.PrefixQName System.Xml.Xsl.XsltOld.AttributeAction::CreateAttributeQName(System.String,System.String,System.Xml.Xsl.XsltOld.InputScopeManager) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95* AttributeAction_CreateAttributeQName_m538B0C2CDB5AD14582B91100E4150607120BE2B7 (String_t* ___0_name, String_t* ___1_nsUri, InputScopeManager_tF27B9679D4E5F5A5D5AA79DDC2C74F2A51D844E4* ___2_manager, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1CBC514CBF721C4C5F12F67F33B3E7694BCD1B29); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral349C6DC0F34B9BA242E4C728EDD28CAB809D4917); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE1291C4D47635E327ECFE39842BD1A93F58C61A2); s_Il2CppMethodInitialized = true; } PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95* V_0 = NULL; PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95* G_B6_0 = NULL; PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95* G_B5_0 = NULL; String_t* G_B7_0 = NULL; PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95* G_B7_1 = NULL; { String_t* L_0 = ___0_name; bool L_1; L_1 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_0, _stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3, NULL); if (!L_1) { goto IL_000f; } } { return (PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95*)NULL; } IL_000f: { String_t* L_2 = ___1_nsUri; bool L_3; L_3 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_2, _stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE, NULL); if (!L_3) { goto IL_0031; } } { StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_4 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var)), (uint32_t)1); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_5 = L_4; String_t* L_6 = ___1_nsUri; NullCheck(L_5); ArrayElementTypeCheck (L_5, L_6); (L_5)->SetAt(static_cast(0), (String_t*)L_6); XsltException_t068DA14245E560F1D8DD1C0EF96303DE84BAAE1F* L_7; L_7 = XsltException_Create_m05D682F3ED57C1BE81B4951BC325D469916DB86E(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral41AE38D70F5F737DA8EAD1E5DEE7F8F6B2F930CA)), L_5, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AttributeAction_CreateAttributeQName_m538B0C2CDB5AD14582B91100E4150607120BE2B7_RuntimeMethod_var))); } IL_0031: { PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95* L_8 = (PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95*)il2cpp_codegen_object_new(PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95_il2cpp_TypeInfo_var); NullCheck(L_8); PrefixQName__ctor_m8907897329C215898E724AF7536F6DB913EE408D(L_8, NULL); V_0 = L_8; PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95* L_9 = V_0; String_t* L_10 = ___0_name; NullCheck(L_9); PrefixQName_SetQName_m6869D1088653657AF5E2A537DF1AF435179C0B45(L_9, L_10, NULL); PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95* L_11 = V_0; String_t* L_12 = ___1_nsUri; G_B5_0 = L_11; if (L_12) { G_B6_0 = L_11; goto IL_0050; } } { InputScopeManager_tF27B9679D4E5F5A5D5AA79DDC2C74F2A51D844E4* L_13 = ___2_manager; PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95* L_14 = V_0; NullCheck(L_14); String_t* L_15 = L_14->___Prefix_0; NullCheck(L_13); String_t* L_16; L_16 = InputScopeManager_ResolveXPathNamespace_m23EC6A9B0C9D6215C5D7945BE9F177C8D43197FF(L_13, L_15, NULL); G_B7_0 = L_16; G_B7_1 = G_B5_0; goto IL_0051; } IL_0050: { String_t* L_17 = ___1_nsUri; G_B7_0 = L_17; G_B7_1 = G_B6_0; } IL_0051: { NullCheck(G_B7_1); G_B7_1->___Namespace_2 = G_B7_0; Il2CppCodeGenWriteBarrier((void**)(&G_B7_1->___Namespace_2), (void*)G_B7_0); PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95* L_18 = V_0; NullCheck(L_18); String_t* L_19 = L_18->___Prefix_0; NullCheck(L_19); bool L_20; L_20 = String_StartsWith_mA2A4405B1B9F3653A6A9AA7F223F68D86A0C6264(L_19, _stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158, 4, NULL); if (!L_20) { goto IL_00fc; } } { PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95* L_21 = V_0; NullCheck(L_21); String_t* L_22 = L_21->___Prefix_0; NullCheck(L_22); int32_t L_23; L_23 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_22, NULL); if ((!(((uint32_t)L_23) == ((uint32_t)3)))) { goto IL_00b8; } } { PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95* L_24 = V_0; NullCheck(L_24); String_t* L_25 = L_24->___Namespace_2; bool L_26; L_26 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_25, _stringLiteral349C6DC0F34B9BA242E4C728EDD28CAB809D4917, NULL); if (!L_26) { goto IL_00b0; } } { PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95* L_27 = V_0; NullCheck(L_27); String_t* L_28 = L_27->___Name_1; bool L_29; L_29 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_28, _stringLiteral1CBC514CBF721C4C5F12F67F33B3E7694BCD1B29, NULL); if (L_29) { goto IL_00fc; } } { PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95* L_30 = V_0; NullCheck(L_30); String_t* L_31 = L_30->___Name_1; bool L_32; L_32 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_31, _stringLiteralE1291C4D47635E327ECFE39842BD1A93F58C61A2, NULL); if (L_32) { goto IL_00fc; } } IL_00b0: { PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95* L_33 = V_0; NullCheck(L_33); PrefixQName_ClearPrefix_m82FFF8CDA839258F219DC39CD34BF5A7F6221CC2(L_33, NULL); goto IL_00fc; } IL_00b8: { PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95* L_34 = V_0; NullCheck(L_34); String_t* L_35 = L_34->___Prefix_0; bool L_36; L_36 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_35, _stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3, NULL); if (!L_36) { goto IL_00fc; } } { PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95* L_37 = V_0; NullCheck(L_37); String_t* L_38 = L_37->___Namespace_2; bool L_39; L_39 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_38, _stringLiteral420B74A52534550B0DD14DCF7D8988C2BD4936CE, NULL); if (!L_39) { goto IL_00f6; } } { StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_40 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var)), (uint32_t)1); StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_41 = L_40; PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95* L_42 = V_0; NullCheck(L_42); String_t* L_43 = L_42->___Prefix_0; NullCheck(L_41); ArrayElementTypeCheck (L_41, L_43); (L_41)->SetAt(static_cast(0), (String_t*)L_43); XsltException_t068DA14245E560F1D8DD1C0EF96303DE84BAAE1F* L_44; L_44 = XsltException_Create_m05D682F3ED57C1BE81B4951BC325D469916DB86E(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6708CDE569753F77D9D291ED4FBEB3AE21AB9F4F)), L_41, NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_44, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AttributeAction_CreateAttributeQName_m538B0C2CDB5AD14582B91100E4150607120BE2B7_RuntimeMethod_var))); } IL_00f6: { PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95* L_45 = V_0; NullCheck(L_45); PrefixQName_ClearPrefix_m82FFF8CDA839258F219DC39CD34BF5A7F6221CC2(L_45, NULL); } IL_00fc: { PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95* L_46 = V_0; return L_46; } } // System.Void System.Xml.Xsl.XsltOld.AttributeAction::Compile(System.Xml.Xsl.XsltOld.Compiler) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeAction_Compile_mFE260E949E3D9A649526F838965AD95121B93036 (AttributeAction_t8FD6C824D3D0B7918C0155BA16581A35F243BAE7* __this, Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* ___0_compiler, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCE18B047107AA23D1AA9B2ED32D316148E02655F); s_Il2CppMethodInitialized = true; } { Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* L_0 = ___0_compiler; CompiledAction_CompileAttributes_m89DE98DF58DF9B21DE5ABED32BBB10EA5BD9CF7C(__this, L_0, NULL); Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* L_1 = ___0_compiler; Avt_t68EC7ADCD01911FB2B2570645C28DAF9CA8DDE75* L_2 = __this->___nameAvt_3; CompiledAction_CheckRequiredAttribute_m7E381CB09F81993F3FAAA5DAD65A4E69CBFB494E(__this, L_1, L_2, _stringLiteralCE18B047107AA23D1AA9B2ED32D316148E02655F, NULL); Avt_t68EC7ADCD01911FB2B2570645C28DAF9CA8DDE75** L_3 = (&__this->___nameAvt_3); String_t* L_4; L_4 = CompiledAction_PrecalculateAvt_m00625370DFA83C049BF358A361AC9A84AF4648F9(L_3, NULL); __this->___name_6 = L_4; Il2CppCodeGenWriteBarrier((void**)(&__this->___name_6), (void*)L_4); Avt_t68EC7ADCD01911FB2B2570645C28DAF9CA8DDE75** L_5 = (&__this->___nsAvt_4); String_t* L_6; L_6 = CompiledAction_PrecalculateAvt_m00625370DFA83C049BF358A361AC9A84AF4648F9(L_5, NULL); __this->___nsUri_7 = L_6; Il2CppCodeGenWriteBarrier((void**)(&__this->___nsUri_7), (void*)L_6); Avt_t68EC7ADCD01911FB2B2570645C28DAF9CA8DDE75* L_7 = __this->___nameAvt_3; if (L_7) { goto IL_007c; } } { Avt_t68EC7ADCD01911FB2B2570645C28DAF9CA8DDE75* L_8 = __this->___nsAvt_4; if (L_8) { goto IL_007c; } } { String_t* L_9 = __this->___name_6; bool L_10; L_10 = String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6(L_9, _stringLiteral9CDCEEB7A12F71E8DF3D6AC05D04621DD4FBABF3, NULL); if (!L_10) { goto IL_0088; } } { String_t* L_11 = __this->___name_6; String_t* L_12 = __this->___nsUri_7; Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* L_13 = ___0_compiler; NullCheck(L_13); InputScopeManager_tF27B9679D4E5F5A5D5AA79DDC2C74F2A51D844E4* L_14; L_14 = Compiler_CloneScopeManager_m7CA8E62F546214BF3A0DE96E7B297420E306350E(L_13, NULL); PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95* L_15; L_15 = AttributeAction_CreateAttributeQName_m538B0C2CDB5AD14582B91100E4150607120BE2B7(L_11, L_12, L_14, NULL); __this->___qname_8 = L_15; Il2CppCodeGenWriteBarrier((void**)(&__this->___qname_8), (void*)L_15); goto IL_0088; } IL_007c: { Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* L_16 = ___0_compiler; NullCheck(L_16); InputScopeManager_tF27B9679D4E5F5A5D5AA79DDC2C74F2A51D844E4* L_17; L_17 = Compiler_CloneScopeManager_m7CA8E62F546214BF3A0DE96E7B297420E306350E(L_16, NULL); __this->___manager_5 = L_17; Il2CppCodeGenWriteBarrier((void**)(&__this->___manager_5), (void*)L_17); } IL_0088: { Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* L_18 = ___0_compiler; NullCheck(L_18); bool L_19; L_19 = Compiler_Recurse_m81ACA1B4B069C296EB6C649E3015141539D25CD0(L_18, NULL); if (!L_19) { goto IL_009e; } } { Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* L_20 = ___0_compiler; ContainerAction_CompileTemplate_mE425BA69E405B94651EFE77FAE12ECD2F8B62362(__this, L_20, NULL); Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* L_21 = ___0_compiler; NullCheck(L_21); bool L_22; L_22 = Compiler_ToParent_mCC417FE19E693F7CA60293576D6BAD3A81853664(L_21, NULL); } IL_009e: { return; } } // System.Boolean System.Xml.Xsl.XsltOld.AttributeAction::CompileAttribute(System.Xml.Xsl.XsltOld.Compiler) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AttributeAction_CompileAttribute_m70F32AFD759482F2DC0E44E3442B4DB57AA17D0E (AttributeAction_t8FD6C824D3D0B7918C0155BA16581A35F243BAE7* __this, Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* ___0_compiler, const RuntimeMethod* method) { String_t* V_0 = NULL; String_t* V_1 = NULL; { Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* L_0 = ___0_compiler; NullCheck(L_0); NavigatorInput_t320297C3DA5C438B7B111C375918046FAAE8F8A6* L_1; L_1 = Compiler_get_Input_m4CB6E2667545733AA0FCB111CACB30EEB9B632C4_inline(L_0, NULL); NullCheck(L_1); String_t* L_2; L_2 = NavigatorInput_get_LocalName_mFD21D36062437258B5586D500E83947FC9C4FAEE(L_1, NULL); V_0 = L_2; Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* L_3 = ___0_compiler; NullCheck(L_3); NavigatorInput_t320297C3DA5C438B7B111C375918046FAAE8F8A6* L_4; L_4 = Compiler_get_Input_m4CB6E2667545733AA0FCB111CACB30EEB9B632C4_inline(L_3, NULL); NullCheck(L_4); String_t* L_5; L_5 = NavigatorInput_get_Value_m3F9C4256990322889ED561F7FCF24A6090D1C035(L_4, NULL); V_1 = L_5; String_t* L_6 = V_0; Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* L_7 = ___0_compiler; NullCheck(L_7); KeywordsTable_t0E219DF02F8110A89E6F0FA77F351B312037EF83* L_8; L_8 = Compiler_get_Atoms_mACC1EA63994DCCCFF058820A88AF91AFE3149A98_inline(L_7, NULL); NullCheck(L_8); String_t* L_9 = L_8->___Name_61; bool L_10; L_10 = Ref_Equal_m60FD3EF02546279815B785F856568B01F60FE1AF(L_6, L_9, NULL); if (!L_10) { goto IL_003a; } } { Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* L_11 = ___0_compiler; String_t* L_12 = V_1; Avt_t68EC7ADCD01911FB2B2570645C28DAF9CA8DDE75* L_13; L_13 = Avt_CompileAvt_m76B84AEE9A253668BEE747DB1BC61D14C699E627(L_11, L_12, NULL); __this->___nameAvt_3 = L_13; Il2CppCodeGenWriteBarrier((void**)(&__this->___nameAvt_3), (void*)L_13); goto IL_005e; } IL_003a: { String_t* L_14 = V_0; Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* L_15 = ___0_compiler; NullCheck(L_15); KeywordsTable_t0E219DF02F8110A89E6F0FA77F351B312037EF83* L_16; L_16 = Compiler_get_Atoms_mACC1EA63994DCCCFF058820A88AF91AFE3149A98_inline(L_15, NULL); NullCheck(L_16); String_t* L_17 = L_16->___Namespace_62; bool L_18; L_18 = Ref_Equal_m60FD3EF02546279815B785F856568B01F60FE1AF(L_14, L_17, NULL); if (!L_18) { goto IL_005c; } } { Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* L_19 = ___0_compiler; String_t* L_20 = V_1; Avt_t68EC7ADCD01911FB2B2570645C28DAF9CA8DDE75* L_21; L_21 = Avt_CompileAvt_m76B84AEE9A253668BEE747DB1BC61D14C699E627(L_19, L_20, NULL); __this->___nsAvt_4 = L_21; Il2CppCodeGenWriteBarrier((void**)(&__this->___nsAvt_4), (void*)L_21); goto IL_005e; } IL_005c: { return (bool)0; } IL_005e: { return (bool)1; } } // System.Void System.Xml.Xsl.XsltOld.AttributeAction::Execute(System.Xml.Xsl.XsltOld.Processor,System.Xml.Xsl.XsltOld.ActionFrame) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeAction_Execute_mF272BBC37398224C88EFA5F7C1591BB2389B2BE3 (AttributeAction_t8FD6C824D3D0B7918C0155BA16581A35F243BAE7* __this, Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83* ___0_processor, ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* ___1_frame, const RuntimeMethod* method) { int32_t V_0 = 0; PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95* V_1 = NULL; ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* G_B6_0 = NULL; ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* G_B5_0 = NULL; String_t* G_B7_0 = NULL; ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* G_B7_1 = NULL; String_t* G_B9_0 = NULL; ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* G_B9_1 = NULL; String_t* G_B8_0 = NULL; ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* G_B8_1 = NULL; String_t* G_B10_0 = NULL; String_t* G_B10_1 = NULL; ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* G_B10_2 = NULL; { ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* L_0 = ___1_frame; NullCheck(L_0); int32_t L_1; L_1 = ActionFrame_get_State_m6C7068E9000AA86183FA799E3F92521FE6E76E7C_inline(L_0, NULL); V_0 = L_1; int32_t L_2 = V_0; switch (L_2) { case 0: { goto IL_001a; } case 1: { goto IL_00c4; } case 2: { goto IL_008a; } } } { return; } IL_001a: { PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95* L_3 = __this->___qname_8; if (!L_3) { goto IL_0030; } } { ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* L_4 = ___1_frame; PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95* L_5 = __this->___qname_8; NullCheck(L_4); ActionFrame_set_CalulatedName_m2B99ED2D21B50B1ADB0760CBCF1DB3AF05093D03_inline(L_4, L_5, NULL); goto IL_008a; } IL_0030: { ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* L_6 = ___1_frame; Avt_t68EC7ADCD01911FB2B2570645C28DAF9CA8DDE75* L_7 = __this->___nameAvt_3; G_B5_0 = L_6; if (!L_7) { G_B6_0 = L_6; goto IL_0048; } } { Avt_t68EC7ADCD01911FB2B2570645C28DAF9CA8DDE75* L_8 = __this->___nameAvt_3; Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83* L_9 = ___0_processor; ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* L_10 = ___1_frame; NullCheck(L_8); String_t* L_11; L_11 = Avt_Evaluate_m62CDBB060BA728F11E3F640757E0D7E9CCF71BCB(L_8, L_9, L_10, NULL); G_B7_0 = L_11; G_B7_1 = G_B5_0; goto IL_004e; } IL_0048: { String_t* L_12 = __this->___name_6; G_B7_0 = L_12; G_B7_1 = G_B6_0; } IL_004e: { Avt_t68EC7ADCD01911FB2B2570645C28DAF9CA8DDE75* L_13 = __this->___nsAvt_4; G_B8_0 = G_B7_0; G_B8_1 = G_B7_1; if (!L_13) { G_B9_0 = G_B7_0; G_B9_1 = G_B7_1; goto IL_0065; } } { Avt_t68EC7ADCD01911FB2B2570645C28DAF9CA8DDE75* L_14 = __this->___nsAvt_4; Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83* L_15 = ___0_processor; ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* L_16 = ___1_frame; NullCheck(L_14); String_t* L_17; L_17 = Avt_Evaluate_m62CDBB060BA728F11E3F640757E0D7E9CCF71BCB(L_14, L_15, L_16, NULL); G_B10_0 = L_17; G_B10_1 = G_B8_0; G_B10_2 = G_B8_1; goto IL_006b; } IL_0065: { String_t* L_18 = __this->___nsUri_7; G_B10_0 = L_18; G_B10_1 = G_B9_0; G_B10_2 = G_B9_1; } IL_006b: { InputScopeManager_tF27B9679D4E5F5A5D5AA79DDC2C74F2A51D844E4* L_19 = __this->___manager_5; PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95* L_20; L_20 = AttributeAction_CreateAttributeQName_m538B0C2CDB5AD14582B91100E4150607120BE2B7(G_B10_1, G_B10_0, L_19, NULL); NullCheck(G_B10_2); ActionFrame_set_CalulatedName_m2B99ED2D21B50B1ADB0760CBCF1DB3AF05093D03_inline(G_B10_2, L_20, NULL); ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* L_21 = ___1_frame; NullCheck(L_21); PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95* L_22; L_22 = ActionFrame_get_CalulatedName_mED295E10C089643BF4861C7A633DB0349919429A_inline(L_21, NULL); if (L_22) { goto IL_008a; } } { ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* L_23 = ___1_frame; NullCheck(L_23); ActionFrame_Finished_mDF172E8E38BD80DCD91901D46A92A327F8208EA5(L_23, NULL); return; } IL_008a: { ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* L_24 = ___1_frame; NullCheck(L_24); PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95* L_25; L_25 = ActionFrame_get_CalulatedName_mED295E10C089643BF4861C7A633DB0349919429A_inline(L_24, NULL); V_1 = L_25; Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83* L_26 = ___0_processor; PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95* L_27 = V_1; NullCheck(L_27); String_t* L_28 = L_27->___Prefix_0; PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95* L_29 = V_1; NullCheck(L_29); String_t* L_30 = L_29->___Name_1; PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95* L_31 = V_1; NullCheck(L_31); String_t* L_32 = L_31->___Namespace_2; NullCheck(L_26); bool L_33; L_33 = Processor_BeginEvent_m6CE2B16ED12EA503CDA9526AC2FED1D03EFB36A5(L_26, 2, L_28, L_30, L_32, (bool)0, NULL); if (L_33) { goto IL_00b5; } } { ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* L_34 = ___1_frame; NullCheck(L_34); ActionFrame_set_State_m663CEB8FCA17DF07B008588F536CAC43C08583D5_inline(L_34, 2, NULL); return; } IL_00b5: { Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83* L_35 = ___0_processor; ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* L_36 = ___1_frame; NullCheck(L_35); Processor_PushActionFrame_m53F1695C6C0D48E3B199614E5E2B2A912A89502C(L_35, L_36, NULL); ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* L_37 = ___1_frame; NullCheck(L_37); ActionFrame_set_State_m663CEB8FCA17DF07B008588F536CAC43C08583D5_inline(L_37, 1, NULL); return; } IL_00c4: { Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83* L_38 = ___0_processor; NullCheck(L_38); bool L_39; L_39 = Processor_EndEvent_m9E9C89E291F87F1A2AE6568797D66FD739B67BFD(L_38, 2, NULL); if (L_39) { goto IL_00d5; } } { ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* L_40 = ___1_frame; NullCheck(L_40); ActionFrame_set_State_m663CEB8FCA17DF07B008588F536CAC43C08583D5_inline(L_40, 1, NULL); return; } IL_00d5: { ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* L_41 = ___1_frame; NullCheck(L_41); ActionFrame_Finished_mDF172E8E38BD80DCD91901D46A92A327F8208EA5(L_41, NULL); return; } } // System.Void System.Xml.Xsl.XsltOld.AttributeAction::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeAction__ctor_m063AA5DE1A85AE4CEC3C3E19F7A64AA7FBCBFED5 (AttributeAction_t8FD6C824D3D0B7918C0155BA16581A35F243BAE7* __this, const RuntimeMethod* method) { { ContainerAction__ctor_m8848BE88360BB872F078CA00271AE7910563343D(__this, NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlMapping_get_Format_mB9ACDCC642A2589BF20C9D02C2FA14F2C5D1C3F3_inline (XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___format_2; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* XmlMapping_get_RelatedMaps_m359C8ADACB98609060F82DCB82FB18E39274918C_inline (XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* __this, const RuntimeMethod* method) { { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = __this->___relatedMaps_1; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* XmlTypeMapping_get_TypeData_m1BBD3B003521D872988B91764C969FB5DF1C27F4_inline (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, const RuntimeMethod* method) { { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_0 = __this->___type_9; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t TypeData_get_SchemaType_mDD8AA1AED98E580047EFF8A9C74CA9DCC5FC2E28_inline (TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___sType_2; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlTypeMapping_get_XmlType_m5A30CB4EE3541CC1C65003757D5E743042846222_inline (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___xmlType_7; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlMapping_get_Namespace_m196651C91FB3C3442AC616C977345E89450F024F_inline (XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->____namespace_5; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t* TypeData_get_Type_m2B7E02EA472BB9C6C4306412332A73C7E8E86E4F_inline (TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* __this, const RuntimeMethod* method) { { Type_t* L_0 = __this->___type_0; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* XmlSerializationReader_get_Reader_m7DF9AE2DC2E3973AD6EDC5FC78822E50A3C5455F_inline (XmlSerializationReader_t9AD0D8849534C2406CD294857687A6170AC52597* __this, const RuntimeMethod* method) { { XmlReader_t4C709DEF5F01606ECB60B638F1BD6F6E0A9116FD* L_0 = __this->___reader_1; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlMapping_get_ElementName_m2BDBF7797A1F38972A4355CF694E0D468B2A9FC0_inline (XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->____elementName_4; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlMembersMapping_get_HasWrapperElement_mE921652D9CEADD03E4BCC13C9AC26E457C640CE5_inline (XmlMembersMapping_t0D686C86E19B598F10E53AF79EC905A7E2BDB62C* __this, const RuntimeMethod* method) { { bool L_0 = __this->____hasWrapperElement_7; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0* XmlMapping_get_ObjectMap_m63D1AEAC8EDD8396357898D337E350673A1E9003_inline (XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* __this, const RuntimeMethod* method) { { ObjectMap_t07CE2CF97F92E98E84AABBC27BFCE2418CD0D8C0* L_0 = __this->___map_0; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ClassMap_get_AllMembers_m68939A09AB79846A722998916E288759CB918FED_inline (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method) { { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = __this->____allMembers_5; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* XmlTypeMapMember_get_TypeData_m071A2E1C32FA2AED8FB5D91556CF310A28898D1D_inline (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, const RuntimeMethod* method) { { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_0 = __this->____typeData_4; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlTypeMapping_get_IsAny_m0C45955548B231D2E892D2924768B068138CBDD8_inline (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, const RuntimeMethod* method) { { bool L_0 = __this->___isAny_14; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlTypeMapping_get_IsNullable_m2CE4D69DE9C4D1A7AFC01D0BE8C2369BD1C8107B_inline (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, const RuntimeMethod* method) { { bool L_0 = __this->___isNullable_13; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlQualifiedName_get_Name_mC9D21D5BADE11AEAC7ED5886B39E1A774C63B830_inline (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___name_1; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlQualifiedName_get_Namespace_m0CAE4A651EF1CA6F0EB657C83608A796038A2615_inline (XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___ns_2; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlTypeMapMemberAnyAttribute_t936B5C08A209D3F342575957ACCBF1F7984095F1* ClassMap_get_DefaultAnyAttributeMember_m88660193A65BE269D1E4F7ADEA4778BC78D40B08_inline (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method) { { XmlTypeMapMemberAnyAttribute_t936B5C08A209D3F342575957ACCBF1F7984095F1* L_0 = __this->____defaultAnyAttribute_9; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* XmlTypeMapMemberAttribute_get_MappedType_mD2DBE6E539F3B9A6F922C1DD37084DCDACE07025_inline (XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* __this, const RuntimeMethod* method) { { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_0 = __this->____mappedType_13; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlTypeMapMemberNamespaces_t1493E4BE21467D51FB1CDE88D538FA97815D3112* ClassMap_get_NamespaceDeclarations_m5EF288255B1F07783CF889C781DB6D6BEAF133E1_inline (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method) { { XmlTypeMapMemberNamespaces_t1493E4BE21467D51FB1CDE88D538FA97815D3112* L_0 = __this->____namespaceDeclarations_10; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* ClassMap_get_ElementMembers_m28BCFDC1D5FC50F910FBCF82D9C30472482A505D_inline (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method) { { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = __this->____elementMembers_1; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* ClassMap_get_ReturnMember_m17D5284F4873CF87F02814AF5BD96CFD23737F32_inline (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method) { { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_0 = __this->____returnMember_12; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ClassMap_get_FlatLists_m852941CF165941C1EB03137482353B221F335DE9_inline (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method) { { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = __this->____flatLists_4; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlTypeMapMemberExpandable_get_FlatArrayIndex_mD83A6C690F8EA40C0FAF882E1549E0BD0831CC83_inline (XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->____flatArrayIndex_14; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlTypeMapMemberElement_get_ChoiceMember_m182A4AB876036DDA005F0760EF51C5FCA7F682D8_inline (XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->____choiceMember_11; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* XmlTypeMapMemberElement_get_ChoiceTypeData_m1C40274707406AC69F5536776D0276266332B845_inline (XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* __this, const RuntimeMethod* method) { { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_0 = __this->____choiceTypeData_13; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* XmlTypeMapElementInfo_get_Member_m6212D4CEC25E2BC416734944F4A82DE373456742_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method) { { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_0 = __this->____member_3; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlTypeMapMember_get_Index_m3EAB1243B03E5DBD10C6E7CA245E5A6C04406D12_inline (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->____index_1; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlTypeMapElementInfo_get_ExplicitOrder_m929232F83C9F294565C56EC38C5BACCA530DEDAB_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->____explicitOrder_10; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* Fixup_get_Ids_m9B1A1A8EC0662A14A92B000F90A276C18E7690B2_inline (Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* __this, const RuntimeMethod* method) { { StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_0 = __this->___ids_1; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* XmlTypeMapElementInfo_get_TypeData_m35F77B4421D417B4C175FD7A54571B7FBF96532E_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method) { { TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* L_0 = __this->____type_8; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* TypeData_get_FullTypeName_m391893730DDFEE90F76197075F599FEA2E60BE43_inline (TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___fullTypeName_5; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* XmlTypeMapElementInfo_get_MappedType_m240A78959A2E9A6CE992F5EC6B77DDFC137AF032_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method) { { XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* L_0 = __this->____mappedType_7; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlTypeMapElementInfo_get_IsNullable_m5E6F72E9E7ADFA39100C6C0FFA1585BCDE4ACE75_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method) { { bool L_0 = __this->____isNullable_5; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* XmlTypeMapElementInfo_get_ChoiceValue_m7BC9464A497AFA7A1BF250BA0D88928706C6412E_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method) { { RuntimeObject* L_0 = __this->____choiceValue_4; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* TypeData_get_XmlType_m06749C1B19C57EB8649CBCD9B106C014DF511453_inline (TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___elementName_1; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* ClassMap_get_DefaultAnyElementMember_m65CFF55B342204FE2E39B8BDF46E733DD43C6B4B_inline (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method) { { XmlTypeMapMemberAnyElement_tC9C6D58B08CB2C84148376C77AC4259AF149C950* L_0 = __this->____defaultAnyElement_8; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* ClassMap_get_XmlTextCollector_m3FC50A0C0DEFAC7D4D70209D7D96C58AB7D1DA09_inline (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method) { { XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* L_0 = __this->____xmlTextCollector_11; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* XmlTypeMapMemberFlatList_get_ListMap_mAAD12C509481E6855A9C4865874566320C256EBC_inline (XmlTypeMapMemberFlatList_t443422643AA0E5FA5166EF6451BBA01D02004B38* __this, const RuntimeMethod* method) { { ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* L_0 = __this->____listMap_15; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ClassMap_get_ListMembers_m21D695B14B2AF42EC1850374FDA24CDE2B356649_inline (ClassMap_t4B31ADB19F7BB4DCFD9696C4F595B39B22677109* __this, const RuntimeMethod* method) { { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = __this->____listMembers_7; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Fixup_get_Source_mF424839086899F18C33B9604622D390C359819AE_inline (Fixup_tE94672CE3DEBD4DCFFB6AC052A9A6E0E7C6AA566* __this, const RuntimeMethod* method) { { RuntimeObject* L_0 = __this->___source_0; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TypeData_get_HasPublicConstructor_mB467688E3EC6E6B3AF0E9A179C1E173AB4FAC89D_inline (TypeData_t7337956773D9138116ADAB3E8CB50EDD106FA704* __this, const RuntimeMethod* method) { { bool L_0 = __this->___hasPublicConstructor_10; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t XmlTypeMapMember_get_GlobalIndex_mC43A1F277B76C624EFAF264B32293499D51853B6_inline (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->____globalIndex_2; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* ListMap_get_ItemInfo_mF4B1E24F5658D05E8E1E6296F4A220D33E7EC579_inline (ListMap_t4510F861363E17F1129649412EDC36CBE8AFD2BC* __this, const RuntimeMethod* method) { { XmlTypeMapElementInfoList_tFE45CC481B284D4ADA542B95E06DB49ABAC4BC78* L_0 = __this->____itemInfo_0; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* XmlSerializationWriter_get_Writer_m8083D941BEB14C7735FDB31C52ADBCCF5513C2BC_inline (XmlSerializationWriter_t96B46BC33680D6D6AB2580CA44C228109865151B* __this, const RuntimeMethod* method) { { XmlWriter_tCBC8D0C4891828A0A384C68D0414337F20E1A17F* L_0 = __this->___writer_4; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* DictionaryEntry_get_Value_m75FD18FE968AE131F28AA2CB0DF4895EBA39075E_inline (DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB* __this, const RuntimeMethod* method) { { RuntimeObject* L_0 = __this->____value_1; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* DictionaryEntry_get_Key_m09845C00732E530E6FCB9042079E90D3912215FE_inline (DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB* __this, const RuntimeMethod* method) { { RuntimeObject* L_0 = __this->____key_0; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlSerializationWriteCallback_Invoke_mC5FC4D5306E2C36BAE096E3B9BE05F4FC7488E9F_inline (XmlSerializationWriteCallback_t906E648579A93B5C0FAF441C570070927A3D7FAA* __this, RuntimeObject* ___0_o, const RuntimeMethod* method) { typedef void (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, const RuntimeMethod*); ((FunctionPointerType)__this->___invoke_impl_1)((Il2CppObject*)__this->___method_code_6, ___0_o, reinterpret_cast(__this->___method_3)); } 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 String_t* XmlTypeMapMemberAttribute_get_AttributeName_m79384B2B6097452969DD46364D07C2F8B353B064_inline (XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->____attributeName_10; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlTypeMapMemberAttribute_get_Namespace_m6907BC42459BA2FBEE550EF180E697DDF19A8C37_inline (XmlTypeMapMemberAttribute_tD47726060DC8BC868E2BE2A613912531B2ED97A4* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->____namespace_11; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* XmlTypeMapMember_get_DefaultValue_m9E7FE48431CBCD4C9757423398D48F30B919CFC3_inline (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, const RuntimeMethod* method) { { RuntimeObject* L_0 = __this->____defaultValue_8; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlTypeMapElementInfo_get_WrappedElement_m4A1874E9B5785B35A519EC5266425156A3B78468_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method) { { bool L_0 = __this->____wrappedElement_9; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlTypeMapElementInfo_get_ElementName_m2B2B6484154E046A7FE5BE46092BF91A7B75D9CC_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->____elementName_0; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlTypeMapElementInfo_get_Namespace_m94DAAADC3EFEBC302C4D3574BD4835F222345498_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->____namespace_1; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlTypeMapping_get_MultiReferenceType_m6FF513956B40419EBD15B5C1D3B0DEA151AABD84_inline (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, const RuntimeMethod* method) { { bool L_0 = __this->___multiReferenceType_11; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlAttributeEventHandler_Invoke_m99D8E43DDDA786B20D62CC1A2BEE07B550FD459D_inline (XmlAttributeEventHandler_tA9EE5C77A13FDC19DB5B3340F27245C620480F65* __this, RuntimeObject* ___0_sender, XmlAttributeEventArgs_tE2113D9D778F9CC7EBD3D619A0342DB8C9CC7897* ___1_e, const RuntimeMethod* method) { typedef void (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, XmlAttributeEventArgs_tE2113D9D778F9CC7EBD3D619A0342DB8C9CC7897*, const RuntimeMethod*); ((FunctionPointerType)__this->___invoke_impl_1)((Il2CppObject*)__this->___method_code_6, ___0_sender, ___1_e, reinterpret_cast(__this->___method_3)); } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlElementEventHandler_Invoke_m46A4766C6A278307DA5CA525C68490202667A38A_inline (XmlElementEventHandler_tA1451D76D0A21C15B71AC8B380CC097DF71951F3* __this, RuntimeObject* ___0_sender, XmlElementEventArgs_t415AB97F2EC45400E0E5FD5DCEE66D2FC4912036* ___1_e, const RuntimeMethod* method) { typedef void (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, XmlElementEventArgs_t415AB97F2EC45400E0E5FD5DCEE66D2FC4912036*, const RuntimeMethod*); ((FunctionPointerType)__this->___invoke_impl_1)((Il2CppObject*)__this->___method_code_6, ___0_sender, ___1_e, reinterpret_cast(__this->___method_3)); } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlNodeEventHandler_Invoke_mD6415CD57C5676C16FFFABFA463D1D68AC910D91_inline (XmlNodeEventHandler_t32503D9F2F1A9E9E183779774CEFC13425BF6670* __this, RuntimeObject* ___0_sender, XmlNodeEventArgs_tD4D3A349309C779296ED1395F49A9D4793D2E21D* ___1_e, const RuntimeMethod* method) { typedef void (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, XmlNodeEventArgs_tD4D3A349309C779296ED1395F49A9D4793D2E21D*, const RuntimeMethod*); ((FunctionPointerType)__this->___invoke_impl_1)((Il2CppObject*)__this->___method_code_6, ___0_sender, ___1_e, reinterpret_cast(__this->___method_3)); } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnreferencedObjectEventHandler_Invoke_m8877BE504717016EC402AE274F191FB7B64FB458_inline (UnreferencedObjectEventHandler_t7342B517610EE6E277FB060ED3C983CE68E0463A* __this, RuntimeObject* ___0_sender, UnreferencedObjectEventArgs_tA88A95B9F0BE849323A166089D04903D288C5760* ___1_e, const RuntimeMethod* method) { typedef void (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, UnreferencedObjectEventArgs_tA88A95B9F0BE849323A166089D04903D288C5760*, const RuntimeMethod*); ((FunctionPointerType)__this->___invoke_impl_1)((Il2CppObject*)__this->___method_code_6, ___0_sender, ___1_e, reinterpret_cast(__this->___method_3)); } 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 XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* XmlSerializer_get_Mapping_mF9907A88C9DE4C5C31ACD6804471760CBD17B84B_inline (XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* __this, const RuntimeMethod* method) { { XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* L_0 = __this->___typeMapping_5; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR SerializationSource_t2F3A53A0FFC7BF8994CF332961FD3C0671E4A58C* XmlMapping_get_Source_mE7270AE0C3619E1C39600FDE01BC069D94BB6652_inline (XmlMapping_t8D4AC99C7F2D51F3161C7E91E41E51097640CE97* __this, const RuntimeMethod* method) { { SerializationSource_t2F3A53A0FFC7BF8994CF332961FD3C0671E4A58C* L_0 = __this->___source_3; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo_set_ElementName_mEE8DF5FA9A346D3D437DF38E2B5E0BC20AA5DC40_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, String_t* ___0_value, const RuntimeMethod* method) { { String_t* L_0 = ___0_value; __this->____elementName_0 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->____elementName_0), (void*)L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapElementInfo_set_Namespace_mB1BAB4E18DAF612183E318500F2010C73D7B3B5A_inline (XmlTypeMapElementInfo_t5F83002BBC016801717A20C4B72781DEA06DEB32* __this, String_t* ___0_value, const RuntimeMethod* method) { { String_t* L_0 = ___0_value; __this->____namespace_1 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->____namespace_1), (void*)L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlSchemaProviderAttribute_get_IsAny_mEEC8E5450FC08174F878AE52B6DD1DB1E1E03014_inline (XmlSchemaProviderAttribute_t913656BFB1429C8144C9EE53E18CC300D1C431AF* __this, const RuntimeMethod* method) { { bool L_0 = __this->____isAny_1; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapping_set_IsAny_mFAEAE6BA5E6D80112F10CF222570B9BCF739A942_inline (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, bool ___0_value, const RuntimeMethod* method) { { bool L_0 = ___0_value; __this->___isAny_14 = L_0; return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlSchemaProviderAttribute_get_MethodName_mC1499496A0CFF04AD9F315ABB8D3709508EBF23A_inline (XmlSchemaProviderAttribute_t913656BFB1429C8144C9EE53E18CC300D1C431AF* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->____methodName_0; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlRootAttribute_get_Namespace_mFB0A84474D83BF812BA15DA2D59498384F202FE4_inline (XmlRootAttribute_t09EE81719C9B95C01B28D108765FB62737E75FAF* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___ns_3; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapping_set_XmlTypeNamespace_m29104EA2A5D1A505DAC69E158419FF55472C653D_inline (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, String_t* ___0_value, const RuntimeMethod* method) { { String_t* L_0 = ___0_value; __this->___xmlTypeNamespace_8 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlTypeNamespace_8), (void*)L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapping_set_XmlType_m32DCAB0634D72D0F98B59A7B0C5BBD4633E2B545_inline (XmlTypeMapping_tF9D5A0ADAF6340AEC2DB840127EAB75094AA58D9* __this, String_t* ___0_value, const RuntimeMethod* method) { { String_t* L_0 = ___0_value; __this->___xmlType_7 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___xmlType_7), (void*)L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* XmlSchema_get_Id_mFA10A91F54597E48FB75C5824D0263ABDAA8B6F5_inline (XmlSchema_t5C9506D00418BF5FD524254D0C6C405C620C941D* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->___id_16; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapMember_set_GlobalIndex_m472100DAE18C222CFAD14F0085743759FB1B11C3_inline (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, int32_t ___0_value, const RuntimeMethod* method) { { int32_t L_0 = ___0_value; __this->____globalIndex_2 = L_0; return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapMember_set_Index_m2CF151DEBC1293A91B0126F579B2CA6730CC4D56_inline (XmlTypeMapMember_t54E80D1B6FF58F90D480933D89DF25A6FDAF299A* __this, int32_t ___0_value, const RuntimeMethod* method) { { int32_t L_0 = ___0_value; __this->____index_1 = L_0; return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XmlTypeMapMemberElement_get_IsXmlTextCollector_m2FF0627D7710E6CB03FF540D8BE2AEF22ADB6570_inline (XmlTypeMapMemberElement_t0491AFE1B945AF7A354061BB5838673567076840* __this, const RuntimeMethod* method) { { bool L_0 = __this->____isTextCollector_12; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void XmlTypeMapMemberExpandable_set_FlatArrayIndex_m34257D88ADAD9D20AD7BD89FB29EA298553567CA_inline (XmlTypeMapMemberExpandable_tED3170CD402780E1250005E1131CD848660237FE* __this, int32_t ___0_value, const RuntimeMethod* method) { { int32_t L_0 = ___0_value; __this->____flatArrayIndex_14 = L_0; return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* EnumMapMember_get_EnumName_m2E7534A1D65579CB33E8B43EF4186FC12A2D1B89_inline (EnumMapMember_tB7A0813F20CFA0758843C38C2ECE325B13893E38* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->____enumName_1; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* EnumMapMember_get_XmlName_mECD2830C6795BE2A0206F5A72D819C8DBAE015E8_inline (EnumMapMember_tB7A0813F20CFA0758843C38C2ECE325B13893E38* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->____xmlName_0; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t EnumMapMember_get_Value_mD0B2EF80A4D874FF81E307E81063D9B52A98548E_inline (EnumMapMember_tB7A0813F20CFA0758843C38C2ECE325B13893E38* __this, const RuntimeMethod* method) { { int64_t L_0 = __this->____value_2; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D* EnumMap_get_Values_m91652E064D00536B1B286304F49E3FD1EBCD7FDC_inline (EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C* __this, const RuntimeMethod* method) { { Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D* L_0 = __this->____values_4; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* EnumMap_get_XmlNames_m2E3DD7C64B62B3C6217CD1FBA64B76409E4BBF5F_inline (EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C* __this, const RuntimeMethod* method) { { StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_0 = __this->____xmlNames_3; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool EnumMap_get_IsFlags_m579F34B1547F457834A6980C8E77BF1936D742CD_inline (EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C* __this, const RuntimeMethod* method) { { bool L_0 = __this->____isFlags_1; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* EnumMap_get_EnumNames_m60EAEB72502A0F1E05871326127A80033BA7E35E_inline (EnumMap_tB4A35B61F48010A5BBDBAB1CA145F3345576E30C* __this, const RuntimeMethod* method) { { StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_0 = __this->____enumNames_2; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* XslTransform_get_Debugger_mEF9F9CEAFBFA9858AFC8F03E58D4AA42C7EF56AB_inline (XslTransform_t32C87F5469FF9F15D11EAA03EE708AF205AE4BE0* __this, const RuntimeMethod* method) { { RuntimeObject* L_0 = __this->___debugger_3; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Stylesheet_t877F8405A546EAB0A26CE0F54A7F48533686E5AB* Compiler_get_CompiledStylesheet_mA280D11E65BC25A124F7D85975F74CC6DC7D4F13_inline (Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* __this, const RuntimeMethod* method) { { Stylesheet_t877F8405A546EAB0A26CE0F54A7F48533686E5AB* L_0 = __this->___stylesheet_12; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_t34BD5FC03C0DFF68F2817059E6FD410AD98DF02A* Compiler_get_QueryStore_mE01B86F79B6BDABD76E3C8ECAFB10ADFD44A8B67_inline (Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* __this, const RuntimeMethod* method) { { List_1_t34BD5FC03C0DFF68F2817059E6FD410AD98DF02A* L_0 = __this->___queryStore_15; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RootAction_t94281C7ECEF5D1837C8264D38E4486DF137E7035* Compiler_get_RootAction_m2D01397452DADB6B7E8A55597729C7558400CCAE_inline (Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* __this, const RuntimeMethod* method) { { RootAction_t94281C7ECEF5D1837C8264D38E4486DF137E7035* L_0 = __this->___rootAction_14; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* SerializationEntry_get_Name_mF6151F31B3F43C88AF08F39F178401406642EB67_inline (SerializationEntry_t6A03B35039769EF0EDD14BE879E68F1C104FFF74* __this, const RuntimeMethod* method) { { String_t* L_0 = __this->____name_0; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* SerializationEntry_get_Value_mA57713535F866795C180D20067C0E38A85327912_inline (SerializationEntry_t6A03B35039769EF0EDD14BE879E68F1C104FFF74* __this, const RuntimeMethod* method) { { RuntimeObject* L_0 = __this->____value_1; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline (Exception_t* __this, int32_t ___0_value, const RuntimeMethod* method) { { int32_t L_0 = ___0_value; __this->____HResult_11 = L_0; return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool XsltSettings_get_EnableScript_m4D2A4FDA3AA730C3B7A172DC071FC43E4EC48052_inline (XsltSettings_tA9657F26E369F2962E205F2EB1CFE7345AFE0AF8* __this, const RuntimeMethod* method) { { bool L_0 = __this->___enableScript_1; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ActionFrame_set_State_m663CEB8FCA17DF07B008588F536CAC43C08583D5_inline (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, int32_t ___0_value, const RuntimeMethod* method) { { int32_t L_0 = ___0_value; __this->___state_0 = L_0; return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ActionFrame_get_State_m6C7068E9000AA86183FA799E3F92521FE6E76E7C_inline (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->___state_0; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Stylesheet_t877F8405A546EAB0A26CE0F54A7F48533686E5AB* Processor_get_Stylesheet_m320A6D19C9D7650EAA886B1DA0049838ACC6FA28_inline (Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83* __this, const RuntimeMethod* method) { { Stylesheet_t877F8405A546EAB0A26CE0F54A7F48533686E5AB* L_0 = __this->___stylesheet_1; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Stylesheet_get_Whitespace_m1938629178E91807BB328BDDCCC9D57D168BCCF9_inline (Stylesheet_t877F8405A546EAB0A26CE0F54A7F48533686E5AB* __this, const RuntimeMethod* method) { { bool L_0 = __this->___whitespace_7; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* SortKey_get_Node_m49F470092A325A8D83EDA0C52414CE4DD725A8CA_inline (SortKey_tE0F5DE6818DC859C42F339AE7E95298553919EED* __this, const RuntimeMethod* method) { { XPathNavigator_tC010C20907D6C6F1589A1BF1B5BE4C313C289E13* L_0 = __this->____node_3; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* Compiler_get_CurrentMode_mB6C9CA51647A0026CAD3E9127E5D7668F0419190_inline (Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* __this, const RuntimeMethod* method) { { XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_0 = __this->___currentMode_5; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* ActionFrame_get_NodeSet_mCEA23754D948C80341C63E6DCD6B28A7C1DD8FBA_inline (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, const RuntimeMethod* method) { { XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* L_0 = __this->___nodeSet_7; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ApplyTemplatesAction_t6239D436A0DB073AAF03DC4786AE2F86E4C60793* ApplyTemplatesAction_BuiltInRule_mBE6878C9A009CABCB9CD883A70302DDFA405ABDB_inline (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ApplyTemplatesAction_t6239D436A0DB073AAF03DC4786AE2F86E4C60793_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_runtime_class_init_inline(ApplyTemplatesAction_t6239D436A0DB073AAF03DC4786AE2F86E4C60793_il2cpp_TypeInfo_var); ApplyTemplatesAction_t6239D436A0DB073AAF03DC4786AE2F86E4C60793* L_0 = ((ApplyTemplatesAction_t6239D436A0DB073AAF03DC4786AE2F86E4C60793_StaticFields*)il2cpp_codegen_static_fields_for(ApplyTemplatesAction_t6239D436A0DB073AAF03DC4786AE2F86E4C60793_il2cpp_TypeInfo_var))->___s_BuiltInRule_5; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NavigatorInput_t320297C3DA5C438B7B111C375918046FAAE8F8A6* Compiler_get_Input_m4CB6E2667545733AA0FCB111CACB30EEB9B632C4_inline (Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* __this, const RuntimeMethod* method) { { NavigatorInput_t320297C3DA5C438B7B111C375918046FAAE8F8A6* L_0 = __this->___input_9; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeywordsTable_t0E219DF02F8110A89E6F0FA77F351B312037EF83* Compiler_get_Atoms_mACC1EA63994DCCCFF058820A88AF91AFE3149A98_inline (Compiler_tA7E4EA708AA5349B710402BC130C1A41ADDAD5A5* __this, const RuntimeMethod* method) { { KeywordsTable_t0E219DF02F8110A89E6F0FA77F351B312037EF83* L_0 = __this->___atoms_10; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeywordsTable_t0E219DF02F8110A89E6F0FA77F351B312037EF83* NavigatorInput_get_Atoms_m6860F1A958F5B7057EA725AD9704011D6CB6F993_inline (NavigatorInput_t320297C3DA5C438B7B111C375918046FAAE8F8A6* __this, const RuntimeMethod* method) { { KeywordsTable_t0E219DF02F8110A89E6F0FA77F351B312037EF83* L_0 = __this->____Atoms_5; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* VariableAction_get_Name_m513EB54577C762D5F08192F32C47D0917E3A0BD7_inline (VariableAction_t9CEFA9798405B9FCA0724A80692D1902659AE136* __this, const RuntimeMethod* method) { { XmlQualifiedName_t2794880B373257E4108CC3F36D7373A343ACC5B9* L_0 = __this->___name_4; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ActionFrame_InitNewNodeSet_m90A241AB98A562D3BF2BB72712F3BE72C65623B1_inline (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* ___0_nodeSet, const RuntimeMethod* method) { { XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* L_0 = ___0_nodeSet; __this->___newNodeSet_8 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___newNodeSet_8), (void*)L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* Processor_get_SortArray_mD77A7777515A0F68D949FE6761F0D9E0D49E5143_inline (Processor_t3B9B29F6FB8F466D0F809381778264100A2B0F83* __this, const RuntimeMethod* method) { { ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = __this->___sortArray_22; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* ActionFrame_get_NewNodeSet_m64499B616519A81E2895E932777D4542D6645ED1_inline (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, const RuntimeMethod* method) { { XPathNodeIterator_t66EEBD00F1DC503EEF7D1F7D9B724A446A53223B* L_0 = __this->___newNodeSet_8; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ActionFrame_set_CalulatedName_m2B99ED2D21B50B1ADB0760CBCF1DB3AF05093D03_inline (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95* ___0_value, const RuntimeMethod* method) { { PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95* L_0 = ___0_value; __this->___calulatedName_9 = L_0; Il2CppCodeGenWriteBarrier((void**)(&__this->___calulatedName_9), (void*)L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95* ActionFrame_get_CalulatedName_mED295E10C089643BF4861C7A633DB0349919429A_inline (ActionFrame_t085087FBA2917451DD56E4CD2AB1B9C45078CA5F* __this, const RuntimeMethod* method) { { PrefixQName_t93CF16E0DA209C995BB5E53161330B99852C5A95* L_0 = __this->___calulatedName_9; return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_gshared_inline (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* __this, const RuntimeMethod* method) { { bool L_0 = (bool)__this->___hasValue_0; return L_0; } } 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 void List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___0_item, const RuntimeMethod* method) { ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_0 = NULL; int32_t V_1 = 0; { int32_t L_0 = (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 = ___0_item; NullCheck(L_6); (L_6)->SetAt(static_cast(L_7), (RuntimeObject*)L_8); return; } IL_0034: { RuntimeObject* L_9 = ___0_item; (( 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 ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* Array_Empty_TisRuntimeObject_mFB8A63D602BB6974D31E20300D9EB89C6FE7C278_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; } }