#include "pch-cpp.hpp" #ifndef _MSC_VER # include #else # include #endif #include #include struct VirtualActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, invokeData.method); } }; template struct VirtualActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template struct VirtualActionInvoker2 { typedef void (*Action)(void*, T1, T2, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template struct 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 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); } }; template struct GenericVirtualActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template struct GenericVirtualActionInvoker2 { typedef void (*Action)(void*, T1, T2, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, p1, p2, 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 InterfaceActionInvoker2 { typedef void (*Action)(void*, T1, T2, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template struct InterfaceActionInvoker3 { typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2, T3 p3) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method); } }; template struct InterfaceFuncInvoker0 { typedef R (*Func)(void*, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, invokeData.method); } }; template struct InterfaceFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template struct InterfaceFuncInvoker2 { typedef R (*Func)(void*, T1, T2, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; struct GenericInterfaceActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, invokeData.method); } }; // System.Action`1 struct Action_1_t0F808BECFC00C2BA783741BFBB1E452E1850A394; // System.Action`1 struct Action_1_t09C12AA7E5E85A97B5B1F128A642D012DF05E10F; // System.Action`1 struct Action_1_tB0049C0C5F759294C4324FC2F877CB233B2CE88C; // System.Action`1 struct Action_1_t080BA8EFA9616A494EBB4DD352BFEF943792E05B; // System.Action`1 struct Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC; // System.Action`1 struct Action_1_t41459F578D5FCF151500CBC8CF9276BDC6C984FE; // System.Action`2 struct Action_2_tEEDE22E9727265D12EED7DDDBA22217341029552; // System.Action`2 struct Action_2_t110B526D14830B3074682426066849C15C290882; // System.Action`2 struct Action_2_tB1E900EE56707598576A70203857030B4D9C936C; // System.Action`2 struct Action_2_t502726B4D7373B9926DF64C2ADAAA5BD8A314062; // System.Action`3 struct Action_3_t2B590811781714B7E9AEF6A3F3962EEC9ED5FF32; // BestHTTP.Extensions.CircularBuffer`1 struct CircularBuffer_1_t0EEE361509A7632E72FAA9678BD22A0E639DEC88; // System.Comparison`1 struct Comparison_1_t97B2A8BC9742CE824022B71E5E5A340C030DADC4; // System.Comparison`1 struct Comparison_1_tB56E8E7C2BF431D44E8EBD15EA3E6F41AAFF03D2; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t30A4EEA989621CA9B6EE93D537EC7E1889ABAEAD; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D; // System.Collections.Generic.Dictionary`2> struct Dictionary_2_t3CA977FBCA3158664D7AB53A25D36155F805ABB3; // System.Collections.Generic.Dictionary`2> struct Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tF4468D80E7CE97788C2E325EC65E231981A653F6; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tA951181AD5BB597EA527552FB0018E7527A392E6; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tF5B4A5A925F35194AB6289544146EEDFF54229AC; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t470893CE409900ABAC60976F4121AC4F831D4ACD; // System.Func`1 struct Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F; // System.Func`1 struct Func_1_t807CEE610086E24A0167BAA97A64062016E09D49; // System.Func`1 struct Func_1_t2F3325DADD1F420568A48646BFC825E9F29472B1; // System.Func`2 struct Func_2_t50F598941CFDF02619DC5D52FFDBC329473C5F7B; // System.Func`4 struct Func_4_t0EA5243FC4B656A18B7AC7B130FD78666AA9FE84; // System.Func`4 struct Func_4_tF6F189D6D926408D029FFFF408F38CEC6A26084E; // System.Collections.Generic.HashSet`1 struct HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B; // System.Collections.Generic.HashSet`1 struct HashSet_1_t45F75268054D01D9E70EB33D7F6D2FA609DB9229; // System.Collections.Generic.IEnumerable`1 struct IEnumerable_1_tC8A2A0ABD20D54FA24CEEB90769597E372C17FB6; // System.Collections.Generic.IEnumerable`1 struct IEnumerable_1_t52B1AC8D9E5E1ED28DF6C46A37C9A1B00B394F9D; // System.Collections.Generic.IEqualityComparer`1 struct IEqualityComparer_1_t1A386BEF1855064FD5CC71F340A68881A52B4932; // System.Collections.Generic.IEqualityComparer`1 struct IEqualityComparer_1_tE6A65C5E45E33FD7D9849FD0914DE3AD32B68050; // System.Collections.Generic.IEqualityComparer`1 struct IEqualityComparer_1_tAFCE72ADC2EDFFA5D34E7918994DD34A8583449F; // System.Collections.Generic.IEqualityComparer`1 struct IEqualityComparer_1_t49CCC3186430056EBDC649DC65702DD3917744A0; // System.Collections.Generic.Dictionary`2/KeyCollection> struct KeyCollection_tFADD239CE1F7F58DB653D6C58588EA919DE0F9C5; // System.Collections.Generic.Dictionary`2/KeyCollection> struct KeyCollection_tFDE7FE6F6A0AE461D4FD5935445ADF914C9610C8; // System.Collections.Generic.Dictionary`2/KeyCollection struct KeyCollection_t0AE40DB207EC49843B4FAB9BAF28D53F3CD8C8B0; // System.Collections.Generic.Dictionary`2/KeyCollection struct KeyCollection_t2279FB387D8A4C4355AE9ADD613394674B5B306E; // System.Collections.Generic.Dictionary`2/KeyCollection struct KeyCollection_t688C48BD28F7E33670ACEE7DFE9D45BA5BDD1CF9; // System.Collections.Generic.LinkedListNode`1 struct LinkedListNode_1_t44E058806892713895B08C561508F75328F5F05A; // System.Collections.Generic.LinkedListNode`1 struct LinkedListNode_1_tF40B0719F8838F79333922567D1CFDB4B3B71904; // System.Collections.Generic.LinkedListNode`1 struct LinkedListNode_1_tE9D663EA27667E3E9F8E311FC56B32F3E3D9B07F; // System.Collections.Generic.LinkedList`1 struct LinkedList_1_t4D1C6102EE9207074443C96892ECBFBD7BCA71B7; // System.Collections.Generic.LinkedList`1 struct LinkedList_1_t3656FF46586A1EDB68EC68E62D94A1284314CC08; // System.Collections.Generic.LinkedList`1 struct LinkedList_1_tF98410EEA26883FF7ECC1DFD10068A4CC744550B; // System.Collections.Generic.LinkedList`1 struct LinkedList_1_t622C3F883163157A244F5BF726BD781FF0482C54; // System.Collections.Generic.List`1 struct List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE; // System.Collections.Generic.List`1 struct List_1_t6642D08E578C77292ED5537CF3192269131C189C; // System.Collections.Generic.List`1 struct List_1_tFD38E11A811DED19252DF7684390FF692DB525C5; // System.Collections.Generic.List`1 struct List_1_t21BC49A4390CA067C4050F19A1D58BE64AC2E89E; // System.Collections.Generic.List`1 struct List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF; // System.Collections.Generic.List`1 struct List_1_t34AA4AF4E7352129CA58045901530E41445AC16D; // System.Collections.Generic.List`1 struct List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836; // System.Collections.Generic.List`1 struct List_1_tF9D8E572A8599785D6C36AD7BDC592752B89E0A1; // System.Collections.Generic.List`1 struct List_1_tE00ED8A38D30AEEF7640BA5742471CBFD07CC72D; // System.Collections.Generic.List`1 struct List_1_tAB6EE9557BF734F9EF011194835DEFD04B650ACD; // System.Collections.Generic.List`1 struct List_1_t406EC705E72137D2240DC7D4E2B21A200546B181; // System.Collections.Generic.List`1 struct List_1_tFBF8941865FA74B072CCEFDC9F4BB346FCA83144; // System.Collections.Generic.List`1 struct List_1_t149BF1AE616553E9302398F34B08E9CD0F02792E; // System.Collections.Generic.List`1 struct List_1_t815A476B0A21E183042059E705F9E505478CD8AE; // System.Collections.Generic.List`1 struct List_1_t857A27AA47EED217A2CFE04C0C9B7FCDDE0C284F; // System.Collections.Generic.List`1 struct List_1_t352705E9DD2D5F1DF5F736BA702EC66FA4697B44; // System.Collections.Generic.List`1 struct List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5; // System.Collections.Generic.List`1 struct List_1_t432BA4439FC00E108A9A351BD7FBCD9242270BB3; // System.Collections.Generic.List`1 struct List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3; // System.Collections.Generic.List`1 struct List_1_t08B78D4D8AA7967CCB0B188F26199678C0124DF1; // System.Collections.Generic.List`1 struct List_1_tC68C1FDC8957D84E9A7C1DB169384F9F4A1D686A; // System.Collections.Generic.List`1 struct List_1_t3F9EF315AB2F77BBF0220562A966A7A60FD0DF56; // System.Predicate`1 struct Predicate_1_t39705BC94BB4A2ECA2F5A3EF2CAA5FF6B9B99860; // System.Predicate`1 struct Predicate_1_tB4F754B3E9DEE1E0D6B5EF4F2E333344DE8909B5; // System.Predicate`1 struct Predicate_1_tC838A5EB8B3B9289CB9C0A2CF1806336669C565A; // System.Predicate`1 struct Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB; // System.Predicate`1 struct Predicate_1_t782ED4F640A61B7ACA1DD787F7C4993C746207B3; // System.Collections.Generic.Queue`1 struct Queue_1_tAF2A710AEBB98604F7E35A3CD161FA0838FD96D4; // JCUnityLib.Singleton`1 struct Singleton_1_t4C10A31CE8B158E185660F1293127F7D95894322; // JCUnityLib.Singleton`1 struct Singleton_1_t071853BF0705B5B5B8F435CF6F7E4AE60E60507D; // System.Threading.Tasks.Task`1 struct Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725; // DG.Tweening.TweenCallback`1 struct TweenCallback_1_t145CD5D30F08B617B445D2B1B79A7BAADC305B9B; // UnityEngine.UI.CoroutineTween.TweenRunner`1 struct TweenRunner_1_tD84B9953874682FCC36990AF2C54D748293908F3; // UnityEngine.Events.UnityAction`1 struct UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A; // UnityEngine.Events.UnityAction`1 struct UnityAction_1_t4A1848C01D99711D0E3D235F1FDBBA96BA48B647; // UnityEngine.Events.UnityEvent`1 struct UnityEvent_1_t32063FE815890FF672DF76288FAC4ABE089B899F; // UnityEngine.Events.UnityEvent`1 struct UnityEvent_1_t208A952325F66BFCB1EDEECEFEF5F1C7A16298A0; // System.Collections.Generic.Dictionary`2/ValueCollection> struct ValueCollection_t023E9821E81BF515DC3123A885A210A2E40D5642; // System.Collections.Generic.Dictionary`2/ValueCollection> struct ValueCollection_t3C26F2C1F184437F9AF9918EEA4CE247BD559468; // System.Collections.Generic.Dictionary`2/ValueCollection struct ValueCollection_t0A6A407E23889BA87FA826534005C4F75B7D17B6; // System.Collections.Generic.Dictionary`2/ValueCollection struct ValueCollection_t63908A12C333A73C1F61A241468EFF0D9687D74B; // System.Collections.Generic.Dictionary`2/ValueCollection struct ValueCollection_tE418F3E79BEBA8B712BEF9D63B479DA84B214666; // JCUnityLib.ViewManager`1 struct ViewManager_1_t5BDF7DFD13D86428BB0E5054ADC635CE0AE90F1E; // JCUnityLib.ViewManager`1 struct ViewManager_1_t1AF1B827CBD563D4EBB896DD162E2BB33D4C3FF0; // System.Collections.Generic.Dictionary`2/Entry>[] struct EntryU5BU5D_tE18846587C85764549F05477E26512783A080BB6; // System.Collections.Generic.Dictionary`2/Entry>[] struct EntryU5BU5D_tEB1A6A782C0FB4D167EF4299967371DCD8A5FDB7; // System.Collections.Generic.Dictionary`2/Entry[] struct EntryU5BU5D_t68640AF7054769CF1B94C73AA3924D7A8F5886F6; // System.Collections.Generic.Dictionary`2/Entry[] struct EntryU5BU5D_t429AF564CC42ADBD78C8E1846C01B251901FD1AE; // System.Collections.Generic.Dictionary`2/Entry[] struct EntryU5BU5D_tC3F65E876B938FBDB1AC45EBF80E240714B77E30; // System.Byte[][] struct ByteU5BU5DU5BU5D_t95107DE217CCFA8CD77945AC2CB9492D4D01FE8D; // ArduinoBluetoothAPI.BluetoothHelperService[] struct BluetoothHelperServiceU5BU5D_t5A3A20BCCF322FE87BA649BDC87BD8EF8F28093D; // UnityEngine.UI.Button[] struct ButtonU5BU5D_t2D8C7329F91F78C37FD1A3807DCD4366F7D7EC7B; // System.Byte[] struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726; // System.Char[] struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34; // BestHTTP.ConnectionBase[] struct ConnectionBaseU5BU5D_t4820A8B5C6276E9926DCCF379A6FA46C9DB26F9A; // BestHTTP.Cookies.Cookie[] struct CookieU5BU5D_tDF93A5552501FC6ED12D5E69F15104C81EF9F051; // System.Delegate[] struct DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8; // UnityEngine.GameObject[] struct GameObjectU5BU5D_tA88FC1A1FC9D4D73D0B3984D4B0ECE88F4C47642; // BestHTTP.Forms.HTTPFieldData[] struct HTTPFieldDataU5BU5D_tAD8FDF3D2548E3FA09A798625C0F06549E55228D; // BestHTTP.HTTPRequest[] struct HTTPRequestU5BU5D_t07CB6A710CA439BDB33EC53845374F01CEAF53BD; // BestHTTP.Extensions.IHeartbeat[] struct IHeartbeatU5BU5D_t4322B70693C3ACB994862FB60A37B1E4C042028D; // System.Int32[] struct Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32; // System.IntPtr[] struct IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6; // MenuBackInterface[] struct MenuBackInterfaceU5BU5D_tA24F6448F755036743002A4FC82ED96F18D421E5; // System.Object[] struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE; // UnityEngine.UI.Selectable[] struct SelectableU5BU5D_tECF9F5BDBF0652A937D18F10C883EFDAE2E62535; // System.Single[] struct SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA; // System.Diagnostics.StackTrace[] struct StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971; // System.String[] struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A; // System.Type[] struct TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755; // UnityEngine.UIVertex[] struct UIVertexU5BU5D_tE3D523C48DFEBC775876720DE2539A79FB7E5E5A; // UnityEngine.Vector2[] struct Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA; // UnityEngine.Vector3[] struct Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4; // System.Action struct Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6; // AgreementPopup struct AgreementPopup_tCC38F433C4A11AEF6FBB883ACABC611A73F4B3E6; // AgreenmentOption struct AgreenmentOption_t432B742374FB1C0EDA1654B663688306A3D77CDF; // AimHandler struct AimHandler_t09E6B497CE2A5136591A25DDCED60D7D7D00A563; // Org.BouncyCastle.Crypto.Tls2.AlwaysValidVerifyer struct AlwaysValidVerifyer_t7ADF972FD4D728037278659A56B61B9F7C918C6A; // UnityEngine.UI.AnimationTriggers struct AnimationTriggers_tF38CA7FA631709E096B57D732668D86081F44C11; // System.ArgumentException struct ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00; // System.ArgumentNullException struct ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB; // System.ArgumentOutOfRangeException struct ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8; // ArmBow struct ArmBow_tB6B0B80BF49B5CD1F51E828D121AF6CBE42F74E4; // System.AsyncCallback struct AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA; // AudioMgr struct AudioMgr_t37818C35286C2FF09D8B8FFF7E74D479D3817DA0; // UnityEngine.AudioSource struct AudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B; // AuthLoginMask struct AuthLoginMask_t5885C21EF2FAB0AE37931AB74598E783A4925962; // System.Threading.AutoResetEvent struct AutoResetEvent_t3B012223F0DE760BF0D282C5F7B9084C6D3AF53D; // AxisBaseHandler struct AxisBaseHandler_tB2ADEE63CF0D81D5D1EE9EF876E6CA6BCF7AA09D; // System.IO.BinaryReader struct BinaryReader_t4F45C15FF44F8E1C105704A21FFBE58D60015128; // System.IO.BinaryWriter struct BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F; // System.Reflection.Binder struct Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30; // ArduinoBluetoothAPI.BluetoothHelper struct BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2; // ArduinoBluetoothAPI.BluetoothHelperCharacteristic struct BluetoothHelperCharacteristic_t192402A7C03FD9857C87822D541F8737A469B6E9; // ArduinoBluetoothAPI.BluetoothHelperService struct BluetoothHelperService_t4C830DA91BDB3A9EC558D45C55A9318E931CA2A9; // BestHTTP.Extensions.BufferPoolMemoryStream struct BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B; // UnityEngine.UI.Button struct Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.ByteQueue struct ByteQueue_tFCDD21AF1559BE58C2488F5FA5AEBAA16ED1A471; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.ByteQueueStream struct ByteQueueStream_t4D33684562A3B8282ABEF110EF63454A9E2B6CF8; // UnityEngine.Camera struct Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C; // UnityEngine.Canvas struct Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA; // UnityEngine.CanvasRenderer struct CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E; // UnityEngine.UI.CanvasScaler struct CanvasScaler_t8EF50255FD2913C31BD62B14476C994F64D711F1; // CaptchaController struct CaptchaController_t43D34329B0D2332B81C73361818403490AF27437; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.Certificate struct Certificate_t31EFEC0119C00E11336F10F40156AF72B3D4EE8E; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.CertificateRequest struct CertificateRequest_t563CAFA8CE312838EF79883A288ACC021302D620; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.CertificateStatus struct CertificateStatus_t51F07730DE508AD3EE89644D00A5B214706D27A3; // System.Globalization.CodePageDataItem struct CodePageDataItem_t09A62F57142BF0456C8F414898A37E79BCC9F09E; // UnityEngine.Component struct Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684; // BestHTTP.ConnectionBase struct ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57; // BestHTTP.Cookies.Cookie struct Cookie_tC21D2404C4CCA8449C9DB970939F9DFB8CE61EC2; // UnityEngine.Coroutine struct Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7; // BestHTTP.Authentication.Credentials struct Credentials_tD6C60AC7DFFD64212481FBCB4AF02846196F5CE8; // JC.Unity.Picker.DatePickerGroup struct DatePickerGroup_t71E7FBA55BB588830802A8486F57942BFFB72516; // System.Text.Decoder struct Decoder_t91B2ED8AEC25AA24D23A00265203BE992B12C370; // System.Text.DecoderFallback struct DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D; // BestHTTP.PlatformSupport.FileSystem.DefaultIOService struct DefaultIOService_tC04F35048EAA8FDBBB1E12D95E091A27EA271DDC; // BestHTTP.Logger.DefaultLogger struct DefaultLogger_t7E3DFAD4BFABAD5605389979F1604A7952296EB7; // System.Delegate struct Delegate_t; // System.DelegateData struct DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288; // BestHTTP.Authentication.Digest struct Digest_tECBB0FFA62FFE1D74BB3E5FD1C60635385FCE734; // DG.Tweening.EaseFunction struct EaseFunction_tC7ECEFDCAE4EC041E6FD7AC7C021E7B7680EFEB9; // System.Text.Encoder struct Encoder_t5095F24D3B1D0F70D08762B980731B9F1ADEE56A; // System.Text.EncoderFallback struct EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4; // System.Text.Encoding struct Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827; // System.Net.EndPoint struct EndPoint_t18D4AE8D03090A2B262136E59F95CE61418C34DA; // UnityEngine.Event struct Event_tED49F8EC5A2514F6E877E301B1AB7ABE4647253E; // BestHTTP.ServerSentEvents.EventSourceResponse struct EventSourceResponse_t8DF68E0CA897F157917279A5863C7A8730E5524A; // System.Exception struct Exception_t; // BestHTTP.FileConnection struct FileConnection_tA6431B122AA31FBDD3050A1D909840045D1B0BAA; // UnityEngine.UI.FontData struct FontData_t0F1E9B3ED8136CD40782AC9A6AFB69CAD127C738; // BestHTTP.Decompression.Zlib.GZipStream struct GZipStream_t99D1C296F7C62A7A6ED44277279DB835B13B37F1; // UnityEngine.GameObject struct GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319; // UnityEngine.UI.Graphic struct Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24; // UnityEngine.UI.GridLayoutGroup struct GridLayoutGroup_tE25FFEE93AF1291734B4EB8DA986D23A500E7C28; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.Drbg.HMacSP800Drbg struct HMacSP800Drbg_tE713E6D9192F0F6E8E212585185241A5A0EFFE21; // HRB_Bluetooth struct HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D; // HRB_Controller struct HRB_Controller_tE1A7F19BF3E22DAFD78C6889E6DBEB285342C247; // HRB_DegreaseView struct HRB_DegreaseView_tBFDCE6B3DF07E6FBF2F3EF05AE4AD2B9481183BD; // HRB_HomeView struct HRB_HomeView_t287CA33A5A196A46E071D4C02FE00DF5C3C4C9F0; // HRB_LoginView struct HRB_LoginView_tAB63EA9B74F3B36084D0BEFF7E1F1C66212D2A07; // HRB_MeView struct HRB_MeView_t6E8399EB5C5A369A0E043C949BB4F953DF0A9C76; // HRB_Mgr struct HRB_Mgr_tC4108F6765C8604CCCC0B79BCF577788E303F856; // HRB_PlanView struct HRB_PlanView_t5BDCE3FB207F5302CCB99DF4865485D4F727F9D3; // HRB_RegisterView struct HRB_RegisterView_t359F235962408A9007BD942F4F568BC3DFBB2D3D; // HRB_UserInfo struct HRB_UserInfo_t33A1D91CD880DFDBEF533505A82350E3D3C8B6A9; // HRB_ViewMgr struct HRB_ViewMgr_tA45A4A89DBF774D4F4AEFF894E68F37285F780FC; // BestHTTP.Caching.HTTPCacheFileInfo struct HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA; // BestHTTP.Caching.HTTPCacheFileLock struct HTTPCacheFileLock_tE761A404D3A29EF0543FB5A8C3CEED2DB0C74351; // BestHTTP.Caching.HTTPCacheMaintananceParams struct HTTPCacheMaintananceParams_t3C1DDABAF1478424BBFF3E0EEFDF7E81843C8142; // BestHTTP.HTTPConnection struct HTTPConnection_t51D075C863581CF6C0E77BBABD92B87EA1F23C9A; // BestHTTP.HTTPConnectionRecycledDelegate struct HTTPConnectionRecycledDelegate_t386301071C1322CEA345542DD58665526B1CA85A; // BestHTTP.Forms.HTTPFieldData struct HTTPFieldData_t6D10CC260BB01415CE5644EAC56F0E4785C7C16E; // BestHTTP.Forms.HTTPFormBase struct HTTPFormBase_t62B2F52574B8465343CE4B246C6021BC42A45BF2; // BestHTTP.Forms.HTTPMultiPartForm struct HTTPMultiPartForm_t495EC7057C9CBD041C4F7F5C73534368C58AB3F3; // BestHTTP.HTTPProxy struct HTTPProxy_tFC2D52414714BA2872C2308AC3BCDB4AF918C51E; // BestHTTP.HTTPRange struct HTTPRange_t20F26AB96B01FD02CEFFC27DC68C91383CF6C16B; // BestHTTP.HTTPRequest struct HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42; // BestHTTP.HTTPResponse struct HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD; // BestHTTP.Forms.HTTPUrlEncodedForm struct HTTPUrlEncodedForm_t8E2BE5AB6A6F3A3D8260820746C46CA2A35572AF; // System.Collections.Hashtable struct Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC; // BestHTTP.Extensions.HeartbeatManager struct HeartbeatManager_tC2289824FFCE494A74441E065011CD0E66C2134E; // System.IAsyncResult struct IAsyncResult_tC9F97BF36FCF122D29D3101D80642278297BF370; // Org.BouncyCastle.Crypto.Tls2.ICertificateVerifyer struct ICertificateVerifyer_t7FF89D73580A6E6A7FF6E40E7670C1BF3E8F0CAB; // Org.BouncyCastle.Crypto.Tls2.IClientCredentialsProvider struct IClientCredentialsProvider_tAA7262E853B0CACED4DFA19BA071BB2F2315DEEA; // System.Collections.IDictionary struct IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IEntropySource struct IEntropySource_tB5D9DE195690CD14EA3F129F3F30B2B6A8B21CCE; // System.Collections.IEnumerator struct IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105; // System.IFormatProvider struct IFormatProvider_tF2AECC4B14F41D36718920D67F930CED940412DF; // BestHTTP.PlatformSupport.FileSystem.IIOService struct IIOService_tF7DA01C1F131FD1C1649DAA43FA8E1DB006B8586; // System.Collections.IList struct IList_tB15A9D6625D09661D6E47976BB626C703EC81910; // BestHTTP.Logger.ILogger struct ILogger_t095358641393F797166A40BDE9240B6A2C53D4AC; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IMac struct IMac_tF574CEDFF4E3D5D95581FD8DF86EF985AE61B37C; // Mono.Security.Interface.IMonoSslStream struct IMonoSslStream_t50FAA118318E74D7A4C370A3C3B4D8ADAF40C56E; // System.IOAsyncCallback struct IOAsyncCallback_tB965FCE75DB2822B784F36808F71EA447D5F977E; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.IRandomGenerator struct IRandomGenerator_tA534F4AC93EEA5CDB578DDE58AE9A1E9C7B7487A; // UnityEngine.UI.Image struct Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C; // UnityEngine.UI.InputField struct InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0; // InputFieldFocusListener struct InputFieldFocusListener_t56C02463411D50EFB479098C91BA0BA1C3150EB9; // System.InvalidOperationException struct InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB; // UnityEngine.Events.InvokableCallList struct InvokableCallList_tB7C66AA0C00F9C102C8BDC17A144E569AC7527A9; // BestHTTP.KeepAliveHeader struct KeepAliveHeader_t93C1CC9FD7D51F432D9A50741F9BC0EF59166924; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.KeyParameter struct KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC; // Org.BouncyCastle.Crypto.Tls2.LegacyTlsClient struct LegacyTlsClient_t4BEFCBA84F5A2CA83714DEC1CCBE32EC12681856; // System.Net.Sockets.LingerOption struct LingerOption_t4E191E63AB49943D401B71B3E7830E6586CE0E34; // LoginController struct LoginController_t03F941FA0DBBB22F0DD5B41C1F54876FA93466B6; // UnityEngine.Material struct Material_t8927C00353A72755313F046D0CE85178AE8218EE; // System.Reflection.MemberFilter struct MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81; // System.IO.MemoryStream struct MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C; // MenuBackController struct MenuBackController_t545B27D5E7BCA7C609808B7960239E0FC034ADA4; // MenuBackInterface struct MenuBackInterface_t83F97C72E65FAFC7D5CBB95AEC59CFFB70710488; // UnityEngine.Mesh struct Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6; // BestHTTP.ServerSentEvents.Message struct Message_t9016A4972C3EBC661DC5D9A88B10EEFE5611182B; // System.Reflection.MethodInfo struct MethodInfo_t; // System.MissingFieldException struct MissingFieldException_t608CFBD864BEF9A5608F5E4EE1AFF009769E835A; // ModalView struct ModalView_t9B83CB8D1F9EB77ADD6979D124AEB4E25CB586FA; // UnityEngine.MonoBehaviour struct MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A; // Mono.Security.Interface.MonoTlsProvider struct MonoTlsProvider_tBE72637BEDBD1516A1BC30D94F7159B7289CF0D7; // System.Net.Sockets.NetworkStream struct NetworkStream_t160A2538024FE3EC707872435D01F1C20B3B1A48; // System.NotImplementedException struct NotImplementedException_t26260C4EE0444C5FA022994203060B3A42A3ADE6; // System.NotSupportedException struct NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339; // UnityEngine.Object struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A; // BestHTTP.OnBeforeHeaderSendDelegate struct OnBeforeHeaderSendDelegate_t14E6C0AF9AE042EBCE08E9B5911D7327A37DE05F; // BestHTTP.OnBeforeRedirectionDelegate struct OnBeforeRedirectionDelegate_t81B75D27201DA4FD218ADB97B6FCF92A176AE238; // BestHTTP.OnDownloadProgressDelegate struct OnDownloadProgressDelegate_t648A73937F176382A3E8E1252C79989D5EBC4F69; // BestHTTP.OnHeaderEnumerationDelegate struct OnHeaderEnumerationDelegate_t8569EB210DE78ADA6200BC74C9CE08E713FDE448; // BestHTTP.OnRequestFinishedDelegate struct OnRequestFinishedDelegate_t4E35BB5277ED27A8B43D1987DE7F3B47772018B4; // BestHTTP.OnUploadProgressDelegate struct OnUploadProgressDelegate_tA62D192773A1C4C68D3049C26CC8CD42AF64843D; // UnityEngine.Events.PersistentCallGroup struct PersistentCallGroup_t9A1D83DA2BA3118C103FA87D93CE92557A956FDC; // PopupMgr struct PopupMgr_t6FED92ED719BC99F2D92EB96849B1570DB8580AC; // BestHTTP.Proxy struct Proxy_t84F0DDAE5A37016479C7094FFB8F78835B8BD4F6; // BestHTTP.Forms.RawJsonForm struct RawJsonForm_tA9605806D5AACD3A9AF70E67E907BC172AB17FA8; // BestHTTP.Extensions.ReadOnlyBufferedStream struct ReadOnlyBufferedStream_tD77D50B2DC8D878C4C3960DD5EE5AEBB73439D34; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.RecordStream struct RecordStream_t7C44C947EB6F1ED4E1EE3A0869D4D9542A6D6C3E; // UnityEngine.UI.RectMask2D struct RectMask2D_tD909811991B341D752E4C978C89EFB80FA7A2B15; // UnityEngine.RectOffset struct RectOffset_tE3A58467CD0749AD9D3E1271F9E315B38F39AE70; // UnityEngine.RectTransform struct RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072; // System.Net.Security.RemoteCertificateValidationCallback struct RemoteCertificateValidationCallback_t69AACF4DA933279BC0F7916FB62BC05A5DC5A947; // RequestResult struct RequestResult_tCE96198172C7000A24026429191217E64CDA9DFB; // System.Runtime.Serialization.SafeSerializationManager struct SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F; // System.Net.Sockets.SafeSocketHandle struct SafeSocketHandle_t5050671179FB886DA1763A0E4EFB3FCD072363C9; // JCUnityLib.SceneResourceManager struct SceneResourceManager_t5836F17AC072ACCD0FB4CD2FFB6B814D68D0E0CF; // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom struct SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.SecurityParameters struct SecurityParameters_t6B17CF2860B92B5393C0EC2B7CF4986ABB598803; // UnityEngine.UI.Selectable struct Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD; // System.Threading.SemaphoreSlim struct SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385; // DG.Tweening.Sequence struct Sequence_tE01FFFCA34A537CE2FF32EDAF451CDEC55A1399E; // System.Runtime.Serialization.SerializationInfo struct SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.SessionParameters struct SessionParameters_tD123179695A5EB2FFEFF3AF304B4499FA9EFB48D; // SimulateMouseController struct SimulateMouseController_tA70BEF03B40F921CF76BC22EDFB7F57083FD43F5; // System.Net.Sockets.Socket struct Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09; // UnityEngine.Sprite struct Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9; // System.Net.Security.SslStream struct SslStream_t8C3E1BFCC63C3FC9A4684697FFBBA81B843D5F49; // System.IO.Stream struct Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB; // System.String struct String_t; // BestHTTP.PlatformSupport.TcpClient.General.TcpClient struct TcpClient_t31BAC3FC66E2985035A039820F08B7F64DC59075; // UnityEngine.UI.Text struct Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1; // UnityEngine.TextGenerator struct TextGenerator_t893F256D3587633108E00E5731CDC5A77AFF1B70; // UnityEngine.Texture2D struct Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF; // JCUnityLib.Throttler struct Throttler_t24208F2310962DD9B2C5169CB881DBF9E6A44246; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsAuthentication struct TlsAuthentication_t5FA1BEF9526C288C8F717080E2AB1CA4B21FF542; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsCipherFactory struct TlsCipherFactory_t0F936DE1D412BE079F1BFABC4203B927A87F598E; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient struct TlsClient_tADD26470896CB199F4C404BD9550034A74297513; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientContext struct TlsClientContext_t18BBECA666BE004BF00BF3299931DD6893065D14; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientContextImpl struct TlsClientContextImpl_t48A01699A13F38CB5BB4D48327DFCE056C9647CF; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol struct TlsClientProtocol_t699CCD2E87EC8483837B996FB590D11781975967; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsDHVerifier struct TlsDHVerifier_t8D593E9ED32E1CB273F0EC3B0EDB8D71A095FDE3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsKeyExchange struct TlsKeyExchange_t52E8C3B2BF640CA203CB3987859AB00DA9343807; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsSession struct TlsSession_t4CB6C94A80A6FE3AF5678CBB7475A74FE61AE4F0; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsStream struct TlsStream_tE67EA4971A8FA0C9BFF2779F6B2DA94770376E5A; // UnityEngine.UI.Toggle struct Toggle_t68F5A84CDD2BBAEA866F42EB4E0C9F2B431D612E; // UnityEngine.UI.ToggleGroup struct ToggleGroup_t12E1DFDEB3FFD979A20299EE42A94388AC619C95; // JCUnityLib.TouchChecker struct TouchChecker_t947EC531E7CCB512A72D6F50820DD968969FBAED; // UnityEngine.TouchScreenKeyboard struct TouchScreenKeyboard_t7964B2E9E52C4E095B14F01C32774B98CA11711E; // UnityEngine.Transform struct Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1; // DG.Tweening.TweenCallback struct TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB; // JCUnityLib.UI.TwoPoleSwitch struct TwoPoleSwitch_tE7E4EC1E9EA056C875ADC10C88ED8BC83B0DF540; // System.Type struct Type_t; // UnityEngine.Events.UnityAction struct UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099; // UnityEngine.Events.UnityEvent struct UnityEvent_tA0EA9BC49FD7D5185E7A238EF2E0E6F5D0EE27F4; // UnityEngine.Networking.UnityWebRequest struct UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E; // System.Uri struct Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612; // System.UriBuilder struct UriBuilder_t6FF22E0E019C73564385054BE4AF98E6C5EE0F42; // BestHTTP.Caching.UriComparer struct UriComparer_t06192E3DDBFFAEB5F378C881695DF101DDD71C49; // System.UriParser struct UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A; // UnityEngine.UI.VertexHelper struct VertexHelper_tDE8B67D3B076061C4F8DF325B0D63ED2E5367E55; // JCUnityLib.ViewBase struct ViewBase_tE400461F1C7843F494ACB48A3DFF21BDBF2B78FC; // System.Void struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5; // System.Threading.WaitCallback struct WaitCallback_t82C85517E973DCC6390AFB0BC3C2276F3328A319; // UnityEngine.WaitForSecondsRealtime struct WaitForSecondsRealtime_t04F2884A9814C3E4E415E788AFE56B5928577C40; // BestHTTP.WebSocket.WebSocket struct WebSocket_tC5AF27C0708BBCF99D3D7332F846C0FFFD446C54; // BestHTTP.WebSocket.WebSocketResponse struct WebSocketResponse_tBFF22330A397E15C5849F83779F881AFC6EE8CDF; // BestHTTP.Extensions.WriteOnlyBufferedStream struct WriteOnlyBufferedStream_tFF439EC9711DB5912AB954E51F6122E21A348F14; // System.Security.Cryptography.X509Certificates.X509Certificate struct X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553; // System.Security.Cryptography.X509Certificates.X509CertificateImpl struct X509CertificateImpl_t921DFC48C47654AE30F0DABDF84567C95C0B1219; // System.Security.Cryptography.X509Certificates.X509Chain struct X509Chain_t2167363ADB11F31A4A13E77EB73BEEE29381AF37; // System.Security.Cryptography.X509Certificates.X509ChainImpl struct X509ChainImpl_tAA54C8F65F2922D9BAB911D37EFFCD7A95A92AEE; // ArduinoBluetoothAPI.BluetoothHelper/BluetoothCharacteristicEvent struct BluetoothCharacteristicEvent_tA803FAB6FC2D19DAD97EE3E01CD8D003DD25A03A; // ArduinoBluetoothAPI.BluetoothHelper/BluetoothDescriptorEvent struct BluetoothDescriptorEvent_tE32E38A0724D0414191DC1A2FA4E28C6410167E4; // ArduinoBluetoothAPI.BluetoothHelper/BluetoothEvents struct BluetoothEvents_t6367CF752C0000C65AC334DE644AE84EDAA71FA3; // ArduinoBluetoothAPI.BluetoothHelper/BluetoothLEDataEvent struct BluetoothLEDataEvent_t68F97939E5C7C84395925D0B3DFFD9BE12FAD4CD; // ArduinoBluetoothAPI.BluetoothHelper/BluetoothScanEvents struct BluetoothScanEvents_t96E44F26E6E173C76A806E7E95CF4C7C84B8A33B; // ArduinoBluetoothAPI.BluetoothHelper/BluetoothServiceEvent struct BluetoothServiceEvent_t10380261CF18564DD4DE13E93B0D61C6CF5989FA; // BowCamera/BowCameraFixed struct BowCameraFixed_tB84EA66C717C757B6D1772F572D7C4A4AF9D32A3; // UnityEngine.UI.Button/ButtonClickedEvent struct ButtonClickedEvent_tE6D6D94ED8100451CF00D2BED1FB2253F37BB14F; // HRB_Bluetooth/<>c__DisplayClass25_0 struct U3CU3Ec__DisplayClass25_0_t64D8C395B552D60CA41D39FD659B3676B96697B7; // HRB_Controller/d__0 struct U3CgetUserInfoU3Ed__0_tBD35BE495BE4163DEDADF5A235B0855C5F764FDD; // HRB_Controller/d__1 struct U3CsaveUserInfoU3Ed__1_t33EC474A0E07837222472BE5DE956D54E775BEE7; // HRB_HomeView/<>c__DisplayClass11_0 struct U3CU3Ec__DisplayClass11_0_tCA0E8647AB76DCC40237EF0A7E428BBB40B30192; // HRB_LoginView/<>c__DisplayClass9_0 struct U3CU3Ec__DisplayClass9_0_t47B31812D03B51989C4B01F90B8B9946E74041BB; // HRB_MeView/<>c__DisplayClass12_0 struct U3CU3Ec__DisplayClass12_0_tD686DEAD8544F1FF6ED0EC5C8AFE469538015B2F; // HRB_MeView/<>c__DisplayClass24_0 struct U3CU3Ec__DisplayClass24_0_t01B1FD0D637D7AE431CBAF412D97D15EE230D59B; // HRB_MeView/<>c__DisplayClass24_1 struct U3CU3Ec__DisplayClass24_1_t767CEE21DB2453E00C5135DDD61D958CCD4DA0AC; // HRB_MeView/MeUserInfo struct MeUserInfo_t908ED54BB1E8C15D78C04BA32BB12B06CF0DC94E; // HRB_PlanView/<>c__DisplayClass14_0 struct U3CU3Ec__DisplayClass14_0_t09BB7C4820DB6D3313FE63075C68D3DA6C7DB0CC; // HRB_RegisterView/<>c__DisplayClass12_0 struct U3CU3Ec__DisplayClass12_0_t4C6405DB73B24A09203B2F40BA909F3226A3A110; // HRB_RegisterView/<>c__DisplayClass14_0 struct U3CU3Ec__DisplayClass14_0_t43C7855FC73760DB1B2FC4A67D1168EC2E935372; // HRB_UserInfo/<>c__DisplayClass21_0 struct U3CU3Ec__DisplayClass21_0_tAD8B65444910AC8D8907AF555A90618FF1A2FDBA; // BestHTTP.Caching.HTTPCacheService/<>c__DisplayClass35_0 struct U3CU3Ec__DisplayClass35_0_tE3A988AF6E5AF47AD8FE5A1AB5407A8B1CFFFC51; // BestHTTP.HTTPManager/<>c__DisplayClass94_0 struct U3CU3Ec__DisplayClass94_0_tAF390C495207D82599C243517BC7510C5F085B0A; // BestHTTP.HTTPRequest/<>c__DisplayClass236_0 struct U3CU3Ec__DisplayClass236_0_t5D73E77F88085755E0AC16CEC06D0F13B7D5F7BF; // BestHTTP.HTTPRequest/<>c__DisplayClass237_0 struct U3CU3Ec__DisplayClass237_0_t6E177732B76E901E21CDA82DE87FFF83EC6F96E3; // UnityEngine.UI.InputField/EndEditEvent struct EndEditEvent_t85372BABF7066F7DF46B414EA94C5D42736A0E8D; // UnityEngine.UI.InputField/OnChangeEvent struct OnChangeEvent_t2E59014A56EA94168140F0585834954B40D716F7; // UnityEngine.UI.InputField/OnValidateInput struct OnValidateInput_t721D2C2A7710D113E4909B36D9893CC6B1C69B9F; // UnityEngine.UI.InputField/SubmitEvent struct SubmitEvent_t3FD30F627DF2ADEC87C0BE69EE632AAB99F3B8A9; // UnityEngine.UI.MaskableGraphic/CullStateChangedEvent struct CullStateChangedEvent_t9B69755DEBEF041C3CC15C3604610BDD72856BD4; // UnityEngine.RectTransform/ReapplyDrivenProperties struct ReapplyDrivenProperties_t1441259DADA8FE33A95334AC24C017DFA3DEB4CE; // System.IO.Stream/ReadWriteTask struct ReadWriteTask_t32CD2C230786712954C1DB518DBE420A1F4C7974; // UnityEngine.UI.Toggle/ToggleEvent struct ToggleEvent_t7B9EFE80B7D7F16F3E7B8FA75FEF45B00E0C0075; // System.Uri/UriInfo struct UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45; IL2CPP_EXTERN_C RuntimeClass* Action_1_t080BA8EFA9616A494EBB4DD352BFEF943792E05B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Action_1_t09C12AA7E5E85A97B5B1F128A642D012DF05E10F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Action_1_t0F808BECFC00C2BA783741BFBB1E452E1850A394_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Action_1_t41459F578D5FCF151500CBC8CF9276BDC6C984FE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* AgreenmentOption_t432B742374FB1C0EDA1654B663688306A3D77CDF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* AimHandler_t09E6B497CE2A5136591A25DDCED60D7D7D00A563_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* AlwaysValidVerifyer_t7ADF972FD4D728037278659A56B61B9F7C918C6A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Arrays_t7CFD09DA7425047721E193958DAC5AB0FCFF67BF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* AudioMgr_t37818C35286C2FF09D8B8FFF7E74D479D3817DA0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* AuthLoginMask_t5885C21EF2FAB0AE37931AB74598E783A4925962_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* BinaryReader_t4F45C15FF44F8E1C105704A21FFBE58D60015128_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* BluetoothEvents_t6367CF752C0000C65AC334DE644AE84EDAA71FA3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* BluetoothHelperCharacteristic_t192402A7C03FD9857C87822D541F8737A469B6E9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* BluetoothLEDataEvent_t68F97939E5C7C84395925D0B3DFFD9BE12FAD4CD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* BluetoothScanEvents_t96E44F26E6E173C76A806E7E95CF4C7C84B8A33B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* BluetoothShoot_tFFB2B3FBCA6C8833498153B0B9A2F5327215D1F6_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* BowCamera_t7AA7E1A3AE4107303360B6EC9EC72E5F762D0FF9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ByteU5BU5DU5BU5D_t95107DE217CCFA8CD77945AC2CB9492D4D01FE8D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CommonConfig_tC195D49FCF47E1A741B397705259762D5D501FB3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Comparison_1_t97B2A8BC9742CE824022B71E5E5A340C030DADC4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CookieJar_tEAA297825C22C4D5902B7DA8DA1707E09A167316_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DOTween_t7BE7AEC9D5268B0C5F1193D8F20B01B7F18CC203_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DefaultIOService_tC04F35048EAA8FDBBB1E12D95E091A27EA271DDC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DefaultLogger_t7E3DFAD4BFABAD5605389979F1604A7952296EB7_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t3CA977FBCA3158664D7AB53A25D36155F805ABB3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t470893CE409900ABAC60976F4121AC4F831D4ACD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tA951181AD5BB597EA527552FB0018E7527A392E6_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tF5B4A5A925F35194AB6289544146EEDFF54229AC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DigestStore_t99C20E5CE7E3259B47DC39D887B8EE46A985744B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DrbgUtilities_tE3432795718F27B184DC1ABEA30D74188E8742D0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EventSourceResponse_t8DF68E0CA897F157917279A5863C7A8730E5524A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Extensions_t805930587B149FAA6237C154983DC030D5D8124F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* FileConnection_tA6431B122AA31FBDD3050A1D909840045D1B0BAA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_2_t50F598941CFDF02619DC5D52FFDBC329473C5F7B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Func_4_t0EA5243FC4B656A18B7AC7B130FD78666AA9FE84_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* GameObjectU5BU5D_tA88FC1A1FC9D4D73D0B3984D4B0ECE88F4C47642_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HMacSP800Drbg_tE713E6D9192F0F6E8E212585185241A5A0EFFE21_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HRB_UserInfo_t33A1D91CD880DFDBEF533505A82350E3D3C8B6A9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HTTPCacheFileLock_tE761A404D3A29EF0543FB5A8C3CEED2DB0C74351_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HTTPCacheService_t5964D05F0929E18C69B4A018F467D9E4146649F8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HTTPConnectionRecycledDelegate_t386301071C1322CEA345542DD58665526B1CA85A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HTTPConnectionStates_tBB7113AF8810E7441256047332F747C468427434_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HTTPConnection_t51D075C863581CF6C0E77BBABD92B87EA1F23C9A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HTTPFieldData_t6D10CC260BB01415CE5644EAC56F0E4785C7C16E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HTTPFormBase_t62B2F52574B8465343CE4B246C6021BC42A45BF2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HTTPManager_t1E0A5A6FF0F475D0ABDB2ACA2C62B52648703DBD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HTTPMethods_t9BB2C0A32407626B6D77F8652824FB2E6CF92195_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HTTPMultiPartForm_t495EC7057C9CBD041C4F7F5C73534368C58AB3F3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HTTPRequestStates_t32A7ADDA084DCC94348299B2C4DBB455A3429B7F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HTTPUpdateDelegator_tBAACD158602FC92717CDD22E84ABCB7B06692459_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HTTPUrlEncodedForm_t8E2BE5AB6A6F3A3D8260820746C46CA2A35572AF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HeartbeatManager_tC2289824FFCE494A74441E065011CD0E66C2134E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEntropySource_tB5D9DE195690CD14EA3F129F3F30B2B6A8B21CCE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IIOService_tF7DA01C1F131FD1C1649DAA43FA8E1DB006B8586_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ILogger_t095358641393F797166A40BDE9240B6A2C53D4AC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IMac_tF574CEDFF4E3D5D95581FD8DF86EF985AE61B37C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IProtocol_tBD0811C80441CCA178D306865D84C72B001D488D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* JsonConvert_tE6BEC0144590DD363669B76685D1C371866C3D87_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* KeepAliveHeader_t93C1CC9FD7D51F432D9A50741F9BC0EF59166924_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* LayoutRebuilder_tE88B8B9EA50644E438123BDCE2BC2A3287E07585_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* LegacyTlsClient_t4BEFCBA84F5A2CA83714DEC1CCBE32EC12681856_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_t21BC49A4390CA067C4050F19A1D58BE64AC2E89E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_t406EC705E72137D2240DC7D4E2B21A200546B181_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_tAB6EE9557BF734F9EF011194835DEFD04B650ACD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_tF9D8E572A8599785D6C36AD7BDC592752B89E0A1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* LoginMgr_t8D340F9A8A8027CEBE3696757458524F722D0404_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Math_tA269614262430118C9FC5C4D9EF4F61C812568F0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* MeUserInfo_t908ED54BB1E8C15D78C04BA32BB12B06CF0DC94E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* MissingFieldException_t608CFBD864BEF9A5608F5E4EE1AFF009769E835A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NotImplementedException_t26260C4EE0444C5FA022994203060B3A42A3ADE6_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OnBeforeHeaderSendDelegate_t14E6C0AF9AE042EBCE08E9B5911D7327A37DE05F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OnBeforeRedirectionDelegate_t81B75D27201DA4FD218ADB97B6FCF92A176AE238_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OnHeaderEnumerationDelegate_t8569EB210DE78ADA6200BC74C9CE08E713FDE448_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OverflowException_tD1FBF4E54D81EC98EEF386B69344D336D1EC1AB9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Path_tF1D95B78D57C1C1211BA6633FF2AC22FD6C48921_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PersistenHandler_t0045D44D2514530321E6C396BB8FD5B9222E4CB1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Predicate_1_t39705BC94BB4A2ECA2F5A3EF2CAA5FF6B9B99860_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Predicate_1_t782ED4F640A61B7ACA1DD787F7C4993C746207B3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Predicate_1_tB4F754B3E9DEE1E0D6B5EF4F2E333344DE8909B5_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Predicate_1_tC838A5EB8B3B9289CB9C0A2CF1806336669C565A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RawJsonForm_tA9605806D5AACD3A9AF70E67E907BC172AB17FA8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ReadOnlyBufferedStream_tD77D50B2DC8D878C4C3960DD5EE5AEBB73439D34_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RemoteCertificateValidationCallback_t69AACF4DA933279BC0F7916FB62BC05A5DC5A947_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RoleMgr_t12999A5A712E0FA535E5987BEBDBB403D452E0EA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SimulateMouseController_tA70BEF03B40F921CF76BC22EDFB7F57083FD43F5_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SslStream_t8C3E1BFCC63C3FC9A4684697FFBBA81B843D5F49_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* String_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SupportedProtocols_t3B8F67D21A1E9AF62C6579631E36E7E50B90047B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TcpClient_t31BAC3FC66E2985035A039820F08B7F64DC59075_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TextAutoLanguage2_t1A40AC9C9B03B78C659D1D0A51050A8085ED26CE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Throttler_t24208F2310962DD9B2C5169CB881DBF9E6A44246_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TimeoutException_tB5D0EEFAEC3FC79FFDEF23C55D1BDF4DE347C926_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TlsClientProtocol_t699CCD2E87EC8483837B996FB590D11781975967_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass11_0_tCA0E8647AB76DCC40237EF0A7E428BBB40B30192_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass12_0_t4C6405DB73B24A09203B2F40BA909F3226A3A110_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass12_0_tD686DEAD8544F1FF6ED0EC5C8AFE469538015B2F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass14_0_t09BB7C4820DB6D3313FE63075C68D3DA6C7DB0CC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass14_0_t43C7855FC73760DB1B2FC4A67D1168EC2E935372_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass21_0_tAD8B65444910AC8D8907AF555A90618FF1A2FDBA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass236_0_t5D73E77F88085755E0AC16CEC06D0F13B7D5F7BF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass237_0_t6E177732B76E901E21CDA82DE87FFF83EC6F96E3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass24_0_t01B1FD0D637D7AE431CBAF412D97D15EE230D59B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass24_1_t767CEE21DB2453E00C5135DDD61D958CCD4DA0AC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass25_0_t64D8C395B552D60CA41D39FD659B3676B96697B7_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass35_0_tE3A988AF6E5AF47AD8FE5A1AB5407A8B1CFFFC51_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass94_0_tAF390C495207D82599C243517BC7510C5F085B0A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass9_0_t47B31812D03B51989C4B01F90B8B9946E74041BB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_t1F02CF6C3BB5ED880B82EB43AF7CB53A208356B8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_t4821039A08A297D8BE843F00EADC90D4F881AA8C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_t5082C83EC78057089793CE3AC4CC48A75616DE21_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_t55914FC9E856D6A6CF25337EA096A6B258C8CFCD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_t5DC7D2574DC64DC3DA01783058EC97AA3F171420_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_t97622A578CEC824E2AA4A6C3797EB9B24F75CD3B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_tC9CA1F190489ACBCFFA6F74F6E2FD42F7755CA25_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CgetUserInfoU3Ed__0_tBD35BE495BE4163DEDADF5A235B0855C5F764FDD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CsaveUserInfoU3Ed__1_t33EC474A0E07837222472BE5DE956D54E775BEE7_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UnityAction_1_t4A1848C01D99711D0E3D235F1FDBBA96BA48B647_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UriBuilder_t6FF22E0E019C73564385054BE4AF98E6C5EE0F42_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UriComparer_t06192E3DDBFFAEB5F378C881695DF101DDD71C49_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* VariableSizedBufferPool_tE14092885C0BD541BE236F97F0F8832DD4502E8E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* WaitCallback_t82C85517E973DCC6390AFB0BC3C2276F3328A319_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* WebSocketResponse_tBFF22330A397E15C5849F83779F881AFC6EE8CDF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* WriteOnlyBufferedStream_tFF439EC9711DB5912AB954E51F6122E21A348F14_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C String_t* _stringLiteral0242F31341D314854DB5EA5749448625B0A0AAE3; IL2CPP_EXTERN_C String_t* _stringLiteral02B422019E3C5369EB830F55A5ABF0099C0C7022; IL2CPP_EXTERN_C String_t* _stringLiteral02FEF73D0CEEEFD67DF0C54AE6860E3A4B589F86; IL2CPP_EXTERN_C String_t* _stringLiteral03AF4AAE45F0FD9CE9D36A119A4A931D2A7620AD; IL2CPP_EXTERN_C String_t* _stringLiteral085AA5469EE6BEB776E25FB4D162068D113925B4; IL2CPP_EXTERN_C String_t* _stringLiteral093507DEB05FB14DD8659BC619825EC3274FD8C6; IL2CPP_EXTERN_C String_t* _stringLiteral099372260D030A282A793B11EBFD847245C7D07B; IL2CPP_EXTERN_C String_t* _stringLiteral0CB49354A8E3D98F20E68D613824F1A34E280546; IL2CPP_EXTERN_C String_t* _stringLiteral0DCD50BBAD9FFE4F0F00EBAF7CA2E94950DE0A55; IL2CPP_EXTERN_C String_t* _stringLiteral0E4E43A373414FA63D503F4E5BFE281CAD2AB697; IL2CPP_EXTERN_C String_t* _stringLiteral0E5584AFF0328C3E9B727CFB3887E9E710B0F53D; IL2CPP_EXTERN_C String_t* _stringLiteral0EE7F9B6ED8BBAD8FBBF4F840AD9261168E2AD44; IL2CPP_EXTERN_C String_t* _stringLiteral0F9C210C1B82DEA1FEEBB7A624B1FF1B8AB5A965; IL2CPP_EXTERN_C String_t* _stringLiteral1488F649920198F59A3B53EA7C81503935DEF05E; IL2CPP_EXTERN_C String_t* _stringLiteral178B1AB2AEE9A4A3999D5A927BE943938FBF8CF0; IL2CPP_EXTERN_C String_t* _stringLiteral1A82671F2C34BEA09C35354DDB899812746CBCF9; IL2CPP_EXTERN_C String_t* _stringLiteral1B13430C8FF5A79F260D5237EC9234B368FDB64E; IL2CPP_EXTERN_C String_t* _stringLiteral1B8C38B5EFEDFC5F664495A4F250A97E57FCC58B; IL2CPP_EXTERN_C String_t* _stringLiteral1CF236655229A290E64EB6178CA50AACE3592E69; IL2CPP_EXTERN_C String_t* _stringLiteral1E7F08C0AC0372D049498B0761B71A673474524F; IL2CPP_EXTERN_C String_t* _stringLiteral1FB6F1342F88D48764D015E241364B215E91B0E9; IL2CPP_EXTERN_C String_t* _stringLiteral207485C1C77C9BA7E93DF0266C7368FDC8EDC1EB; IL2CPP_EXTERN_C String_t* _stringLiteral20F5E9188B7D351EE7B40A9774F19CA2732909F7; IL2CPP_EXTERN_C String_t* _stringLiteral2200D805615D1E5DBF3FD674FF0BB86DDF7F9A31; IL2CPP_EXTERN_C String_t* _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745; IL2CPP_EXTERN_C String_t* _stringLiteral23DD9B48AADF8064DC908F153D021AB3A7835181; IL2CPP_EXTERN_C String_t* _stringLiteral248097B6BC0A986D9DC8A3C36CB19FF58B63C699; IL2CPP_EXTERN_C String_t* _stringLiteral253821969E53EE5595F2B1475E9358AECFF7BA79; IL2CPP_EXTERN_C String_t* _stringLiteral2699AE8F4D2D8A9D8B353C258A40B7C979E41F5F; IL2CPP_EXTERN_C String_t* _stringLiteral277069F49BD0D5C770E60D61699E97625E2C2010; IL2CPP_EXTERN_C String_t* _stringLiteral27E3C5B3B79B9E6FE621D0423B2271474D33E6DA; IL2CPP_EXTERN_C String_t* _stringLiteral2808A2293FC207B5F3FA34353D0F1C6A9F46A674; IL2CPP_EXTERN_C String_t* _stringLiteral28D1B513AD2BF08C6D178E56957F7BA0972AB9BE; IL2CPP_EXTERN_C String_t* _stringLiteral29946C7EC3B2A3D8C1C7EC42E1E268CD3B603EE4; IL2CPP_EXTERN_C String_t* _stringLiteral2D237ADC0A2A1323199D8ECEAF721FC4EA117317; IL2CPP_EXTERN_C String_t* _stringLiteral2E1C9408DAAA599C522252B9CBF05A7188D334A9; IL2CPP_EXTERN_C String_t* _stringLiteral3015B2A3D39F343DF5439AC8F9FFEFD31A155603; IL2CPP_EXTERN_C String_t* _stringLiteral30D764078767B7E45A98241E662CB7F46DE175B8; IL2CPP_EXTERN_C String_t* _stringLiteral30F42B4BE15CB3C26C6C1970F6621E8F9573DDDA; IL2CPP_EXTERN_C String_t* _stringLiteral31D662523F3F3963669539E05B87AF9097F3AC29; IL2CPP_EXTERN_C String_t* _stringLiteral32884B1D50753ADCF14A3F856A282AE1DF96506A; IL2CPP_EXTERN_C String_t* _stringLiteral3307E245CDDD41589E1B19DE33F9663FAC31171F; IL2CPP_EXTERN_C String_t* _stringLiteral34077EF4BA7E36D7E714C11E9B448D6C536ED8A3; IL2CPP_EXTERN_C String_t* _stringLiteral376E0EBF36DDF94B3FD31ADBE6EF926066EEC225; IL2CPP_EXTERN_C String_t* _stringLiteral39CB21871F9F9FE5AE18BA5E81ED4EC6DADB8E03; IL2CPP_EXTERN_C String_t* _stringLiteral3AAD511EB537B90E62F234714281820020FC2D64; IL2CPP_EXTERN_C String_t* _stringLiteral3CBDA36F98C255223692548513831A8BB192F40A; IL2CPP_EXTERN_C String_t* _stringLiteral3D9DECE5B073923D3CE3D7973A4A2D41466F7530; IL2CPP_EXTERN_C String_t* _stringLiteral3EBF16D6A5602C137543C8C24350A748704BCBBC; IL2CPP_EXTERN_C String_t* _stringLiteral409C81A5B30C0BC762564E8F20B4B6C4149B2C84; IL2CPP_EXTERN_C String_t* _stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D; IL2CPP_EXTERN_C String_t* _stringLiteral43603B6769DC79DE064B50E2B158496CE9AB43E1; IL2CPP_EXTERN_C String_t* _stringLiteral4369BE0CE492446B28CB046F548AF4B19AE39867; IL2CPP_EXTERN_C String_t* _stringLiteral43F10DFD501AEB1A6C4B470B69A128B77DD6DBD2; IL2CPP_EXTERN_C String_t* _stringLiteral44450B2C3ED7E38D889FAD121B54102642B12375; IL2CPP_EXTERN_C String_t* _stringLiteral4449ACB0BFC3E0D641040A6BA0A18150B9E92F09; IL2CPP_EXTERN_C String_t* _stringLiteral4477D5FC9C92CCD5BCC9BFDB7B27CA8E665A8A0A; IL2CPP_EXTERN_C String_t* _stringLiteral4511C4F6DC26166E213ED141BFCA79F29AF55382; IL2CPP_EXTERN_C String_t* _stringLiteral45A5D42D97A4FCBA76B0B76E23146213DC1160D7; IL2CPP_EXTERN_C String_t* _stringLiteral46373CCD5D51DC0C3FAF6D645EAF36C9734D110C; IL2CPP_EXTERN_C String_t* _stringLiteral466A2A81EC044064EE193D200EA26C2AFB6AE235; IL2CPP_EXTERN_C String_t* _stringLiteral479A748D3BC13E7D3FDE4C7BF17C04B4A434D8B3; IL2CPP_EXTERN_C String_t* _stringLiteral47C8C9811A595EDFF8707E8C3764228BC9EFDA78; IL2CPP_EXTERN_C String_t* _stringLiteral48AAC0D3F9EE5EDD804D436A87BF717B706C5FEF; IL2CPP_EXTERN_C String_t* _stringLiteral48C75149E263D08DBE3F3CB86DF011FA96C010AF; IL2CPP_EXTERN_C String_t* _stringLiteral4B1C7E4D75A1886120C5236BEB7244D47E5C537C; IL2CPP_EXTERN_C String_t* _stringLiteral4B45DCFFD1D4CD624F234B7E8FADF5255D454F4D; IL2CPP_EXTERN_C String_t* _stringLiteral4BD4A20D743286D24CF77C38E693ECBCE8CD3A7E; IL2CPP_EXTERN_C String_t* _stringLiteral4C2D2AC5C14273570C5842772D23EFF3038086D9; IL2CPP_EXTERN_C String_t* _stringLiteral4C5C1047EE8535BFB5F4EC91AC899E2A42300DBE; IL2CPP_EXTERN_C String_t* _stringLiteral4CB5030018C870A3E9D27EAB74DA4E236B3A4761; IL2CPP_EXTERN_C String_t* _stringLiteral4D1C106E786E92A78A958683960CA97326A04253; IL2CPP_EXTERN_C String_t* _stringLiteral4DCE35EFA362179288B5651BF9FC632FBB247AA8; IL2CPP_EXTERN_C String_t* _stringLiteral4F539D3E438AC9532A3E056E50A61F6CCD62392B; IL2CPP_EXTERN_C String_t* _stringLiteral4FB33FC9ADB5D15D3FB700A9B73B938CF36FE538; IL2CPP_EXTERN_C String_t* _stringLiteral500D698ADF5317B24C1318EDF8C8D745A6EB23F8; IL2CPP_EXTERN_C String_t* _stringLiteral50E585819C0D7FC66C0CA531CB3FC14C49D773AE; IL2CPP_EXTERN_C String_t* _stringLiteral55630C78EBA3A0E3E537899A1E12D55F3C04D6FA; IL2CPP_EXTERN_C String_t* _stringLiteral569269E39B5685F53BADE2640745A97AB89897F6; IL2CPP_EXTERN_C String_t* _stringLiteral56B55F1AE7D34548BDC41081085DD3561CB80578; IL2CPP_EXTERN_C String_t* _stringLiteral56B70A227BDF525F3B35BE8F7F19C2510184DC02; IL2CPP_EXTERN_C String_t* _stringLiteral56D7741BCA89552362FD24D11BB8980E3D8A444C; IL2CPP_EXTERN_C String_t* _stringLiteral57A2871AEED689D7D7D0EFCCDEE10BEC808E846D; IL2CPP_EXTERN_C String_t* _stringLiteral587B0E053519266A1A5628C5DBE03AA33A3BBE95; IL2CPP_EXTERN_C String_t* _stringLiteral588FA00829EFB9528954C3C9D899DE5D204881DF; IL2CPP_EXTERN_C String_t* _stringLiteral5B58EBE31E594BF8FA4BEA3CD075473149322B18; IL2CPP_EXTERN_C String_t* _stringLiteral5BD9A90166B46D894E051AF05C1C2EC562FF9A5E; IL2CPP_EXTERN_C String_t* _stringLiteral5DCCC66796F6179E640C0302C4C0B42F28DDD655; IL2CPP_EXTERN_C String_t* _stringLiteral5E46B0B8FA77A3DCDEDB09B9F51CD37B861E0A77; IL2CPP_EXTERN_C String_t* _stringLiteral62BED77AB01DA4D47678B9FBB320F1AF1DACC3C9; IL2CPP_EXTERN_C String_t* _stringLiteral62E0981EF8D08324A5FC33A836B5DC69B19EAE92; IL2CPP_EXTERN_C String_t* _stringLiteral641255E7CDC790311725CCB47DB63D989117D244; IL2CPP_EXTERN_C String_t* _stringLiteral643316702AE09F1D1CE8C3EBBD75D6F90FEAA264; IL2CPP_EXTERN_C String_t* _stringLiteral645296D599510F464D27438D6D59B512B42DC528; IL2CPP_EXTERN_C String_t* _stringLiteral67A54AB78AD61DDEB268617E3EE621D1193804DC; IL2CPP_EXTERN_C String_t* _stringLiteral68ACB6B47D3431BDBD286C3153B250E20552A4AD; IL2CPP_EXTERN_C String_t* _stringLiteral68F20699DED65329DE5E55A83C90D6B23B081F2E; IL2CPP_EXTERN_C String_t* _stringLiteral69520730213CDED741A5919BB83F6E4B8610EDBA; IL2CPP_EXTERN_C String_t* _stringLiteral6996DC0CC92C7C284749109C7F02D201312B6A5C; IL2CPP_EXTERN_C String_t* _stringLiteral69EE7E6B376FE5EAD3368273734FD1602DFFA159; IL2CPP_EXTERN_C String_t* _stringLiteral6CE02DBF10772951A436ED08602B6C21AF7A06F2; IL2CPP_EXTERN_C String_t* _stringLiteral6CE2A734BD806840B4541B117FD41814DF089ABD; IL2CPP_EXTERN_C String_t* _stringLiteral6CED32B48D54C9C0BF7760706CC26CF3EC27700D; IL2CPP_EXTERN_C String_t* _stringLiteral6F436E58B96618C16285FE121D22EB2019A668E1; IL2CPP_EXTERN_C String_t* _stringLiteral71443AC7CF5CC108984A138188DE915E32441BB2; IL2CPP_EXTERN_C String_t* _stringLiteral7282B502AA9E36C2229B6FD8A855524A3027308D; IL2CPP_EXTERN_C String_t* _stringLiteral730444BF06EEB35E00D338DD194EB70429CE6F1F; IL2CPP_EXTERN_C String_t* _stringLiteral744108443A65CE771A0376E635C4848984F825D4; IL2CPP_EXTERN_C String_t* _stringLiteral7872A59202D05808851692E8DE3C79F813825FC7; IL2CPP_EXTERN_C String_t* _stringLiteral7A9D2661874D1734F812A4E97E86DB97E8527D22; IL2CPP_EXTERN_C String_t* _stringLiteral7B28676A697A8BBC209A419D9D4BEECAA756DDF4; IL2CPP_EXTERN_C String_t* _stringLiteral7BE89227A0BBC17012796DD27BB68B0D5FB2D35E; IL2CPP_EXTERN_C String_t* _stringLiteral7C11FFB0C346A55DE70D95205EA1FF6432639439; IL2CPP_EXTERN_C String_t* _stringLiteral7C5B2C0D17D684D4380087821D68BB021A77AA5D; IL2CPP_EXTERN_C String_t* _stringLiteral7D6783AA5E64857D25AFFFBD74CE5D0AF2558309; IL2CPP_EXTERN_C String_t* _stringLiteral7DB95A119A3D2214EDD81334E7557F03A972EA35; IL2CPP_EXTERN_C String_t* _stringLiteral816C1F35EF146E98607502A2BB4E1E9526C46A35; IL2CPP_EXTERN_C String_t* _stringLiteral81FF226B7B8BFBBE08235D09CDDF578931F97CDD; IL2CPP_EXTERN_C String_t* _stringLiteral865F15C2C5445C0FBD3DD259DAD8FDC9D070FFA8; IL2CPP_EXTERN_C String_t* _stringLiteral86E7C0314F9CA521BDA0F361B0D90037E62E63C2; IL2CPP_EXTERN_C String_t* _stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D; IL2CPP_EXTERN_C String_t* _stringLiteral87ACC81A52DF7C3231E6F3B6234147095514AFA9; IL2CPP_EXTERN_C String_t* _stringLiteral88B61BCE70B5837EB4D2D38F043FA9CE2F3CA81C; IL2CPP_EXTERN_C String_t* _stringLiteral89AE3D8A978357B6CD4D7D4745A7F890A0E2F8D2; IL2CPP_EXTERN_C String_t* _stringLiteral8C0DDE4102F5B67056AD3DB33AD7C994B6963E96; IL2CPP_EXTERN_C String_t* _stringLiteral8C5B5A80C04C3A4ACA2BEED3EDD587DD1F5398C6; IL2CPP_EXTERN_C String_t* _stringLiteral8D28F1F930CE88A866A5AFD45B7587A776D2A2E5; IL2CPP_EXTERN_C String_t* _stringLiteral8D41707E1E7E0CCB37B99DE9EBB7454930BBCD62; IL2CPP_EXTERN_C String_t* _stringLiteral8DD8D6FCBA1E38E53530F55F7B9061E65C123321; IL2CPP_EXTERN_C String_t* _stringLiteral8E528B3D59F4DF44EA6F2EFBE4003B6BBE14CAB2; IL2CPP_EXTERN_C String_t* _stringLiteral8EB768890E33331D43A20742F7BF59671A53306D; IL2CPP_EXTERN_C String_t* _stringLiteral917F4498341896CE9C10106BE60055DF2ACDD1D0; IL2CPP_EXTERN_C String_t* _stringLiteral952230437686874AF0FE6A3943C4749F85F0DCD0; IL2CPP_EXTERN_C String_t* _stringLiteral97C6A5CA546023849DF9E8ED63C2F5041489EBAE; IL2CPP_EXTERN_C String_t* _stringLiteral997F93B8223285BB571C83E7ACD6C6615F5EF04C; IL2CPP_EXTERN_C String_t* _stringLiteral999DE9BBC670350B2274E9E1E9A0BD6D64402C31; IL2CPP_EXTERN_C String_t* _stringLiteral9D0FC7192C1BC49D9C9F14A232794521DA714D9B; IL2CPP_EXTERN_C String_t* _stringLiteral9D5A3AE3D2B0B5E5AF5AB489000D9B88FA11E907; IL2CPP_EXTERN_C String_t* _stringLiteral9DF433D3D1A903D41B946B498172880DEB8A1129; IL2CPP_EXTERN_C String_t* _stringLiteral9EB642385221D006B3B8DB45C10F626FD2A3DB7C; IL2CPP_EXTERN_C String_t* _stringLiteral9FE036A4F2E6C7D666993BFD5FE11995EAB017FB; IL2CPP_EXTERN_C String_t* _stringLiteralA30C13E362606C5E6A8F8939BB34DC6FBD230322; IL2CPP_EXTERN_C String_t* _stringLiteralA3C48F920CA03FE8BCEF33375645725C40BA7ADD; IL2CPP_EXTERN_C String_t* _stringLiteralA6368F0E7D93228A17418B2196B50D031204143E; IL2CPP_EXTERN_C String_t* _stringLiteralA958A954074FF9484F15385EEEC73469849170AA; IL2CPP_EXTERN_C String_t* _stringLiteralAC74C91AC84175DF19050FAF49E7E682198F5EBA; IL2CPP_EXTERN_C String_t* _stringLiteralAD5D216A447E163DBEC2D60D8AFBF22A8F39CD7F; IL2CPP_EXTERN_C String_t* _stringLiteralAE432661934FA040E25BA3B0E16138C92B85C67A; IL2CPP_EXTERN_C String_t* _stringLiteralAF01982C20F73B3673A28ABB1FD6DAF23E9BCE19; IL2CPP_EXTERN_C String_t* _stringLiteralAFECF3A5E478A812AD9761D0C14980023E407962; IL2CPP_EXTERN_C String_t* _stringLiteralB0D927AA41F3A2C7058F2BC904F308ED7ADC9666; IL2CPP_EXTERN_C String_t* _stringLiteralB1232E65A601B3CE4560E50C372355C1F54D49C8; IL2CPP_EXTERN_C String_t* _stringLiteralB259F97D12037728D4A938077D19019EDE5D80D8; IL2CPP_EXTERN_C String_t* _stringLiteralB3FAA66308461F1BC7771CA107A7DF8D0F9D66CD; IL2CPP_EXTERN_C String_t* _stringLiteralB6B0E2A297AB5DDEFDA6B2A3DE8179D203E64F30; IL2CPP_EXTERN_C String_t* _stringLiteralB6B73C4AFCE50FADA635FA429651103E919A7071; IL2CPP_EXTERN_C String_t* _stringLiteralB6CB4E8304D81A2CEE9F37AEB83FC83203822153; IL2CPP_EXTERN_C String_t* _stringLiteralB8E2874347C57DEE23C7B76F30A899FF05189B4D; IL2CPP_EXTERN_C String_t* _stringLiteralB8F5A6EFBAAF3F2712B9A381B334CD325D2E4BAB; IL2CPP_EXTERN_C String_t* _stringLiteralBA798EBAFAC206EE7DBB932FE82A85D6CB4D6EE4; IL2CPP_EXTERN_C String_t* _stringLiteralBAE651911F4E2E4E8CABF0A27344C5656487265E; IL2CPP_EXTERN_C String_t* _stringLiteralBB1692DA8ED7544A3193330A7D73D82D06F61206; IL2CPP_EXTERN_C String_t* _stringLiteralBBC4BD37A426D68F16FC03A3F4AAC387168995BC; IL2CPP_EXTERN_C String_t* _stringLiteralBE115963E48661F4B17305A5942D6E177ACF5662; IL2CPP_EXTERN_C String_t* _stringLiteralBFB93048D8C49FAC8A0E894026C32BA6F4D42CA5; IL2CPP_EXTERN_C String_t* _stringLiteralC0864B78B9F577D16678146BC6169860A01773EF; IL2CPP_EXTERN_C String_t* _stringLiteralC2464EF45A888C003BDA08690DC7B77D498615CE; IL2CPP_EXTERN_C String_t* _stringLiteralC2D263C7A32B21C804F1EC247D850BD1840A6AB8; IL2CPP_EXTERN_C String_t* _stringLiteralC39E98B09473AF8DF34B638E6C0FE85E969D790F; IL2CPP_EXTERN_C String_t* _stringLiteralC3AFA7ADF97067CACBD24AE52D33A15893029C62; IL2CPP_EXTERN_C String_t* _stringLiteralC4AC147B7924CE8776506099294AB027E9066B7B; IL2CPP_EXTERN_C String_t* _stringLiteralC5CD64A4BBC46492D30767199E811DE9461EBEDA; IL2CPP_EXTERN_C String_t* _stringLiteralC5DD81DD28D007FE466D17217301ABF8BE2EF3D6; IL2CPP_EXTERN_C String_t* _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677; IL2CPP_EXTERN_C String_t* _stringLiteralC66ADCDF699968596DCBB9929E528A493F44E91F; IL2CPP_EXTERN_C String_t* _stringLiteralC70F7519ACB4603C5746F4CE45DFF6C80BB7D971; IL2CPP_EXTERN_C String_t* _stringLiteralC7C5A0A3807B83161A2AD2D3804810335A3420B4; IL2CPP_EXTERN_C String_t* _stringLiteralC7D6E7A144812D40DA3F71DCBE6B47E6961CC049; IL2CPP_EXTERN_C String_t* _stringLiteralC9CAAE52A975E953DA09A6E8D13A0F22333CDBF9; IL2CPP_EXTERN_C String_t* _stringLiteralCACCAB6EBA6DDAD2FA2E92FE4557EB7D6023F104; IL2CPP_EXTERN_C String_t* _stringLiteralCAF8804297181FF007CA835529DD4477CFD94A70; IL2CPP_EXTERN_C String_t* _stringLiteralCC247B3BF802D402CBB93C287069CAFA7814CF7B; IL2CPP_EXTERN_C String_t* _stringLiteralCEB0F5CF9C65A5D5257B52F43E728220C2C7D582; IL2CPP_EXTERN_C String_t* _stringLiteralCECD6E5654D2B00DD8C1B30CC0A73929A0103D7A; IL2CPP_EXTERN_C String_t* _stringLiteralD2BB265C462756B3C429D7697823E98F08311476; IL2CPP_EXTERN_C String_t* _stringLiteralD408DA793747ECDF82D4F134975F9A12870E8F9A; IL2CPP_EXTERN_C String_t* _stringLiteralD47F0BD9D9AF184353686CE23D2264C2C21BE28D; IL2CPP_EXTERN_C String_t* _stringLiteralD4AA803BD6A5B8FAC8FAB963F39BE828FBCEFB83; IL2CPP_EXTERN_C String_t* _stringLiteralD5D2875F228D651E1289522AEAAB8C492001C1BE; IL2CPP_EXTERN_C String_t* _stringLiteralD65B2B7CE306C7EE6A36785EB8503CD74EEACADF; IL2CPP_EXTERN_C String_t* _stringLiteralD886DB350E99CCED9E40A0C6CADC171D9E730A18; IL2CPP_EXTERN_C String_t* _stringLiteralD8CE3E0277FAE6471C86ED3BDF2CF25B5DBAAE76; IL2CPP_EXTERN_C String_t* _stringLiteralD91F50FC30C1672C48F79C0CE95BF1C047D721B2; IL2CPP_EXTERN_C String_t* _stringLiteralD97EA0026ECDE471F9B8E5B63F3B867786996FB3; IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709; IL2CPP_EXTERN_C String_t* _stringLiteralDB6DBCBE1D9070AACB8B6DFDA1F2DA6E3C65D5B3; IL2CPP_EXTERN_C String_t* _stringLiteralDB9862551E0C0274E6EEBCF4827C4AD09BF83A8B; IL2CPP_EXTERN_C String_t* _stringLiteralDE110FF325464D85ED8FE08B38348825965A76A2; IL2CPP_EXTERN_C String_t* _stringLiteralE0BA0AE8A83E674A1009EA2C879B1246A74B16B4; IL2CPP_EXTERN_C String_t* _stringLiteralE1F3EB48B1629BB9496B6738F2C62B2D34948A2C; IL2CPP_EXTERN_C String_t* _stringLiteralE31FBB002AD5481E70CB59BB178B49C5B9330F0E; IL2CPP_EXTERN_C String_t* _stringLiteralE33A3176031397347BAE4C886A3DE6C1A0933C02; IL2CPP_EXTERN_C String_t* _stringLiteralE3667A4D276FAA0FFE19E1208BBCB7F66ED6F3D2; IL2CPP_EXTERN_C String_t* _stringLiteralE5053BB4068FA55A960E783C9E4398790DD6D031; IL2CPP_EXTERN_C String_t* _stringLiteralE6649F63B80FF7BEFD70FE47344902129A2282D1; IL2CPP_EXTERN_C String_t* _stringLiteralE6F5B2770CDF8DD89DD24D9D45426F2E19870B68; IL2CPP_EXTERN_C String_t* _stringLiteralE853784ABA384B0FD8B74115A71936D0672701A5; IL2CPP_EXTERN_C String_t* _stringLiteralEA7C9AAC67C8EA24FD7EC828C75FEC78129D1193; IL2CPP_EXTERN_C String_t* _stringLiteralEB09EA92F56BD53467730DEE6BAADFC06CEDEA71; IL2CPP_EXTERN_C String_t* _stringLiteralEB3969D2C3B753EEA6472EAA0FAFE56A82655C9C; IL2CPP_EXTERN_C String_t* _stringLiteralEBC0A71AD4FDA7744553FE742854EEA130034F2B; IL2CPP_EXTERN_C String_t* _stringLiteralEE9224C4BBD14B9F43E96481055B9693D5FE9E5C; IL2CPP_EXTERN_C String_t* _stringLiteralF0ACB78DD0CBEFD7DD81D25C5219DDB4067ECBD2; IL2CPP_EXTERN_C String_t* _stringLiteralF1D1C7830043374E7CAB165F867DFE6348EDB19A; IL2CPP_EXTERN_C String_t* _stringLiteralF27E4C631EBEFA337EC21BE8552E169C9DED78A2; IL2CPP_EXTERN_C String_t* _stringLiteralF4C926E25326963C2B7FEF2E308523C33CF6D9F0; IL2CPP_EXTERN_C String_t* _stringLiteralF541D81906682AFF9CD71D693F5A5A8760C459FC; IL2CPP_EXTERN_C String_t* _stringLiteralF712C5F62331F2870DB319ED66CDF53B831F3CA1; IL2CPP_EXTERN_C String_t* _stringLiteralF8AD5093930E2F4A95C71B10C99904E753F76BAD; IL2CPP_EXTERN_C String_t* _stringLiteralF944DCD635F9801F7AC90A407FBC479964DEC024; IL2CPP_EXTERN_C String_t* _stringLiteralFBCCE9E3C6C5E55A8A6D2393CA53A1270CD3C1D1; IL2CPP_EXTERN_C String_t* _stringLiteralFC0B78F7F34B12C0A2804C1AB09E3CD93F73F716; IL2CPP_EXTERN_C String_t* _stringLiteralFD400745F8BC1FF185DAA653E3962839EC696454; IL2CPP_EXTERN_C String_t* _stringLiteralFFE5EC7623EEE9112271520B371B0C01F14729BC; IL2CPP_EXTERN_C const RuntimeMethod* Action_1__ctor_m053845EECFC7CC252EE6CB59DE74EF741058C9DE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Action_1__ctor_m0830373DB14CA8000087DD745ED3AED5B645D5D8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Action_1__ctor_mC14E24B188C6C29726CFCBC0E98734C95A1F6F7F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Action_1__ctor_mF1B9F869B92E0564B028B92505D790CF0F65CCD5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_Empty_TisRuntimeObject_m002765312BF306B1B3B5BFAB9550C0A2A1820CDA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_IndexOf_TisButton_tA893FC15AB26E1439AC25BDCA7079530587BB65D_m7E1281C9DD8335491BBCBF2DCA0EEF789C8E631E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Comparison_1__ctor_m33AFA64B4FDDEA55E5745E9DCEDA1571455B4FCF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponentInChildren_TisGridLayoutGroup_tE25FFEE93AF1291734B4EB8DA986D23A500E7C28_m8CFDF0E818E4FB1868C04BC63FBD7C5D9B1A39D7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponentInChildren_TisInputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0_m00E16B3E961B585CB5C071AF073E99CED52F5EA9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponentInChildren_TisText_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1_mCBD44A97260E33F58E2FBBD76E0432C8F120C30E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponentInChildren_TisTwoPoleSwitch_tE7E4EC1E9EA056C875ADC10C88ED8BC83B0DF540_mD0515C9523EACD85F88F9AB1BEB328436EEB8C91_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponent_TisAgreementPopup_tCC38F433C4A11AEF6FBB883ACABC611A73F4B3E6_m7488B2BAD3DB37C0D0866D1C993DB4CEF8BC43E9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponent_TisButton_tA893FC15AB26E1439AC25BDCA7079530587BB65D_mED8C9575844B41F67CB4C2B13685FC0174CB61BC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponent_TisCanvasScaler_t8EF50255FD2913C31BD62B14476C994F64D711F1_m9E2CF42DCE2625D7E3040181FCA8036E22F12855_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponent_TisImage_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C_m5D5D0C1BB7E1E67F46C955DA2861E7B83FC7301D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponent_TisInputFieldFocusListener_t56C02463411D50EFB479098C91BA0BA1C3150EB9_mBC8443542C1BF627EBFCFA78C8AA5C1DBB557969_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponent_TisInputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0_m1025822CFFC3A3C846267590775A843ED9532924_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponent_TisRectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072_mEF448C51C8366D2CFA81704FFE76C31E4715E6D4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponent_TisText_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1_mE775A52A31F4F2F9E99272B014CC0CBFB4BD3294_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponent_TisToggle_t68F5A84CDD2BBAEA866F42EB4E0C9F2B431D612E_m544EDB55EC6C249F96B487032ECEB73B848CD844_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_m32B412A16021895D9925276EAABD7621EA7AA46F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_m699333D050BD0CC3BBB007F96141B89CCFD6C5BE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_m78A1D9A5F6B53D48CD730DE01558E665062F261A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_m8F783427B54197FCD9BFB0087CD53C03EA02FD9E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_mD0CB82738006021ED5361AEF786CE9097604F19B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Clear_m0558947A29404A56FC8732C9739DB9D97DED351B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Clear_m3CA969647D37F8EBC80E1FF3E8E7DAA70459FA42_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Clear_m425604D2739C474CBA676076F44F5063BD2AAB53_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Clear_mA8A41744E441E2892693FC8CF7C0B8525A5827A7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Clear_mB7C7C697435DA03C31AD15DE075F33207DAD1C68_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_ContainsKey_m3F59458E50606AA5B4E5F1F92A1C9A25EA61AF59_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_ContainsKey_m874EB6E7AC0D3AEFFC6D42129B3AB4A7A6D1758F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_ContainsKey_m9439B4289F9285C2474C00186B3AF492A70019D2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_ContainsKey_m9867AD065B5FC2240B62595667FE7A060BE7A446_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_GetEnumerator_m00CF9AA8DCEF7671525C1D98BD3733D08C305642_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_GetEnumerator_m73E15E905DFF4BA246EB8ED39C9203C080C53DB7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_GetEnumerator_m97BBE95772CC2AD6D101ACCE613DF87A6000138C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Remove_m48BA884F96EE5E0F2B9409D760A44C965A2D1821_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Remove_m6C3191CCDBB413E1B3F2C92A4CC1236106BF5DE7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Remove_mA3BB03F883AD372BD401E6906D155ADA09E59A9C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Remove_mD0EB2DCFE569F49A8274E53F8202942B3D164E09_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_m13326007A149F33A86BBFAEA328AE942BBE76783_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_m87F3A64C5DD114C6F3146F1D1273A10B9E8142A0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_m896FD21EAB6BB456C695D713AFFC171F27AF88A9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_mAD3BF926925BC89D9AD1ACE56DEDF384520DF88F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m0599C1A51CDF5D9B9854E841F33CF61DD474F1C3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m2CAA647A798A014A467A05CC98A2D70CA9F022A4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m4BF4B650B2E69D5D783B9AE68644355C271BE54C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m4F3AC2011D05A435BE16FEE649D389E3040CABD5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m9E1C7D76325A8A94F62825816DCC9ECD8D2F3A1C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Count_mA54F0C33E27B7C9F11741297888910B0FC090E25_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m1135FF0F4A98F6B0E8F1FF4BA70785D00B0EEECA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m19AE7CA2C77C70042150932E6F0E74BEC2C9B088_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m2A96334EF63834D3A85C16B1CEC9D0F360424EFC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m4937C09419C6EA83BFBFD0A65600340CB5EE9743_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_mA8A9E39DB90D0771F7856CB497CC98E75295CC04_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_mC64A3087CF95F5E75C819788C5EE67AB1C86A7C5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_mCC607B0C09E801F33EB6B0922A8899D2A5D55BA9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_mD9C961426EFA6BBBFDCA42D46BCEA62283586500_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m14F9201E481814A0D824D7C1983341F3B6506544_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m190544484A48339ACEDE62C253203E1FC290E07E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m21AC06A8444695DC5021B1592115B9010824AD51_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m43A83012B262D49B331D221FBE414049CBCD4F42_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m4AC84B66B8C5E86880751C01215E6C7FBA767FE7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m5D19B55E374EAB466CAF87C0C00A02C61F887F00_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m7206FD3121D8BEA7DFCAD913FDAF3CA0F6821691_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mD2556E608845386FA3A2803C2167295DB72CD7F2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m0475DE681D1FF6D8FFF2471C08D5BAF9820EE1C5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m2D001E6B343C8E7004498AC86EA2AA21863CC5FC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m2DA3B3BBAA26BE86BD21DB51E1E2174867768DF4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m3D48661EE6836BD909FCD569E1505B4536CF72FC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m4A9B5BE1C9915825C5AED167289AF4F811351505_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m6774D8858FE9A9551EB72A70CD0855E255B7C974_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m6856A4E056EDF877D9D78094CACACD8A645EC1E4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_mEDC92D5DB9288950853C1011506D2A07DF370A9B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Func_1_Invoke_m13CEA453F2172A139E21431E115D795218DE6A57_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Func_1_Invoke_mCA605B0373C1EE39807AB82AEA983289D3F15C79_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Func_1__ctor_m16429CB52E95263F4C11AB13CF51474AFB25D1B9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Func_2__ctor_m19840CEA81CA9090EC7708F6D398092E511A6DD7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Func_4_Invoke_m99F84FB3C597407937790B51288FF13459567EAC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* GameObject_AddComponent_TisHRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D_mF311262DFB96C47C0D932F98379C54FB002F5FAB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* GameObject_GetComponentInChildren_TisDatePickerGroup_t71E7FBA55BB588830802A8486F57942BFFB72516_m991EAEA7DED510BDA6066DA652D4DFD3546BE4A7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* GameObject_GetComponent_TisButton_tA893FC15AB26E1439AC25BDCA7079530587BB65D_mAB159CED4EA42F6E700527382D795CCD31EF293F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HMacSP800Drbg_Generate_mE34D3D23E9D1881E38A94CEDC5675776678CA3FD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HMacSP800Drbg_GetEntropy_m81365AD99622DC60DA05B6C4131802143D3E026C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HMacSP800Drbg__ctor_mCA51B634E5561AFBAC16BDA1E97A756F1DEE6C5A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HRB_Bluetooth_U3CConnectBleHelperU3Eb__25_0_mC1F1EC8C6814EA1C0814B27266BC43D76484D63C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HRB_Bluetooth_U3CConnectBleHelperU3Eb__25_1_m87DADD8EF6B1375E1235C0AC6897D394B670B5D5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HRB_Bluetooth_U3CConnectBleHelperU3Eb__25_2_mD14FCC25D2AE7B3C34174B631FAE2A30FCE4C87D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HRB_Bluetooth_U3CSetStatusU3Eb__22_0_mC347A67FC38BA5EFBEF4BB0276947D5DBB89CD7A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HRB_DegreaseView_U3CStartU3Eb__4_1_mB935EC8148BC4FEBED21A2ED58531793D75932A2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HRB_DegreaseView_U3CStartU3Eb__4_2_m15D72453A002614F0A9928A6A550482F8881ED37_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HRB_DegreaseView_U3CStartU3Eb__4_3_mA3B760C0EE932B11A5EE60DE0F253E74EE76D2C3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HRB_HomeView_U3CInitColumnABU3Eb__16_0_mF584A1366F18CF3F2AC26EAA9C52CF15FBB311ED_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HRB_HomeView_U3CInitMaskU3Eb__3_0_mF000A4C349B7D2BD4D333375BA631C69FFADFFAF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HRB_HomeView_U3CLoadUserInfoU3Eb__4_0_mCE739928738BEB230A45FE27F69624737EE2D485_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HRB_HomeView_U3CStartU3Eb__2_3_m32C04863B60341704193915652E6AE1ED627A3E8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HRB_LoginView_LoginNormal_mE76EAB7B13A948BC60F73C901B25CAEDC39D1874_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HRB_LoginView_ToRegisterView_m709BA63C9AD9B23535BE39107B2179CA15026EDC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HRB_LoginView_U3CChnageCaptchaU3Eb__11_0_m8CD83677CFCC73F97699F0B8339FFF3B00908D7C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HRB_MeView_CloseAvatarSelectView_m7DE1048CCC04169FFC0C33BD86DD60A4D4E86D3C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HRB_MeView_ShowAvatarSelectView_mA3EE5DBC368525A12A6449FF4726E30ABE035BB9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HRB_MeView_U3COpenDatePickerU3Eb__16_0_m6447EAA7AF7992DB505216639D3F11BFDAE87D44_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HRB_MeView_U3COpenLocationPickerU3Eb__21_0_mC6F2CC8BE3689681F50FDD16E5C752C97D52B347_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HRB_MeView_U3COpenLocationPickerU3Eb__21_1_m92173EEFBC6902BE0FBF51CB1CC52E407CDF30F4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HRB_PlanView_U3CInitPlanWeightLossU3Eb__5_0_mDEEB35FFF8563676A763C65CDCA6C9FA5CD7C3AD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HRB_PlanView_U3CInitPlanWeightLossU3Eb__5_1_mAD397C0673A2502B4676BD4F0237ED9408A820AC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HRB_PlanView_U3CStartU3Eb__2_1_m1F967186A2EED3277EA415470F6685D49B40E2B4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HRB_RegisterView_GetLocation_m5EA7604CF3CF5227D0679FDFA570991A915206AA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HRB_RegisterView_OpenDatePicker_mE6FF6C67E3C3685C32408EC19DCD9B937B1B7466_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HRB_RegisterView_OpenLocationPicker_m76FEEF879A2FD26C20E878A67B898B85297445D3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HRB_RegisterView_RegisterNext_m2A5333BFA04079F4B719888615FDDCB0239426E4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HRB_RegisterView_RegisterSave_m731003CD91B6C2BEDE8188463F6F3DF977940FEF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HRB_RegisterView_U3CChnageCaptchaU3Eb__17_0_m685464E2EF65454F7C6051A05262D524472B14B6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HRB_RegisterView_U3CGetLocationU3Eb__31_0_mF01C09E6E9DA517B8D77864245FE9BFF5FD884B4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HRB_RegisterView_U3CGetLocationU3Eb__31_1_m2A3C7B9C61CB92A5209FF24C630B1F415ECF9330_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HRB_RegisterView_U3COpenDatePickerU3Eb__25_0_mDBDE186B282E9B04173D1783BF23CE5A57AFC666_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HRB_RegisterView_U3CRegisterNextU3Eb__21_0_m8E9388589E604030165CE9A259D26AE1AD013E66_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HTTPCacheService_BeginMaintainence_m7CF02BC193AC1638A77E6216E0E55140489A7E11_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HTTPCacheService_PrepareStreamed_m887247E0B308B18B768EF8FE7D3FB52A5B3CEE26_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HTTPCacheService_Store_m3068CDB9A39AEA564D36DDE8CB6C518F33EE954B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HTTPConnection_ThreadFunc_m8EE1F56C95F6496D61BB2A043991A47D58688C77_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HTTPConnection_U3CConnectU3Eb__7_0_mD62989D1A0A44F67582BD7D3A6E39D46946D93F6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HTTPFormBase_GetData_m4EB817CC7C291C8EEDECD2013DDFA8DAB06249B4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HTTPFormBase_PrepareRequest_m826178285681221D8DBA18888D4874BAC64CFCD2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HTTPManager_OnConnectionRecylced_m2F21F27D4F31E7D5DD35A5AFC83A50E565B250F3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HTTPManager_set_MaxConnectionPerServer_mFF2EDBA22285481DB01A957DA6146B14F4DD3194_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HTTPProtocolFactory_GetProtocolFromUri_mE8C4F386B2F24694029C80A9ED759F4FF4974F8E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HTTPProtocolFactory_IsSecureProtocol_mEBD60F3BC1AED65EFA64D19AD491CC186FA0FC0F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HTTPProxy_Connect_mC54263BFAE727198847B80D6492E0B0CA1B7293D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HTTPRequest_Abort_mD093C17FDF52A73A6762C4D1959B86F0464773BE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HTTPRequest_Reset_mFD26C5D86FC98E6245F56263F40701EF9F5F02D4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HTTPRequest_set_CacheOnly_mB9D6C3B8FC37C1DEA64897AC26B410CD177F12B9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HTTPRequest_set_DisableCache_m7FF877063A703DC79DCD5EB1DE3CC3E964707343_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HTTPRequest_set_IsKeepAlive_m2F5DA8B1300DA3B9A1112B9D9D4B9732899A4D28_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HTTPRequest_set_StreamFragmentSize_mC1FEB4D8020ED43DAA1D03B2736B32BEBA60A88B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HTTPRequest_set_UseStreaming_mF54D003DEC388C017F116B0C184B20F5602158CB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* JsonConvert_DeserializeObject_TisHRB_UserInfo_t33A1D91CD880DFDBEF533505A82350E3D3C8B6A9_m2D2ACAF122823C65C12ABF5BA59968B66AD8EA63_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_get_Key_m16CB99BBD7631726AD4A7050581910997AA197C7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_get_Key_m62FE9F5F821F062C8DCBC73D9CAFB704516FF5BE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_get_Value_m186BC722C59F93B942ABAD43C3FE91D711371211_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_get_Value_m5676458050DF65C737F3AAA71CF4A9D3A501A246_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_get_Value_mC2476B38FA5CB1B8C7A113524E76499DB7127E9B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* LinkedList_1_GetEnumerator_m23E2202D223C083DAC688E7DE70CE31E8902EF46_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m07C610356AB5C68760B3F1A16391671DCCD8FC89_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m57E8F16E09F368CAC170562B0307883284902E2D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m712CD9B14BF2DA1F178A167DD88FA0DB2432829A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m7F58FCE42C6A24E9FDFAB9BA1034920F7E67D0BB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mA31F7E28D59110EFD3A0A0B96E52190E747CE71B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mCECCF5F790E858074AB82811CE8CC99C75E2A939_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_m1E4AF39A1050CD8394AA202B04F2B07267435640_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_m3BF601B0ABC487F7D60DCAD4CEF8CE6363C0FE3C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_mEAEE031CF4C02B7C3B20261D0523359BA8373EED_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Exists_mBCB8DC8D0EB73889417420C647EC3D5353BA8AB3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_FindIndex_m35106E807EBB3C70B41776AC922042C1DA8EC3C4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Find_m3DDE986CD476265E1D3737BD1C554926106863DF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Find_m96A4E687D1529B7DAA06B26C747EB64F5B6A9850_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_m8041326D4A8D9C2B4FD5DC665665140F3AC4C5B0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_m84BDC40E4C4696B3B76CEF72C89C66ACFEF168EB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mCC778581E696F17E42852966AE2D9E1743BC9A12_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mFEADCD2047CEE6D0CFA45A429CF8F3074E37673C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_RemoveAt_mCFE82F08442BCF9908F040F38051C8183BA738DC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Remove_m3252E021253D81FDFC16D6EA456AA17A426954E5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Remove_m37C567F99B3FB4B5C29058A738E07617C39DCC29_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Remove_mC12B2C13444571B235E76CDC562026433C464B1D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Sort_m65189F683C677C96AAAF621490DBCD6E82BE7470_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_ToArray_m2C6B2445AAC353C8DEF6A9C18918C5642E70D327_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_ToArray_mECC850EEEC22522CC135B482CD46396A145A65D5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m2387B419A3F2952A848E1B0A9DF2B989FA5F39C8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m30C52A4F2828D86CA3FAB0B1B583948F4DA9F1F9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m403163EDF30C0B6621D620F9F0789E9A07CECCFC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m46A1C28C169E2F7525AC6EE4E4A50D0A00B71194_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m4D81A60A3C9A9F425B13CEE1AC43A357335E8B0B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m916A4E18084B27B796B4971C42835C4538B227F9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m9AACCDE153A63FBC3ECF18A61B39D12FCBCE9748_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mA1744A70D10E32296ECF132BFF63A811CB50A795_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mF8584C023BE0C2A988FB60BBCFE2F622AF22E79A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m199DB87BCE947106FBA38E19FDFE80CB65B61144_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m2E71CCE00E3A141636251EB314D4A194E9EFB5EE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m8AE987185C2C4F583F4D0E4532CD8D47FD00FFFC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mD1B367C2B55FF6B3506DE6E8970DC93A12DBFA4B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mEC8D5F7B14AC04EA45002CD6385B4D99B109FA12_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m09656BC7AFBC2D9B01CEA2BBD389BE2231BCDB11_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m3F624A80E7853289E4759DE8F16CF23B0958365B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m77F12A63EB4FD22AA4D725B91DC135C20B32AE0A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mB7DA00540AD75B1C988577AAFCBC59A220DA71E1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mF4F6719718719560F662560AC561A3AFF6B39332_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mFD077553662201281C03532C17BBE4C83A5FE95D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_set_Item_m7425E43A385CCC913D4362FD461AB5FC79DA81B3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Object_Instantiate_TisGameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319_m85FD3AD1E7C2C143E7D5491BBB781F1C3DA22B85_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Object_Instantiate_TisGameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319_mACEFD07C5A0FE9C85BC165DF1E4A825675719EAC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Predicate_1__ctor_m4A5A9332129D8DDB24986BC8B1771A0683883ADA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Predicate_1__ctor_m6B6D8E35C0E83BBC784E881CCFA837ED78F48F14_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Predicate_1__ctor_mA0EC6ACCA11889E7D2C8E0D08C1242EECEF5E64E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Predicate_1__ctor_mEF73C868D2A94A127F81693D387621C967D47BBF_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Singleton_1__ctor_m062E752286577263B3C539CE4019517F47F93FC1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Singleton_1_get_Instance_mA0E4AADC24C9635DB52871E746D69650850285A8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Singleton_1_get_Instance_mEA24133F067AA33E873E2B7E10DE993B007252D7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Singleton_1_get_Instance_mF44541474BC5DD051198E345F6E9C943FF05074D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* TweenSettingsExtensions_SetUpdate_TisSequence_tE01FFFCA34A537CE2FF32EDAF451CDEC55A1399E_m919CA95D216B119B67D5C9C18F520957DC35BFC0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CBeginClearU3Eb__33_0_mCB7C00A4062A5CBF42484709799E77015930A2C3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CIsCachebleU3Eb__30_0_mE57589B189591EE9EA4AD9402A03C0FA1ACF4B5F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CIsCachebleU3Eb__30_1_m7CC48A0B56EDCB8DCC8235258F47F26BA5CACB8A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CLoadUserInfoU3Eb__4_1_mF8CA0AAC9FC6AFBD0D0606D61836884B3E08FD75_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CLoginNormalU3Eb__13_0_m6F894AC2F3CA46FE52DE234A07459A0A64D447B9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3COnUpdateU3Eb__104_0_mCF07B4A0E845466FD7C382A46AF09300A0A9EA41_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3COnUpdateU3Eb__104_1_m2359BEEDB8B9B66026D1A1D9AA2DE93EAE7DB3D8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CRegisterSaveU3Eb__23_0_m1979876548F0F6F5B35162848559BB60A3052A75_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CStartU3Eb__13_0_m49BC46E9E6430DA42E21A895B32E1E11A5D3DE39_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CStartU3Eb__2_0_m07BA7B8BC6B0650D822422B9B7230615777BE56C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CStartU3Eb__2_0_m91E59088CFBC292A47A62F664FA73475B2B7625E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CStartU3Eb__2_1_m97A6037F5E84E36B50C9DE0C9D74FCF888431FC4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CStartU3Eb__2_2_m46DD4176A2DEF0FEC0B7057C24508399773F3F52_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CStartU3Eb__2_4_m311A825D9FF4D5B1B4B5994B0D888315D33DACF0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3CStartU3Eb__4_0_mD78A8CE66B50D23A8C68B72C1FFADE68C7CF5436_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3ChandleAuthExpireU3Eb__5_0_m98935C1E4475FA23D8A2490DBB9E2AC6A9AA7E9F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass11_0_U3CInitButtonABU3Eb__0_m28F9CFF7B7F3D8674B6456619D262693AC393963_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass12_0_U3CExcuteLogic_SaveUserInfoU3Eb__0_mBF18BF00E607B4F7DC87605804A0CC4E0897C5C7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass12_0_U3COnEnableU3Eb__0_mC8C9BFCB47DBEAF8949BC955724B13434A9B3071_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass14_0_U3CInitInputLimitU3Eb__0_m3EFEAE76F0BD938EF1F9D197879B8D3F89008C13_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass14_0_U3COpenDatePickerU3Eb__0_m2A66F3A7C4F25C770D877DD397097646FAEF7CE2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass21_0_U3CSaveU3Eb__0_mD0C0D984CCC0B4F24571439595A9C8CBA80F3D79_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass236_0_U3CEnumerateHeadersU3Eb__0_m8FF9E6BB7A1EF5B9685A7CE090B71F75A637AC19_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass237_0_U3CSendHeadersU3Eb__0_m346B09F9A602530EB3CA701F0FB36C5423A99D15_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass24_1_U3CShowAvatarSelectViewU3Eb__0_mADA99AA8D0A4FF98B632729A447DA3DC4D5194B5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass25_0_U3CConnectBleHelperU3Eb__3_m7A59D791A0A9640F3A2FE47501C6F1868908E5E5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass35_0_U3CBeginMaintainenceU3Eb__0_mF7546985FFE5555AB01442D5C556E828E3B20E43_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass94_0_U3CSendRequestImplU3Eb__0_m0F8FC6FDD9D7698EFEBCB0AAA6E19A8128BFBDFA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass9_0_U3CInitInputLimitU3Eb__0_mF9CF9DD4751C16EF5001A7BF196411182D02F9C7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* UnityAction_1__ctor_mBB6FF824ECCAE3C08CD8B015E235BBDC15BCF43F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* UnityEvent_1_AddListener_mC6DDB55AF3B8AC6DBA08F1695CE00DE191603830_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ViewManager_1_DestroyView_TisHRB_MeView_t6E8399EB5C5A369A0E043C949BB4F953DF0A9C76_mD53176EA02D7573DB91AE6B8D5139E9ED8D54C8E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ViewManager_1_DestroyView_TisHRB_PlanView_t5BDCE3FB207F5302CCB99DF4865485D4F727F9D3_m8FEA6A575C72997BCFB782BADABE03F54A755D03_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ViewManager_1_HideView_TisHRB_DegreaseView_tBFDCE6B3DF07E6FBF2F3EF05AE4AD2B9481183BD_m9691450ADD512870E3023817FECD0D698D097144_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ViewManager_1_NotifyView_TisHRB_LoginView_tAB63EA9B74F3B36084D0BEFF7E1F1C66212D2A07_m64368DF395B2C6F86B069109CBEA22743AE4C44C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ViewManager_1_ShowView_TisHRB_HomeView_t287CA33A5A196A46E071D4C02FE00DF5C3C4C9F0_mBAFF060C334FFE9F73A5664E4C7975172E19BB4E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ViewManager_1_ShowView_TisHRB_LoginView_tAB63EA9B74F3B36084D0BEFF7E1F1C66212D2A07_m77B63A7919D9B293E9BC7978240154E86B7316F8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ViewManager_1_ShowView_TisHRB_RegisterView_t359F235962408A9007BD942F4F568BC3DFBB2D3D_mC3D2353C809BF36A25916DA7D28C7DFAEA66FDC4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ViewManager_1__ctor_m2CE759B3554658FA49D40144864907A46B979C6F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ViewManager_1_get_Instance_m98EFADBB86F374A94E5D44239185F5148030CE86_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeType* HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D_0_0_0_var; struct Delegate_t_marshaled_com; struct Delegate_t_marshaled_pinvoke; struct Exception_t_marshaled_com; struct Exception_t_marshaled_pinvoke; struct ByteU5BU5DU5BU5D_t95107DE217CCFA8CD77945AC2CB9492D4D01FE8D; struct ButtonU5BU5D_t2D8C7329F91F78C37FD1A3807DCD4366F7D7EC7B; struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726; struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34; struct DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8; struct GameObjectU5BU5D_tA88FC1A1FC9D4D73D0B3984D4B0ECE88F4C47642; struct HTTPRequestU5BU5D_t07CB6A710CA439BDB33EC53845374F01CEAF53BD; struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE; struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A; IL2CPP_EXTERN_C_BEGIN IL2CPP_EXTERN_C_END #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Object // System.Collections.Generic.Dictionary`2> struct Dictionary_2_t3CA977FBCA3158664D7AB53A25D36155F805ABB3 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tE18846587C85764549F05477E26512783A080BB6* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1 System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection System.Collections.Generic.Dictionary`2::keys KeyCollection_tFADD239CE1F7F58DB653D6C58588EA919DE0F9C5 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::values ValueCollection_t023E9821E81BF515DC3123A885A210A2E40D5642 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast(offsetof(Dictionary_2_t3CA977FBCA3158664D7AB53A25D36155F805ABB3, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast(offsetof(Dictionary_2_t3CA977FBCA3158664D7AB53A25D36155F805ABB3, ___entries_1)); } inline EntryU5BU5D_tE18846587C85764549F05477E26512783A080BB6* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tE18846587C85764549F05477E26512783A080BB6** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tE18846587C85764549F05477E26512783A080BB6* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast(offsetof(Dictionary_2_t3CA977FBCA3158664D7AB53A25D36155F805ABB3, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast(offsetof(Dictionary_2_t3CA977FBCA3158664D7AB53A25D36155F805ABB3, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast(offsetof(Dictionary_2_t3CA977FBCA3158664D7AB53A25D36155F805ABB3, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast(offsetof(Dictionary_2_t3CA977FBCA3158664D7AB53A25D36155F805ABB3, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast(offsetof(Dictionary_2_t3CA977FBCA3158664D7AB53A25D36155F805ABB3, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast(offsetof(Dictionary_2_t3CA977FBCA3158664D7AB53A25D36155F805ABB3, ___keys_7)); } inline KeyCollection_tFADD239CE1F7F58DB653D6C58588EA919DE0F9C5 * get_keys_7() const { return ___keys_7; } inline KeyCollection_tFADD239CE1F7F58DB653D6C58588EA919DE0F9C5 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tFADD239CE1F7F58DB653D6C58588EA919DE0F9C5 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast(offsetof(Dictionary_2_t3CA977FBCA3158664D7AB53A25D36155F805ABB3, ___values_8)); } inline ValueCollection_t023E9821E81BF515DC3123A885A210A2E40D5642 * get_values_8() const { return ___values_8; } inline ValueCollection_t023E9821E81BF515DC3123A885A210A2E40D5642 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t023E9821E81BF515DC3123A885A210A2E40D5642 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast(offsetof(Dictionary_2_t3CA977FBCA3158664D7AB53A25D36155F805ABB3, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2> struct Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tEB1A6A782C0FB4D167EF4299967371DCD8A5FDB7* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1 System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection System.Collections.Generic.Dictionary`2::keys KeyCollection_tFDE7FE6F6A0AE461D4FD5935445ADF914C9610C8 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::values ValueCollection_t3C26F2C1F184437F9AF9918EEA4CE247BD559468 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast(offsetof(Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast(offsetof(Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086, ___entries_1)); } inline EntryU5BU5D_tEB1A6A782C0FB4D167EF4299967371DCD8A5FDB7* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tEB1A6A782C0FB4D167EF4299967371DCD8A5FDB7** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tEB1A6A782C0FB4D167EF4299967371DCD8A5FDB7* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast(offsetof(Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast(offsetof(Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast(offsetof(Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast(offsetof(Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast(offsetof(Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast(offsetof(Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086, ___keys_7)); } inline KeyCollection_tFDE7FE6F6A0AE461D4FD5935445ADF914C9610C8 * get_keys_7() const { return ___keys_7; } inline KeyCollection_tFDE7FE6F6A0AE461D4FD5935445ADF914C9610C8 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tFDE7FE6F6A0AE461D4FD5935445ADF914C9610C8 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast(offsetof(Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086, ___values_8)); } inline ValueCollection_t3C26F2C1F184437F9AF9918EEA4CE247BD559468 * get_values_8() const { return ___values_8; } inline ValueCollection_t3C26F2C1F184437F9AF9918EEA4CE247BD559468 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t3C26F2C1F184437F9AF9918EEA4CE247BD559468 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast(offsetof(Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tA951181AD5BB597EA527552FB0018E7527A392E6 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t68640AF7054769CF1B94C73AA3924D7A8F5886F6* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1 System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection System.Collections.Generic.Dictionary`2::keys KeyCollection_t0AE40DB207EC49843B4FAB9BAF28D53F3CD8C8B0 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::values ValueCollection_t0A6A407E23889BA87FA826534005C4F75B7D17B6 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast(offsetof(Dictionary_2_tA951181AD5BB597EA527552FB0018E7527A392E6, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast(offsetof(Dictionary_2_tA951181AD5BB597EA527552FB0018E7527A392E6, ___entries_1)); } inline EntryU5BU5D_t68640AF7054769CF1B94C73AA3924D7A8F5886F6* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t68640AF7054769CF1B94C73AA3924D7A8F5886F6** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t68640AF7054769CF1B94C73AA3924D7A8F5886F6* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast(offsetof(Dictionary_2_tA951181AD5BB597EA527552FB0018E7527A392E6, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast(offsetof(Dictionary_2_tA951181AD5BB597EA527552FB0018E7527A392E6, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast(offsetof(Dictionary_2_tA951181AD5BB597EA527552FB0018E7527A392E6, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast(offsetof(Dictionary_2_tA951181AD5BB597EA527552FB0018E7527A392E6, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast(offsetof(Dictionary_2_tA951181AD5BB597EA527552FB0018E7527A392E6, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast(offsetof(Dictionary_2_tA951181AD5BB597EA527552FB0018E7527A392E6, ___keys_7)); } inline KeyCollection_t0AE40DB207EC49843B4FAB9BAF28D53F3CD8C8B0 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t0AE40DB207EC49843B4FAB9BAF28D53F3CD8C8B0 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t0AE40DB207EC49843B4FAB9BAF28D53F3CD8C8B0 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast(offsetof(Dictionary_2_tA951181AD5BB597EA527552FB0018E7527A392E6, ___values_8)); } inline ValueCollection_t0A6A407E23889BA87FA826534005C4F75B7D17B6 * get_values_8() const { return ___values_8; } inline ValueCollection_t0A6A407E23889BA87FA826534005C4F75B7D17B6 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t0A6A407E23889BA87FA826534005C4F75B7D17B6 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast(offsetof(Dictionary_2_tA951181AD5BB597EA527552FB0018E7527A392E6, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tF5B4A5A925F35194AB6289544146EEDFF54229AC : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t429AF564CC42ADBD78C8E1846C01B251901FD1AE* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1 System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection System.Collections.Generic.Dictionary`2::keys KeyCollection_t2279FB387D8A4C4355AE9ADD613394674B5B306E * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::values ValueCollection_t63908A12C333A73C1F61A241468EFF0D9687D74B * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast(offsetof(Dictionary_2_tF5B4A5A925F35194AB6289544146EEDFF54229AC, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast(offsetof(Dictionary_2_tF5B4A5A925F35194AB6289544146EEDFF54229AC, ___entries_1)); } inline EntryU5BU5D_t429AF564CC42ADBD78C8E1846C01B251901FD1AE* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t429AF564CC42ADBD78C8E1846C01B251901FD1AE** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t429AF564CC42ADBD78C8E1846C01B251901FD1AE* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast(offsetof(Dictionary_2_tF5B4A5A925F35194AB6289544146EEDFF54229AC, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast(offsetof(Dictionary_2_tF5B4A5A925F35194AB6289544146EEDFF54229AC, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast(offsetof(Dictionary_2_tF5B4A5A925F35194AB6289544146EEDFF54229AC, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast(offsetof(Dictionary_2_tF5B4A5A925F35194AB6289544146EEDFF54229AC, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast(offsetof(Dictionary_2_tF5B4A5A925F35194AB6289544146EEDFF54229AC, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast(offsetof(Dictionary_2_tF5B4A5A925F35194AB6289544146EEDFF54229AC, ___keys_7)); } inline KeyCollection_t2279FB387D8A4C4355AE9ADD613394674B5B306E * get_keys_7() const { return ___keys_7; } inline KeyCollection_t2279FB387D8A4C4355AE9ADD613394674B5B306E ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t2279FB387D8A4C4355AE9ADD613394674B5B306E * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast(offsetof(Dictionary_2_tF5B4A5A925F35194AB6289544146EEDFF54229AC, ___values_8)); } inline ValueCollection_t63908A12C333A73C1F61A241468EFF0D9687D74B * get_values_8() const { return ___values_8; } inline ValueCollection_t63908A12C333A73C1F61A241468EFF0D9687D74B ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t63908A12C333A73C1F61A241468EFF0D9687D74B * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast(offsetof(Dictionary_2_tF5B4A5A925F35194AB6289544146EEDFF54229AC, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t470893CE409900ABAC60976F4121AC4F831D4ACD : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tC3F65E876B938FBDB1AC45EBF80E240714B77E30* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1 System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection System.Collections.Generic.Dictionary`2::keys KeyCollection_t688C48BD28F7E33670ACEE7DFE9D45BA5BDD1CF9 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection System.Collections.Generic.Dictionary`2::values ValueCollection_tE418F3E79BEBA8B712BEF9D63B479DA84B214666 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast(offsetof(Dictionary_2_t470893CE409900ABAC60976F4121AC4F831D4ACD, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast(offsetof(Dictionary_2_t470893CE409900ABAC60976F4121AC4F831D4ACD, ___entries_1)); } inline EntryU5BU5D_tC3F65E876B938FBDB1AC45EBF80E240714B77E30* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tC3F65E876B938FBDB1AC45EBF80E240714B77E30** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tC3F65E876B938FBDB1AC45EBF80E240714B77E30* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast(offsetof(Dictionary_2_t470893CE409900ABAC60976F4121AC4F831D4ACD, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast(offsetof(Dictionary_2_t470893CE409900ABAC60976F4121AC4F831D4ACD, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast(offsetof(Dictionary_2_t470893CE409900ABAC60976F4121AC4F831D4ACD, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast(offsetof(Dictionary_2_t470893CE409900ABAC60976F4121AC4F831D4ACD, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast(offsetof(Dictionary_2_t470893CE409900ABAC60976F4121AC4F831D4ACD, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast(offsetof(Dictionary_2_t470893CE409900ABAC60976F4121AC4F831D4ACD, ___keys_7)); } inline KeyCollection_t688C48BD28F7E33670ACEE7DFE9D45BA5BDD1CF9 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t688C48BD28F7E33670ACEE7DFE9D45BA5BDD1CF9 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t688C48BD28F7E33670ACEE7DFE9D45BA5BDD1CF9 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast(offsetof(Dictionary_2_t470893CE409900ABAC60976F4121AC4F831D4ACD, ___values_8)); } inline ValueCollection_tE418F3E79BEBA8B712BEF9D63B479DA84B214666 * get_values_8() const { return ___values_8; } inline ValueCollection_tE418F3E79BEBA8B712BEF9D63B479DA84B214666 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tE418F3E79BEBA8B712BEF9D63B479DA84B214666 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast(offsetof(Dictionary_2_t470893CE409900ABAC60976F4121AC4F831D4ACD, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.EmptyArray`1 struct EmptyArray_1_tBF73225DFA890366D579424FE8F40073BF9FBAD4 : public RuntimeObject { public: public: }; struct EmptyArray_1_tBF73225DFA890366D579424FE8F40073BF9FBAD4_StaticFields { public: // T[] System.EmptyArray`1::Value ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___Value_0; public: inline static int32_t get_offset_of_Value_0() { return static_cast(offsetof(EmptyArray_1_tBF73225DFA890366D579424FE8F40073BF9FBAD4_StaticFields, ___Value_0)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_Value_0() const { return ___Value_0; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_Value_0() { return &___Value_0; } inline void set_Value_0(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ___Value_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value); } }; // System.Collections.Generic.LinkedList`1 struct LinkedList_1_t4D1C6102EE9207074443C96892ECBFBD7BCA71B7 : public RuntimeObject { public: // System.Collections.Generic.LinkedListNode`1 System.Collections.Generic.LinkedList`1::head LinkedListNode_1_t44E058806892713895B08C561508F75328F5F05A * ___head_0; // System.Int32 System.Collections.Generic.LinkedList`1::count int32_t ___count_1; // System.Int32 System.Collections.Generic.LinkedList`1::version int32_t ___version_2; // System.Object System.Collections.Generic.LinkedList`1::_syncRoot RuntimeObject * ____syncRoot_3; // System.Runtime.Serialization.SerializationInfo System.Collections.Generic.LinkedList`1::_siInfo SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ____siInfo_4; public: inline static int32_t get_offset_of_head_0() { return static_cast(offsetof(LinkedList_1_t4D1C6102EE9207074443C96892ECBFBD7BCA71B7, ___head_0)); } inline LinkedListNode_1_t44E058806892713895B08C561508F75328F5F05A * get_head_0() const { return ___head_0; } inline LinkedListNode_1_t44E058806892713895B08C561508F75328F5F05A ** get_address_of_head_0() { return &___head_0; } inline void set_head_0(LinkedListNode_1_t44E058806892713895B08C561508F75328F5F05A * value) { ___head_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___head_0), (void*)value); } inline static int32_t get_offset_of_count_1() { return static_cast(offsetof(LinkedList_1_t4D1C6102EE9207074443C96892ECBFBD7BCA71B7, ___count_1)); } inline int32_t get_count_1() const { return ___count_1; } inline int32_t* get_address_of_count_1() { return &___count_1; } inline void set_count_1(int32_t value) { ___count_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast(offsetof(LinkedList_1_t4D1C6102EE9207074443C96892ECBFBD7BCA71B7, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of__syncRoot_3() { return static_cast(offsetof(LinkedList_1_t4D1C6102EE9207074443C96892ECBFBD7BCA71B7, ____syncRoot_3)); } inline RuntimeObject * get__syncRoot_3() const { return ____syncRoot_3; } inline RuntimeObject ** get_address_of__syncRoot_3() { return &____syncRoot_3; } inline void set__syncRoot_3(RuntimeObject * value) { ____syncRoot_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_3), (void*)value); } inline static int32_t get_offset_of__siInfo_4() { return static_cast(offsetof(LinkedList_1_t4D1C6102EE9207074443C96892ECBFBD7BCA71B7, ____siInfo_4)); } inline SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * get__siInfo_4() const { return ____siInfo_4; } inline SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 ** get_address_of__siInfo_4() { return &____siInfo_4; } inline void set__siInfo_4(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * value) { ____siInfo_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____siInfo_4), (void*)value); } }; // System.Collections.Generic.LinkedList`1 struct LinkedList_1_t3656FF46586A1EDB68EC68E62D94A1284314CC08 : public RuntimeObject { public: // System.Collections.Generic.LinkedListNode`1 System.Collections.Generic.LinkedList`1::head LinkedListNode_1_tF40B0719F8838F79333922567D1CFDB4B3B71904 * ___head_0; // System.Int32 System.Collections.Generic.LinkedList`1::count int32_t ___count_1; // System.Int32 System.Collections.Generic.LinkedList`1::version int32_t ___version_2; // System.Object System.Collections.Generic.LinkedList`1::_syncRoot RuntimeObject * ____syncRoot_3; // System.Runtime.Serialization.SerializationInfo System.Collections.Generic.LinkedList`1::_siInfo SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ____siInfo_4; public: inline static int32_t get_offset_of_head_0() { return static_cast(offsetof(LinkedList_1_t3656FF46586A1EDB68EC68E62D94A1284314CC08, ___head_0)); } inline LinkedListNode_1_tF40B0719F8838F79333922567D1CFDB4B3B71904 * get_head_0() const { return ___head_0; } inline LinkedListNode_1_tF40B0719F8838F79333922567D1CFDB4B3B71904 ** get_address_of_head_0() { return &___head_0; } inline void set_head_0(LinkedListNode_1_tF40B0719F8838F79333922567D1CFDB4B3B71904 * value) { ___head_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___head_0), (void*)value); } inline static int32_t get_offset_of_count_1() { return static_cast(offsetof(LinkedList_1_t3656FF46586A1EDB68EC68E62D94A1284314CC08, ___count_1)); } inline int32_t get_count_1() const { return ___count_1; } inline int32_t* get_address_of_count_1() { return &___count_1; } inline void set_count_1(int32_t value) { ___count_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast(offsetof(LinkedList_1_t3656FF46586A1EDB68EC68E62D94A1284314CC08, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of__syncRoot_3() { return static_cast(offsetof(LinkedList_1_t3656FF46586A1EDB68EC68E62D94A1284314CC08, ____syncRoot_3)); } inline RuntimeObject * get__syncRoot_3() const { return ____syncRoot_3; } inline RuntimeObject ** get_address_of__syncRoot_3() { return &____syncRoot_3; } inline void set__syncRoot_3(RuntimeObject * value) { ____syncRoot_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_3), (void*)value); } inline static int32_t get_offset_of__siInfo_4() { return static_cast(offsetof(LinkedList_1_t3656FF46586A1EDB68EC68E62D94A1284314CC08, ____siInfo_4)); } inline SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * get__siInfo_4() const { return ____siInfo_4; } inline SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 ** get_address_of__siInfo_4() { return &____siInfo_4; } inline void set__siInfo_4(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * value) { ____siInfo_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____siInfo_4), (void*)value); } }; // System.Collections.Generic.List`1 struct List_1_tFD38E11A811DED19252DF7684390FF692DB525C5 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items BluetoothHelperServiceU5BU5D_t5A3A20BCCF322FE87BA649BDC87BD8EF8F28093D* ____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; public: inline static int32_t get_offset_of__items_1() { return static_cast(offsetof(List_1_tFD38E11A811DED19252DF7684390FF692DB525C5, ____items_1)); } inline BluetoothHelperServiceU5BU5D_t5A3A20BCCF322FE87BA649BDC87BD8EF8F28093D* get__items_1() const { return ____items_1; } inline BluetoothHelperServiceU5BU5D_t5A3A20BCCF322FE87BA649BDC87BD8EF8F28093D** get_address_of__items_1() { return &____items_1; } inline void set__items_1(BluetoothHelperServiceU5BU5D_t5A3A20BCCF322FE87BA649BDC87BD8EF8F28093D* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast(offsetof(List_1_tFD38E11A811DED19252DF7684390FF692DB525C5, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast(offsetof(List_1_tFD38E11A811DED19252DF7684390FF692DB525C5, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast(offsetof(List_1_tFD38E11A811DED19252DF7684390FF692DB525C5, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct List_1_tFD38E11A811DED19252DF7684390FF692DB525C5_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray BluetoothHelperServiceU5BU5D_t5A3A20BCCF322FE87BA649BDC87BD8EF8F28093D* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast(offsetof(List_1_tFD38E11A811DED19252DF7684390FF692DB525C5_StaticFields, ____emptyArray_5)); } inline BluetoothHelperServiceU5BU5D_t5A3A20BCCF322FE87BA649BDC87BD8EF8F28093D* get__emptyArray_5() const { return ____emptyArray_5; } inline BluetoothHelperServiceU5BU5D_t5A3A20BCCF322FE87BA649BDC87BD8EF8F28093D** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(BluetoothHelperServiceU5BU5D_t5A3A20BCCF322FE87BA649BDC87BD8EF8F28093D* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1 struct List_1_t21BC49A4390CA067C4050F19A1D58BE64AC2E89E : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items ButtonU5BU5D_t2D8C7329F91F78C37FD1A3807DCD4366F7D7EC7B* ____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; public: inline static int32_t get_offset_of__items_1() { return static_cast(offsetof(List_1_t21BC49A4390CA067C4050F19A1D58BE64AC2E89E, ____items_1)); } inline ButtonU5BU5D_t2D8C7329F91F78C37FD1A3807DCD4366F7D7EC7B* get__items_1() const { return ____items_1; } inline ButtonU5BU5D_t2D8C7329F91F78C37FD1A3807DCD4366F7D7EC7B** get_address_of__items_1() { return &____items_1; } inline void set__items_1(ButtonU5BU5D_t2D8C7329F91F78C37FD1A3807DCD4366F7D7EC7B* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast(offsetof(List_1_t21BC49A4390CA067C4050F19A1D58BE64AC2E89E, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast(offsetof(List_1_t21BC49A4390CA067C4050F19A1D58BE64AC2E89E, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast(offsetof(List_1_t21BC49A4390CA067C4050F19A1D58BE64AC2E89E, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct List_1_t21BC49A4390CA067C4050F19A1D58BE64AC2E89E_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray ButtonU5BU5D_t2D8C7329F91F78C37FD1A3807DCD4366F7D7EC7B* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast(offsetof(List_1_t21BC49A4390CA067C4050F19A1D58BE64AC2E89E_StaticFields, ____emptyArray_5)); } inline ButtonU5BU5D_t2D8C7329F91F78C37FD1A3807DCD4366F7D7EC7B* get__emptyArray_5() const { return ____emptyArray_5; } inline ButtonU5BU5D_t2D8C7329F91F78C37FD1A3807DCD4366F7D7EC7B** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(ButtonU5BU5D_t2D8C7329F91F78C37FD1A3807DCD4366F7D7EC7B* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1 struct List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items ConnectionBaseU5BU5D_t4820A8B5C6276E9926DCCF379A6FA46C9DB26F9A* ____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; public: inline static int32_t get_offset_of__items_1() { return static_cast(offsetof(List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836, ____items_1)); } inline ConnectionBaseU5BU5D_t4820A8B5C6276E9926DCCF379A6FA46C9DB26F9A* get__items_1() const { return ____items_1; } inline ConnectionBaseU5BU5D_t4820A8B5C6276E9926DCCF379A6FA46C9DB26F9A** get_address_of__items_1() { return &____items_1; } inline void set__items_1(ConnectionBaseU5BU5D_t4820A8B5C6276E9926DCCF379A6FA46C9DB26F9A* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast(offsetof(List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast(offsetof(List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast(offsetof(List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray ConnectionBaseU5BU5D_t4820A8B5C6276E9926DCCF379A6FA46C9DB26F9A* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast(offsetof(List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836_StaticFields, ____emptyArray_5)); } inline ConnectionBaseU5BU5D_t4820A8B5C6276E9926DCCF379A6FA46C9DB26F9A* get__emptyArray_5() const { return ____emptyArray_5; } inline ConnectionBaseU5BU5D_t4820A8B5C6276E9926DCCF379A6FA46C9DB26F9A** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(ConnectionBaseU5BU5D_t4820A8B5C6276E9926DCCF379A6FA46C9DB26F9A* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1 struct List_1_tF9D8E572A8599785D6C36AD7BDC592752B89E0A1 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items CookieU5BU5D_tDF93A5552501FC6ED12D5E69F15104C81EF9F051* ____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; public: inline static int32_t get_offset_of__items_1() { return static_cast(offsetof(List_1_tF9D8E572A8599785D6C36AD7BDC592752B89E0A1, ____items_1)); } inline CookieU5BU5D_tDF93A5552501FC6ED12D5E69F15104C81EF9F051* get__items_1() const { return ____items_1; } inline CookieU5BU5D_tDF93A5552501FC6ED12D5E69F15104C81EF9F051** get_address_of__items_1() { return &____items_1; } inline void set__items_1(CookieU5BU5D_tDF93A5552501FC6ED12D5E69F15104C81EF9F051* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast(offsetof(List_1_tF9D8E572A8599785D6C36AD7BDC592752B89E0A1, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast(offsetof(List_1_tF9D8E572A8599785D6C36AD7BDC592752B89E0A1, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast(offsetof(List_1_tF9D8E572A8599785D6C36AD7BDC592752B89E0A1, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct List_1_tF9D8E572A8599785D6C36AD7BDC592752B89E0A1_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray CookieU5BU5D_tDF93A5552501FC6ED12D5E69F15104C81EF9F051* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast(offsetof(List_1_tF9D8E572A8599785D6C36AD7BDC592752B89E0A1_StaticFields, ____emptyArray_5)); } inline CookieU5BU5D_tDF93A5552501FC6ED12D5E69F15104C81EF9F051* get__emptyArray_5() const { return ____emptyArray_5; } inline CookieU5BU5D_tDF93A5552501FC6ED12D5E69F15104C81EF9F051** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(CookieU5BU5D_tDF93A5552501FC6ED12D5E69F15104C81EF9F051* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1 struct List_1_tAB6EE9557BF734F9EF011194835DEFD04B650ACD : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items HTTPFieldDataU5BU5D_tAD8FDF3D2548E3FA09A798625C0F06549E55228D* ____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; public: inline static int32_t get_offset_of__items_1() { return static_cast(offsetof(List_1_tAB6EE9557BF734F9EF011194835DEFD04B650ACD, ____items_1)); } inline HTTPFieldDataU5BU5D_tAD8FDF3D2548E3FA09A798625C0F06549E55228D* get__items_1() const { return ____items_1; } inline HTTPFieldDataU5BU5D_tAD8FDF3D2548E3FA09A798625C0F06549E55228D** get_address_of__items_1() { return &____items_1; } inline void set__items_1(HTTPFieldDataU5BU5D_tAD8FDF3D2548E3FA09A798625C0F06549E55228D* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast(offsetof(List_1_tAB6EE9557BF734F9EF011194835DEFD04B650ACD, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast(offsetof(List_1_tAB6EE9557BF734F9EF011194835DEFD04B650ACD, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast(offsetof(List_1_tAB6EE9557BF734F9EF011194835DEFD04B650ACD, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct List_1_tAB6EE9557BF734F9EF011194835DEFD04B650ACD_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray HTTPFieldDataU5BU5D_tAD8FDF3D2548E3FA09A798625C0F06549E55228D* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast(offsetof(List_1_tAB6EE9557BF734F9EF011194835DEFD04B650ACD_StaticFields, ____emptyArray_5)); } inline HTTPFieldDataU5BU5D_tAD8FDF3D2548E3FA09A798625C0F06549E55228D* get__emptyArray_5() const { return ____emptyArray_5; } inline HTTPFieldDataU5BU5D_tAD8FDF3D2548E3FA09A798625C0F06549E55228D** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(HTTPFieldDataU5BU5D_tAD8FDF3D2548E3FA09A798625C0F06549E55228D* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1 struct List_1_t406EC705E72137D2240DC7D4E2B21A200546B181 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items HTTPRequestU5BU5D_t07CB6A710CA439BDB33EC53845374F01CEAF53BD* ____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; public: inline static int32_t get_offset_of__items_1() { return static_cast(offsetof(List_1_t406EC705E72137D2240DC7D4E2B21A200546B181, ____items_1)); } inline HTTPRequestU5BU5D_t07CB6A710CA439BDB33EC53845374F01CEAF53BD* get__items_1() const { return ____items_1; } inline HTTPRequestU5BU5D_t07CB6A710CA439BDB33EC53845374F01CEAF53BD** get_address_of__items_1() { return &____items_1; } inline void set__items_1(HTTPRequestU5BU5D_t07CB6A710CA439BDB33EC53845374F01CEAF53BD* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast(offsetof(List_1_t406EC705E72137D2240DC7D4E2B21A200546B181, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast(offsetof(List_1_t406EC705E72137D2240DC7D4E2B21A200546B181, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast(offsetof(List_1_t406EC705E72137D2240DC7D4E2B21A200546B181, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct List_1_t406EC705E72137D2240DC7D4E2B21A200546B181_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray HTTPRequestU5BU5D_t07CB6A710CA439BDB33EC53845374F01CEAF53BD* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast(offsetof(List_1_t406EC705E72137D2240DC7D4E2B21A200546B181_StaticFields, ____emptyArray_5)); } inline HTTPRequestU5BU5D_t07CB6A710CA439BDB33EC53845374F01CEAF53BD* get__emptyArray_5() const { return ____emptyArray_5; } inline HTTPRequestU5BU5D_t07CB6A710CA439BDB33EC53845374F01CEAF53BD** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(HTTPRequestU5BU5D_t07CB6A710CA439BDB33EC53845374F01CEAF53BD* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1 struct List_1_t857A27AA47EED217A2CFE04C0C9B7FCDDE0C284F : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items MenuBackInterfaceU5BU5D_tA24F6448F755036743002A4FC82ED96F18D421E5* ____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; public: inline static int32_t get_offset_of__items_1() { return static_cast(offsetof(List_1_t857A27AA47EED217A2CFE04C0C9B7FCDDE0C284F, ____items_1)); } inline MenuBackInterfaceU5BU5D_tA24F6448F755036743002A4FC82ED96F18D421E5* get__items_1() const { return ____items_1; } inline MenuBackInterfaceU5BU5D_tA24F6448F755036743002A4FC82ED96F18D421E5** get_address_of__items_1() { return &____items_1; } inline void set__items_1(MenuBackInterfaceU5BU5D_tA24F6448F755036743002A4FC82ED96F18D421E5* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast(offsetof(List_1_t857A27AA47EED217A2CFE04C0C9B7FCDDE0C284F, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast(offsetof(List_1_t857A27AA47EED217A2CFE04C0C9B7FCDDE0C284F, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast(offsetof(List_1_t857A27AA47EED217A2CFE04C0C9B7FCDDE0C284F, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct List_1_t857A27AA47EED217A2CFE04C0C9B7FCDDE0C284F_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray MenuBackInterfaceU5BU5D_tA24F6448F755036743002A4FC82ED96F18D421E5* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast(offsetof(List_1_t857A27AA47EED217A2CFE04C0C9B7FCDDE0C284F_StaticFields, ____emptyArray_5)); } inline MenuBackInterfaceU5BU5D_tA24F6448F755036743002A4FC82ED96F18D421E5* get__emptyArray_5() const { return ____emptyArray_5; } inline MenuBackInterfaceU5BU5D_tA24F6448F755036743002A4FC82ED96F18D421E5** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(MenuBackInterfaceU5BU5D_tA24F6448F755036743002A4FC82ED96F18D421E5* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1 struct List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____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; public: inline static int32_t get_offset_of__items_1() { return static_cast(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____items_1)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__items_1() const { return ____items_1; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__items_1() { return &____items_1; } inline void set__items_1(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5_StaticFields, ____emptyArray_5)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__emptyArray_5() const { return ____emptyArray_5; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1 struct List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ____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; public: inline static int32_t get_offset_of__items_1() { return static_cast(offsetof(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3, ____items_1)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get__items_1() const { return ____items_1; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of__items_1() { return &____items_1; } inline void set__items_1(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast(offsetof(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast(offsetof(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast(offsetof(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast(offsetof(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3_StaticFields, ____emptyArray_5)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get__emptyArray_5() const { return ____emptyArray_5; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // JCUnityLib.Singleton`1 struct Singleton_1_t82CBAAE5BEBBEE846D96C04D8CEF2F30A4112400 : public RuntimeObject { public: public: }; struct Singleton_1_t82CBAAE5BEBBEE846D96C04D8CEF2F30A4112400_StaticFields { public: // T JCUnityLib.Singleton`1::s_Instance CaptchaController_t43D34329B0D2332B81C73361818403490AF27437 * ___s_Instance_0; public: inline static int32_t get_offset_of_s_Instance_0() { return static_cast(offsetof(Singleton_1_t82CBAAE5BEBBEE846D96C04D8CEF2F30A4112400_StaticFields, ___s_Instance_0)); } inline CaptchaController_t43D34329B0D2332B81C73361818403490AF27437 * get_s_Instance_0() const { return ___s_Instance_0; } inline CaptchaController_t43D34329B0D2332B81C73361818403490AF27437 ** get_address_of_s_Instance_0() { return &___s_Instance_0; } inline void set_s_Instance_0(CaptchaController_t43D34329B0D2332B81C73361818403490AF27437 * value) { ___s_Instance_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_Instance_0), (void*)value); } }; // JCUnityLib.Singleton`1 struct Singleton_1_t4C10A31CE8B158E185660F1293127F7D95894322 : public RuntimeObject { public: public: }; struct Singleton_1_t4C10A31CE8B158E185660F1293127F7D95894322_StaticFields { public: // T JCUnityLib.Singleton`1::s_Instance HRB_Controller_tE1A7F19BF3E22DAFD78C6889E6DBEB285342C247 * ___s_Instance_0; public: inline static int32_t get_offset_of_s_Instance_0() { return static_cast(offsetof(Singleton_1_t4C10A31CE8B158E185660F1293127F7D95894322_StaticFields, ___s_Instance_0)); } inline HRB_Controller_tE1A7F19BF3E22DAFD78C6889E6DBEB285342C247 * get_s_Instance_0() const { return ___s_Instance_0; } inline HRB_Controller_tE1A7F19BF3E22DAFD78C6889E6DBEB285342C247 ** get_address_of_s_Instance_0() { return &___s_Instance_0; } inline void set_s_Instance_0(HRB_Controller_tE1A7F19BF3E22DAFD78C6889E6DBEB285342C247 * value) { ___s_Instance_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_Instance_0), (void*)value); } }; // JCUnityLib.Singleton`1 struct Singleton_1_tF63498CA94A978D333FED8B0AD98946D08CBEC59 : public RuntimeObject { public: public: }; struct Singleton_1_tF63498CA94A978D333FED8B0AD98946D08CBEC59_StaticFields { public: // T JCUnityLib.Singleton`1::s_Instance LoginController_t03F941FA0DBBB22F0DD5B41C1F54876FA93466B6 * ___s_Instance_0; public: inline static int32_t get_offset_of_s_Instance_0() { return static_cast(offsetof(Singleton_1_tF63498CA94A978D333FED8B0AD98946D08CBEC59_StaticFields, ___s_Instance_0)); } inline LoginController_t03F941FA0DBBB22F0DD5B41C1F54876FA93466B6 * get_s_Instance_0() const { return ___s_Instance_0; } inline LoginController_t03F941FA0DBBB22F0DD5B41C1F54876FA93466B6 ** get_address_of_s_Instance_0() { return &___s_Instance_0; } inline void set_s_Instance_0(LoginController_t03F941FA0DBBB22F0DD5B41C1F54876FA93466B6 * value) { ___s_Instance_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_Instance_0), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.AbstractTlsPeer struct AbstractTlsPeer_t3589DDB3C9CBD13D650BADDC95A1814D4A5D6A5A : public RuntimeObject { public: public: }; // Org.BouncyCastle.Crypto.Tls2.AlwaysValidVerifyer struct AlwaysValidVerifyer_t7ADF972FD4D728037278659A56B61B9F7C918C6A : public RuntimeObject { public: public: }; struct Il2CppArrayBounds; // System.Array // System.IO.BinaryReader struct BinaryReader_t4F45C15FF44F8E1C105704A21FFBE58D60015128 : public RuntimeObject { public: // System.IO.Stream System.IO.BinaryReader::m_stream Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___m_stream_0; // System.Byte[] System.IO.BinaryReader::m_buffer ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___m_buffer_1; // System.Text.Decoder System.IO.BinaryReader::m_decoder Decoder_t91B2ED8AEC25AA24D23A00265203BE992B12C370 * ___m_decoder_2; // System.Byte[] System.IO.BinaryReader::m_charBytes ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___m_charBytes_3; // System.Char[] System.IO.BinaryReader::m_singleChar CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___m_singleChar_4; // System.Char[] System.IO.BinaryReader::m_charBuffer CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___m_charBuffer_5; // System.Int32 System.IO.BinaryReader::m_maxCharsSize int32_t ___m_maxCharsSize_6; // System.Boolean System.IO.BinaryReader::m_2BytesPerChar bool ___m_2BytesPerChar_7; // System.Boolean System.IO.BinaryReader::m_isMemoryStream bool ___m_isMemoryStream_8; // System.Boolean System.IO.BinaryReader::m_leaveOpen bool ___m_leaveOpen_9; public: inline static int32_t get_offset_of_m_stream_0() { return static_cast(offsetof(BinaryReader_t4F45C15FF44F8E1C105704A21FFBE58D60015128, ___m_stream_0)); } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_m_stream_0() const { return ___m_stream_0; } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_m_stream_0() { return &___m_stream_0; } inline void set_m_stream_0(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value) { ___m_stream_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_stream_0), (void*)value); } inline static int32_t get_offset_of_m_buffer_1() { return static_cast(offsetof(BinaryReader_t4F45C15FF44F8E1C105704A21FFBE58D60015128, ___m_buffer_1)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_m_buffer_1() const { return ___m_buffer_1; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_m_buffer_1() { return &___m_buffer_1; } inline void set_m_buffer_1(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___m_buffer_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_buffer_1), (void*)value); } inline static int32_t get_offset_of_m_decoder_2() { return static_cast(offsetof(BinaryReader_t4F45C15FF44F8E1C105704A21FFBE58D60015128, ___m_decoder_2)); } inline Decoder_t91B2ED8AEC25AA24D23A00265203BE992B12C370 * get_m_decoder_2() const { return ___m_decoder_2; } inline Decoder_t91B2ED8AEC25AA24D23A00265203BE992B12C370 ** get_address_of_m_decoder_2() { return &___m_decoder_2; } inline void set_m_decoder_2(Decoder_t91B2ED8AEC25AA24D23A00265203BE992B12C370 * value) { ___m_decoder_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_decoder_2), (void*)value); } inline static int32_t get_offset_of_m_charBytes_3() { return static_cast(offsetof(BinaryReader_t4F45C15FF44F8E1C105704A21FFBE58D60015128, ___m_charBytes_3)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_m_charBytes_3() const { return ___m_charBytes_3; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_m_charBytes_3() { return &___m_charBytes_3; } inline void set_m_charBytes_3(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___m_charBytes_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_charBytes_3), (void*)value); } inline static int32_t get_offset_of_m_singleChar_4() { return static_cast(offsetof(BinaryReader_t4F45C15FF44F8E1C105704A21FFBE58D60015128, ___m_singleChar_4)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_m_singleChar_4() const { return ___m_singleChar_4; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_m_singleChar_4() { return &___m_singleChar_4; } inline void set_m_singleChar_4(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___m_singleChar_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_singleChar_4), (void*)value); } inline static int32_t get_offset_of_m_charBuffer_5() { return static_cast(offsetof(BinaryReader_t4F45C15FF44F8E1C105704A21FFBE58D60015128, ___m_charBuffer_5)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_m_charBuffer_5() const { return ___m_charBuffer_5; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_m_charBuffer_5() { return &___m_charBuffer_5; } inline void set_m_charBuffer_5(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___m_charBuffer_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_charBuffer_5), (void*)value); } inline static int32_t get_offset_of_m_maxCharsSize_6() { return static_cast(offsetof(BinaryReader_t4F45C15FF44F8E1C105704A21FFBE58D60015128, ___m_maxCharsSize_6)); } inline int32_t get_m_maxCharsSize_6() const { return ___m_maxCharsSize_6; } inline int32_t* get_address_of_m_maxCharsSize_6() { return &___m_maxCharsSize_6; } inline void set_m_maxCharsSize_6(int32_t value) { ___m_maxCharsSize_6 = value; } inline static int32_t get_offset_of_m_2BytesPerChar_7() { return static_cast(offsetof(BinaryReader_t4F45C15FF44F8E1C105704A21FFBE58D60015128, ___m_2BytesPerChar_7)); } inline bool get_m_2BytesPerChar_7() const { return ___m_2BytesPerChar_7; } inline bool* get_address_of_m_2BytesPerChar_7() { return &___m_2BytesPerChar_7; } inline void set_m_2BytesPerChar_7(bool value) { ___m_2BytesPerChar_7 = value; } inline static int32_t get_offset_of_m_isMemoryStream_8() { return static_cast(offsetof(BinaryReader_t4F45C15FF44F8E1C105704A21FFBE58D60015128, ___m_isMemoryStream_8)); } inline bool get_m_isMemoryStream_8() const { return ___m_isMemoryStream_8; } inline bool* get_address_of_m_isMemoryStream_8() { return &___m_isMemoryStream_8; } inline void set_m_isMemoryStream_8(bool value) { ___m_isMemoryStream_8 = value; } inline static int32_t get_offset_of_m_leaveOpen_9() { return static_cast(offsetof(BinaryReader_t4F45C15FF44F8E1C105704A21FFBE58D60015128, ___m_leaveOpen_9)); } inline bool get_m_leaveOpen_9() const { return ___m_leaveOpen_9; } inline bool* get_address_of_m_leaveOpen_9() { return &___m_leaveOpen_9; } inline void set_m_leaveOpen_9(bool value) { ___m_leaveOpen_9 = value; } }; // System.IO.BinaryWriter struct BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F : public RuntimeObject { public: // System.IO.Stream System.IO.BinaryWriter::OutStream Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___OutStream_1; // System.Byte[] System.IO.BinaryWriter::_buffer ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ____buffer_2; // System.Text.Encoding System.IO.BinaryWriter::_encoding Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ____encoding_3; // System.Text.Encoder System.IO.BinaryWriter::_encoder Encoder_t5095F24D3B1D0F70D08762B980731B9F1ADEE56A * ____encoder_4; // System.Boolean System.IO.BinaryWriter::_leaveOpen bool ____leaveOpen_5; // System.Byte[] System.IO.BinaryWriter::_largeByteBuffer ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ____largeByteBuffer_6; // System.Int32 System.IO.BinaryWriter::_maxChars int32_t ____maxChars_7; public: inline static int32_t get_offset_of_OutStream_1() { return static_cast(offsetof(BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F, ___OutStream_1)); } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_OutStream_1() const { return ___OutStream_1; } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_OutStream_1() { return &___OutStream_1; } inline void set_OutStream_1(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value) { ___OutStream_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___OutStream_1), (void*)value); } inline static int32_t get_offset_of__buffer_2() { return static_cast(offsetof(BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F, ____buffer_2)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get__buffer_2() const { return ____buffer_2; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of__buffer_2() { return &____buffer_2; } inline void set__buffer_2(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ____buffer_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____buffer_2), (void*)value); } inline static int32_t get_offset_of__encoding_3() { return static_cast(offsetof(BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F, ____encoding_3)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get__encoding_3() const { return ____encoding_3; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of__encoding_3() { return &____encoding_3; } inline void set__encoding_3(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ____encoding_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____encoding_3), (void*)value); } inline static int32_t get_offset_of__encoder_4() { return static_cast(offsetof(BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F, ____encoder_4)); } inline Encoder_t5095F24D3B1D0F70D08762B980731B9F1ADEE56A * get__encoder_4() const { return ____encoder_4; } inline Encoder_t5095F24D3B1D0F70D08762B980731B9F1ADEE56A ** get_address_of__encoder_4() { return &____encoder_4; } inline void set__encoder_4(Encoder_t5095F24D3B1D0F70D08762B980731B9F1ADEE56A * value) { ____encoder_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____encoder_4), (void*)value); } inline static int32_t get_offset_of__leaveOpen_5() { return static_cast(offsetof(BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F, ____leaveOpen_5)); } inline bool get__leaveOpen_5() const { return ____leaveOpen_5; } inline bool* get_address_of__leaveOpen_5() { return &____leaveOpen_5; } inline void set__leaveOpen_5(bool value) { ____leaveOpen_5 = value; } inline static int32_t get_offset_of__largeByteBuffer_6() { return static_cast(offsetof(BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F, ____largeByteBuffer_6)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get__largeByteBuffer_6() const { return ____largeByteBuffer_6; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of__largeByteBuffer_6() { return &____largeByteBuffer_6; } inline void set__largeByteBuffer_6(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ____largeByteBuffer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&____largeByteBuffer_6), (void*)value); } inline static int32_t get_offset_of__maxChars_7() { return static_cast(offsetof(BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F, ____maxChars_7)); } inline int32_t get__maxChars_7() const { return ____maxChars_7; } inline int32_t* get_address_of__maxChars_7() { return &____maxChars_7; } inline void set__maxChars_7(int32_t value) { ____maxChars_7 = value; } }; struct BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F_StaticFields { public: // System.IO.BinaryWriter System.IO.BinaryWriter::Null BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * ___Null_0; public: inline static int32_t get_offset_of_Null_0() { return static_cast(offsetof(BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F_StaticFields, ___Null_0)); } inline BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * get_Null_0() const { return ___Null_0; } inline BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F ** get_address_of_Null_0() { return &___Null_0; } inline void set_Null_0(BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * value) { ___Null_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Null_0), (void*)value); } }; // ArduinoBluetoothAPI.BluetoothHelper struct BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2 : public RuntimeObject { public: // ArduinoBluetoothAPI.BluetoothHelper/BluetoothEvents ArduinoBluetoothAPI.BluetoothHelper::OnConnected BluetoothEvents_t6367CF752C0000C65AC334DE644AE84EDAA71FA3 * ___OnConnected_8; // ArduinoBluetoothAPI.BluetoothHelper/BluetoothEvents ArduinoBluetoothAPI.BluetoothHelper::OnConnectionFailed BluetoothEvents_t6367CF752C0000C65AC334DE644AE84EDAA71FA3 * ___OnConnectionFailed_9; // ArduinoBluetoothAPI.BluetoothHelper/BluetoothEvents ArduinoBluetoothAPI.BluetoothHelper::OnDataReceived BluetoothEvents_t6367CF752C0000C65AC334DE644AE84EDAA71FA3 * ___OnDataReceived_10; // ArduinoBluetoothAPI.BluetoothHelper/BluetoothServiceEvent ArduinoBluetoothAPI.BluetoothHelper::OnServiceNotFound BluetoothServiceEvent_t10380261CF18564DD4DE13E93B0D61C6CF5989FA * ___OnServiceNotFound_11; // ArduinoBluetoothAPI.BluetoothHelper/BluetoothCharacteristicEvent ArduinoBluetoothAPI.BluetoothHelper::OnCharacteristicNotFound BluetoothCharacteristicEvent_tA803FAB6FC2D19DAD97EE3E01CD8D003DD25A03A * ___OnCharacteristicNotFound_12; // ArduinoBluetoothAPI.BluetoothHelper/BluetoothDescriptorEvent ArduinoBluetoothAPI.BluetoothHelper::OnDescriptorNotFound BluetoothDescriptorEvent_tE32E38A0724D0414191DC1A2FA4E28C6410167E4 * ___OnDescriptorNotFound_13; // ArduinoBluetoothAPI.BluetoothHelper/BluetoothScanEvents ArduinoBluetoothAPI.BluetoothHelper::OnScanEnded BluetoothScanEvents_t96E44F26E6E173C76A806E7E95CF4C7C84B8A33B * ___OnScanEnded_14; // ArduinoBluetoothAPI.BluetoothHelper/BluetoothLEDataEvent ArduinoBluetoothAPI.BluetoothHelper::OnCharacteristicChanged BluetoothLEDataEvent_t68F97939E5C7C84395925D0B3DFFD9BE12FAD4CD * ___OnCharacteristicChanged_15; // System.Collections.Generic.Queue`1 ArduinoBluetoothAPI.BluetoothHelper::ReceivedData Queue_1_tAF2A710AEBB98604F7E35A3CD161FA0838FD96D4 * ___ReceivedData_16; // System.Boolean ArduinoBluetoothAPI.BluetoothHelper::ble bool ___ble_18; // UnityEngine.GameObject ArduinoBluetoothAPI.BluetoothHelper::syncronizerObj GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___syncronizerObj_19; // System.String ArduinoBluetoothAPI.BluetoothHelper::str String_t* ___str_20; public: inline static int32_t get_offset_of_OnConnected_8() { return static_cast(offsetof(BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2, ___OnConnected_8)); } inline BluetoothEvents_t6367CF752C0000C65AC334DE644AE84EDAA71FA3 * get_OnConnected_8() const { return ___OnConnected_8; } inline BluetoothEvents_t6367CF752C0000C65AC334DE644AE84EDAA71FA3 ** get_address_of_OnConnected_8() { return &___OnConnected_8; } inline void set_OnConnected_8(BluetoothEvents_t6367CF752C0000C65AC334DE644AE84EDAA71FA3 * value) { ___OnConnected_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnConnected_8), (void*)value); } inline static int32_t get_offset_of_OnConnectionFailed_9() { return static_cast(offsetof(BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2, ___OnConnectionFailed_9)); } inline BluetoothEvents_t6367CF752C0000C65AC334DE644AE84EDAA71FA3 * get_OnConnectionFailed_9() const { return ___OnConnectionFailed_9; } inline BluetoothEvents_t6367CF752C0000C65AC334DE644AE84EDAA71FA3 ** get_address_of_OnConnectionFailed_9() { return &___OnConnectionFailed_9; } inline void set_OnConnectionFailed_9(BluetoothEvents_t6367CF752C0000C65AC334DE644AE84EDAA71FA3 * value) { ___OnConnectionFailed_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnConnectionFailed_9), (void*)value); } inline static int32_t get_offset_of_OnDataReceived_10() { return static_cast(offsetof(BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2, ___OnDataReceived_10)); } inline BluetoothEvents_t6367CF752C0000C65AC334DE644AE84EDAA71FA3 * get_OnDataReceived_10() const { return ___OnDataReceived_10; } inline BluetoothEvents_t6367CF752C0000C65AC334DE644AE84EDAA71FA3 ** get_address_of_OnDataReceived_10() { return &___OnDataReceived_10; } inline void set_OnDataReceived_10(BluetoothEvents_t6367CF752C0000C65AC334DE644AE84EDAA71FA3 * value) { ___OnDataReceived_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnDataReceived_10), (void*)value); } inline static int32_t get_offset_of_OnServiceNotFound_11() { return static_cast(offsetof(BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2, ___OnServiceNotFound_11)); } inline BluetoothServiceEvent_t10380261CF18564DD4DE13E93B0D61C6CF5989FA * get_OnServiceNotFound_11() const { return ___OnServiceNotFound_11; } inline BluetoothServiceEvent_t10380261CF18564DD4DE13E93B0D61C6CF5989FA ** get_address_of_OnServiceNotFound_11() { return &___OnServiceNotFound_11; } inline void set_OnServiceNotFound_11(BluetoothServiceEvent_t10380261CF18564DD4DE13E93B0D61C6CF5989FA * value) { ___OnServiceNotFound_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnServiceNotFound_11), (void*)value); } inline static int32_t get_offset_of_OnCharacteristicNotFound_12() { return static_cast(offsetof(BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2, ___OnCharacteristicNotFound_12)); } inline BluetoothCharacteristicEvent_tA803FAB6FC2D19DAD97EE3E01CD8D003DD25A03A * get_OnCharacteristicNotFound_12() const { return ___OnCharacteristicNotFound_12; } inline BluetoothCharacteristicEvent_tA803FAB6FC2D19DAD97EE3E01CD8D003DD25A03A ** get_address_of_OnCharacteristicNotFound_12() { return &___OnCharacteristicNotFound_12; } inline void set_OnCharacteristicNotFound_12(BluetoothCharacteristicEvent_tA803FAB6FC2D19DAD97EE3E01CD8D003DD25A03A * value) { ___OnCharacteristicNotFound_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnCharacteristicNotFound_12), (void*)value); } inline static int32_t get_offset_of_OnDescriptorNotFound_13() { return static_cast(offsetof(BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2, ___OnDescriptorNotFound_13)); } inline BluetoothDescriptorEvent_tE32E38A0724D0414191DC1A2FA4E28C6410167E4 * get_OnDescriptorNotFound_13() const { return ___OnDescriptorNotFound_13; } inline BluetoothDescriptorEvent_tE32E38A0724D0414191DC1A2FA4E28C6410167E4 ** get_address_of_OnDescriptorNotFound_13() { return &___OnDescriptorNotFound_13; } inline void set_OnDescriptorNotFound_13(BluetoothDescriptorEvent_tE32E38A0724D0414191DC1A2FA4E28C6410167E4 * value) { ___OnDescriptorNotFound_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnDescriptorNotFound_13), (void*)value); } inline static int32_t get_offset_of_OnScanEnded_14() { return static_cast(offsetof(BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2, ___OnScanEnded_14)); } inline BluetoothScanEvents_t96E44F26E6E173C76A806E7E95CF4C7C84B8A33B * get_OnScanEnded_14() const { return ___OnScanEnded_14; } inline BluetoothScanEvents_t96E44F26E6E173C76A806E7E95CF4C7C84B8A33B ** get_address_of_OnScanEnded_14() { return &___OnScanEnded_14; } inline void set_OnScanEnded_14(BluetoothScanEvents_t96E44F26E6E173C76A806E7E95CF4C7C84B8A33B * value) { ___OnScanEnded_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnScanEnded_14), (void*)value); } inline static int32_t get_offset_of_OnCharacteristicChanged_15() { return static_cast(offsetof(BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2, ___OnCharacteristicChanged_15)); } inline BluetoothLEDataEvent_t68F97939E5C7C84395925D0B3DFFD9BE12FAD4CD * get_OnCharacteristicChanged_15() const { return ___OnCharacteristicChanged_15; } inline BluetoothLEDataEvent_t68F97939E5C7C84395925D0B3DFFD9BE12FAD4CD ** get_address_of_OnCharacteristicChanged_15() { return &___OnCharacteristicChanged_15; } inline void set_OnCharacteristicChanged_15(BluetoothLEDataEvent_t68F97939E5C7C84395925D0B3DFFD9BE12FAD4CD * value) { ___OnCharacteristicChanged_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnCharacteristicChanged_15), (void*)value); } inline static int32_t get_offset_of_ReceivedData_16() { return static_cast(offsetof(BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2, ___ReceivedData_16)); } inline Queue_1_tAF2A710AEBB98604F7E35A3CD161FA0838FD96D4 * get_ReceivedData_16() const { return ___ReceivedData_16; } inline Queue_1_tAF2A710AEBB98604F7E35A3CD161FA0838FD96D4 ** get_address_of_ReceivedData_16() { return &___ReceivedData_16; } inline void set_ReceivedData_16(Queue_1_tAF2A710AEBB98604F7E35A3CD161FA0838FD96D4 * value) { ___ReceivedData_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___ReceivedData_16), (void*)value); } inline static int32_t get_offset_of_ble_18() { return static_cast(offsetof(BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2, ___ble_18)); } inline bool get_ble_18() const { return ___ble_18; } inline bool* get_address_of_ble_18() { return &___ble_18; } inline void set_ble_18(bool value) { ___ble_18 = value; } inline static int32_t get_offset_of_syncronizerObj_19() { return static_cast(offsetof(BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2, ___syncronizerObj_19)); } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_syncronizerObj_19() const { return ___syncronizerObj_19; } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_syncronizerObj_19() { return &___syncronizerObj_19; } inline void set_syncronizerObj_19(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value) { ___syncronizerObj_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___syncronizerObj_19), (void*)value); } inline static int32_t get_offset_of_str_20() { return static_cast(offsetof(BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2, ___str_20)); } inline String_t* get_str_20() const { return ___str_20; } inline String_t** get_address_of_str_20() { return &___str_20; } inline void set_str_20(String_t* value) { ___str_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___str_20), (void*)value); } }; struct BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_StaticFields { public: // ArduinoBluetoothAPI.BluetoothHelper ArduinoBluetoothAPI.BluetoothHelper::bluetoothHelperInstance BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2 * ___bluetoothHelperInstance_0; // System.Boolean ArduinoBluetoothAPI.BluetoothHelper::SERIAL_COMM bool ___SERIAL_COMM_1; // System.Boolean ArduinoBluetoothAPI.BluetoothHelper::BLUETOOTH_SIMULATION bool ___BLUETOOTH_SIMULATION_2; // System.Boolean ArduinoBluetoothAPI.BluetoothHelper::BLE bool ___BLE_3; // System.Boolean ArduinoBluetoothAPI.BluetoothHelper::ASYNC_EVENTS bool ___ASYNC_EVENTS_4; // System.Boolean ArduinoBluetoothAPI.BluetoothHelper::BLE_AS_CLIENT bool ___BLE_AS_CLIENT_5; // System.String ArduinoBluetoothAPI.BluetoothHelper::BLE_SERVER_IP String_t* ___BLE_SERVER_IP_6; // System.Collections.Generic.Dictionary`2 ArduinoBluetoothAPI.BluetoothHelper::instances Dictionary_2_t30A4EEA989621CA9B6EE93D537EC7E1889ABAEAD * ___instances_7; // System.Collections.Generic.List`1 ArduinoBluetoothAPI.BluetoothHelper::listeners List_1_tFBF8941865FA74B072CCEFDC9F4BB346FCA83144 * ___listeners_17; public: inline static int32_t get_offset_of_bluetoothHelperInstance_0() { return static_cast(offsetof(BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_StaticFields, ___bluetoothHelperInstance_0)); } inline BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2 * get_bluetoothHelperInstance_0() const { return ___bluetoothHelperInstance_0; } inline BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2 ** get_address_of_bluetoothHelperInstance_0() { return &___bluetoothHelperInstance_0; } inline void set_bluetoothHelperInstance_0(BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2 * value) { ___bluetoothHelperInstance_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___bluetoothHelperInstance_0), (void*)value); } inline static int32_t get_offset_of_SERIAL_COMM_1() { return static_cast(offsetof(BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_StaticFields, ___SERIAL_COMM_1)); } inline bool get_SERIAL_COMM_1() const { return ___SERIAL_COMM_1; } inline bool* get_address_of_SERIAL_COMM_1() { return &___SERIAL_COMM_1; } inline void set_SERIAL_COMM_1(bool value) { ___SERIAL_COMM_1 = value; } inline static int32_t get_offset_of_BLUETOOTH_SIMULATION_2() { return static_cast(offsetof(BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_StaticFields, ___BLUETOOTH_SIMULATION_2)); } inline bool get_BLUETOOTH_SIMULATION_2() const { return ___BLUETOOTH_SIMULATION_2; } inline bool* get_address_of_BLUETOOTH_SIMULATION_2() { return &___BLUETOOTH_SIMULATION_2; } inline void set_BLUETOOTH_SIMULATION_2(bool value) { ___BLUETOOTH_SIMULATION_2 = value; } inline static int32_t get_offset_of_BLE_3() { return static_cast(offsetof(BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_StaticFields, ___BLE_3)); } inline bool get_BLE_3() const { return ___BLE_3; } inline bool* get_address_of_BLE_3() { return &___BLE_3; } inline void set_BLE_3(bool value) { ___BLE_3 = value; } inline static int32_t get_offset_of_ASYNC_EVENTS_4() { return static_cast(offsetof(BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_StaticFields, ___ASYNC_EVENTS_4)); } inline bool get_ASYNC_EVENTS_4() const { return ___ASYNC_EVENTS_4; } inline bool* get_address_of_ASYNC_EVENTS_4() { return &___ASYNC_EVENTS_4; } inline void set_ASYNC_EVENTS_4(bool value) { ___ASYNC_EVENTS_4 = value; } inline static int32_t get_offset_of_BLE_AS_CLIENT_5() { return static_cast(offsetof(BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_StaticFields, ___BLE_AS_CLIENT_5)); } inline bool get_BLE_AS_CLIENT_5() const { return ___BLE_AS_CLIENT_5; } inline bool* get_address_of_BLE_AS_CLIENT_5() { return &___BLE_AS_CLIENT_5; } inline void set_BLE_AS_CLIENT_5(bool value) { ___BLE_AS_CLIENT_5 = value; } inline static int32_t get_offset_of_BLE_SERVER_IP_6() { return static_cast(offsetof(BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_StaticFields, ___BLE_SERVER_IP_6)); } inline String_t* get_BLE_SERVER_IP_6() const { return ___BLE_SERVER_IP_6; } inline String_t** get_address_of_BLE_SERVER_IP_6() { return &___BLE_SERVER_IP_6; } inline void set_BLE_SERVER_IP_6(String_t* value) { ___BLE_SERVER_IP_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___BLE_SERVER_IP_6), (void*)value); } inline static int32_t get_offset_of_instances_7() { return static_cast(offsetof(BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_StaticFields, ___instances_7)); } inline Dictionary_2_t30A4EEA989621CA9B6EE93D537EC7E1889ABAEAD * get_instances_7() const { return ___instances_7; } inline Dictionary_2_t30A4EEA989621CA9B6EE93D537EC7E1889ABAEAD ** get_address_of_instances_7() { return &___instances_7; } inline void set_instances_7(Dictionary_2_t30A4EEA989621CA9B6EE93D537EC7E1889ABAEAD * value) { ___instances_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___instances_7), (void*)value); } inline static int32_t get_offset_of_listeners_17() { return static_cast(offsetof(BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_StaticFields, ___listeners_17)); } inline List_1_tFBF8941865FA74B072CCEFDC9F4BB346FCA83144 * get_listeners_17() const { return ___listeners_17; } inline List_1_tFBF8941865FA74B072CCEFDC9F4BB346FCA83144 ** get_address_of_listeners_17() { return &___listeners_17; } inline void set_listeners_17(List_1_tFBF8941865FA74B072CCEFDC9F4BB346FCA83144 * value) { ___listeners_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___listeners_17), (void*)value); } }; // ArduinoBluetoothAPI.BluetoothHelperCharacteristic struct BluetoothHelperCharacteristic_t192402A7C03FD9857C87822D541F8737A469B6E9 : public RuntimeObject { public: // System.String ArduinoBluetoothAPI.BluetoothHelperCharacteristic::name String_t* ___name_0; // System.String ArduinoBluetoothAPI.BluetoothHelperCharacteristic::service String_t* ___service_1; // System.Collections.Generic.LinkedList`1 ArduinoBluetoothAPI.BluetoothHelperCharacteristic::descriptors LinkedList_1_t622C3F883163157A244F5BF726BD781FF0482C54 * ___descriptors_2; public: inline static int32_t get_offset_of_name_0() { return static_cast(offsetof(BluetoothHelperCharacteristic_t192402A7C03FD9857C87822D541F8737A469B6E9, ___name_0)); } inline String_t* get_name_0() const { return ___name_0; } inline String_t** get_address_of_name_0() { return &___name_0; } inline void set_name_0(String_t* value) { ___name_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___name_0), (void*)value); } inline static int32_t get_offset_of_service_1() { return static_cast(offsetof(BluetoothHelperCharacteristic_t192402A7C03FD9857C87822D541F8737A469B6E9, ___service_1)); } inline String_t* get_service_1() const { return ___service_1; } inline String_t** get_address_of_service_1() { return &___service_1; } inline void set_service_1(String_t* value) { ___service_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___service_1), (void*)value); } inline static int32_t get_offset_of_descriptors_2() { return static_cast(offsetof(BluetoothHelperCharacteristic_t192402A7C03FD9857C87822D541F8737A469B6E9, ___descriptors_2)); } inline LinkedList_1_t622C3F883163157A244F5BF726BD781FF0482C54 * get_descriptors_2() const { return ___descriptors_2; } inline LinkedList_1_t622C3F883163157A244F5BF726BD781FF0482C54 ** get_address_of_descriptors_2() { return &___descriptors_2; } inline void set_descriptors_2(LinkedList_1_t622C3F883163157A244F5BF726BD781FF0482C54 * value) { ___descriptors_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___descriptors_2), (void*)value); } }; // ArduinoBluetoothAPI.BluetoothHelperService struct BluetoothHelperService_t4C830DA91BDB3A9EC558D45C55A9318E931CA2A9 : public RuntimeObject { public: // System.String ArduinoBluetoothAPI.BluetoothHelperService::name String_t* ___name_0; // System.Collections.Generic.LinkedList`1 ArduinoBluetoothAPI.BluetoothHelperService::characteristics LinkedList_1_t3656FF46586A1EDB68EC68E62D94A1284314CC08 * ___characteristics_1; public: inline static int32_t get_offset_of_name_0() { return static_cast(offsetof(BluetoothHelperService_t4C830DA91BDB3A9EC558D45C55A9318E931CA2A9, ___name_0)); } inline String_t* get_name_0() const { return ___name_0; } inline String_t** get_address_of_name_0() { return &___name_0; } inline void set_name_0(String_t* value) { ___name_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___name_0), (void*)value); } inline static int32_t get_offset_of_characteristics_1() { return static_cast(offsetof(BluetoothHelperService_t4C830DA91BDB3A9EC558D45C55A9318E931CA2A9, ___characteristics_1)); } inline LinkedList_1_t3656FF46586A1EDB68EC68E62D94A1284314CC08 * get_characteristics_1() const { return ___characteristics_1; } inline LinkedList_1_t3656FF46586A1EDB68EC68E62D94A1284314CC08 ** get_address_of_characteristics_1() { return &___characteristics_1; } inline void set_characteristics_1(LinkedList_1_t3656FF46586A1EDB68EC68E62D94A1284314CC08 * value) { ___characteristics_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___characteristics_1), (void*)value); } }; // BestHTTP.PlatformSupport.FileSystem.DefaultIOService struct DefaultIOService_tC04F35048EAA8FDBBB1E12D95E091A27EA271DDC : public RuntimeObject { public: public: }; // System.Text.Encoding struct Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 : public RuntimeObject { public: // System.Int32 System.Text.Encoding::m_codePage int32_t ___m_codePage_55; // System.Globalization.CodePageDataItem System.Text.Encoding::dataItem CodePageDataItem_t09A62F57142BF0456C8F414898A37E79BCC9F09E * ___dataItem_56; // System.Boolean System.Text.Encoding::m_deserializedFromEverett bool ___m_deserializedFromEverett_57; // System.Boolean System.Text.Encoding::m_isReadOnly bool ___m_isReadOnly_58; // System.Text.EncoderFallback System.Text.Encoding::encoderFallback EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4 * ___encoderFallback_59; // System.Text.DecoderFallback System.Text.Encoding::decoderFallback DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D * ___decoderFallback_60; public: inline static int32_t get_offset_of_m_codePage_55() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827, ___m_codePage_55)); } inline int32_t get_m_codePage_55() const { return ___m_codePage_55; } inline int32_t* get_address_of_m_codePage_55() { return &___m_codePage_55; } inline void set_m_codePage_55(int32_t value) { ___m_codePage_55 = value; } inline static int32_t get_offset_of_dataItem_56() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827, ___dataItem_56)); } inline CodePageDataItem_t09A62F57142BF0456C8F414898A37E79BCC9F09E * get_dataItem_56() const { return ___dataItem_56; } inline CodePageDataItem_t09A62F57142BF0456C8F414898A37E79BCC9F09E ** get_address_of_dataItem_56() { return &___dataItem_56; } inline void set_dataItem_56(CodePageDataItem_t09A62F57142BF0456C8F414898A37E79BCC9F09E * value) { ___dataItem_56 = value; Il2CppCodeGenWriteBarrier((void**)(&___dataItem_56), (void*)value); } inline static int32_t get_offset_of_m_deserializedFromEverett_57() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827, ___m_deserializedFromEverett_57)); } inline bool get_m_deserializedFromEverett_57() const { return ___m_deserializedFromEverett_57; } inline bool* get_address_of_m_deserializedFromEverett_57() { return &___m_deserializedFromEverett_57; } inline void set_m_deserializedFromEverett_57(bool value) { ___m_deserializedFromEverett_57 = value; } inline static int32_t get_offset_of_m_isReadOnly_58() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827, ___m_isReadOnly_58)); } inline bool get_m_isReadOnly_58() const { return ___m_isReadOnly_58; } inline bool* get_address_of_m_isReadOnly_58() { return &___m_isReadOnly_58; } inline void set_m_isReadOnly_58(bool value) { ___m_isReadOnly_58 = value; } inline static int32_t get_offset_of_encoderFallback_59() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827, ___encoderFallback_59)); } inline EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4 * get_encoderFallback_59() const { return ___encoderFallback_59; } inline EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4 ** get_address_of_encoderFallback_59() { return &___encoderFallback_59; } inline void set_encoderFallback_59(EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4 * value) { ___encoderFallback_59 = value; Il2CppCodeGenWriteBarrier((void**)(&___encoderFallback_59), (void*)value); } inline static int32_t get_offset_of_decoderFallback_60() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827, ___decoderFallback_60)); } inline DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D * get_decoderFallback_60() const { return ___decoderFallback_60; } inline DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D ** get_address_of_decoderFallback_60() { return &___decoderFallback_60; } inline void set_decoderFallback_60(DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D * value) { ___decoderFallback_60 = value; Il2CppCodeGenWriteBarrier((void**)(&___decoderFallback_60), (void*)value); } }; struct Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields { public: // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::defaultEncoding Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___defaultEncoding_0; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::unicodeEncoding Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___unicodeEncoding_1; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::bigEndianUnicode Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___bigEndianUnicode_2; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf7Encoding Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___utf7Encoding_3; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf8Encoding Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___utf8Encoding_4; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf32Encoding Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___utf32Encoding_5; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::asciiEncoding Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___asciiEncoding_6; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::latin1Encoding Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___latin1Encoding_7; // System.Collections.Hashtable modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::encodings Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___encodings_8; // System.Object System.Text.Encoding::s_InternalSyncObject RuntimeObject * ___s_InternalSyncObject_61; public: inline static int32_t get_offset_of_defaultEncoding_0() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___defaultEncoding_0)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_defaultEncoding_0() const { return ___defaultEncoding_0; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_defaultEncoding_0() { return &___defaultEncoding_0; } inline void set_defaultEncoding_0(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___defaultEncoding_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultEncoding_0), (void*)value); } inline static int32_t get_offset_of_unicodeEncoding_1() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___unicodeEncoding_1)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_unicodeEncoding_1() const { return ___unicodeEncoding_1; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_unicodeEncoding_1() { return &___unicodeEncoding_1; } inline void set_unicodeEncoding_1(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___unicodeEncoding_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___unicodeEncoding_1), (void*)value); } inline static int32_t get_offset_of_bigEndianUnicode_2() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___bigEndianUnicode_2)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_bigEndianUnicode_2() const { return ___bigEndianUnicode_2; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_bigEndianUnicode_2() { return &___bigEndianUnicode_2; } inline void set_bigEndianUnicode_2(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___bigEndianUnicode_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___bigEndianUnicode_2), (void*)value); } inline static int32_t get_offset_of_utf7Encoding_3() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___utf7Encoding_3)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_utf7Encoding_3() const { return ___utf7Encoding_3; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_utf7Encoding_3() { return &___utf7Encoding_3; } inline void set_utf7Encoding_3(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___utf7Encoding_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___utf7Encoding_3), (void*)value); } inline static int32_t get_offset_of_utf8Encoding_4() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___utf8Encoding_4)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_utf8Encoding_4() const { return ___utf8Encoding_4; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_utf8Encoding_4() { return &___utf8Encoding_4; } inline void set_utf8Encoding_4(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___utf8Encoding_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___utf8Encoding_4), (void*)value); } inline static int32_t get_offset_of_utf32Encoding_5() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___utf32Encoding_5)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_utf32Encoding_5() const { return ___utf32Encoding_5; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_utf32Encoding_5() { return &___utf32Encoding_5; } inline void set_utf32Encoding_5(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___utf32Encoding_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___utf32Encoding_5), (void*)value); } inline static int32_t get_offset_of_asciiEncoding_6() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___asciiEncoding_6)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_asciiEncoding_6() const { return ___asciiEncoding_6; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_asciiEncoding_6() { return &___asciiEncoding_6; } inline void set_asciiEncoding_6(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___asciiEncoding_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___asciiEncoding_6), (void*)value); } inline static int32_t get_offset_of_latin1Encoding_7() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___latin1Encoding_7)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_latin1Encoding_7() const { return ___latin1Encoding_7; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_latin1Encoding_7() { return &___latin1Encoding_7; } inline void set_latin1Encoding_7(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___latin1Encoding_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___latin1Encoding_7), (void*)value); } inline static int32_t get_offset_of_encodings_8() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___encodings_8)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_encodings_8() const { return ___encodings_8; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_encodings_8() { return &___encodings_8; } inline void set_encodings_8(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ___encodings_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___encodings_8), (void*)value); } inline static int32_t get_offset_of_s_InternalSyncObject_61() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___s_InternalSyncObject_61)); } inline RuntimeObject * get_s_InternalSyncObject_61() const { return ___s_InternalSyncObject_61; } inline RuntimeObject ** get_address_of_s_InternalSyncObject_61() { return &___s_InternalSyncObject_61; } inline void set_s_InternalSyncObject_61(RuntimeObject * value) { ___s_InternalSyncObject_61 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_InternalSyncObject_61), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.Drbg.HMacSP800Drbg struct HMacSP800Drbg_tE713E6D9192F0F6E8E212585185241A5A0EFFE21 : public RuntimeObject { public: // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.Drbg.HMacSP800Drbg::mK ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___mK_2; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.Drbg.HMacSP800Drbg::mV ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___mV_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IEntropySource BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.Drbg.HMacSP800Drbg::mEntropySource RuntimeObject* ___mEntropySource_4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IMac BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.Drbg.HMacSP800Drbg::mHMac RuntimeObject* ___mHMac_5; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.Drbg.HMacSP800Drbg::mSecurityStrength int32_t ___mSecurityStrength_6; // System.Int64 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.Drbg.HMacSP800Drbg::mReseedCounter int64_t ___mReseedCounter_7; public: inline static int32_t get_offset_of_mK_2() { return static_cast(offsetof(HMacSP800Drbg_tE713E6D9192F0F6E8E212585185241A5A0EFFE21, ___mK_2)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_mK_2() const { return ___mK_2; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_mK_2() { return &___mK_2; } inline void set_mK_2(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___mK_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___mK_2), (void*)value); } inline static int32_t get_offset_of_mV_3() { return static_cast(offsetof(HMacSP800Drbg_tE713E6D9192F0F6E8E212585185241A5A0EFFE21, ___mV_3)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_mV_3() const { return ___mV_3; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_mV_3() { return &___mV_3; } inline void set_mV_3(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___mV_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___mV_3), (void*)value); } inline static int32_t get_offset_of_mEntropySource_4() { return static_cast(offsetof(HMacSP800Drbg_tE713E6D9192F0F6E8E212585185241A5A0EFFE21, ___mEntropySource_4)); } inline RuntimeObject* get_mEntropySource_4() const { return ___mEntropySource_4; } inline RuntimeObject** get_address_of_mEntropySource_4() { return &___mEntropySource_4; } inline void set_mEntropySource_4(RuntimeObject* value) { ___mEntropySource_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___mEntropySource_4), (void*)value); } inline static int32_t get_offset_of_mHMac_5() { return static_cast(offsetof(HMacSP800Drbg_tE713E6D9192F0F6E8E212585185241A5A0EFFE21, ___mHMac_5)); } inline RuntimeObject* get_mHMac_5() const { return ___mHMac_5; } inline RuntimeObject** get_address_of_mHMac_5() { return &___mHMac_5; } inline void set_mHMac_5(RuntimeObject* value) { ___mHMac_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___mHMac_5), (void*)value); } inline static int32_t get_offset_of_mSecurityStrength_6() { return static_cast(offsetof(HMacSP800Drbg_tE713E6D9192F0F6E8E212585185241A5A0EFFE21, ___mSecurityStrength_6)); } inline int32_t get_mSecurityStrength_6() const { return ___mSecurityStrength_6; } inline int32_t* get_address_of_mSecurityStrength_6() { return &___mSecurityStrength_6; } inline void set_mSecurityStrength_6(int32_t value) { ___mSecurityStrength_6 = value; } inline static int32_t get_offset_of_mReseedCounter_7() { return static_cast(offsetof(HMacSP800Drbg_tE713E6D9192F0F6E8E212585185241A5A0EFFE21, ___mReseedCounter_7)); } inline int64_t get_mReseedCounter_7() const { return ___mReseedCounter_7; } inline int64_t* get_address_of_mReseedCounter_7() { return &___mReseedCounter_7; } inline void set_mReseedCounter_7(int64_t value) { ___mReseedCounter_7 = value; } }; struct HMacSP800Drbg_tE713E6D9192F0F6E8E212585185241A5A0EFFE21_StaticFields { public: // System.Int64 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.Drbg.HMacSP800Drbg::RESEED_MAX int64_t ___RESEED_MAX_0; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.Drbg.HMacSP800Drbg::MAX_BITS_REQUEST int32_t ___MAX_BITS_REQUEST_1; public: inline static int32_t get_offset_of_RESEED_MAX_0() { return static_cast(offsetof(HMacSP800Drbg_tE713E6D9192F0F6E8E212585185241A5A0EFFE21_StaticFields, ___RESEED_MAX_0)); } inline int64_t get_RESEED_MAX_0() const { return ___RESEED_MAX_0; } inline int64_t* get_address_of_RESEED_MAX_0() { return &___RESEED_MAX_0; } inline void set_RESEED_MAX_0(int64_t value) { ___RESEED_MAX_0 = value; } inline static int32_t get_offset_of_MAX_BITS_REQUEST_1() { return static_cast(offsetof(HMacSP800Drbg_tE713E6D9192F0F6E8E212585185241A5A0EFFE21_StaticFields, ___MAX_BITS_REQUEST_1)); } inline int32_t get_MAX_BITS_REQUEST_1() const { return ___MAX_BITS_REQUEST_1; } inline int32_t* get_address_of_MAX_BITS_REQUEST_1() { return &___MAX_BITS_REQUEST_1; } inline void set_MAX_BITS_REQUEST_1(int32_t value) { ___MAX_BITS_REQUEST_1 = value; } }; // HRB_UserInfo struct HRB_UserInfo_t33A1D91CD880DFDBEF533505A82350E3D3C8B6A9 : public RuntimeObject { public: // System.Int32 HRB_UserInfo::id int32_t ___id_0; // System.Int32 HRB_UserInfo::avatarID int32_t ___avatarID_1; // System.String HRB_UserInfo::nickname String_t* ___nickname_2; // System.Int32 HRB_UserInfo::gender int32_t ___gender_3; // System.String HRB_UserInfo::birthday String_t* ___birthday_4; // System.String HRB_UserInfo::country String_t* ___country_5; // System.String HRB_UserInfo::state String_t* ___state_6; // System.String HRB_UserInfo::city String_t* ___city_7; // System.Int32 HRB_UserInfo::weight int32_t ___weight_8; // System.Int32 HRB_UserInfo::waistLine int32_t ___waistLine_9; // System.Single HRB_UserInfo::lanWeightLoss float ___lanWeightLoss_10; // System.String HRB_UserInfo::planDateStart String_t* ___planDateStart_11; // System.String HRB_UserInfo::planDateEnd String_t* ___planDateEnd_12; // System.Int32 HRB_UserInfo::bmpMin int32_t ___bmpMin_13; public: inline static int32_t get_offset_of_id_0() { return static_cast(offsetof(HRB_UserInfo_t33A1D91CD880DFDBEF533505A82350E3D3C8B6A9, ___id_0)); } inline int32_t get_id_0() const { return ___id_0; } inline int32_t* get_address_of_id_0() { return &___id_0; } inline void set_id_0(int32_t value) { ___id_0 = value; } inline static int32_t get_offset_of_avatarID_1() { return static_cast(offsetof(HRB_UserInfo_t33A1D91CD880DFDBEF533505A82350E3D3C8B6A9, ___avatarID_1)); } inline int32_t get_avatarID_1() const { return ___avatarID_1; } inline int32_t* get_address_of_avatarID_1() { return &___avatarID_1; } inline void set_avatarID_1(int32_t value) { ___avatarID_1 = value; } inline static int32_t get_offset_of_nickname_2() { return static_cast(offsetof(HRB_UserInfo_t33A1D91CD880DFDBEF533505A82350E3D3C8B6A9, ___nickname_2)); } inline String_t* get_nickname_2() const { return ___nickname_2; } inline String_t** get_address_of_nickname_2() { return &___nickname_2; } inline void set_nickname_2(String_t* value) { ___nickname_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___nickname_2), (void*)value); } inline static int32_t get_offset_of_gender_3() { return static_cast(offsetof(HRB_UserInfo_t33A1D91CD880DFDBEF533505A82350E3D3C8B6A9, ___gender_3)); } inline int32_t get_gender_3() const { return ___gender_3; } inline int32_t* get_address_of_gender_3() { return &___gender_3; } inline void set_gender_3(int32_t value) { ___gender_3 = value; } inline static int32_t get_offset_of_birthday_4() { return static_cast(offsetof(HRB_UserInfo_t33A1D91CD880DFDBEF533505A82350E3D3C8B6A9, ___birthday_4)); } inline String_t* get_birthday_4() const { return ___birthday_4; } inline String_t** get_address_of_birthday_4() { return &___birthday_4; } inline void set_birthday_4(String_t* value) { ___birthday_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___birthday_4), (void*)value); } inline static int32_t get_offset_of_country_5() { return static_cast(offsetof(HRB_UserInfo_t33A1D91CD880DFDBEF533505A82350E3D3C8B6A9, ___country_5)); } inline String_t* get_country_5() const { return ___country_5; } inline String_t** get_address_of_country_5() { return &___country_5; } inline void set_country_5(String_t* value) { ___country_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___country_5), (void*)value); } inline static int32_t get_offset_of_state_6() { return static_cast(offsetof(HRB_UserInfo_t33A1D91CD880DFDBEF533505A82350E3D3C8B6A9, ___state_6)); } inline String_t* get_state_6() const { return ___state_6; } inline String_t** get_address_of_state_6() { return &___state_6; } inline void set_state_6(String_t* value) { ___state_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___state_6), (void*)value); } inline static int32_t get_offset_of_city_7() { return static_cast(offsetof(HRB_UserInfo_t33A1D91CD880DFDBEF533505A82350E3D3C8B6A9, ___city_7)); } inline String_t* get_city_7() const { return ___city_7; } inline String_t** get_address_of_city_7() { return &___city_7; } inline void set_city_7(String_t* value) { ___city_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___city_7), (void*)value); } inline static int32_t get_offset_of_weight_8() { return static_cast(offsetof(HRB_UserInfo_t33A1D91CD880DFDBEF533505A82350E3D3C8B6A9, ___weight_8)); } inline int32_t get_weight_8() const { return ___weight_8; } inline int32_t* get_address_of_weight_8() { return &___weight_8; } inline void set_weight_8(int32_t value) { ___weight_8 = value; } inline static int32_t get_offset_of_waistLine_9() { return static_cast(offsetof(HRB_UserInfo_t33A1D91CD880DFDBEF533505A82350E3D3C8B6A9, ___waistLine_9)); } inline int32_t get_waistLine_9() const { return ___waistLine_9; } inline int32_t* get_address_of_waistLine_9() { return &___waistLine_9; } inline void set_waistLine_9(int32_t value) { ___waistLine_9 = value; } inline static int32_t get_offset_of_lanWeightLoss_10() { return static_cast(offsetof(HRB_UserInfo_t33A1D91CD880DFDBEF533505A82350E3D3C8B6A9, ___lanWeightLoss_10)); } inline float get_lanWeightLoss_10() const { return ___lanWeightLoss_10; } inline float* get_address_of_lanWeightLoss_10() { return &___lanWeightLoss_10; } inline void set_lanWeightLoss_10(float value) { ___lanWeightLoss_10 = value; } inline static int32_t get_offset_of_planDateStart_11() { return static_cast(offsetof(HRB_UserInfo_t33A1D91CD880DFDBEF533505A82350E3D3C8B6A9, ___planDateStart_11)); } inline String_t* get_planDateStart_11() const { return ___planDateStart_11; } inline String_t** get_address_of_planDateStart_11() { return &___planDateStart_11; } inline void set_planDateStart_11(String_t* value) { ___planDateStart_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___planDateStart_11), (void*)value); } inline static int32_t get_offset_of_planDateEnd_12() { return static_cast(offsetof(HRB_UserInfo_t33A1D91CD880DFDBEF533505A82350E3D3C8B6A9, ___planDateEnd_12)); } inline String_t* get_planDateEnd_12() const { return ___planDateEnd_12; } inline String_t** get_address_of_planDateEnd_12() { return &___planDateEnd_12; } inline void set_planDateEnd_12(String_t* value) { ___planDateEnd_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___planDateEnd_12), (void*)value); } inline static int32_t get_offset_of_bmpMin_13() { return static_cast(offsetof(HRB_UserInfo_t33A1D91CD880DFDBEF533505A82350E3D3C8B6A9, ___bmpMin_13)); } inline int32_t get_bmpMin_13() const { return ___bmpMin_13; } inline int32_t* get_address_of_bmpMin_13() { return &___bmpMin_13; } inline void set_bmpMin_13(int32_t value) { ___bmpMin_13 = value; } }; struct HRB_UserInfo_t33A1D91CD880DFDBEF533505A82350E3D3C8B6A9_StaticFields { public: // HRB_UserInfo HRB_UserInfo::_current HRB_UserInfo_t33A1D91CD880DFDBEF533505A82350E3D3C8B6A9 * ____current_14; public: inline static int32_t get_offset_of__current_14() { return static_cast(offsetof(HRB_UserInfo_t33A1D91CD880DFDBEF533505A82350E3D3C8B6A9_StaticFields, ____current_14)); } inline HRB_UserInfo_t33A1D91CD880DFDBEF533505A82350E3D3C8B6A9 * get__current_14() const { return ____current_14; } inline HRB_UserInfo_t33A1D91CD880DFDBEF533505A82350E3D3C8B6A9 ** get_address_of__current_14() { return &____current_14; } inline void set__current_14(HRB_UserInfo_t33A1D91CD880DFDBEF533505A82350E3D3C8B6A9 * value) { ____current_14 = value; Il2CppCodeGenWriteBarrier((void**)(&____current_14), (void*)value); } }; // BestHTTP.Caching.HTTPCacheFileLock struct HTTPCacheFileLock_tE761A404D3A29EF0543FB5A8C3CEED2DB0C74351 : public RuntimeObject { public: public: }; struct HTTPCacheFileLock_tE761A404D3A29EF0543FB5A8C3CEED2DB0C74351_StaticFields { public: // System.Collections.Generic.Dictionary`2 BestHTTP.Caching.HTTPCacheFileLock::FileLocks Dictionary_2_t470893CE409900ABAC60976F4121AC4F831D4ACD * ___FileLocks_0; // System.Object BestHTTP.Caching.HTTPCacheFileLock::SyncRoot RuntimeObject * ___SyncRoot_1; public: inline static int32_t get_offset_of_FileLocks_0() { return static_cast(offsetof(HTTPCacheFileLock_tE761A404D3A29EF0543FB5A8C3CEED2DB0C74351_StaticFields, ___FileLocks_0)); } inline Dictionary_2_t470893CE409900ABAC60976F4121AC4F831D4ACD * get_FileLocks_0() const { return ___FileLocks_0; } inline Dictionary_2_t470893CE409900ABAC60976F4121AC4F831D4ACD ** get_address_of_FileLocks_0() { return &___FileLocks_0; } inline void set_FileLocks_0(Dictionary_2_t470893CE409900ABAC60976F4121AC4F831D4ACD * value) { ___FileLocks_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___FileLocks_0), (void*)value); } inline static int32_t get_offset_of_SyncRoot_1() { return static_cast(offsetof(HTTPCacheFileLock_tE761A404D3A29EF0543FB5A8C3CEED2DB0C74351_StaticFields, ___SyncRoot_1)); } inline RuntimeObject * get_SyncRoot_1() const { return ___SyncRoot_1; } inline RuntimeObject ** get_address_of_SyncRoot_1() { return &___SyncRoot_1; } inline void set_SyncRoot_1(RuntimeObject * value) { ___SyncRoot_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___SyncRoot_1), (void*)value); } }; // BestHTTP.Caching.HTTPCacheService struct HTTPCacheService_t5964D05F0929E18C69B4A018F467D9E4146649F8 : public RuntimeObject { public: public: }; struct HTTPCacheService_t5964D05F0929E18C69B4A018F467D9E4146649F8_StaticFields { public: // System.Boolean BestHTTP.Caching.HTTPCacheService::isSupported bool ___isSupported_1; // System.Boolean BestHTTP.Caching.HTTPCacheService::IsSupportCheckDone bool ___IsSupportCheckDone_2; // System.Collections.Generic.Dictionary`2 BestHTTP.Caching.HTTPCacheService::library Dictionary_2_tF5B4A5A925F35194AB6289544146EEDFF54229AC * ___library_3; // System.Collections.Generic.Dictionary`2 BestHTTP.Caching.HTTPCacheService::UsedIndexes Dictionary_2_tA951181AD5BB597EA527552FB0018E7527A392E6 * ___UsedIndexes_4; // System.String BestHTTP.Caching.HTTPCacheService::k__BackingField String_t* ___U3CCacheFolderU3Ek__BackingField_5; // System.String BestHTTP.Caching.HTTPCacheService::k__BackingField String_t* ___U3CLibraryPathU3Ek__BackingField_6; // System.Boolean BestHTTP.Caching.HTTPCacheService::InClearThread bool ___InClearThread_7; // System.Boolean BestHTTP.Caching.HTTPCacheService::InMaintainenceThread bool ___InMaintainenceThread_8; // System.UInt64 BestHTTP.Caching.HTTPCacheService::NextNameIDX uint64_t ___NextNameIDX_9; public: inline static int32_t get_offset_of_isSupported_1() { return static_cast(offsetof(HTTPCacheService_t5964D05F0929E18C69B4A018F467D9E4146649F8_StaticFields, ___isSupported_1)); } inline bool get_isSupported_1() const { return ___isSupported_1; } inline bool* get_address_of_isSupported_1() { return &___isSupported_1; } inline void set_isSupported_1(bool value) { ___isSupported_1 = value; } inline static int32_t get_offset_of_IsSupportCheckDone_2() { return static_cast(offsetof(HTTPCacheService_t5964D05F0929E18C69B4A018F467D9E4146649F8_StaticFields, ___IsSupportCheckDone_2)); } inline bool get_IsSupportCheckDone_2() const { return ___IsSupportCheckDone_2; } inline bool* get_address_of_IsSupportCheckDone_2() { return &___IsSupportCheckDone_2; } inline void set_IsSupportCheckDone_2(bool value) { ___IsSupportCheckDone_2 = value; } inline static int32_t get_offset_of_library_3() { return static_cast(offsetof(HTTPCacheService_t5964D05F0929E18C69B4A018F467D9E4146649F8_StaticFields, ___library_3)); } inline Dictionary_2_tF5B4A5A925F35194AB6289544146EEDFF54229AC * get_library_3() const { return ___library_3; } inline Dictionary_2_tF5B4A5A925F35194AB6289544146EEDFF54229AC ** get_address_of_library_3() { return &___library_3; } inline void set_library_3(Dictionary_2_tF5B4A5A925F35194AB6289544146EEDFF54229AC * value) { ___library_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___library_3), (void*)value); } inline static int32_t get_offset_of_UsedIndexes_4() { return static_cast(offsetof(HTTPCacheService_t5964D05F0929E18C69B4A018F467D9E4146649F8_StaticFields, ___UsedIndexes_4)); } inline Dictionary_2_tA951181AD5BB597EA527552FB0018E7527A392E6 * get_UsedIndexes_4() const { return ___UsedIndexes_4; } inline Dictionary_2_tA951181AD5BB597EA527552FB0018E7527A392E6 ** get_address_of_UsedIndexes_4() { return &___UsedIndexes_4; } inline void set_UsedIndexes_4(Dictionary_2_tA951181AD5BB597EA527552FB0018E7527A392E6 * value) { ___UsedIndexes_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___UsedIndexes_4), (void*)value); } inline static int32_t get_offset_of_U3CCacheFolderU3Ek__BackingField_5() { return static_cast(offsetof(HTTPCacheService_t5964D05F0929E18C69B4A018F467D9E4146649F8_StaticFields, ___U3CCacheFolderU3Ek__BackingField_5)); } inline String_t* get_U3CCacheFolderU3Ek__BackingField_5() const { return ___U3CCacheFolderU3Ek__BackingField_5; } inline String_t** get_address_of_U3CCacheFolderU3Ek__BackingField_5() { return &___U3CCacheFolderU3Ek__BackingField_5; } inline void set_U3CCacheFolderU3Ek__BackingField_5(String_t* value) { ___U3CCacheFolderU3Ek__BackingField_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CCacheFolderU3Ek__BackingField_5), (void*)value); } inline static int32_t get_offset_of_U3CLibraryPathU3Ek__BackingField_6() { return static_cast(offsetof(HTTPCacheService_t5964D05F0929E18C69B4A018F467D9E4146649F8_StaticFields, ___U3CLibraryPathU3Ek__BackingField_6)); } inline String_t* get_U3CLibraryPathU3Ek__BackingField_6() const { return ___U3CLibraryPathU3Ek__BackingField_6; } inline String_t** get_address_of_U3CLibraryPathU3Ek__BackingField_6() { return &___U3CLibraryPathU3Ek__BackingField_6; } inline void set_U3CLibraryPathU3Ek__BackingField_6(String_t* value) { ___U3CLibraryPathU3Ek__BackingField_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CLibraryPathU3Ek__BackingField_6), (void*)value); } inline static int32_t get_offset_of_InClearThread_7() { return static_cast(offsetof(HTTPCacheService_t5964D05F0929E18C69B4A018F467D9E4146649F8_StaticFields, ___InClearThread_7)); } inline bool get_InClearThread_7() const { return ___InClearThread_7; } inline bool* get_address_of_InClearThread_7() { return &___InClearThread_7; } inline void set_InClearThread_7(bool value) { ___InClearThread_7 = value; } inline static int32_t get_offset_of_InMaintainenceThread_8() { return static_cast(offsetof(HTTPCacheService_t5964D05F0929E18C69B4A018F467D9E4146649F8_StaticFields, ___InMaintainenceThread_8)); } inline bool get_InMaintainenceThread_8() const { return ___InMaintainenceThread_8; } inline bool* get_address_of_InMaintainenceThread_8() { return &___InMaintainenceThread_8; } inline void set_InMaintainenceThread_8(bool value) { ___InMaintainenceThread_8 = value; } inline static int32_t get_offset_of_NextNameIDX_9() { return static_cast(offsetof(HTTPCacheService_t5964D05F0929E18C69B4A018F467D9E4146649F8_StaticFields, ___NextNameIDX_9)); } inline uint64_t get_NextNameIDX_9() const { return ___NextNameIDX_9; } inline uint64_t* get_address_of_NextNameIDX_9() { return &___NextNameIDX_9; } inline void set_NextNameIDX_9(uint64_t value) { ___NextNameIDX_9 = value; } }; // BestHTTP.Forms.HTTPFieldData struct HTTPFieldData_t6D10CC260BB01415CE5644EAC56F0E4785C7C16E : public RuntimeObject { public: // System.String BestHTTP.Forms.HTTPFieldData::k__BackingField String_t* ___U3CNameU3Ek__BackingField_0; // System.String BestHTTP.Forms.HTTPFieldData::k__BackingField String_t* ___U3CFileNameU3Ek__BackingField_1; // System.String BestHTTP.Forms.HTTPFieldData::k__BackingField String_t* ___U3CMimeTypeU3Ek__BackingField_2; // System.Text.Encoding BestHTTP.Forms.HTTPFieldData::k__BackingField Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___U3CEncodingU3Ek__BackingField_3; // System.String BestHTTP.Forms.HTTPFieldData::k__BackingField String_t* ___U3CTextU3Ek__BackingField_4; // System.Byte[] BestHTTP.Forms.HTTPFieldData::k__BackingField ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___U3CBinaryU3Ek__BackingField_5; public: inline static int32_t get_offset_of_U3CNameU3Ek__BackingField_0() { return static_cast(offsetof(HTTPFieldData_t6D10CC260BB01415CE5644EAC56F0E4785C7C16E, ___U3CNameU3Ek__BackingField_0)); } inline String_t* get_U3CNameU3Ek__BackingField_0() const { return ___U3CNameU3Ek__BackingField_0; } inline String_t** get_address_of_U3CNameU3Ek__BackingField_0() { return &___U3CNameU3Ek__BackingField_0; } inline void set_U3CNameU3Ek__BackingField_0(String_t* value) { ___U3CNameU3Ek__BackingField_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CNameU3Ek__BackingField_0), (void*)value); } inline static int32_t get_offset_of_U3CFileNameU3Ek__BackingField_1() { return static_cast(offsetof(HTTPFieldData_t6D10CC260BB01415CE5644EAC56F0E4785C7C16E, ___U3CFileNameU3Ek__BackingField_1)); } inline String_t* get_U3CFileNameU3Ek__BackingField_1() const { return ___U3CFileNameU3Ek__BackingField_1; } inline String_t** get_address_of_U3CFileNameU3Ek__BackingField_1() { return &___U3CFileNameU3Ek__BackingField_1; } inline void set_U3CFileNameU3Ek__BackingField_1(String_t* value) { ___U3CFileNameU3Ek__BackingField_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CFileNameU3Ek__BackingField_1), (void*)value); } inline static int32_t get_offset_of_U3CMimeTypeU3Ek__BackingField_2() { return static_cast(offsetof(HTTPFieldData_t6D10CC260BB01415CE5644EAC56F0E4785C7C16E, ___U3CMimeTypeU3Ek__BackingField_2)); } inline String_t* get_U3CMimeTypeU3Ek__BackingField_2() const { return ___U3CMimeTypeU3Ek__BackingField_2; } inline String_t** get_address_of_U3CMimeTypeU3Ek__BackingField_2() { return &___U3CMimeTypeU3Ek__BackingField_2; } inline void set_U3CMimeTypeU3Ek__BackingField_2(String_t* value) { ___U3CMimeTypeU3Ek__BackingField_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CMimeTypeU3Ek__BackingField_2), (void*)value); } inline static int32_t get_offset_of_U3CEncodingU3Ek__BackingField_3() { return static_cast(offsetof(HTTPFieldData_t6D10CC260BB01415CE5644EAC56F0E4785C7C16E, ___U3CEncodingU3Ek__BackingField_3)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_U3CEncodingU3Ek__BackingField_3() const { return ___U3CEncodingU3Ek__BackingField_3; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_U3CEncodingU3Ek__BackingField_3() { return &___U3CEncodingU3Ek__BackingField_3; } inline void set_U3CEncodingU3Ek__BackingField_3(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___U3CEncodingU3Ek__BackingField_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CEncodingU3Ek__BackingField_3), (void*)value); } inline static int32_t get_offset_of_U3CTextU3Ek__BackingField_4() { return static_cast(offsetof(HTTPFieldData_t6D10CC260BB01415CE5644EAC56F0E4785C7C16E, ___U3CTextU3Ek__BackingField_4)); } inline String_t* get_U3CTextU3Ek__BackingField_4() const { return ___U3CTextU3Ek__BackingField_4; } inline String_t** get_address_of_U3CTextU3Ek__BackingField_4() { return &___U3CTextU3Ek__BackingField_4; } inline void set_U3CTextU3Ek__BackingField_4(String_t* value) { ___U3CTextU3Ek__BackingField_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CTextU3Ek__BackingField_4), (void*)value); } inline static int32_t get_offset_of_U3CBinaryU3Ek__BackingField_5() { return static_cast(offsetof(HTTPFieldData_t6D10CC260BB01415CE5644EAC56F0E4785C7C16E, ___U3CBinaryU3Ek__BackingField_5)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_U3CBinaryU3Ek__BackingField_5() const { return ___U3CBinaryU3Ek__BackingField_5; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_U3CBinaryU3Ek__BackingField_5() { return &___U3CBinaryU3Ek__BackingField_5; } inline void set_U3CBinaryU3Ek__BackingField_5(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___U3CBinaryU3Ek__BackingField_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CBinaryU3Ek__BackingField_5), (void*)value); } }; // BestHTTP.Forms.HTTPFormBase struct HTTPFormBase_t62B2F52574B8465343CE4B246C6021BC42A45BF2 : public RuntimeObject { public: // System.Collections.Generic.List`1 BestHTTP.Forms.HTTPFormBase::k__BackingField List_1_tAB6EE9557BF734F9EF011194835DEFD04B650ACD * ___U3CFieldsU3Ek__BackingField_1; // System.Boolean BestHTTP.Forms.HTTPFormBase::k__BackingField bool ___U3CIsChangedU3Ek__BackingField_2; // System.Boolean BestHTTP.Forms.HTTPFormBase::k__BackingField bool ___U3CHasBinaryU3Ek__BackingField_3; // System.Boolean BestHTTP.Forms.HTTPFormBase::k__BackingField bool ___U3CHasLongValueU3Ek__BackingField_4; public: inline static int32_t get_offset_of_U3CFieldsU3Ek__BackingField_1() { return static_cast(offsetof(HTTPFormBase_t62B2F52574B8465343CE4B246C6021BC42A45BF2, ___U3CFieldsU3Ek__BackingField_1)); } inline List_1_tAB6EE9557BF734F9EF011194835DEFD04B650ACD * get_U3CFieldsU3Ek__BackingField_1() const { return ___U3CFieldsU3Ek__BackingField_1; } inline List_1_tAB6EE9557BF734F9EF011194835DEFD04B650ACD ** get_address_of_U3CFieldsU3Ek__BackingField_1() { return &___U3CFieldsU3Ek__BackingField_1; } inline void set_U3CFieldsU3Ek__BackingField_1(List_1_tAB6EE9557BF734F9EF011194835DEFD04B650ACD * value) { ___U3CFieldsU3Ek__BackingField_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CFieldsU3Ek__BackingField_1), (void*)value); } inline static int32_t get_offset_of_U3CIsChangedU3Ek__BackingField_2() { return static_cast(offsetof(HTTPFormBase_t62B2F52574B8465343CE4B246C6021BC42A45BF2, ___U3CIsChangedU3Ek__BackingField_2)); } inline bool get_U3CIsChangedU3Ek__BackingField_2() const { return ___U3CIsChangedU3Ek__BackingField_2; } inline bool* get_address_of_U3CIsChangedU3Ek__BackingField_2() { return &___U3CIsChangedU3Ek__BackingField_2; } inline void set_U3CIsChangedU3Ek__BackingField_2(bool value) { ___U3CIsChangedU3Ek__BackingField_2 = value; } inline static int32_t get_offset_of_U3CHasBinaryU3Ek__BackingField_3() { return static_cast(offsetof(HTTPFormBase_t62B2F52574B8465343CE4B246C6021BC42A45BF2, ___U3CHasBinaryU3Ek__BackingField_3)); } inline bool get_U3CHasBinaryU3Ek__BackingField_3() const { return ___U3CHasBinaryU3Ek__BackingField_3; } inline bool* get_address_of_U3CHasBinaryU3Ek__BackingField_3() { return &___U3CHasBinaryU3Ek__BackingField_3; } inline void set_U3CHasBinaryU3Ek__BackingField_3(bool value) { ___U3CHasBinaryU3Ek__BackingField_3 = value; } inline static int32_t get_offset_of_U3CHasLongValueU3Ek__BackingField_4() { return static_cast(offsetof(HTTPFormBase_t62B2F52574B8465343CE4B246C6021BC42A45BF2, ___U3CHasLongValueU3Ek__BackingField_4)); } inline bool get_U3CHasLongValueU3Ek__BackingField_4() const { return ___U3CHasLongValueU3Ek__BackingField_4; } inline bool* get_address_of_U3CHasLongValueU3Ek__BackingField_4() { return &___U3CHasLongValueU3Ek__BackingField_4; } inline void set_U3CHasLongValueU3Ek__BackingField_4(bool value) { ___U3CHasLongValueU3Ek__BackingField_4 = value; } }; // BestHTTP.HTTPProtocolFactory struct HTTPProtocolFactory_tA9816319BC08DE043447DE17DCC4CE0B3AA28336 : public RuntimeObject { public: public: }; // BestHTTP.HTTPRange struct HTTPRange_t20F26AB96B01FD02CEFFC27DC68C91383CF6C16B : public RuntimeObject { public: // System.Int32 BestHTTP.HTTPRange::k__BackingField int32_t ___U3CFirstBytePosU3Ek__BackingField_0; // System.Int32 BestHTTP.HTTPRange::k__BackingField int32_t ___U3CLastBytePosU3Ek__BackingField_1; // System.Int32 BestHTTP.HTTPRange::k__BackingField int32_t ___U3CContentLengthU3Ek__BackingField_2; // System.Boolean BestHTTP.HTTPRange::k__BackingField bool ___U3CIsValidU3Ek__BackingField_3; public: inline static int32_t get_offset_of_U3CFirstBytePosU3Ek__BackingField_0() { return static_cast(offsetof(HTTPRange_t20F26AB96B01FD02CEFFC27DC68C91383CF6C16B, ___U3CFirstBytePosU3Ek__BackingField_0)); } inline int32_t get_U3CFirstBytePosU3Ek__BackingField_0() const { return ___U3CFirstBytePosU3Ek__BackingField_0; } inline int32_t* get_address_of_U3CFirstBytePosU3Ek__BackingField_0() { return &___U3CFirstBytePosU3Ek__BackingField_0; } inline void set_U3CFirstBytePosU3Ek__BackingField_0(int32_t value) { ___U3CFirstBytePosU3Ek__BackingField_0 = value; } inline static int32_t get_offset_of_U3CLastBytePosU3Ek__BackingField_1() { return static_cast(offsetof(HTTPRange_t20F26AB96B01FD02CEFFC27DC68C91383CF6C16B, ___U3CLastBytePosU3Ek__BackingField_1)); } inline int32_t get_U3CLastBytePosU3Ek__BackingField_1() const { return ___U3CLastBytePosU3Ek__BackingField_1; } inline int32_t* get_address_of_U3CLastBytePosU3Ek__BackingField_1() { return &___U3CLastBytePosU3Ek__BackingField_1; } inline void set_U3CLastBytePosU3Ek__BackingField_1(int32_t value) { ___U3CLastBytePosU3Ek__BackingField_1 = value; } inline static int32_t get_offset_of_U3CContentLengthU3Ek__BackingField_2() { return static_cast(offsetof(HTTPRange_t20F26AB96B01FD02CEFFC27DC68C91383CF6C16B, ___U3CContentLengthU3Ek__BackingField_2)); } inline int32_t get_U3CContentLengthU3Ek__BackingField_2() const { return ___U3CContentLengthU3Ek__BackingField_2; } inline int32_t* get_address_of_U3CContentLengthU3Ek__BackingField_2() { return &___U3CContentLengthU3Ek__BackingField_2; } inline void set_U3CContentLengthU3Ek__BackingField_2(int32_t value) { ___U3CContentLengthU3Ek__BackingField_2 = value; } inline static int32_t get_offset_of_U3CIsValidU3Ek__BackingField_3() { return static_cast(offsetof(HTTPRange_t20F26AB96B01FD02CEFFC27DC68C91383CF6C16B, ___U3CIsValidU3Ek__BackingField_3)); } inline bool get_U3CIsValidU3Ek__BackingField_3() const { return ___U3CIsValidU3Ek__BackingField_3; } inline bool* get_address_of_U3CIsValidU3Ek__BackingField_3() { return &___U3CIsValidU3Ek__BackingField_3; } inline void set_U3CIsValidU3Ek__BackingField_3(bool value) { ___U3CIsValidU3Ek__BackingField_3 = value; } }; // BestHTTP.HTTPResponse struct HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD : public RuntimeObject { public: // System.Int32 BestHTTP.HTTPResponse::k__BackingField int32_t ___U3CVersionMajorU3Ek__BackingField_3; // System.Int32 BestHTTP.HTTPResponse::k__BackingField int32_t ___U3CVersionMinorU3Ek__BackingField_4; // System.Int32 BestHTTP.HTTPResponse::k__BackingField int32_t ___U3CStatusCodeU3Ek__BackingField_5; // System.String BestHTTP.HTTPResponse::k__BackingField String_t* ___U3CMessageU3Ek__BackingField_6; // System.Boolean BestHTTP.HTTPResponse::k__BackingField bool ___U3CIsStreamedU3Ek__BackingField_7; // System.Boolean BestHTTP.HTTPResponse::k__BackingField bool ___U3CIsStreamingFinishedU3Ek__BackingField_8; // System.Boolean BestHTTP.HTTPResponse::k__BackingField bool ___U3CIsFromCacheU3Ek__BackingField_9; // BestHTTP.Caching.HTTPCacheFileInfo BestHTTP.HTTPResponse::k__BackingField HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * ___U3CCacheFileInfoU3Ek__BackingField_10; // System.Boolean BestHTTP.HTTPResponse::k__BackingField bool ___U3CIsCacheOnlyU3Ek__BackingField_11; // System.Collections.Generic.Dictionary`2> BestHTTP.HTTPResponse::k__BackingField Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086 * ___U3CHeadersU3Ek__BackingField_12; // System.Byte[] BestHTTP.HTTPResponse::k__BackingField ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___U3CDataU3Ek__BackingField_13; // System.Boolean BestHTTP.HTTPResponse::k__BackingField bool ___U3CIsUpgradedU3Ek__BackingField_14; // System.Collections.Generic.List`1 BestHTTP.HTTPResponse::k__BackingField List_1_tF9D8E572A8599785D6C36AD7BDC592752B89E0A1 * ___U3CCookiesU3Ek__BackingField_15; // System.String BestHTTP.HTTPResponse::dataAsText String_t* ___dataAsText_16; // UnityEngine.Texture2D BestHTTP.HTTPResponse::texture Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * ___texture_17; // System.Boolean BestHTTP.HTTPResponse::k__BackingField bool ___U3CIsClosedManuallyU3Ek__BackingField_18; // BestHTTP.HTTPRequest BestHTTP.HTTPResponse::baseRequest HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * ___baseRequest_19; // System.IO.Stream BestHTTP.HTTPResponse::Stream Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___Stream_20; // System.Collections.Generic.List`1 BestHTTP.HTTPResponse::streamedFragments List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE * ___streamedFragments_21; // System.Object BestHTTP.HTTPResponse::SyncRoot RuntimeObject * ___SyncRoot_22; // System.Byte[] BestHTTP.HTTPResponse::fragmentBuffer ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___fragmentBuffer_23; // System.Int32 BestHTTP.HTTPResponse::fragmentBufferDataLength int32_t ___fragmentBufferDataLength_24; // System.IO.Stream BestHTTP.HTTPResponse::cacheStream Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___cacheStream_25; // System.Int32 BestHTTP.HTTPResponse::allFragmentSize int32_t ___allFragmentSize_26; // BestHTTP.Extensions.BufferPoolMemoryStream BestHTTP.HTTPResponse::decompressorInputStream BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B * ___decompressorInputStream_27; // BestHTTP.Extensions.BufferPoolMemoryStream BestHTTP.HTTPResponse::decompressorOutputStream BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B * ___decompressorOutputStream_28; // BestHTTP.Decompression.Zlib.GZipStream BestHTTP.HTTPResponse::decompressorGZipStream GZipStream_t99D1C296F7C62A7A6ED44277279DB835B13B37F1 * ___decompressorGZipStream_29; // System.Threading.AutoResetEvent modreq(System.Runtime.CompilerServices.IsVolatile) BestHTTP.HTTPResponse::fragmentWaitEvent AutoResetEvent_t3B012223F0DE760BF0D282C5F7B9084C6D3AF53D * ___fragmentWaitEvent_31; public: inline static int32_t get_offset_of_U3CVersionMajorU3Ek__BackingField_3() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___U3CVersionMajorU3Ek__BackingField_3)); } inline int32_t get_U3CVersionMajorU3Ek__BackingField_3() const { return ___U3CVersionMajorU3Ek__BackingField_3; } inline int32_t* get_address_of_U3CVersionMajorU3Ek__BackingField_3() { return &___U3CVersionMajorU3Ek__BackingField_3; } inline void set_U3CVersionMajorU3Ek__BackingField_3(int32_t value) { ___U3CVersionMajorU3Ek__BackingField_3 = value; } inline static int32_t get_offset_of_U3CVersionMinorU3Ek__BackingField_4() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___U3CVersionMinorU3Ek__BackingField_4)); } inline int32_t get_U3CVersionMinorU3Ek__BackingField_4() const { return ___U3CVersionMinorU3Ek__BackingField_4; } inline int32_t* get_address_of_U3CVersionMinorU3Ek__BackingField_4() { return &___U3CVersionMinorU3Ek__BackingField_4; } inline void set_U3CVersionMinorU3Ek__BackingField_4(int32_t value) { ___U3CVersionMinorU3Ek__BackingField_4 = value; } inline static int32_t get_offset_of_U3CStatusCodeU3Ek__BackingField_5() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___U3CStatusCodeU3Ek__BackingField_5)); } inline int32_t get_U3CStatusCodeU3Ek__BackingField_5() const { return ___U3CStatusCodeU3Ek__BackingField_5; } inline int32_t* get_address_of_U3CStatusCodeU3Ek__BackingField_5() { return &___U3CStatusCodeU3Ek__BackingField_5; } inline void set_U3CStatusCodeU3Ek__BackingField_5(int32_t value) { ___U3CStatusCodeU3Ek__BackingField_5 = value; } inline static int32_t get_offset_of_U3CMessageU3Ek__BackingField_6() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___U3CMessageU3Ek__BackingField_6)); } inline String_t* get_U3CMessageU3Ek__BackingField_6() const { return ___U3CMessageU3Ek__BackingField_6; } inline String_t** get_address_of_U3CMessageU3Ek__BackingField_6() { return &___U3CMessageU3Ek__BackingField_6; } inline void set_U3CMessageU3Ek__BackingField_6(String_t* value) { ___U3CMessageU3Ek__BackingField_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CMessageU3Ek__BackingField_6), (void*)value); } inline static int32_t get_offset_of_U3CIsStreamedU3Ek__BackingField_7() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___U3CIsStreamedU3Ek__BackingField_7)); } inline bool get_U3CIsStreamedU3Ek__BackingField_7() const { return ___U3CIsStreamedU3Ek__BackingField_7; } inline bool* get_address_of_U3CIsStreamedU3Ek__BackingField_7() { return &___U3CIsStreamedU3Ek__BackingField_7; } inline void set_U3CIsStreamedU3Ek__BackingField_7(bool value) { ___U3CIsStreamedU3Ek__BackingField_7 = value; } inline static int32_t get_offset_of_U3CIsStreamingFinishedU3Ek__BackingField_8() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___U3CIsStreamingFinishedU3Ek__BackingField_8)); } inline bool get_U3CIsStreamingFinishedU3Ek__BackingField_8() const { return ___U3CIsStreamingFinishedU3Ek__BackingField_8; } inline bool* get_address_of_U3CIsStreamingFinishedU3Ek__BackingField_8() { return &___U3CIsStreamingFinishedU3Ek__BackingField_8; } inline void set_U3CIsStreamingFinishedU3Ek__BackingField_8(bool value) { ___U3CIsStreamingFinishedU3Ek__BackingField_8 = value; } inline static int32_t get_offset_of_U3CIsFromCacheU3Ek__BackingField_9() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___U3CIsFromCacheU3Ek__BackingField_9)); } inline bool get_U3CIsFromCacheU3Ek__BackingField_9() const { return ___U3CIsFromCacheU3Ek__BackingField_9; } inline bool* get_address_of_U3CIsFromCacheU3Ek__BackingField_9() { return &___U3CIsFromCacheU3Ek__BackingField_9; } inline void set_U3CIsFromCacheU3Ek__BackingField_9(bool value) { ___U3CIsFromCacheU3Ek__BackingField_9 = value; } inline static int32_t get_offset_of_U3CCacheFileInfoU3Ek__BackingField_10() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___U3CCacheFileInfoU3Ek__BackingField_10)); } inline HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * get_U3CCacheFileInfoU3Ek__BackingField_10() const { return ___U3CCacheFileInfoU3Ek__BackingField_10; } inline HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA ** get_address_of_U3CCacheFileInfoU3Ek__BackingField_10() { return &___U3CCacheFileInfoU3Ek__BackingField_10; } inline void set_U3CCacheFileInfoU3Ek__BackingField_10(HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * value) { ___U3CCacheFileInfoU3Ek__BackingField_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CCacheFileInfoU3Ek__BackingField_10), (void*)value); } inline static int32_t get_offset_of_U3CIsCacheOnlyU3Ek__BackingField_11() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___U3CIsCacheOnlyU3Ek__BackingField_11)); } inline bool get_U3CIsCacheOnlyU3Ek__BackingField_11() const { return ___U3CIsCacheOnlyU3Ek__BackingField_11; } inline bool* get_address_of_U3CIsCacheOnlyU3Ek__BackingField_11() { return &___U3CIsCacheOnlyU3Ek__BackingField_11; } inline void set_U3CIsCacheOnlyU3Ek__BackingField_11(bool value) { ___U3CIsCacheOnlyU3Ek__BackingField_11 = value; } inline static int32_t get_offset_of_U3CHeadersU3Ek__BackingField_12() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___U3CHeadersU3Ek__BackingField_12)); } inline Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086 * get_U3CHeadersU3Ek__BackingField_12() const { return ___U3CHeadersU3Ek__BackingField_12; } inline Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086 ** get_address_of_U3CHeadersU3Ek__BackingField_12() { return &___U3CHeadersU3Ek__BackingField_12; } inline void set_U3CHeadersU3Ek__BackingField_12(Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086 * value) { ___U3CHeadersU3Ek__BackingField_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CHeadersU3Ek__BackingField_12), (void*)value); } inline static int32_t get_offset_of_U3CDataU3Ek__BackingField_13() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___U3CDataU3Ek__BackingField_13)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_U3CDataU3Ek__BackingField_13() const { return ___U3CDataU3Ek__BackingField_13; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_U3CDataU3Ek__BackingField_13() { return &___U3CDataU3Ek__BackingField_13; } inline void set_U3CDataU3Ek__BackingField_13(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___U3CDataU3Ek__BackingField_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CDataU3Ek__BackingField_13), (void*)value); } inline static int32_t get_offset_of_U3CIsUpgradedU3Ek__BackingField_14() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___U3CIsUpgradedU3Ek__BackingField_14)); } inline bool get_U3CIsUpgradedU3Ek__BackingField_14() const { return ___U3CIsUpgradedU3Ek__BackingField_14; } inline bool* get_address_of_U3CIsUpgradedU3Ek__BackingField_14() { return &___U3CIsUpgradedU3Ek__BackingField_14; } inline void set_U3CIsUpgradedU3Ek__BackingField_14(bool value) { ___U3CIsUpgradedU3Ek__BackingField_14 = value; } inline static int32_t get_offset_of_U3CCookiesU3Ek__BackingField_15() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___U3CCookiesU3Ek__BackingField_15)); } inline List_1_tF9D8E572A8599785D6C36AD7BDC592752B89E0A1 * get_U3CCookiesU3Ek__BackingField_15() const { return ___U3CCookiesU3Ek__BackingField_15; } inline List_1_tF9D8E572A8599785D6C36AD7BDC592752B89E0A1 ** get_address_of_U3CCookiesU3Ek__BackingField_15() { return &___U3CCookiesU3Ek__BackingField_15; } inline void set_U3CCookiesU3Ek__BackingField_15(List_1_tF9D8E572A8599785D6C36AD7BDC592752B89E0A1 * value) { ___U3CCookiesU3Ek__BackingField_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CCookiesU3Ek__BackingField_15), (void*)value); } inline static int32_t get_offset_of_dataAsText_16() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___dataAsText_16)); } inline String_t* get_dataAsText_16() const { return ___dataAsText_16; } inline String_t** get_address_of_dataAsText_16() { return &___dataAsText_16; } inline void set_dataAsText_16(String_t* value) { ___dataAsText_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___dataAsText_16), (void*)value); } inline static int32_t get_offset_of_texture_17() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___texture_17)); } inline Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * get_texture_17() const { return ___texture_17; } inline Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF ** get_address_of_texture_17() { return &___texture_17; } inline void set_texture_17(Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * value) { ___texture_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___texture_17), (void*)value); } inline static int32_t get_offset_of_U3CIsClosedManuallyU3Ek__BackingField_18() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___U3CIsClosedManuallyU3Ek__BackingField_18)); } inline bool get_U3CIsClosedManuallyU3Ek__BackingField_18() const { return ___U3CIsClosedManuallyU3Ek__BackingField_18; } inline bool* get_address_of_U3CIsClosedManuallyU3Ek__BackingField_18() { return &___U3CIsClosedManuallyU3Ek__BackingField_18; } inline void set_U3CIsClosedManuallyU3Ek__BackingField_18(bool value) { ___U3CIsClosedManuallyU3Ek__BackingField_18 = value; } inline static int32_t get_offset_of_baseRequest_19() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___baseRequest_19)); } inline HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * get_baseRequest_19() const { return ___baseRequest_19; } inline HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 ** get_address_of_baseRequest_19() { return &___baseRequest_19; } inline void set_baseRequest_19(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * value) { ___baseRequest_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___baseRequest_19), (void*)value); } inline static int32_t get_offset_of_Stream_20() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___Stream_20)); } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_Stream_20() const { return ___Stream_20; } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_Stream_20() { return &___Stream_20; } inline void set_Stream_20(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value) { ___Stream_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___Stream_20), (void*)value); } inline static int32_t get_offset_of_streamedFragments_21() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___streamedFragments_21)); } inline List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE * get_streamedFragments_21() const { return ___streamedFragments_21; } inline List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE ** get_address_of_streamedFragments_21() { return &___streamedFragments_21; } inline void set_streamedFragments_21(List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE * value) { ___streamedFragments_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___streamedFragments_21), (void*)value); } inline static int32_t get_offset_of_SyncRoot_22() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___SyncRoot_22)); } inline RuntimeObject * get_SyncRoot_22() const { return ___SyncRoot_22; } inline RuntimeObject ** get_address_of_SyncRoot_22() { return &___SyncRoot_22; } inline void set_SyncRoot_22(RuntimeObject * value) { ___SyncRoot_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___SyncRoot_22), (void*)value); } inline static int32_t get_offset_of_fragmentBuffer_23() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___fragmentBuffer_23)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_fragmentBuffer_23() const { return ___fragmentBuffer_23; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_fragmentBuffer_23() { return &___fragmentBuffer_23; } inline void set_fragmentBuffer_23(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___fragmentBuffer_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___fragmentBuffer_23), (void*)value); } inline static int32_t get_offset_of_fragmentBufferDataLength_24() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___fragmentBufferDataLength_24)); } inline int32_t get_fragmentBufferDataLength_24() const { return ___fragmentBufferDataLength_24; } inline int32_t* get_address_of_fragmentBufferDataLength_24() { return &___fragmentBufferDataLength_24; } inline void set_fragmentBufferDataLength_24(int32_t value) { ___fragmentBufferDataLength_24 = value; } inline static int32_t get_offset_of_cacheStream_25() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___cacheStream_25)); } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_cacheStream_25() const { return ___cacheStream_25; } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_cacheStream_25() { return &___cacheStream_25; } inline void set_cacheStream_25(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value) { ___cacheStream_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___cacheStream_25), (void*)value); } inline static int32_t get_offset_of_allFragmentSize_26() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___allFragmentSize_26)); } inline int32_t get_allFragmentSize_26() const { return ___allFragmentSize_26; } inline int32_t* get_address_of_allFragmentSize_26() { return &___allFragmentSize_26; } inline void set_allFragmentSize_26(int32_t value) { ___allFragmentSize_26 = value; } inline static int32_t get_offset_of_decompressorInputStream_27() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___decompressorInputStream_27)); } inline BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B * get_decompressorInputStream_27() const { return ___decompressorInputStream_27; } inline BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B ** get_address_of_decompressorInputStream_27() { return &___decompressorInputStream_27; } inline void set_decompressorInputStream_27(BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B * value) { ___decompressorInputStream_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___decompressorInputStream_27), (void*)value); } inline static int32_t get_offset_of_decompressorOutputStream_28() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___decompressorOutputStream_28)); } inline BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B * get_decompressorOutputStream_28() const { return ___decompressorOutputStream_28; } inline BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B ** get_address_of_decompressorOutputStream_28() { return &___decompressorOutputStream_28; } inline void set_decompressorOutputStream_28(BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B * value) { ___decompressorOutputStream_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___decompressorOutputStream_28), (void*)value); } inline static int32_t get_offset_of_decompressorGZipStream_29() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___decompressorGZipStream_29)); } inline GZipStream_t99D1C296F7C62A7A6ED44277279DB835B13B37F1 * get_decompressorGZipStream_29() const { return ___decompressorGZipStream_29; } inline GZipStream_t99D1C296F7C62A7A6ED44277279DB835B13B37F1 ** get_address_of_decompressorGZipStream_29() { return &___decompressorGZipStream_29; } inline void set_decompressorGZipStream_29(GZipStream_t99D1C296F7C62A7A6ED44277279DB835B13B37F1 * value) { ___decompressorGZipStream_29 = value; Il2CppCodeGenWriteBarrier((void**)(&___decompressorGZipStream_29), (void*)value); } inline static int32_t get_offset_of_fragmentWaitEvent_31() { return static_cast(offsetof(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD, ___fragmentWaitEvent_31)); } inline AutoResetEvent_t3B012223F0DE760BF0D282C5F7B9084C6D3AF53D * get_fragmentWaitEvent_31() const { return ___fragmentWaitEvent_31; } inline AutoResetEvent_t3B012223F0DE760BF0D282C5F7B9084C6D3AF53D ** get_address_of_fragmentWaitEvent_31() { return &___fragmentWaitEvent_31; } inline void set_fragmentWaitEvent_31(AutoResetEvent_t3B012223F0DE760BF0D282C5F7B9084C6D3AF53D * value) { ___fragmentWaitEvent_31 = value; Il2CppCodeGenWriteBarrier((void**)(&___fragmentWaitEvent_31), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.KeyParameter struct KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC : public RuntimeObject { public: // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.KeyParameter::key ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___key_0; public: inline static int32_t get_offset_of_key_0() { return static_cast(offsetof(KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC, ___key_0)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_key_0() const { return ___key_0; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_key_0() { return &___key_0; } inline void set_key_0(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value); } }; // System.MarshalByRefObject struct MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 : public RuntimeObject { public: // System.Object System.MarshalByRefObject::_identity RuntimeObject * ____identity_0; public: inline static int32_t get_offset_of__identity_0() { return static_cast(offsetof(MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8, ____identity_0)); } inline RuntimeObject * get__identity_0() const { return ____identity_0; } inline RuntimeObject ** get_address_of__identity_0() { return &____identity_0; } inline void set__identity_0(RuntimeObject * value) { ____identity_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____identity_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.MarshalByRefObject struct MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8_marshaled_pinvoke { Il2CppIUnknown* ____identity_0; }; // Native definition for COM marshalling of System.MarshalByRefObject struct MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8_marshaled_com { Il2CppIUnknown* ____identity_0; }; // System.Reflection.MemberInfo struct MemberInfo_t : public RuntimeObject { public: public: }; // MenuBackController struct MenuBackController_t545B27D5E7BCA7C609808B7960239E0FC034ADA4 : public RuntimeObject { public: // System.Collections.Generic.List`1 MenuBackController::views List_1_t857A27AA47EED217A2CFE04C0C9B7FCDDE0C284F * ___views_0; // System.Int64 MenuBackController::lastPressExitTime int64_t ___lastPressExitTime_1; public: inline static int32_t get_offset_of_views_0() { return static_cast(offsetof(MenuBackController_t545B27D5E7BCA7C609808B7960239E0FC034ADA4, ___views_0)); } inline List_1_t857A27AA47EED217A2CFE04C0C9B7FCDDE0C284F * get_views_0() const { return ___views_0; } inline List_1_t857A27AA47EED217A2CFE04C0C9B7FCDDE0C284F ** get_address_of_views_0() { return &___views_0; } inline void set_views_0(List_1_t857A27AA47EED217A2CFE04C0C9B7FCDDE0C284F * value) { ___views_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___views_0), (void*)value); } inline static int32_t get_offset_of_lastPressExitTime_1() { return static_cast(offsetof(MenuBackController_t545B27D5E7BCA7C609808B7960239E0FC034ADA4, ___lastPressExitTime_1)); } inline int64_t get_lastPressExitTime_1() const { return ___lastPressExitTime_1; } inline int64_t* get_address_of_lastPressExitTime_1() { return &___lastPressExitTime_1; } inline void set_lastPressExitTime_1(int64_t value) { ___lastPressExitTime_1 = value; } }; // BestHTTP.Proxy struct Proxy_t84F0DDAE5A37016479C7094FFB8F78835B8BD4F6 : public RuntimeObject { public: // System.Uri BestHTTP.Proxy::
k__BackingField Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___U3CAddressU3Ek__BackingField_0; // BestHTTP.Authentication.Credentials BestHTTP.Proxy::k__BackingField Credentials_tD6C60AC7DFFD64212481FBCB4AF02846196F5CE8 * ___U3CCredentialsU3Ek__BackingField_1; public: inline static int32_t get_offset_of_U3CAddressU3Ek__BackingField_0() { return static_cast(offsetof(Proxy_t84F0DDAE5A37016479C7094FFB8F78835B8BD4F6, ___U3CAddressU3Ek__BackingField_0)); } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * get_U3CAddressU3Ek__BackingField_0() const { return ___U3CAddressU3Ek__BackingField_0; } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 ** get_address_of_U3CAddressU3Ek__BackingField_0() { return &___U3CAddressU3Ek__BackingField_0; } inline void set_U3CAddressU3Ek__BackingField_0(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * value) { ___U3CAddressU3Ek__BackingField_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CAddressU3Ek__BackingField_0), (void*)value); } inline static int32_t get_offset_of_U3CCredentialsU3Ek__BackingField_1() { return static_cast(offsetof(Proxy_t84F0DDAE5A37016479C7094FFB8F78835B8BD4F6, ___U3CCredentialsU3Ek__BackingField_1)); } inline Credentials_tD6C60AC7DFFD64212481FBCB4AF02846196F5CE8 * get_U3CCredentialsU3Ek__BackingField_1() const { return ___U3CCredentialsU3Ek__BackingField_1; } inline Credentials_tD6C60AC7DFFD64212481FBCB4AF02846196F5CE8 ** get_address_of_U3CCredentialsU3Ek__BackingField_1() { return &___U3CCredentialsU3Ek__BackingField_1; } inline void set_U3CCredentialsU3Ek__BackingField_1(Credentials_tD6C60AC7DFFD64212481FBCB4AF02846196F5CE8 * value) { ___U3CCredentialsU3Ek__BackingField_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CCredentialsU3Ek__BackingField_1), (void*)value); } }; // System.Random struct Random_t6C9E9775A149D0ADCFEB4B252C408F03EE870118 : public RuntimeObject { public: // System.Int32 System.Random::inext int32_t ___inext_0; // System.Int32 System.Random::inextp int32_t ___inextp_1; // System.Int32[] System.Random::SeedArray Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___SeedArray_2; public: inline static int32_t get_offset_of_inext_0() { return static_cast(offsetof(Random_t6C9E9775A149D0ADCFEB4B252C408F03EE870118, ___inext_0)); } inline int32_t get_inext_0() const { return ___inext_0; } inline int32_t* get_address_of_inext_0() { return &___inext_0; } inline void set_inext_0(int32_t value) { ___inext_0 = value; } inline static int32_t get_offset_of_inextp_1() { return static_cast(offsetof(Random_t6C9E9775A149D0ADCFEB4B252C408F03EE870118, ___inextp_1)); } inline int32_t get_inextp_1() const { return ___inextp_1; } inline int32_t* get_address_of_inextp_1() { return &___inextp_1; } inline void set_inextp_1(int32_t value) { ___inextp_1 = value; } inline static int32_t get_offset_of_SeedArray_2() { return static_cast(offsetof(Random_t6C9E9775A149D0ADCFEB4B252C408F03EE870118, ___SeedArray_2)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_SeedArray_2() const { return ___SeedArray_2; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_SeedArray_2() { return &___SeedArray_2; } inline void set_SeedArray_2(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___SeedArray_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___SeedArray_2), (void*)value); } }; // RequestResult struct RequestResult_tCE96198172C7000A24026429191217E64CDA9DFB : public RuntimeObject { public: // System.Int32 RequestResult::code int32_t ___code_0; // System.Object RequestResult::data RuntimeObject * ___data_1; // System.String RequestResult::msg String_t* ___msg_2; public: inline static int32_t get_offset_of_code_0() { return static_cast(offsetof(RequestResult_tCE96198172C7000A24026429191217E64CDA9DFB, ___code_0)); } inline int32_t get_code_0() const { return ___code_0; } inline int32_t* get_address_of_code_0() { return &___code_0; } inline void set_code_0(int32_t value) { ___code_0 = value; } inline static int32_t get_offset_of_data_1() { return static_cast(offsetof(RequestResult_tCE96198172C7000A24026429191217E64CDA9DFB, ___data_1)); } inline RuntimeObject * get_data_1() const { return ___data_1; } inline RuntimeObject ** get_address_of_data_1() { return &___data_1; } inline void set_data_1(RuntimeObject * value) { ___data_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___data_1), (void*)value); } inline static int32_t get_offset_of_msg_2() { return static_cast(offsetof(RequestResult_tCE96198172C7000A24026429191217E64CDA9DFB, ___msg_2)); } inline String_t* get_msg_2() const { return ___msg_2; } inline String_t** get_address_of_msg_2() { return &___msg_2; } inline void set_msg_2(String_t* value) { ___msg_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___msg_2), (void*)value); } }; // SimulateMouseController struct SimulateMouseController_tA70BEF03B40F921CF76BC22EDFB7F57083FD43F5 : public RuntimeObject { public: // System.Boolean SimulateMouseController::bleConnected bool ___bleConnected_1; // System.Collections.Generic.HashSet`1 SimulateMouseController::openLockerSet HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B * ___openLockerSet_2; public: inline static int32_t get_offset_of_bleConnected_1() { return static_cast(offsetof(SimulateMouseController_tA70BEF03B40F921CF76BC22EDFB7F57083FD43F5, ___bleConnected_1)); } inline bool get_bleConnected_1() const { return ___bleConnected_1; } inline bool* get_address_of_bleConnected_1() { return &___bleConnected_1; } inline void set_bleConnected_1(bool value) { ___bleConnected_1 = value; } inline static int32_t get_offset_of_openLockerSet_2() { return static_cast(offsetof(SimulateMouseController_tA70BEF03B40F921CF76BC22EDFB7F57083FD43F5, ___openLockerSet_2)); } inline HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B * get_openLockerSet_2() const { return ___openLockerSet_2; } inline HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B ** get_address_of_openLockerSet_2() { return &___openLockerSet_2; } inline void set_openLockerSet_2(HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B * value) { ___openLockerSet_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___openLockerSet_2), (void*)value); } }; struct SimulateMouseController_tA70BEF03B40F921CF76BC22EDFB7F57083FD43F5_StaticFields { public: // SimulateMouseController SimulateMouseController::ins SimulateMouseController_tA70BEF03B40F921CF76BC22EDFB7F57083FD43F5 * ___ins_0; public: inline static int32_t get_offset_of_ins_0() { return static_cast(offsetof(SimulateMouseController_tA70BEF03B40F921CF76BC22EDFB7F57083FD43F5_StaticFields, ___ins_0)); } inline SimulateMouseController_tA70BEF03B40F921CF76BC22EDFB7F57083FD43F5 * get_ins_0() const { return ___ins_0; } inline SimulateMouseController_tA70BEF03B40F921CF76BC22EDFB7F57083FD43F5 ** get_address_of_ins_0() { return &___ins_0; } inline void set_ins_0(SimulateMouseController_tA70BEF03B40F921CF76BC22EDFB7F57083FD43F5 * value) { ___ins_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___ins_0), (void*)value); } }; // System.String struct String_t : public RuntimeObject { public: // System.Int32 System.String::m_stringLength int32_t ___m_stringLength_0; // System.Char System.String::m_firstChar Il2CppChar ___m_firstChar_1; public: inline static int32_t get_offset_of_m_stringLength_0() { return static_cast(offsetof(String_t, ___m_stringLength_0)); } inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; } inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; } inline void set_m_stringLength_0(int32_t value) { ___m_stringLength_0 = value; } inline static int32_t get_offset_of_m_firstChar_1() { return static_cast(offsetof(String_t, ___m_firstChar_1)); } inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; } inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; } inline void set_m_firstChar_1(Il2CppChar value) { ___m_firstChar_1 = value; } }; struct String_t_StaticFields { public: // System.String System.String::Empty String_t* ___Empty_5; public: inline static int32_t get_offset_of_Empty_5() { return static_cast(offsetof(String_t_StaticFields, ___Empty_5)); } inline String_t* get_Empty_5() const { return ___Empty_5; } inline String_t** get_address_of_Empty_5() { return &___Empty_5; } inline void set_Empty_5(String_t* value) { ___Empty_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___Empty_5), (void*)value); } }; // JCUnityLib.Throttler struct Throttler_t24208F2310962DD9B2C5169CB881DBF9E6A44246 : public RuntimeObject { public: // System.Int64 JCUnityLib.Throttler::m_lastPassTime int64_t ___m_lastPassTime_0; // System.Int64 JCUnityLib.Throttler::m_limitTimeMillis int64_t ___m_limitTimeMillis_1; public: inline static int32_t get_offset_of_m_lastPassTime_0() { return static_cast(offsetof(Throttler_t24208F2310962DD9B2C5169CB881DBF9E6A44246, ___m_lastPassTime_0)); } inline int64_t get_m_lastPassTime_0() const { return ___m_lastPassTime_0; } inline int64_t* get_address_of_m_lastPassTime_0() { return &___m_lastPassTime_0; } inline void set_m_lastPassTime_0(int64_t value) { ___m_lastPassTime_0 = value; } inline static int32_t get_offset_of_m_limitTimeMillis_1() { return static_cast(offsetof(Throttler_t24208F2310962DD9B2C5169CB881DBF9E6A44246, ___m_limitTimeMillis_1)); } inline int64_t get_m_limitTimeMillis_1() const { return ___m_limitTimeMillis_1; } inline int64_t* get_address_of_m_limitTimeMillis_1() { return &___m_limitTimeMillis_1; } inline void set_m_limitTimeMillis_1(int64_t value) { ___m_limitTimeMillis_1 = value; } }; // UnityEngine.Events.UnityEventBase struct UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB : public RuntimeObject { public: // UnityEngine.Events.InvokableCallList UnityEngine.Events.UnityEventBase::m_Calls InvokableCallList_tB7C66AA0C00F9C102C8BDC17A144E569AC7527A9 * ___m_Calls_0; // UnityEngine.Events.PersistentCallGroup UnityEngine.Events.UnityEventBase::m_PersistentCalls PersistentCallGroup_t9A1D83DA2BA3118C103FA87D93CE92557A956FDC * ___m_PersistentCalls_1; // System.Boolean UnityEngine.Events.UnityEventBase::m_CallsDirty bool ___m_CallsDirty_2; public: inline static int32_t get_offset_of_m_Calls_0() { return static_cast(offsetof(UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB, ___m_Calls_0)); } inline InvokableCallList_tB7C66AA0C00F9C102C8BDC17A144E569AC7527A9 * get_m_Calls_0() const { return ___m_Calls_0; } inline InvokableCallList_tB7C66AA0C00F9C102C8BDC17A144E569AC7527A9 ** get_address_of_m_Calls_0() { return &___m_Calls_0; } inline void set_m_Calls_0(InvokableCallList_tB7C66AA0C00F9C102C8BDC17A144E569AC7527A9 * value) { ___m_Calls_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Calls_0), (void*)value); } inline static int32_t get_offset_of_m_PersistentCalls_1() { return static_cast(offsetof(UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB, ___m_PersistentCalls_1)); } inline PersistentCallGroup_t9A1D83DA2BA3118C103FA87D93CE92557A956FDC * get_m_PersistentCalls_1() const { return ___m_PersistentCalls_1; } inline PersistentCallGroup_t9A1D83DA2BA3118C103FA87D93CE92557A956FDC ** get_address_of_m_PersistentCalls_1() { return &___m_PersistentCalls_1; } inline void set_m_PersistentCalls_1(PersistentCallGroup_t9A1D83DA2BA3118C103FA87D93CE92557A956FDC * value) { ___m_PersistentCalls_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_PersistentCalls_1), (void*)value); } inline static int32_t get_offset_of_m_CallsDirty_2() { return static_cast(offsetof(UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB, ___m_CallsDirty_2)); } inline bool get_m_CallsDirty_2() const { return ___m_CallsDirty_2; } inline bool* get_address_of_m_CallsDirty_2() { return &___m_CallsDirty_2; } inline void set_m_CallsDirty_2(bool value) { ___m_CallsDirty_2 = value; } }; // System.UriBuilder struct UriBuilder_t6FF22E0E019C73564385054BE4AF98E6C5EE0F42 : public RuntimeObject { public: // System.Boolean System.UriBuilder::_changed bool ____changed_0; // System.String System.UriBuilder::_fragment String_t* ____fragment_1; // System.String System.UriBuilder::_host String_t* ____host_2; // System.String System.UriBuilder::_password String_t* ____password_3; // System.String System.UriBuilder::_path String_t* ____path_4; // System.Int32 System.UriBuilder::_port int32_t ____port_5; // System.String System.UriBuilder::_query String_t* ____query_6; // System.String System.UriBuilder::_scheme String_t* ____scheme_7; // System.String System.UriBuilder::_schemeDelimiter String_t* ____schemeDelimiter_8; // System.Uri System.UriBuilder::_uri Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ____uri_9; // System.String System.UriBuilder::_username String_t* ____username_10; public: inline static int32_t get_offset_of__changed_0() { return static_cast(offsetof(UriBuilder_t6FF22E0E019C73564385054BE4AF98E6C5EE0F42, ____changed_0)); } inline bool get__changed_0() const { return ____changed_0; } inline bool* get_address_of__changed_0() { return &____changed_0; } inline void set__changed_0(bool value) { ____changed_0 = value; } inline static int32_t get_offset_of__fragment_1() { return static_cast(offsetof(UriBuilder_t6FF22E0E019C73564385054BE4AF98E6C5EE0F42, ____fragment_1)); } inline String_t* get__fragment_1() const { return ____fragment_1; } inline String_t** get_address_of__fragment_1() { return &____fragment_1; } inline void set__fragment_1(String_t* value) { ____fragment_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____fragment_1), (void*)value); } inline static int32_t get_offset_of__host_2() { return static_cast(offsetof(UriBuilder_t6FF22E0E019C73564385054BE4AF98E6C5EE0F42, ____host_2)); } inline String_t* get__host_2() const { return ____host_2; } inline String_t** get_address_of__host_2() { return &____host_2; } inline void set__host_2(String_t* value) { ____host_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____host_2), (void*)value); } inline static int32_t get_offset_of__password_3() { return static_cast(offsetof(UriBuilder_t6FF22E0E019C73564385054BE4AF98E6C5EE0F42, ____password_3)); } inline String_t* get__password_3() const { return ____password_3; } inline String_t** get_address_of__password_3() { return &____password_3; } inline void set__password_3(String_t* value) { ____password_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____password_3), (void*)value); } inline static int32_t get_offset_of__path_4() { return static_cast(offsetof(UriBuilder_t6FF22E0E019C73564385054BE4AF98E6C5EE0F42, ____path_4)); } inline String_t* get__path_4() const { return ____path_4; } inline String_t** get_address_of__path_4() { return &____path_4; } inline void set__path_4(String_t* value) { ____path_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____path_4), (void*)value); } inline static int32_t get_offset_of__port_5() { return static_cast(offsetof(UriBuilder_t6FF22E0E019C73564385054BE4AF98E6C5EE0F42, ____port_5)); } inline int32_t get__port_5() const { return ____port_5; } inline int32_t* get_address_of__port_5() { return &____port_5; } inline void set__port_5(int32_t value) { ____port_5 = value; } inline static int32_t get_offset_of__query_6() { return static_cast(offsetof(UriBuilder_t6FF22E0E019C73564385054BE4AF98E6C5EE0F42, ____query_6)); } inline String_t* get__query_6() const { return ____query_6; } inline String_t** get_address_of__query_6() { return &____query_6; } inline void set__query_6(String_t* value) { ____query_6 = value; Il2CppCodeGenWriteBarrier((void**)(&____query_6), (void*)value); } inline static int32_t get_offset_of__scheme_7() { return static_cast(offsetof(UriBuilder_t6FF22E0E019C73564385054BE4AF98E6C5EE0F42, ____scheme_7)); } inline String_t* get__scheme_7() const { return ____scheme_7; } inline String_t** get_address_of__scheme_7() { return &____scheme_7; } inline void set__scheme_7(String_t* value) { ____scheme_7 = value; Il2CppCodeGenWriteBarrier((void**)(&____scheme_7), (void*)value); } inline static int32_t get_offset_of__schemeDelimiter_8() { return static_cast(offsetof(UriBuilder_t6FF22E0E019C73564385054BE4AF98E6C5EE0F42, ____schemeDelimiter_8)); } inline String_t* get__schemeDelimiter_8() const { return ____schemeDelimiter_8; } inline String_t** get_address_of__schemeDelimiter_8() { return &____schemeDelimiter_8; } inline void set__schemeDelimiter_8(String_t* value) { ____schemeDelimiter_8 = value; Il2CppCodeGenWriteBarrier((void**)(&____schemeDelimiter_8), (void*)value); } inline static int32_t get_offset_of__uri_9() { return static_cast(offsetof(UriBuilder_t6FF22E0E019C73564385054BE4AF98E6C5EE0F42, ____uri_9)); } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * get__uri_9() const { return ____uri_9; } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 ** get_address_of__uri_9() { return &____uri_9; } inline void set__uri_9(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * value) { ____uri_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____uri_9), (void*)value); } inline static int32_t get_offset_of__username_10() { return static_cast(offsetof(UriBuilder_t6FF22E0E019C73564385054BE4AF98E6C5EE0F42, ____username_10)); } inline String_t* get__username_10() const { return ____username_10; } inline String_t** get_address_of__username_10() { return &____username_10; } inline void set__username_10(String_t* value) { ____username_10 = value; Il2CppCodeGenWriteBarrier((void**)(&____username_10), (void*)value); } }; // BestHTTP.Caching.UriComparer struct UriComparer_t06192E3DDBFFAEB5F378C881695DF101DDD71C49 : public RuntimeObject { public: public: }; // System.ValueType struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 : public RuntimeObject { public: public: }; // Native definition for P/Invoke marshalling of System.ValueType struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_pinvoke { }; // Native definition for COM marshalling of System.ValueType struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_com { }; // System.Security.Cryptography.X509Certificates.X509Certificate struct X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553 : public RuntimeObject { public: // System.Security.Cryptography.X509Certificates.X509CertificateImpl System.Security.Cryptography.X509Certificates.X509Certificate::impl X509CertificateImpl_t921DFC48C47654AE30F0DABDF84567C95C0B1219 * ___impl_0; // System.Boolean System.Security.Cryptography.X509Certificates.X509Certificate::hideDates bool ___hideDates_1; // System.String System.Security.Cryptography.X509Certificates.X509Certificate::issuer_name String_t* ___issuer_name_2; // System.String System.Security.Cryptography.X509Certificates.X509Certificate::subject_name String_t* ___subject_name_3; public: inline static int32_t get_offset_of_impl_0() { return static_cast(offsetof(X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553, ___impl_0)); } inline X509CertificateImpl_t921DFC48C47654AE30F0DABDF84567C95C0B1219 * get_impl_0() const { return ___impl_0; } inline X509CertificateImpl_t921DFC48C47654AE30F0DABDF84567C95C0B1219 ** get_address_of_impl_0() { return &___impl_0; } inline void set_impl_0(X509CertificateImpl_t921DFC48C47654AE30F0DABDF84567C95C0B1219 * value) { ___impl_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___impl_0), (void*)value); } inline static int32_t get_offset_of_hideDates_1() { return static_cast(offsetof(X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553, ___hideDates_1)); } inline bool get_hideDates_1() const { return ___hideDates_1; } inline bool* get_address_of_hideDates_1() { return &___hideDates_1; } inline void set_hideDates_1(bool value) { ___hideDates_1 = value; } inline static int32_t get_offset_of_issuer_name_2() { return static_cast(offsetof(X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553, ___issuer_name_2)); } inline String_t* get_issuer_name_2() const { return ___issuer_name_2; } inline String_t** get_address_of_issuer_name_2() { return &___issuer_name_2; } inline void set_issuer_name_2(String_t* value) { ___issuer_name_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___issuer_name_2), (void*)value); } inline static int32_t get_offset_of_subject_name_3() { return static_cast(offsetof(X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553, ___subject_name_3)); } inline String_t* get_subject_name_3() const { return ___subject_name_3; } inline String_t** get_address_of_subject_name_3() { return &___subject_name_3; } inline void set_subject_name_3(String_t* value) { ___subject_name_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___subject_name_3), (void*)value); } }; // System.Security.Cryptography.X509Certificates.X509Chain struct X509Chain_t2167363ADB11F31A4A13E77EB73BEEE29381AF37 : public RuntimeObject { public: // System.Security.Cryptography.X509Certificates.X509ChainImpl System.Security.Cryptography.X509Certificates.X509Chain::impl X509ChainImpl_tAA54C8F65F2922D9BAB911D37EFFCD7A95A92AEE * ___impl_0; public: inline static int32_t get_offset_of_impl_0() { return static_cast(offsetof(X509Chain_t2167363ADB11F31A4A13E77EB73BEEE29381AF37, ___impl_0)); } inline X509ChainImpl_tAA54C8F65F2922D9BAB911D37EFFCD7A95A92AEE * get_impl_0() const { return ___impl_0; } inline X509ChainImpl_tAA54C8F65F2922D9BAB911D37EFFCD7A95A92AEE ** get_address_of_impl_0() { return &___impl_0; } inline void set_impl_0(X509ChainImpl_tAA54C8F65F2922D9BAB911D37EFFCD7A95A92AEE * value) { ___impl_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___impl_0), (void*)value); } }; // UnityEngine.YieldInstruction struct YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF : public RuntimeObject { public: public: }; // Native definition for P/Invoke marshalling of UnityEngine.YieldInstruction struct YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF_marshaled_pinvoke { }; // Native definition for COM marshalling of UnityEngine.YieldInstruction struct YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF_marshaled_com { }; // HRB_Bluetooth/<>c__DisplayClass25_0 struct U3CU3Ec__DisplayClass25_0_t64D8C395B552D60CA41D39FD659B3676B96697B7 : public RuntimeObject { public: // System.Int32 HRB_Bluetooth/<>c__DisplayClass25_0::scanCount int32_t ___scanCount_0; // HRB_Bluetooth HRB_Bluetooth/<>c__DisplayClass25_0::<>4__this HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D * ___U3CU3E4__this_1; public: inline static int32_t get_offset_of_scanCount_0() { return static_cast(offsetof(U3CU3Ec__DisplayClass25_0_t64D8C395B552D60CA41D39FD659B3676B96697B7, ___scanCount_0)); } inline int32_t get_scanCount_0() const { return ___scanCount_0; } inline int32_t* get_address_of_scanCount_0() { return &___scanCount_0; } inline void set_scanCount_0(int32_t value) { ___scanCount_0 = value; } inline static int32_t get_offset_of_U3CU3E4__this_1() { return static_cast(offsetof(U3CU3Ec__DisplayClass25_0_t64D8C395B552D60CA41D39FD659B3676B96697B7, ___U3CU3E4__this_1)); } inline HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D * get_U3CU3E4__this_1() const { return ___U3CU3E4__this_1; } inline HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D ** get_address_of_U3CU3E4__this_1() { return &___U3CU3E4__this_1; } inline void set_U3CU3E4__this_1(HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D * value) { ___U3CU3E4__this_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_1), (void*)value); } }; // HRB_Controller/d__0 struct U3CgetUserInfoU3Ed__0_tBD35BE495BE4163DEDADF5A235B0855C5F764FDD : public RuntimeObject { public: // System.Int32 HRB_Controller/d__0::<>1__state int32_t ___U3CU3E1__state_0; // System.Object HRB_Controller/d__0::<>2__current RuntimeObject * ___U3CU3E2__current_1; // System.Action`1 HRB_Controller/d__0::callback Action_1_t41459F578D5FCF151500CBC8CF9276BDC6C984FE * ___callback_2; // UnityEngine.Networking.UnityWebRequest HRB_Controller/d__0::5__2 UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * ___U3CrequestU3E5__2_3; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast(offsetof(U3CgetUserInfoU3Ed__0_tBD35BE495BE4163DEDADF5A235B0855C5F764FDD, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast(offsetof(U3CgetUserInfoU3Ed__0_tBD35BE495BE4163DEDADF5A235B0855C5F764FDD, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_callback_2() { return static_cast(offsetof(U3CgetUserInfoU3Ed__0_tBD35BE495BE4163DEDADF5A235B0855C5F764FDD, ___callback_2)); } inline Action_1_t41459F578D5FCF151500CBC8CF9276BDC6C984FE * get_callback_2() const { return ___callback_2; } inline Action_1_t41459F578D5FCF151500CBC8CF9276BDC6C984FE ** get_address_of_callback_2() { return &___callback_2; } inline void set_callback_2(Action_1_t41459F578D5FCF151500CBC8CF9276BDC6C984FE * value) { ___callback_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___callback_2), (void*)value); } inline static int32_t get_offset_of_U3CrequestU3E5__2_3() { return static_cast(offsetof(U3CgetUserInfoU3Ed__0_tBD35BE495BE4163DEDADF5A235B0855C5F764FDD, ___U3CrequestU3E5__2_3)); } inline UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * get_U3CrequestU3E5__2_3() const { return ___U3CrequestU3E5__2_3; } inline UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E ** get_address_of_U3CrequestU3E5__2_3() { return &___U3CrequestU3E5__2_3; } inline void set_U3CrequestU3E5__2_3(UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * value) { ___U3CrequestU3E5__2_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CrequestU3E5__2_3), (void*)value); } }; // HRB_Controller/d__1 struct U3CsaveUserInfoU3Ed__1_t33EC474A0E07837222472BE5DE956D54E775BEE7 : public RuntimeObject { public: // System.Int32 HRB_Controller/d__1::<>1__state int32_t ___U3CU3E1__state_0; // System.Object HRB_Controller/d__1::<>2__current RuntimeObject * ___U3CU3E2__current_1; // HRB_UserInfo HRB_Controller/d__1::userInfo HRB_UserInfo_t33A1D91CD880DFDBEF533505A82350E3D3C8B6A9 * ___userInfo_2; // System.Action`1 HRB_Controller/d__1::callback Action_1_t41459F578D5FCF151500CBC8CF9276BDC6C984FE * ___callback_3; // UnityEngine.Networking.UnityWebRequest HRB_Controller/d__1::5__2 UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * ___U3CrequestU3E5__2_4; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast(offsetof(U3CsaveUserInfoU3Ed__1_t33EC474A0E07837222472BE5DE956D54E775BEE7, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast(offsetof(U3CsaveUserInfoU3Ed__1_t33EC474A0E07837222472BE5DE956D54E775BEE7, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_userInfo_2() { return static_cast(offsetof(U3CsaveUserInfoU3Ed__1_t33EC474A0E07837222472BE5DE956D54E775BEE7, ___userInfo_2)); } inline HRB_UserInfo_t33A1D91CD880DFDBEF533505A82350E3D3C8B6A9 * get_userInfo_2() const { return ___userInfo_2; } inline HRB_UserInfo_t33A1D91CD880DFDBEF533505A82350E3D3C8B6A9 ** get_address_of_userInfo_2() { return &___userInfo_2; } inline void set_userInfo_2(HRB_UserInfo_t33A1D91CD880DFDBEF533505A82350E3D3C8B6A9 * value) { ___userInfo_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___userInfo_2), (void*)value); } inline static int32_t get_offset_of_callback_3() { return static_cast(offsetof(U3CsaveUserInfoU3Ed__1_t33EC474A0E07837222472BE5DE956D54E775BEE7, ___callback_3)); } inline Action_1_t41459F578D5FCF151500CBC8CF9276BDC6C984FE * get_callback_3() const { return ___callback_3; } inline Action_1_t41459F578D5FCF151500CBC8CF9276BDC6C984FE ** get_address_of_callback_3() { return &___callback_3; } inline void set_callback_3(Action_1_t41459F578D5FCF151500CBC8CF9276BDC6C984FE * value) { ___callback_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___callback_3), (void*)value); } inline static int32_t get_offset_of_U3CrequestU3E5__2_4() { return static_cast(offsetof(U3CsaveUserInfoU3Ed__1_t33EC474A0E07837222472BE5DE956D54E775BEE7, ___U3CrequestU3E5__2_4)); } inline UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * get_U3CrequestU3E5__2_4() const { return ___U3CrequestU3E5__2_4; } inline UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E ** get_address_of_U3CrequestU3E5__2_4() { return &___U3CrequestU3E5__2_4; } inline void set_U3CrequestU3E5__2_4(UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * value) { ___U3CrequestU3E5__2_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CrequestU3E5__2_4), (void*)value); } }; // HRB_DegreaseView/<>c struct U3CU3Ec_t5DC7D2574DC64DC3DA01783058EC97AA3F171420 : public RuntimeObject { public: public: }; struct U3CU3Ec_t5DC7D2574DC64DC3DA01783058EC97AA3F171420_StaticFields { public: // HRB_DegreaseView/<>c HRB_DegreaseView/<>c::<>9 U3CU3Ec_t5DC7D2574DC64DC3DA01783058EC97AA3F171420 * ___U3CU3E9_0; // System.Func`2 HRB_DegreaseView/<>c::<>9__4_0 Func_2_t50F598941CFDF02619DC5D52FFDBC329473C5F7B * ___U3CU3E9__4_0_1; public: inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast(offsetof(U3CU3Ec_t5DC7D2574DC64DC3DA01783058EC97AA3F171420_StaticFields, ___U3CU3E9_0)); } inline U3CU3Ec_t5DC7D2574DC64DC3DA01783058EC97AA3F171420 * get_U3CU3E9_0() const { return ___U3CU3E9_0; } inline U3CU3Ec_t5DC7D2574DC64DC3DA01783058EC97AA3F171420 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; } inline void set_U3CU3E9_0(U3CU3Ec_t5DC7D2574DC64DC3DA01783058EC97AA3F171420 * value) { ___U3CU3E9_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__4_0_1() { return static_cast(offsetof(U3CU3Ec_t5DC7D2574DC64DC3DA01783058EC97AA3F171420_StaticFields, ___U3CU3E9__4_0_1)); } inline Func_2_t50F598941CFDF02619DC5D52FFDBC329473C5F7B * get_U3CU3E9__4_0_1() const { return ___U3CU3E9__4_0_1; } inline Func_2_t50F598941CFDF02619DC5D52FFDBC329473C5F7B ** get_address_of_U3CU3E9__4_0_1() { return &___U3CU3E9__4_0_1; } inline void set_U3CU3E9__4_0_1(Func_2_t50F598941CFDF02619DC5D52FFDBC329473C5F7B * value) { ___U3CU3E9__4_0_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__4_0_1), (void*)value); } }; // HRB_HomeView/<>c struct U3CU3Ec_tC9CA1F190489ACBCFFA6F74F6E2FD42F7755CA25 : public RuntimeObject { public: public: }; struct U3CU3Ec_tC9CA1F190489ACBCFFA6F74F6E2FD42F7755CA25_StaticFields { public: // HRB_HomeView/<>c HRB_HomeView/<>c::<>9 U3CU3Ec_tC9CA1F190489ACBCFFA6F74F6E2FD42F7755CA25 * ___U3CU3E9_0; // UnityEngine.Events.UnityAction HRB_HomeView/<>c::<>9__2_0 UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * ___U3CU3E9__2_0_1; // UnityEngine.Events.UnityAction HRB_HomeView/<>c::<>9__2_1 UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * ___U3CU3E9__2_1_2; // UnityEngine.Events.UnityAction HRB_HomeView/<>c::<>9__2_2 UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * ___U3CU3E9__2_2_3; // DG.Tweening.TweenCallback HRB_HomeView/<>c::<>9__2_5 TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB * ___U3CU3E9__2_5_4; // System.Action HRB_HomeView/<>c::<>9__2_4 Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___U3CU3E9__2_4_5; // System.Action`1 HRB_HomeView/<>c::<>9__4_2 Action_1_t0F808BECFC00C2BA783741BFBB1E452E1850A394 * ___U3CU3E9__4_2_6; // System.Action HRB_HomeView/<>c::<>9__4_1 Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___U3CU3E9__4_1_7; // DG.Tweening.TweenCallback HRB_HomeView/<>c::<>9__5_0 TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB * ___U3CU3E9__5_0_8; public: inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast(offsetof(U3CU3Ec_tC9CA1F190489ACBCFFA6F74F6E2FD42F7755CA25_StaticFields, ___U3CU3E9_0)); } inline U3CU3Ec_tC9CA1F190489ACBCFFA6F74F6E2FD42F7755CA25 * get_U3CU3E9_0() const { return ___U3CU3E9_0; } inline U3CU3Ec_tC9CA1F190489ACBCFFA6F74F6E2FD42F7755CA25 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; } inline void set_U3CU3E9_0(U3CU3Ec_tC9CA1F190489ACBCFFA6F74F6E2FD42F7755CA25 * value) { ___U3CU3E9_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__2_0_1() { return static_cast(offsetof(U3CU3Ec_tC9CA1F190489ACBCFFA6F74F6E2FD42F7755CA25_StaticFields, ___U3CU3E9__2_0_1)); } inline UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * get_U3CU3E9__2_0_1() const { return ___U3CU3E9__2_0_1; } inline UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 ** get_address_of_U3CU3E9__2_0_1() { return &___U3CU3E9__2_0_1; } inline void set_U3CU3E9__2_0_1(UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * value) { ___U3CU3E9__2_0_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__2_0_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__2_1_2() { return static_cast(offsetof(U3CU3Ec_tC9CA1F190489ACBCFFA6F74F6E2FD42F7755CA25_StaticFields, ___U3CU3E9__2_1_2)); } inline UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * get_U3CU3E9__2_1_2() const { return ___U3CU3E9__2_1_2; } inline UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 ** get_address_of_U3CU3E9__2_1_2() { return &___U3CU3E9__2_1_2; } inline void set_U3CU3E9__2_1_2(UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * value) { ___U3CU3E9__2_1_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__2_1_2), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__2_2_3() { return static_cast(offsetof(U3CU3Ec_tC9CA1F190489ACBCFFA6F74F6E2FD42F7755CA25_StaticFields, ___U3CU3E9__2_2_3)); } inline UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * get_U3CU3E9__2_2_3() const { return ___U3CU3E9__2_2_3; } inline UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 ** get_address_of_U3CU3E9__2_2_3() { return &___U3CU3E9__2_2_3; } inline void set_U3CU3E9__2_2_3(UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * value) { ___U3CU3E9__2_2_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__2_2_3), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__2_5_4() { return static_cast(offsetof(U3CU3Ec_tC9CA1F190489ACBCFFA6F74F6E2FD42F7755CA25_StaticFields, ___U3CU3E9__2_5_4)); } inline TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB * get_U3CU3E9__2_5_4() const { return ___U3CU3E9__2_5_4; } inline TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB ** get_address_of_U3CU3E9__2_5_4() { return &___U3CU3E9__2_5_4; } inline void set_U3CU3E9__2_5_4(TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB * value) { ___U3CU3E9__2_5_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__2_5_4), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__2_4_5() { return static_cast(offsetof(U3CU3Ec_tC9CA1F190489ACBCFFA6F74F6E2FD42F7755CA25_StaticFields, ___U3CU3E9__2_4_5)); } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * get_U3CU3E9__2_4_5() const { return ___U3CU3E9__2_4_5; } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 ** get_address_of_U3CU3E9__2_4_5() { return &___U3CU3E9__2_4_5; } inline void set_U3CU3E9__2_4_5(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * value) { ___U3CU3E9__2_4_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__2_4_5), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__4_2_6() { return static_cast(offsetof(U3CU3Ec_tC9CA1F190489ACBCFFA6F74F6E2FD42F7755CA25_StaticFields, ___U3CU3E9__4_2_6)); } inline Action_1_t0F808BECFC00C2BA783741BFBB1E452E1850A394 * get_U3CU3E9__4_2_6() const { return ___U3CU3E9__4_2_6; } inline Action_1_t0F808BECFC00C2BA783741BFBB1E452E1850A394 ** get_address_of_U3CU3E9__4_2_6() { return &___U3CU3E9__4_2_6; } inline void set_U3CU3E9__4_2_6(Action_1_t0F808BECFC00C2BA783741BFBB1E452E1850A394 * value) { ___U3CU3E9__4_2_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__4_2_6), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__4_1_7() { return static_cast(offsetof(U3CU3Ec_tC9CA1F190489ACBCFFA6F74F6E2FD42F7755CA25_StaticFields, ___U3CU3E9__4_1_7)); } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * get_U3CU3E9__4_1_7() const { return ___U3CU3E9__4_1_7; } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 ** get_address_of_U3CU3E9__4_1_7() { return &___U3CU3E9__4_1_7; } inline void set_U3CU3E9__4_1_7(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * value) { ___U3CU3E9__4_1_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__4_1_7), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__5_0_8() { return static_cast(offsetof(U3CU3Ec_tC9CA1F190489ACBCFFA6F74F6E2FD42F7755CA25_StaticFields, ___U3CU3E9__5_0_8)); } inline TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB * get_U3CU3E9__5_0_8() const { return ___U3CU3E9__5_0_8; } inline TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB ** get_address_of_U3CU3E9__5_0_8() { return &___U3CU3E9__5_0_8; } inline void set_U3CU3E9__5_0_8(TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB * value) { ___U3CU3E9__5_0_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__5_0_8), (void*)value); } }; // HRB_HomeView/<>c__DisplayClass11_0 struct U3CU3Ec__DisplayClass11_0_tCA0E8647AB76DCC40237EF0A7E428BBB40B30192 : public RuntimeObject { public: // UnityEngine.UI.Button HRB_HomeView/<>c__DisplayClass11_0::item Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * ___item_0; // HRB_HomeView HRB_HomeView/<>c__DisplayClass11_0::<>4__this HRB_HomeView_t287CA33A5A196A46E071D4C02FE00DF5C3C4C9F0 * ___U3CU3E4__this_1; public: inline static int32_t get_offset_of_item_0() { return static_cast(offsetof(U3CU3Ec__DisplayClass11_0_tCA0E8647AB76DCC40237EF0A7E428BBB40B30192, ___item_0)); } inline Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * get_item_0() const { return ___item_0; } inline Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D ** get_address_of_item_0() { return &___item_0; } inline void set_item_0(Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * value) { ___item_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___item_0), (void*)value); } inline static int32_t get_offset_of_U3CU3E4__this_1() { return static_cast(offsetof(U3CU3Ec__DisplayClass11_0_tCA0E8647AB76DCC40237EF0A7E428BBB40B30192, ___U3CU3E4__this_1)); } inline HRB_HomeView_t287CA33A5A196A46E071D4C02FE00DF5C3C4C9F0 * get_U3CU3E4__this_1() const { return ___U3CU3E4__this_1; } inline HRB_HomeView_t287CA33A5A196A46E071D4C02FE00DF5C3C4C9F0 ** get_address_of_U3CU3E4__this_1() { return &___U3CU3E4__this_1; } inline void set_U3CU3E4__this_1(HRB_HomeView_t287CA33A5A196A46E071D4C02FE00DF5C3C4C9F0 * value) { ___U3CU3E4__this_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_1), (void*)value); } }; // HRB_LoginView/<>c struct U3CU3Ec_t4821039A08A297D8BE843F00EADC90D4F881AA8C : public RuntimeObject { public: public: }; struct U3CU3Ec_t4821039A08A297D8BE843F00EADC90D4F881AA8C_StaticFields { public: // HRB_LoginView/<>c HRB_LoginView/<>c::<>9 U3CU3Ec_t4821039A08A297D8BE843F00EADC90D4F881AA8C * ___U3CU3E9_0; // System.Action`1 HRB_LoginView/<>c::<>9__13_0 Action_1_t41459F578D5FCF151500CBC8CF9276BDC6C984FE * ___U3CU3E9__13_0_1; public: inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast(offsetof(U3CU3Ec_t4821039A08A297D8BE843F00EADC90D4F881AA8C_StaticFields, ___U3CU3E9_0)); } inline U3CU3Ec_t4821039A08A297D8BE843F00EADC90D4F881AA8C * get_U3CU3E9_0() const { return ___U3CU3E9_0; } inline U3CU3Ec_t4821039A08A297D8BE843F00EADC90D4F881AA8C ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; } inline void set_U3CU3E9_0(U3CU3Ec_t4821039A08A297D8BE843F00EADC90D4F881AA8C * value) { ___U3CU3E9_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__13_0_1() { return static_cast(offsetof(U3CU3Ec_t4821039A08A297D8BE843F00EADC90D4F881AA8C_StaticFields, ___U3CU3E9__13_0_1)); } inline Action_1_t41459F578D5FCF151500CBC8CF9276BDC6C984FE * get_U3CU3E9__13_0_1() const { return ___U3CU3E9__13_0_1; } inline Action_1_t41459F578D5FCF151500CBC8CF9276BDC6C984FE ** get_address_of_U3CU3E9__13_0_1() { return &___U3CU3E9__13_0_1; } inline void set_U3CU3E9__13_0_1(Action_1_t41459F578D5FCF151500CBC8CF9276BDC6C984FE * value) { ___U3CU3E9__13_0_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__13_0_1), (void*)value); } }; // HRB_LoginView/<>c__DisplayClass9_0 struct U3CU3Ec__DisplayClass9_0_t47B31812D03B51989C4B01F90B8B9946E74041BB : public RuntimeObject { public: // UnityEngine.UI.InputField HRB_LoginView/<>c__DisplayClass9_0::inputField InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 * ___inputField_0; public: inline static int32_t get_offset_of_inputField_0() { return static_cast(offsetof(U3CU3Ec__DisplayClass9_0_t47B31812D03B51989C4B01F90B8B9946E74041BB, ___inputField_0)); } inline InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 * get_inputField_0() const { return ___inputField_0; } inline InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 ** get_address_of_inputField_0() { return &___inputField_0; } inline void set_inputField_0(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 * value) { ___inputField_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___inputField_0), (void*)value); } }; // HRB_MeView/<>c__DisplayClass12_0 struct U3CU3Ec__DisplayClass12_0_tD686DEAD8544F1FF6ED0EC5C8AFE469538015B2F : public RuntimeObject { public: // HRB_MeView HRB_MeView/<>c__DisplayClass12_0::<>4__this HRB_MeView_t6E8399EB5C5A369A0E043C949BB4F953DF0A9C76 * ___U3CU3E4__this_0; // System.Boolean HRB_MeView/<>c__DisplayClass12_0::useThrottler bool ___useThrottler_1; public: inline static int32_t get_offset_of_U3CU3E4__this_0() { return static_cast(offsetof(U3CU3Ec__DisplayClass12_0_tD686DEAD8544F1FF6ED0EC5C8AFE469538015B2F, ___U3CU3E4__this_0)); } inline HRB_MeView_t6E8399EB5C5A369A0E043C949BB4F953DF0A9C76 * get_U3CU3E4__this_0() const { return ___U3CU3E4__this_0; } inline HRB_MeView_t6E8399EB5C5A369A0E043C949BB4F953DF0A9C76 ** get_address_of_U3CU3E4__this_0() { return &___U3CU3E4__this_0; } inline void set_U3CU3E4__this_0(HRB_MeView_t6E8399EB5C5A369A0E043C949BB4F953DF0A9C76 * value) { ___U3CU3E4__this_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_0), (void*)value); } inline static int32_t get_offset_of_useThrottler_1() { return static_cast(offsetof(U3CU3Ec__DisplayClass12_0_tD686DEAD8544F1FF6ED0EC5C8AFE469538015B2F, ___useThrottler_1)); } inline bool get_useThrottler_1() const { return ___useThrottler_1; } inline bool* get_address_of_useThrottler_1() { return &___useThrottler_1; } inline void set_useThrottler_1(bool value) { ___useThrottler_1 = value; } }; // HRB_MeView/<>c__DisplayClass24_0 struct U3CU3Ec__DisplayClass24_0_t01B1FD0D637D7AE431CBAF412D97D15EE230D59B : public RuntimeObject { public: // HRB_MeView HRB_MeView/<>c__DisplayClass24_0::<>4__this HRB_MeView_t6E8399EB5C5A369A0E043C949BB4F953DF0A9C76 * ___U3CU3E4__this_0; // UnityEngine.UI.GridLayoutGroup HRB_MeView/<>c__DisplayClass24_0::gridLayoutGroup GridLayoutGroup_tE25FFEE93AF1291734B4EB8DA986D23A500E7C28 * ___gridLayoutGroup_1; public: inline static int32_t get_offset_of_U3CU3E4__this_0() { return static_cast(offsetof(U3CU3Ec__DisplayClass24_0_t01B1FD0D637D7AE431CBAF412D97D15EE230D59B, ___U3CU3E4__this_0)); } inline HRB_MeView_t6E8399EB5C5A369A0E043C949BB4F953DF0A9C76 * get_U3CU3E4__this_0() const { return ___U3CU3E4__this_0; } inline HRB_MeView_t6E8399EB5C5A369A0E043C949BB4F953DF0A9C76 ** get_address_of_U3CU3E4__this_0() { return &___U3CU3E4__this_0; } inline void set_U3CU3E4__this_0(HRB_MeView_t6E8399EB5C5A369A0E043C949BB4F953DF0A9C76 * value) { ___U3CU3E4__this_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_0), (void*)value); } inline static int32_t get_offset_of_gridLayoutGroup_1() { return static_cast(offsetof(U3CU3Ec__DisplayClass24_0_t01B1FD0D637D7AE431CBAF412D97D15EE230D59B, ___gridLayoutGroup_1)); } inline GridLayoutGroup_tE25FFEE93AF1291734B4EB8DA986D23A500E7C28 * get_gridLayoutGroup_1() const { return ___gridLayoutGroup_1; } inline GridLayoutGroup_tE25FFEE93AF1291734B4EB8DA986D23A500E7C28 ** get_address_of_gridLayoutGroup_1() { return &___gridLayoutGroup_1; } inline void set_gridLayoutGroup_1(GridLayoutGroup_tE25FFEE93AF1291734B4EB8DA986D23A500E7C28 * value) { ___gridLayoutGroup_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___gridLayoutGroup_1), (void*)value); } }; // HRB_MeView/<>c__DisplayClass24_1 struct U3CU3Ec__DisplayClass24_1_t767CEE21DB2453E00C5135DDD61D958CCD4DA0AC : public RuntimeObject { public: // System.Int32 HRB_MeView/<>c__DisplayClass24_1::aid int32_t ___aid_0; // HRB_MeView/<>c__DisplayClass24_0 HRB_MeView/<>c__DisplayClass24_1::CS$<>8__locals1 U3CU3Ec__DisplayClass24_0_t01B1FD0D637D7AE431CBAF412D97D15EE230D59B * ___CSU24U3CU3E8__locals1_1; public: inline static int32_t get_offset_of_aid_0() { return static_cast(offsetof(U3CU3Ec__DisplayClass24_1_t767CEE21DB2453E00C5135DDD61D958CCD4DA0AC, ___aid_0)); } inline int32_t get_aid_0() const { return ___aid_0; } inline int32_t* get_address_of_aid_0() { return &___aid_0; } inline void set_aid_0(int32_t value) { ___aid_0 = value; } inline static int32_t get_offset_of_CSU24U3CU3E8__locals1_1() { return static_cast(offsetof(U3CU3Ec__DisplayClass24_1_t767CEE21DB2453E00C5135DDD61D958CCD4DA0AC, ___CSU24U3CU3E8__locals1_1)); } inline U3CU3Ec__DisplayClass24_0_t01B1FD0D637D7AE431CBAF412D97D15EE230D59B * get_CSU24U3CU3E8__locals1_1() const { return ___CSU24U3CU3E8__locals1_1; } inline U3CU3Ec__DisplayClass24_0_t01B1FD0D637D7AE431CBAF412D97D15EE230D59B ** get_address_of_CSU24U3CU3E8__locals1_1() { return &___CSU24U3CU3E8__locals1_1; } inline void set_CSU24U3CU3E8__locals1_1(U3CU3Ec__DisplayClass24_0_t01B1FD0D637D7AE431CBAF412D97D15EE230D59B * value) { ___CSU24U3CU3E8__locals1_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___CSU24U3CU3E8__locals1_1), (void*)value); } }; // HRB_MeView/MeUserInfo struct MeUserInfo_t908ED54BB1E8C15D78C04BA32BB12B06CF0DC94E : public RuntimeObject { public: // HRB_MeView HRB_MeView/MeUserInfo::m_context HRB_MeView_t6E8399EB5C5A369A0E043C949BB4F953DF0A9C76 * ___m_context_0; // System.String HRB_MeView/MeUserInfo::nickname String_t* ___nickname_1; // System.Int32 HRB_MeView/MeUserInfo::gender int32_t ___gender_2; // System.String HRB_MeView/MeUserInfo::birthday String_t* ___birthday_3; // System.String HRB_MeView/MeUserInfo::country String_t* ___country_4; // System.String HRB_MeView/MeUserInfo::state String_t* ___state_5; // System.String HRB_MeView/MeUserInfo::city String_t* ___city_6; // ModalView HRB_MeView/MeUserInfo::modalViewForSave ModalView_t9B83CB8D1F9EB77ADD6979D124AEB4E25CB586FA * ___modalViewForSave_7; public: inline static int32_t get_offset_of_m_context_0() { return static_cast(offsetof(MeUserInfo_t908ED54BB1E8C15D78C04BA32BB12B06CF0DC94E, ___m_context_0)); } inline HRB_MeView_t6E8399EB5C5A369A0E043C949BB4F953DF0A9C76 * get_m_context_0() const { return ___m_context_0; } inline HRB_MeView_t6E8399EB5C5A369A0E043C949BB4F953DF0A9C76 ** get_address_of_m_context_0() { return &___m_context_0; } inline void set_m_context_0(HRB_MeView_t6E8399EB5C5A369A0E043C949BB4F953DF0A9C76 * value) { ___m_context_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_context_0), (void*)value); } inline static int32_t get_offset_of_nickname_1() { return static_cast(offsetof(MeUserInfo_t908ED54BB1E8C15D78C04BA32BB12B06CF0DC94E, ___nickname_1)); } inline String_t* get_nickname_1() const { return ___nickname_1; } inline String_t** get_address_of_nickname_1() { return &___nickname_1; } inline void set_nickname_1(String_t* value) { ___nickname_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___nickname_1), (void*)value); } inline static int32_t get_offset_of_gender_2() { return static_cast(offsetof(MeUserInfo_t908ED54BB1E8C15D78C04BA32BB12B06CF0DC94E, ___gender_2)); } inline int32_t get_gender_2() const { return ___gender_2; } inline int32_t* get_address_of_gender_2() { return &___gender_2; } inline void set_gender_2(int32_t value) { ___gender_2 = value; } inline static int32_t get_offset_of_birthday_3() { return static_cast(offsetof(MeUserInfo_t908ED54BB1E8C15D78C04BA32BB12B06CF0DC94E, ___birthday_3)); } inline String_t* get_birthday_3() const { return ___birthday_3; } inline String_t** get_address_of_birthday_3() { return &___birthday_3; } inline void set_birthday_3(String_t* value) { ___birthday_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___birthday_3), (void*)value); } inline static int32_t get_offset_of_country_4() { return static_cast(offsetof(MeUserInfo_t908ED54BB1E8C15D78C04BA32BB12B06CF0DC94E, ___country_4)); } inline String_t* get_country_4() const { return ___country_4; } inline String_t** get_address_of_country_4() { return &___country_4; } inline void set_country_4(String_t* value) { ___country_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___country_4), (void*)value); } inline static int32_t get_offset_of_state_5() { return static_cast(offsetof(MeUserInfo_t908ED54BB1E8C15D78C04BA32BB12B06CF0DC94E, ___state_5)); } inline String_t* get_state_5() const { return ___state_5; } inline String_t** get_address_of_state_5() { return &___state_5; } inline void set_state_5(String_t* value) { ___state_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___state_5), (void*)value); } inline static int32_t get_offset_of_city_6() { return static_cast(offsetof(MeUserInfo_t908ED54BB1E8C15D78C04BA32BB12B06CF0DC94E, ___city_6)); } inline String_t* get_city_6() const { return ___city_6; } inline String_t** get_address_of_city_6() { return &___city_6; } inline void set_city_6(String_t* value) { ___city_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___city_6), (void*)value); } inline static int32_t get_offset_of_modalViewForSave_7() { return static_cast(offsetof(MeUserInfo_t908ED54BB1E8C15D78C04BA32BB12B06CF0DC94E, ___modalViewForSave_7)); } inline ModalView_t9B83CB8D1F9EB77ADD6979D124AEB4E25CB586FA * get_modalViewForSave_7() const { return ___modalViewForSave_7; } inline ModalView_t9B83CB8D1F9EB77ADD6979D124AEB4E25CB586FA ** get_address_of_modalViewForSave_7() { return &___modalViewForSave_7; } inline void set_modalViewForSave_7(ModalView_t9B83CB8D1F9EB77ADD6979D124AEB4E25CB586FA * value) { ___modalViewForSave_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___modalViewForSave_7), (void*)value); } }; // HRB_PlanView/<>c struct U3CU3Ec_t97622A578CEC824E2AA4A6C3797EB9B24F75CD3B : public RuntimeObject { public: public: }; struct U3CU3Ec_t97622A578CEC824E2AA4A6C3797EB9B24F75CD3B_StaticFields { public: // HRB_PlanView/<>c HRB_PlanView/<>c::<>9 U3CU3Ec_t97622A578CEC824E2AA4A6C3797EB9B24F75CD3B * ___U3CU3E9_0; // UnityEngine.Events.UnityAction HRB_PlanView/<>c::<>9__2_0 UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * ___U3CU3E9__2_0_1; public: inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast(offsetof(U3CU3Ec_t97622A578CEC824E2AA4A6C3797EB9B24F75CD3B_StaticFields, ___U3CU3E9_0)); } inline U3CU3Ec_t97622A578CEC824E2AA4A6C3797EB9B24F75CD3B * get_U3CU3E9_0() const { return ___U3CU3E9_0; } inline U3CU3Ec_t97622A578CEC824E2AA4A6C3797EB9B24F75CD3B ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; } inline void set_U3CU3E9_0(U3CU3Ec_t97622A578CEC824E2AA4A6C3797EB9B24F75CD3B * value) { ___U3CU3E9_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__2_0_1() { return static_cast(offsetof(U3CU3Ec_t97622A578CEC824E2AA4A6C3797EB9B24F75CD3B_StaticFields, ___U3CU3E9__2_0_1)); } inline UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * get_U3CU3E9__2_0_1() const { return ___U3CU3E9__2_0_1; } inline UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 ** get_address_of_U3CU3E9__2_0_1() { return &___U3CU3E9__2_0_1; } inline void set_U3CU3E9__2_0_1(UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * value) { ___U3CU3E9__2_0_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__2_0_1), (void*)value); } }; // HRB_PlanView/<>c__DisplayClass14_0 struct U3CU3Ec__DisplayClass14_0_t09BB7C4820DB6D3313FE63075C68D3DA6C7DB0CC : public RuntimeObject { public: // System.Int32 HRB_PlanView/<>c__DisplayClass14_0::type int32_t ___type_0; // HRB_PlanView HRB_PlanView/<>c__DisplayClass14_0::<>4__this HRB_PlanView_t5BDCE3FB207F5302CCB99DF4865485D4F727F9D3 * ___U3CU3E4__this_1; public: inline static int32_t get_offset_of_type_0() { return static_cast(offsetof(U3CU3Ec__DisplayClass14_0_t09BB7C4820DB6D3313FE63075C68D3DA6C7DB0CC, ___type_0)); } inline int32_t get_type_0() const { return ___type_0; } inline int32_t* get_address_of_type_0() { return &___type_0; } inline void set_type_0(int32_t value) { ___type_0 = value; } inline static int32_t get_offset_of_U3CU3E4__this_1() { return static_cast(offsetof(U3CU3Ec__DisplayClass14_0_t09BB7C4820DB6D3313FE63075C68D3DA6C7DB0CC, ___U3CU3E4__this_1)); } inline HRB_PlanView_t5BDCE3FB207F5302CCB99DF4865485D4F727F9D3 * get_U3CU3E4__this_1() const { return ___U3CU3E4__this_1; } inline HRB_PlanView_t5BDCE3FB207F5302CCB99DF4865485D4F727F9D3 ** get_address_of_U3CU3E4__this_1() { return &___U3CU3E4__this_1; } inline void set_U3CU3E4__this_1(HRB_PlanView_t5BDCE3FB207F5302CCB99DF4865485D4F727F9D3 * value) { ___U3CU3E4__this_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_1), (void*)value); } }; // HRB_RegisterView/<>c struct U3CU3Ec_t5082C83EC78057089793CE3AC4CC48A75616DE21 : public RuntimeObject { public: public: }; struct U3CU3Ec_t5082C83EC78057089793CE3AC4CC48A75616DE21_StaticFields { public: // HRB_RegisterView/<>c HRB_RegisterView/<>c::<>9 U3CU3Ec_t5082C83EC78057089793CE3AC4CC48A75616DE21 * ___U3CU3E9_0; // UnityEngine.Events.UnityAction HRB_RegisterView/<>c::<>9__13_0 UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * ___U3CU3E9__13_0_1; // System.Action`1 HRB_RegisterView/<>c::<>9__23_0 Action_1_t41459F578D5FCF151500CBC8CF9276BDC6C984FE * ___U3CU3E9__23_0_2; public: inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast(offsetof(U3CU3Ec_t5082C83EC78057089793CE3AC4CC48A75616DE21_StaticFields, ___U3CU3E9_0)); } inline U3CU3Ec_t5082C83EC78057089793CE3AC4CC48A75616DE21 * get_U3CU3E9_0() const { return ___U3CU3E9_0; } inline U3CU3Ec_t5082C83EC78057089793CE3AC4CC48A75616DE21 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; } inline void set_U3CU3E9_0(U3CU3Ec_t5082C83EC78057089793CE3AC4CC48A75616DE21 * value) { ___U3CU3E9_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__13_0_1() { return static_cast(offsetof(U3CU3Ec_t5082C83EC78057089793CE3AC4CC48A75616DE21_StaticFields, ___U3CU3E9__13_0_1)); } inline UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * get_U3CU3E9__13_0_1() const { return ___U3CU3E9__13_0_1; } inline UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 ** get_address_of_U3CU3E9__13_0_1() { return &___U3CU3E9__13_0_1; } inline void set_U3CU3E9__13_0_1(UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * value) { ___U3CU3E9__13_0_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__13_0_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__23_0_2() { return static_cast(offsetof(U3CU3Ec_t5082C83EC78057089793CE3AC4CC48A75616DE21_StaticFields, ___U3CU3E9__23_0_2)); } inline Action_1_t41459F578D5FCF151500CBC8CF9276BDC6C984FE * get_U3CU3E9__23_0_2() const { return ___U3CU3E9__23_0_2; } inline Action_1_t41459F578D5FCF151500CBC8CF9276BDC6C984FE ** get_address_of_U3CU3E9__23_0_2() { return &___U3CU3E9__23_0_2; } inline void set_U3CU3E9__23_0_2(Action_1_t41459F578D5FCF151500CBC8CF9276BDC6C984FE * value) { ___U3CU3E9__23_0_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__23_0_2), (void*)value); } }; // HRB_RegisterView/<>c__DisplayClass12_0 struct U3CU3Ec__DisplayClass12_0_t4C6405DB73B24A09203B2F40BA909F3226A3A110 : public RuntimeObject { public: // AgreementPopup HRB_RegisterView/<>c__DisplayClass12_0::agreementPopup AgreementPopup_tCC38F433C4A11AEF6FBB883ACABC611A73F4B3E6 * ___agreementPopup_0; public: inline static int32_t get_offset_of_agreementPopup_0() { return static_cast(offsetof(U3CU3Ec__DisplayClass12_0_t4C6405DB73B24A09203B2F40BA909F3226A3A110, ___agreementPopup_0)); } inline AgreementPopup_tCC38F433C4A11AEF6FBB883ACABC611A73F4B3E6 * get_agreementPopup_0() const { return ___agreementPopup_0; } inline AgreementPopup_tCC38F433C4A11AEF6FBB883ACABC611A73F4B3E6 ** get_address_of_agreementPopup_0() { return &___agreementPopup_0; } inline void set_agreementPopup_0(AgreementPopup_tCC38F433C4A11AEF6FBB883ACABC611A73F4B3E6 * value) { ___agreementPopup_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___agreementPopup_0), (void*)value); } }; // HRB_RegisterView/<>c__DisplayClass14_0 struct U3CU3Ec__DisplayClass14_0_t43C7855FC73760DB1B2FC4A67D1168EC2E935372 : public RuntimeObject { public: // UnityEngine.UI.InputField HRB_RegisterView/<>c__DisplayClass14_0::inputField InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 * ___inputField_0; public: inline static int32_t get_offset_of_inputField_0() { return static_cast(offsetof(U3CU3Ec__DisplayClass14_0_t43C7855FC73760DB1B2FC4A67D1168EC2E935372, ___inputField_0)); } inline InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 * get_inputField_0() const { return ___inputField_0; } inline InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 ** get_address_of_inputField_0() { return &___inputField_0; } inline void set_inputField_0(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 * value) { ___inputField_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___inputField_0), (void*)value); } }; // HRB_UserInfo/<>c__DisplayClass21_0 struct U3CU3Ec__DisplayClass21_0_tAD8B65444910AC8D8907AF555A90618FF1A2FDBA : public RuntimeObject { public: // HRB_UserInfo HRB_UserInfo/<>c__DisplayClass21_0::<>4__this HRB_UserInfo_t33A1D91CD880DFDBEF533505A82350E3D3C8B6A9 * ___U3CU3E4__this_0; // System.Boolean HRB_UserInfo/<>c__DisplayClass21_0::showTip bool ___showTip_1; public: inline static int32_t get_offset_of_U3CU3E4__this_0() { return static_cast(offsetof(U3CU3Ec__DisplayClass21_0_tAD8B65444910AC8D8907AF555A90618FF1A2FDBA, ___U3CU3E4__this_0)); } inline HRB_UserInfo_t33A1D91CD880DFDBEF533505A82350E3D3C8B6A9 * get_U3CU3E4__this_0() const { return ___U3CU3E4__this_0; } inline HRB_UserInfo_t33A1D91CD880DFDBEF533505A82350E3D3C8B6A9 ** get_address_of_U3CU3E4__this_0() { return &___U3CU3E4__this_0; } inline void set_U3CU3E4__this_0(HRB_UserInfo_t33A1D91CD880DFDBEF533505A82350E3D3C8B6A9 * value) { ___U3CU3E4__this_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_0), (void*)value); } inline static int32_t get_offset_of_showTip_1() { return static_cast(offsetof(U3CU3Ec__DisplayClass21_0_tAD8B65444910AC8D8907AF555A90618FF1A2FDBA, ___showTip_1)); } inline bool get_showTip_1() const { return ___showTip_1; } inline bool* get_address_of_showTip_1() { return &___showTip_1; } inline void set_showTip_1(bool value) { ___showTip_1 = value; } }; // BestHTTP.Caching.HTTPCacheService/<>c struct U3CU3Ec_t55914FC9E856D6A6CF25337EA096A6B258C8CFCD : public RuntimeObject { public: public: }; struct U3CU3Ec_t55914FC9E856D6A6CF25337EA096A6B258C8CFCD_StaticFields { public: // BestHTTP.Caching.HTTPCacheService/<>c BestHTTP.Caching.HTTPCacheService/<>c::<>9 U3CU3Ec_t55914FC9E856D6A6CF25337EA096A6B258C8CFCD * ___U3CU3E9_0; // System.Predicate`1 BestHTTP.Caching.HTTPCacheService/<>c::<>9__30_0 Predicate_1_t782ED4F640A61B7ACA1DD787F7C4993C746207B3 * ___U3CU3E9__30_0_1; // System.Predicate`1 BestHTTP.Caching.HTTPCacheService/<>c::<>9__30_1 Predicate_1_t782ED4F640A61B7ACA1DD787F7C4993C746207B3 * ___U3CU3E9__30_1_2; // System.Threading.WaitCallback BestHTTP.Caching.HTTPCacheService/<>c::<>9__33_0 WaitCallback_t82C85517E973DCC6390AFB0BC3C2276F3328A319 * ___U3CU3E9__33_0_3; public: inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast(offsetof(U3CU3Ec_t55914FC9E856D6A6CF25337EA096A6B258C8CFCD_StaticFields, ___U3CU3E9_0)); } inline U3CU3Ec_t55914FC9E856D6A6CF25337EA096A6B258C8CFCD * get_U3CU3E9_0() const { return ___U3CU3E9_0; } inline U3CU3Ec_t55914FC9E856D6A6CF25337EA096A6B258C8CFCD ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; } inline void set_U3CU3E9_0(U3CU3Ec_t55914FC9E856D6A6CF25337EA096A6B258C8CFCD * value) { ___U3CU3E9_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__30_0_1() { return static_cast(offsetof(U3CU3Ec_t55914FC9E856D6A6CF25337EA096A6B258C8CFCD_StaticFields, ___U3CU3E9__30_0_1)); } inline Predicate_1_t782ED4F640A61B7ACA1DD787F7C4993C746207B3 * get_U3CU3E9__30_0_1() const { return ___U3CU3E9__30_0_1; } inline Predicate_1_t782ED4F640A61B7ACA1DD787F7C4993C746207B3 ** get_address_of_U3CU3E9__30_0_1() { return &___U3CU3E9__30_0_1; } inline void set_U3CU3E9__30_0_1(Predicate_1_t782ED4F640A61B7ACA1DD787F7C4993C746207B3 * value) { ___U3CU3E9__30_0_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__30_0_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__30_1_2() { return static_cast(offsetof(U3CU3Ec_t55914FC9E856D6A6CF25337EA096A6B258C8CFCD_StaticFields, ___U3CU3E9__30_1_2)); } inline Predicate_1_t782ED4F640A61B7ACA1DD787F7C4993C746207B3 * get_U3CU3E9__30_1_2() const { return ___U3CU3E9__30_1_2; } inline Predicate_1_t782ED4F640A61B7ACA1DD787F7C4993C746207B3 ** get_address_of_U3CU3E9__30_1_2() { return &___U3CU3E9__30_1_2; } inline void set_U3CU3E9__30_1_2(Predicate_1_t782ED4F640A61B7ACA1DD787F7C4993C746207B3 * value) { ___U3CU3E9__30_1_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__30_1_2), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__33_0_3() { return static_cast(offsetof(U3CU3Ec_t55914FC9E856D6A6CF25337EA096A6B258C8CFCD_StaticFields, ___U3CU3E9__33_0_3)); } inline WaitCallback_t82C85517E973DCC6390AFB0BC3C2276F3328A319 * get_U3CU3E9__33_0_3() const { return ___U3CU3E9__33_0_3; } inline WaitCallback_t82C85517E973DCC6390AFB0BC3C2276F3328A319 ** get_address_of_U3CU3E9__33_0_3() { return &___U3CU3E9__33_0_3; } inline void set_U3CU3E9__33_0_3(WaitCallback_t82C85517E973DCC6390AFB0BC3C2276F3328A319 * value) { ___U3CU3E9__33_0_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__33_0_3), (void*)value); } }; // BestHTTP.Caching.HTTPCacheService/<>c__DisplayClass35_0 struct U3CU3Ec__DisplayClass35_0_tE3A988AF6E5AF47AD8FE5A1AB5407A8B1CFFFC51 : public RuntimeObject { public: // BestHTTP.Caching.HTTPCacheMaintananceParams BestHTTP.Caching.HTTPCacheService/<>c__DisplayClass35_0::maintananceParam HTTPCacheMaintananceParams_t3C1DDABAF1478424BBFF3E0EEFDF7E81843C8142 * ___maintananceParam_0; public: inline static int32_t get_offset_of_maintananceParam_0() { return static_cast(offsetof(U3CU3Ec__DisplayClass35_0_tE3A988AF6E5AF47AD8FE5A1AB5407A8B1CFFFC51, ___maintananceParam_0)); } inline HTTPCacheMaintananceParams_t3C1DDABAF1478424BBFF3E0EEFDF7E81843C8142 * get_maintananceParam_0() const { return ___maintananceParam_0; } inline HTTPCacheMaintananceParams_t3C1DDABAF1478424BBFF3E0EEFDF7E81843C8142 ** get_address_of_maintananceParam_0() { return &___maintananceParam_0; } inline void set_maintananceParam_0(HTTPCacheMaintananceParams_t3C1DDABAF1478424BBFF3E0EEFDF7E81843C8142 * value) { ___maintananceParam_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___maintananceParam_0), (void*)value); } }; // BestHTTP.HTTPManager/<>c struct U3CU3Ec_t1F02CF6C3BB5ED880B82EB43AF7CB53A208356B8 : public RuntimeObject { public: public: }; struct U3CU3Ec_t1F02CF6C3BB5ED880B82EB43AF7CB53A208356B8_StaticFields { public: // BestHTTP.HTTPManager/<>c BestHTTP.HTTPManager/<>c::<>9 U3CU3Ec_t1F02CF6C3BB5ED880B82EB43AF7CB53A208356B8 * ___U3CU3E9_0; // System.Predicate`1 BestHTTP.HTTPManager/<>c::<>9__104_0 Predicate_1_tC838A5EB8B3B9289CB9C0A2CF1806336669C565A * ___U3CU3E9__104_0_1; // System.Comparison`1 BestHTTP.HTTPManager/<>c::<>9__104_1 Comparison_1_t97B2A8BC9742CE824022B71E5E5A340C030DADC4 * ___U3CU3E9__104_1_2; public: inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast(offsetof(U3CU3Ec_t1F02CF6C3BB5ED880B82EB43AF7CB53A208356B8_StaticFields, ___U3CU3E9_0)); } inline U3CU3Ec_t1F02CF6C3BB5ED880B82EB43AF7CB53A208356B8 * get_U3CU3E9_0() const { return ___U3CU3E9_0; } inline U3CU3Ec_t1F02CF6C3BB5ED880B82EB43AF7CB53A208356B8 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; } inline void set_U3CU3E9_0(U3CU3Ec_t1F02CF6C3BB5ED880B82EB43AF7CB53A208356B8 * value) { ___U3CU3E9_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__104_0_1() { return static_cast(offsetof(U3CU3Ec_t1F02CF6C3BB5ED880B82EB43AF7CB53A208356B8_StaticFields, ___U3CU3E9__104_0_1)); } inline Predicate_1_tC838A5EB8B3B9289CB9C0A2CF1806336669C565A * get_U3CU3E9__104_0_1() const { return ___U3CU3E9__104_0_1; } inline Predicate_1_tC838A5EB8B3B9289CB9C0A2CF1806336669C565A ** get_address_of_U3CU3E9__104_0_1() { return &___U3CU3E9__104_0_1; } inline void set_U3CU3E9__104_0_1(Predicate_1_tC838A5EB8B3B9289CB9C0A2CF1806336669C565A * value) { ___U3CU3E9__104_0_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__104_0_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__104_1_2() { return static_cast(offsetof(U3CU3Ec_t1F02CF6C3BB5ED880B82EB43AF7CB53A208356B8_StaticFields, ___U3CU3E9__104_1_2)); } inline Comparison_1_t97B2A8BC9742CE824022B71E5E5A340C030DADC4 * get_U3CU3E9__104_1_2() const { return ___U3CU3E9__104_1_2; } inline Comparison_1_t97B2A8BC9742CE824022B71E5E5A340C030DADC4 ** get_address_of_U3CU3E9__104_1_2() { return &___U3CU3E9__104_1_2; } inline void set_U3CU3E9__104_1_2(Comparison_1_t97B2A8BC9742CE824022B71E5E5A340C030DADC4 * value) { ___U3CU3E9__104_1_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__104_1_2), (void*)value); } }; // BestHTTP.HTTPManager/<>c__DisplayClass94_0 struct U3CU3Ec__DisplayClass94_0_tAF390C495207D82599C243517BC7510C5F085B0A : public RuntimeObject { public: // BestHTTP.ConnectionBase BestHTTP.HTTPManager/<>c__DisplayClass94_0::conn ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57 * ___conn_0; public: inline static int32_t get_offset_of_conn_0() { return static_cast(offsetof(U3CU3Ec__DisplayClass94_0_tAF390C495207D82599C243517BC7510C5F085B0A, ___conn_0)); } inline ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57 * get_conn_0() const { return ___conn_0; } inline ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57 ** get_address_of_conn_0() { return &___conn_0; } inline void set_conn_0(ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57 * value) { ___conn_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___conn_0), (void*)value); } }; // BestHTTP.HTTPRequest/<>c__DisplayClass236_0 struct U3CU3Ec__DisplayClass236_0_t5D73E77F88085755E0AC16CEC06D0F13B7D5F7BF : public RuntimeObject { public: // BestHTTP.Cookies.Cookie BestHTTP.HTTPRequest/<>c__DisplayClass236_0::customCookie Cookie_tC21D2404C4CCA8449C9DB970939F9DFB8CE61EC2 * ___customCookie_0; public: inline static int32_t get_offset_of_customCookie_0() { return static_cast(offsetof(U3CU3Ec__DisplayClass236_0_t5D73E77F88085755E0AC16CEC06D0F13B7D5F7BF, ___customCookie_0)); } inline Cookie_tC21D2404C4CCA8449C9DB970939F9DFB8CE61EC2 * get_customCookie_0() const { return ___customCookie_0; } inline Cookie_tC21D2404C4CCA8449C9DB970939F9DFB8CE61EC2 ** get_address_of_customCookie_0() { return &___customCookie_0; } inline void set_customCookie_0(Cookie_tC21D2404C4CCA8449C9DB970939F9DFB8CE61EC2 * value) { ___customCookie_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___customCookie_0), (void*)value); } }; // BestHTTP.HTTPRequest/<>c__DisplayClass237_0 struct U3CU3Ec__DisplayClass237_0_t6E177732B76E901E21CDA82DE87FFF83EC6F96E3 : public RuntimeObject { public: // BestHTTP.HTTPRequest BestHTTP.HTTPRequest/<>c__DisplayClass237_0::<>4__this HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * ___U3CU3E4__this_0; // System.IO.Stream BestHTTP.HTTPRequest/<>c__DisplayClass237_0::stream Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___stream_1; public: inline static int32_t get_offset_of_U3CU3E4__this_0() { return static_cast(offsetof(U3CU3Ec__DisplayClass237_0_t6E177732B76E901E21CDA82DE87FFF83EC6F96E3, ___U3CU3E4__this_0)); } inline HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * get_U3CU3E4__this_0() const { return ___U3CU3E4__this_0; } inline HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 ** get_address_of_U3CU3E4__this_0() { return &___U3CU3E4__this_0; } inline void set_U3CU3E4__this_0(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * value) { ___U3CU3E4__this_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_0), (void*)value); } inline static int32_t get_offset_of_stream_1() { return static_cast(offsetof(U3CU3Ec__DisplayClass237_0_t6E177732B76E901E21CDA82DE87FFF83EC6F96E3, ___stream_1)); } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_stream_1() const { return ___stream_1; } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_stream_1() { return &___stream_1; } inline void set_stream_1(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value) { ___stream_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___stream_1), (void*)value); } }; // System.Collections.Generic.LinkedList`1/Enumerator struct Enumerator_t798BE184229895CEBE1EA4E63709DBA660A3460C { public: // System.Collections.Generic.LinkedList`1 System.Collections.Generic.LinkedList`1/Enumerator::_list LinkedList_1_t3656FF46586A1EDB68EC68E62D94A1284314CC08 * ____list_0; // System.Collections.Generic.LinkedListNode`1 System.Collections.Generic.LinkedList`1/Enumerator::_node LinkedListNode_1_tF40B0719F8838F79333922567D1CFDB4B3B71904 * ____node_1; // System.Int32 System.Collections.Generic.LinkedList`1/Enumerator::_version int32_t ____version_2; // T System.Collections.Generic.LinkedList`1/Enumerator::_current BluetoothHelperCharacteristic_t192402A7C03FD9857C87822D541F8737A469B6E9 * ____current_3; // System.Int32 System.Collections.Generic.LinkedList`1/Enumerator::_index int32_t ____index_4; public: inline static int32_t get_offset_of__list_0() { return static_cast(offsetof(Enumerator_t798BE184229895CEBE1EA4E63709DBA660A3460C, ____list_0)); } inline LinkedList_1_t3656FF46586A1EDB68EC68E62D94A1284314CC08 * get__list_0() const { return ____list_0; } inline LinkedList_1_t3656FF46586A1EDB68EC68E62D94A1284314CC08 ** get_address_of__list_0() { return &____list_0; } inline void set__list_0(LinkedList_1_t3656FF46586A1EDB68EC68E62D94A1284314CC08 * value) { ____list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____list_0), (void*)value); } inline static int32_t get_offset_of__node_1() { return static_cast(offsetof(Enumerator_t798BE184229895CEBE1EA4E63709DBA660A3460C, ____node_1)); } inline LinkedListNode_1_tF40B0719F8838F79333922567D1CFDB4B3B71904 * get__node_1() const { return ____node_1; } inline LinkedListNode_1_tF40B0719F8838F79333922567D1CFDB4B3B71904 ** get_address_of__node_1() { return &____node_1; } inline void set__node_1(LinkedListNode_1_tF40B0719F8838F79333922567D1CFDB4B3B71904 * value) { ____node_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____node_1), (void*)value); } inline static int32_t get_offset_of__version_2() { return static_cast(offsetof(Enumerator_t798BE184229895CEBE1EA4E63709DBA660A3460C, ____version_2)); } inline int32_t get__version_2() const { return ____version_2; } inline int32_t* get_address_of__version_2() { return &____version_2; } inline void set__version_2(int32_t value) { ____version_2 = value; } inline static int32_t get_offset_of__current_3() { return static_cast(offsetof(Enumerator_t798BE184229895CEBE1EA4E63709DBA660A3460C, ____current_3)); } inline BluetoothHelperCharacteristic_t192402A7C03FD9857C87822D541F8737A469B6E9 * get__current_3() const { return ____current_3; } inline BluetoothHelperCharacteristic_t192402A7C03FD9857C87822D541F8737A469B6E9 ** get_address_of__current_3() { return &____current_3; } inline void set__current_3(BluetoothHelperCharacteristic_t192402A7C03FD9857C87822D541F8737A469B6E9 * value) { ____current_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____current_3), (void*)value); } inline static int32_t get_offset_of__index_4() { return static_cast(offsetof(Enumerator_t798BE184229895CEBE1EA4E63709DBA660A3460C, ____index_4)); } inline int32_t get__index_4() const { return ____index_4; } inline int32_t* get_address_of__index_4() { return &____index_4; } inline void set__index_4(int32_t value) { ____index_4 = value; } }; // System.Collections.Generic.List`1/Enumerator struct Enumerator_t45A82901819006B9A7ADA1749AE31E33D0AF8AF2 { public: // System.Collections.Generic.List`1 System.Collections.Generic.List`1/Enumerator::list List_1_tFD38E11A811DED19252DF7684390FF692DB525C5 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current BluetoothHelperService_t4C830DA91BDB3A9EC558D45C55A9318E931CA2A9 * ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast(offsetof(Enumerator_t45A82901819006B9A7ADA1749AE31E33D0AF8AF2, ___list_0)); } inline List_1_tFD38E11A811DED19252DF7684390FF692DB525C5 * get_list_0() const { return ___list_0; } inline List_1_tFD38E11A811DED19252DF7684390FF692DB525C5 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_tFD38E11A811DED19252DF7684390FF692DB525C5 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast(offsetof(Enumerator_t45A82901819006B9A7ADA1749AE31E33D0AF8AF2, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast(offsetof(Enumerator_t45A82901819006B9A7ADA1749AE31E33D0AF8AF2, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast(offsetof(Enumerator_t45A82901819006B9A7ADA1749AE31E33D0AF8AF2, ___current_3)); } inline BluetoothHelperService_t4C830DA91BDB3A9EC558D45C55A9318E931CA2A9 * get_current_3() const { return ___current_3; } inline BluetoothHelperService_t4C830DA91BDB3A9EC558D45C55A9318E931CA2A9 ** get_address_of_current_3() { return &___current_3; } inline void set_current_3(BluetoothHelperService_t4C830DA91BDB3A9EC558D45C55A9318E931CA2A9 * value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value); } }; // System.Collections.Generic.List`1/Enumerator struct Enumerator_t6D0827411121305C0C750B338E1BFB757246E871 { public: // System.Collections.Generic.List`1 System.Collections.Generic.List`1/Enumerator::list List_1_t21BC49A4390CA067C4050F19A1D58BE64AC2E89E * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast(offsetof(Enumerator_t6D0827411121305C0C750B338E1BFB757246E871, ___list_0)); } inline List_1_t21BC49A4390CA067C4050F19A1D58BE64AC2E89E * get_list_0() const { return ___list_0; } inline List_1_t21BC49A4390CA067C4050F19A1D58BE64AC2E89E ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t21BC49A4390CA067C4050F19A1D58BE64AC2E89E * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast(offsetof(Enumerator_t6D0827411121305C0C750B338E1BFB757246E871, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast(offsetof(Enumerator_t6D0827411121305C0C750B338E1BFB757246E871, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast(offsetof(Enumerator_t6D0827411121305C0C750B338E1BFB757246E871, ___current_3)); } inline Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * get_current_3() const { return ___current_3; } inline Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D ** get_address_of_current_3() { return &___current_3; } inline void set_current_3(Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value); } }; // System.Collections.Generic.List`1/Enumerator struct Enumerator_t0AF7A66000F7E39648996AE89592D1895291B243 { public: // System.Collections.Generic.List`1 System.Collections.Generic.List`1/Enumerator::list List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57 * ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast(offsetof(Enumerator_t0AF7A66000F7E39648996AE89592D1895291B243, ___list_0)); } inline List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836 * get_list_0() const { return ___list_0; } inline List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast(offsetof(Enumerator_t0AF7A66000F7E39648996AE89592D1895291B243, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast(offsetof(Enumerator_t0AF7A66000F7E39648996AE89592D1895291B243, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast(offsetof(Enumerator_t0AF7A66000F7E39648996AE89592D1895291B243, ___current_3)); } inline ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57 * get_current_3() const { return ___current_3; } inline ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57 ** get_address_of_current_3() { return &___current_3; } inline void set_current_3(ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57 * value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value); } }; // System.Collections.Generic.List`1/Enumerator struct Enumerator_tC257AE0EA84511152B4BBE99B18B14EDAF5DBDB1 { public: // System.Collections.Generic.List`1 System.Collections.Generic.List`1/Enumerator::list List_1_tF9D8E572A8599785D6C36AD7BDC592752B89E0A1 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current Cookie_tC21D2404C4CCA8449C9DB970939F9DFB8CE61EC2 * ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast(offsetof(Enumerator_tC257AE0EA84511152B4BBE99B18B14EDAF5DBDB1, ___list_0)); } inline List_1_tF9D8E572A8599785D6C36AD7BDC592752B89E0A1 * get_list_0() const { return ___list_0; } inline List_1_tF9D8E572A8599785D6C36AD7BDC592752B89E0A1 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_tF9D8E572A8599785D6C36AD7BDC592752B89E0A1 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast(offsetof(Enumerator_tC257AE0EA84511152B4BBE99B18B14EDAF5DBDB1, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast(offsetof(Enumerator_tC257AE0EA84511152B4BBE99B18B14EDAF5DBDB1, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast(offsetof(Enumerator_tC257AE0EA84511152B4BBE99B18B14EDAF5DBDB1, ___current_3)); } inline Cookie_tC21D2404C4CCA8449C9DB970939F9DFB8CE61EC2 * get_current_3() const { return ___current_3; } inline Cookie_tC21D2404C4CCA8449C9DB970939F9DFB8CE61EC2 ** get_address_of_current_3() { return &___current_3; } inline void set_current_3(Cookie_tC21D2404C4CCA8449C9DB970939F9DFB8CE61EC2 * value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value); } }; // System.Collections.Generic.LinkedList`1/Enumerator struct Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B { public: // System.Collections.Generic.LinkedList`1 System.Collections.Generic.LinkedList`1/Enumerator::_list LinkedList_1_tF98410EEA26883FF7ECC1DFD10068A4CC744550B * ____list_0; // System.Collections.Generic.LinkedListNode`1 System.Collections.Generic.LinkedList`1/Enumerator::_node LinkedListNode_1_tE9D663EA27667E3E9F8E311FC56B32F3E3D9B07F * ____node_1; // System.Int32 System.Collections.Generic.LinkedList`1/Enumerator::_version int32_t ____version_2; // T System.Collections.Generic.LinkedList`1/Enumerator::_current RuntimeObject * ____current_3; // System.Int32 System.Collections.Generic.LinkedList`1/Enumerator::_index int32_t ____index_4; public: inline static int32_t get_offset_of__list_0() { return static_cast(offsetof(Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B, ____list_0)); } inline LinkedList_1_tF98410EEA26883FF7ECC1DFD10068A4CC744550B * get__list_0() const { return ____list_0; } inline LinkedList_1_tF98410EEA26883FF7ECC1DFD10068A4CC744550B ** get_address_of__list_0() { return &____list_0; } inline void set__list_0(LinkedList_1_tF98410EEA26883FF7ECC1DFD10068A4CC744550B * value) { ____list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____list_0), (void*)value); } inline static int32_t get_offset_of__node_1() { return static_cast(offsetof(Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B, ____node_1)); } inline LinkedListNode_1_tE9D663EA27667E3E9F8E311FC56B32F3E3D9B07F * get__node_1() const { return ____node_1; } inline LinkedListNode_1_tE9D663EA27667E3E9F8E311FC56B32F3E3D9B07F ** get_address_of__node_1() { return &____node_1; } inline void set__node_1(LinkedListNode_1_tE9D663EA27667E3E9F8E311FC56B32F3E3D9B07F * value) { ____node_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____node_1), (void*)value); } inline static int32_t get_offset_of__version_2() { return static_cast(offsetof(Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B, ____version_2)); } inline int32_t get__version_2() const { return ____version_2; } inline int32_t* get_address_of__version_2() { return &____version_2; } inline void set__version_2(int32_t value) { ____version_2 = value; } inline static int32_t get_offset_of__current_3() { return static_cast(offsetof(Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B, ____current_3)); } inline RuntimeObject * get__current_3() const { return ____current_3; } inline RuntimeObject ** get_address_of__current_3() { return &____current_3; } inline void set__current_3(RuntimeObject * value) { ____current_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____current_3), (void*)value); } inline static int32_t get_offset_of__index_4() { return static_cast(offsetof(Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B, ____index_4)); } inline int32_t get__index_4() const { return ____index_4; } inline int32_t* get_address_of__index_4() { return &____index_4; } inline void set__index_4(int32_t value) { ____index_4 = value; } }; // System.Collections.Generic.List`1/Enumerator struct Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 { public: // System.Collections.Generic.List`1 System.Collections.Generic.List`1/Enumerator::list List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * ___list_0; // System.Int32 System.Collections.Generic.List`1/Enumerator::index int32_t ___index_1; // System.Int32 System.Collections.Generic.List`1/Enumerator::version int32_t ___version_2; // T System.Collections.Generic.List`1/Enumerator::current RuntimeObject * ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast(offsetof(Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6, ___list_0)); } inline List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * get_list_0() const { return ___list_0; } inline List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast(offsetof(Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast(offsetof(Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast(offsetof(Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6, ___current_3)); } inline RuntimeObject * get_current_3() const { return ___current_3; } inline RuntimeObject ** get_address_of_current_3() { return &___current_3; } inline void set_current_3(RuntimeObject * value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value); } }; // System.Collections.Generic.KeyValuePair`2 struct KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 { public: // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject * ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast(offsetof(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value); } inline static int32_t get_offset_of_value_1() { return static_cast(offsetof(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value); } }; // System.Collections.Generic.KeyValuePair`2> struct KeyValuePair_2_tC0803126FFC93A1688084924A6D491E22FCDEBF5 { public: // TKey System.Collections.Generic.KeyValuePair`2::key String_t* ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836 * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast(offsetof(KeyValuePair_2_tC0803126FFC93A1688084924A6D491E22FCDEBF5, ___key_0)); } inline String_t* get_key_0() const { return ___key_0; } inline String_t** get_address_of_key_0() { return &___key_0; } inline void set_key_0(String_t* value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value); } inline static int32_t get_offset_of_value_1() { return static_cast(offsetof(KeyValuePair_2_tC0803126FFC93A1688084924A6D491E22FCDEBF5, ___value_1)); } inline List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836 * get_value_1() const { return ___value_1; } inline List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836 ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836 * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value); } }; // System.Collections.Generic.KeyValuePair`2> struct KeyValuePair_2_t51A34E5FB59AD087543207A2587CEF7C2B432E53 { public: // TKey System.Collections.Generic.KeyValuePair`2::key String_t* ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast(offsetof(KeyValuePair_2_t51A34E5FB59AD087543207A2587CEF7C2B432E53, ___key_0)); } inline String_t* get_key_0() const { return ___key_0; } inline String_t** get_address_of_key_0() { return &___key_0; } inline void set_key_0(String_t* value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value); } inline static int32_t get_offset_of_value_1() { return static_cast(offsetof(KeyValuePair_2_t51A34E5FB59AD087543207A2587CEF7C2B432E53, ___value_1)); } inline List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * get_value_1() const { return ___value_1; } inline List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value); } }; // System.Collections.Generic.KeyValuePair`2 struct KeyValuePair_2_tA61128FB2E93C19D2A93737C07B7B96AE2F20634 { public: // TKey System.Collections.Generic.KeyValuePair`2::key Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast(offsetof(KeyValuePair_2_tA61128FB2E93C19D2A93737C07B7B96AE2F20634, ___key_0)); } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * get_key_0() const { return ___key_0; } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value); } inline static int32_t get_offset_of_value_1() { return static_cast(offsetof(KeyValuePair_2_tA61128FB2E93C19D2A93737C07B7B96AE2F20634, ___value_1)); } inline HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * get_value_1() const { return ___value_1; } inline HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value); } }; // UnityEngine.Events.UnityEvent`1 struct UnityEvent_1_t208A952325F66BFCB1EDEECEFEF5F1C7A16298A0 : public UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB { public: // System.Object[] UnityEngine.Events.UnityEvent`1::m_InvokeArray ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___m_InvokeArray_3; public: inline static int32_t get_offset_of_m_InvokeArray_3() { return static_cast(offsetof(UnityEvent_1_t208A952325F66BFCB1EDEECEFEF5F1C7A16298A0, ___m_InvokeArray_3)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_m_InvokeArray_3() const { return ___m_InvokeArray_3; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_m_InvokeArray_3() { return &___m_InvokeArray_3; } inline void set_m_InvokeArray_3(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ___m_InvokeArray_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_InvokeArray_3), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.AbstractTlsClient struct AbstractTlsClient_t2BE8DF1CC9B1A8397383FB81AFC0CEEB7B9A6A93 : public AbstractTlsPeer_t3589DDB3C9CBD13D650BADDC95A1814D4A5D6A5A { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsCipherFactory BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.AbstractTlsClient::mCipherFactory RuntimeObject* ___mCipherFactory_0; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientContext BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.AbstractTlsClient::mContext RuntimeObject* ___mContext_1; // System.Collections.IList BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.AbstractTlsClient::mSupportedSignatureAlgorithms RuntimeObject* ___mSupportedSignatureAlgorithms_2; // System.Int32[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.AbstractTlsClient::mNamedCurves Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___mNamedCurves_3; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.AbstractTlsClient::mClientECPointFormats ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___mClientECPointFormats_4; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.AbstractTlsClient::mServerECPointFormats ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___mServerECPointFormats_5; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.AbstractTlsClient::mSelectedCipherSuite int32_t ___mSelectedCipherSuite_6; // System.Int16 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.AbstractTlsClient::mSelectedCompressionMethod int16_t ___mSelectedCompressionMethod_7; // System.Collections.Generic.List`1 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.AbstractTlsClient::k__BackingField List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * ___U3CHostNamesU3Ek__BackingField_8; public: inline static int32_t get_offset_of_mCipherFactory_0() { return static_cast(offsetof(AbstractTlsClient_t2BE8DF1CC9B1A8397383FB81AFC0CEEB7B9A6A93, ___mCipherFactory_0)); } inline RuntimeObject* get_mCipherFactory_0() const { return ___mCipherFactory_0; } inline RuntimeObject** get_address_of_mCipherFactory_0() { return &___mCipherFactory_0; } inline void set_mCipherFactory_0(RuntimeObject* value) { ___mCipherFactory_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___mCipherFactory_0), (void*)value); } inline static int32_t get_offset_of_mContext_1() { return static_cast(offsetof(AbstractTlsClient_t2BE8DF1CC9B1A8397383FB81AFC0CEEB7B9A6A93, ___mContext_1)); } inline RuntimeObject* get_mContext_1() const { return ___mContext_1; } inline RuntimeObject** get_address_of_mContext_1() { return &___mContext_1; } inline void set_mContext_1(RuntimeObject* value) { ___mContext_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___mContext_1), (void*)value); } inline static int32_t get_offset_of_mSupportedSignatureAlgorithms_2() { return static_cast(offsetof(AbstractTlsClient_t2BE8DF1CC9B1A8397383FB81AFC0CEEB7B9A6A93, ___mSupportedSignatureAlgorithms_2)); } inline RuntimeObject* get_mSupportedSignatureAlgorithms_2() const { return ___mSupportedSignatureAlgorithms_2; } inline RuntimeObject** get_address_of_mSupportedSignatureAlgorithms_2() { return &___mSupportedSignatureAlgorithms_2; } inline void set_mSupportedSignatureAlgorithms_2(RuntimeObject* value) { ___mSupportedSignatureAlgorithms_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___mSupportedSignatureAlgorithms_2), (void*)value); } inline static int32_t get_offset_of_mNamedCurves_3() { return static_cast(offsetof(AbstractTlsClient_t2BE8DF1CC9B1A8397383FB81AFC0CEEB7B9A6A93, ___mNamedCurves_3)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_mNamedCurves_3() const { return ___mNamedCurves_3; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_mNamedCurves_3() { return &___mNamedCurves_3; } inline void set_mNamedCurves_3(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___mNamedCurves_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___mNamedCurves_3), (void*)value); } inline static int32_t get_offset_of_mClientECPointFormats_4() { return static_cast(offsetof(AbstractTlsClient_t2BE8DF1CC9B1A8397383FB81AFC0CEEB7B9A6A93, ___mClientECPointFormats_4)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_mClientECPointFormats_4() const { return ___mClientECPointFormats_4; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_mClientECPointFormats_4() { return &___mClientECPointFormats_4; } inline void set_mClientECPointFormats_4(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___mClientECPointFormats_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___mClientECPointFormats_4), (void*)value); } inline static int32_t get_offset_of_mServerECPointFormats_5() { return static_cast(offsetof(AbstractTlsClient_t2BE8DF1CC9B1A8397383FB81AFC0CEEB7B9A6A93, ___mServerECPointFormats_5)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_mServerECPointFormats_5() const { return ___mServerECPointFormats_5; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_mServerECPointFormats_5() { return &___mServerECPointFormats_5; } inline void set_mServerECPointFormats_5(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___mServerECPointFormats_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___mServerECPointFormats_5), (void*)value); } inline static int32_t get_offset_of_mSelectedCipherSuite_6() { return static_cast(offsetof(AbstractTlsClient_t2BE8DF1CC9B1A8397383FB81AFC0CEEB7B9A6A93, ___mSelectedCipherSuite_6)); } inline int32_t get_mSelectedCipherSuite_6() const { return ___mSelectedCipherSuite_6; } inline int32_t* get_address_of_mSelectedCipherSuite_6() { return &___mSelectedCipherSuite_6; } inline void set_mSelectedCipherSuite_6(int32_t value) { ___mSelectedCipherSuite_6 = value; } inline static int32_t get_offset_of_mSelectedCompressionMethod_7() { return static_cast(offsetof(AbstractTlsClient_t2BE8DF1CC9B1A8397383FB81AFC0CEEB7B9A6A93, ___mSelectedCompressionMethod_7)); } inline int16_t get_mSelectedCompressionMethod_7() const { return ___mSelectedCompressionMethod_7; } inline int16_t* get_address_of_mSelectedCompressionMethod_7() { return &___mSelectedCompressionMethod_7; } inline void set_mSelectedCompressionMethod_7(int16_t value) { ___mSelectedCompressionMethod_7 = value; } inline static int32_t get_offset_of_U3CHostNamesU3Ek__BackingField_8() { return static_cast(offsetof(AbstractTlsClient_t2BE8DF1CC9B1A8397383FB81AFC0CEEB7B9A6A93, ___U3CHostNamesU3Ek__BackingField_8)); } inline List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * get_U3CHostNamesU3Ek__BackingField_8() const { return ___U3CHostNamesU3Ek__BackingField_8; } inline List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 ** get_address_of_U3CHostNamesU3Ek__BackingField_8() { return &___U3CHostNamesU3Ek__BackingField_8; } inline void set_U3CHostNamesU3Ek__BackingField_8(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * value) { ___U3CHostNamesU3Ek__BackingField_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CHostNamesU3Ek__BackingField_8), (void*)value); } }; // System.Boolean struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37 { public: // System.Boolean System.Boolean::m_value bool ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37, ___m_value_0)); } inline bool get_m_value_0() const { return ___m_value_0; } inline bool* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(bool value) { ___m_value_0 = value; } }; struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields { public: // System.String System.Boolean::TrueString String_t* ___TrueString_5; // System.String System.Boolean::FalseString String_t* ___FalseString_6; public: inline static int32_t get_offset_of_TrueString_5() { return static_cast(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___TrueString_5)); } inline String_t* get_TrueString_5() const { return ___TrueString_5; } inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; } inline void set_TrueString_5(String_t* value) { ___TrueString_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value); } inline static int32_t get_offset_of_FalseString_6() { return static_cast(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___FalseString_6)); } inline String_t* get_FalseString_6() const { return ___FalseString_6; } inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; } inline void set_FalseString_6(String_t* value) { ___FalseString_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value); } }; // System.Byte struct Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056 { public: // System.Byte System.Byte::m_value uint8_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056, ___m_value_0)); } inline uint8_t get_m_value_0() const { return ___m_value_0; } inline uint8_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint8_t value) { ___m_value_0 = value; } }; // CaptchaController struct CaptchaController_t43D34329B0D2332B81C73361818403490AF27437 : public Singleton_1_t82CBAAE5BEBBEE846D96C04D8CEF2F30A4112400 { public: // System.Int32[] CaptchaController::builtInCaptchaList Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___builtInCaptchaList_1; public: inline static int32_t get_offset_of_builtInCaptchaList_1() { return static_cast(offsetof(CaptchaController_t43D34329B0D2332B81C73361818403490AF27437, ___builtInCaptchaList_1)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_builtInCaptchaList_1() const { return ___builtInCaptchaList_1; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_builtInCaptchaList_1() { return &___builtInCaptchaList_1; } inline void set_builtInCaptchaList_1(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___builtInCaptchaList_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___builtInCaptchaList_1), (void*)value); } }; // System.Char struct Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14 { public: // System.Char System.Char::m_value Il2CppChar ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14, ___m_value_0)); } inline Il2CppChar get_m_value_0() const { return ___m_value_0; } inline Il2CppChar* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(Il2CppChar value) { ___m_value_0 = value; } }; struct Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_StaticFields { public: // System.Byte[] System.Char::categoryForLatin1 ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___categoryForLatin1_3; public: inline static int32_t get_offset_of_categoryForLatin1_3() { return static_cast(offsetof(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_StaticFields, ___categoryForLatin1_3)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_categoryForLatin1_3() const { return ___categoryForLatin1_3; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_categoryForLatin1_3() { return &___categoryForLatin1_3; } inline void set_categoryForLatin1_3(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___categoryForLatin1_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___categoryForLatin1_3), (void*)value); } }; // UnityEngine.Color struct Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 { public: // System.Single UnityEngine.Color::r float ___r_0; // System.Single UnityEngine.Color::g float ___g_1; // System.Single UnityEngine.Color::b float ___b_2; // System.Single UnityEngine.Color::a float ___a_3; public: inline static int32_t get_offset_of_r_0() { return static_cast(offsetof(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659, ___r_0)); } inline float get_r_0() const { return ___r_0; } inline float* get_address_of_r_0() { return &___r_0; } inline void set_r_0(float value) { ___r_0 = value; } inline static int32_t get_offset_of_g_1() { return static_cast(offsetof(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659, ___g_1)); } inline float get_g_1() const { return ___g_1; } inline float* get_address_of_g_1() { return &___g_1; } inline void set_g_1(float value) { ___g_1 = value; } inline static int32_t get_offset_of_b_2() { return static_cast(offsetof(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659, ___b_2)); } inline float get_b_2() const { return ___b_2; } inline float* get_address_of_b_2() { return &___b_2; } inline void set_b_2(float value) { ___b_2 = value; } inline static int32_t get_offset_of_a_3() { return static_cast(offsetof(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659, ___a_3)); } inline float get_a_3() const { return ___a_3; } inline float* get_address_of_a_3() { return &___a_3; } inline void set_a_3(float value) { ___a_3 = value; } }; // System.DateTime struct DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 { public: // System.UInt64 System.DateTime::dateData uint64_t ___dateData_44; public: inline static int32_t get_offset_of_dateData_44() { return static_cast(offsetof(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405, ___dateData_44)); } inline uint64_t get_dateData_44() const { return ___dateData_44; } inline uint64_t* get_address_of_dateData_44() { return &___dateData_44; } inline void set_dateData_44(uint64_t value) { ___dateData_44 = value; } }; struct DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields { public: // System.Int32[] System.DateTime::DaysToMonth365 Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___DaysToMonth365_29; // System.Int32[] System.DateTime::DaysToMonth366 Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___DaysToMonth366_30; // System.DateTime System.DateTime::MinValue DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___MinValue_31; // System.DateTime System.DateTime::MaxValue DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___MaxValue_32; public: inline static int32_t get_offset_of_DaysToMonth365_29() { return static_cast(offsetof(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields, ___DaysToMonth365_29)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_DaysToMonth365_29() const { return ___DaysToMonth365_29; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_DaysToMonth365_29() { return &___DaysToMonth365_29; } inline void set_DaysToMonth365_29(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___DaysToMonth365_29 = value; Il2CppCodeGenWriteBarrier((void**)(&___DaysToMonth365_29), (void*)value); } inline static int32_t get_offset_of_DaysToMonth366_30() { return static_cast(offsetof(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields, ___DaysToMonth366_30)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_DaysToMonth366_30() const { return ___DaysToMonth366_30; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_DaysToMonth366_30() { return &___DaysToMonth366_30; } inline void set_DaysToMonth366_30(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___DaysToMonth366_30 = value; Il2CppCodeGenWriteBarrier((void**)(&___DaysToMonth366_30), (void*)value); } inline static int32_t get_offset_of_MinValue_31() { return static_cast(offsetof(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields, ___MinValue_31)); } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_MinValue_31() const { return ___MinValue_31; } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_MinValue_31() { return &___MinValue_31; } inline void set_MinValue_31(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value) { ___MinValue_31 = value; } inline static int32_t get_offset_of_MaxValue_32() { return static_cast(offsetof(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields, ___MaxValue_32)); } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_MaxValue_32() const { return ___MaxValue_32; } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_MaxValue_32() { return &___MaxValue_32; } inline void set_MaxValue_32(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value) { ___MaxValue_32 = value; } }; // System.Double struct Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181 { public: // System.Double System.Double::m_value double ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181, ___m_value_0)); } inline double get_m_value_0() const { return ___m_value_0; } inline double* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(double value) { ___m_value_0 = value; } }; struct Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_StaticFields { public: // System.Double System.Double::NegativeZero double ___NegativeZero_7; public: inline static int32_t get_offset_of_NegativeZero_7() { return static_cast(offsetof(Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_StaticFields, ___NegativeZero_7)); } inline double get_NegativeZero_7() const { return ___NegativeZero_7; } inline double* get_address_of_NegativeZero_7() { return &___NegativeZero_7; } inline void set_NegativeZero_7(double value) { ___NegativeZero_7 = value; } }; // UnityEngine.DrivenRectTransformTracker struct DrivenRectTransformTracker_t7DAF937E47C63B899C7BA0E9B0F206AAB4D85AC2 { public: union { struct { }; uint8_t DrivenRectTransformTracker_t7DAF937E47C63B899C7BA0E9B0F206AAB4D85AC2__padding[1]; }; public: }; // System.Enum struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA : public ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 { public: public: }; struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields { public: // System.Char[] System.Enum::enumSeperatorCharArray CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___enumSeperatorCharArray_0; public: inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast(offsetof(Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields, ___enumSeperatorCharArray_0)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; } inline void set_enumSeperatorCharArray_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___enumSeperatorCharArray_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Enum struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_pinvoke { }; // Native definition for COM marshalling of System.Enum struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_com { }; // BestHTTP.ServerSentEvents.EventSourceResponse struct EventSourceResponse_t8DF68E0CA897F157917279A5863C7A8730E5524A : public HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD { public: // System.Boolean BestHTTP.ServerSentEvents.EventSourceResponse::k__BackingField bool ___U3CIsClosedU3Ek__BackingField_32; // System.Action`2 BestHTTP.ServerSentEvents.EventSourceResponse::OnMessage Action_2_tEEDE22E9727265D12EED7DDDBA22217341029552 * ___OnMessage_33; // System.Action`1 BestHTTP.ServerSentEvents.EventSourceResponse::OnClosed Action_1_tB0049C0C5F759294C4324FC2F877CB233B2CE88C * ___OnClosed_34; // System.Object BestHTTP.ServerSentEvents.EventSourceResponse::FrameLock RuntimeObject * ___FrameLock_35; // System.Byte[] BestHTTP.ServerSentEvents.EventSourceResponse::LineBuffer ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___LineBuffer_36; // System.Int32 BestHTTP.ServerSentEvents.EventSourceResponse::LineBufferPos int32_t ___LineBufferPos_37; // BestHTTP.ServerSentEvents.Message BestHTTP.ServerSentEvents.EventSourceResponse::CurrentMessage Message_t9016A4972C3EBC661DC5D9A88B10EEFE5611182B * ___CurrentMessage_38; // System.Collections.Generic.List`1 BestHTTP.ServerSentEvents.EventSourceResponse::CompletedMessages List_1_t352705E9DD2D5F1DF5F736BA702EC66FA4697B44 * ___CompletedMessages_39; public: inline static int32_t get_offset_of_U3CIsClosedU3Ek__BackingField_32() { return static_cast(offsetof(EventSourceResponse_t8DF68E0CA897F157917279A5863C7A8730E5524A, ___U3CIsClosedU3Ek__BackingField_32)); } inline bool get_U3CIsClosedU3Ek__BackingField_32() const { return ___U3CIsClosedU3Ek__BackingField_32; } inline bool* get_address_of_U3CIsClosedU3Ek__BackingField_32() { return &___U3CIsClosedU3Ek__BackingField_32; } inline void set_U3CIsClosedU3Ek__BackingField_32(bool value) { ___U3CIsClosedU3Ek__BackingField_32 = value; } inline static int32_t get_offset_of_OnMessage_33() { return static_cast(offsetof(EventSourceResponse_t8DF68E0CA897F157917279A5863C7A8730E5524A, ___OnMessage_33)); } inline Action_2_tEEDE22E9727265D12EED7DDDBA22217341029552 * get_OnMessage_33() const { return ___OnMessage_33; } inline Action_2_tEEDE22E9727265D12EED7DDDBA22217341029552 ** get_address_of_OnMessage_33() { return &___OnMessage_33; } inline void set_OnMessage_33(Action_2_tEEDE22E9727265D12EED7DDDBA22217341029552 * value) { ___OnMessage_33 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnMessage_33), (void*)value); } inline static int32_t get_offset_of_OnClosed_34() { return static_cast(offsetof(EventSourceResponse_t8DF68E0CA897F157917279A5863C7A8730E5524A, ___OnClosed_34)); } inline Action_1_tB0049C0C5F759294C4324FC2F877CB233B2CE88C * get_OnClosed_34() const { return ___OnClosed_34; } inline Action_1_tB0049C0C5F759294C4324FC2F877CB233B2CE88C ** get_address_of_OnClosed_34() { return &___OnClosed_34; } inline void set_OnClosed_34(Action_1_tB0049C0C5F759294C4324FC2F877CB233B2CE88C * value) { ___OnClosed_34 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnClosed_34), (void*)value); } inline static int32_t get_offset_of_FrameLock_35() { return static_cast(offsetof(EventSourceResponse_t8DF68E0CA897F157917279A5863C7A8730E5524A, ___FrameLock_35)); } inline RuntimeObject * get_FrameLock_35() const { return ___FrameLock_35; } inline RuntimeObject ** get_address_of_FrameLock_35() { return &___FrameLock_35; } inline void set_FrameLock_35(RuntimeObject * value) { ___FrameLock_35 = value; Il2CppCodeGenWriteBarrier((void**)(&___FrameLock_35), (void*)value); } inline static int32_t get_offset_of_LineBuffer_36() { return static_cast(offsetof(EventSourceResponse_t8DF68E0CA897F157917279A5863C7A8730E5524A, ___LineBuffer_36)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_LineBuffer_36() const { return ___LineBuffer_36; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_LineBuffer_36() { return &___LineBuffer_36; } inline void set_LineBuffer_36(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___LineBuffer_36 = value; Il2CppCodeGenWriteBarrier((void**)(&___LineBuffer_36), (void*)value); } inline static int32_t get_offset_of_LineBufferPos_37() { return static_cast(offsetof(EventSourceResponse_t8DF68E0CA897F157917279A5863C7A8730E5524A, ___LineBufferPos_37)); } inline int32_t get_LineBufferPos_37() const { return ___LineBufferPos_37; } inline int32_t* get_address_of_LineBufferPos_37() { return &___LineBufferPos_37; } inline void set_LineBufferPos_37(int32_t value) { ___LineBufferPos_37 = value; } inline static int32_t get_offset_of_CurrentMessage_38() { return static_cast(offsetof(EventSourceResponse_t8DF68E0CA897F157917279A5863C7A8730E5524A, ___CurrentMessage_38)); } inline Message_t9016A4972C3EBC661DC5D9A88B10EEFE5611182B * get_CurrentMessage_38() const { return ___CurrentMessage_38; } inline Message_t9016A4972C3EBC661DC5D9A88B10EEFE5611182B ** get_address_of_CurrentMessage_38() { return &___CurrentMessage_38; } inline void set_CurrentMessage_38(Message_t9016A4972C3EBC661DC5D9A88B10EEFE5611182B * value) { ___CurrentMessage_38 = value; Il2CppCodeGenWriteBarrier((void**)(&___CurrentMessage_38), (void*)value); } inline static int32_t get_offset_of_CompletedMessages_39() { return static_cast(offsetof(EventSourceResponse_t8DF68E0CA897F157917279A5863C7A8730E5524A, ___CompletedMessages_39)); } inline List_1_t352705E9DD2D5F1DF5F736BA702EC66FA4697B44 * get_CompletedMessages_39() const { return ___CompletedMessages_39; } inline List_1_t352705E9DD2D5F1DF5F736BA702EC66FA4697B44 ** get_address_of_CompletedMessages_39() { return &___CompletedMessages_39; } inline void set_CompletedMessages_39(List_1_t352705E9DD2D5F1DF5F736BA702EC66FA4697B44 * value) { ___CompletedMessages_39 = value; Il2CppCodeGenWriteBarrier((void**)(&___CompletedMessages_39), (void*)value); } }; // HRB_Controller struct HRB_Controller_tE1A7F19BF3E22DAFD78C6889E6DBEB285342C247 : public Singleton_1_t4C10A31CE8B158E185660F1293127F7D95894322 { public: public: }; // BestHTTP.Forms.HTTPMultiPartForm struct HTTPMultiPartForm_t495EC7057C9CBD041C4F7F5C73534368C58AB3F3 : public HTTPFormBase_t62B2F52574B8465343CE4B246C6021BC42A45BF2 { public: // System.String BestHTTP.Forms.HTTPMultiPartForm::Boundary String_t* ___Boundary_5; // System.Byte[] BestHTTP.Forms.HTTPMultiPartForm::CachedData ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___CachedData_6; public: inline static int32_t get_offset_of_Boundary_5() { return static_cast(offsetof(HTTPMultiPartForm_t495EC7057C9CBD041C4F7F5C73534368C58AB3F3, ___Boundary_5)); } inline String_t* get_Boundary_5() const { return ___Boundary_5; } inline String_t** get_address_of_Boundary_5() { return &___Boundary_5; } inline void set_Boundary_5(String_t* value) { ___Boundary_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___Boundary_5), (void*)value); } inline static int32_t get_offset_of_CachedData_6() { return static_cast(offsetof(HTTPMultiPartForm_t495EC7057C9CBD041C4F7F5C73534368C58AB3F3, ___CachedData_6)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_CachedData_6() const { return ___CachedData_6; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_CachedData_6() { return &___CachedData_6; } inline void set_CachedData_6(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___CachedData_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___CachedData_6), (void*)value); } }; // BestHTTP.HTTPProxy struct HTTPProxy_tFC2D52414714BA2872C2308AC3BCDB4AF918C51E : public Proxy_t84F0DDAE5A37016479C7094FFB8F78835B8BD4F6 { public: // System.Boolean BestHTTP.HTTPProxy::k__BackingField bool ___U3CIsTransparentU3Ek__BackingField_2; // System.Boolean BestHTTP.HTTPProxy::k__BackingField bool ___U3CSendWholeUriU3Ek__BackingField_3; // System.Boolean BestHTTP.HTTPProxy::k__BackingField bool ___U3CNonTransparentForHTTPSU3Ek__BackingField_4; public: inline static int32_t get_offset_of_U3CIsTransparentU3Ek__BackingField_2() { return static_cast(offsetof(HTTPProxy_tFC2D52414714BA2872C2308AC3BCDB4AF918C51E, ___U3CIsTransparentU3Ek__BackingField_2)); } inline bool get_U3CIsTransparentU3Ek__BackingField_2() const { return ___U3CIsTransparentU3Ek__BackingField_2; } inline bool* get_address_of_U3CIsTransparentU3Ek__BackingField_2() { return &___U3CIsTransparentU3Ek__BackingField_2; } inline void set_U3CIsTransparentU3Ek__BackingField_2(bool value) { ___U3CIsTransparentU3Ek__BackingField_2 = value; } inline static int32_t get_offset_of_U3CSendWholeUriU3Ek__BackingField_3() { return static_cast(offsetof(HTTPProxy_tFC2D52414714BA2872C2308AC3BCDB4AF918C51E, ___U3CSendWholeUriU3Ek__BackingField_3)); } inline bool get_U3CSendWholeUriU3Ek__BackingField_3() const { return ___U3CSendWholeUriU3Ek__BackingField_3; } inline bool* get_address_of_U3CSendWholeUriU3Ek__BackingField_3() { return &___U3CSendWholeUriU3Ek__BackingField_3; } inline void set_U3CSendWholeUriU3Ek__BackingField_3(bool value) { ___U3CSendWholeUriU3Ek__BackingField_3 = value; } inline static int32_t get_offset_of_U3CNonTransparentForHTTPSU3Ek__BackingField_4() { return static_cast(offsetof(HTTPProxy_tFC2D52414714BA2872C2308AC3BCDB4AF918C51E, ___U3CNonTransparentForHTTPSU3Ek__BackingField_4)); } inline bool get_U3CNonTransparentForHTTPSU3Ek__BackingField_4() const { return ___U3CNonTransparentForHTTPSU3Ek__BackingField_4; } inline bool* get_address_of_U3CNonTransparentForHTTPSU3Ek__BackingField_4() { return &___U3CNonTransparentForHTTPSU3Ek__BackingField_4; } inline void set_U3CNonTransparentForHTTPSU3Ek__BackingField_4(bool value) { ___U3CNonTransparentForHTTPSU3Ek__BackingField_4 = value; } }; // BestHTTP.Forms.HTTPUrlEncodedForm struct HTTPUrlEncodedForm_t8E2BE5AB6A6F3A3D8260820746C46CA2A35572AF : public HTTPFormBase_t62B2F52574B8465343CE4B246C6021BC42A45BF2 { public: // System.Byte[] BestHTTP.Forms.HTTPUrlEncodedForm::CachedData ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___CachedData_6; public: inline static int32_t get_offset_of_CachedData_6() { return static_cast(offsetof(HTTPUrlEncodedForm_t8E2BE5AB6A6F3A3D8260820746C46CA2A35572AF, ___CachedData_6)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_CachedData_6() const { return ___CachedData_6; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_CachedData_6() { return &___CachedData_6; } inline void set_CachedData_6(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___CachedData_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___CachedData_6), (void*)value); } }; // System.Int32 struct Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046 { public: // System.Int32 System.Int32::m_value int32_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046, ___m_value_0)); } inline int32_t get_m_value_0() const { return ___m_value_0; } inline int32_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int32_t value) { ___m_value_0 = value; } }; // System.Int64 struct Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3 { public: // System.Int64 System.Int64::m_value int64_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3, ___m_value_0)); } inline int64_t get_m_value_0() const { return ___m_value_0; } inline int64_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int64_t value) { ___m_value_0 = value; } }; // System.IntPtr struct IntPtr_t { public: // System.Void* System.IntPtr::m_value void* ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(IntPtr_t, ___m_value_0)); } inline void* get_m_value_0() const { return ___m_value_0; } inline void** get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(void* value) { ___m_value_0 = value; } }; struct IntPtr_t_StaticFields { public: // System.IntPtr System.IntPtr::Zero intptr_t ___Zero_1; public: inline static int32_t get_offset_of_Zero_1() { return static_cast(offsetof(IntPtr_t_StaticFields, ___Zero_1)); } inline intptr_t get_Zero_1() const { return ___Zero_1; } inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; } inline void set_Zero_1(intptr_t value) { ___Zero_1 = value; } }; // LoginController struct LoginController_t03F941FA0DBBB22F0DD5B41C1F54876FA93466B6 : public Singleton_1_tF63498CA94A978D333FED8B0AD98946D08CBEC59 { public: public: }; // UnityEngine.Quaternion struct Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 { public: // System.Single UnityEngine.Quaternion::x float ___x_0; // System.Single UnityEngine.Quaternion::y float ___y_1; // System.Single UnityEngine.Quaternion::z float ___z_2; // System.Single UnityEngine.Quaternion::w float ___w_3; public: inline static int32_t get_offset_of_x_0() { return static_cast(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4, ___x_0)); } inline float get_x_0() const { return ___x_0; } inline float* get_address_of_x_0() { return &___x_0; } inline void set_x_0(float value) { ___x_0 = value; } inline static int32_t get_offset_of_y_1() { return static_cast(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4, ___y_1)); } inline float get_y_1() const { return ___y_1; } inline float* get_address_of_y_1() { return &___y_1; } inline void set_y_1(float value) { ___y_1 = value; } inline static int32_t get_offset_of_z_2() { return static_cast(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4, ___z_2)); } inline float get_z_2() const { return ___z_2; } inline float* get_address_of_z_2() { return &___z_2; } inline void set_z_2(float value) { ___z_2 = value; } inline static int32_t get_offset_of_w_3() { return static_cast(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4, ___w_3)); } inline float get_w_3() const { return ___w_3; } inline float* get_address_of_w_3() { return &___w_3; } inline void set_w_3(float value) { ___w_3 = value; } }; struct Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4_StaticFields { public: // UnityEngine.Quaternion UnityEngine.Quaternion::identityQuaternion Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___identityQuaternion_4; public: inline static int32_t get_offset_of_identityQuaternion_4() { return static_cast(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4_StaticFields, ___identityQuaternion_4)); } inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 get_identityQuaternion_4() const { return ___identityQuaternion_4; } inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * get_address_of_identityQuaternion_4() { return &___identityQuaternion_4; } inline void set_identityQuaternion_4(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 value) { ___identityQuaternion_4 = value; } }; // BestHTTP.Forms.RawJsonForm struct RawJsonForm_tA9605806D5AACD3A9AF70E67E907BC172AB17FA8 : public HTTPFormBase_t62B2F52574B8465343CE4B246C6021BC42A45BF2 { public: // System.Byte[] BestHTTP.Forms.RawJsonForm::CachedData ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___CachedData_5; public: inline static int32_t get_offset_of_CachedData_5() { return static_cast(offsetof(RawJsonForm_tA9605806D5AACD3A9AF70E67E907BC172AB17FA8, ___CachedData_5)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_CachedData_5() const { return ___CachedData_5; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_CachedData_5() { return &___CachedData_5; } inline void set_CachedData_5(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___CachedData_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___CachedData_5), (void*)value); } }; // UnityEngine.Rect struct Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 { public: // System.Single UnityEngine.Rect::m_XMin float ___m_XMin_0; // System.Single UnityEngine.Rect::m_YMin float ___m_YMin_1; // System.Single UnityEngine.Rect::m_Width float ___m_Width_2; // System.Single UnityEngine.Rect::m_Height float ___m_Height_3; public: inline static int32_t get_offset_of_m_XMin_0() { return static_cast(offsetof(Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878, ___m_XMin_0)); } inline float get_m_XMin_0() const { return ___m_XMin_0; } inline float* get_address_of_m_XMin_0() { return &___m_XMin_0; } inline void set_m_XMin_0(float value) { ___m_XMin_0 = value; } inline static int32_t get_offset_of_m_YMin_1() { return static_cast(offsetof(Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878, ___m_YMin_1)); } inline float get_m_YMin_1() const { return ___m_YMin_1; } inline float* get_address_of_m_YMin_1() { return &___m_YMin_1; } inline void set_m_YMin_1(float value) { ___m_YMin_1 = value; } inline static int32_t get_offset_of_m_Width_2() { return static_cast(offsetof(Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878, ___m_Width_2)); } inline float get_m_Width_2() const { return ___m_Width_2; } inline float* get_address_of_m_Width_2() { return &___m_Width_2; } inline void set_m_Width_2(float value) { ___m_Width_2 = value; } inline static int32_t get_offset_of_m_Height_3() { return static_cast(offsetof(Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878, ___m_Height_3)); } inline float get_m_Height_3() const { return ___m_Height_3; } inline float* get_address_of_m_Height_3() { return &___m_Height_3; } inline void set_m_Height_3(float value) { ___m_Height_3 = value; } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom struct SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 : public Random_t6C9E9775A149D0ADCFEB4B252C408F03EE870118 { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.IRandomGenerator BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom::generator RuntimeObject* ___generator_5; public: inline static int32_t get_offset_of_generator_5() { return static_cast(offsetof(SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28, ___generator_5)); } inline RuntimeObject* get_generator_5() const { return ___generator_5; } inline RuntimeObject** get_address_of_generator_5() { return &___generator_5; } inline void set_generator_5(RuntimeObject* value) { ___generator_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___generator_5), (void*)value); } }; struct SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28_StaticFields { public: // System.Int64 BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom::counter int64_t ___counter_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom::master SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * ___master_4; // System.Double BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom::DoubleScale double ___DoubleScale_6; public: inline static int32_t get_offset_of_counter_3() { return static_cast(offsetof(SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28_StaticFields, ___counter_3)); } inline int64_t get_counter_3() const { return ___counter_3; } inline int64_t* get_address_of_counter_3() { return &___counter_3; } inline void set_counter_3(int64_t value) { ___counter_3 = value; } inline static int32_t get_offset_of_master_4() { return static_cast(offsetof(SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28_StaticFields, ___master_4)); } inline SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * get_master_4() const { return ___master_4; } inline SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 ** get_address_of_master_4() { return &___master_4; } inline void set_master_4(SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * value) { ___master_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___master_4), (void*)value); } inline static int32_t get_offset_of_DoubleScale_6() { return static_cast(offsetof(SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28_StaticFields, ___DoubleScale_6)); } inline double get_DoubleScale_6() const { return ___DoubleScale_6; } inline double* get_address_of_DoubleScale_6() { return &___DoubleScale_6; } inline void set_DoubleScale_6(double value) { ___DoubleScale_6 = value; } }; // System.Single struct Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E { public: // System.Single System.Single::m_value float ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E, ___m_value_0)); } inline float get_m_value_0() const { return ___m_value_0; } inline float* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(float value) { ___m_value_0 = value; } }; // UnityEngine.UI.SpriteState struct SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E { public: // UnityEngine.Sprite UnityEngine.UI.SpriteState::m_HighlightedSprite Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_HighlightedSprite_0; // UnityEngine.Sprite UnityEngine.UI.SpriteState::m_PressedSprite Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_PressedSprite_1; // UnityEngine.Sprite UnityEngine.UI.SpriteState::m_SelectedSprite Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_SelectedSprite_2; // UnityEngine.Sprite UnityEngine.UI.SpriteState::m_DisabledSprite Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_DisabledSprite_3; public: inline static int32_t get_offset_of_m_HighlightedSprite_0() { return static_cast(offsetof(SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E, ___m_HighlightedSprite_0)); } inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * get_m_HighlightedSprite_0() const { return ___m_HighlightedSprite_0; } inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 ** get_address_of_m_HighlightedSprite_0() { return &___m_HighlightedSprite_0; } inline void set_m_HighlightedSprite_0(Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * value) { ___m_HighlightedSprite_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_HighlightedSprite_0), (void*)value); } inline static int32_t get_offset_of_m_PressedSprite_1() { return static_cast(offsetof(SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E, ___m_PressedSprite_1)); } inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * get_m_PressedSprite_1() const { return ___m_PressedSprite_1; } inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 ** get_address_of_m_PressedSprite_1() { return &___m_PressedSprite_1; } inline void set_m_PressedSprite_1(Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * value) { ___m_PressedSprite_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_PressedSprite_1), (void*)value); } inline static int32_t get_offset_of_m_SelectedSprite_2() { return static_cast(offsetof(SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E, ___m_SelectedSprite_2)); } inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * get_m_SelectedSprite_2() const { return ___m_SelectedSprite_2; } inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 ** get_address_of_m_SelectedSprite_2() { return &___m_SelectedSprite_2; } inline void set_m_SelectedSprite_2(Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * value) { ___m_SelectedSprite_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_SelectedSprite_2), (void*)value); } inline static int32_t get_offset_of_m_DisabledSprite_3() { return static_cast(offsetof(SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E, ___m_DisabledSprite_3)); } inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * get_m_DisabledSprite_3() const { return ___m_DisabledSprite_3; } inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 ** get_address_of_m_DisabledSprite_3() { return &___m_DisabledSprite_3; } inline void set_m_DisabledSprite_3(Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * value) { ___m_DisabledSprite_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_DisabledSprite_3), (void*)value); } }; // Native definition for P/Invoke marshalling of UnityEngine.UI.SpriteState struct SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E_marshaled_pinvoke { Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_HighlightedSprite_0; Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_PressedSprite_1; Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_SelectedSprite_2; Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_DisabledSprite_3; }; // Native definition for COM marshalling of UnityEngine.UI.SpriteState struct SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E_marshaled_com { Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_HighlightedSprite_0; Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_PressedSprite_1; Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_SelectedSprite_2; Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_DisabledSprite_3; }; // System.IO.Stream struct Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB : public MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 { public: // System.IO.Stream/ReadWriteTask System.IO.Stream::_activeReadWriteTask ReadWriteTask_t32CD2C230786712954C1DB518DBE420A1F4C7974 * ____activeReadWriteTask_3; // System.Threading.SemaphoreSlim System.IO.Stream::_asyncActiveSemaphore SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385 * ____asyncActiveSemaphore_4; public: inline static int32_t get_offset_of__activeReadWriteTask_3() { return static_cast(offsetof(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB, ____activeReadWriteTask_3)); } inline ReadWriteTask_t32CD2C230786712954C1DB518DBE420A1F4C7974 * get__activeReadWriteTask_3() const { return ____activeReadWriteTask_3; } inline ReadWriteTask_t32CD2C230786712954C1DB518DBE420A1F4C7974 ** get_address_of__activeReadWriteTask_3() { return &____activeReadWriteTask_3; } inline void set__activeReadWriteTask_3(ReadWriteTask_t32CD2C230786712954C1DB518DBE420A1F4C7974 * value) { ____activeReadWriteTask_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____activeReadWriteTask_3), (void*)value); } inline static int32_t get_offset_of__asyncActiveSemaphore_4() { return static_cast(offsetof(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB, ____asyncActiveSemaphore_4)); } inline SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385 * get__asyncActiveSemaphore_4() const { return ____asyncActiveSemaphore_4; } inline SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385 ** get_address_of__asyncActiveSemaphore_4() { return &____asyncActiveSemaphore_4; } inline void set__asyncActiveSemaphore_4(SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385 * value) { ____asyncActiveSemaphore_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____asyncActiveSemaphore_4), (void*)value); } }; struct Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_StaticFields { public: // System.IO.Stream System.IO.Stream::Null Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___Null_1; public: inline static int32_t get_offset_of_Null_1() { return static_cast(offsetof(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_StaticFields, ___Null_1)); } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_Null_1() const { return ___Null_1; } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_Null_1() { return &___Null_1; } inline void set_Null_1(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value) { ___Null_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Null_1), (void*)value); } }; // System.UInt32 struct UInt32_tE60352A06233E4E69DD198BCC67142159F686B15 { public: // System.UInt32 System.UInt32::m_value uint32_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(UInt32_tE60352A06233E4E69DD198BCC67142159F686B15, ___m_value_0)); } inline uint32_t get_m_value_0() const { return ___m_value_0; } inline uint32_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint32_t value) { ___m_value_0 = value; } }; // System.UInt64 struct UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281 { public: // System.UInt64 System.UInt64::m_value uint64_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281, ___m_value_0)); } inline uint64_t get_m_value_0() const { return ___m_value_0; } inline uint64_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint64_t value) { ___m_value_0 = value; } }; // UnityEngine.Events.UnityEvent struct UnityEvent_tA0EA9BC49FD7D5185E7A238EF2E0E6F5D0EE27F4 : public UnityEventBase_tBB43047292084BA63C5CBB1A379A8BB88611C6FB { public: // System.Object[] UnityEngine.Events.UnityEvent::m_InvokeArray ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___m_InvokeArray_3; public: inline static int32_t get_offset_of_m_InvokeArray_3() { return static_cast(offsetof(UnityEvent_tA0EA9BC49FD7D5185E7A238EF2E0E6F5D0EE27F4, ___m_InvokeArray_3)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_m_InvokeArray_3() const { return ___m_InvokeArray_3; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_m_InvokeArray_3() { return &___m_InvokeArray_3; } inline void set_m_InvokeArray_3(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ___m_InvokeArray_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_InvokeArray_3), (void*)value); } }; // UnityEngine.Vector2 struct Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 { public: // System.Single UnityEngine.Vector2::x float ___x_0; // System.Single UnityEngine.Vector2::y float ___y_1; public: inline static int32_t get_offset_of_x_0() { return static_cast(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9, ___x_0)); } inline float get_x_0() const { return ___x_0; } inline float* get_address_of_x_0() { return &___x_0; } inline void set_x_0(float value) { ___x_0 = value; } inline static int32_t get_offset_of_y_1() { return static_cast(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9, ___y_1)); } inline float get_y_1() const { return ___y_1; } inline float* get_address_of_y_1() { return &___y_1; } inline void set_y_1(float value) { ___y_1 = value; } }; struct Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields { public: // UnityEngine.Vector2 UnityEngine.Vector2::zeroVector Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___zeroVector_2; // UnityEngine.Vector2 UnityEngine.Vector2::oneVector Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___oneVector_3; // UnityEngine.Vector2 UnityEngine.Vector2::upVector Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___upVector_4; // UnityEngine.Vector2 UnityEngine.Vector2::downVector Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___downVector_5; // UnityEngine.Vector2 UnityEngine.Vector2::leftVector Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___leftVector_6; // UnityEngine.Vector2 UnityEngine.Vector2::rightVector Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___rightVector_7; // UnityEngine.Vector2 UnityEngine.Vector2::positiveInfinityVector Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___positiveInfinityVector_8; // UnityEngine.Vector2 UnityEngine.Vector2::negativeInfinityVector Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___negativeInfinityVector_9; public: inline static int32_t get_offset_of_zeroVector_2() { return static_cast(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___zeroVector_2)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_zeroVector_2() const { return ___zeroVector_2; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_zeroVector_2() { return &___zeroVector_2; } inline void set_zeroVector_2(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___zeroVector_2 = value; } inline static int32_t get_offset_of_oneVector_3() { return static_cast(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___oneVector_3)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_oneVector_3() const { return ___oneVector_3; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_oneVector_3() { return &___oneVector_3; } inline void set_oneVector_3(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___oneVector_3 = value; } inline static int32_t get_offset_of_upVector_4() { return static_cast(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___upVector_4)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_upVector_4() const { return ___upVector_4; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_upVector_4() { return &___upVector_4; } inline void set_upVector_4(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___upVector_4 = value; } inline static int32_t get_offset_of_downVector_5() { return static_cast(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___downVector_5)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_downVector_5() const { return ___downVector_5; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_downVector_5() { return &___downVector_5; } inline void set_downVector_5(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___downVector_5 = value; } inline static int32_t get_offset_of_leftVector_6() { return static_cast(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___leftVector_6)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_leftVector_6() const { return ___leftVector_6; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_leftVector_6() { return &___leftVector_6; } inline void set_leftVector_6(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___leftVector_6 = value; } inline static int32_t get_offset_of_rightVector_7() { return static_cast(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___rightVector_7)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_rightVector_7() const { return ___rightVector_7; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_rightVector_7() { return &___rightVector_7; } inline void set_rightVector_7(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___rightVector_7 = value; } inline static int32_t get_offset_of_positiveInfinityVector_8() { return static_cast(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___positiveInfinityVector_8)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_positiveInfinityVector_8() const { return ___positiveInfinityVector_8; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_positiveInfinityVector_8() { return &___positiveInfinityVector_8; } inline void set_positiveInfinityVector_8(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___positiveInfinityVector_8 = value; } inline static int32_t get_offset_of_negativeInfinityVector_9() { return static_cast(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___negativeInfinityVector_9)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_negativeInfinityVector_9() const { return ___negativeInfinityVector_9; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_negativeInfinityVector_9() { return &___negativeInfinityVector_9; } inline void set_negativeInfinityVector_9(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___negativeInfinityVector_9 = value; } }; // UnityEngine.Vector3 struct Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E { public: // System.Single UnityEngine.Vector3::x float ___x_2; // System.Single UnityEngine.Vector3::y float ___y_3; // System.Single UnityEngine.Vector3::z float ___z_4; public: inline static int32_t get_offset_of_x_2() { return static_cast(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E, ___x_2)); } inline float get_x_2() const { return ___x_2; } inline float* get_address_of_x_2() { return &___x_2; } inline void set_x_2(float value) { ___x_2 = value; } inline static int32_t get_offset_of_y_3() { return static_cast(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E, ___y_3)); } inline float get_y_3() const { return ___y_3; } inline float* get_address_of_y_3() { return &___y_3; } inline void set_y_3(float value) { ___y_3 = value; } inline static int32_t get_offset_of_z_4() { return static_cast(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E, ___z_4)); } inline float get_z_4() const { return ___z_4; } inline float* get_address_of_z_4() { return &___z_4; } inline void set_z_4(float value) { ___z_4 = value; } }; struct Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields { public: // UnityEngine.Vector3 UnityEngine.Vector3::zeroVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___zeroVector_5; // UnityEngine.Vector3 UnityEngine.Vector3::oneVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___oneVector_6; // UnityEngine.Vector3 UnityEngine.Vector3::upVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___upVector_7; // UnityEngine.Vector3 UnityEngine.Vector3::downVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___downVector_8; // UnityEngine.Vector3 UnityEngine.Vector3::leftVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___leftVector_9; // UnityEngine.Vector3 UnityEngine.Vector3::rightVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___rightVector_10; // UnityEngine.Vector3 UnityEngine.Vector3::forwardVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___forwardVector_11; // UnityEngine.Vector3 UnityEngine.Vector3::backVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___backVector_12; // UnityEngine.Vector3 UnityEngine.Vector3::positiveInfinityVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___positiveInfinityVector_13; // UnityEngine.Vector3 UnityEngine.Vector3::negativeInfinityVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___negativeInfinityVector_14; public: inline static int32_t get_offset_of_zeroVector_5() { return static_cast(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___zeroVector_5)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_zeroVector_5() const { return ___zeroVector_5; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_zeroVector_5() { return &___zeroVector_5; } inline void set_zeroVector_5(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___zeroVector_5 = value; } inline static int32_t get_offset_of_oneVector_6() { return static_cast(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___oneVector_6)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_oneVector_6() const { return ___oneVector_6; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_oneVector_6() { return &___oneVector_6; } inline void set_oneVector_6(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___oneVector_6 = value; } inline static int32_t get_offset_of_upVector_7() { return static_cast(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___upVector_7)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_upVector_7() const { return ___upVector_7; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_upVector_7() { return &___upVector_7; } inline void set_upVector_7(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___upVector_7 = value; } inline static int32_t get_offset_of_downVector_8() { return static_cast(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___downVector_8)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_downVector_8() const { return ___downVector_8; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_downVector_8() { return &___downVector_8; } inline void set_downVector_8(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___downVector_8 = value; } inline static int32_t get_offset_of_leftVector_9() { return static_cast(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___leftVector_9)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_leftVector_9() const { return ___leftVector_9; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_leftVector_9() { return &___leftVector_9; } inline void set_leftVector_9(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___leftVector_9 = value; } inline static int32_t get_offset_of_rightVector_10() { return static_cast(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___rightVector_10)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_rightVector_10() const { return ___rightVector_10; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_rightVector_10() { return &___rightVector_10; } inline void set_rightVector_10(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___rightVector_10 = value; } inline static int32_t get_offset_of_forwardVector_11() { return static_cast(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___forwardVector_11)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_forwardVector_11() const { return ___forwardVector_11; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_forwardVector_11() { return &___forwardVector_11; } inline void set_forwardVector_11(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___forwardVector_11 = value; } inline static int32_t get_offset_of_backVector_12() { return static_cast(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___backVector_12)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_backVector_12() const { return ___backVector_12; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_backVector_12() { return &___backVector_12; } inline void set_backVector_12(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___backVector_12 = value; } inline static int32_t get_offset_of_positiveInfinityVector_13() { return static_cast(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___positiveInfinityVector_13)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_positiveInfinityVector_13() const { return ___positiveInfinityVector_13; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_positiveInfinityVector_13() { return &___positiveInfinityVector_13; } inline void set_positiveInfinityVector_13(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___positiveInfinityVector_13 = value; } inline static int32_t get_offset_of_negativeInfinityVector_14() { return static_cast(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___negativeInfinityVector_14)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_negativeInfinityVector_14() const { return ___negativeInfinityVector_14; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_negativeInfinityVector_14() { return &___negativeInfinityVector_14; } inline void set_negativeInfinityVector_14(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___negativeInfinityVector_14 = value; } }; // UnityEngine.Vector4 struct Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 { public: // System.Single UnityEngine.Vector4::x float ___x_1; // System.Single UnityEngine.Vector4::y float ___y_2; // System.Single UnityEngine.Vector4::z float ___z_3; // System.Single UnityEngine.Vector4::w float ___w_4; public: inline static int32_t get_offset_of_x_1() { return static_cast(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7, ___x_1)); } inline float get_x_1() const { return ___x_1; } inline float* get_address_of_x_1() { return &___x_1; } inline void set_x_1(float value) { ___x_1 = value; } inline static int32_t get_offset_of_y_2() { return static_cast(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7, ___y_2)); } inline float get_y_2() const { return ___y_2; } inline float* get_address_of_y_2() { return &___y_2; } inline void set_y_2(float value) { ___y_2 = value; } inline static int32_t get_offset_of_z_3() { return static_cast(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7, ___z_3)); } inline float get_z_3() const { return ___z_3; } inline float* get_address_of_z_3() { return &___z_3; } inline void set_z_3(float value) { ___z_3 = value; } inline static int32_t get_offset_of_w_4() { return static_cast(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7, ___w_4)); } inline float get_w_4() const { return ___w_4; } inline float* get_address_of_w_4() { return &___w_4; } inline void set_w_4(float value) { ___w_4 = value; } }; struct Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_StaticFields { public: // UnityEngine.Vector4 UnityEngine.Vector4::zeroVector Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___zeroVector_5; // UnityEngine.Vector4 UnityEngine.Vector4::oneVector Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___oneVector_6; // UnityEngine.Vector4 UnityEngine.Vector4::positiveInfinityVector Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___positiveInfinityVector_7; // UnityEngine.Vector4 UnityEngine.Vector4::negativeInfinityVector Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___negativeInfinityVector_8; public: inline static int32_t get_offset_of_zeroVector_5() { return static_cast(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_StaticFields, ___zeroVector_5)); } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_zeroVector_5() const { return ___zeroVector_5; } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_zeroVector_5() { return &___zeroVector_5; } inline void set_zeroVector_5(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value) { ___zeroVector_5 = value; } inline static int32_t get_offset_of_oneVector_6() { return static_cast(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_StaticFields, ___oneVector_6)); } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_oneVector_6() const { return ___oneVector_6; } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_oneVector_6() { return &___oneVector_6; } inline void set_oneVector_6(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value) { ___oneVector_6 = value; } inline static int32_t get_offset_of_positiveInfinityVector_7() { return static_cast(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_StaticFields, ___positiveInfinityVector_7)); } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_positiveInfinityVector_7() const { return ___positiveInfinityVector_7; } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_positiveInfinityVector_7() { return &___positiveInfinityVector_7; } inline void set_positiveInfinityVector_7(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value) { ___positiveInfinityVector_7 = value; } inline static int32_t get_offset_of_negativeInfinityVector_8() { return static_cast(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_StaticFields, ___negativeInfinityVector_8)); } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_negativeInfinityVector_8() const { return ___negativeInfinityVector_8; } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_negativeInfinityVector_8() { return &___negativeInfinityVector_8; } inline void set_negativeInfinityVector_8(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value) { ___negativeInfinityVector_8 = value; } }; // System.Void struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5 { public: union { struct { }; uint8_t Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5__padding[1]; }; public: }; // System.Collections.Generic.Dictionary`2/Enumerator struct Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 { public: // System.Collections.Generic.Dictionary`2 System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2 System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast(offsetof(Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0, ___dictionary_0)); } inline Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast(offsetof(Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast(offsetof(Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast(offsetof(Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0, ___current_3)); } inline KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 get_current_3() const { return ___current_3; } inline KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___value_1), (void*)NULL); #endif } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast(offsetof(Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2/Enumerator> struct Enumerator_t87845B18CF1C429E8B015F97E7E640B1D69D1995 { public: // System.Collections.Generic.Dictionary`2 System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_t3CA977FBCA3158664D7AB53A25D36155F805ABB3 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2 System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_tC0803126FFC93A1688084924A6D491E22FCDEBF5 ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast(offsetof(Enumerator_t87845B18CF1C429E8B015F97E7E640B1D69D1995, ___dictionary_0)); } inline Dictionary_2_t3CA977FBCA3158664D7AB53A25D36155F805ABB3 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t3CA977FBCA3158664D7AB53A25D36155F805ABB3 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t3CA977FBCA3158664D7AB53A25D36155F805ABB3 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast(offsetof(Enumerator_t87845B18CF1C429E8B015F97E7E640B1D69D1995, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast(offsetof(Enumerator_t87845B18CF1C429E8B015F97E7E640B1D69D1995, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast(offsetof(Enumerator_t87845B18CF1C429E8B015F97E7E640B1D69D1995, ___current_3)); } inline KeyValuePair_2_tC0803126FFC93A1688084924A6D491E22FCDEBF5 get_current_3() const { return ___current_3; } inline KeyValuePair_2_tC0803126FFC93A1688084924A6D491E22FCDEBF5 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_tC0803126FFC93A1688084924A6D491E22FCDEBF5 value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___value_1), (void*)NULL); #endif } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast(offsetof(Enumerator_t87845B18CF1C429E8B015F97E7E640B1D69D1995, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2/Enumerator> struct Enumerator_t165535373A2C041075C388ED21DF73971A40816A { public: // System.Collections.Generic.Dictionary`2 System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086 * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2 System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_t51A34E5FB59AD087543207A2587CEF7C2B432E53 ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast(offsetof(Enumerator_t165535373A2C041075C388ED21DF73971A40816A, ___dictionary_0)); } inline Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086 * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086 ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086 * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast(offsetof(Enumerator_t165535373A2C041075C388ED21DF73971A40816A, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast(offsetof(Enumerator_t165535373A2C041075C388ED21DF73971A40816A, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast(offsetof(Enumerator_t165535373A2C041075C388ED21DF73971A40816A, ___current_3)); } inline KeyValuePair_2_t51A34E5FB59AD087543207A2587CEF7C2B432E53 get_current_3() const { return ___current_3; } inline KeyValuePair_2_t51A34E5FB59AD087543207A2587CEF7C2B432E53 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t51A34E5FB59AD087543207A2587CEF7C2B432E53 value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___value_1), (void*)NULL); #endif } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast(offsetof(Enumerator_t165535373A2C041075C388ED21DF73971A40816A, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Collections.Generic.Dictionary`2/Enumerator struct Enumerator_t38BE2B834827855AC34872152506CFEEF8E92C28 { public: // System.Collections.Generic.Dictionary`2 System.Collections.Generic.Dictionary`2/Enumerator::dictionary Dictionary_2_tF5B4A5A925F35194AB6289544146EEDFF54229AC * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2 System.Collections.Generic.Dictionary`2/Enumerator::current KeyValuePair_2_tA61128FB2E93C19D2A93737C07B7B96AE2F20634 ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast(offsetof(Enumerator_t38BE2B834827855AC34872152506CFEEF8E92C28, ___dictionary_0)); } inline Dictionary_2_tF5B4A5A925F35194AB6289544146EEDFF54229AC * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_tF5B4A5A925F35194AB6289544146EEDFF54229AC ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_tF5B4A5A925F35194AB6289544146EEDFF54229AC * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast(offsetof(Enumerator_t38BE2B834827855AC34872152506CFEEF8E92C28, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast(offsetof(Enumerator_t38BE2B834827855AC34872152506CFEEF8E92C28, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast(offsetof(Enumerator_t38BE2B834827855AC34872152506CFEEF8E92C28, ___current_3)); } inline KeyValuePair_2_tA61128FB2E93C19D2A93737C07B7B96AE2F20634 get_current_3() const { return ___current_3; } inline KeyValuePair_2_tA61128FB2E93C19D2A93737C07B7B96AE2F20634 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_tA61128FB2E93C19D2A93737C07B7B96AE2F20634 value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___value_1), (void*)NULL); #endif } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast(offsetof(Enumerator_t38BE2B834827855AC34872152506CFEEF8E92C28, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; // System.Net.Sockets.AddressFamily struct AddressFamily_tFCF4C888B95C069AB2D4720EC8C2E19453C28B33 { public: // System.Int32 System.Net.Sockets.AddressFamily::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(AddressFamily_tFCF4C888B95C069AB2D4720EC8C2E19453C28B33, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Net.Security.AuthenticatedStream struct AuthenticatedStream_t792DA994D6AAC4A102749A9530E95D8F049BF608 : public Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB { public: // System.IO.Stream System.Net.Security.AuthenticatedStream::_InnerStream Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ____InnerStream_5; // System.Boolean System.Net.Security.AuthenticatedStream::_LeaveStreamOpen bool ____LeaveStreamOpen_6; public: inline static int32_t get_offset_of__InnerStream_5() { return static_cast(offsetof(AuthenticatedStream_t792DA994D6AAC4A102749A9530E95D8F049BF608, ____InnerStream_5)); } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get__InnerStream_5() const { return ____InnerStream_5; } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of__InnerStream_5() { return &____InnerStream_5; } inline void set__InnerStream_5(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value) { ____InnerStream_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____InnerStream_5), (void*)value); } inline static int32_t get_offset_of__LeaveStreamOpen_6() { return static_cast(offsetof(AuthenticatedStream_t792DA994D6AAC4A102749A9530E95D8F049BF608, ____LeaveStreamOpen_6)); } inline bool get__LeaveStreamOpen_6() const { return ____LeaveStreamOpen_6; } inline bool* get_address_of__LeaveStreamOpen_6() { return &____LeaveStreamOpen_6; } inline void set__LeaveStreamOpen_6(bool value) { ____LeaveStreamOpen_6 = value; } }; // BestHTTP.Authentication.AuthenticationTypes struct AuthenticationTypes_tAAB7516439D698C29CCBC6978D6FCE9724585534 { public: // System.Int32 BestHTTP.Authentication.AuthenticationTypes::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(AuthenticationTypes_tAAB7516439D698C29CCBC6978D6FCE9724585534, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Reflection.BindingFlags struct BindingFlags_tAAAB07D9AC588F0D55D844E51D7035E96DF94733 { public: // System.Int32 System.Reflection.BindingFlags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(BindingFlags_tAAAB07D9AC588F0D55D844E51D7035E96DF94733, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // BluetoothStatusEnum struct BluetoothStatusEnum_t72984947649944081E9B448751BB5F5A0410E905 { public: // System.Int32 BluetoothStatusEnum::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(BluetoothStatusEnum_t72984947649944081E9B448751BB5F5A0410E905, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // BestHTTP.Extensions.BufferPoolMemoryStream struct BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B : public Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB { public: // System.Boolean BestHTTP.Extensions.BufferPoolMemoryStream::canWrite bool ___canWrite_5; // System.Boolean BestHTTP.Extensions.BufferPoolMemoryStream::allowGetBuffer bool ___allowGetBuffer_6; // System.Int32 BestHTTP.Extensions.BufferPoolMemoryStream::capacity int32_t ___capacity_7; // System.Int32 BestHTTP.Extensions.BufferPoolMemoryStream::length int32_t ___length_8; // System.Byte[] BestHTTP.Extensions.BufferPoolMemoryStream::internalBuffer ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___internalBuffer_9; // System.Int32 BestHTTP.Extensions.BufferPoolMemoryStream::initialIndex int32_t ___initialIndex_10; // System.Boolean BestHTTP.Extensions.BufferPoolMemoryStream::expandable bool ___expandable_11; // System.Boolean BestHTTP.Extensions.BufferPoolMemoryStream::streamClosed bool ___streamClosed_12; // System.Int32 BestHTTP.Extensions.BufferPoolMemoryStream::position int32_t ___position_13; // System.Int32 BestHTTP.Extensions.BufferPoolMemoryStream::dirty_bytes int32_t ___dirty_bytes_14; public: inline static int32_t get_offset_of_canWrite_5() { return static_cast(offsetof(BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B, ___canWrite_5)); } inline bool get_canWrite_5() const { return ___canWrite_5; } inline bool* get_address_of_canWrite_5() { return &___canWrite_5; } inline void set_canWrite_5(bool value) { ___canWrite_5 = value; } inline static int32_t get_offset_of_allowGetBuffer_6() { return static_cast(offsetof(BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B, ___allowGetBuffer_6)); } inline bool get_allowGetBuffer_6() const { return ___allowGetBuffer_6; } inline bool* get_address_of_allowGetBuffer_6() { return &___allowGetBuffer_6; } inline void set_allowGetBuffer_6(bool value) { ___allowGetBuffer_6 = value; } inline static int32_t get_offset_of_capacity_7() { return static_cast(offsetof(BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B, ___capacity_7)); } inline int32_t get_capacity_7() const { return ___capacity_7; } inline int32_t* get_address_of_capacity_7() { return &___capacity_7; } inline void set_capacity_7(int32_t value) { ___capacity_7 = value; } inline static int32_t get_offset_of_length_8() { return static_cast(offsetof(BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B, ___length_8)); } inline int32_t get_length_8() const { return ___length_8; } inline int32_t* get_address_of_length_8() { return &___length_8; } inline void set_length_8(int32_t value) { ___length_8 = value; } inline static int32_t get_offset_of_internalBuffer_9() { return static_cast(offsetof(BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B, ___internalBuffer_9)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_internalBuffer_9() const { return ___internalBuffer_9; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_internalBuffer_9() { return &___internalBuffer_9; } inline void set_internalBuffer_9(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___internalBuffer_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___internalBuffer_9), (void*)value); } inline static int32_t get_offset_of_initialIndex_10() { return static_cast(offsetof(BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B, ___initialIndex_10)); } inline int32_t get_initialIndex_10() const { return ___initialIndex_10; } inline int32_t* get_address_of_initialIndex_10() { return &___initialIndex_10; } inline void set_initialIndex_10(int32_t value) { ___initialIndex_10 = value; } inline static int32_t get_offset_of_expandable_11() { return static_cast(offsetof(BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B, ___expandable_11)); } inline bool get_expandable_11() const { return ___expandable_11; } inline bool* get_address_of_expandable_11() { return &___expandable_11; } inline void set_expandable_11(bool value) { ___expandable_11 = value; } inline static int32_t get_offset_of_streamClosed_12() { return static_cast(offsetof(BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B, ___streamClosed_12)); } inline bool get_streamClosed_12() const { return ___streamClosed_12; } inline bool* get_address_of_streamClosed_12() { return &___streamClosed_12; } inline void set_streamClosed_12(bool value) { ___streamClosed_12 = value; } inline static int32_t get_offset_of_position_13() { return static_cast(offsetof(BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B, ___position_13)); } inline int32_t get_position_13() const { return ___position_13; } inline int32_t* get_address_of_position_13() { return &___position_13; } inline void set_position_13(int32_t value) { ___position_13 = value; } inline static int32_t get_offset_of_dirty_bytes_14() { return static_cast(offsetof(BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B, ___dirty_bytes_14)); } inline int32_t get_dirty_bytes_14() const { return ___dirty_bytes_14; } inline int32_t* get_address_of_dirty_bytes_14() { return &___dirty_bytes_14; } inline void set_dirty_bytes_14(int32_t value) { ___dirty_bytes_14 = value; } }; // UnityEngine.UI.ColorBlock struct ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 { public: // UnityEngine.Color UnityEngine.UI.ColorBlock::m_NormalColor Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___m_NormalColor_0; // UnityEngine.Color UnityEngine.UI.ColorBlock::m_HighlightedColor Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___m_HighlightedColor_1; // UnityEngine.Color UnityEngine.UI.ColorBlock::m_PressedColor Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___m_PressedColor_2; // UnityEngine.Color UnityEngine.UI.ColorBlock::m_SelectedColor Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___m_SelectedColor_3; // UnityEngine.Color UnityEngine.UI.ColorBlock::m_DisabledColor Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___m_DisabledColor_4; // System.Single UnityEngine.UI.ColorBlock::m_ColorMultiplier float ___m_ColorMultiplier_5; // System.Single UnityEngine.UI.ColorBlock::m_FadeDuration float ___m_FadeDuration_6; public: inline static int32_t get_offset_of_m_NormalColor_0() { return static_cast(offsetof(ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955, ___m_NormalColor_0)); } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_m_NormalColor_0() const { return ___m_NormalColor_0; } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_m_NormalColor_0() { return &___m_NormalColor_0; } inline void set_m_NormalColor_0(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value) { ___m_NormalColor_0 = value; } inline static int32_t get_offset_of_m_HighlightedColor_1() { return static_cast(offsetof(ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955, ___m_HighlightedColor_1)); } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_m_HighlightedColor_1() const { return ___m_HighlightedColor_1; } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_m_HighlightedColor_1() { return &___m_HighlightedColor_1; } inline void set_m_HighlightedColor_1(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value) { ___m_HighlightedColor_1 = value; } inline static int32_t get_offset_of_m_PressedColor_2() { return static_cast(offsetof(ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955, ___m_PressedColor_2)); } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_m_PressedColor_2() const { return ___m_PressedColor_2; } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_m_PressedColor_2() { return &___m_PressedColor_2; } inline void set_m_PressedColor_2(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value) { ___m_PressedColor_2 = value; } inline static int32_t get_offset_of_m_SelectedColor_3() { return static_cast(offsetof(ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955, ___m_SelectedColor_3)); } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_m_SelectedColor_3() const { return ___m_SelectedColor_3; } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_m_SelectedColor_3() { return &___m_SelectedColor_3; } inline void set_m_SelectedColor_3(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value) { ___m_SelectedColor_3 = value; } inline static int32_t get_offset_of_m_DisabledColor_4() { return static_cast(offsetof(ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955, ___m_DisabledColor_4)); } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_m_DisabledColor_4() const { return ___m_DisabledColor_4; } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_m_DisabledColor_4() { return &___m_DisabledColor_4; } inline void set_m_DisabledColor_4(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value) { ___m_DisabledColor_4 = value; } inline static int32_t get_offset_of_m_ColorMultiplier_5() { return static_cast(offsetof(ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955, ___m_ColorMultiplier_5)); } inline float get_m_ColorMultiplier_5() const { return ___m_ColorMultiplier_5; } inline float* get_address_of_m_ColorMultiplier_5() { return &___m_ColorMultiplier_5; } inline void set_m_ColorMultiplier_5(float value) { ___m_ColorMultiplier_5 = value; } inline static int32_t get_offset_of_m_FadeDuration_6() { return static_cast(offsetof(ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955, ___m_FadeDuration_6)); } inline float get_m_FadeDuration_6() const { return ___m_FadeDuration_6; } inline float* get_address_of_m_FadeDuration_6() { return &___m_FadeDuration_6; } inline void set_m_FadeDuration_6(float value) { ___m_FadeDuration_6 = value; } }; struct ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955_StaticFields { public: // UnityEngine.UI.ColorBlock UnityEngine.UI.ColorBlock::defaultColorBlock ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 ___defaultColorBlock_7; public: inline static int32_t get_offset_of_defaultColorBlock_7() { return static_cast(offsetof(ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955_StaticFields, ___defaultColorBlock_7)); } inline ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 get_defaultColorBlock_7() const { return ___defaultColorBlock_7; } inline ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 * get_address_of_defaultColorBlock_7() { return &___defaultColorBlock_7; } inline void set_defaultColorBlock_7(ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 value) { ___defaultColorBlock_7 = value; } }; // BestHTTP.Cookies.Cookie struct Cookie_tC21D2404C4CCA8449C9DB970939F9DFB8CE61EC2 : public RuntimeObject { public: // System.String BestHTTP.Cookies.Cookie::k__BackingField String_t* ___U3CNameU3Ek__BackingField_1; // System.String BestHTTP.Cookies.Cookie::k__BackingField String_t* ___U3CValueU3Ek__BackingField_2; // System.DateTime BestHTTP.Cookies.Cookie::k__BackingField DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___U3CDateU3Ek__BackingField_3; // System.DateTime BestHTTP.Cookies.Cookie::k__BackingField DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___U3CLastAccessU3Ek__BackingField_4; // System.DateTime BestHTTP.Cookies.Cookie::k__BackingField DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___U3CExpiresU3Ek__BackingField_5; // System.Int64 BestHTTP.Cookies.Cookie::k__BackingField int64_t ___U3CMaxAgeU3Ek__BackingField_6; // System.Boolean BestHTTP.Cookies.Cookie::k__BackingField bool ___U3CIsSessionU3Ek__BackingField_7; // System.String BestHTTP.Cookies.Cookie::k__BackingField String_t* ___U3CDomainU3Ek__BackingField_8; // System.String BestHTTP.Cookies.Cookie::k__BackingField String_t* ___U3CPathU3Ek__BackingField_9; // System.Boolean BestHTTP.Cookies.Cookie::k__BackingField bool ___U3CIsSecureU3Ek__BackingField_10; // System.Boolean BestHTTP.Cookies.Cookie::k__BackingField bool ___U3CIsHttpOnlyU3Ek__BackingField_11; public: inline static int32_t get_offset_of_U3CNameU3Ek__BackingField_1() { return static_cast(offsetof(Cookie_tC21D2404C4CCA8449C9DB970939F9DFB8CE61EC2, ___U3CNameU3Ek__BackingField_1)); } inline String_t* get_U3CNameU3Ek__BackingField_1() const { return ___U3CNameU3Ek__BackingField_1; } inline String_t** get_address_of_U3CNameU3Ek__BackingField_1() { return &___U3CNameU3Ek__BackingField_1; } inline void set_U3CNameU3Ek__BackingField_1(String_t* value) { ___U3CNameU3Ek__BackingField_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CNameU3Ek__BackingField_1), (void*)value); } inline static int32_t get_offset_of_U3CValueU3Ek__BackingField_2() { return static_cast(offsetof(Cookie_tC21D2404C4CCA8449C9DB970939F9DFB8CE61EC2, ___U3CValueU3Ek__BackingField_2)); } inline String_t* get_U3CValueU3Ek__BackingField_2() const { return ___U3CValueU3Ek__BackingField_2; } inline String_t** get_address_of_U3CValueU3Ek__BackingField_2() { return &___U3CValueU3Ek__BackingField_2; } inline void set_U3CValueU3Ek__BackingField_2(String_t* value) { ___U3CValueU3Ek__BackingField_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CValueU3Ek__BackingField_2), (void*)value); } inline static int32_t get_offset_of_U3CDateU3Ek__BackingField_3() { return static_cast(offsetof(Cookie_tC21D2404C4CCA8449C9DB970939F9DFB8CE61EC2, ___U3CDateU3Ek__BackingField_3)); } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_U3CDateU3Ek__BackingField_3() const { return ___U3CDateU3Ek__BackingField_3; } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_U3CDateU3Ek__BackingField_3() { return &___U3CDateU3Ek__BackingField_3; } inline void set_U3CDateU3Ek__BackingField_3(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value) { ___U3CDateU3Ek__BackingField_3 = value; } inline static int32_t get_offset_of_U3CLastAccessU3Ek__BackingField_4() { return static_cast(offsetof(Cookie_tC21D2404C4CCA8449C9DB970939F9DFB8CE61EC2, ___U3CLastAccessU3Ek__BackingField_4)); } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_U3CLastAccessU3Ek__BackingField_4() const { return ___U3CLastAccessU3Ek__BackingField_4; } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_U3CLastAccessU3Ek__BackingField_4() { return &___U3CLastAccessU3Ek__BackingField_4; } inline void set_U3CLastAccessU3Ek__BackingField_4(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value) { ___U3CLastAccessU3Ek__BackingField_4 = value; } inline static int32_t get_offset_of_U3CExpiresU3Ek__BackingField_5() { return static_cast(offsetof(Cookie_tC21D2404C4CCA8449C9DB970939F9DFB8CE61EC2, ___U3CExpiresU3Ek__BackingField_5)); } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_U3CExpiresU3Ek__BackingField_5() const { return ___U3CExpiresU3Ek__BackingField_5; } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_U3CExpiresU3Ek__BackingField_5() { return &___U3CExpiresU3Ek__BackingField_5; } inline void set_U3CExpiresU3Ek__BackingField_5(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value) { ___U3CExpiresU3Ek__BackingField_5 = value; } inline static int32_t get_offset_of_U3CMaxAgeU3Ek__BackingField_6() { return static_cast(offsetof(Cookie_tC21D2404C4CCA8449C9DB970939F9DFB8CE61EC2, ___U3CMaxAgeU3Ek__BackingField_6)); } inline int64_t get_U3CMaxAgeU3Ek__BackingField_6() const { return ___U3CMaxAgeU3Ek__BackingField_6; } inline int64_t* get_address_of_U3CMaxAgeU3Ek__BackingField_6() { return &___U3CMaxAgeU3Ek__BackingField_6; } inline void set_U3CMaxAgeU3Ek__BackingField_6(int64_t value) { ___U3CMaxAgeU3Ek__BackingField_6 = value; } inline static int32_t get_offset_of_U3CIsSessionU3Ek__BackingField_7() { return static_cast(offsetof(Cookie_tC21D2404C4CCA8449C9DB970939F9DFB8CE61EC2, ___U3CIsSessionU3Ek__BackingField_7)); } inline bool get_U3CIsSessionU3Ek__BackingField_7() const { return ___U3CIsSessionU3Ek__BackingField_7; } inline bool* get_address_of_U3CIsSessionU3Ek__BackingField_7() { return &___U3CIsSessionU3Ek__BackingField_7; } inline void set_U3CIsSessionU3Ek__BackingField_7(bool value) { ___U3CIsSessionU3Ek__BackingField_7 = value; } inline static int32_t get_offset_of_U3CDomainU3Ek__BackingField_8() { return static_cast(offsetof(Cookie_tC21D2404C4CCA8449C9DB970939F9DFB8CE61EC2, ___U3CDomainU3Ek__BackingField_8)); } inline String_t* get_U3CDomainU3Ek__BackingField_8() const { return ___U3CDomainU3Ek__BackingField_8; } inline String_t** get_address_of_U3CDomainU3Ek__BackingField_8() { return &___U3CDomainU3Ek__BackingField_8; } inline void set_U3CDomainU3Ek__BackingField_8(String_t* value) { ___U3CDomainU3Ek__BackingField_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CDomainU3Ek__BackingField_8), (void*)value); } inline static int32_t get_offset_of_U3CPathU3Ek__BackingField_9() { return static_cast(offsetof(Cookie_tC21D2404C4CCA8449C9DB970939F9DFB8CE61EC2, ___U3CPathU3Ek__BackingField_9)); } inline String_t* get_U3CPathU3Ek__BackingField_9() const { return ___U3CPathU3Ek__BackingField_9; } inline String_t** get_address_of_U3CPathU3Ek__BackingField_9() { return &___U3CPathU3Ek__BackingField_9; } inline void set_U3CPathU3Ek__BackingField_9(String_t* value) { ___U3CPathU3Ek__BackingField_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CPathU3Ek__BackingField_9), (void*)value); } inline static int32_t get_offset_of_U3CIsSecureU3Ek__BackingField_10() { return static_cast(offsetof(Cookie_tC21D2404C4CCA8449C9DB970939F9DFB8CE61EC2, ___U3CIsSecureU3Ek__BackingField_10)); } inline bool get_U3CIsSecureU3Ek__BackingField_10() const { return ___U3CIsSecureU3Ek__BackingField_10; } inline bool* get_address_of_U3CIsSecureU3Ek__BackingField_10() { return &___U3CIsSecureU3Ek__BackingField_10; } inline void set_U3CIsSecureU3Ek__BackingField_10(bool value) { ___U3CIsSecureU3Ek__BackingField_10 = value; } inline static int32_t get_offset_of_U3CIsHttpOnlyU3Ek__BackingField_11() { return static_cast(offsetof(Cookie_tC21D2404C4CCA8449C9DB970939F9DFB8CE61EC2, ___U3CIsHttpOnlyU3Ek__BackingField_11)); } inline bool get_U3CIsHttpOnlyU3Ek__BackingField_11() const { return ___U3CIsHttpOnlyU3Ek__BackingField_11; } inline bool* get_address_of_U3CIsHttpOnlyU3Ek__BackingField_11() { return &___U3CIsHttpOnlyU3Ek__BackingField_11; } inline void set_U3CIsHttpOnlyU3Ek__BackingField_11(bool value) { ___U3CIsHttpOnlyU3Ek__BackingField_11 = value; } }; // UnityEngine.Coroutine struct Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 : public YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF { public: // System.IntPtr UnityEngine.Coroutine::m_Ptr intptr_t ___m_Ptr_0; public: inline static int32_t get_offset_of_m_Ptr_0() { return static_cast(offsetof(Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7, ___m_Ptr_0)); } inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; } inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; } inline void set_m_Ptr_0(intptr_t value) { ___m_Ptr_0 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.Coroutine struct Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7_marshaled_pinvoke : public YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF_marshaled_pinvoke { intptr_t ___m_Ptr_0; }; // Native definition for COM marshalling of UnityEngine.Coroutine struct Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7_marshaled_com : public YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF_marshaled_com { intptr_t ___m_Ptr_0; }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.DefaultTlsClient struct DefaultTlsClient_t3D669A2D16F41BD1D1B25ABD0EECED9F1AFBE970 : public AbstractTlsClient_t2BE8DF1CC9B1A8397383FB81AFC0CEEB7B9A6A93 { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsDHVerifier BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.DefaultTlsClient::mDHVerifier RuntimeObject* ___mDHVerifier_9; public: inline static int32_t get_offset_of_mDHVerifier_9() { return static_cast(offsetof(DefaultTlsClient_t3D669A2D16F41BD1D1B25ABD0EECED9F1AFBE970, ___mDHVerifier_9)); } inline RuntimeObject* get_mDHVerifier_9() const { return ___mDHVerifier_9; } inline RuntimeObject** get_address_of_mDHVerifier_9() { return &___mDHVerifier_9; } inline void set_mDHVerifier_9(RuntimeObject* value) { ___mDHVerifier_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___mDHVerifier_9), (void*)value); } }; // System.Delegate struct Delegate_t : public RuntimeObject { public: // 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.Reflection.MethodInfo System.Delegate::method_info MethodInfo_t * ___method_info_7; // System.Reflection.MethodInfo System.Delegate::original_method_info MethodInfo_t * ___original_method_info_8; // System.DelegateData System.Delegate::data DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___data_9; // System.Boolean System.Delegate::method_is_virtual bool ___method_is_virtual_10; public: inline static int32_t get_offset_of_method_ptr_0() { return static_cast(offsetof(Delegate_t, ___method_ptr_0)); } inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; } inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; } inline void set_method_ptr_0(Il2CppMethodPointer value) { ___method_ptr_0 = value; } inline static int32_t get_offset_of_invoke_impl_1() { return static_cast(offsetof(Delegate_t, ___invoke_impl_1)); } inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; } inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; } inline void set_invoke_impl_1(intptr_t value) { ___invoke_impl_1 = value; } inline static int32_t get_offset_of_m_target_2() { return static_cast(offsetof(Delegate_t, ___m_target_2)); } inline RuntimeObject * get_m_target_2() const { return ___m_target_2; } inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; } inline void set_m_target_2(RuntimeObject * value) { ___m_target_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_target_2), (void*)value); } inline static int32_t get_offset_of_method_3() { return static_cast(offsetof(Delegate_t, ___method_3)); } inline intptr_t get_method_3() const { return ___method_3; } inline intptr_t* get_address_of_method_3() { return &___method_3; } inline void set_method_3(intptr_t value) { ___method_3 = value; } inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast(offsetof(Delegate_t, ___delegate_trampoline_4)); } inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; } inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; } inline void set_delegate_trampoline_4(intptr_t value) { ___delegate_trampoline_4 = value; } inline static int32_t get_offset_of_extra_arg_5() { return static_cast(offsetof(Delegate_t, ___extra_arg_5)); } inline intptr_t get_extra_arg_5() const { return ___extra_arg_5; } inline intptr_t* get_address_of_extra_arg_5() { return &___extra_arg_5; } inline void set_extra_arg_5(intptr_t value) { ___extra_arg_5 = value; } inline static int32_t get_offset_of_method_code_6() { return static_cast(offsetof(Delegate_t, ___method_code_6)); } inline intptr_t get_method_code_6() const { return ___method_code_6; } inline intptr_t* get_address_of_method_code_6() { return &___method_code_6; } inline void set_method_code_6(intptr_t value) { ___method_code_6 = value; } inline static int32_t get_offset_of_method_info_7() { return static_cast(offsetof(Delegate_t, ___method_info_7)); } inline MethodInfo_t * get_method_info_7() const { return ___method_info_7; } inline MethodInfo_t ** get_address_of_method_info_7() { return &___method_info_7; } inline void set_method_info_7(MethodInfo_t * value) { ___method_info_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___method_info_7), (void*)value); } inline static int32_t get_offset_of_original_method_info_8() { return static_cast(offsetof(Delegate_t, ___original_method_info_8)); } inline MethodInfo_t * get_original_method_info_8() const { return ___original_method_info_8; } inline MethodInfo_t ** get_address_of_original_method_info_8() { return &___original_method_info_8; } inline void set_original_method_info_8(MethodInfo_t * value) { ___original_method_info_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___original_method_info_8), (void*)value); } inline static int32_t get_offset_of_data_9() { return static_cast(offsetof(Delegate_t, ___data_9)); } inline DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * get_data_9() const { return ___data_9; } inline DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 ** get_address_of_data_9() { return &___data_9; } inline void set_data_9(DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * value) { ___data_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___data_9), (void*)value); } inline static int32_t get_offset_of_method_is_virtual_10() { return static_cast(offsetof(Delegate_t, ___method_is_virtual_10)); } inline bool get_method_is_virtual_10() const { return ___method_is_virtual_10; } inline bool* get_address_of_method_is_virtual_10() { return &___method_is_virtual_10; } inline void set_method_is_virtual_10(bool value) { ___method_is_virtual_10 = value; } }; // 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; MethodInfo_t * ___method_info_7; MethodInfo_t * ___original_method_info_8; DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___data_9; int32_t ___method_is_virtual_10; }; // 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; MethodInfo_t * ___method_info_7; MethodInfo_t * ___original_method_info_8; DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___data_9; int32_t ___method_is_virtual_10; }; // DG.Tweening.Ease struct Ease_tB04D625230DDC5B40D74E825C8A9DBBE37A146B4 { public: // System.Int32 DG.Tweening.Ease::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Ease_tB04D625230DDC5B40D74E825C8A9DBBE37A146B4, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Exception struct Exception_t : public RuntimeObject { public: // System.String System.Exception::_className String_t* ____className_1; // System.String System.Exception::_message String_t* ____message_2; // System.Collections.IDictionary System.Exception::_data RuntimeObject* ____data_3; // System.Exception System.Exception::_innerException Exception_t * ____innerException_4; // System.String System.Exception::_helpURL String_t* ____helpURL_5; // System.Object System.Exception::_stackTrace RuntimeObject * ____stackTrace_6; // System.String System.Exception::_stackTraceString String_t* ____stackTraceString_7; // System.String System.Exception::_remoteStackTraceString String_t* ____remoteStackTraceString_8; // System.Int32 System.Exception::_remoteStackIndex int32_t ____remoteStackIndex_9; // System.Object System.Exception::_dynamicMethods RuntimeObject * ____dynamicMethods_10; // System.Int32 System.Exception::_HResult int32_t ____HResult_11; // System.String System.Exception::_source String_t* ____source_12; // System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13; // System.Diagnostics.StackTrace[] System.Exception::captured_traces StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14; // System.IntPtr[] System.Exception::native_trace_ips IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* ___native_trace_ips_15; public: inline static int32_t get_offset_of__className_1() { return static_cast(offsetof(Exception_t, ____className_1)); } inline String_t* get__className_1() const { return ____className_1; } inline String_t** get_address_of__className_1() { return &____className_1; } inline void set__className_1(String_t* value) { ____className_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____className_1), (void*)value); } inline static int32_t get_offset_of__message_2() { return static_cast(offsetof(Exception_t, ____message_2)); } inline String_t* get__message_2() const { return ____message_2; } inline String_t** get_address_of__message_2() { return &____message_2; } inline void set__message_2(String_t* value) { ____message_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____message_2), (void*)value); } inline static int32_t get_offset_of__data_3() { return static_cast(offsetof(Exception_t, ____data_3)); } inline RuntimeObject* get__data_3() const { return ____data_3; } inline RuntimeObject** get_address_of__data_3() { return &____data_3; } inline void set__data_3(RuntimeObject* value) { ____data_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____data_3), (void*)value); } inline static int32_t get_offset_of__innerException_4() { return static_cast(offsetof(Exception_t, ____innerException_4)); } inline Exception_t * get__innerException_4() const { return ____innerException_4; } inline Exception_t ** get_address_of__innerException_4() { return &____innerException_4; } inline void set__innerException_4(Exception_t * value) { ____innerException_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____innerException_4), (void*)value); } inline static int32_t get_offset_of__helpURL_5() { return static_cast(offsetof(Exception_t, ____helpURL_5)); } inline String_t* get__helpURL_5() const { return ____helpURL_5; } inline String_t** get_address_of__helpURL_5() { return &____helpURL_5; } inline void set__helpURL_5(String_t* value) { ____helpURL_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____helpURL_5), (void*)value); } inline static int32_t get_offset_of__stackTrace_6() { return static_cast(offsetof(Exception_t, ____stackTrace_6)); } inline RuntimeObject * get__stackTrace_6() const { return ____stackTrace_6; } inline RuntimeObject ** get_address_of__stackTrace_6() { return &____stackTrace_6; } inline void set__stackTrace_6(RuntimeObject * value) { ____stackTrace_6 = value; Il2CppCodeGenWriteBarrier((void**)(&____stackTrace_6), (void*)value); } inline static int32_t get_offset_of__stackTraceString_7() { return static_cast(offsetof(Exception_t, ____stackTraceString_7)); } inline String_t* get__stackTraceString_7() const { return ____stackTraceString_7; } inline String_t** get_address_of__stackTraceString_7() { return &____stackTraceString_7; } inline void set__stackTraceString_7(String_t* value) { ____stackTraceString_7 = value; Il2CppCodeGenWriteBarrier((void**)(&____stackTraceString_7), (void*)value); } inline static int32_t get_offset_of__remoteStackTraceString_8() { return static_cast(offsetof(Exception_t, ____remoteStackTraceString_8)); } inline String_t* get__remoteStackTraceString_8() const { return ____remoteStackTraceString_8; } inline String_t** get_address_of__remoteStackTraceString_8() { return &____remoteStackTraceString_8; } inline void set__remoteStackTraceString_8(String_t* value) { ____remoteStackTraceString_8 = value; Il2CppCodeGenWriteBarrier((void**)(&____remoteStackTraceString_8), (void*)value); } inline static int32_t get_offset_of__remoteStackIndex_9() { return static_cast(offsetof(Exception_t, ____remoteStackIndex_9)); } inline int32_t get__remoteStackIndex_9() const { return ____remoteStackIndex_9; } inline int32_t* get_address_of__remoteStackIndex_9() { return &____remoteStackIndex_9; } inline void set__remoteStackIndex_9(int32_t value) { ____remoteStackIndex_9 = value; } inline static int32_t get_offset_of__dynamicMethods_10() { return static_cast(offsetof(Exception_t, ____dynamicMethods_10)); } inline RuntimeObject * get__dynamicMethods_10() const { return ____dynamicMethods_10; } inline RuntimeObject ** get_address_of__dynamicMethods_10() { return &____dynamicMethods_10; } inline void set__dynamicMethods_10(RuntimeObject * value) { ____dynamicMethods_10 = value; Il2CppCodeGenWriteBarrier((void**)(&____dynamicMethods_10), (void*)value); } inline static int32_t get_offset_of__HResult_11() { return static_cast(offsetof(Exception_t, ____HResult_11)); } inline int32_t get__HResult_11() const { return ____HResult_11; } inline int32_t* get_address_of__HResult_11() { return &____HResult_11; } inline void set__HResult_11(int32_t value) { ____HResult_11 = value; } inline static int32_t get_offset_of__source_12() { return static_cast(offsetof(Exception_t, ____source_12)); } inline String_t* get__source_12() const { return ____source_12; } inline String_t** get_address_of__source_12() { return &____source_12; } inline void set__source_12(String_t* value) { ____source_12 = value; Il2CppCodeGenWriteBarrier((void**)(&____source_12), (void*)value); } inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast(offsetof(Exception_t, ____safeSerializationManager_13)); } inline SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; } inline SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; } inline void set__safeSerializationManager_13(SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * value) { ____safeSerializationManager_13 = value; Il2CppCodeGenWriteBarrier((void**)(&____safeSerializationManager_13), (void*)value); } inline static int32_t get_offset_of_captured_traces_14() { return static_cast(offsetof(Exception_t, ___captured_traces_14)); } inline StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* get_captured_traces_14() const { return ___captured_traces_14; } inline StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971** get_address_of_captured_traces_14() { return &___captured_traces_14; } inline void set_captured_traces_14(StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* value) { ___captured_traces_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___captured_traces_14), (void*)value); } inline static int32_t get_offset_of_native_trace_ips_15() { return static_cast(offsetof(Exception_t, ___native_trace_ips_15)); } inline IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* get_native_trace_ips_15() const { return ___native_trace_ips_15; } inline IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; } inline void set_native_trace_ips_15(IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* value) { ___native_trace_ips_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___native_trace_ips_15), (void*)value); } }; struct Exception_t_StaticFields { public: // System.Object System.Exception::s_EDILock RuntimeObject * ___s_EDILock_0; public: inline static int32_t get_offset_of_s_EDILock_0() { return static_cast(offsetof(Exception_t_StaticFields, ___s_EDILock_0)); } inline RuntimeObject * get_s_EDILock_0() const { return ___s_EDILock_0; } inline RuntimeObject ** get_address_of_s_EDILock_0() { return &___s_EDILock_0; } inline void set_s_EDILock_0(RuntimeObject * value) { ___s_EDILock_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_EDILock_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Exception struct Exception_t_marshaled_pinvoke { char* ____className_1; char* ____message_2; RuntimeObject* ____data_3; Exception_t_marshaled_pinvoke* ____innerException_4; char* ____helpURL_5; Il2CppIUnknown* ____stackTrace_6; char* ____stackTraceString_7; char* ____remoteStackTraceString_8; int32_t ____remoteStackIndex_9; Il2CppIUnknown* ____dynamicMethods_10; int32_t ____HResult_11; char* ____source_12; SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13; StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14; Il2CppSafeArray/*NONE*/* ___native_trace_ips_15; }; // Native definition for COM marshalling of System.Exception struct Exception_t_marshaled_com { Il2CppChar* ____className_1; Il2CppChar* ____message_2; RuntimeObject* ____data_3; Exception_t_marshaled_com* ____innerException_4; Il2CppChar* ____helpURL_5; Il2CppIUnknown* ____stackTrace_6; Il2CppChar* ____stackTraceString_7; Il2CppChar* ____remoteStackTraceString_8; int32_t ____remoteStackIndex_9; Il2CppIUnknown* ____dynamicMethods_10; int32_t ____HResult_11; Il2CppChar* ____source_12; SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13; StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14; Il2CppSafeArray/*NONE*/* ___native_trace_ips_15; }; // BestHTTP.PlatformSupport.FileSystem.FileStreamModes struct FileStreamModes_t1F747364CB241775BBAA161606E690E369FE004B { public: // System.Int32 BestHTTP.PlatformSupport.FileSystem.FileStreamModes::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(FileStreamModes_t1F747364CB241775BBAA161606E690E369FE004B, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // BestHTTP.Caching.HTTPCacheFileInfo struct HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA : public RuntimeObject { public: // System.Uri BestHTTP.Caching.HTTPCacheFileInfo::k__BackingField Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___U3CUriU3Ek__BackingField_0; // System.DateTime BestHTTP.Caching.HTTPCacheFileInfo::k__BackingField DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___U3CLastAccessU3Ek__BackingField_1; // System.Int32 BestHTTP.Caching.HTTPCacheFileInfo::k__BackingField int32_t ___U3CBodyLengthU3Ek__BackingField_2; // System.String BestHTTP.Caching.HTTPCacheFileInfo::k__BackingField String_t* ___U3CETagU3Ek__BackingField_3; // System.String BestHTTP.Caching.HTTPCacheFileInfo::k__BackingField String_t* ___U3CLastModifiedU3Ek__BackingField_4; // System.DateTime BestHTTP.Caching.HTTPCacheFileInfo::k__BackingField DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___U3CExpiresU3Ek__BackingField_5; // System.Int64 BestHTTP.Caching.HTTPCacheFileInfo::k__BackingField int64_t ___U3CAgeU3Ek__BackingField_6; // System.Int64 BestHTTP.Caching.HTTPCacheFileInfo::k__BackingField int64_t ___U3CMaxAgeU3Ek__BackingField_7; // System.DateTime BestHTTP.Caching.HTTPCacheFileInfo::k__BackingField DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___U3CDateU3Ek__BackingField_8; // System.Boolean BestHTTP.Caching.HTTPCacheFileInfo::k__BackingField bool ___U3CMustRevalidateU3Ek__BackingField_9; // System.DateTime BestHTTP.Caching.HTTPCacheFileInfo::k__BackingField DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___U3CReceivedU3Ek__BackingField_10; // System.String BestHTTP.Caching.HTTPCacheFileInfo::k__BackingField String_t* ___U3CConstructedPathU3Ek__BackingField_11; // System.UInt64 BestHTTP.Caching.HTTPCacheFileInfo::k__BackingField uint64_t ___U3CMappedNameIDXU3Ek__BackingField_12; public: inline static int32_t get_offset_of_U3CUriU3Ek__BackingField_0() { return static_cast(offsetof(HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA, ___U3CUriU3Ek__BackingField_0)); } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * get_U3CUriU3Ek__BackingField_0() const { return ___U3CUriU3Ek__BackingField_0; } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 ** get_address_of_U3CUriU3Ek__BackingField_0() { return &___U3CUriU3Ek__BackingField_0; } inline void set_U3CUriU3Ek__BackingField_0(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * value) { ___U3CUriU3Ek__BackingField_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CUriU3Ek__BackingField_0), (void*)value); } inline static int32_t get_offset_of_U3CLastAccessU3Ek__BackingField_1() { return static_cast(offsetof(HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA, ___U3CLastAccessU3Ek__BackingField_1)); } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_U3CLastAccessU3Ek__BackingField_1() const { return ___U3CLastAccessU3Ek__BackingField_1; } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_U3CLastAccessU3Ek__BackingField_1() { return &___U3CLastAccessU3Ek__BackingField_1; } inline void set_U3CLastAccessU3Ek__BackingField_1(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value) { ___U3CLastAccessU3Ek__BackingField_1 = value; } inline static int32_t get_offset_of_U3CBodyLengthU3Ek__BackingField_2() { return static_cast(offsetof(HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA, ___U3CBodyLengthU3Ek__BackingField_2)); } inline int32_t get_U3CBodyLengthU3Ek__BackingField_2() const { return ___U3CBodyLengthU3Ek__BackingField_2; } inline int32_t* get_address_of_U3CBodyLengthU3Ek__BackingField_2() { return &___U3CBodyLengthU3Ek__BackingField_2; } inline void set_U3CBodyLengthU3Ek__BackingField_2(int32_t value) { ___U3CBodyLengthU3Ek__BackingField_2 = value; } inline static int32_t get_offset_of_U3CETagU3Ek__BackingField_3() { return static_cast(offsetof(HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA, ___U3CETagU3Ek__BackingField_3)); } inline String_t* get_U3CETagU3Ek__BackingField_3() const { return ___U3CETagU3Ek__BackingField_3; } inline String_t** get_address_of_U3CETagU3Ek__BackingField_3() { return &___U3CETagU3Ek__BackingField_3; } inline void set_U3CETagU3Ek__BackingField_3(String_t* value) { ___U3CETagU3Ek__BackingField_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CETagU3Ek__BackingField_3), (void*)value); } inline static int32_t get_offset_of_U3CLastModifiedU3Ek__BackingField_4() { return static_cast(offsetof(HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA, ___U3CLastModifiedU3Ek__BackingField_4)); } inline String_t* get_U3CLastModifiedU3Ek__BackingField_4() const { return ___U3CLastModifiedU3Ek__BackingField_4; } inline String_t** get_address_of_U3CLastModifiedU3Ek__BackingField_4() { return &___U3CLastModifiedU3Ek__BackingField_4; } inline void set_U3CLastModifiedU3Ek__BackingField_4(String_t* value) { ___U3CLastModifiedU3Ek__BackingField_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CLastModifiedU3Ek__BackingField_4), (void*)value); } inline static int32_t get_offset_of_U3CExpiresU3Ek__BackingField_5() { return static_cast(offsetof(HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA, ___U3CExpiresU3Ek__BackingField_5)); } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_U3CExpiresU3Ek__BackingField_5() const { return ___U3CExpiresU3Ek__BackingField_5; } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_U3CExpiresU3Ek__BackingField_5() { return &___U3CExpiresU3Ek__BackingField_5; } inline void set_U3CExpiresU3Ek__BackingField_5(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value) { ___U3CExpiresU3Ek__BackingField_5 = value; } inline static int32_t get_offset_of_U3CAgeU3Ek__BackingField_6() { return static_cast(offsetof(HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA, ___U3CAgeU3Ek__BackingField_6)); } inline int64_t get_U3CAgeU3Ek__BackingField_6() const { return ___U3CAgeU3Ek__BackingField_6; } inline int64_t* get_address_of_U3CAgeU3Ek__BackingField_6() { return &___U3CAgeU3Ek__BackingField_6; } inline void set_U3CAgeU3Ek__BackingField_6(int64_t value) { ___U3CAgeU3Ek__BackingField_6 = value; } inline static int32_t get_offset_of_U3CMaxAgeU3Ek__BackingField_7() { return static_cast(offsetof(HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA, ___U3CMaxAgeU3Ek__BackingField_7)); } inline int64_t get_U3CMaxAgeU3Ek__BackingField_7() const { return ___U3CMaxAgeU3Ek__BackingField_7; } inline int64_t* get_address_of_U3CMaxAgeU3Ek__BackingField_7() { return &___U3CMaxAgeU3Ek__BackingField_7; } inline void set_U3CMaxAgeU3Ek__BackingField_7(int64_t value) { ___U3CMaxAgeU3Ek__BackingField_7 = value; } inline static int32_t get_offset_of_U3CDateU3Ek__BackingField_8() { return static_cast(offsetof(HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA, ___U3CDateU3Ek__BackingField_8)); } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_U3CDateU3Ek__BackingField_8() const { return ___U3CDateU3Ek__BackingField_8; } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_U3CDateU3Ek__BackingField_8() { return &___U3CDateU3Ek__BackingField_8; } inline void set_U3CDateU3Ek__BackingField_8(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value) { ___U3CDateU3Ek__BackingField_8 = value; } inline static int32_t get_offset_of_U3CMustRevalidateU3Ek__BackingField_9() { return static_cast(offsetof(HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA, ___U3CMustRevalidateU3Ek__BackingField_9)); } inline bool get_U3CMustRevalidateU3Ek__BackingField_9() const { return ___U3CMustRevalidateU3Ek__BackingField_9; } inline bool* get_address_of_U3CMustRevalidateU3Ek__BackingField_9() { return &___U3CMustRevalidateU3Ek__BackingField_9; } inline void set_U3CMustRevalidateU3Ek__BackingField_9(bool value) { ___U3CMustRevalidateU3Ek__BackingField_9 = value; } inline static int32_t get_offset_of_U3CReceivedU3Ek__BackingField_10() { return static_cast(offsetof(HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA, ___U3CReceivedU3Ek__BackingField_10)); } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_U3CReceivedU3Ek__BackingField_10() const { return ___U3CReceivedU3Ek__BackingField_10; } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_U3CReceivedU3Ek__BackingField_10() { return &___U3CReceivedU3Ek__BackingField_10; } inline void set_U3CReceivedU3Ek__BackingField_10(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value) { ___U3CReceivedU3Ek__BackingField_10 = value; } inline static int32_t get_offset_of_U3CConstructedPathU3Ek__BackingField_11() { return static_cast(offsetof(HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA, ___U3CConstructedPathU3Ek__BackingField_11)); } inline String_t* get_U3CConstructedPathU3Ek__BackingField_11() const { return ___U3CConstructedPathU3Ek__BackingField_11; } inline String_t** get_address_of_U3CConstructedPathU3Ek__BackingField_11() { return &___U3CConstructedPathU3Ek__BackingField_11; } inline void set_U3CConstructedPathU3Ek__BackingField_11(String_t* value) { ___U3CConstructedPathU3Ek__BackingField_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CConstructedPathU3Ek__BackingField_11), (void*)value); } inline static int32_t get_offset_of_U3CMappedNameIDXU3Ek__BackingField_12() { return static_cast(offsetof(HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA, ___U3CMappedNameIDXU3Ek__BackingField_12)); } inline uint64_t get_U3CMappedNameIDXU3Ek__BackingField_12() const { return ___U3CMappedNameIDXU3Ek__BackingField_12; } inline uint64_t* get_address_of_U3CMappedNameIDXU3Ek__BackingField_12() { return &___U3CMappedNameIDXU3Ek__BackingField_12; } inline void set_U3CMappedNameIDXU3Ek__BackingField_12(uint64_t value) { ___U3CMappedNameIDXU3Ek__BackingField_12 = value; } }; // BestHTTP.HTTPConnectionStates struct HTTPConnectionStates_tBB7113AF8810E7441256047332F747C468427434 { public: // System.Int32 BestHTTP.HTTPConnectionStates::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(HTTPConnectionStates_tBB7113AF8810E7441256047332F747C468427434, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // BestHTTP.Forms.HTTPFormUsage struct HTTPFormUsage_t2B7AA6886E9788F75E0DB492A68095116462A64E { public: // System.Int32 BestHTTP.Forms.HTTPFormUsage::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(HTTPFormUsage_t2B7AA6886E9788F75E0DB492A68095116462A64E, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // BestHTTP.HTTPMethods struct HTTPMethods_t9BB2C0A32407626B6D77F8652824FB2E6CF92195 { public: // System.Byte BestHTTP.HTTPMethods::value__ uint8_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(HTTPMethods_t9BB2C0A32407626B6D77F8652824FB2E6CF92195, ___value___2)); } inline uint8_t get_value___2() const { return ___value___2; } inline uint8_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(uint8_t value) { ___value___2 = value; } }; // BestHTTP.HTTPRequestStates struct HTTPRequestStates_t32A7ADDA084DCC94348299B2C4DBB455A3429B7F { public: // System.Int32 BestHTTP.HTTPRequestStates::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(HTTPRequestStates_t32A7ADDA084DCC94348299B2C4DBB455A3429B7F, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // BestHTTP.Extensions.HeartbeatManager struct HeartbeatManager_tC2289824FFCE494A74441E065011CD0E66C2134E : public RuntimeObject { public: // System.Collections.Generic.List`1 BestHTTP.Extensions.HeartbeatManager::Heartbeats List_1_t149BF1AE616553E9302398F34B08E9CD0F02792E * ___Heartbeats_0; // BestHTTP.Extensions.IHeartbeat[] BestHTTP.Extensions.HeartbeatManager::UpdateArray IHeartbeatU5BU5D_t4322B70693C3ACB994862FB60A37B1E4C042028D* ___UpdateArray_1; // System.DateTime BestHTTP.Extensions.HeartbeatManager::LastUpdate DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___LastUpdate_2; public: inline static int32_t get_offset_of_Heartbeats_0() { return static_cast(offsetof(HeartbeatManager_tC2289824FFCE494A74441E065011CD0E66C2134E, ___Heartbeats_0)); } inline List_1_t149BF1AE616553E9302398F34B08E9CD0F02792E * get_Heartbeats_0() const { return ___Heartbeats_0; } inline List_1_t149BF1AE616553E9302398F34B08E9CD0F02792E ** get_address_of_Heartbeats_0() { return &___Heartbeats_0; } inline void set_Heartbeats_0(List_1_t149BF1AE616553E9302398F34B08E9CD0F02792E * value) { ___Heartbeats_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Heartbeats_0), (void*)value); } inline static int32_t get_offset_of_UpdateArray_1() { return static_cast(offsetof(HeartbeatManager_tC2289824FFCE494A74441E065011CD0E66C2134E, ___UpdateArray_1)); } inline IHeartbeatU5BU5D_t4322B70693C3ACB994862FB60A37B1E4C042028D* get_UpdateArray_1() const { return ___UpdateArray_1; } inline IHeartbeatU5BU5D_t4322B70693C3ACB994862FB60A37B1E4C042028D** get_address_of_UpdateArray_1() { return &___UpdateArray_1; } inline void set_UpdateArray_1(IHeartbeatU5BU5D_t4322B70693C3ACB994862FB60A37B1E4C042028D* value) { ___UpdateArray_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___UpdateArray_1), (void*)value); } inline static int32_t get_offset_of_LastUpdate_2() { return static_cast(offsetof(HeartbeatManager_tC2289824FFCE494A74441E065011CD0E66C2134E, ___LastUpdate_2)); } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_LastUpdate_2() const { return ___LastUpdate_2; } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_LastUpdate_2() { return &___LastUpdate_2; } inline void set_LastUpdate_2(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value) { ___LastUpdate_2 = value; } }; // BestHTTP.Logger.Loglevels struct Loglevels_t11A0BB068F507D75D8228DE66E6CE0B001F683FB { public: // System.Byte BestHTTP.Logger.Loglevels::value__ uint8_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Loglevels_t11A0BB068F507D75D8228DE66E6CE0B001F683FB, ___value___2)); } inline uint8_t get_value___2() const { return ___value___2; } inline uint8_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(uint8_t value) { ___value___2 = value; } }; // DG.Tweening.LoopType struct LoopType_tF807A5805F6A83F5228BE7D4E633B2572B1B859A { public: // System.Int32 DG.Tweening.LoopType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(LoopType_tF807A5805F6A83F5228BE7D4E633B2572B1B859A, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.IO.MemoryStream struct MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C : public Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB { public: // System.Byte[] System.IO.MemoryStream::_buffer ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ____buffer_5; // System.Int32 System.IO.MemoryStream::_origin int32_t ____origin_6; // System.Int32 System.IO.MemoryStream::_position int32_t ____position_7; // System.Int32 System.IO.MemoryStream::_length int32_t ____length_8; // System.Int32 System.IO.MemoryStream::_capacity int32_t ____capacity_9; // System.Boolean System.IO.MemoryStream::_expandable bool ____expandable_10; // System.Boolean System.IO.MemoryStream::_writable bool ____writable_11; // System.Boolean System.IO.MemoryStream::_exposable bool ____exposable_12; // System.Boolean System.IO.MemoryStream::_isOpen bool ____isOpen_13; // System.Threading.Tasks.Task`1 System.IO.MemoryStream::_lastReadTask Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * ____lastReadTask_14; public: inline static int32_t get_offset_of__buffer_5() { return static_cast(offsetof(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C, ____buffer_5)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get__buffer_5() const { return ____buffer_5; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of__buffer_5() { return &____buffer_5; } inline void set__buffer_5(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ____buffer_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____buffer_5), (void*)value); } inline static int32_t get_offset_of__origin_6() { return static_cast(offsetof(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C, ____origin_6)); } inline int32_t get__origin_6() const { return ____origin_6; } inline int32_t* get_address_of__origin_6() { return &____origin_6; } inline void set__origin_6(int32_t value) { ____origin_6 = value; } inline static int32_t get_offset_of__position_7() { return static_cast(offsetof(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C, ____position_7)); } inline int32_t get__position_7() const { return ____position_7; } inline int32_t* get_address_of__position_7() { return &____position_7; } inline void set__position_7(int32_t value) { ____position_7 = value; } inline static int32_t get_offset_of__length_8() { return static_cast(offsetof(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C, ____length_8)); } inline int32_t get__length_8() const { return ____length_8; } inline int32_t* get_address_of__length_8() { return &____length_8; } inline void set__length_8(int32_t value) { ____length_8 = value; } inline static int32_t get_offset_of__capacity_9() { return static_cast(offsetof(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C, ____capacity_9)); } inline int32_t get__capacity_9() const { return ____capacity_9; } inline int32_t* get_address_of__capacity_9() { return &____capacity_9; } inline void set__capacity_9(int32_t value) { ____capacity_9 = value; } inline static int32_t get_offset_of__expandable_10() { return static_cast(offsetof(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C, ____expandable_10)); } inline bool get__expandable_10() const { return ____expandable_10; } inline bool* get_address_of__expandable_10() { return &____expandable_10; } inline void set__expandable_10(bool value) { ____expandable_10 = value; } inline static int32_t get_offset_of__writable_11() { return static_cast(offsetof(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C, ____writable_11)); } inline bool get__writable_11() const { return ____writable_11; } inline bool* get_address_of__writable_11() { return &____writable_11; } inline void set__writable_11(bool value) { ____writable_11 = value; } inline static int32_t get_offset_of__exposable_12() { return static_cast(offsetof(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C, ____exposable_12)); } inline bool get__exposable_12() const { return ____exposable_12; } inline bool* get_address_of__exposable_12() { return &____exposable_12; } inline void set__exposable_12(bool value) { ____exposable_12 = value; } inline static int32_t get_offset_of__isOpen_13() { return static_cast(offsetof(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C, ____isOpen_13)); } inline bool get__isOpen_13() const { return ____isOpen_13; } inline bool* get_address_of__isOpen_13() { return &____isOpen_13; } inline void set__isOpen_13(bool value) { ____isOpen_13 = value; } inline static int32_t get_offset_of__lastReadTask_14() { return static_cast(offsetof(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C, ____lastReadTask_14)); } inline Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * get__lastReadTask_14() const { return ____lastReadTask_14; } inline Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 ** get_address_of__lastReadTask_14() { return &____lastReadTask_14; } inline void set__lastReadTask_14(Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * value) { ____lastReadTask_14 = value; Il2CppCodeGenWriteBarrier((void**)(&____lastReadTask_14), (void*)value); } }; // System.Globalization.NumberStyles struct NumberStyles_t379EFBF2535E1C950DEC8042704BB663BF636594 { public: // System.Int32 System.Globalization.NumberStyles::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(NumberStyles_t379EFBF2535E1C950DEC8042704BB663BF636594, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.Object struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A : public RuntimeObject { public: // System.IntPtr UnityEngine.Object::m_CachedPtr intptr_t ___m_CachedPtr_0; public: inline static int32_t get_offset_of_m_CachedPtr_0() { return static_cast(offsetof(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A, ___m_CachedPtr_0)); } inline intptr_t get_m_CachedPtr_0() const { return ___m_CachedPtr_0; } inline intptr_t* get_address_of_m_CachedPtr_0() { return &___m_CachedPtr_0; } inline void set_m_CachedPtr_0(intptr_t value) { ___m_CachedPtr_0 = value; } }; struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_StaticFields { public: // System.Int32 UnityEngine.Object::OffsetOfInstanceIDInCPlusPlusObject int32_t ___OffsetOfInstanceIDInCPlusPlusObject_1; public: inline static int32_t get_offset_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return static_cast(offsetof(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_StaticFields, ___OffsetOfInstanceIDInCPlusPlusObject_1)); } inline int32_t get_OffsetOfInstanceIDInCPlusPlusObject_1() const { return ___OffsetOfInstanceIDInCPlusPlusObject_1; } inline int32_t* get_address_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return &___OffsetOfInstanceIDInCPlusPlusObject_1; } inline void set_OffsetOfInstanceIDInCPlusPlusObject_1(int32_t value) { ___OffsetOfInstanceIDInCPlusPlusObject_1 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.Object struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_marshaled_pinvoke { intptr_t ___m_CachedPtr_0; }; // Native definition for COM marshalling of UnityEngine.Object struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_marshaled_com { intptr_t ___m_CachedPtr_0; }; // System.Net.Sockets.ProtocolType struct ProtocolType_t07C7AB65B583B132A2D99BC06BB2A909BDDCE156 { public: // System.Int32 System.Net.Sockets.ProtocolType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(ProtocolType_t07C7AB65B583B132A2D99BC06BB2A909BDDCE156, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // BestHTTP.Extensions.ReadOnlyBufferedStream struct ReadOnlyBufferedStream_tD77D50B2DC8D878C4C3960DD5EE5AEBB73439D34 : public Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB { public: // System.Boolean BestHTTP.Extensions.ReadOnlyBufferedStream::k__BackingField bool ___U3CCheckForDataAvailabilityU3Ek__BackingField_5; // System.IO.Stream BestHTTP.Extensions.ReadOnlyBufferedStream::stream Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___stream_6; // System.Byte[] BestHTTP.Extensions.ReadOnlyBufferedStream::buf ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___buf_8; // System.Int32 BestHTTP.Extensions.ReadOnlyBufferedStream::available int32_t ___available_9; // System.Int32 BestHTTP.Extensions.ReadOnlyBufferedStream::pos int32_t ___pos_10; public: inline static int32_t get_offset_of_U3CCheckForDataAvailabilityU3Ek__BackingField_5() { return static_cast(offsetof(ReadOnlyBufferedStream_tD77D50B2DC8D878C4C3960DD5EE5AEBB73439D34, ___U3CCheckForDataAvailabilityU3Ek__BackingField_5)); } inline bool get_U3CCheckForDataAvailabilityU3Ek__BackingField_5() const { return ___U3CCheckForDataAvailabilityU3Ek__BackingField_5; } inline bool* get_address_of_U3CCheckForDataAvailabilityU3Ek__BackingField_5() { return &___U3CCheckForDataAvailabilityU3Ek__BackingField_5; } inline void set_U3CCheckForDataAvailabilityU3Ek__BackingField_5(bool value) { ___U3CCheckForDataAvailabilityU3Ek__BackingField_5 = value; } inline static int32_t get_offset_of_stream_6() { return static_cast(offsetof(ReadOnlyBufferedStream_tD77D50B2DC8D878C4C3960DD5EE5AEBB73439D34, ___stream_6)); } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_stream_6() const { return ___stream_6; } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_stream_6() { return &___stream_6; } inline void set_stream_6(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value) { ___stream_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___stream_6), (void*)value); } inline static int32_t get_offset_of_buf_8() { return static_cast(offsetof(ReadOnlyBufferedStream_tD77D50B2DC8D878C4C3960DD5EE5AEBB73439D34, ___buf_8)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_buf_8() const { return ___buf_8; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_buf_8() { return &___buf_8; } inline void set_buf_8(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___buf_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___buf_8), (void*)value); } inline static int32_t get_offset_of_available_9() { return static_cast(offsetof(ReadOnlyBufferedStream_tD77D50B2DC8D878C4C3960DD5EE5AEBB73439D34, ___available_9)); } inline int32_t get_available_9() const { return ___available_9; } inline int32_t* get_address_of_available_9() { return &___available_9; } inline void set_available_9(int32_t value) { ___available_9 = value; } inline static int32_t get_offset_of_pos_10() { return static_cast(offsetof(ReadOnlyBufferedStream_tD77D50B2DC8D878C4C3960DD5EE5AEBB73439D34, ___pos_10)); } inline int32_t get_pos_10() const { return ___pos_10; } inline int32_t* get_address_of_pos_10() { return &___pos_10; } inline void set_pos_10(int32_t value) { ___pos_10 = value; } }; // BestHTTP.RetryCauses struct RetryCauses_t4C5049EA3653272D69D7F4997D028E30A572AB64 { public: // System.Int32 BestHTTP.RetryCauses::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(RetryCauses_t4C5049EA3653272D69D7F4997D028E30A572AB64, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.RuntimePlatform struct RuntimePlatform_tB8798C800FD9810C0FE2B7D2F2A0A3979D239065 { public: // System.Int32 UnityEngine.RuntimePlatform::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(RuntimePlatform_tB8798C800FD9810C0FE2B7D2F2A0A3979D239065, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.RuntimeTypeHandle struct RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 { public: // System.IntPtr System.RuntimeTypeHandle::value intptr_t ___value_0; public: inline static int32_t get_offset_of_value_0() { return static_cast(offsetof(RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9, ___value_0)); } inline intptr_t get_value_0() const { return ___value_0; } inline intptr_t* get_address_of_value_0() { return &___value_0; } inline void set_value_0(intptr_t value) { ___value_0 = value; } }; // UnityEngine.ScreenOrientation struct ScreenOrientation_tDD9EF2729A0D580721770597532935B0A7ADE020 { public: // System.Int32 UnityEngine.ScreenOrientation::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(ScreenOrientation_tDD9EF2729A0D580721770597532935B0A7ADE020, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.IO.SeekOrigin struct SeekOrigin_t4A91B37D046CD7A6578066059AE9F6269A888D4F { public: // System.Int32 System.IO.SeekOrigin::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(SeekOrigin_t4A91B37D046CD7A6578066059AE9F6269A888D4F, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Net.Sockets.SocketType struct SocketType_t234FBD298C115F92305ABC40D2E592FC535DFF94 { public: // System.Int32 System.Net.Sockets.SocketType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(SocketType_t234FBD298C115F92305ABC40D2E592FC535DFF94, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // DG.Tweening.Core.Enums.SpecialStartupMode struct SpecialStartupMode_t0086D2AE798C217210762DD17C8D3572414ACD92 { public: // System.Int32 DG.Tweening.Core.Enums.SpecialStartupMode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(SpecialStartupMode_t0086D2AE798C217210762DD17C8D3572414ACD92, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Net.Security.SslPolicyErrors struct SslPolicyErrors_t4C4942B3C78507D4E6891DBEFE60043B285CFBE4 { public: // System.Int32 System.Net.Security.SslPolicyErrors::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(SslPolicyErrors_t4C4942B3C78507D4E6891DBEFE60043B285CFBE4, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // BestHTTP.Statistics.StatisticsQueryFlags struct StatisticsQueryFlags_t8EF7A9AB730E49AA63F68D1BFC39227FC1636999 { public: // System.Byte BestHTTP.Statistics.StatisticsQueryFlags::value__ uint8_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(StatisticsQueryFlags_t8EF7A9AB730E49AA63F68D1BFC39227FC1636999, ___value___2)); } inline uint8_t get_value___2() const { return ___value___2; } inline uint8_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(uint8_t value) { ___value___2 = value; } }; // System.StringComparison struct StringComparison_tCC9F72B9B1E2C3C6D2566DD0D3A61E1621048998 { public: // System.Int32 System.StringComparison::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(StringComparison_tCC9F72B9B1E2C3C6D2566DD0D3A61E1621048998, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // BestHTTP.SupportedProtocols struct SupportedProtocols_t3B8F67D21A1E9AF62C6579631E36E7E50B90047B { public: // System.Int32 BestHTTP.SupportedProtocols::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(SupportedProtocols_t3B8F67D21A1E9AF62C6579631E36E7E50B90047B, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.TextAnchor struct TextAnchor_tA4C88E77C2D7312F43412275B01E1341A7CB2232 { public: // System.Int32 UnityEngine.TextAnchor::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(TextAnchor_tA4C88E77C2D7312F43412275B01E1341A7CB2232, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.TimeSpan struct TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 { public: // System.Int64 System.TimeSpan::_ticks int64_t ____ticks_22; public: inline static int32_t get_offset_of__ticks_22() { return static_cast(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203, ____ticks_22)); } inline int64_t get__ticks_22() const { return ____ticks_22; } inline int64_t* get_address_of__ticks_22() { return &____ticks_22; } inline void set__ticks_22(int64_t value) { ____ticks_22 = value; } }; struct TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields { public: // System.TimeSpan System.TimeSpan::Zero TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___Zero_19; // System.TimeSpan System.TimeSpan::MaxValue TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___MaxValue_20; // System.TimeSpan System.TimeSpan::MinValue TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___MinValue_21; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyConfigChecked bool ____legacyConfigChecked_23; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyMode bool ____legacyMode_24; public: inline static int32_t get_offset_of_Zero_19() { return static_cast(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ___Zero_19)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_Zero_19() const { return ___Zero_19; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_Zero_19() { return &___Zero_19; } inline void set_Zero_19(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___Zero_19 = value; } inline static int32_t get_offset_of_MaxValue_20() { return static_cast(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ___MaxValue_20)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_MaxValue_20() const { return ___MaxValue_20; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_MaxValue_20() { return &___MaxValue_20; } inline void set_MaxValue_20(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___MaxValue_20 = value; } inline static int32_t get_offset_of_MinValue_21() { return static_cast(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ___MinValue_21)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_MinValue_21() const { return ___MinValue_21; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_MinValue_21() { return &___MinValue_21; } inline void set_MinValue_21(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___MinValue_21 = value; } inline static int32_t get_offset_of__legacyConfigChecked_23() { return static_cast(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ____legacyConfigChecked_23)); } inline bool get__legacyConfigChecked_23() const { return ____legacyConfigChecked_23; } inline bool* get_address_of__legacyConfigChecked_23() { return &____legacyConfigChecked_23; } inline void set__legacyConfigChecked_23(bool value) { ____legacyConfigChecked_23 = value; } inline static int32_t get_offset_of__legacyMode_24() { return static_cast(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ____legacyMode_24)); } inline bool get__legacyMode_24() const { return ____legacyMode_24; } inline bool* get_address_of__legacyMode_24() { return &____legacyMode_24; } inline void set__legacyMode_24(bool value) { ____legacyMode_24 = value; } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol struct TlsProtocol_t0AF7CC5A58D00FFFD3D400269F4EFEF8E0A0AF69 : public RuntimeObject { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.ByteQueue BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol::mApplicationDataQueue ByteQueue_tFCDD21AF1559BE58C2488F5FA5AEBAA16ED1A471 * ___mApplicationDataQueue_20; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.ByteQueue BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol::mAlertQueue ByteQueue_tFCDD21AF1559BE58C2488F5FA5AEBAA16ED1A471 * ___mAlertQueue_21; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.ByteQueue BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol::mHandshakeQueue ByteQueue_tFCDD21AF1559BE58C2488F5FA5AEBAA16ED1A471 * ___mHandshakeQueue_22; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.RecordStream BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol::mRecordStream RecordStream_t7C44C947EB6F1ED4E1EE3A0869D4D9542A6D6C3E * ___mRecordStream_23; // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol::mSecureRandom SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * ___mSecureRandom_24; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsStream BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol::mTlsStream TlsStream_tE67EA4971A8FA0C9BFF2779F6B2DA94770376E5A * ___mTlsStream_25; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol::mClosed bool ___mClosed_26; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol::mFailedWithError bool ___mFailedWithError_27; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol::mAppDataReady bool ___mAppDataReady_28; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol::mAppDataSplitEnabled bool ___mAppDataSplitEnabled_29; // System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol::mAppDataSplitMode int32_t ___mAppDataSplitMode_30; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol::mExpectedVerifyData ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___mExpectedVerifyData_31; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsSession BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol::mTlsSession RuntimeObject* ___mTlsSession_32; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.SessionParameters BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol::mSessionParameters SessionParameters_tD123179695A5EB2FFEFF3AF304B4499FA9EFB48D * ___mSessionParameters_33; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.SecurityParameters BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol::mSecurityParameters SecurityParameters_t6B17CF2860B92B5393C0EC2B7CF4986ABB598803 * ___mSecurityParameters_34; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.Certificate BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol::mPeerCertificate Certificate_t31EFEC0119C00E11336F10F40156AF72B3D4EE8E * ___mPeerCertificate_35; // System.Int32[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol::mOfferedCipherSuites Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___mOfferedCipherSuites_36; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol::mOfferedCompressionMethods ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___mOfferedCompressionMethods_37; // System.Collections.IDictionary BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol::mClientExtensions RuntimeObject* ___mClientExtensions_38; // System.Collections.IDictionary BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol::mServerExtensions RuntimeObject* ___mServerExtensions_39; // System.Int16 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol::mConnectionState int16_t ___mConnectionState_40; // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol::mResumedSession bool ___mResumedSession_41; // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol::mReceivedChangeCipherSpec bool ___mReceivedChangeCipherSpec_42; // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol::mSecureRenegotiation bool ___mSecureRenegotiation_43; // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol::mAllowCertificateStatus bool ___mAllowCertificateStatus_44; // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol::mExpectSessionTicket bool ___mExpectSessionTicket_45; // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol::mBlocking bool ___mBlocking_46; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.ByteQueueStream BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol::mInputBuffers ByteQueueStream_t4D33684562A3B8282ABEF110EF63454A9E2B6CF8 * ___mInputBuffers_47; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.ByteQueueStream BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsProtocol::mOutputBuffer ByteQueueStream_t4D33684562A3B8282ABEF110EF63454A9E2B6CF8 * ___mOutputBuffer_48; public: inline static int32_t get_offset_of_mApplicationDataQueue_20() { return static_cast(offsetof(TlsProtocol_t0AF7CC5A58D00FFFD3D400269F4EFEF8E0A0AF69, ___mApplicationDataQueue_20)); } inline ByteQueue_tFCDD21AF1559BE58C2488F5FA5AEBAA16ED1A471 * get_mApplicationDataQueue_20() const { return ___mApplicationDataQueue_20; } inline ByteQueue_tFCDD21AF1559BE58C2488F5FA5AEBAA16ED1A471 ** get_address_of_mApplicationDataQueue_20() { return &___mApplicationDataQueue_20; } inline void set_mApplicationDataQueue_20(ByteQueue_tFCDD21AF1559BE58C2488F5FA5AEBAA16ED1A471 * value) { ___mApplicationDataQueue_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___mApplicationDataQueue_20), (void*)value); } inline static int32_t get_offset_of_mAlertQueue_21() { return static_cast(offsetof(TlsProtocol_t0AF7CC5A58D00FFFD3D400269F4EFEF8E0A0AF69, ___mAlertQueue_21)); } inline ByteQueue_tFCDD21AF1559BE58C2488F5FA5AEBAA16ED1A471 * get_mAlertQueue_21() const { return ___mAlertQueue_21; } inline ByteQueue_tFCDD21AF1559BE58C2488F5FA5AEBAA16ED1A471 ** get_address_of_mAlertQueue_21() { return &___mAlertQueue_21; } inline void set_mAlertQueue_21(ByteQueue_tFCDD21AF1559BE58C2488F5FA5AEBAA16ED1A471 * value) { ___mAlertQueue_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___mAlertQueue_21), (void*)value); } inline static int32_t get_offset_of_mHandshakeQueue_22() { return static_cast(offsetof(TlsProtocol_t0AF7CC5A58D00FFFD3D400269F4EFEF8E0A0AF69, ___mHandshakeQueue_22)); } inline ByteQueue_tFCDD21AF1559BE58C2488F5FA5AEBAA16ED1A471 * get_mHandshakeQueue_22() const { return ___mHandshakeQueue_22; } inline ByteQueue_tFCDD21AF1559BE58C2488F5FA5AEBAA16ED1A471 ** get_address_of_mHandshakeQueue_22() { return &___mHandshakeQueue_22; } inline void set_mHandshakeQueue_22(ByteQueue_tFCDD21AF1559BE58C2488F5FA5AEBAA16ED1A471 * value) { ___mHandshakeQueue_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___mHandshakeQueue_22), (void*)value); } inline static int32_t get_offset_of_mRecordStream_23() { return static_cast(offsetof(TlsProtocol_t0AF7CC5A58D00FFFD3D400269F4EFEF8E0A0AF69, ___mRecordStream_23)); } inline RecordStream_t7C44C947EB6F1ED4E1EE3A0869D4D9542A6D6C3E * get_mRecordStream_23() const { return ___mRecordStream_23; } inline RecordStream_t7C44C947EB6F1ED4E1EE3A0869D4D9542A6D6C3E ** get_address_of_mRecordStream_23() { return &___mRecordStream_23; } inline void set_mRecordStream_23(RecordStream_t7C44C947EB6F1ED4E1EE3A0869D4D9542A6D6C3E * value) { ___mRecordStream_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___mRecordStream_23), (void*)value); } inline static int32_t get_offset_of_mSecureRandom_24() { return static_cast(offsetof(TlsProtocol_t0AF7CC5A58D00FFFD3D400269F4EFEF8E0A0AF69, ___mSecureRandom_24)); } inline SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * get_mSecureRandom_24() const { return ___mSecureRandom_24; } inline SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 ** get_address_of_mSecureRandom_24() { return &___mSecureRandom_24; } inline void set_mSecureRandom_24(SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * value) { ___mSecureRandom_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___mSecureRandom_24), (void*)value); } inline static int32_t get_offset_of_mTlsStream_25() { return static_cast(offsetof(TlsProtocol_t0AF7CC5A58D00FFFD3D400269F4EFEF8E0A0AF69, ___mTlsStream_25)); } inline TlsStream_tE67EA4971A8FA0C9BFF2779F6B2DA94770376E5A * get_mTlsStream_25() const { return ___mTlsStream_25; } inline TlsStream_tE67EA4971A8FA0C9BFF2779F6B2DA94770376E5A ** get_address_of_mTlsStream_25() { return &___mTlsStream_25; } inline void set_mTlsStream_25(TlsStream_tE67EA4971A8FA0C9BFF2779F6B2DA94770376E5A * value) { ___mTlsStream_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___mTlsStream_25), (void*)value); } inline static int32_t get_offset_of_mClosed_26() { return static_cast(offsetof(TlsProtocol_t0AF7CC5A58D00FFFD3D400269F4EFEF8E0A0AF69, ___mClosed_26)); } inline bool get_mClosed_26() const { return ___mClosed_26; } inline bool* get_address_of_mClosed_26() { return &___mClosed_26; } inline void set_mClosed_26(bool value) { ___mClosed_26 = value; } inline static int32_t get_offset_of_mFailedWithError_27() { return static_cast(offsetof(TlsProtocol_t0AF7CC5A58D00FFFD3D400269F4EFEF8E0A0AF69, ___mFailedWithError_27)); } inline bool get_mFailedWithError_27() const { return ___mFailedWithError_27; } inline bool* get_address_of_mFailedWithError_27() { return &___mFailedWithError_27; } inline void set_mFailedWithError_27(bool value) { ___mFailedWithError_27 = value; } inline static int32_t get_offset_of_mAppDataReady_28() { return static_cast(offsetof(TlsProtocol_t0AF7CC5A58D00FFFD3D400269F4EFEF8E0A0AF69, ___mAppDataReady_28)); } inline bool get_mAppDataReady_28() const { return ___mAppDataReady_28; } inline bool* get_address_of_mAppDataReady_28() { return &___mAppDataReady_28; } inline void set_mAppDataReady_28(bool value) { ___mAppDataReady_28 = value; } inline static int32_t get_offset_of_mAppDataSplitEnabled_29() { return static_cast(offsetof(TlsProtocol_t0AF7CC5A58D00FFFD3D400269F4EFEF8E0A0AF69, ___mAppDataSplitEnabled_29)); } inline bool get_mAppDataSplitEnabled_29() const { return ___mAppDataSplitEnabled_29; } inline bool* get_address_of_mAppDataSplitEnabled_29() { return &___mAppDataSplitEnabled_29; } inline void set_mAppDataSplitEnabled_29(bool value) { ___mAppDataSplitEnabled_29 = value; } inline static int32_t get_offset_of_mAppDataSplitMode_30() { return static_cast(offsetof(TlsProtocol_t0AF7CC5A58D00FFFD3D400269F4EFEF8E0A0AF69, ___mAppDataSplitMode_30)); } inline int32_t get_mAppDataSplitMode_30() const { return ___mAppDataSplitMode_30; } inline int32_t* get_address_of_mAppDataSplitMode_30() { return &___mAppDataSplitMode_30; } inline void set_mAppDataSplitMode_30(int32_t value) { ___mAppDataSplitMode_30 = value; } inline static int32_t get_offset_of_mExpectedVerifyData_31() { return static_cast(offsetof(TlsProtocol_t0AF7CC5A58D00FFFD3D400269F4EFEF8E0A0AF69, ___mExpectedVerifyData_31)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_mExpectedVerifyData_31() const { return ___mExpectedVerifyData_31; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_mExpectedVerifyData_31() { return &___mExpectedVerifyData_31; } inline void set_mExpectedVerifyData_31(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___mExpectedVerifyData_31 = value; Il2CppCodeGenWriteBarrier((void**)(&___mExpectedVerifyData_31), (void*)value); } inline static int32_t get_offset_of_mTlsSession_32() { return static_cast(offsetof(TlsProtocol_t0AF7CC5A58D00FFFD3D400269F4EFEF8E0A0AF69, ___mTlsSession_32)); } inline RuntimeObject* get_mTlsSession_32() const { return ___mTlsSession_32; } inline RuntimeObject** get_address_of_mTlsSession_32() { return &___mTlsSession_32; } inline void set_mTlsSession_32(RuntimeObject* value) { ___mTlsSession_32 = value; Il2CppCodeGenWriteBarrier((void**)(&___mTlsSession_32), (void*)value); } inline static int32_t get_offset_of_mSessionParameters_33() { return static_cast(offsetof(TlsProtocol_t0AF7CC5A58D00FFFD3D400269F4EFEF8E0A0AF69, ___mSessionParameters_33)); } inline SessionParameters_tD123179695A5EB2FFEFF3AF304B4499FA9EFB48D * get_mSessionParameters_33() const { return ___mSessionParameters_33; } inline SessionParameters_tD123179695A5EB2FFEFF3AF304B4499FA9EFB48D ** get_address_of_mSessionParameters_33() { return &___mSessionParameters_33; } inline void set_mSessionParameters_33(SessionParameters_tD123179695A5EB2FFEFF3AF304B4499FA9EFB48D * value) { ___mSessionParameters_33 = value; Il2CppCodeGenWriteBarrier((void**)(&___mSessionParameters_33), (void*)value); } inline static int32_t get_offset_of_mSecurityParameters_34() { return static_cast(offsetof(TlsProtocol_t0AF7CC5A58D00FFFD3D400269F4EFEF8E0A0AF69, ___mSecurityParameters_34)); } inline SecurityParameters_t6B17CF2860B92B5393C0EC2B7CF4986ABB598803 * get_mSecurityParameters_34() const { return ___mSecurityParameters_34; } inline SecurityParameters_t6B17CF2860B92B5393C0EC2B7CF4986ABB598803 ** get_address_of_mSecurityParameters_34() { return &___mSecurityParameters_34; } inline void set_mSecurityParameters_34(SecurityParameters_t6B17CF2860B92B5393C0EC2B7CF4986ABB598803 * value) { ___mSecurityParameters_34 = value; Il2CppCodeGenWriteBarrier((void**)(&___mSecurityParameters_34), (void*)value); } inline static int32_t get_offset_of_mPeerCertificate_35() { return static_cast(offsetof(TlsProtocol_t0AF7CC5A58D00FFFD3D400269F4EFEF8E0A0AF69, ___mPeerCertificate_35)); } inline Certificate_t31EFEC0119C00E11336F10F40156AF72B3D4EE8E * get_mPeerCertificate_35() const { return ___mPeerCertificate_35; } inline Certificate_t31EFEC0119C00E11336F10F40156AF72B3D4EE8E ** get_address_of_mPeerCertificate_35() { return &___mPeerCertificate_35; } inline void set_mPeerCertificate_35(Certificate_t31EFEC0119C00E11336F10F40156AF72B3D4EE8E * value) { ___mPeerCertificate_35 = value; Il2CppCodeGenWriteBarrier((void**)(&___mPeerCertificate_35), (void*)value); } inline static int32_t get_offset_of_mOfferedCipherSuites_36() { return static_cast(offsetof(TlsProtocol_t0AF7CC5A58D00FFFD3D400269F4EFEF8E0A0AF69, ___mOfferedCipherSuites_36)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_mOfferedCipherSuites_36() const { return ___mOfferedCipherSuites_36; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_mOfferedCipherSuites_36() { return &___mOfferedCipherSuites_36; } inline void set_mOfferedCipherSuites_36(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___mOfferedCipherSuites_36 = value; Il2CppCodeGenWriteBarrier((void**)(&___mOfferedCipherSuites_36), (void*)value); } inline static int32_t get_offset_of_mOfferedCompressionMethods_37() { return static_cast(offsetof(TlsProtocol_t0AF7CC5A58D00FFFD3D400269F4EFEF8E0A0AF69, ___mOfferedCompressionMethods_37)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_mOfferedCompressionMethods_37() const { return ___mOfferedCompressionMethods_37; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_mOfferedCompressionMethods_37() { return &___mOfferedCompressionMethods_37; } inline void set_mOfferedCompressionMethods_37(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___mOfferedCompressionMethods_37 = value; Il2CppCodeGenWriteBarrier((void**)(&___mOfferedCompressionMethods_37), (void*)value); } inline static int32_t get_offset_of_mClientExtensions_38() { return static_cast(offsetof(TlsProtocol_t0AF7CC5A58D00FFFD3D400269F4EFEF8E0A0AF69, ___mClientExtensions_38)); } inline RuntimeObject* get_mClientExtensions_38() const { return ___mClientExtensions_38; } inline RuntimeObject** get_address_of_mClientExtensions_38() { return &___mClientExtensions_38; } inline void set_mClientExtensions_38(RuntimeObject* value) { ___mClientExtensions_38 = value; Il2CppCodeGenWriteBarrier((void**)(&___mClientExtensions_38), (void*)value); } inline static int32_t get_offset_of_mServerExtensions_39() { return static_cast(offsetof(TlsProtocol_t0AF7CC5A58D00FFFD3D400269F4EFEF8E0A0AF69, ___mServerExtensions_39)); } inline RuntimeObject* get_mServerExtensions_39() const { return ___mServerExtensions_39; } inline RuntimeObject** get_address_of_mServerExtensions_39() { return &___mServerExtensions_39; } inline void set_mServerExtensions_39(RuntimeObject* value) { ___mServerExtensions_39 = value; Il2CppCodeGenWriteBarrier((void**)(&___mServerExtensions_39), (void*)value); } inline static int32_t get_offset_of_mConnectionState_40() { return static_cast(offsetof(TlsProtocol_t0AF7CC5A58D00FFFD3D400269F4EFEF8E0A0AF69, ___mConnectionState_40)); } inline int16_t get_mConnectionState_40() const { return ___mConnectionState_40; } inline int16_t* get_address_of_mConnectionState_40() { return &___mConnectionState_40; } inline void set_mConnectionState_40(int16_t value) { ___mConnectionState_40 = value; } inline static int32_t get_offset_of_mResumedSession_41() { return static_cast(offsetof(TlsProtocol_t0AF7CC5A58D00FFFD3D400269F4EFEF8E0A0AF69, ___mResumedSession_41)); } inline bool get_mResumedSession_41() const { return ___mResumedSession_41; } inline bool* get_address_of_mResumedSession_41() { return &___mResumedSession_41; } inline void set_mResumedSession_41(bool value) { ___mResumedSession_41 = value; } inline static int32_t get_offset_of_mReceivedChangeCipherSpec_42() { return static_cast(offsetof(TlsProtocol_t0AF7CC5A58D00FFFD3D400269F4EFEF8E0A0AF69, ___mReceivedChangeCipherSpec_42)); } inline bool get_mReceivedChangeCipherSpec_42() const { return ___mReceivedChangeCipherSpec_42; } inline bool* get_address_of_mReceivedChangeCipherSpec_42() { return &___mReceivedChangeCipherSpec_42; } inline void set_mReceivedChangeCipherSpec_42(bool value) { ___mReceivedChangeCipherSpec_42 = value; } inline static int32_t get_offset_of_mSecureRenegotiation_43() { return static_cast(offsetof(TlsProtocol_t0AF7CC5A58D00FFFD3D400269F4EFEF8E0A0AF69, ___mSecureRenegotiation_43)); } inline bool get_mSecureRenegotiation_43() const { return ___mSecureRenegotiation_43; } inline bool* get_address_of_mSecureRenegotiation_43() { return &___mSecureRenegotiation_43; } inline void set_mSecureRenegotiation_43(bool value) { ___mSecureRenegotiation_43 = value; } inline static int32_t get_offset_of_mAllowCertificateStatus_44() { return static_cast(offsetof(TlsProtocol_t0AF7CC5A58D00FFFD3D400269F4EFEF8E0A0AF69, ___mAllowCertificateStatus_44)); } inline bool get_mAllowCertificateStatus_44() const { return ___mAllowCertificateStatus_44; } inline bool* get_address_of_mAllowCertificateStatus_44() { return &___mAllowCertificateStatus_44; } inline void set_mAllowCertificateStatus_44(bool value) { ___mAllowCertificateStatus_44 = value; } inline static int32_t get_offset_of_mExpectSessionTicket_45() { return static_cast(offsetof(TlsProtocol_t0AF7CC5A58D00FFFD3D400269F4EFEF8E0A0AF69, ___mExpectSessionTicket_45)); } inline bool get_mExpectSessionTicket_45() const { return ___mExpectSessionTicket_45; } inline bool* get_address_of_mExpectSessionTicket_45() { return &___mExpectSessionTicket_45; } inline void set_mExpectSessionTicket_45(bool value) { ___mExpectSessionTicket_45 = value; } inline static int32_t get_offset_of_mBlocking_46() { return static_cast(offsetof(TlsProtocol_t0AF7CC5A58D00FFFD3D400269F4EFEF8E0A0AF69, ___mBlocking_46)); } inline bool get_mBlocking_46() const { return ___mBlocking_46; } inline bool* get_address_of_mBlocking_46() { return &___mBlocking_46; } inline void set_mBlocking_46(bool value) { ___mBlocking_46 = value; } inline static int32_t get_offset_of_mInputBuffers_47() { return static_cast(offsetof(TlsProtocol_t0AF7CC5A58D00FFFD3D400269F4EFEF8E0A0AF69, ___mInputBuffers_47)); } inline ByteQueueStream_t4D33684562A3B8282ABEF110EF63454A9E2B6CF8 * get_mInputBuffers_47() const { return ___mInputBuffers_47; } inline ByteQueueStream_t4D33684562A3B8282ABEF110EF63454A9E2B6CF8 ** get_address_of_mInputBuffers_47() { return &___mInputBuffers_47; } inline void set_mInputBuffers_47(ByteQueueStream_t4D33684562A3B8282ABEF110EF63454A9E2B6CF8 * value) { ___mInputBuffers_47 = value; Il2CppCodeGenWriteBarrier((void**)(&___mInputBuffers_47), (void*)value); } inline static int32_t get_offset_of_mOutputBuffer_48() { return static_cast(offsetof(TlsProtocol_t0AF7CC5A58D00FFFD3D400269F4EFEF8E0A0AF69, ___mOutputBuffer_48)); } inline ByteQueueStream_t4D33684562A3B8282ABEF110EF63454A9E2B6CF8 * get_mOutputBuffer_48() const { return ___mOutputBuffer_48; } inline ByteQueueStream_t4D33684562A3B8282ABEF110EF63454A9E2B6CF8 ** get_address_of_mOutputBuffer_48() { return &___mOutputBuffer_48; } inline void set_mOutputBuffer_48(ByteQueueStream_t4D33684562A3B8282ABEF110EF63454A9E2B6CF8 * value) { ___mOutputBuffer_48 = value; Il2CppCodeGenWriteBarrier((void**)(&___mOutputBuffer_48), (void*)value); } }; // UnityEngine.TouchScreenKeyboardType struct TouchScreenKeyboardType_tBD90DFB07923EC19E5EA59FAF26292AC2799A932 { public: // System.Int32 UnityEngine.TouchScreenKeyboardType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(TouchScreenKeyboardType_tBD90DFB07923EC19E5EA59FAF26292AC2799A932, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // DG.Tweening.TweenType struct TweenType_tAB2DEC1268409EA172594368494218E51696EF5D { public: // System.Int32 DG.Tweening.TweenType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(TweenType_tAB2DEC1268409EA172594368494218E51696EF5D, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // DG.Tweening.UpdateType struct UpdateType_t9D838506DD148F29E6183FB298E41921E51CC5ED { public: // System.Int32 DG.Tweening.UpdateType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(UpdateType_t9D838506DD148F29E6183FB298E41921E51CC5ED, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.UriFormat struct UriFormat_t25C936463BDE737B16A8EC3DA05091FC31F1A71F { public: // System.Int32 System.UriFormat::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(UriFormat_t25C936463BDE737B16A8EC3DA05091FC31F1A71F, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.UriIdnScope struct UriIdnScope_tBA22B992BA582F68F2B98CDEBCB24299F249DE4D { public: // System.Int32 System.UriIdnScope::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(UriIdnScope_tBA22B992BA582F68F2B98CDEBCB24299F249DE4D, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.UriKind struct UriKind_tFC16ACC1842283AAE2C7F50C9C70EFBF6550B3FC { public: // System.Int32 System.UriKind::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(UriKind_tFC16ACC1842283AAE2C7F50C9C70EFBF6550B3FC, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // BestHTTP.WebSocket.Frames.WebSocketFrameTypes struct WebSocketFrameTypes_t5E155EE97383991A3D431DB778551B504FAEDDA7 { public: // System.Byte BestHTTP.WebSocket.Frames.WebSocketFrameTypes::value__ uint8_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(WebSocketFrameTypes_t5E155EE97383991A3D431DB778551B504FAEDDA7, ___value___2)); } inline uint8_t get_value___2() const { return ___value___2; } inline uint8_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(uint8_t value) { ___value___2 = value; } }; // BestHTTP.Extensions.WriteOnlyBufferedStream struct WriteOnlyBufferedStream_tFF439EC9711DB5912AB954E51F6122E21A348F14 : public Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB { public: // System.Int32 BestHTTP.Extensions.WriteOnlyBufferedStream::_position int32_t ____position_5; // System.Byte[] BestHTTP.Extensions.WriteOnlyBufferedStream::buffer ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___buffer_6; // System.IO.Stream BestHTTP.Extensions.WriteOnlyBufferedStream::stream Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___stream_7; public: inline static int32_t get_offset_of__position_5() { return static_cast(offsetof(WriteOnlyBufferedStream_tFF439EC9711DB5912AB954E51F6122E21A348F14, ____position_5)); } inline int32_t get__position_5() const { return ____position_5; } inline int32_t* get_address_of__position_5() { return &____position_5; } inline void set__position_5(int32_t value) { ____position_5 = value; } inline static int32_t get_offset_of_buffer_6() { return static_cast(offsetof(WriteOnlyBufferedStream_tFF439EC9711DB5912AB954E51F6122E21A348F14, ___buffer_6)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_buffer_6() const { return ___buffer_6; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_buffer_6() { return &___buffer_6; } inline void set_buffer_6(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___buffer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___buffer_6), (void*)value); } inline static int32_t get_offset_of_stream_7() { return static_cast(offsetof(WriteOnlyBufferedStream_tFF439EC9711DB5912AB954E51F6122E21A348F14, ___stream_7)); } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_stream_7() const { return ___stream_7; } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_stream_7() { return &___stream_7; } inline void set_stream_7(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value) { ___stream_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___stream_7), (void*)value); } }; // UnityEngine.UI.Button/ButtonClickedEvent struct ButtonClickedEvent_tE6D6D94ED8100451CF00D2BED1FB2253F37BB14F : public UnityEvent_tA0EA9BC49FD7D5185E7A238EF2E0E6F5D0EE27F4 { public: public: }; // UnityEngine.UI.CanvasScaler/ScaleMode struct ScaleMode_t0CBCB9FD5EB6F84B682D0F5E4203D0925BCDB069 { public: // System.Int32 UnityEngine.UI.CanvasScaler/ScaleMode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(ScaleMode_t0CBCB9FD5EB6F84B682D0F5E4203D0925BCDB069, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.UI.CanvasScaler/ScreenMatchMode struct ScreenMatchMode_t64D475564756A5C040CC9B7C62D321C7133970DB { public: // System.Int32 UnityEngine.UI.CanvasScaler/ScreenMatchMode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(ScreenMatchMode_t64D475564756A5C040CC9B7C62D321C7133970DB, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.UI.CanvasScaler/Unit struct Unit_t48D9126E954FB214B48FD2E199CB041FF97CFF80 { public: // System.Int32 UnityEngine.UI.CanvasScaler/Unit::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Unit_t48D9126E954FB214B48FD2E199CB041FF97CFF80, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // CommonConfig/ServerType struct ServerType_t62D2D428D5BEB4AA51A25A18FA755682C0756E71 { public: // System.Int32 CommonConfig/ServerType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(ServerType_t62D2D428D5BEB4AA51A25A18FA755682C0756E71, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.UI.GridLayoutGroup/Axis struct Axis_tBD4147C2DEA74142784225B3CB0DC2DF0217A1DE { public: // System.Int32 UnityEngine.UI.GridLayoutGroup/Axis::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Axis_tBD4147C2DEA74142784225B3CB0DC2DF0217A1DE, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.UI.GridLayoutGroup/Constraint struct Constraint_tA930C0D79BAE00A005492CF973235EFBAD92D20D { public: // System.Int32 UnityEngine.UI.GridLayoutGroup/Constraint::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Constraint_tA930C0D79BAE00A005492CF973235EFBAD92D20D, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.UI.GridLayoutGroup/Corner struct Corner_t448F8AE9F386A784CC3EF956C9BDDC068E6DAFB2 { public: // System.Int32 UnityEngine.UI.GridLayoutGroup/Corner::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Corner_t448F8AE9F386A784CC3EF956C9BDDC068E6DAFB2, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.UI.Image/FillMethod struct FillMethod_tC37E5898D113A8FBF25A6AB6FBA451CC51E211E2 { public: // System.Int32 UnityEngine.UI.Image/FillMethod::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(FillMethod_tC37E5898D113A8FBF25A6AB6FBA451CC51E211E2, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.UI.Image/Type struct Type_tDCB08AB7425CAB70C1E46CC341F877423B5A5E12 { public: // System.Int32 UnityEngine.UI.Image/Type::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Type_tDCB08AB7425CAB70C1E46CC341F877423B5A5E12, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.UI.InputField/CharacterValidation struct CharacterValidation_t03AFB752BBD6215579765978CE67D7159431FC41 { public: // System.Int32 UnityEngine.UI.InputField/CharacterValidation::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(CharacterValidation_t03AFB752BBD6215579765978CE67D7159431FC41, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.UI.InputField/ContentType struct ContentType_t15FD47A38F32CADD417E3A07C787F1B3997B9AC1 { public: // System.Int32 UnityEngine.UI.InputField/ContentType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(ContentType_t15FD47A38F32CADD417E3A07C787F1B3997B9AC1, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.UI.InputField/EndEditEvent struct EndEditEvent_t85372BABF7066F7DF46B414EA94C5D42736A0E8D : public UnityEvent_1_t208A952325F66BFCB1EDEECEFEF5F1C7A16298A0 { public: public: }; // UnityEngine.UI.InputField/InputType struct InputType_t43FE97C0C3EE1F7DB81E2F34420780D1DFBF03D2 { public: // System.Int32 UnityEngine.UI.InputField/InputType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(InputType_t43FE97C0C3EE1F7DB81E2F34420780D1DFBF03D2, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.UI.InputField/LineType struct LineType_t3249F1C248D9D12DE265C49F371F2C3618AFEFCE { public: // System.Int32 UnityEngine.UI.InputField/LineType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(LineType_t3249F1C248D9D12DE265C49F371F2C3618AFEFCE, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.UI.InputField/OnChangeEvent struct OnChangeEvent_t2E59014A56EA94168140F0585834954B40D716F7 : public UnityEvent_1_t208A952325F66BFCB1EDEECEFEF5F1C7A16298A0 { public: public: }; // UnityEngine.UI.Navigation/Mode struct Mode_t3113FDF05158BBA1DFC78D7F69E4C1D25135CB0F { public: // System.Int32 UnityEngine.UI.Navigation/Mode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Mode_t3113FDF05158BBA1DFC78D7F69E4C1D25135CB0F, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.RectTransform/Axis struct Axis_t8881AF0DB9EDF3F36FE049AA194D0206695EBF83 { public: // System.Int32 UnityEngine.RectTransform/Axis::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Axis_t8881AF0DB9EDF3F36FE049AA194D0206695EBF83, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.UI.Selectable/Transition struct Transition_t1FC449676815A798E758D32E8BE6DC0A2511DF14 { public: // System.Int32 UnityEngine.UI.Selectable/Transition::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Transition_t1FC449676815A798E758D32E8BE6DC0A2511DF14, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // BestHTTP.PlatformSupport.TcpClient.General.TcpClient/Properties struct Properties_t26ACDB7582B9F0C0550CD9AB880EFEB0ED5D5650 { public: // System.UInt32 BestHTTP.PlatformSupport.TcpClient.General.TcpClient/Properties::value__ uint32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Properties_t26ACDB7582B9F0C0550CD9AB880EFEB0ED5D5650, ___value___2)); } inline uint32_t get_value___2() const { return ___value___2; } inline uint32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(uint32_t value) { ___value___2 = value; } }; // UnityEngine.UI.Toggle/ToggleTransition struct ToggleTransition_t4D1AA30F2BA24242EB9D1DD2E3DF839F0BAC5167 { public: // System.Int32 UnityEngine.UI.Toggle/ToggleTransition::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(ToggleTransition_t4D1AA30F2BA24242EB9D1DD2E3DF839F0BAC5167, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Uri/Flags struct Flags_t72C622DF5C3ED762F55AB36EC2CCDDF3AF56B8D4 { public: // System.UInt64 System.Uri/Flags::value__ uint64_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Flags_t72C622DF5C3ED762F55AB36EC2CCDDF3AF56B8D4, ___value___2)); } inline uint64_t get_value___2() const { return ___value___2; } inline uint64_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(uint64_t value) { ___value___2 = value; } }; // DG.Tweening.Core.ABSSequentiable struct ABSSequentiable_t74F7F9AFFD39EE435A16A3E202A7872B46DA6C76 : public RuntimeObject { public: // DG.Tweening.TweenType DG.Tweening.Core.ABSSequentiable::tweenType int32_t ___tweenType_0; // System.Single DG.Tweening.Core.ABSSequentiable::sequencedPosition float ___sequencedPosition_1; // System.Single DG.Tweening.Core.ABSSequentiable::sequencedEndPosition float ___sequencedEndPosition_2; // DG.Tweening.TweenCallback DG.Tweening.Core.ABSSequentiable::onStart TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB * ___onStart_3; public: inline static int32_t get_offset_of_tweenType_0() { return static_cast(offsetof(ABSSequentiable_t74F7F9AFFD39EE435A16A3E202A7872B46DA6C76, ___tweenType_0)); } inline int32_t get_tweenType_0() const { return ___tweenType_0; } inline int32_t* get_address_of_tweenType_0() { return &___tweenType_0; } inline void set_tweenType_0(int32_t value) { ___tweenType_0 = value; } inline static int32_t get_offset_of_sequencedPosition_1() { return static_cast(offsetof(ABSSequentiable_t74F7F9AFFD39EE435A16A3E202A7872B46DA6C76, ___sequencedPosition_1)); } inline float get_sequencedPosition_1() const { return ___sequencedPosition_1; } inline float* get_address_of_sequencedPosition_1() { return &___sequencedPosition_1; } inline void set_sequencedPosition_1(float value) { ___sequencedPosition_1 = value; } inline static int32_t get_offset_of_sequencedEndPosition_2() { return static_cast(offsetof(ABSSequentiable_t74F7F9AFFD39EE435A16A3E202A7872B46DA6C76, ___sequencedEndPosition_2)); } inline float get_sequencedEndPosition_2() const { return ___sequencedEndPosition_2; } inline float* get_address_of_sequencedEndPosition_2() { return &___sequencedEndPosition_2; } inline void set_sequencedEndPosition_2(float value) { ___sequencedEndPosition_2 = value; } inline static int32_t get_offset_of_onStart_3() { return static_cast(offsetof(ABSSequentiable_t74F7F9AFFD39EE435A16A3E202A7872B46DA6C76, ___onStart_3)); } inline TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB * get_onStart_3() const { return ___onStart_3; } inline TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB ** get_address_of_onStart_3() { return &___onStart_3; } inline void set_onStart_3(TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB * value) { ___onStart_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___onStart_3), (void*)value); } }; // CommonConfig struct CommonConfig_tC195D49FCF47E1A741B397705259762D5D501FB3 : public RuntimeObject { public: public: }; struct CommonConfig_tC195D49FCF47E1A741B397705259762D5D501FB3_StaticFields { public: // System.String[] CommonConfig::AppNames StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___AppNames_0; // System.Int32[] CommonConfig::AppLanguages Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___AppLanguages_1; // System.Int32[] CommonConfig::ServerIndexes Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___ServerIndexes_2; // System.Boolean CommonConfig::iosTaoKe bool ___iosTaoKe_3; // System.Boolean CommonConfig::ReleaseVersion2 bool ___ReleaseVersion2_4; // System.Boolean CommonConfig::SpecialVersion1 bool ___SpecialVersion1_5; // System.Boolean CommonConfig::needToExamine bool ___needToExamine_6; // System.Boolean CommonConfig::isReleaseVersion bool ___isReleaseVersion_7; // System.Int32 CommonConfig::devicePlan int32_t ___devicePlan_8; // System.Int32 CommonConfig::ringsPrecision int32_t ___ringsPrecision_9; // System.Int32 CommonConfig::arrowSpeedPrecision int32_t ___arrowSpeedPrecision_10; // System.Single CommonConfig::arrowWeight float ___arrowWeight_11; // CommonConfig/ServerType CommonConfig::serverType int32_t ___serverType_12; // System.String CommonConfig::businessServerWsURL String_t* ___businessServerWsURL_13; // System.String CommonConfig::gamePKServerWsURL String_t* ___gamePKServerWsURL_14; public: inline static int32_t get_offset_of_AppNames_0() { return static_cast(offsetof(CommonConfig_tC195D49FCF47E1A741B397705259762D5D501FB3_StaticFields, ___AppNames_0)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_AppNames_0() const { return ___AppNames_0; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_AppNames_0() { return &___AppNames_0; } inline void set_AppNames_0(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___AppNames_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___AppNames_0), (void*)value); } inline static int32_t get_offset_of_AppLanguages_1() { return static_cast(offsetof(CommonConfig_tC195D49FCF47E1A741B397705259762D5D501FB3_StaticFields, ___AppLanguages_1)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_AppLanguages_1() const { return ___AppLanguages_1; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_AppLanguages_1() { return &___AppLanguages_1; } inline void set_AppLanguages_1(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___AppLanguages_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___AppLanguages_1), (void*)value); } inline static int32_t get_offset_of_ServerIndexes_2() { return static_cast(offsetof(CommonConfig_tC195D49FCF47E1A741B397705259762D5D501FB3_StaticFields, ___ServerIndexes_2)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_ServerIndexes_2() const { return ___ServerIndexes_2; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_ServerIndexes_2() { return &___ServerIndexes_2; } inline void set_ServerIndexes_2(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___ServerIndexes_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___ServerIndexes_2), (void*)value); } inline static int32_t get_offset_of_iosTaoKe_3() { return static_cast(offsetof(CommonConfig_tC195D49FCF47E1A741B397705259762D5D501FB3_StaticFields, ___iosTaoKe_3)); } inline bool get_iosTaoKe_3() const { return ___iosTaoKe_3; } inline bool* get_address_of_iosTaoKe_3() { return &___iosTaoKe_3; } inline void set_iosTaoKe_3(bool value) { ___iosTaoKe_3 = value; } inline static int32_t get_offset_of_ReleaseVersion2_4() { return static_cast(offsetof(CommonConfig_tC195D49FCF47E1A741B397705259762D5D501FB3_StaticFields, ___ReleaseVersion2_4)); } inline bool get_ReleaseVersion2_4() const { return ___ReleaseVersion2_4; } inline bool* get_address_of_ReleaseVersion2_4() { return &___ReleaseVersion2_4; } inline void set_ReleaseVersion2_4(bool value) { ___ReleaseVersion2_4 = value; } inline static int32_t get_offset_of_SpecialVersion1_5() { return static_cast(offsetof(CommonConfig_tC195D49FCF47E1A741B397705259762D5D501FB3_StaticFields, ___SpecialVersion1_5)); } inline bool get_SpecialVersion1_5() const { return ___SpecialVersion1_5; } inline bool* get_address_of_SpecialVersion1_5() { return &___SpecialVersion1_5; } inline void set_SpecialVersion1_5(bool value) { ___SpecialVersion1_5 = value; } inline static int32_t get_offset_of_needToExamine_6() { return static_cast(offsetof(CommonConfig_tC195D49FCF47E1A741B397705259762D5D501FB3_StaticFields, ___needToExamine_6)); } inline bool get_needToExamine_6() const { return ___needToExamine_6; } inline bool* get_address_of_needToExamine_6() { return &___needToExamine_6; } inline void set_needToExamine_6(bool value) { ___needToExamine_6 = value; } inline static int32_t get_offset_of_isReleaseVersion_7() { return static_cast(offsetof(CommonConfig_tC195D49FCF47E1A741B397705259762D5D501FB3_StaticFields, ___isReleaseVersion_7)); } inline bool get_isReleaseVersion_7() const { return ___isReleaseVersion_7; } inline bool* get_address_of_isReleaseVersion_7() { return &___isReleaseVersion_7; } inline void set_isReleaseVersion_7(bool value) { ___isReleaseVersion_7 = value; } inline static int32_t get_offset_of_devicePlan_8() { return static_cast(offsetof(CommonConfig_tC195D49FCF47E1A741B397705259762D5D501FB3_StaticFields, ___devicePlan_8)); } inline int32_t get_devicePlan_8() const { return ___devicePlan_8; } inline int32_t* get_address_of_devicePlan_8() { return &___devicePlan_8; } inline void set_devicePlan_8(int32_t value) { ___devicePlan_8 = value; } inline static int32_t get_offset_of_ringsPrecision_9() { return static_cast(offsetof(CommonConfig_tC195D49FCF47E1A741B397705259762D5D501FB3_StaticFields, ___ringsPrecision_9)); } inline int32_t get_ringsPrecision_9() const { return ___ringsPrecision_9; } inline int32_t* get_address_of_ringsPrecision_9() { return &___ringsPrecision_9; } inline void set_ringsPrecision_9(int32_t value) { ___ringsPrecision_9 = value; } inline static int32_t get_offset_of_arrowSpeedPrecision_10() { return static_cast(offsetof(CommonConfig_tC195D49FCF47E1A741B397705259762D5D501FB3_StaticFields, ___arrowSpeedPrecision_10)); } inline int32_t get_arrowSpeedPrecision_10() const { return ___arrowSpeedPrecision_10; } inline int32_t* get_address_of_arrowSpeedPrecision_10() { return &___arrowSpeedPrecision_10; } inline void set_arrowSpeedPrecision_10(int32_t value) { ___arrowSpeedPrecision_10 = value; } inline static int32_t get_offset_of_arrowWeight_11() { return static_cast(offsetof(CommonConfig_tC195D49FCF47E1A741B397705259762D5D501FB3_StaticFields, ___arrowWeight_11)); } inline float get_arrowWeight_11() const { return ___arrowWeight_11; } inline float* get_address_of_arrowWeight_11() { return &___arrowWeight_11; } inline void set_arrowWeight_11(float value) { ___arrowWeight_11 = value; } inline static int32_t get_offset_of_serverType_12() { return static_cast(offsetof(CommonConfig_tC195D49FCF47E1A741B397705259762D5D501FB3_StaticFields, ___serverType_12)); } inline int32_t get_serverType_12() const { return ___serverType_12; } inline int32_t* get_address_of_serverType_12() { return &___serverType_12; } inline void set_serverType_12(int32_t value) { ___serverType_12 = value; } inline static int32_t get_offset_of_businessServerWsURL_13() { return static_cast(offsetof(CommonConfig_tC195D49FCF47E1A741B397705259762D5D501FB3_StaticFields, ___businessServerWsURL_13)); } inline String_t* get_businessServerWsURL_13() const { return ___businessServerWsURL_13; } inline String_t** get_address_of_businessServerWsURL_13() { return &___businessServerWsURL_13; } inline void set_businessServerWsURL_13(String_t* value) { ___businessServerWsURL_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___businessServerWsURL_13), (void*)value); } inline static int32_t get_offset_of_gamePKServerWsURL_14() { return static_cast(offsetof(CommonConfig_tC195D49FCF47E1A741B397705259762D5D501FB3_StaticFields, ___gamePKServerWsURL_14)); } inline String_t* get_gamePKServerWsURL_14() const { return ___gamePKServerWsURL_14; } inline String_t** get_address_of_gamePKServerWsURL_14() { return &___gamePKServerWsURL_14; } inline void set_gamePKServerWsURL_14(String_t* value) { ___gamePKServerWsURL_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___gamePKServerWsURL_14), (void*)value); } }; // UnityEngine.Component struct Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A { public: public: }; // BestHTTP.ConnectionBase struct ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57 : public RuntimeObject { public: // System.String BestHTTP.ConnectionBase::k__BackingField String_t* ___U3CServerAddressU3Ek__BackingField_0; // BestHTTP.HTTPConnectionStates BestHTTP.ConnectionBase::k__BackingField int32_t ___U3CStateU3Ek__BackingField_1; // BestHTTP.HTTPRequest BestHTTP.ConnectionBase::k__BackingField HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * ___U3CCurrentRequestU3Ek__BackingField_2; // System.DateTime BestHTTP.ConnectionBase::k__BackingField DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___U3CStartTimeU3Ek__BackingField_3; // System.DateTime BestHTTP.ConnectionBase::k__BackingField DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___U3CTimedOutStartU3Ek__BackingField_4; // System.Uri BestHTTP.ConnectionBase::k__BackingField Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___U3CLastProcessedUriU3Ek__BackingField_5; // System.DateTime BestHTTP.ConnectionBase::LastProcessTime DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___LastProcessTime_6; // BestHTTP.HTTPConnectionRecycledDelegate BestHTTP.ConnectionBase::OnConnectionRecycled HTTPConnectionRecycledDelegate_t386301071C1322CEA345542DD58665526B1CA85A * ___OnConnectionRecycled_7; // System.Boolean BestHTTP.ConnectionBase::IsThreaded bool ___IsThreaded_8; // System.Boolean BestHTTP.ConnectionBase::k__BackingField bool ___U3CIsDisposedU3Ek__BackingField_9; public: inline static int32_t get_offset_of_U3CServerAddressU3Ek__BackingField_0() { return static_cast(offsetof(ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57, ___U3CServerAddressU3Ek__BackingField_0)); } inline String_t* get_U3CServerAddressU3Ek__BackingField_0() const { return ___U3CServerAddressU3Ek__BackingField_0; } inline String_t** get_address_of_U3CServerAddressU3Ek__BackingField_0() { return &___U3CServerAddressU3Ek__BackingField_0; } inline void set_U3CServerAddressU3Ek__BackingField_0(String_t* value) { ___U3CServerAddressU3Ek__BackingField_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CServerAddressU3Ek__BackingField_0), (void*)value); } inline static int32_t get_offset_of_U3CStateU3Ek__BackingField_1() { return static_cast(offsetof(ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57, ___U3CStateU3Ek__BackingField_1)); } inline int32_t get_U3CStateU3Ek__BackingField_1() const { return ___U3CStateU3Ek__BackingField_1; } inline int32_t* get_address_of_U3CStateU3Ek__BackingField_1() { return &___U3CStateU3Ek__BackingField_1; } inline void set_U3CStateU3Ek__BackingField_1(int32_t value) { ___U3CStateU3Ek__BackingField_1 = value; } inline static int32_t get_offset_of_U3CCurrentRequestU3Ek__BackingField_2() { return static_cast(offsetof(ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57, ___U3CCurrentRequestU3Ek__BackingField_2)); } inline HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * get_U3CCurrentRequestU3Ek__BackingField_2() const { return ___U3CCurrentRequestU3Ek__BackingField_2; } inline HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 ** get_address_of_U3CCurrentRequestU3Ek__BackingField_2() { return &___U3CCurrentRequestU3Ek__BackingField_2; } inline void set_U3CCurrentRequestU3Ek__BackingField_2(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * value) { ___U3CCurrentRequestU3Ek__BackingField_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CCurrentRequestU3Ek__BackingField_2), (void*)value); } inline static int32_t get_offset_of_U3CStartTimeU3Ek__BackingField_3() { return static_cast(offsetof(ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57, ___U3CStartTimeU3Ek__BackingField_3)); } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_U3CStartTimeU3Ek__BackingField_3() const { return ___U3CStartTimeU3Ek__BackingField_3; } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_U3CStartTimeU3Ek__BackingField_3() { return &___U3CStartTimeU3Ek__BackingField_3; } inline void set_U3CStartTimeU3Ek__BackingField_3(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value) { ___U3CStartTimeU3Ek__BackingField_3 = value; } inline static int32_t get_offset_of_U3CTimedOutStartU3Ek__BackingField_4() { return static_cast(offsetof(ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57, ___U3CTimedOutStartU3Ek__BackingField_4)); } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_U3CTimedOutStartU3Ek__BackingField_4() const { return ___U3CTimedOutStartU3Ek__BackingField_4; } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_U3CTimedOutStartU3Ek__BackingField_4() { return &___U3CTimedOutStartU3Ek__BackingField_4; } inline void set_U3CTimedOutStartU3Ek__BackingField_4(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value) { ___U3CTimedOutStartU3Ek__BackingField_4 = value; } inline static int32_t get_offset_of_U3CLastProcessedUriU3Ek__BackingField_5() { return static_cast(offsetof(ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57, ___U3CLastProcessedUriU3Ek__BackingField_5)); } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * get_U3CLastProcessedUriU3Ek__BackingField_5() const { return ___U3CLastProcessedUriU3Ek__BackingField_5; } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 ** get_address_of_U3CLastProcessedUriU3Ek__BackingField_5() { return &___U3CLastProcessedUriU3Ek__BackingField_5; } inline void set_U3CLastProcessedUriU3Ek__BackingField_5(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * value) { ___U3CLastProcessedUriU3Ek__BackingField_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CLastProcessedUriU3Ek__BackingField_5), (void*)value); } inline static int32_t get_offset_of_LastProcessTime_6() { return static_cast(offsetof(ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57, ___LastProcessTime_6)); } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_LastProcessTime_6() const { return ___LastProcessTime_6; } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_LastProcessTime_6() { return &___LastProcessTime_6; } inline void set_LastProcessTime_6(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value) { ___LastProcessTime_6 = value; } inline static int32_t get_offset_of_OnConnectionRecycled_7() { return static_cast(offsetof(ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57, ___OnConnectionRecycled_7)); } inline HTTPConnectionRecycledDelegate_t386301071C1322CEA345542DD58665526B1CA85A * get_OnConnectionRecycled_7() const { return ___OnConnectionRecycled_7; } inline HTTPConnectionRecycledDelegate_t386301071C1322CEA345542DD58665526B1CA85A ** get_address_of_OnConnectionRecycled_7() { return &___OnConnectionRecycled_7; } inline void set_OnConnectionRecycled_7(HTTPConnectionRecycledDelegate_t386301071C1322CEA345542DD58665526B1CA85A * value) { ___OnConnectionRecycled_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnConnectionRecycled_7), (void*)value); } inline static int32_t get_offset_of_IsThreaded_8() { return static_cast(offsetof(ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57, ___IsThreaded_8)); } inline bool get_IsThreaded_8() const { return ___IsThreaded_8; } inline bool* get_address_of_IsThreaded_8() { return &___IsThreaded_8; } inline void set_IsThreaded_8(bool value) { ___IsThreaded_8 = value; } inline static int32_t get_offset_of_U3CIsDisposedU3Ek__BackingField_9() { return static_cast(offsetof(ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57, ___U3CIsDisposedU3Ek__BackingField_9)); } inline bool get_U3CIsDisposedU3Ek__BackingField_9() const { return ___U3CIsDisposedU3Ek__BackingField_9; } inline bool* get_address_of_U3CIsDisposedU3Ek__BackingField_9() { return &___U3CIsDisposedU3Ek__BackingField_9; } inline void set_U3CIsDisposedU3Ek__BackingField_9(bool value) { ___U3CIsDisposedU3Ek__BackingField_9 = value; } }; // BestHTTP.Authentication.Credentials struct Credentials_tD6C60AC7DFFD64212481FBCB4AF02846196F5CE8 : public RuntimeObject { public: // BestHTTP.Authentication.AuthenticationTypes BestHTTP.Authentication.Credentials::k__BackingField int32_t ___U3CTypeU3Ek__BackingField_0; // System.String BestHTTP.Authentication.Credentials::k__BackingField String_t* ___U3CUserNameU3Ek__BackingField_1; // System.String BestHTTP.Authentication.Credentials::k__BackingField String_t* ___U3CPasswordU3Ek__BackingField_2; public: inline static int32_t get_offset_of_U3CTypeU3Ek__BackingField_0() { return static_cast(offsetof(Credentials_tD6C60AC7DFFD64212481FBCB4AF02846196F5CE8, ___U3CTypeU3Ek__BackingField_0)); } inline int32_t get_U3CTypeU3Ek__BackingField_0() const { return ___U3CTypeU3Ek__BackingField_0; } inline int32_t* get_address_of_U3CTypeU3Ek__BackingField_0() { return &___U3CTypeU3Ek__BackingField_0; } inline void set_U3CTypeU3Ek__BackingField_0(int32_t value) { ___U3CTypeU3Ek__BackingField_0 = value; } inline static int32_t get_offset_of_U3CUserNameU3Ek__BackingField_1() { return static_cast(offsetof(Credentials_tD6C60AC7DFFD64212481FBCB4AF02846196F5CE8, ___U3CUserNameU3Ek__BackingField_1)); } inline String_t* get_U3CUserNameU3Ek__BackingField_1() const { return ___U3CUserNameU3Ek__BackingField_1; } inline String_t** get_address_of_U3CUserNameU3Ek__BackingField_1() { return &___U3CUserNameU3Ek__BackingField_1; } inline void set_U3CUserNameU3Ek__BackingField_1(String_t* value) { ___U3CUserNameU3Ek__BackingField_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CUserNameU3Ek__BackingField_1), (void*)value); } inline static int32_t get_offset_of_U3CPasswordU3Ek__BackingField_2() { return static_cast(offsetof(Credentials_tD6C60AC7DFFD64212481FBCB4AF02846196F5CE8, ___U3CPasswordU3Ek__BackingField_2)); } inline String_t* get_U3CPasswordU3Ek__BackingField_2() const { return ___U3CPasswordU3Ek__BackingField_2; } inline String_t** get_address_of_U3CPasswordU3Ek__BackingField_2() { return &___U3CPasswordU3Ek__BackingField_2; } inline void set_U3CPasswordU3Ek__BackingField_2(String_t* value) { ___U3CPasswordU3Ek__BackingField_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CPasswordU3Ek__BackingField_2), (void*)value); } }; // BestHTTP.Logger.DefaultLogger struct DefaultLogger_t7E3DFAD4BFABAD5605389979F1604A7952296EB7 : public RuntimeObject { public: // BestHTTP.Logger.Loglevels BestHTTP.Logger.DefaultLogger::k__BackingField uint8_t ___U3CLevelU3Ek__BackingField_0; // System.String BestHTTP.Logger.DefaultLogger::k__BackingField String_t* ___U3CFormatVerboseU3Ek__BackingField_1; // System.String BestHTTP.Logger.DefaultLogger::k__BackingField String_t* ___U3CFormatInfoU3Ek__BackingField_2; // System.String BestHTTP.Logger.DefaultLogger::k__BackingField String_t* ___U3CFormatWarnU3Ek__BackingField_3; // System.String BestHTTP.Logger.DefaultLogger::k__BackingField String_t* ___U3CFormatErrU3Ek__BackingField_4; // System.String BestHTTP.Logger.DefaultLogger::k__BackingField String_t* ___U3CFormatExU3Ek__BackingField_5; public: inline static int32_t get_offset_of_U3CLevelU3Ek__BackingField_0() { return static_cast(offsetof(DefaultLogger_t7E3DFAD4BFABAD5605389979F1604A7952296EB7, ___U3CLevelU3Ek__BackingField_0)); } inline uint8_t get_U3CLevelU3Ek__BackingField_0() const { return ___U3CLevelU3Ek__BackingField_0; } inline uint8_t* get_address_of_U3CLevelU3Ek__BackingField_0() { return &___U3CLevelU3Ek__BackingField_0; } inline void set_U3CLevelU3Ek__BackingField_0(uint8_t value) { ___U3CLevelU3Ek__BackingField_0 = value; } inline static int32_t get_offset_of_U3CFormatVerboseU3Ek__BackingField_1() { return static_cast(offsetof(DefaultLogger_t7E3DFAD4BFABAD5605389979F1604A7952296EB7, ___U3CFormatVerboseU3Ek__BackingField_1)); } inline String_t* get_U3CFormatVerboseU3Ek__BackingField_1() const { return ___U3CFormatVerboseU3Ek__BackingField_1; } inline String_t** get_address_of_U3CFormatVerboseU3Ek__BackingField_1() { return &___U3CFormatVerboseU3Ek__BackingField_1; } inline void set_U3CFormatVerboseU3Ek__BackingField_1(String_t* value) { ___U3CFormatVerboseU3Ek__BackingField_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CFormatVerboseU3Ek__BackingField_1), (void*)value); } inline static int32_t get_offset_of_U3CFormatInfoU3Ek__BackingField_2() { return static_cast(offsetof(DefaultLogger_t7E3DFAD4BFABAD5605389979F1604A7952296EB7, ___U3CFormatInfoU3Ek__BackingField_2)); } inline String_t* get_U3CFormatInfoU3Ek__BackingField_2() const { return ___U3CFormatInfoU3Ek__BackingField_2; } inline String_t** get_address_of_U3CFormatInfoU3Ek__BackingField_2() { return &___U3CFormatInfoU3Ek__BackingField_2; } inline void set_U3CFormatInfoU3Ek__BackingField_2(String_t* value) { ___U3CFormatInfoU3Ek__BackingField_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CFormatInfoU3Ek__BackingField_2), (void*)value); } inline static int32_t get_offset_of_U3CFormatWarnU3Ek__BackingField_3() { return static_cast(offsetof(DefaultLogger_t7E3DFAD4BFABAD5605389979F1604A7952296EB7, ___U3CFormatWarnU3Ek__BackingField_3)); } inline String_t* get_U3CFormatWarnU3Ek__BackingField_3() const { return ___U3CFormatWarnU3Ek__BackingField_3; } inline String_t** get_address_of_U3CFormatWarnU3Ek__BackingField_3() { return &___U3CFormatWarnU3Ek__BackingField_3; } inline void set_U3CFormatWarnU3Ek__BackingField_3(String_t* value) { ___U3CFormatWarnU3Ek__BackingField_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CFormatWarnU3Ek__BackingField_3), (void*)value); } inline static int32_t get_offset_of_U3CFormatErrU3Ek__BackingField_4() { return static_cast(offsetof(DefaultLogger_t7E3DFAD4BFABAD5605389979F1604A7952296EB7, ___U3CFormatErrU3Ek__BackingField_4)); } inline String_t* get_U3CFormatErrU3Ek__BackingField_4() const { return ___U3CFormatErrU3Ek__BackingField_4; } inline String_t** get_address_of_U3CFormatErrU3Ek__BackingField_4() { return &___U3CFormatErrU3Ek__BackingField_4; } inline void set_U3CFormatErrU3Ek__BackingField_4(String_t* value) { ___U3CFormatErrU3Ek__BackingField_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CFormatErrU3Ek__BackingField_4), (void*)value); } inline static int32_t get_offset_of_U3CFormatExU3Ek__BackingField_5() { return static_cast(offsetof(DefaultLogger_t7E3DFAD4BFABAD5605389979F1604A7952296EB7, ___U3CFormatExU3Ek__BackingField_5)); } inline String_t* get_U3CFormatExU3Ek__BackingField_5() const { return ___U3CFormatExU3Ek__BackingField_5; } inline String_t** get_address_of_U3CFormatExU3Ek__BackingField_5() { return &___U3CFormatExU3Ek__BackingField_5; } inline void set_U3CFormatExU3Ek__BackingField_5(String_t* value) { ___U3CFormatExU3Ek__BackingField_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CFormatExU3Ek__BackingField_5), (void*)value); } }; // BestHTTP.Authentication.Digest struct Digest_tECBB0FFA62FFE1D74BB3E5FD1C60635385FCE734 : public RuntimeObject { public: // System.Uri BestHTTP.Authentication.Digest::k__BackingField Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___U3CUriU3Ek__BackingField_0; // BestHTTP.Authentication.AuthenticationTypes BestHTTP.Authentication.Digest::k__BackingField int32_t ___U3CTypeU3Ek__BackingField_1; // System.String BestHTTP.Authentication.Digest::k__BackingField String_t* ___U3CRealmU3Ek__BackingField_2; // System.Boolean BestHTTP.Authentication.Digest::k__BackingField bool ___U3CStaleU3Ek__BackingField_3; // System.String BestHTTP.Authentication.Digest::k__BackingField String_t* ___U3CNonceU3Ek__BackingField_4; // System.String BestHTTP.Authentication.Digest::k__BackingField String_t* ___U3COpaqueU3Ek__BackingField_5; // System.String BestHTTP.Authentication.Digest::k__BackingField String_t* ___U3CAlgorithmU3Ek__BackingField_6; // System.Collections.Generic.List`1 BestHTTP.Authentication.Digest::k__BackingField List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * ___U3CProtectedUrisU3Ek__BackingField_7; // System.String BestHTTP.Authentication.Digest::k__BackingField String_t* ___U3CQualityOfProtectionsU3Ek__BackingField_8; // System.Int32 BestHTTP.Authentication.Digest::k__BackingField int32_t ___U3CNonceCountU3Ek__BackingField_9; // System.String BestHTTP.Authentication.Digest::k__BackingField String_t* ___U3CHA1SessU3Ek__BackingField_10; public: inline static int32_t get_offset_of_U3CUriU3Ek__BackingField_0() { return static_cast(offsetof(Digest_tECBB0FFA62FFE1D74BB3E5FD1C60635385FCE734, ___U3CUriU3Ek__BackingField_0)); } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * get_U3CUriU3Ek__BackingField_0() const { return ___U3CUriU3Ek__BackingField_0; } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 ** get_address_of_U3CUriU3Ek__BackingField_0() { return &___U3CUriU3Ek__BackingField_0; } inline void set_U3CUriU3Ek__BackingField_0(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * value) { ___U3CUriU3Ek__BackingField_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CUriU3Ek__BackingField_0), (void*)value); } inline static int32_t get_offset_of_U3CTypeU3Ek__BackingField_1() { return static_cast(offsetof(Digest_tECBB0FFA62FFE1D74BB3E5FD1C60635385FCE734, ___U3CTypeU3Ek__BackingField_1)); } inline int32_t get_U3CTypeU3Ek__BackingField_1() const { return ___U3CTypeU3Ek__BackingField_1; } inline int32_t* get_address_of_U3CTypeU3Ek__BackingField_1() { return &___U3CTypeU3Ek__BackingField_1; } inline void set_U3CTypeU3Ek__BackingField_1(int32_t value) { ___U3CTypeU3Ek__BackingField_1 = value; } inline static int32_t get_offset_of_U3CRealmU3Ek__BackingField_2() { return static_cast(offsetof(Digest_tECBB0FFA62FFE1D74BB3E5FD1C60635385FCE734, ___U3CRealmU3Ek__BackingField_2)); } inline String_t* get_U3CRealmU3Ek__BackingField_2() const { return ___U3CRealmU3Ek__BackingField_2; } inline String_t** get_address_of_U3CRealmU3Ek__BackingField_2() { return &___U3CRealmU3Ek__BackingField_2; } inline void set_U3CRealmU3Ek__BackingField_2(String_t* value) { ___U3CRealmU3Ek__BackingField_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CRealmU3Ek__BackingField_2), (void*)value); } inline static int32_t get_offset_of_U3CStaleU3Ek__BackingField_3() { return static_cast(offsetof(Digest_tECBB0FFA62FFE1D74BB3E5FD1C60635385FCE734, ___U3CStaleU3Ek__BackingField_3)); } inline bool get_U3CStaleU3Ek__BackingField_3() const { return ___U3CStaleU3Ek__BackingField_3; } inline bool* get_address_of_U3CStaleU3Ek__BackingField_3() { return &___U3CStaleU3Ek__BackingField_3; } inline void set_U3CStaleU3Ek__BackingField_3(bool value) { ___U3CStaleU3Ek__BackingField_3 = value; } inline static int32_t get_offset_of_U3CNonceU3Ek__BackingField_4() { return static_cast(offsetof(Digest_tECBB0FFA62FFE1D74BB3E5FD1C60635385FCE734, ___U3CNonceU3Ek__BackingField_4)); } inline String_t* get_U3CNonceU3Ek__BackingField_4() const { return ___U3CNonceU3Ek__BackingField_4; } inline String_t** get_address_of_U3CNonceU3Ek__BackingField_4() { return &___U3CNonceU3Ek__BackingField_4; } inline void set_U3CNonceU3Ek__BackingField_4(String_t* value) { ___U3CNonceU3Ek__BackingField_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CNonceU3Ek__BackingField_4), (void*)value); } inline static int32_t get_offset_of_U3COpaqueU3Ek__BackingField_5() { return static_cast(offsetof(Digest_tECBB0FFA62FFE1D74BB3E5FD1C60635385FCE734, ___U3COpaqueU3Ek__BackingField_5)); } inline String_t* get_U3COpaqueU3Ek__BackingField_5() const { return ___U3COpaqueU3Ek__BackingField_5; } inline String_t** get_address_of_U3COpaqueU3Ek__BackingField_5() { return &___U3COpaqueU3Ek__BackingField_5; } inline void set_U3COpaqueU3Ek__BackingField_5(String_t* value) { ___U3COpaqueU3Ek__BackingField_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3COpaqueU3Ek__BackingField_5), (void*)value); } inline static int32_t get_offset_of_U3CAlgorithmU3Ek__BackingField_6() { return static_cast(offsetof(Digest_tECBB0FFA62FFE1D74BB3E5FD1C60635385FCE734, ___U3CAlgorithmU3Ek__BackingField_6)); } inline String_t* get_U3CAlgorithmU3Ek__BackingField_6() const { return ___U3CAlgorithmU3Ek__BackingField_6; } inline String_t** get_address_of_U3CAlgorithmU3Ek__BackingField_6() { return &___U3CAlgorithmU3Ek__BackingField_6; } inline void set_U3CAlgorithmU3Ek__BackingField_6(String_t* value) { ___U3CAlgorithmU3Ek__BackingField_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CAlgorithmU3Ek__BackingField_6), (void*)value); } inline static int32_t get_offset_of_U3CProtectedUrisU3Ek__BackingField_7() { return static_cast(offsetof(Digest_tECBB0FFA62FFE1D74BB3E5FD1C60635385FCE734, ___U3CProtectedUrisU3Ek__BackingField_7)); } inline List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * get_U3CProtectedUrisU3Ek__BackingField_7() const { return ___U3CProtectedUrisU3Ek__BackingField_7; } inline List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 ** get_address_of_U3CProtectedUrisU3Ek__BackingField_7() { return &___U3CProtectedUrisU3Ek__BackingField_7; } inline void set_U3CProtectedUrisU3Ek__BackingField_7(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * value) { ___U3CProtectedUrisU3Ek__BackingField_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CProtectedUrisU3Ek__BackingField_7), (void*)value); } inline static int32_t get_offset_of_U3CQualityOfProtectionsU3Ek__BackingField_8() { return static_cast(offsetof(Digest_tECBB0FFA62FFE1D74BB3E5FD1C60635385FCE734, ___U3CQualityOfProtectionsU3Ek__BackingField_8)); } inline String_t* get_U3CQualityOfProtectionsU3Ek__BackingField_8() const { return ___U3CQualityOfProtectionsU3Ek__BackingField_8; } inline String_t** get_address_of_U3CQualityOfProtectionsU3Ek__BackingField_8() { return &___U3CQualityOfProtectionsU3Ek__BackingField_8; } inline void set_U3CQualityOfProtectionsU3Ek__BackingField_8(String_t* value) { ___U3CQualityOfProtectionsU3Ek__BackingField_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CQualityOfProtectionsU3Ek__BackingField_8), (void*)value); } inline static int32_t get_offset_of_U3CNonceCountU3Ek__BackingField_9() { return static_cast(offsetof(Digest_tECBB0FFA62FFE1D74BB3E5FD1C60635385FCE734, ___U3CNonceCountU3Ek__BackingField_9)); } inline int32_t get_U3CNonceCountU3Ek__BackingField_9() const { return ___U3CNonceCountU3Ek__BackingField_9; } inline int32_t* get_address_of_U3CNonceCountU3Ek__BackingField_9() { return &___U3CNonceCountU3Ek__BackingField_9; } inline void set_U3CNonceCountU3Ek__BackingField_9(int32_t value) { ___U3CNonceCountU3Ek__BackingField_9 = value; } inline static int32_t get_offset_of_U3CHA1SessU3Ek__BackingField_10() { return static_cast(offsetof(Digest_tECBB0FFA62FFE1D74BB3E5FD1C60635385FCE734, ___U3CHA1SessU3Ek__BackingField_10)); } inline String_t* get_U3CHA1SessU3Ek__BackingField_10() const { return ___U3CHA1SessU3Ek__BackingField_10; } inline String_t** get_address_of_U3CHA1SessU3Ek__BackingField_10() { return &___U3CHA1SessU3Ek__BackingField_10; } inline void set_U3CHA1SessU3Ek__BackingField_10(String_t* value) { ___U3CHA1SessU3Ek__BackingField_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CHA1SessU3Ek__BackingField_10), (void*)value); } }; // UnityEngine.GameObject struct GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A { public: public: }; // BestHTTP.Statistics.GeneralStatistics struct GeneralStatistics_tB422052C2D5C537A02C46286F33FB4A72BE24A2B { public: // BestHTTP.Statistics.StatisticsQueryFlags BestHTTP.Statistics.GeneralStatistics::QueryFlags uint8_t ___QueryFlags_0; // System.Int32 BestHTTP.Statistics.GeneralStatistics::Connections int32_t ___Connections_1; // System.Int32 BestHTTP.Statistics.GeneralStatistics::ActiveConnections int32_t ___ActiveConnections_2; // System.Int32 BestHTTP.Statistics.GeneralStatistics::FreeConnections int32_t ___FreeConnections_3; // System.Int32 BestHTTP.Statistics.GeneralStatistics::RecycledConnections int32_t ___RecycledConnections_4; // System.Int32 BestHTTP.Statistics.GeneralStatistics::RequestsInQueue int32_t ___RequestsInQueue_5; // System.Int32 BestHTTP.Statistics.GeneralStatistics::CacheEntityCount int32_t ___CacheEntityCount_6; // System.UInt64 BestHTTP.Statistics.GeneralStatistics::CacheSize uint64_t ___CacheSize_7; // System.Int32 BestHTTP.Statistics.GeneralStatistics::CookieCount int32_t ___CookieCount_8; // System.UInt32 BestHTTP.Statistics.GeneralStatistics::CookieJarSize uint32_t ___CookieJarSize_9; public: inline static int32_t get_offset_of_QueryFlags_0() { return static_cast(offsetof(GeneralStatistics_tB422052C2D5C537A02C46286F33FB4A72BE24A2B, ___QueryFlags_0)); } inline uint8_t get_QueryFlags_0() const { return ___QueryFlags_0; } inline uint8_t* get_address_of_QueryFlags_0() { return &___QueryFlags_0; } inline void set_QueryFlags_0(uint8_t value) { ___QueryFlags_0 = value; } inline static int32_t get_offset_of_Connections_1() { return static_cast(offsetof(GeneralStatistics_tB422052C2D5C537A02C46286F33FB4A72BE24A2B, ___Connections_1)); } inline int32_t get_Connections_1() const { return ___Connections_1; } inline int32_t* get_address_of_Connections_1() { return &___Connections_1; } inline void set_Connections_1(int32_t value) { ___Connections_1 = value; } inline static int32_t get_offset_of_ActiveConnections_2() { return static_cast(offsetof(GeneralStatistics_tB422052C2D5C537A02C46286F33FB4A72BE24A2B, ___ActiveConnections_2)); } inline int32_t get_ActiveConnections_2() const { return ___ActiveConnections_2; } inline int32_t* get_address_of_ActiveConnections_2() { return &___ActiveConnections_2; } inline void set_ActiveConnections_2(int32_t value) { ___ActiveConnections_2 = value; } inline static int32_t get_offset_of_FreeConnections_3() { return static_cast(offsetof(GeneralStatistics_tB422052C2D5C537A02C46286F33FB4A72BE24A2B, ___FreeConnections_3)); } inline int32_t get_FreeConnections_3() const { return ___FreeConnections_3; } inline int32_t* get_address_of_FreeConnections_3() { return &___FreeConnections_3; } inline void set_FreeConnections_3(int32_t value) { ___FreeConnections_3 = value; } inline static int32_t get_offset_of_RecycledConnections_4() { return static_cast(offsetof(GeneralStatistics_tB422052C2D5C537A02C46286F33FB4A72BE24A2B, ___RecycledConnections_4)); } inline int32_t get_RecycledConnections_4() const { return ___RecycledConnections_4; } inline int32_t* get_address_of_RecycledConnections_4() { return &___RecycledConnections_4; } inline void set_RecycledConnections_4(int32_t value) { ___RecycledConnections_4 = value; } inline static int32_t get_offset_of_RequestsInQueue_5() { return static_cast(offsetof(GeneralStatistics_tB422052C2D5C537A02C46286F33FB4A72BE24A2B, ___RequestsInQueue_5)); } inline int32_t get_RequestsInQueue_5() const { return ___RequestsInQueue_5; } inline int32_t* get_address_of_RequestsInQueue_5() { return &___RequestsInQueue_5; } inline void set_RequestsInQueue_5(int32_t value) { ___RequestsInQueue_5 = value; } inline static int32_t get_offset_of_CacheEntityCount_6() { return static_cast(offsetof(GeneralStatistics_tB422052C2D5C537A02C46286F33FB4A72BE24A2B, ___CacheEntityCount_6)); } inline int32_t get_CacheEntityCount_6() const { return ___CacheEntityCount_6; } inline int32_t* get_address_of_CacheEntityCount_6() { return &___CacheEntityCount_6; } inline void set_CacheEntityCount_6(int32_t value) { ___CacheEntityCount_6 = value; } inline static int32_t get_offset_of_CacheSize_7() { return static_cast(offsetof(GeneralStatistics_tB422052C2D5C537A02C46286F33FB4A72BE24A2B, ___CacheSize_7)); } inline uint64_t get_CacheSize_7() const { return ___CacheSize_7; } inline uint64_t* get_address_of_CacheSize_7() { return &___CacheSize_7; } inline void set_CacheSize_7(uint64_t value) { ___CacheSize_7 = value; } inline static int32_t get_offset_of_CookieCount_8() { return static_cast(offsetof(GeneralStatistics_tB422052C2D5C537A02C46286F33FB4A72BE24A2B, ___CookieCount_8)); } inline int32_t get_CookieCount_8() const { return ___CookieCount_8; } inline int32_t* get_address_of_CookieCount_8() { return &___CookieCount_8; } inline void set_CookieCount_8(int32_t value) { ___CookieCount_8 = value; } inline static int32_t get_offset_of_CookieJarSize_9() { return static_cast(offsetof(GeneralStatistics_tB422052C2D5C537A02C46286F33FB4A72BE24A2B, ___CookieJarSize_9)); } inline uint32_t get_CookieJarSize_9() const { return ___CookieJarSize_9; } inline uint32_t* get_address_of_CookieJarSize_9() { return &___CookieJarSize_9; } inline void set_CookieJarSize_9(uint32_t value) { ___CookieJarSize_9 = value; } }; // BestHTTP.Caching.HTTPCacheMaintananceParams struct HTTPCacheMaintananceParams_t3C1DDABAF1478424BBFF3E0EEFDF7E81843C8142 : public RuntimeObject { public: // System.TimeSpan BestHTTP.Caching.HTTPCacheMaintananceParams::k__BackingField TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___U3CDeleteOlderU3Ek__BackingField_0; // System.UInt64 BestHTTP.Caching.HTTPCacheMaintananceParams::k__BackingField uint64_t ___U3CMaxCacheSizeU3Ek__BackingField_1; public: inline static int32_t get_offset_of_U3CDeleteOlderU3Ek__BackingField_0() { return static_cast(offsetof(HTTPCacheMaintananceParams_t3C1DDABAF1478424BBFF3E0EEFDF7E81843C8142, ___U3CDeleteOlderU3Ek__BackingField_0)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_U3CDeleteOlderU3Ek__BackingField_0() const { return ___U3CDeleteOlderU3Ek__BackingField_0; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_U3CDeleteOlderU3Ek__BackingField_0() { return &___U3CDeleteOlderU3Ek__BackingField_0; } inline void set_U3CDeleteOlderU3Ek__BackingField_0(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___U3CDeleteOlderU3Ek__BackingField_0 = value; } inline static int32_t get_offset_of_U3CMaxCacheSizeU3Ek__BackingField_1() { return static_cast(offsetof(HTTPCacheMaintananceParams_t3C1DDABAF1478424BBFF3E0EEFDF7E81843C8142, ___U3CMaxCacheSizeU3Ek__BackingField_1)); } inline uint64_t get_U3CMaxCacheSizeU3Ek__BackingField_1() const { return ___U3CMaxCacheSizeU3Ek__BackingField_1; } inline uint64_t* get_address_of_U3CMaxCacheSizeU3Ek__BackingField_1() { return &___U3CMaxCacheSizeU3Ek__BackingField_1; } inline void set_U3CMaxCacheSizeU3Ek__BackingField_1(uint64_t value) { ___U3CMaxCacheSizeU3Ek__BackingField_1 = value; } }; // BestHTTP.HTTPManager struct HTTPManager_t1E0A5A6FF0F475D0ABDB2ACA2C62B52648703DBD : public RuntimeObject { public: public: }; struct HTTPManager_t1E0A5A6FF0F475D0ABDB2ACA2C62B52648703DBD_StaticFields { public: // System.Byte BestHTTP.HTTPManager::maxConnectionPerServer uint8_t ___maxConnectionPerServer_0; // System.Boolean BestHTTP.HTTPManager::k__BackingField bool ___U3CKeepAliveDefaultValueU3Ek__BackingField_1; // System.Boolean BestHTTP.HTTPManager::k__BackingField bool ___U3CIsCachingDisabledU3Ek__BackingField_2; // System.TimeSpan BestHTTP.HTTPManager::k__BackingField TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___U3CMaxConnectionIdleTimeU3Ek__BackingField_3; // System.Boolean BestHTTP.HTTPManager::k__BackingField bool ___U3CIsCookiesEnabledU3Ek__BackingField_4; // System.UInt32 BestHTTP.HTTPManager::k__BackingField uint32_t ___U3CCookieJarSizeU3Ek__BackingField_5; // System.Boolean BestHTTP.HTTPManager::k__BackingField bool ___U3CEnablePrivateBrowsingU3Ek__BackingField_6; // System.TimeSpan BestHTTP.HTTPManager::k__BackingField TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___U3CConnectTimeoutU3Ek__BackingField_7; // System.TimeSpan BestHTTP.HTTPManager::k__BackingField TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___U3CRequestTimeoutU3Ek__BackingField_8; // System.Func`1 BestHTTP.HTTPManager::k__BackingField Func_1_t2F3325DADD1F420568A48646BFC825E9F29472B1 * ___U3CRootCacheFolderProviderU3Ek__BackingField_9; // BestHTTP.Proxy BestHTTP.HTTPManager::k__BackingField Proxy_t84F0DDAE5A37016479C7094FFB8F78835B8BD4F6 * ___U3CProxyU3Ek__BackingField_10; // BestHTTP.Extensions.HeartbeatManager BestHTTP.HTTPManager::heartbeats HeartbeatManager_tC2289824FFCE494A74441E065011CD0E66C2134E * ___heartbeats_11; // BestHTTP.Logger.ILogger BestHTTP.HTTPManager::logger RuntimeObject* ___logger_12; // Org.BouncyCastle.Crypto.Tls2.ICertificateVerifyer BestHTTP.HTTPManager::k__BackingField RuntimeObject* ___U3CDefaultCertificateVerifyerU3Ek__BackingField_13; // Org.BouncyCastle.Crypto.Tls2.IClientCredentialsProvider BestHTTP.HTTPManager::k__BackingField RuntimeObject* ___U3CDefaultClientCredentialsProviderU3Ek__BackingField_14; // System.Boolean BestHTTP.HTTPManager::k__BackingField bool ___U3CUseAlternateSSLDefaultValueU3Ek__BackingField_15; // System.Func`4 BestHTTP.HTTPManager::k__BackingField Func_4_t0EA5243FC4B656A18B7AC7B130FD78666AA9FE84 * ___U3CDefaultCertificationValidatorU3Ek__BackingField_16; // System.Boolean BestHTTP.HTTPManager::TryToMinimizeTCPLatency bool ___TryToMinimizeTCPLatency_17; // System.Int32 BestHTTP.HTTPManager::SendBufferSize int32_t ___SendBufferSize_18; // System.Int32 BestHTTP.HTTPManager::ReceiveBufferSize int32_t ___ReceiveBufferSize_19; // BestHTTP.PlatformSupport.FileSystem.IIOService BestHTTP.HTTPManager::IOService RuntimeObject* ___IOService_20; // System.Int32 BestHTTP.HTTPManager::k__BackingField int32_t ___U3CMaxPathLengthU3Ek__BackingField_21; // System.Collections.Generic.Dictionary`2> BestHTTP.HTTPManager::Connections Dictionary_2_t3CA977FBCA3158664D7AB53A25D36155F805ABB3 * ___Connections_22; // System.Collections.Generic.List`1 BestHTTP.HTTPManager::ActiveConnections List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836 * ___ActiveConnections_23; // System.Collections.Generic.List`1 BestHTTP.HTTPManager::FreeConnections List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836 * ___FreeConnections_24; // System.Collections.Generic.List`1 BestHTTP.HTTPManager::RecycledConnections List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836 * ___RecycledConnections_25; // System.Collections.Generic.List`1 BestHTTP.HTTPManager::RequestQueue List_1_t406EC705E72137D2240DC7D4E2B21A200546B181 * ___RequestQueue_26; // System.Boolean BestHTTP.HTTPManager::IsCallingCallbacks bool ___IsCallingCallbacks_27; // System.Object BestHTTP.HTTPManager::Locker RuntimeObject * ___Locker_28; // System.Boolean BestHTTP.HTTPManager::k__BackingField bool ___U3CIsQuittingU3Ek__BackingField_29; public: inline static int32_t get_offset_of_maxConnectionPerServer_0() { return static_cast(offsetof(HTTPManager_t1E0A5A6FF0F475D0ABDB2ACA2C62B52648703DBD_StaticFields, ___maxConnectionPerServer_0)); } inline uint8_t get_maxConnectionPerServer_0() const { return ___maxConnectionPerServer_0; } inline uint8_t* get_address_of_maxConnectionPerServer_0() { return &___maxConnectionPerServer_0; } inline void set_maxConnectionPerServer_0(uint8_t value) { ___maxConnectionPerServer_0 = value; } inline static int32_t get_offset_of_U3CKeepAliveDefaultValueU3Ek__BackingField_1() { return static_cast(offsetof(HTTPManager_t1E0A5A6FF0F475D0ABDB2ACA2C62B52648703DBD_StaticFields, ___U3CKeepAliveDefaultValueU3Ek__BackingField_1)); } inline bool get_U3CKeepAliveDefaultValueU3Ek__BackingField_1() const { return ___U3CKeepAliveDefaultValueU3Ek__BackingField_1; } inline bool* get_address_of_U3CKeepAliveDefaultValueU3Ek__BackingField_1() { return &___U3CKeepAliveDefaultValueU3Ek__BackingField_1; } inline void set_U3CKeepAliveDefaultValueU3Ek__BackingField_1(bool value) { ___U3CKeepAliveDefaultValueU3Ek__BackingField_1 = value; } inline static int32_t get_offset_of_U3CIsCachingDisabledU3Ek__BackingField_2() { return static_cast(offsetof(HTTPManager_t1E0A5A6FF0F475D0ABDB2ACA2C62B52648703DBD_StaticFields, ___U3CIsCachingDisabledU3Ek__BackingField_2)); } inline bool get_U3CIsCachingDisabledU3Ek__BackingField_2() const { return ___U3CIsCachingDisabledU3Ek__BackingField_2; } inline bool* get_address_of_U3CIsCachingDisabledU3Ek__BackingField_2() { return &___U3CIsCachingDisabledU3Ek__BackingField_2; } inline void set_U3CIsCachingDisabledU3Ek__BackingField_2(bool value) { ___U3CIsCachingDisabledU3Ek__BackingField_2 = value; } inline static int32_t get_offset_of_U3CMaxConnectionIdleTimeU3Ek__BackingField_3() { return static_cast(offsetof(HTTPManager_t1E0A5A6FF0F475D0ABDB2ACA2C62B52648703DBD_StaticFields, ___U3CMaxConnectionIdleTimeU3Ek__BackingField_3)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_U3CMaxConnectionIdleTimeU3Ek__BackingField_3() const { return ___U3CMaxConnectionIdleTimeU3Ek__BackingField_3; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_U3CMaxConnectionIdleTimeU3Ek__BackingField_3() { return &___U3CMaxConnectionIdleTimeU3Ek__BackingField_3; } inline void set_U3CMaxConnectionIdleTimeU3Ek__BackingField_3(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___U3CMaxConnectionIdleTimeU3Ek__BackingField_3 = value; } inline static int32_t get_offset_of_U3CIsCookiesEnabledU3Ek__BackingField_4() { return static_cast(offsetof(HTTPManager_t1E0A5A6FF0F475D0ABDB2ACA2C62B52648703DBD_StaticFields, ___U3CIsCookiesEnabledU3Ek__BackingField_4)); } inline bool get_U3CIsCookiesEnabledU3Ek__BackingField_4() const { return ___U3CIsCookiesEnabledU3Ek__BackingField_4; } inline bool* get_address_of_U3CIsCookiesEnabledU3Ek__BackingField_4() { return &___U3CIsCookiesEnabledU3Ek__BackingField_4; } inline void set_U3CIsCookiesEnabledU3Ek__BackingField_4(bool value) { ___U3CIsCookiesEnabledU3Ek__BackingField_4 = value; } inline static int32_t get_offset_of_U3CCookieJarSizeU3Ek__BackingField_5() { return static_cast(offsetof(HTTPManager_t1E0A5A6FF0F475D0ABDB2ACA2C62B52648703DBD_StaticFields, ___U3CCookieJarSizeU3Ek__BackingField_5)); } inline uint32_t get_U3CCookieJarSizeU3Ek__BackingField_5() const { return ___U3CCookieJarSizeU3Ek__BackingField_5; } inline uint32_t* get_address_of_U3CCookieJarSizeU3Ek__BackingField_5() { return &___U3CCookieJarSizeU3Ek__BackingField_5; } inline void set_U3CCookieJarSizeU3Ek__BackingField_5(uint32_t value) { ___U3CCookieJarSizeU3Ek__BackingField_5 = value; } inline static int32_t get_offset_of_U3CEnablePrivateBrowsingU3Ek__BackingField_6() { return static_cast(offsetof(HTTPManager_t1E0A5A6FF0F475D0ABDB2ACA2C62B52648703DBD_StaticFields, ___U3CEnablePrivateBrowsingU3Ek__BackingField_6)); } inline bool get_U3CEnablePrivateBrowsingU3Ek__BackingField_6() const { return ___U3CEnablePrivateBrowsingU3Ek__BackingField_6; } inline bool* get_address_of_U3CEnablePrivateBrowsingU3Ek__BackingField_6() { return &___U3CEnablePrivateBrowsingU3Ek__BackingField_6; } inline void set_U3CEnablePrivateBrowsingU3Ek__BackingField_6(bool value) { ___U3CEnablePrivateBrowsingU3Ek__BackingField_6 = value; } inline static int32_t get_offset_of_U3CConnectTimeoutU3Ek__BackingField_7() { return static_cast(offsetof(HTTPManager_t1E0A5A6FF0F475D0ABDB2ACA2C62B52648703DBD_StaticFields, ___U3CConnectTimeoutU3Ek__BackingField_7)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_U3CConnectTimeoutU3Ek__BackingField_7() const { return ___U3CConnectTimeoutU3Ek__BackingField_7; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_U3CConnectTimeoutU3Ek__BackingField_7() { return &___U3CConnectTimeoutU3Ek__BackingField_7; } inline void set_U3CConnectTimeoutU3Ek__BackingField_7(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___U3CConnectTimeoutU3Ek__BackingField_7 = value; } inline static int32_t get_offset_of_U3CRequestTimeoutU3Ek__BackingField_8() { return static_cast(offsetof(HTTPManager_t1E0A5A6FF0F475D0ABDB2ACA2C62B52648703DBD_StaticFields, ___U3CRequestTimeoutU3Ek__BackingField_8)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_U3CRequestTimeoutU3Ek__BackingField_8() const { return ___U3CRequestTimeoutU3Ek__BackingField_8; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_U3CRequestTimeoutU3Ek__BackingField_8() { return &___U3CRequestTimeoutU3Ek__BackingField_8; } inline void set_U3CRequestTimeoutU3Ek__BackingField_8(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___U3CRequestTimeoutU3Ek__BackingField_8 = value; } inline static int32_t get_offset_of_U3CRootCacheFolderProviderU3Ek__BackingField_9() { return static_cast(offsetof(HTTPManager_t1E0A5A6FF0F475D0ABDB2ACA2C62B52648703DBD_StaticFields, ___U3CRootCacheFolderProviderU3Ek__BackingField_9)); } inline Func_1_t2F3325DADD1F420568A48646BFC825E9F29472B1 * get_U3CRootCacheFolderProviderU3Ek__BackingField_9() const { return ___U3CRootCacheFolderProviderU3Ek__BackingField_9; } inline Func_1_t2F3325DADD1F420568A48646BFC825E9F29472B1 ** get_address_of_U3CRootCacheFolderProviderU3Ek__BackingField_9() { return &___U3CRootCacheFolderProviderU3Ek__BackingField_9; } inline void set_U3CRootCacheFolderProviderU3Ek__BackingField_9(Func_1_t2F3325DADD1F420568A48646BFC825E9F29472B1 * value) { ___U3CRootCacheFolderProviderU3Ek__BackingField_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CRootCacheFolderProviderU3Ek__BackingField_9), (void*)value); } inline static int32_t get_offset_of_U3CProxyU3Ek__BackingField_10() { return static_cast(offsetof(HTTPManager_t1E0A5A6FF0F475D0ABDB2ACA2C62B52648703DBD_StaticFields, ___U3CProxyU3Ek__BackingField_10)); } inline Proxy_t84F0DDAE5A37016479C7094FFB8F78835B8BD4F6 * get_U3CProxyU3Ek__BackingField_10() const { return ___U3CProxyU3Ek__BackingField_10; } inline Proxy_t84F0DDAE5A37016479C7094FFB8F78835B8BD4F6 ** get_address_of_U3CProxyU3Ek__BackingField_10() { return &___U3CProxyU3Ek__BackingField_10; } inline void set_U3CProxyU3Ek__BackingField_10(Proxy_t84F0DDAE5A37016479C7094FFB8F78835B8BD4F6 * value) { ___U3CProxyU3Ek__BackingField_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CProxyU3Ek__BackingField_10), (void*)value); } inline static int32_t get_offset_of_heartbeats_11() { return static_cast(offsetof(HTTPManager_t1E0A5A6FF0F475D0ABDB2ACA2C62B52648703DBD_StaticFields, ___heartbeats_11)); } inline HeartbeatManager_tC2289824FFCE494A74441E065011CD0E66C2134E * get_heartbeats_11() const { return ___heartbeats_11; } inline HeartbeatManager_tC2289824FFCE494A74441E065011CD0E66C2134E ** get_address_of_heartbeats_11() { return &___heartbeats_11; } inline void set_heartbeats_11(HeartbeatManager_tC2289824FFCE494A74441E065011CD0E66C2134E * value) { ___heartbeats_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___heartbeats_11), (void*)value); } inline static int32_t get_offset_of_logger_12() { return static_cast(offsetof(HTTPManager_t1E0A5A6FF0F475D0ABDB2ACA2C62B52648703DBD_StaticFields, ___logger_12)); } inline RuntimeObject* get_logger_12() const { return ___logger_12; } inline RuntimeObject** get_address_of_logger_12() { return &___logger_12; } inline void set_logger_12(RuntimeObject* value) { ___logger_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___logger_12), (void*)value); } inline static int32_t get_offset_of_U3CDefaultCertificateVerifyerU3Ek__BackingField_13() { return static_cast(offsetof(HTTPManager_t1E0A5A6FF0F475D0ABDB2ACA2C62B52648703DBD_StaticFields, ___U3CDefaultCertificateVerifyerU3Ek__BackingField_13)); } inline RuntimeObject* get_U3CDefaultCertificateVerifyerU3Ek__BackingField_13() const { return ___U3CDefaultCertificateVerifyerU3Ek__BackingField_13; } inline RuntimeObject** get_address_of_U3CDefaultCertificateVerifyerU3Ek__BackingField_13() { return &___U3CDefaultCertificateVerifyerU3Ek__BackingField_13; } inline void set_U3CDefaultCertificateVerifyerU3Ek__BackingField_13(RuntimeObject* value) { ___U3CDefaultCertificateVerifyerU3Ek__BackingField_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CDefaultCertificateVerifyerU3Ek__BackingField_13), (void*)value); } inline static int32_t get_offset_of_U3CDefaultClientCredentialsProviderU3Ek__BackingField_14() { return static_cast(offsetof(HTTPManager_t1E0A5A6FF0F475D0ABDB2ACA2C62B52648703DBD_StaticFields, ___U3CDefaultClientCredentialsProviderU3Ek__BackingField_14)); } inline RuntimeObject* get_U3CDefaultClientCredentialsProviderU3Ek__BackingField_14() const { return ___U3CDefaultClientCredentialsProviderU3Ek__BackingField_14; } inline RuntimeObject** get_address_of_U3CDefaultClientCredentialsProviderU3Ek__BackingField_14() { return &___U3CDefaultClientCredentialsProviderU3Ek__BackingField_14; } inline void set_U3CDefaultClientCredentialsProviderU3Ek__BackingField_14(RuntimeObject* value) { ___U3CDefaultClientCredentialsProviderU3Ek__BackingField_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CDefaultClientCredentialsProviderU3Ek__BackingField_14), (void*)value); } inline static int32_t get_offset_of_U3CUseAlternateSSLDefaultValueU3Ek__BackingField_15() { return static_cast(offsetof(HTTPManager_t1E0A5A6FF0F475D0ABDB2ACA2C62B52648703DBD_StaticFields, ___U3CUseAlternateSSLDefaultValueU3Ek__BackingField_15)); } inline bool get_U3CUseAlternateSSLDefaultValueU3Ek__BackingField_15() const { return ___U3CUseAlternateSSLDefaultValueU3Ek__BackingField_15; } inline bool* get_address_of_U3CUseAlternateSSLDefaultValueU3Ek__BackingField_15() { return &___U3CUseAlternateSSLDefaultValueU3Ek__BackingField_15; } inline void set_U3CUseAlternateSSLDefaultValueU3Ek__BackingField_15(bool value) { ___U3CUseAlternateSSLDefaultValueU3Ek__BackingField_15 = value; } inline static int32_t get_offset_of_U3CDefaultCertificationValidatorU3Ek__BackingField_16() { return static_cast(offsetof(HTTPManager_t1E0A5A6FF0F475D0ABDB2ACA2C62B52648703DBD_StaticFields, ___U3CDefaultCertificationValidatorU3Ek__BackingField_16)); } inline Func_4_t0EA5243FC4B656A18B7AC7B130FD78666AA9FE84 * get_U3CDefaultCertificationValidatorU3Ek__BackingField_16() const { return ___U3CDefaultCertificationValidatorU3Ek__BackingField_16; } inline Func_4_t0EA5243FC4B656A18B7AC7B130FD78666AA9FE84 ** get_address_of_U3CDefaultCertificationValidatorU3Ek__BackingField_16() { return &___U3CDefaultCertificationValidatorU3Ek__BackingField_16; } inline void set_U3CDefaultCertificationValidatorU3Ek__BackingField_16(Func_4_t0EA5243FC4B656A18B7AC7B130FD78666AA9FE84 * value) { ___U3CDefaultCertificationValidatorU3Ek__BackingField_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CDefaultCertificationValidatorU3Ek__BackingField_16), (void*)value); } inline static int32_t get_offset_of_TryToMinimizeTCPLatency_17() { return static_cast(offsetof(HTTPManager_t1E0A5A6FF0F475D0ABDB2ACA2C62B52648703DBD_StaticFields, ___TryToMinimizeTCPLatency_17)); } inline bool get_TryToMinimizeTCPLatency_17() const { return ___TryToMinimizeTCPLatency_17; } inline bool* get_address_of_TryToMinimizeTCPLatency_17() { return &___TryToMinimizeTCPLatency_17; } inline void set_TryToMinimizeTCPLatency_17(bool value) { ___TryToMinimizeTCPLatency_17 = value; } inline static int32_t get_offset_of_SendBufferSize_18() { return static_cast(offsetof(HTTPManager_t1E0A5A6FF0F475D0ABDB2ACA2C62B52648703DBD_StaticFields, ___SendBufferSize_18)); } inline int32_t get_SendBufferSize_18() const { return ___SendBufferSize_18; } inline int32_t* get_address_of_SendBufferSize_18() { return &___SendBufferSize_18; } inline void set_SendBufferSize_18(int32_t value) { ___SendBufferSize_18 = value; } inline static int32_t get_offset_of_ReceiveBufferSize_19() { return static_cast(offsetof(HTTPManager_t1E0A5A6FF0F475D0ABDB2ACA2C62B52648703DBD_StaticFields, ___ReceiveBufferSize_19)); } inline int32_t get_ReceiveBufferSize_19() const { return ___ReceiveBufferSize_19; } inline int32_t* get_address_of_ReceiveBufferSize_19() { return &___ReceiveBufferSize_19; } inline void set_ReceiveBufferSize_19(int32_t value) { ___ReceiveBufferSize_19 = value; } inline static int32_t get_offset_of_IOService_20() { return static_cast(offsetof(HTTPManager_t1E0A5A6FF0F475D0ABDB2ACA2C62B52648703DBD_StaticFields, ___IOService_20)); } inline RuntimeObject* get_IOService_20() const { return ___IOService_20; } inline RuntimeObject** get_address_of_IOService_20() { return &___IOService_20; } inline void set_IOService_20(RuntimeObject* value) { ___IOService_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___IOService_20), (void*)value); } inline static int32_t get_offset_of_U3CMaxPathLengthU3Ek__BackingField_21() { return static_cast(offsetof(HTTPManager_t1E0A5A6FF0F475D0ABDB2ACA2C62B52648703DBD_StaticFields, ___U3CMaxPathLengthU3Ek__BackingField_21)); } inline int32_t get_U3CMaxPathLengthU3Ek__BackingField_21() const { return ___U3CMaxPathLengthU3Ek__BackingField_21; } inline int32_t* get_address_of_U3CMaxPathLengthU3Ek__BackingField_21() { return &___U3CMaxPathLengthU3Ek__BackingField_21; } inline void set_U3CMaxPathLengthU3Ek__BackingField_21(int32_t value) { ___U3CMaxPathLengthU3Ek__BackingField_21 = value; } inline static int32_t get_offset_of_Connections_22() { return static_cast(offsetof(HTTPManager_t1E0A5A6FF0F475D0ABDB2ACA2C62B52648703DBD_StaticFields, ___Connections_22)); } inline Dictionary_2_t3CA977FBCA3158664D7AB53A25D36155F805ABB3 * get_Connections_22() const { return ___Connections_22; } inline Dictionary_2_t3CA977FBCA3158664D7AB53A25D36155F805ABB3 ** get_address_of_Connections_22() { return &___Connections_22; } inline void set_Connections_22(Dictionary_2_t3CA977FBCA3158664D7AB53A25D36155F805ABB3 * value) { ___Connections_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___Connections_22), (void*)value); } inline static int32_t get_offset_of_ActiveConnections_23() { return static_cast(offsetof(HTTPManager_t1E0A5A6FF0F475D0ABDB2ACA2C62B52648703DBD_StaticFields, ___ActiveConnections_23)); } inline List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836 * get_ActiveConnections_23() const { return ___ActiveConnections_23; } inline List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836 ** get_address_of_ActiveConnections_23() { return &___ActiveConnections_23; } inline void set_ActiveConnections_23(List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836 * value) { ___ActiveConnections_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___ActiveConnections_23), (void*)value); } inline static int32_t get_offset_of_FreeConnections_24() { return static_cast(offsetof(HTTPManager_t1E0A5A6FF0F475D0ABDB2ACA2C62B52648703DBD_StaticFields, ___FreeConnections_24)); } inline List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836 * get_FreeConnections_24() const { return ___FreeConnections_24; } inline List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836 ** get_address_of_FreeConnections_24() { return &___FreeConnections_24; } inline void set_FreeConnections_24(List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836 * value) { ___FreeConnections_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___FreeConnections_24), (void*)value); } inline static int32_t get_offset_of_RecycledConnections_25() { return static_cast(offsetof(HTTPManager_t1E0A5A6FF0F475D0ABDB2ACA2C62B52648703DBD_StaticFields, ___RecycledConnections_25)); } inline List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836 * get_RecycledConnections_25() const { return ___RecycledConnections_25; } inline List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836 ** get_address_of_RecycledConnections_25() { return &___RecycledConnections_25; } inline void set_RecycledConnections_25(List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836 * value) { ___RecycledConnections_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___RecycledConnections_25), (void*)value); } inline static int32_t get_offset_of_RequestQueue_26() { return static_cast(offsetof(HTTPManager_t1E0A5A6FF0F475D0ABDB2ACA2C62B52648703DBD_StaticFields, ___RequestQueue_26)); } inline List_1_t406EC705E72137D2240DC7D4E2B21A200546B181 * get_RequestQueue_26() const { return ___RequestQueue_26; } inline List_1_t406EC705E72137D2240DC7D4E2B21A200546B181 ** get_address_of_RequestQueue_26() { return &___RequestQueue_26; } inline void set_RequestQueue_26(List_1_t406EC705E72137D2240DC7D4E2B21A200546B181 * value) { ___RequestQueue_26 = value; Il2CppCodeGenWriteBarrier((void**)(&___RequestQueue_26), (void*)value); } inline static int32_t get_offset_of_IsCallingCallbacks_27() { return static_cast(offsetof(HTTPManager_t1E0A5A6FF0F475D0ABDB2ACA2C62B52648703DBD_StaticFields, ___IsCallingCallbacks_27)); } inline bool get_IsCallingCallbacks_27() const { return ___IsCallingCallbacks_27; } inline bool* get_address_of_IsCallingCallbacks_27() { return &___IsCallingCallbacks_27; } inline void set_IsCallingCallbacks_27(bool value) { ___IsCallingCallbacks_27 = value; } inline static int32_t get_offset_of_Locker_28() { return static_cast(offsetof(HTTPManager_t1E0A5A6FF0F475D0ABDB2ACA2C62B52648703DBD_StaticFields, ___Locker_28)); } inline RuntimeObject * get_Locker_28() const { return ___Locker_28; } inline RuntimeObject ** get_address_of_Locker_28() { return &___Locker_28; } inline void set_Locker_28(RuntimeObject * value) { ___Locker_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___Locker_28), (void*)value); } inline static int32_t get_offset_of_U3CIsQuittingU3Ek__BackingField_29() { return static_cast(offsetof(HTTPManager_t1E0A5A6FF0F475D0ABDB2ACA2C62B52648703DBD_StaticFields, ___U3CIsQuittingU3Ek__BackingField_29)); } inline bool get_U3CIsQuittingU3Ek__BackingField_29() const { return ___U3CIsQuittingU3Ek__BackingField_29; } inline bool* get_address_of_U3CIsQuittingU3Ek__BackingField_29() { return &___U3CIsQuittingU3Ek__BackingField_29; } inline void set_U3CIsQuittingU3Ek__BackingField_29(bool value) { ___U3CIsQuittingU3Ek__BackingField_29 = value; } }; // BestHTTP.HTTPRequest struct HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 : public RuntimeObject { public: // System.Uri BestHTTP.HTTPRequest::k__BackingField Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___U3CUriU3Ek__BackingField_3; // BestHTTP.HTTPMethods BestHTTP.HTTPRequest::k__BackingField uint8_t ___U3CMethodTypeU3Ek__BackingField_4; // System.Byte[] BestHTTP.HTTPRequest::k__BackingField ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___U3CRawDataU3Ek__BackingField_5; // System.IO.Stream BestHTTP.HTTPRequest::k__BackingField Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___U3CUploadStreamU3Ek__BackingField_6; // System.Boolean BestHTTP.HTTPRequest::k__BackingField bool ___U3CDisposeUploadStreamU3Ek__BackingField_7; // System.Boolean BestHTTP.HTTPRequest::k__BackingField bool ___U3CUseUploadStreamLengthU3Ek__BackingField_8; // BestHTTP.OnUploadProgressDelegate BestHTTP.HTTPRequest::OnUploadProgress OnUploadProgressDelegate_tA62D192773A1C4C68D3049C26CC8CD42AF64843D * ___OnUploadProgress_9; // System.Int32 BestHTTP.HTTPRequest::k__BackingField int32_t ___U3CMaxFragmentQueueLengthU3Ek__BackingField_10; // BestHTTP.OnRequestFinishedDelegate BestHTTP.HTTPRequest::k__BackingField OnRequestFinishedDelegate_t4E35BB5277ED27A8B43D1987DE7F3B47772018B4 * ___U3CCallbackU3Ek__BackingField_11; // BestHTTP.OnDownloadProgressDelegate BestHTTP.HTTPRequest::OnProgress OnDownloadProgressDelegate_t648A73937F176382A3E8E1252C79989D5EBC4F69 * ___OnProgress_12; // BestHTTP.OnRequestFinishedDelegate BestHTTP.HTTPRequest::OnUpgraded OnRequestFinishedDelegate_t4E35BB5277ED27A8B43D1987DE7F3B47772018B4 * ___OnUpgraded_13; // System.Boolean BestHTTP.HTTPRequest::k__BackingField bool ___U3CDisableRetryU3Ek__BackingField_14; // System.Boolean BestHTTP.HTTPRequest::k__BackingField bool ___U3CIsRedirectedU3Ek__BackingField_15; // System.Uri BestHTTP.HTTPRequest::k__BackingField Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___U3CRedirectUriU3Ek__BackingField_16; // BestHTTP.HTTPResponse BestHTTP.HTTPRequest::k__BackingField HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * ___U3CResponseU3Ek__BackingField_17; // BestHTTP.HTTPResponse BestHTTP.HTTPRequest::k__BackingField HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * ___U3CProxyResponseU3Ek__BackingField_18; // System.Exception BestHTTP.HTTPRequest::k__BackingField Exception_t * ___U3CExceptionU3Ek__BackingField_19; // System.Object BestHTTP.HTTPRequest::k__BackingField RuntimeObject * ___U3CTagU3Ek__BackingField_20; // BestHTTP.Authentication.Credentials BestHTTP.HTTPRequest::k__BackingField Credentials_tD6C60AC7DFFD64212481FBCB4AF02846196F5CE8 * ___U3CCredentialsU3Ek__BackingField_21; // BestHTTP.Proxy BestHTTP.HTTPRequest::k__BackingField Proxy_t84F0DDAE5A37016479C7094FFB8F78835B8BD4F6 * ___U3CProxyU3Ek__BackingField_22; // System.Int32 BestHTTP.HTTPRequest::k__BackingField int32_t ___U3CMaxRedirectsU3Ek__BackingField_23; // System.Boolean BestHTTP.HTTPRequest::k__BackingField bool ___U3CUseAlternateSSLU3Ek__BackingField_24; // System.Boolean BestHTTP.HTTPRequest::k__BackingField bool ___U3CIsCookiesEnabledU3Ek__BackingField_25; // System.Collections.Generic.List`1 BestHTTP.HTTPRequest::customCookies List_1_tF9D8E572A8599785D6C36AD7BDC592752B89E0A1 * ___customCookies_26; // BestHTTP.Forms.HTTPFormUsage BestHTTP.HTTPRequest::k__BackingField int32_t ___U3CFormUsageU3Ek__BackingField_27; // BestHTTP.HTTPRequestStates BestHTTP.HTTPRequest::k__BackingField int32_t ___U3CStateU3Ek__BackingField_28; // System.Int32 BestHTTP.HTTPRequest::k__BackingField int32_t ___U3CRedirectCountU3Ek__BackingField_29; // System.Func`4 BestHTTP.HTTPRequest::CustomCertificationValidator Func_4_t0EA5243FC4B656A18B7AC7B130FD78666AA9FE84 * ___CustomCertificationValidator_30; // System.TimeSpan BestHTTP.HTTPRequest::k__BackingField TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___U3CConnectTimeoutU3Ek__BackingField_31; // System.TimeSpan BestHTTP.HTTPRequest::k__BackingField TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___U3CTimeoutU3Ek__BackingField_32; // System.Boolean BestHTTP.HTTPRequest::k__BackingField bool ___U3CEnableTimoutForStreamingU3Ek__BackingField_33; // System.Boolean BestHTTP.HTTPRequest::k__BackingField bool ___U3CEnableSafeReadOnUnknownContentLengthU3Ek__BackingField_34; // System.Int32 BestHTTP.HTTPRequest::k__BackingField int32_t ___U3CPriorityU3Ek__BackingField_35; // Org.BouncyCastle.Crypto.Tls2.ICertificateVerifyer BestHTTP.HTTPRequest::k__BackingField RuntimeObject* ___U3CCustomCertificateVerifyerU3Ek__BackingField_36; // Org.BouncyCastle.Crypto.Tls2.IClientCredentialsProvider BestHTTP.HTTPRequest::k__BackingField RuntimeObject* ___U3CCustomClientCredentialsProviderU3Ek__BackingField_37; // System.Collections.Generic.List`1 BestHTTP.HTTPRequest::k__BackingField List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * ___U3CCustomTLSServerNameListU3Ek__BackingField_38; // BestHTTP.SupportedProtocols BestHTTP.HTTPRequest::k__BackingField int32_t ___U3CProtocolHandlerU3Ek__BackingField_39; // BestHTTP.OnBeforeRedirectionDelegate BestHTTP.HTTPRequest::onBeforeRedirection OnBeforeRedirectionDelegate_t81B75D27201DA4FD218ADB97B6FCF92A176AE238 * ___onBeforeRedirection_40; // BestHTTP.OnBeforeHeaderSendDelegate BestHTTP.HTTPRequest::_onBeforeHeaderSend OnBeforeHeaderSendDelegate_t14E6C0AF9AE042EBCE08E9B5911D7327A37DE05F * ____onBeforeHeaderSend_41; // System.Boolean BestHTTP.HTTPRequest::k__BackingField bool ___U3CTryToMinimizeTCPLatencyU3Ek__BackingField_42; // System.Int64 BestHTTP.HTTPRequest::k__BackingField int64_t ___U3CDownloadedU3Ek__BackingField_43; // System.Int64 BestHTTP.HTTPRequest::k__BackingField int64_t ___U3CDownloadLengthU3Ek__BackingField_44; // System.Boolean BestHTTP.HTTPRequest::k__BackingField bool ___U3CDownloadProgressChangedU3Ek__BackingField_45; // System.Int64 BestHTTP.HTTPRequest::k__BackingField int64_t ___U3CUploadedU3Ek__BackingField_46; // System.Int64 BestHTTP.HTTPRequest::k__BackingField int64_t ___U3CUploadLengthU3Ek__BackingField_47; // System.Boolean BestHTTP.HTTPRequest::k__BackingField bool ___U3CUploadProgressChangedU3Ek__BackingField_48; // System.Boolean BestHTTP.HTTPRequest::isKeepAlive bool ___isKeepAlive_49; // System.Boolean BestHTTP.HTTPRequest::disableCache bool ___disableCache_50; // System.Boolean BestHTTP.HTTPRequest::cacheOnly bool ___cacheOnly_51; // System.Int32 BestHTTP.HTTPRequest::streamFragmentSize int32_t ___streamFragmentSize_52; // System.Boolean BestHTTP.HTTPRequest::useStreaming bool ___useStreaming_53; // System.Collections.Generic.Dictionary`2> BestHTTP.HTTPRequest::k__BackingField Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086 * ___U3CHeadersU3Ek__BackingField_54; // BestHTTP.Forms.HTTPFormBase BestHTTP.HTTPRequest::FieldCollector HTTPFormBase_t62B2F52574B8465343CE4B246C6021BC42A45BF2 * ___FieldCollector_55; // BestHTTP.Forms.HTTPFormBase BestHTTP.HTTPRequest::FormImpl HTTPFormBase_t62B2F52574B8465343CE4B246C6021BC42A45BF2 * ___FormImpl_56; public: inline static int32_t get_offset_of_U3CUriU3Ek__BackingField_3() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CUriU3Ek__BackingField_3)); } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * get_U3CUriU3Ek__BackingField_3() const { return ___U3CUriU3Ek__BackingField_3; } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 ** get_address_of_U3CUriU3Ek__BackingField_3() { return &___U3CUriU3Ek__BackingField_3; } inline void set_U3CUriU3Ek__BackingField_3(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * value) { ___U3CUriU3Ek__BackingField_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CUriU3Ek__BackingField_3), (void*)value); } inline static int32_t get_offset_of_U3CMethodTypeU3Ek__BackingField_4() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CMethodTypeU3Ek__BackingField_4)); } inline uint8_t get_U3CMethodTypeU3Ek__BackingField_4() const { return ___U3CMethodTypeU3Ek__BackingField_4; } inline uint8_t* get_address_of_U3CMethodTypeU3Ek__BackingField_4() { return &___U3CMethodTypeU3Ek__BackingField_4; } inline void set_U3CMethodTypeU3Ek__BackingField_4(uint8_t value) { ___U3CMethodTypeU3Ek__BackingField_4 = value; } inline static int32_t get_offset_of_U3CRawDataU3Ek__BackingField_5() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CRawDataU3Ek__BackingField_5)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_U3CRawDataU3Ek__BackingField_5() const { return ___U3CRawDataU3Ek__BackingField_5; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_U3CRawDataU3Ek__BackingField_5() { return &___U3CRawDataU3Ek__BackingField_5; } inline void set_U3CRawDataU3Ek__BackingField_5(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___U3CRawDataU3Ek__BackingField_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CRawDataU3Ek__BackingField_5), (void*)value); } inline static int32_t get_offset_of_U3CUploadStreamU3Ek__BackingField_6() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CUploadStreamU3Ek__BackingField_6)); } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_U3CUploadStreamU3Ek__BackingField_6() const { return ___U3CUploadStreamU3Ek__BackingField_6; } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_U3CUploadStreamU3Ek__BackingField_6() { return &___U3CUploadStreamU3Ek__BackingField_6; } inline void set_U3CUploadStreamU3Ek__BackingField_6(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value) { ___U3CUploadStreamU3Ek__BackingField_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CUploadStreamU3Ek__BackingField_6), (void*)value); } inline static int32_t get_offset_of_U3CDisposeUploadStreamU3Ek__BackingField_7() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CDisposeUploadStreamU3Ek__BackingField_7)); } inline bool get_U3CDisposeUploadStreamU3Ek__BackingField_7() const { return ___U3CDisposeUploadStreamU3Ek__BackingField_7; } inline bool* get_address_of_U3CDisposeUploadStreamU3Ek__BackingField_7() { return &___U3CDisposeUploadStreamU3Ek__BackingField_7; } inline void set_U3CDisposeUploadStreamU3Ek__BackingField_7(bool value) { ___U3CDisposeUploadStreamU3Ek__BackingField_7 = value; } inline static int32_t get_offset_of_U3CUseUploadStreamLengthU3Ek__BackingField_8() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CUseUploadStreamLengthU3Ek__BackingField_8)); } inline bool get_U3CUseUploadStreamLengthU3Ek__BackingField_8() const { return ___U3CUseUploadStreamLengthU3Ek__BackingField_8; } inline bool* get_address_of_U3CUseUploadStreamLengthU3Ek__BackingField_8() { return &___U3CUseUploadStreamLengthU3Ek__BackingField_8; } inline void set_U3CUseUploadStreamLengthU3Ek__BackingField_8(bool value) { ___U3CUseUploadStreamLengthU3Ek__BackingField_8 = value; } inline static int32_t get_offset_of_OnUploadProgress_9() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___OnUploadProgress_9)); } inline OnUploadProgressDelegate_tA62D192773A1C4C68D3049C26CC8CD42AF64843D * get_OnUploadProgress_9() const { return ___OnUploadProgress_9; } inline OnUploadProgressDelegate_tA62D192773A1C4C68D3049C26CC8CD42AF64843D ** get_address_of_OnUploadProgress_9() { return &___OnUploadProgress_9; } inline void set_OnUploadProgress_9(OnUploadProgressDelegate_tA62D192773A1C4C68D3049C26CC8CD42AF64843D * value) { ___OnUploadProgress_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnUploadProgress_9), (void*)value); } inline static int32_t get_offset_of_U3CMaxFragmentQueueLengthU3Ek__BackingField_10() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CMaxFragmentQueueLengthU3Ek__BackingField_10)); } inline int32_t get_U3CMaxFragmentQueueLengthU3Ek__BackingField_10() const { return ___U3CMaxFragmentQueueLengthU3Ek__BackingField_10; } inline int32_t* get_address_of_U3CMaxFragmentQueueLengthU3Ek__BackingField_10() { return &___U3CMaxFragmentQueueLengthU3Ek__BackingField_10; } inline void set_U3CMaxFragmentQueueLengthU3Ek__BackingField_10(int32_t value) { ___U3CMaxFragmentQueueLengthU3Ek__BackingField_10 = value; } inline static int32_t get_offset_of_U3CCallbackU3Ek__BackingField_11() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CCallbackU3Ek__BackingField_11)); } inline OnRequestFinishedDelegate_t4E35BB5277ED27A8B43D1987DE7F3B47772018B4 * get_U3CCallbackU3Ek__BackingField_11() const { return ___U3CCallbackU3Ek__BackingField_11; } inline OnRequestFinishedDelegate_t4E35BB5277ED27A8B43D1987DE7F3B47772018B4 ** get_address_of_U3CCallbackU3Ek__BackingField_11() { return &___U3CCallbackU3Ek__BackingField_11; } inline void set_U3CCallbackU3Ek__BackingField_11(OnRequestFinishedDelegate_t4E35BB5277ED27A8B43D1987DE7F3B47772018B4 * value) { ___U3CCallbackU3Ek__BackingField_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CCallbackU3Ek__BackingField_11), (void*)value); } inline static int32_t get_offset_of_OnProgress_12() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___OnProgress_12)); } inline OnDownloadProgressDelegate_t648A73937F176382A3E8E1252C79989D5EBC4F69 * get_OnProgress_12() const { return ___OnProgress_12; } inline OnDownloadProgressDelegate_t648A73937F176382A3E8E1252C79989D5EBC4F69 ** get_address_of_OnProgress_12() { return &___OnProgress_12; } inline void set_OnProgress_12(OnDownloadProgressDelegate_t648A73937F176382A3E8E1252C79989D5EBC4F69 * value) { ___OnProgress_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnProgress_12), (void*)value); } inline static int32_t get_offset_of_OnUpgraded_13() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___OnUpgraded_13)); } inline OnRequestFinishedDelegate_t4E35BB5277ED27A8B43D1987DE7F3B47772018B4 * get_OnUpgraded_13() const { return ___OnUpgraded_13; } inline OnRequestFinishedDelegate_t4E35BB5277ED27A8B43D1987DE7F3B47772018B4 ** get_address_of_OnUpgraded_13() { return &___OnUpgraded_13; } inline void set_OnUpgraded_13(OnRequestFinishedDelegate_t4E35BB5277ED27A8B43D1987DE7F3B47772018B4 * value) { ___OnUpgraded_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnUpgraded_13), (void*)value); } inline static int32_t get_offset_of_U3CDisableRetryU3Ek__BackingField_14() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CDisableRetryU3Ek__BackingField_14)); } inline bool get_U3CDisableRetryU3Ek__BackingField_14() const { return ___U3CDisableRetryU3Ek__BackingField_14; } inline bool* get_address_of_U3CDisableRetryU3Ek__BackingField_14() { return &___U3CDisableRetryU3Ek__BackingField_14; } inline void set_U3CDisableRetryU3Ek__BackingField_14(bool value) { ___U3CDisableRetryU3Ek__BackingField_14 = value; } inline static int32_t get_offset_of_U3CIsRedirectedU3Ek__BackingField_15() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CIsRedirectedU3Ek__BackingField_15)); } inline bool get_U3CIsRedirectedU3Ek__BackingField_15() const { return ___U3CIsRedirectedU3Ek__BackingField_15; } inline bool* get_address_of_U3CIsRedirectedU3Ek__BackingField_15() { return &___U3CIsRedirectedU3Ek__BackingField_15; } inline void set_U3CIsRedirectedU3Ek__BackingField_15(bool value) { ___U3CIsRedirectedU3Ek__BackingField_15 = value; } inline static int32_t get_offset_of_U3CRedirectUriU3Ek__BackingField_16() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CRedirectUriU3Ek__BackingField_16)); } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * get_U3CRedirectUriU3Ek__BackingField_16() const { return ___U3CRedirectUriU3Ek__BackingField_16; } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 ** get_address_of_U3CRedirectUriU3Ek__BackingField_16() { return &___U3CRedirectUriU3Ek__BackingField_16; } inline void set_U3CRedirectUriU3Ek__BackingField_16(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * value) { ___U3CRedirectUriU3Ek__BackingField_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CRedirectUriU3Ek__BackingField_16), (void*)value); } inline static int32_t get_offset_of_U3CResponseU3Ek__BackingField_17() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CResponseU3Ek__BackingField_17)); } inline HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * get_U3CResponseU3Ek__BackingField_17() const { return ___U3CResponseU3Ek__BackingField_17; } inline HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD ** get_address_of_U3CResponseU3Ek__BackingField_17() { return &___U3CResponseU3Ek__BackingField_17; } inline void set_U3CResponseU3Ek__BackingField_17(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * value) { ___U3CResponseU3Ek__BackingField_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CResponseU3Ek__BackingField_17), (void*)value); } inline static int32_t get_offset_of_U3CProxyResponseU3Ek__BackingField_18() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CProxyResponseU3Ek__BackingField_18)); } inline HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * get_U3CProxyResponseU3Ek__BackingField_18() const { return ___U3CProxyResponseU3Ek__BackingField_18; } inline HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD ** get_address_of_U3CProxyResponseU3Ek__BackingField_18() { return &___U3CProxyResponseU3Ek__BackingField_18; } inline void set_U3CProxyResponseU3Ek__BackingField_18(HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * value) { ___U3CProxyResponseU3Ek__BackingField_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CProxyResponseU3Ek__BackingField_18), (void*)value); } inline static int32_t get_offset_of_U3CExceptionU3Ek__BackingField_19() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CExceptionU3Ek__BackingField_19)); } inline Exception_t * get_U3CExceptionU3Ek__BackingField_19() const { return ___U3CExceptionU3Ek__BackingField_19; } inline Exception_t ** get_address_of_U3CExceptionU3Ek__BackingField_19() { return &___U3CExceptionU3Ek__BackingField_19; } inline void set_U3CExceptionU3Ek__BackingField_19(Exception_t * value) { ___U3CExceptionU3Ek__BackingField_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CExceptionU3Ek__BackingField_19), (void*)value); } inline static int32_t get_offset_of_U3CTagU3Ek__BackingField_20() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CTagU3Ek__BackingField_20)); } inline RuntimeObject * get_U3CTagU3Ek__BackingField_20() const { return ___U3CTagU3Ek__BackingField_20; } inline RuntimeObject ** get_address_of_U3CTagU3Ek__BackingField_20() { return &___U3CTagU3Ek__BackingField_20; } inline void set_U3CTagU3Ek__BackingField_20(RuntimeObject * value) { ___U3CTagU3Ek__BackingField_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CTagU3Ek__BackingField_20), (void*)value); } inline static int32_t get_offset_of_U3CCredentialsU3Ek__BackingField_21() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CCredentialsU3Ek__BackingField_21)); } inline Credentials_tD6C60AC7DFFD64212481FBCB4AF02846196F5CE8 * get_U3CCredentialsU3Ek__BackingField_21() const { return ___U3CCredentialsU3Ek__BackingField_21; } inline Credentials_tD6C60AC7DFFD64212481FBCB4AF02846196F5CE8 ** get_address_of_U3CCredentialsU3Ek__BackingField_21() { return &___U3CCredentialsU3Ek__BackingField_21; } inline void set_U3CCredentialsU3Ek__BackingField_21(Credentials_tD6C60AC7DFFD64212481FBCB4AF02846196F5CE8 * value) { ___U3CCredentialsU3Ek__BackingField_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CCredentialsU3Ek__BackingField_21), (void*)value); } inline static int32_t get_offset_of_U3CProxyU3Ek__BackingField_22() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CProxyU3Ek__BackingField_22)); } inline Proxy_t84F0DDAE5A37016479C7094FFB8F78835B8BD4F6 * get_U3CProxyU3Ek__BackingField_22() const { return ___U3CProxyU3Ek__BackingField_22; } inline Proxy_t84F0DDAE5A37016479C7094FFB8F78835B8BD4F6 ** get_address_of_U3CProxyU3Ek__BackingField_22() { return &___U3CProxyU3Ek__BackingField_22; } inline void set_U3CProxyU3Ek__BackingField_22(Proxy_t84F0DDAE5A37016479C7094FFB8F78835B8BD4F6 * value) { ___U3CProxyU3Ek__BackingField_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CProxyU3Ek__BackingField_22), (void*)value); } inline static int32_t get_offset_of_U3CMaxRedirectsU3Ek__BackingField_23() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CMaxRedirectsU3Ek__BackingField_23)); } inline int32_t get_U3CMaxRedirectsU3Ek__BackingField_23() const { return ___U3CMaxRedirectsU3Ek__BackingField_23; } inline int32_t* get_address_of_U3CMaxRedirectsU3Ek__BackingField_23() { return &___U3CMaxRedirectsU3Ek__BackingField_23; } inline void set_U3CMaxRedirectsU3Ek__BackingField_23(int32_t value) { ___U3CMaxRedirectsU3Ek__BackingField_23 = value; } inline static int32_t get_offset_of_U3CUseAlternateSSLU3Ek__BackingField_24() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CUseAlternateSSLU3Ek__BackingField_24)); } inline bool get_U3CUseAlternateSSLU3Ek__BackingField_24() const { return ___U3CUseAlternateSSLU3Ek__BackingField_24; } inline bool* get_address_of_U3CUseAlternateSSLU3Ek__BackingField_24() { return &___U3CUseAlternateSSLU3Ek__BackingField_24; } inline void set_U3CUseAlternateSSLU3Ek__BackingField_24(bool value) { ___U3CUseAlternateSSLU3Ek__BackingField_24 = value; } inline static int32_t get_offset_of_U3CIsCookiesEnabledU3Ek__BackingField_25() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CIsCookiesEnabledU3Ek__BackingField_25)); } inline bool get_U3CIsCookiesEnabledU3Ek__BackingField_25() const { return ___U3CIsCookiesEnabledU3Ek__BackingField_25; } inline bool* get_address_of_U3CIsCookiesEnabledU3Ek__BackingField_25() { return &___U3CIsCookiesEnabledU3Ek__BackingField_25; } inline void set_U3CIsCookiesEnabledU3Ek__BackingField_25(bool value) { ___U3CIsCookiesEnabledU3Ek__BackingField_25 = value; } inline static int32_t get_offset_of_customCookies_26() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___customCookies_26)); } inline List_1_tF9D8E572A8599785D6C36AD7BDC592752B89E0A1 * get_customCookies_26() const { return ___customCookies_26; } inline List_1_tF9D8E572A8599785D6C36AD7BDC592752B89E0A1 ** get_address_of_customCookies_26() { return &___customCookies_26; } inline void set_customCookies_26(List_1_tF9D8E572A8599785D6C36AD7BDC592752B89E0A1 * value) { ___customCookies_26 = value; Il2CppCodeGenWriteBarrier((void**)(&___customCookies_26), (void*)value); } inline static int32_t get_offset_of_U3CFormUsageU3Ek__BackingField_27() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CFormUsageU3Ek__BackingField_27)); } inline int32_t get_U3CFormUsageU3Ek__BackingField_27() const { return ___U3CFormUsageU3Ek__BackingField_27; } inline int32_t* get_address_of_U3CFormUsageU3Ek__BackingField_27() { return &___U3CFormUsageU3Ek__BackingField_27; } inline void set_U3CFormUsageU3Ek__BackingField_27(int32_t value) { ___U3CFormUsageU3Ek__BackingField_27 = value; } inline static int32_t get_offset_of_U3CStateU3Ek__BackingField_28() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CStateU3Ek__BackingField_28)); } inline int32_t get_U3CStateU3Ek__BackingField_28() const { return ___U3CStateU3Ek__BackingField_28; } inline int32_t* get_address_of_U3CStateU3Ek__BackingField_28() { return &___U3CStateU3Ek__BackingField_28; } inline void set_U3CStateU3Ek__BackingField_28(int32_t value) { ___U3CStateU3Ek__BackingField_28 = value; } inline static int32_t get_offset_of_U3CRedirectCountU3Ek__BackingField_29() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CRedirectCountU3Ek__BackingField_29)); } inline int32_t get_U3CRedirectCountU3Ek__BackingField_29() const { return ___U3CRedirectCountU3Ek__BackingField_29; } inline int32_t* get_address_of_U3CRedirectCountU3Ek__BackingField_29() { return &___U3CRedirectCountU3Ek__BackingField_29; } inline void set_U3CRedirectCountU3Ek__BackingField_29(int32_t value) { ___U3CRedirectCountU3Ek__BackingField_29 = value; } inline static int32_t get_offset_of_CustomCertificationValidator_30() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___CustomCertificationValidator_30)); } inline Func_4_t0EA5243FC4B656A18B7AC7B130FD78666AA9FE84 * get_CustomCertificationValidator_30() const { return ___CustomCertificationValidator_30; } inline Func_4_t0EA5243FC4B656A18B7AC7B130FD78666AA9FE84 ** get_address_of_CustomCertificationValidator_30() { return &___CustomCertificationValidator_30; } inline void set_CustomCertificationValidator_30(Func_4_t0EA5243FC4B656A18B7AC7B130FD78666AA9FE84 * value) { ___CustomCertificationValidator_30 = value; Il2CppCodeGenWriteBarrier((void**)(&___CustomCertificationValidator_30), (void*)value); } inline static int32_t get_offset_of_U3CConnectTimeoutU3Ek__BackingField_31() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CConnectTimeoutU3Ek__BackingField_31)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_U3CConnectTimeoutU3Ek__BackingField_31() const { return ___U3CConnectTimeoutU3Ek__BackingField_31; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_U3CConnectTimeoutU3Ek__BackingField_31() { return &___U3CConnectTimeoutU3Ek__BackingField_31; } inline void set_U3CConnectTimeoutU3Ek__BackingField_31(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___U3CConnectTimeoutU3Ek__BackingField_31 = value; } inline static int32_t get_offset_of_U3CTimeoutU3Ek__BackingField_32() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CTimeoutU3Ek__BackingField_32)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_U3CTimeoutU3Ek__BackingField_32() const { return ___U3CTimeoutU3Ek__BackingField_32; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_U3CTimeoutU3Ek__BackingField_32() { return &___U3CTimeoutU3Ek__BackingField_32; } inline void set_U3CTimeoutU3Ek__BackingField_32(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___U3CTimeoutU3Ek__BackingField_32 = value; } inline static int32_t get_offset_of_U3CEnableTimoutForStreamingU3Ek__BackingField_33() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CEnableTimoutForStreamingU3Ek__BackingField_33)); } inline bool get_U3CEnableTimoutForStreamingU3Ek__BackingField_33() const { return ___U3CEnableTimoutForStreamingU3Ek__BackingField_33; } inline bool* get_address_of_U3CEnableTimoutForStreamingU3Ek__BackingField_33() { return &___U3CEnableTimoutForStreamingU3Ek__BackingField_33; } inline void set_U3CEnableTimoutForStreamingU3Ek__BackingField_33(bool value) { ___U3CEnableTimoutForStreamingU3Ek__BackingField_33 = value; } inline static int32_t get_offset_of_U3CEnableSafeReadOnUnknownContentLengthU3Ek__BackingField_34() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CEnableSafeReadOnUnknownContentLengthU3Ek__BackingField_34)); } inline bool get_U3CEnableSafeReadOnUnknownContentLengthU3Ek__BackingField_34() const { return ___U3CEnableSafeReadOnUnknownContentLengthU3Ek__BackingField_34; } inline bool* get_address_of_U3CEnableSafeReadOnUnknownContentLengthU3Ek__BackingField_34() { return &___U3CEnableSafeReadOnUnknownContentLengthU3Ek__BackingField_34; } inline void set_U3CEnableSafeReadOnUnknownContentLengthU3Ek__BackingField_34(bool value) { ___U3CEnableSafeReadOnUnknownContentLengthU3Ek__BackingField_34 = value; } inline static int32_t get_offset_of_U3CPriorityU3Ek__BackingField_35() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CPriorityU3Ek__BackingField_35)); } inline int32_t get_U3CPriorityU3Ek__BackingField_35() const { return ___U3CPriorityU3Ek__BackingField_35; } inline int32_t* get_address_of_U3CPriorityU3Ek__BackingField_35() { return &___U3CPriorityU3Ek__BackingField_35; } inline void set_U3CPriorityU3Ek__BackingField_35(int32_t value) { ___U3CPriorityU3Ek__BackingField_35 = value; } inline static int32_t get_offset_of_U3CCustomCertificateVerifyerU3Ek__BackingField_36() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CCustomCertificateVerifyerU3Ek__BackingField_36)); } inline RuntimeObject* get_U3CCustomCertificateVerifyerU3Ek__BackingField_36() const { return ___U3CCustomCertificateVerifyerU3Ek__BackingField_36; } inline RuntimeObject** get_address_of_U3CCustomCertificateVerifyerU3Ek__BackingField_36() { return &___U3CCustomCertificateVerifyerU3Ek__BackingField_36; } inline void set_U3CCustomCertificateVerifyerU3Ek__BackingField_36(RuntimeObject* value) { ___U3CCustomCertificateVerifyerU3Ek__BackingField_36 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CCustomCertificateVerifyerU3Ek__BackingField_36), (void*)value); } inline static int32_t get_offset_of_U3CCustomClientCredentialsProviderU3Ek__BackingField_37() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CCustomClientCredentialsProviderU3Ek__BackingField_37)); } inline RuntimeObject* get_U3CCustomClientCredentialsProviderU3Ek__BackingField_37() const { return ___U3CCustomClientCredentialsProviderU3Ek__BackingField_37; } inline RuntimeObject** get_address_of_U3CCustomClientCredentialsProviderU3Ek__BackingField_37() { return &___U3CCustomClientCredentialsProviderU3Ek__BackingField_37; } inline void set_U3CCustomClientCredentialsProviderU3Ek__BackingField_37(RuntimeObject* value) { ___U3CCustomClientCredentialsProviderU3Ek__BackingField_37 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CCustomClientCredentialsProviderU3Ek__BackingField_37), (void*)value); } inline static int32_t get_offset_of_U3CCustomTLSServerNameListU3Ek__BackingField_38() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CCustomTLSServerNameListU3Ek__BackingField_38)); } inline List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * get_U3CCustomTLSServerNameListU3Ek__BackingField_38() const { return ___U3CCustomTLSServerNameListU3Ek__BackingField_38; } inline List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 ** get_address_of_U3CCustomTLSServerNameListU3Ek__BackingField_38() { return &___U3CCustomTLSServerNameListU3Ek__BackingField_38; } inline void set_U3CCustomTLSServerNameListU3Ek__BackingField_38(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * value) { ___U3CCustomTLSServerNameListU3Ek__BackingField_38 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CCustomTLSServerNameListU3Ek__BackingField_38), (void*)value); } inline static int32_t get_offset_of_U3CProtocolHandlerU3Ek__BackingField_39() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CProtocolHandlerU3Ek__BackingField_39)); } inline int32_t get_U3CProtocolHandlerU3Ek__BackingField_39() const { return ___U3CProtocolHandlerU3Ek__BackingField_39; } inline int32_t* get_address_of_U3CProtocolHandlerU3Ek__BackingField_39() { return &___U3CProtocolHandlerU3Ek__BackingField_39; } inline void set_U3CProtocolHandlerU3Ek__BackingField_39(int32_t value) { ___U3CProtocolHandlerU3Ek__BackingField_39 = value; } inline static int32_t get_offset_of_onBeforeRedirection_40() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___onBeforeRedirection_40)); } inline OnBeforeRedirectionDelegate_t81B75D27201DA4FD218ADB97B6FCF92A176AE238 * get_onBeforeRedirection_40() const { return ___onBeforeRedirection_40; } inline OnBeforeRedirectionDelegate_t81B75D27201DA4FD218ADB97B6FCF92A176AE238 ** get_address_of_onBeforeRedirection_40() { return &___onBeforeRedirection_40; } inline void set_onBeforeRedirection_40(OnBeforeRedirectionDelegate_t81B75D27201DA4FD218ADB97B6FCF92A176AE238 * value) { ___onBeforeRedirection_40 = value; Il2CppCodeGenWriteBarrier((void**)(&___onBeforeRedirection_40), (void*)value); } inline static int32_t get_offset_of__onBeforeHeaderSend_41() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ____onBeforeHeaderSend_41)); } inline OnBeforeHeaderSendDelegate_t14E6C0AF9AE042EBCE08E9B5911D7327A37DE05F * get__onBeforeHeaderSend_41() const { return ____onBeforeHeaderSend_41; } inline OnBeforeHeaderSendDelegate_t14E6C0AF9AE042EBCE08E9B5911D7327A37DE05F ** get_address_of__onBeforeHeaderSend_41() { return &____onBeforeHeaderSend_41; } inline void set__onBeforeHeaderSend_41(OnBeforeHeaderSendDelegate_t14E6C0AF9AE042EBCE08E9B5911D7327A37DE05F * value) { ____onBeforeHeaderSend_41 = value; Il2CppCodeGenWriteBarrier((void**)(&____onBeforeHeaderSend_41), (void*)value); } inline static int32_t get_offset_of_U3CTryToMinimizeTCPLatencyU3Ek__BackingField_42() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CTryToMinimizeTCPLatencyU3Ek__BackingField_42)); } inline bool get_U3CTryToMinimizeTCPLatencyU3Ek__BackingField_42() const { return ___U3CTryToMinimizeTCPLatencyU3Ek__BackingField_42; } inline bool* get_address_of_U3CTryToMinimizeTCPLatencyU3Ek__BackingField_42() { return &___U3CTryToMinimizeTCPLatencyU3Ek__BackingField_42; } inline void set_U3CTryToMinimizeTCPLatencyU3Ek__BackingField_42(bool value) { ___U3CTryToMinimizeTCPLatencyU3Ek__BackingField_42 = value; } inline static int32_t get_offset_of_U3CDownloadedU3Ek__BackingField_43() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CDownloadedU3Ek__BackingField_43)); } inline int64_t get_U3CDownloadedU3Ek__BackingField_43() const { return ___U3CDownloadedU3Ek__BackingField_43; } inline int64_t* get_address_of_U3CDownloadedU3Ek__BackingField_43() { return &___U3CDownloadedU3Ek__BackingField_43; } inline void set_U3CDownloadedU3Ek__BackingField_43(int64_t value) { ___U3CDownloadedU3Ek__BackingField_43 = value; } inline static int32_t get_offset_of_U3CDownloadLengthU3Ek__BackingField_44() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CDownloadLengthU3Ek__BackingField_44)); } inline int64_t get_U3CDownloadLengthU3Ek__BackingField_44() const { return ___U3CDownloadLengthU3Ek__BackingField_44; } inline int64_t* get_address_of_U3CDownloadLengthU3Ek__BackingField_44() { return &___U3CDownloadLengthU3Ek__BackingField_44; } inline void set_U3CDownloadLengthU3Ek__BackingField_44(int64_t value) { ___U3CDownloadLengthU3Ek__BackingField_44 = value; } inline static int32_t get_offset_of_U3CDownloadProgressChangedU3Ek__BackingField_45() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CDownloadProgressChangedU3Ek__BackingField_45)); } inline bool get_U3CDownloadProgressChangedU3Ek__BackingField_45() const { return ___U3CDownloadProgressChangedU3Ek__BackingField_45; } inline bool* get_address_of_U3CDownloadProgressChangedU3Ek__BackingField_45() { return &___U3CDownloadProgressChangedU3Ek__BackingField_45; } inline void set_U3CDownloadProgressChangedU3Ek__BackingField_45(bool value) { ___U3CDownloadProgressChangedU3Ek__BackingField_45 = value; } inline static int32_t get_offset_of_U3CUploadedU3Ek__BackingField_46() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CUploadedU3Ek__BackingField_46)); } inline int64_t get_U3CUploadedU3Ek__BackingField_46() const { return ___U3CUploadedU3Ek__BackingField_46; } inline int64_t* get_address_of_U3CUploadedU3Ek__BackingField_46() { return &___U3CUploadedU3Ek__BackingField_46; } inline void set_U3CUploadedU3Ek__BackingField_46(int64_t value) { ___U3CUploadedU3Ek__BackingField_46 = value; } inline static int32_t get_offset_of_U3CUploadLengthU3Ek__BackingField_47() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CUploadLengthU3Ek__BackingField_47)); } inline int64_t get_U3CUploadLengthU3Ek__BackingField_47() const { return ___U3CUploadLengthU3Ek__BackingField_47; } inline int64_t* get_address_of_U3CUploadLengthU3Ek__BackingField_47() { return &___U3CUploadLengthU3Ek__BackingField_47; } inline void set_U3CUploadLengthU3Ek__BackingField_47(int64_t value) { ___U3CUploadLengthU3Ek__BackingField_47 = value; } inline static int32_t get_offset_of_U3CUploadProgressChangedU3Ek__BackingField_48() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CUploadProgressChangedU3Ek__BackingField_48)); } inline bool get_U3CUploadProgressChangedU3Ek__BackingField_48() const { return ___U3CUploadProgressChangedU3Ek__BackingField_48; } inline bool* get_address_of_U3CUploadProgressChangedU3Ek__BackingField_48() { return &___U3CUploadProgressChangedU3Ek__BackingField_48; } inline void set_U3CUploadProgressChangedU3Ek__BackingField_48(bool value) { ___U3CUploadProgressChangedU3Ek__BackingField_48 = value; } inline static int32_t get_offset_of_isKeepAlive_49() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___isKeepAlive_49)); } inline bool get_isKeepAlive_49() const { return ___isKeepAlive_49; } inline bool* get_address_of_isKeepAlive_49() { return &___isKeepAlive_49; } inline void set_isKeepAlive_49(bool value) { ___isKeepAlive_49 = value; } inline static int32_t get_offset_of_disableCache_50() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___disableCache_50)); } inline bool get_disableCache_50() const { return ___disableCache_50; } inline bool* get_address_of_disableCache_50() { return &___disableCache_50; } inline void set_disableCache_50(bool value) { ___disableCache_50 = value; } inline static int32_t get_offset_of_cacheOnly_51() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___cacheOnly_51)); } inline bool get_cacheOnly_51() const { return ___cacheOnly_51; } inline bool* get_address_of_cacheOnly_51() { return &___cacheOnly_51; } inline void set_cacheOnly_51(bool value) { ___cacheOnly_51 = value; } inline static int32_t get_offset_of_streamFragmentSize_52() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___streamFragmentSize_52)); } inline int32_t get_streamFragmentSize_52() const { return ___streamFragmentSize_52; } inline int32_t* get_address_of_streamFragmentSize_52() { return &___streamFragmentSize_52; } inline void set_streamFragmentSize_52(int32_t value) { ___streamFragmentSize_52 = value; } inline static int32_t get_offset_of_useStreaming_53() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___useStreaming_53)); } inline bool get_useStreaming_53() const { return ___useStreaming_53; } inline bool* get_address_of_useStreaming_53() { return &___useStreaming_53; } inline void set_useStreaming_53(bool value) { ___useStreaming_53 = value; } inline static int32_t get_offset_of_U3CHeadersU3Ek__BackingField_54() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___U3CHeadersU3Ek__BackingField_54)); } inline Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086 * get_U3CHeadersU3Ek__BackingField_54() const { return ___U3CHeadersU3Ek__BackingField_54; } inline Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086 ** get_address_of_U3CHeadersU3Ek__BackingField_54() { return &___U3CHeadersU3Ek__BackingField_54; } inline void set_U3CHeadersU3Ek__BackingField_54(Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086 * value) { ___U3CHeadersU3Ek__BackingField_54 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CHeadersU3Ek__BackingField_54), (void*)value); } inline static int32_t get_offset_of_FieldCollector_55() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___FieldCollector_55)); } inline HTTPFormBase_t62B2F52574B8465343CE4B246C6021BC42A45BF2 * get_FieldCollector_55() const { return ___FieldCollector_55; } inline HTTPFormBase_t62B2F52574B8465343CE4B246C6021BC42A45BF2 ** get_address_of_FieldCollector_55() { return &___FieldCollector_55; } inline void set_FieldCollector_55(HTTPFormBase_t62B2F52574B8465343CE4B246C6021BC42A45BF2 * value) { ___FieldCollector_55 = value; Il2CppCodeGenWriteBarrier((void**)(&___FieldCollector_55), (void*)value); } inline static int32_t get_offset_of_FormImpl_56() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42, ___FormImpl_56)); } inline HTTPFormBase_t62B2F52574B8465343CE4B246C6021BC42A45BF2 * get_FormImpl_56() const { return ___FormImpl_56; } inline HTTPFormBase_t62B2F52574B8465343CE4B246C6021BC42A45BF2 ** get_address_of_FormImpl_56() { return &___FormImpl_56; } inline void set_FormImpl_56(HTTPFormBase_t62B2F52574B8465343CE4B246C6021BC42A45BF2 * value) { ___FormImpl_56 = value; Il2CppCodeGenWriteBarrier((void**)(&___FormImpl_56), (void*)value); } }; struct HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42_StaticFields { public: // System.Byte[] BestHTTP.HTTPRequest::EOL ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___EOL_0; // System.String[] BestHTTP.HTTPRequest::MethodNames StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___MethodNames_1; // System.Int32 BestHTTP.HTTPRequest::UploadChunkSize int32_t ___UploadChunkSize_2; public: inline static int32_t get_offset_of_EOL_0() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42_StaticFields, ___EOL_0)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_EOL_0() const { return ___EOL_0; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_EOL_0() { return &___EOL_0; } inline void set_EOL_0(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___EOL_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___EOL_0), (void*)value); } inline static int32_t get_offset_of_MethodNames_1() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42_StaticFields, ___MethodNames_1)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_MethodNames_1() const { return ___MethodNames_1; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_MethodNames_1() { return &___MethodNames_1; } inline void set_MethodNames_1(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___MethodNames_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___MethodNames_1), (void*)value); } inline static int32_t get_offset_of_UploadChunkSize_2() { return static_cast(offsetof(HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42_StaticFields, ___UploadChunkSize_2)); } inline int32_t get_UploadChunkSize_2() const { return ___UploadChunkSize_2; } inline int32_t* get_address_of_UploadChunkSize_2() { return &___UploadChunkSize_2; } inline void set_UploadChunkSize_2(int32_t value) { ___UploadChunkSize_2 = value; } }; // BestHTTP.KeepAliveHeader struct KeepAliveHeader_t93C1CC9FD7D51F432D9A50741F9BC0EF59166924 : public RuntimeObject { public: // System.TimeSpan BestHTTP.KeepAliveHeader::k__BackingField TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___U3CTimeOutU3Ek__BackingField_0; // System.Int32 BestHTTP.KeepAliveHeader::k__BackingField int32_t ___U3CMaxRequestsU3Ek__BackingField_1; public: inline static int32_t get_offset_of_U3CTimeOutU3Ek__BackingField_0() { return static_cast(offsetof(KeepAliveHeader_t93C1CC9FD7D51F432D9A50741F9BC0EF59166924, ___U3CTimeOutU3Ek__BackingField_0)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_U3CTimeOutU3Ek__BackingField_0() const { return ___U3CTimeOutU3Ek__BackingField_0; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_U3CTimeOutU3Ek__BackingField_0() { return &___U3CTimeOutU3Ek__BackingField_0; } inline void set_U3CTimeOutU3Ek__BackingField_0(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___U3CTimeOutU3Ek__BackingField_0 = value; } inline static int32_t get_offset_of_U3CMaxRequestsU3Ek__BackingField_1() { return static_cast(offsetof(KeepAliveHeader_t93C1CC9FD7D51F432D9A50741F9BC0EF59166924, ___U3CMaxRequestsU3Ek__BackingField_1)); } inline int32_t get_U3CMaxRequestsU3Ek__BackingField_1() const { return ___U3CMaxRequestsU3Ek__BackingField_1; } inline int32_t* get_address_of_U3CMaxRequestsU3Ek__BackingField_1() { return &___U3CMaxRequestsU3Ek__BackingField_1; } inline void set_U3CMaxRequestsU3Ek__BackingField_1(int32_t value) { ___U3CMaxRequestsU3Ek__BackingField_1 = value; } }; // Org.BouncyCastle.Crypto.Tls2.LegacyTlsClient struct LegacyTlsClient_t4BEFCBA84F5A2CA83714DEC1CCBE32EC12681856 : public DefaultTlsClient_t3D669A2D16F41BD1D1B25ABD0EECED9F1AFBE970 { public: // System.Uri Org.BouncyCastle.Crypto.Tls2.LegacyTlsClient::TargetUri Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___TargetUri_10; // Org.BouncyCastle.Crypto.Tls2.ICertificateVerifyer Org.BouncyCastle.Crypto.Tls2.LegacyTlsClient::verifyer RuntimeObject* ___verifyer_11; // Org.BouncyCastle.Crypto.Tls2.IClientCredentialsProvider Org.BouncyCastle.Crypto.Tls2.LegacyTlsClient::credProvider RuntimeObject* ___credProvider_12; public: inline static int32_t get_offset_of_TargetUri_10() { return static_cast(offsetof(LegacyTlsClient_t4BEFCBA84F5A2CA83714DEC1CCBE32EC12681856, ___TargetUri_10)); } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * get_TargetUri_10() const { return ___TargetUri_10; } inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 ** get_address_of_TargetUri_10() { return &___TargetUri_10; } inline void set_TargetUri_10(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * value) { ___TargetUri_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___TargetUri_10), (void*)value); } inline static int32_t get_offset_of_verifyer_11() { return static_cast(offsetof(LegacyTlsClient_t4BEFCBA84F5A2CA83714DEC1CCBE32EC12681856, ___verifyer_11)); } inline RuntimeObject* get_verifyer_11() const { return ___verifyer_11; } inline RuntimeObject** get_address_of_verifyer_11() { return &___verifyer_11; } inline void set_verifyer_11(RuntimeObject* value) { ___verifyer_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___verifyer_11), (void*)value); } inline static int32_t get_offset_of_credProvider_12() { return static_cast(offsetof(LegacyTlsClient_t4BEFCBA84F5A2CA83714DEC1CCBE32EC12681856, ___credProvider_12)); } inline RuntimeObject* get_credProvider_12() const { return ___credProvider_12; } inline RuntimeObject** get_address_of_credProvider_12() { return &___credProvider_12; } inline void set_credProvider_12(RuntimeObject* value) { ___credProvider_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___credProvider_12), (void*)value); } }; // System.MulticastDelegate struct MulticastDelegate_t : public Delegate_t { public: // System.Delegate[] System.MulticastDelegate::delegates DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* ___delegates_11; public: inline static int32_t get_offset_of_delegates_11() { return static_cast(offsetof(MulticastDelegate_t, ___delegates_11)); } inline DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* get_delegates_11() const { return ___delegates_11; } inline DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8** get_address_of_delegates_11() { return &___delegates_11; } inline void set_delegates_11(DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* value) { ___delegates_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___delegates_11), (void*)value); } }; // Native definition for P/Invoke marshalling of System.MulticastDelegate struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke { Delegate_t_marshaled_pinvoke** ___delegates_11; }; // Native definition for COM marshalling of System.MulticastDelegate struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com { Delegate_t_marshaled_com** ___delegates_11; }; // UnityEngine.UI.Navigation struct Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A { public: // UnityEngine.UI.Navigation/Mode UnityEngine.UI.Navigation::m_Mode int32_t ___m_Mode_0; // System.Boolean UnityEngine.UI.Navigation::m_WrapAround bool ___m_WrapAround_1; // UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnUp Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnUp_2; // UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnDown Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnDown_3; // UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnLeft Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnLeft_4; // UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnRight Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnRight_5; public: inline static int32_t get_offset_of_m_Mode_0() { return static_cast(offsetof(Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A, ___m_Mode_0)); } inline int32_t get_m_Mode_0() const { return ___m_Mode_0; } inline int32_t* get_address_of_m_Mode_0() { return &___m_Mode_0; } inline void set_m_Mode_0(int32_t value) { ___m_Mode_0 = value; } inline static int32_t get_offset_of_m_WrapAround_1() { return static_cast(offsetof(Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A, ___m_WrapAround_1)); } inline bool get_m_WrapAround_1() const { return ___m_WrapAround_1; } inline bool* get_address_of_m_WrapAround_1() { return &___m_WrapAround_1; } inline void set_m_WrapAround_1(bool value) { ___m_WrapAround_1 = value; } inline static int32_t get_offset_of_m_SelectOnUp_2() { return static_cast(offsetof(Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A, ___m_SelectOnUp_2)); } inline Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * get_m_SelectOnUp_2() const { return ___m_SelectOnUp_2; } inline Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD ** get_address_of_m_SelectOnUp_2() { return &___m_SelectOnUp_2; } inline void set_m_SelectOnUp_2(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * value) { ___m_SelectOnUp_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_SelectOnUp_2), (void*)value); } inline static int32_t get_offset_of_m_SelectOnDown_3() { return static_cast(offsetof(Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A, ___m_SelectOnDown_3)); } inline Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * get_m_SelectOnDown_3() const { return ___m_SelectOnDown_3; } inline Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD ** get_address_of_m_SelectOnDown_3() { return &___m_SelectOnDown_3; } inline void set_m_SelectOnDown_3(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * value) { ___m_SelectOnDown_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_SelectOnDown_3), (void*)value); } inline static int32_t get_offset_of_m_SelectOnLeft_4() { return static_cast(offsetof(Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A, ___m_SelectOnLeft_4)); } inline Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * get_m_SelectOnLeft_4() const { return ___m_SelectOnLeft_4; } inline Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD ** get_address_of_m_SelectOnLeft_4() { return &___m_SelectOnLeft_4; } inline void set_m_SelectOnLeft_4(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * value) { ___m_SelectOnLeft_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_SelectOnLeft_4), (void*)value); } inline static int32_t get_offset_of_m_SelectOnRight_5() { return static_cast(offsetof(Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A, ___m_SelectOnRight_5)); } inline Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * get_m_SelectOnRight_5() const { return ___m_SelectOnRight_5; } inline Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD ** get_address_of_m_SelectOnRight_5() { return &___m_SelectOnRight_5; } inline void set_m_SelectOnRight_5(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * value) { ___m_SelectOnRight_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_SelectOnRight_5), (void*)value); } }; // Native definition for P/Invoke marshalling of UnityEngine.UI.Navigation struct Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A_marshaled_pinvoke { int32_t ___m_Mode_0; int32_t ___m_WrapAround_1; Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnUp_2; Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnDown_3; Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnLeft_4; Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnRight_5; }; // Native definition for COM marshalling of UnityEngine.UI.Navigation struct Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A_marshaled_com { int32_t ___m_Mode_0; int32_t ___m_WrapAround_1; Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnUp_2; Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnDown_3; Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnLeft_4; Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnRight_5; }; // System.Net.Sockets.Socket struct Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09 : public RuntimeObject { public: // System.Boolean System.Net.Sockets.Socket::is_closed bool ___is_closed_10; // System.Boolean System.Net.Sockets.Socket::is_listening bool ___is_listening_11; // System.Boolean System.Net.Sockets.Socket::useOverlappedIO bool ___useOverlappedIO_12; // System.Int32 System.Net.Sockets.Socket::linger_timeout int32_t ___linger_timeout_13; // System.Net.Sockets.AddressFamily System.Net.Sockets.Socket::addressFamily int32_t ___addressFamily_14; // System.Net.Sockets.SocketType System.Net.Sockets.Socket::socketType int32_t ___socketType_15; // System.Net.Sockets.ProtocolType System.Net.Sockets.Socket::protocolType int32_t ___protocolType_16; // System.Net.Sockets.SafeSocketHandle System.Net.Sockets.Socket::m_Handle SafeSocketHandle_t5050671179FB886DA1763A0E4EFB3FCD072363C9 * ___m_Handle_17; // System.Net.EndPoint System.Net.Sockets.Socket::seed_endpoint EndPoint_t18D4AE8D03090A2B262136E59F95CE61418C34DA * ___seed_endpoint_18; // System.Threading.SemaphoreSlim System.Net.Sockets.Socket::ReadSem SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385 * ___ReadSem_19; // System.Threading.SemaphoreSlim System.Net.Sockets.Socket::WriteSem SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385 * ___WriteSem_20; // System.Boolean System.Net.Sockets.Socket::is_blocking bool ___is_blocking_21; // System.Boolean System.Net.Sockets.Socket::is_bound bool ___is_bound_22; // System.Boolean System.Net.Sockets.Socket::is_connected bool ___is_connected_23; // System.Int32 System.Net.Sockets.Socket::m_IntCleanedUp int32_t ___m_IntCleanedUp_24; // System.Boolean System.Net.Sockets.Socket::connect_in_progress bool ___connect_in_progress_25; // System.Int32 System.Net.Sockets.Socket::ID int32_t ___ID_26; public: inline static int32_t get_offset_of_is_closed_10() { return static_cast(offsetof(Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09, ___is_closed_10)); } inline bool get_is_closed_10() const { return ___is_closed_10; } inline bool* get_address_of_is_closed_10() { return &___is_closed_10; } inline void set_is_closed_10(bool value) { ___is_closed_10 = value; } inline static int32_t get_offset_of_is_listening_11() { return static_cast(offsetof(Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09, ___is_listening_11)); } inline bool get_is_listening_11() const { return ___is_listening_11; } inline bool* get_address_of_is_listening_11() { return &___is_listening_11; } inline void set_is_listening_11(bool value) { ___is_listening_11 = value; } inline static int32_t get_offset_of_useOverlappedIO_12() { return static_cast(offsetof(Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09, ___useOverlappedIO_12)); } inline bool get_useOverlappedIO_12() const { return ___useOverlappedIO_12; } inline bool* get_address_of_useOverlappedIO_12() { return &___useOverlappedIO_12; } inline void set_useOverlappedIO_12(bool value) { ___useOverlappedIO_12 = value; } inline static int32_t get_offset_of_linger_timeout_13() { return static_cast(offsetof(Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09, ___linger_timeout_13)); } inline int32_t get_linger_timeout_13() const { return ___linger_timeout_13; } inline int32_t* get_address_of_linger_timeout_13() { return &___linger_timeout_13; } inline void set_linger_timeout_13(int32_t value) { ___linger_timeout_13 = value; } inline static int32_t get_offset_of_addressFamily_14() { return static_cast(offsetof(Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09, ___addressFamily_14)); } inline int32_t get_addressFamily_14() const { return ___addressFamily_14; } inline int32_t* get_address_of_addressFamily_14() { return &___addressFamily_14; } inline void set_addressFamily_14(int32_t value) { ___addressFamily_14 = value; } inline static int32_t get_offset_of_socketType_15() { return static_cast(offsetof(Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09, ___socketType_15)); } inline int32_t get_socketType_15() const { return ___socketType_15; } inline int32_t* get_address_of_socketType_15() { return &___socketType_15; } inline void set_socketType_15(int32_t value) { ___socketType_15 = value; } inline static int32_t get_offset_of_protocolType_16() { return static_cast(offsetof(Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09, ___protocolType_16)); } inline int32_t get_protocolType_16() const { return ___protocolType_16; } inline int32_t* get_address_of_protocolType_16() { return &___protocolType_16; } inline void set_protocolType_16(int32_t value) { ___protocolType_16 = value; } inline static int32_t get_offset_of_m_Handle_17() { return static_cast(offsetof(Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09, ___m_Handle_17)); } inline SafeSocketHandle_t5050671179FB886DA1763A0E4EFB3FCD072363C9 * get_m_Handle_17() const { return ___m_Handle_17; } inline SafeSocketHandle_t5050671179FB886DA1763A0E4EFB3FCD072363C9 ** get_address_of_m_Handle_17() { return &___m_Handle_17; } inline void set_m_Handle_17(SafeSocketHandle_t5050671179FB886DA1763A0E4EFB3FCD072363C9 * value) { ___m_Handle_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Handle_17), (void*)value); } inline static int32_t get_offset_of_seed_endpoint_18() { return static_cast(offsetof(Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09, ___seed_endpoint_18)); } inline EndPoint_t18D4AE8D03090A2B262136E59F95CE61418C34DA * get_seed_endpoint_18() const { return ___seed_endpoint_18; } inline EndPoint_t18D4AE8D03090A2B262136E59F95CE61418C34DA ** get_address_of_seed_endpoint_18() { return &___seed_endpoint_18; } inline void set_seed_endpoint_18(EndPoint_t18D4AE8D03090A2B262136E59F95CE61418C34DA * value) { ___seed_endpoint_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___seed_endpoint_18), (void*)value); } inline static int32_t get_offset_of_ReadSem_19() { return static_cast(offsetof(Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09, ___ReadSem_19)); } inline SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385 * get_ReadSem_19() const { return ___ReadSem_19; } inline SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385 ** get_address_of_ReadSem_19() { return &___ReadSem_19; } inline void set_ReadSem_19(SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385 * value) { ___ReadSem_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___ReadSem_19), (void*)value); } inline static int32_t get_offset_of_WriteSem_20() { return static_cast(offsetof(Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09, ___WriteSem_20)); } inline SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385 * get_WriteSem_20() const { return ___WriteSem_20; } inline SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385 ** get_address_of_WriteSem_20() { return &___WriteSem_20; } inline void set_WriteSem_20(SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385 * value) { ___WriteSem_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___WriteSem_20), (void*)value); } inline static int32_t get_offset_of_is_blocking_21() { return static_cast(offsetof(Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09, ___is_blocking_21)); } inline bool get_is_blocking_21() const { return ___is_blocking_21; } inline bool* get_address_of_is_blocking_21() { return &___is_blocking_21; } inline void set_is_blocking_21(bool value) { ___is_blocking_21 = value; } inline static int32_t get_offset_of_is_bound_22() { return static_cast(offsetof(Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09, ___is_bound_22)); } inline bool get_is_bound_22() const { return ___is_bound_22; } inline bool* get_address_of_is_bound_22() { return &___is_bound_22; } inline void set_is_bound_22(bool value) { ___is_bound_22 = value; } inline static int32_t get_offset_of_is_connected_23() { return static_cast(offsetof(Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09, ___is_connected_23)); } inline bool get_is_connected_23() const { return ___is_connected_23; } inline bool* get_address_of_is_connected_23() { return &___is_connected_23; } inline void set_is_connected_23(bool value) { ___is_connected_23 = value; } inline static int32_t get_offset_of_m_IntCleanedUp_24() { return static_cast(offsetof(Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09, ___m_IntCleanedUp_24)); } inline int32_t get_m_IntCleanedUp_24() const { return ___m_IntCleanedUp_24; } inline int32_t* get_address_of_m_IntCleanedUp_24() { return &___m_IntCleanedUp_24; } inline void set_m_IntCleanedUp_24(int32_t value) { ___m_IntCleanedUp_24 = value; } inline static int32_t get_offset_of_connect_in_progress_25() { return static_cast(offsetof(Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09, ___connect_in_progress_25)); } inline bool get_connect_in_progress_25() const { return ___connect_in_progress_25; } inline bool* get_address_of_connect_in_progress_25() { return &___connect_in_progress_25; } inline void set_connect_in_progress_25(bool value) { ___connect_in_progress_25 = value; } inline static int32_t get_offset_of_ID_26() { return static_cast(offsetof(Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09, ___ID_26)); } inline int32_t get_ID_26() const { return ___ID_26; } inline int32_t* get_address_of_ID_26() { return &___ID_26; } inline void set_ID_26(int32_t value) { ___ID_26 = value; } }; struct Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09_StaticFields { public: // System.Object System.Net.Sockets.Socket::s_InternalSyncObject RuntimeObject * ___s_InternalSyncObject_0; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Net.Sockets.Socket::s_SupportsIPv4 bool ___s_SupportsIPv4_1; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Net.Sockets.Socket::s_SupportsIPv6 bool ___s_SupportsIPv6_2; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Net.Sockets.Socket::s_OSSupportsIPv6 bool ___s_OSSupportsIPv6_3; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Net.Sockets.Socket::s_Initialized bool ___s_Initialized_4; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Net.Sockets.Socket::s_LoggingEnabled bool ___s_LoggingEnabled_5; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Net.Sockets.Socket::s_PerfCountersEnabled bool ___s_PerfCountersEnabled_6; // System.AsyncCallback System.Net.Sockets.Socket::AcceptAsyncCallback AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___AcceptAsyncCallback_27; // System.IOAsyncCallback System.Net.Sockets.Socket::BeginAcceptCallback IOAsyncCallback_tB965FCE75DB2822B784F36808F71EA447D5F977E * ___BeginAcceptCallback_28; // System.IOAsyncCallback System.Net.Sockets.Socket::BeginAcceptReceiveCallback IOAsyncCallback_tB965FCE75DB2822B784F36808F71EA447D5F977E * ___BeginAcceptReceiveCallback_29; // System.AsyncCallback System.Net.Sockets.Socket::ConnectAsyncCallback AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___ConnectAsyncCallback_30; // System.IOAsyncCallback System.Net.Sockets.Socket::BeginConnectCallback IOAsyncCallback_tB965FCE75DB2822B784F36808F71EA447D5F977E * ___BeginConnectCallback_31; // System.AsyncCallback System.Net.Sockets.Socket::DisconnectAsyncCallback AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___DisconnectAsyncCallback_32; // System.IOAsyncCallback System.Net.Sockets.Socket::BeginDisconnectCallback IOAsyncCallback_tB965FCE75DB2822B784F36808F71EA447D5F977E * ___BeginDisconnectCallback_33; // System.AsyncCallback System.Net.Sockets.Socket::ReceiveAsyncCallback AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___ReceiveAsyncCallback_34; // System.IOAsyncCallback System.Net.Sockets.Socket::BeginReceiveCallback IOAsyncCallback_tB965FCE75DB2822B784F36808F71EA447D5F977E * ___BeginReceiveCallback_35; // System.IOAsyncCallback System.Net.Sockets.Socket::BeginReceiveGenericCallback IOAsyncCallback_tB965FCE75DB2822B784F36808F71EA447D5F977E * ___BeginReceiveGenericCallback_36; // System.AsyncCallback System.Net.Sockets.Socket::ReceiveFromAsyncCallback AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___ReceiveFromAsyncCallback_37; // System.IOAsyncCallback System.Net.Sockets.Socket::BeginReceiveFromCallback IOAsyncCallback_tB965FCE75DB2822B784F36808F71EA447D5F977E * ___BeginReceiveFromCallback_38; // System.AsyncCallback System.Net.Sockets.Socket::SendAsyncCallback AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___SendAsyncCallback_39; // System.IOAsyncCallback System.Net.Sockets.Socket::BeginSendGenericCallback IOAsyncCallback_tB965FCE75DB2822B784F36808F71EA447D5F977E * ___BeginSendGenericCallback_40; // System.AsyncCallback System.Net.Sockets.Socket::SendToAsyncCallback AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___SendToAsyncCallback_41; public: inline static int32_t get_offset_of_s_InternalSyncObject_0() { return static_cast(offsetof(Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09_StaticFields, ___s_InternalSyncObject_0)); } inline RuntimeObject * get_s_InternalSyncObject_0() const { return ___s_InternalSyncObject_0; } inline RuntimeObject ** get_address_of_s_InternalSyncObject_0() { return &___s_InternalSyncObject_0; } inline void set_s_InternalSyncObject_0(RuntimeObject * value) { ___s_InternalSyncObject_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_InternalSyncObject_0), (void*)value); } inline static int32_t get_offset_of_s_SupportsIPv4_1() { return static_cast(offsetof(Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09_StaticFields, ___s_SupportsIPv4_1)); } inline bool get_s_SupportsIPv4_1() const { return ___s_SupportsIPv4_1; } inline bool* get_address_of_s_SupportsIPv4_1() { return &___s_SupportsIPv4_1; } inline void set_s_SupportsIPv4_1(bool value) { ___s_SupportsIPv4_1 = value; } inline static int32_t get_offset_of_s_SupportsIPv6_2() { return static_cast(offsetof(Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09_StaticFields, ___s_SupportsIPv6_2)); } inline bool get_s_SupportsIPv6_2() const { return ___s_SupportsIPv6_2; } inline bool* get_address_of_s_SupportsIPv6_2() { return &___s_SupportsIPv6_2; } inline void set_s_SupportsIPv6_2(bool value) { ___s_SupportsIPv6_2 = value; } inline static int32_t get_offset_of_s_OSSupportsIPv6_3() { return static_cast(offsetof(Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09_StaticFields, ___s_OSSupportsIPv6_3)); } inline bool get_s_OSSupportsIPv6_3() const { return ___s_OSSupportsIPv6_3; } inline bool* get_address_of_s_OSSupportsIPv6_3() { return &___s_OSSupportsIPv6_3; } inline void set_s_OSSupportsIPv6_3(bool value) { ___s_OSSupportsIPv6_3 = value; } inline static int32_t get_offset_of_s_Initialized_4() { return static_cast(offsetof(Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09_StaticFields, ___s_Initialized_4)); } inline bool get_s_Initialized_4() const { return ___s_Initialized_4; } inline bool* get_address_of_s_Initialized_4() { return &___s_Initialized_4; } inline void set_s_Initialized_4(bool value) { ___s_Initialized_4 = value; } inline static int32_t get_offset_of_s_LoggingEnabled_5() { return static_cast(offsetof(Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09_StaticFields, ___s_LoggingEnabled_5)); } inline bool get_s_LoggingEnabled_5() const { return ___s_LoggingEnabled_5; } inline bool* get_address_of_s_LoggingEnabled_5() { return &___s_LoggingEnabled_5; } inline void set_s_LoggingEnabled_5(bool value) { ___s_LoggingEnabled_5 = value; } inline static int32_t get_offset_of_s_PerfCountersEnabled_6() { return static_cast(offsetof(Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09_StaticFields, ___s_PerfCountersEnabled_6)); } inline bool get_s_PerfCountersEnabled_6() const { return ___s_PerfCountersEnabled_6; } inline bool* get_address_of_s_PerfCountersEnabled_6() { return &___s_PerfCountersEnabled_6; } inline void set_s_PerfCountersEnabled_6(bool value) { ___s_PerfCountersEnabled_6 = value; } inline static int32_t get_offset_of_AcceptAsyncCallback_27() { return static_cast(offsetof(Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09_StaticFields, ___AcceptAsyncCallback_27)); } inline AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * get_AcceptAsyncCallback_27() const { return ___AcceptAsyncCallback_27; } inline AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA ** get_address_of_AcceptAsyncCallback_27() { return &___AcceptAsyncCallback_27; } inline void set_AcceptAsyncCallback_27(AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * value) { ___AcceptAsyncCallback_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___AcceptAsyncCallback_27), (void*)value); } inline static int32_t get_offset_of_BeginAcceptCallback_28() { return static_cast(offsetof(Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09_StaticFields, ___BeginAcceptCallback_28)); } inline IOAsyncCallback_tB965FCE75DB2822B784F36808F71EA447D5F977E * get_BeginAcceptCallback_28() const { return ___BeginAcceptCallback_28; } inline IOAsyncCallback_tB965FCE75DB2822B784F36808F71EA447D5F977E ** get_address_of_BeginAcceptCallback_28() { return &___BeginAcceptCallback_28; } inline void set_BeginAcceptCallback_28(IOAsyncCallback_tB965FCE75DB2822B784F36808F71EA447D5F977E * value) { ___BeginAcceptCallback_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___BeginAcceptCallback_28), (void*)value); } inline static int32_t get_offset_of_BeginAcceptReceiveCallback_29() { return static_cast(offsetof(Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09_StaticFields, ___BeginAcceptReceiveCallback_29)); } inline IOAsyncCallback_tB965FCE75DB2822B784F36808F71EA447D5F977E * get_BeginAcceptReceiveCallback_29() const { return ___BeginAcceptReceiveCallback_29; } inline IOAsyncCallback_tB965FCE75DB2822B784F36808F71EA447D5F977E ** get_address_of_BeginAcceptReceiveCallback_29() { return &___BeginAcceptReceiveCallback_29; } inline void set_BeginAcceptReceiveCallback_29(IOAsyncCallback_tB965FCE75DB2822B784F36808F71EA447D5F977E * value) { ___BeginAcceptReceiveCallback_29 = value; Il2CppCodeGenWriteBarrier((void**)(&___BeginAcceptReceiveCallback_29), (void*)value); } inline static int32_t get_offset_of_ConnectAsyncCallback_30() { return static_cast(offsetof(Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09_StaticFields, ___ConnectAsyncCallback_30)); } inline AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * get_ConnectAsyncCallback_30() const { return ___ConnectAsyncCallback_30; } inline AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA ** get_address_of_ConnectAsyncCallback_30() { return &___ConnectAsyncCallback_30; } inline void set_ConnectAsyncCallback_30(AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * value) { ___ConnectAsyncCallback_30 = value; Il2CppCodeGenWriteBarrier((void**)(&___ConnectAsyncCallback_30), (void*)value); } inline static int32_t get_offset_of_BeginConnectCallback_31() { return static_cast(offsetof(Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09_StaticFields, ___BeginConnectCallback_31)); } inline IOAsyncCallback_tB965FCE75DB2822B784F36808F71EA447D5F977E * get_BeginConnectCallback_31() const { return ___BeginConnectCallback_31; } inline IOAsyncCallback_tB965FCE75DB2822B784F36808F71EA447D5F977E ** get_address_of_BeginConnectCallback_31() { return &___BeginConnectCallback_31; } inline void set_BeginConnectCallback_31(IOAsyncCallback_tB965FCE75DB2822B784F36808F71EA447D5F977E * value) { ___BeginConnectCallback_31 = value; Il2CppCodeGenWriteBarrier((void**)(&___BeginConnectCallback_31), (void*)value); } inline static int32_t get_offset_of_DisconnectAsyncCallback_32() { return static_cast(offsetof(Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09_StaticFields, ___DisconnectAsyncCallback_32)); } inline AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * get_DisconnectAsyncCallback_32() const { return ___DisconnectAsyncCallback_32; } inline AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA ** get_address_of_DisconnectAsyncCallback_32() { return &___DisconnectAsyncCallback_32; } inline void set_DisconnectAsyncCallback_32(AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * value) { ___DisconnectAsyncCallback_32 = value; Il2CppCodeGenWriteBarrier((void**)(&___DisconnectAsyncCallback_32), (void*)value); } inline static int32_t get_offset_of_BeginDisconnectCallback_33() { return static_cast(offsetof(Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09_StaticFields, ___BeginDisconnectCallback_33)); } inline IOAsyncCallback_tB965FCE75DB2822B784F36808F71EA447D5F977E * get_BeginDisconnectCallback_33() const { return ___BeginDisconnectCallback_33; } inline IOAsyncCallback_tB965FCE75DB2822B784F36808F71EA447D5F977E ** get_address_of_BeginDisconnectCallback_33() { return &___BeginDisconnectCallback_33; } inline void set_BeginDisconnectCallback_33(IOAsyncCallback_tB965FCE75DB2822B784F36808F71EA447D5F977E * value) { ___BeginDisconnectCallback_33 = value; Il2CppCodeGenWriteBarrier((void**)(&___BeginDisconnectCallback_33), (void*)value); } inline static int32_t get_offset_of_ReceiveAsyncCallback_34() { return static_cast(offsetof(Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09_StaticFields, ___ReceiveAsyncCallback_34)); } inline AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * get_ReceiveAsyncCallback_34() const { return ___ReceiveAsyncCallback_34; } inline AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA ** get_address_of_ReceiveAsyncCallback_34() { return &___ReceiveAsyncCallback_34; } inline void set_ReceiveAsyncCallback_34(AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * value) { ___ReceiveAsyncCallback_34 = value; Il2CppCodeGenWriteBarrier((void**)(&___ReceiveAsyncCallback_34), (void*)value); } inline static int32_t get_offset_of_BeginReceiveCallback_35() { return static_cast(offsetof(Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09_StaticFields, ___BeginReceiveCallback_35)); } inline IOAsyncCallback_tB965FCE75DB2822B784F36808F71EA447D5F977E * get_BeginReceiveCallback_35() const { return ___BeginReceiveCallback_35; } inline IOAsyncCallback_tB965FCE75DB2822B784F36808F71EA447D5F977E ** get_address_of_BeginReceiveCallback_35() { return &___BeginReceiveCallback_35; } inline void set_BeginReceiveCallback_35(IOAsyncCallback_tB965FCE75DB2822B784F36808F71EA447D5F977E * value) { ___BeginReceiveCallback_35 = value; Il2CppCodeGenWriteBarrier((void**)(&___BeginReceiveCallback_35), (void*)value); } inline static int32_t get_offset_of_BeginReceiveGenericCallback_36() { return static_cast(offsetof(Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09_StaticFields, ___BeginReceiveGenericCallback_36)); } inline IOAsyncCallback_tB965FCE75DB2822B784F36808F71EA447D5F977E * get_BeginReceiveGenericCallback_36() const { return ___BeginReceiveGenericCallback_36; } inline IOAsyncCallback_tB965FCE75DB2822B784F36808F71EA447D5F977E ** get_address_of_BeginReceiveGenericCallback_36() { return &___BeginReceiveGenericCallback_36; } inline void set_BeginReceiveGenericCallback_36(IOAsyncCallback_tB965FCE75DB2822B784F36808F71EA447D5F977E * value) { ___BeginReceiveGenericCallback_36 = value; Il2CppCodeGenWriteBarrier((void**)(&___BeginReceiveGenericCallback_36), (void*)value); } inline static int32_t get_offset_of_ReceiveFromAsyncCallback_37() { return static_cast(offsetof(Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09_StaticFields, ___ReceiveFromAsyncCallback_37)); } inline AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * get_ReceiveFromAsyncCallback_37() const { return ___ReceiveFromAsyncCallback_37; } inline AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA ** get_address_of_ReceiveFromAsyncCallback_37() { return &___ReceiveFromAsyncCallback_37; } inline void set_ReceiveFromAsyncCallback_37(AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * value) { ___ReceiveFromAsyncCallback_37 = value; Il2CppCodeGenWriteBarrier((void**)(&___ReceiveFromAsyncCallback_37), (void*)value); } inline static int32_t get_offset_of_BeginReceiveFromCallback_38() { return static_cast(offsetof(Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09_StaticFields, ___BeginReceiveFromCallback_38)); } inline IOAsyncCallback_tB965FCE75DB2822B784F36808F71EA447D5F977E * get_BeginReceiveFromCallback_38() const { return ___BeginReceiveFromCallback_38; } inline IOAsyncCallback_tB965FCE75DB2822B784F36808F71EA447D5F977E ** get_address_of_BeginReceiveFromCallback_38() { return &___BeginReceiveFromCallback_38; } inline void set_BeginReceiveFromCallback_38(IOAsyncCallback_tB965FCE75DB2822B784F36808F71EA447D5F977E * value) { ___BeginReceiveFromCallback_38 = value; Il2CppCodeGenWriteBarrier((void**)(&___BeginReceiveFromCallback_38), (void*)value); } inline static int32_t get_offset_of_SendAsyncCallback_39() { return static_cast(offsetof(Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09_StaticFields, ___SendAsyncCallback_39)); } inline AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * get_SendAsyncCallback_39() const { return ___SendAsyncCallback_39; } inline AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA ** get_address_of_SendAsyncCallback_39() { return &___SendAsyncCallback_39; } inline void set_SendAsyncCallback_39(AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * value) { ___SendAsyncCallback_39 = value; Il2CppCodeGenWriteBarrier((void**)(&___SendAsyncCallback_39), (void*)value); } inline static int32_t get_offset_of_BeginSendGenericCallback_40() { return static_cast(offsetof(Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09_StaticFields, ___BeginSendGenericCallback_40)); } inline IOAsyncCallback_tB965FCE75DB2822B784F36808F71EA447D5F977E * get_BeginSendGenericCallback_40() const { return ___BeginSendGenericCallback_40; } inline IOAsyncCallback_tB965FCE75DB2822B784F36808F71EA447D5F977E ** get_address_of_BeginSendGenericCallback_40() { return &___BeginSendGenericCallback_40; } inline void set_BeginSendGenericCallback_40(IOAsyncCallback_tB965FCE75DB2822B784F36808F71EA447D5F977E * value) { ___BeginSendGenericCallback_40 = value; Il2CppCodeGenWriteBarrier((void**)(&___BeginSendGenericCallback_40), (void*)value); } inline static int32_t get_offset_of_SendToAsyncCallback_41() { return static_cast(offsetof(Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09_StaticFields, ___SendToAsyncCallback_41)); } inline AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * get_SendToAsyncCallback_41() const { return ___SendToAsyncCallback_41; } inline AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA ** get_address_of_SendToAsyncCallback_41() { return &___SendToAsyncCallback_41; } inline void set_SendToAsyncCallback_41(AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * value) { ___SendToAsyncCallback_41 = value; Il2CppCodeGenWriteBarrier((void**)(&___SendToAsyncCallback_41), (void*)value); } }; // UnityEngine.Sprite struct Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A { public: public: }; // System.Net.Security.SslStream struct SslStream_t8C3E1BFCC63C3FC9A4684697FFBBA81B843D5F49 : public AuthenticatedStream_t792DA994D6AAC4A102749A9530E95D8F049BF608 { public: // Mono.Security.Interface.MonoTlsProvider System.Net.Security.SslStream::provider MonoTlsProvider_tBE72637BEDBD1516A1BC30D94F7159B7289CF0D7 * ___provider_7; // Mono.Security.Interface.IMonoSslStream System.Net.Security.SslStream::impl RuntimeObject* ___impl_8; public: inline static int32_t get_offset_of_provider_7() { return static_cast(offsetof(SslStream_t8C3E1BFCC63C3FC9A4684697FFBBA81B843D5F49, ___provider_7)); } inline MonoTlsProvider_tBE72637BEDBD1516A1BC30D94F7159B7289CF0D7 * get_provider_7() const { return ___provider_7; } inline MonoTlsProvider_tBE72637BEDBD1516A1BC30D94F7159B7289CF0D7 ** get_address_of_provider_7() { return &___provider_7; } inline void set_provider_7(MonoTlsProvider_tBE72637BEDBD1516A1BC30D94F7159B7289CF0D7 * value) { ___provider_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___provider_7), (void*)value); } inline static int32_t get_offset_of_impl_8() { return static_cast(offsetof(SslStream_t8C3E1BFCC63C3FC9A4684697FFBBA81B843D5F49, ___impl_8)); } inline RuntimeObject* get_impl_8() const { return ___impl_8; } inline RuntimeObject** get_address_of_impl_8() { return &___impl_8; } inline void set_impl_8(RuntimeObject* value) { ___impl_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___impl_8), (void*)value); } }; // System.SystemException struct SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 : public Exception_t { public: public: }; // BestHTTP.PlatformSupport.TcpClient.General.TcpClient struct TcpClient_t31BAC3FC66E2985035A039820F08B7F64DC59075 : public RuntimeObject { public: // System.Net.Sockets.NetworkStream BestHTTP.PlatformSupport.TcpClient.General.TcpClient::stream NetworkStream_t160A2538024FE3EC707872435D01F1C20B3B1A48 * ___stream_0; // System.Boolean BestHTTP.PlatformSupport.TcpClient.General.TcpClient::active bool ___active_1; // System.Net.Sockets.Socket BestHTTP.PlatformSupport.TcpClient.General.TcpClient::client Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09 * ___client_2; // System.Boolean BestHTTP.PlatformSupport.TcpClient.General.TcpClient::disposed bool ___disposed_3; // BestHTTP.PlatformSupport.TcpClient.General.TcpClient/Properties BestHTTP.PlatformSupport.TcpClient.General.TcpClient::values uint32_t ___values_4; // System.Int32 BestHTTP.PlatformSupport.TcpClient.General.TcpClient::recv_timeout int32_t ___recv_timeout_5; // System.Int32 BestHTTP.PlatformSupport.TcpClient.General.TcpClient::send_timeout int32_t ___send_timeout_6; // System.Int32 BestHTTP.PlatformSupport.TcpClient.General.TcpClient::recv_buffer_size int32_t ___recv_buffer_size_7; // System.Int32 BestHTTP.PlatformSupport.TcpClient.General.TcpClient::send_buffer_size int32_t ___send_buffer_size_8; // System.Net.Sockets.LingerOption BestHTTP.PlatformSupport.TcpClient.General.TcpClient::linger_state LingerOption_t4E191E63AB49943D401B71B3E7830E6586CE0E34 * ___linger_state_9; // System.Boolean BestHTTP.PlatformSupport.TcpClient.General.TcpClient::no_delay bool ___no_delay_10; // System.TimeSpan BestHTTP.PlatformSupport.TcpClient.General.TcpClient::k__BackingField TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___U3CConnectTimeoutU3Ek__BackingField_11; public: inline static int32_t get_offset_of_stream_0() { return static_cast(offsetof(TcpClient_t31BAC3FC66E2985035A039820F08B7F64DC59075, ___stream_0)); } inline NetworkStream_t160A2538024FE3EC707872435D01F1C20B3B1A48 * get_stream_0() const { return ___stream_0; } inline NetworkStream_t160A2538024FE3EC707872435D01F1C20B3B1A48 ** get_address_of_stream_0() { return &___stream_0; } inline void set_stream_0(NetworkStream_t160A2538024FE3EC707872435D01F1C20B3B1A48 * value) { ___stream_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___stream_0), (void*)value); } inline static int32_t get_offset_of_active_1() { return static_cast(offsetof(TcpClient_t31BAC3FC66E2985035A039820F08B7F64DC59075, ___active_1)); } inline bool get_active_1() const { return ___active_1; } inline bool* get_address_of_active_1() { return &___active_1; } inline void set_active_1(bool value) { ___active_1 = value; } inline static int32_t get_offset_of_client_2() { return static_cast(offsetof(TcpClient_t31BAC3FC66E2985035A039820F08B7F64DC59075, ___client_2)); } inline Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09 * get_client_2() const { return ___client_2; } inline Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09 ** get_address_of_client_2() { return &___client_2; } inline void set_client_2(Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09 * value) { ___client_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___client_2), (void*)value); } inline static int32_t get_offset_of_disposed_3() { return static_cast(offsetof(TcpClient_t31BAC3FC66E2985035A039820F08B7F64DC59075, ___disposed_3)); } inline bool get_disposed_3() const { return ___disposed_3; } inline bool* get_address_of_disposed_3() { return &___disposed_3; } inline void set_disposed_3(bool value) { ___disposed_3 = value; } inline static int32_t get_offset_of_values_4() { return static_cast(offsetof(TcpClient_t31BAC3FC66E2985035A039820F08B7F64DC59075, ___values_4)); } inline uint32_t get_values_4() const { return ___values_4; } inline uint32_t* get_address_of_values_4() { return &___values_4; } inline void set_values_4(uint32_t value) { ___values_4 = value; } inline static int32_t get_offset_of_recv_timeout_5() { return static_cast(offsetof(TcpClient_t31BAC3FC66E2985035A039820F08B7F64DC59075, ___recv_timeout_5)); } inline int32_t get_recv_timeout_5() const { return ___recv_timeout_5; } inline int32_t* get_address_of_recv_timeout_5() { return &___recv_timeout_5; } inline void set_recv_timeout_5(int32_t value) { ___recv_timeout_5 = value; } inline static int32_t get_offset_of_send_timeout_6() { return static_cast(offsetof(TcpClient_t31BAC3FC66E2985035A039820F08B7F64DC59075, ___send_timeout_6)); } inline int32_t get_send_timeout_6() const { return ___send_timeout_6; } inline int32_t* get_address_of_send_timeout_6() { return &___send_timeout_6; } inline void set_send_timeout_6(int32_t value) { ___send_timeout_6 = value; } inline static int32_t get_offset_of_recv_buffer_size_7() { return static_cast(offsetof(TcpClient_t31BAC3FC66E2985035A039820F08B7F64DC59075, ___recv_buffer_size_7)); } inline int32_t get_recv_buffer_size_7() const { return ___recv_buffer_size_7; } inline int32_t* get_address_of_recv_buffer_size_7() { return &___recv_buffer_size_7; } inline void set_recv_buffer_size_7(int32_t value) { ___recv_buffer_size_7 = value; } inline static int32_t get_offset_of_send_buffer_size_8() { return static_cast(offsetof(TcpClient_t31BAC3FC66E2985035A039820F08B7F64DC59075, ___send_buffer_size_8)); } inline int32_t get_send_buffer_size_8() const { return ___send_buffer_size_8; } inline int32_t* get_address_of_send_buffer_size_8() { return &___send_buffer_size_8; } inline void set_send_buffer_size_8(int32_t value) { ___send_buffer_size_8 = value; } inline static int32_t get_offset_of_linger_state_9() { return static_cast(offsetof(TcpClient_t31BAC3FC66E2985035A039820F08B7F64DC59075, ___linger_state_9)); } inline LingerOption_t4E191E63AB49943D401B71B3E7830E6586CE0E34 * get_linger_state_9() const { return ___linger_state_9; } inline LingerOption_t4E191E63AB49943D401B71B3E7830E6586CE0E34 ** get_address_of_linger_state_9() { return &___linger_state_9; } inline void set_linger_state_9(LingerOption_t4E191E63AB49943D401B71B3E7830E6586CE0E34 * value) { ___linger_state_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___linger_state_9), (void*)value); } inline static int32_t get_offset_of_no_delay_10() { return static_cast(offsetof(TcpClient_t31BAC3FC66E2985035A039820F08B7F64DC59075, ___no_delay_10)); } inline bool get_no_delay_10() const { return ___no_delay_10; } inline bool* get_address_of_no_delay_10() { return &___no_delay_10; } inline void set_no_delay_10(bool value) { ___no_delay_10 = value; } inline static int32_t get_offset_of_U3CConnectTimeoutU3Ek__BackingField_11() { return static_cast(offsetof(TcpClient_t31BAC3FC66E2985035A039820F08B7F64DC59075, ___U3CConnectTimeoutU3Ek__BackingField_11)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_U3CConnectTimeoutU3Ek__BackingField_11() const { return ___U3CConnectTimeoutU3Ek__BackingField_11; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_U3CConnectTimeoutU3Ek__BackingField_11() { return &___U3CConnectTimeoutU3Ek__BackingField_11; } inline void set_U3CConnectTimeoutU3Ek__BackingField_11(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___U3CConnectTimeoutU3Ek__BackingField_11 = value; } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol struct TlsClientProtocol_t699CCD2E87EC8483837B996FB590D11781975967 : public TlsProtocol_t0AF7CC5A58D00FFFD3D400269F4EFEF8E0A0AF69 { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClient BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol::mTlsClient RuntimeObject* ___mTlsClient_49; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientContextImpl BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol::mTlsClientContext TlsClientContextImpl_t48A01699A13F38CB5BB4D48327DFCE056C9647CF * ___mTlsClientContext_50; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol::mSelectedSessionID ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___mSelectedSessionID_51; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsKeyExchange BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol::mKeyExchange RuntimeObject* ___mKeyExchange_52; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsAuthentication BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol::mAuthentication RuntimeObject* ___mAuthentication_53; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.CertificateStatus BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol::mCertificateStatus CertificateStatus_t51F07730DE508AD3EE89644D00A5B214706D27A3 * ___mCertificateStatus_54; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.CertificateRequest BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol::mCertificateRequest CertificateRequest_t563CAFA8CE312838EF79883A288ACC021302D620 * ___mCertificateRequest_55; public: inline static int32_t get_offset_of_mTlsClient_49() { return static_cast(offsetof(TlsClientProtocol_t699CCD2E87EC8483837B996FB590D11781975967, ___mTlsClient_49)); } inline RuntimeObject* get_mTlsClient_49() const { return ___mTlsClient_49; } inline RuntimeObject** get_address_of_mTlsClient_49() { return &___mTlsClient_49; } inline void set_mTlsClient_49(RuntimeObject* value) { ___mTlsClient_49 = value; Il2CppCodeGenWriteBarrier((void**)(&___mTlsClient_49), (void*)value); } inline static int32_t get_offset_of_mTlsClientContext_50() { return static_cast(offsetof(TlsClientProtocol_t699CCD2E87EC8483837B996FB590D11781975967, ___mTlsClientContext_50)); } inline TlsClientContextImpl_t48A01699A13F38CB5BB4D48327DFCE056C9647CF * get_mTlsClientContext_50() const { return ___mTlsClientContext_50; } inline TlsClientContextImpl_t48A01699A13F38CB5BB4D48327DFCE056C9647CF ** get_address_of_mTlsClientContext_50() { return &___mTlsClientContext_50; } inline void set_mTlsClientContext_50(TlsClientContextImpl_t48A01699A13F38CB5BB4D48327DFCE056C9647CF * value) { ___mTlsClientContext_50 = value; Il2CppCodeGenWriteBarrier((void**)(&___mTlsClientContext_50), (void*)value); } inline static int32_t get_offset_of_mSelectedSessionID_51() { return static_cast(offsetof(TlsClientProtocol_t699CCD2E87EC8483837B996FB590D11781975967, ___mSelectedSessionID_51)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_mSelectedSessionID_51() const { return ___mSelectedSessionID_51; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_mSelectedSessionID_51() { return &___mSelectedSessionID_51; } inline void set_mSelectedSessionID_51(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___mSelectedSessionID_51 = value; Il2CppCodeGenWriteBarrier((void**)(&___mSelectedSessionID_51), (void*)value); } inline static int32_t get_offset_of_mKeyExchange_52() { return static_cast(offsetof(TlsClientProtocol_t699CCD2E87EC8483837B996FB590D11781975967, ___mKeyExchange_52)); } inline RuntimeObject* get_mKeyExchange_52() const { return ___mKeyExchange_52; } inline RuntimeObject** get_address_of_mKeyExchange_52() { return &___mKeyExchange_52; } inline void set_mKeyExchange_52(RuntimeObject* value) { ___mKeyExchange_52 = value; Il2CppCodeGenWriteBarrier((void**)(&___mKeyExchange_52), (void*)value); } inline static int32_t get_offset_of_mAuthentication_53() { return static_cast(offsetof(TlsClientProtocol_t699CCD2E87EC8483837B996FB590D11781975967, ___mAuthentication_53)); } inline RuntimeObject* get_mAuthentication_53() const { return ___mAuthentication_53; } inline RuntimeObject** get_address_of_mAuthentication_53() { return &___mAuthentication_53; } inline void set_mAuthentication_53(RuntimeObject* value) { ___mAuthentication_53 = value; Il2CppCodeGenWriteBarrier((void**)(&___mAuthentication_53), (void*)value); } inline static int32_t get_offset_of_mCertificateStatus_54() { return static_cast(offsetof(TlsClientProtocol_t699CCD2E87EC8483837B996FB590D11781975967, ___mCertificateStatus_54)); } inline CertificateStatus_t51F07730DE508AD3EE89644D00A5B214706D27A3 * get_mCertificateStatus_54() const { return ___mCertificateStatus_54; } inline CertificateStatus_t51F07730DE508AD3EE89644D00A5B214706D27A3 ** get_address_of_mCertificateStatus_54() { return &___mCertificateStatus_54; } inline void set_mCertificateStatus_54(CertificateStatus_t51F07730DE508AD3EE89644D00A5B214706D27A3 * value) { ___mCertificateStatus_54 = value; Il2CppCodeGenWriteBarrier((void**)(&___mCertificateStatus_54), (void*)value); } inline static int32_t get_offset_of_mCertificateRequest_55() { return static_cast(offsetof(TlsClientProtocol_t699CCD2E87EC8483837B996FB590D11781975967, ___mCertificateRequest_55)); } inline CertificateRequest_t563CAFA8CE312838EF79883A288ACC021302D620 * get_mCertificateRequest_55() const { return ___mCertificateRequest_55; } inline CertificateRequest_t563CAFA8CE312838EF79883A288ACC021302D620 ** get_address_of_mCertificateRequest_55() { return &___mCertificateRequest_55; } inline void set_mCertificateRequest_55(CertificateRequest_t563CAFA8CE312838EF79883A288ACC021302D620 * value) { ___mCertificateRequest_55 = value; Il2CppCodeGenWriteBarrier((void**)(&___mCertificateRequest_55), (void*)value); } }; // System.Type struct Type_t : public MemberInfo_t { public: // System.RuntimeTypeHandle System.Type::_impl RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 ____impl_9; public: inline static int32_t get_offset_of__impl_9() { return static_cast(offsetof(Type_t, ____impl_9)); } inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 get__impl_9() const { return ____impl_9; } inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 * get_address_of__impl_9() { return &____impl_9; } inline void set__impl_9(RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 value) { ____impl_9 = value; } }; struct Type_t_StaticFields { public: // System.Reflection.MemberFilter System.Type::FilterAttribute MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterAttribute_0; // System.Reflection.MemberFilter System.Type::FilterName MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterName_1; // System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterNameIgnoreCase_2; // System.Object System.Type::Missing RuntimeObject * ___Missing_3; // System.Char System.Type::Delimiter Il2CppChar ___Delimiter_4; // System.Type[] System.Type::EmptyTypes TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* ___EmptyTypes_5; // System.Reflection.Binder System.Type::defaultBinder Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * ___defaultBinder_6; public: inline static int32_t get_offset_of_FilterAttribute_0() { return static_cast(offsetof(Type_t_StaticFields, ___FilterAttribute_0)); } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterAttribute_0() const { return ___FilterAttribute_0; } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; } inline void set_FilterAttribute_0(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value) { ___FilterAttribute_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterAttribute_0), (void*)value); } inline static int32_t get_offset_of_FilterName_1() { return static_cast(offsetof(Type_t_StaticFields, ___FilterName_1)); } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterName_1() const { return ___FilterName_1; } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterName_1() { return &___FilterName_1; } inline void set_FilterName_1(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value) { ___FilterName_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterName_1), (void*)value); } inline static int32_t get_offset_of_FilterNameIgnoreCase_2() { return static_cast(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_2)); } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; } inline void set_FilterNameIgnoreCase_2(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value) { ___FilterNameIgnoreCase_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterNameIgnoreCase_2), (void*)value); } inline static int32_t get_offset_of_Missing_3() { return static_cast(offsetof(Type_t_StaticFields, ___Missing_3)); } inline RuntimeObject * get_Missing_3() const { return ___Missing_3; } inline RuntimeObject ** get_address_of_Missing_3() { return &___Missing_3; } inline void set_Missing_3(RuntimeObject * value) { ___Missing_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___Missing_3), (void*)value); } inline static int32_t get_offset_of_Delimiter_4() { return static_cast(offsetof(Type_t_StaticFields, ___Delimiter_4)); } inline Il2CppChar get_Delimiter_4() const { return ___Delimiter_4; } inline Il2CppChar* get_address_of_Delimiter_4() { return &___Delimiter_4; } inline void set_Delimiter_4(Il2CppChar value) { ___Delimiter_4 = value; } inline static int32_t get_offset_of_EmptyTypes_5() { return static_cast(offsetof(Type_t_StaticFields, ___EmptyTypes_5)); } inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* get_EmptyTypes_5() const { return ___EmptyTypes_5; } inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; } inline void set_EmptyTypes_5(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* value) { ___EmptyTypes_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___EmptyTypes_5), (void*)value); } inline static int32_t get_offset_of_defaultBinder_6() { return static_cast(offsetof(Type_t_StaticFields, ___defaultBinder_6)); } inline Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * get_defaultBinder_6() const { return ___defaultBinder_6; } inline Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; } inline void set_defaultBinder_6(Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * value) { ___defaultBinder_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultBinder_6), (void*)value); } }; // System.Uri struct Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 : public RuntimeObject { public: // 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_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * ___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_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * ___m_Info_21; // System.Boolean System.Uri::m_iriParsing bool ___m_iriParsing_22; public: inline static int32_t get_offset_of_m_String_16() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_String_16)); } inline String_t* get_m_String_16() const { return ___m_String_16; } inline String_t** get_address_of_m_String_16() { return &___m_String_16; } inline void set_m_String_16(String_t* value) { ___m_String_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_String_16), (void*)value); } inline static int32_t get_offset_of_m_originalUnicodeString_17() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_originalUnicodeString_17)); } inline String_t* get_m_originalUnicodeString_17() const { return ___m_originalUnicodeString_17; } inline String_t** get_address_of_m_originalUnicodeString_17() { return &___m_originalUnicodeString_17; } inline void set_m_originalUnicodeString_17(String_t* value) { ___m_originalUnicodeString_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_originalUnicodeString_17), (void*)value); } inline static int32_t get_offset_of_m_Syntax_18() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_Syntax_18)); } inline UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * get_m_Syntax_18() const { return ___m_Syntax_18; } inline UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** get_address_of_m_Syntax_18() { return &___m_Syntax_18; } inline void set_m_Syntax_18(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * value) { ___m_Syntax_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Syntax_18), (void*)value); } inline static int32_t get_offset_of_m_DnsSafeHost_19() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_DnsSafeHost_19)); } inline String_t* get_m_DnsSafeHost_19() const { return ___m_DnsSafeHost_19; } inline String_t** get_address_of_m_DnsSafeHost_19() { return &___m_DnsSafeHost_19; } inline void set_m_DnsSafeHost_19(String_t* value) { ___m_DnsSafeHost_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_DnsSafeHost_19), (void*)value); } inline static int32_t get_offset_of_m_Flags_20() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_Flags_20)); } inline uint64_t get_m_Flags_20() const { return ___m_Flags_20; } inline uint64_t* get_address_of_m_Flags_20() { return &___m_Flags_20; } inline void set_m_Flags_20(uint64_t value) { ___m_Flags_20 = value; } inline static int32_t get_offset_of_m_Info_21() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_Info_21)); } inline UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * get_m_Info_21() const { return ___m_Info_21; } inline UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 ** get_address_of_m_Info_21() { return &___m_Info_21; } inline void set_m_Info_21(UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * value) { ___m_Info_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Info_21), (void*)value); } inline static int32_t get_offset_of_m_iriParsing_22() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_iriParsing_22)); } inline bool get_m_iriParsing_22() const { return ___m_iriParsing_22; } inline bool* get_address_of_m_iriParsing_22() { return &___m_iriParsing_22; } inline void set_m_iriParsing_22(bool value) { ___m_iriParsing_22 = value; } }; struct Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields { public: // 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_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___HexLowerChars_34; // System.Char[] System.Uri::_WSchars CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ____WSchars_35; public: inline static int32_t get_offset_of_UriSchemeFile_0() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeFile_0)); } inline String_t* get_UriSchemeFile_0() const { return ___UriSchemeFile_0; } inline String_t** get_address_of_UriSchemeFile_0() { return &___UriSchemeFile_0; } inline void set_UriSchemeFile_0(String_t* value) { ___UriSchemeFile_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeFile_0), (void*)value); } inline static int32_t get_offset_of_UriSchemeFtp_1() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeFtp_1)); } inline String_t* get_UriSchemeFtp_1() const { return ___UriSchemeFtp_1; } inline String_t** get_address_of_UriSchemeFtp_1() { return &___UriSchemeFtp_1; } inline void set_UriSchemeFtp_1(String_t* value) { ___UriSchemeFtp_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeFtp_1), (void*)value); } inline static int32_t get_offset_of_UriSchemeGopher_2() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeGopher_2)); } inline String_t* get_UriSchemeGopher_2() const { return ___UriSchemeGopher_2; } inline String_t** get_address_of_UriSchemeGopher_2() { return &___UriSchemeGopher_2; } inline void set_UriSchemeGopher_2(String_t* value) { ___UriSchemeGopher_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeGopher_2), (void*)value); } inline static int32_t get_offset_of_UriSchemeHttp_3() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeHttp_3)); } inline String_t* get_UriSchemeHttp_3() const { return ___UriSchemeHttp_3; } inline String_t** get_address_of_UriSchemeHttp_3() { return &___UriSchemeHttp_3; } inline void set_UriSchemeHttp_3(String_t* value) { ___UriSchemeHttp_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeHttp_3), (void*)value); } inline static int32_t get_offset_of_UriSchemeHttps_4() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeHttps_4)); } inline String_t* get_UriSchemeHttps_4() const { return ___UriSchemeHttps_4; } inline String_t** get_address_of_UriSchemeHttps_4() { return &___UriSchemeHttps_4; } inline void set_UriSchemeHttps_4(String_t* value) { ___UriSchemeHttps_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeHttps_4), (void*)value); } inline static int32_t get_offset_of_UriSchemeWs_5() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeWs_5)); } inline String_t* get_UriSchemeWs_5() const { return ___UriSchemeWs_5; } inline String_t** get_address_of_UriSchemeWs_5() { return &___UriSchemeWs_5; } inline void set_UriSchemeWs_5(String_t* value) { ___UriSchemeWs_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeWs_5), (void*)value); } inline static int32_t get_offset_of_UriSchemeWss_6() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeWss_6)); } inline String_t* get_UriSchemeWss_6() const { return ___UriSchemeWss_6; } inline String_t** get_address_of_UriSchemeWss_6() { return &___UriSchemeWss_6; } inline void set_UriSchemeWss_6(String_t* value) { ___UriSchemeWss_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeWss_6), (void*)value); } inline static int32_t get_offset_of_UriSchemeMailto_7() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeMailto_7)); } inline String_t* get_UriSchemeMailto_7() const { return ___UriSchemeMailto_7; } inline String_t** get_address_of_UriSchemeMailto_7() { return &___UriSchemeMailto_7; } inline void set_UriSchemeMailto_7(String_t* value) { ___UriSchemeMailto_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeMailto_7), (void*)value); } inline static int32_t get_offset_of_UriSchemeNews_8() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeNews_8)); } inline String_t* get_UriSchemeNews_8() const { return ___UriSchemeNews_8; } inline String_t** get_address_of_UriSchemeNews_8() { return &___UriSchemeNews_8; } inline void set_UriSchemeNews_8(String_t* value) { ___UriSchemeNews_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeNews_8), (void*)value); } inline static int32_t get_offset_of_UriSchemeNntp_9() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeNntp_9)); } inline String_t* get_UriSchemeNntp_9() const { return ___UriSchemeNntp_9; } inline String_t** get_address_of_UriSchemeNntp_9() { return &___UriSchemeNntp_9; } inline void set_UriSchemeNntp_9(String_t* value) { ___UriSchemeNntp_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeNntp_9), (void*)value); } inline static int32_t get_offset_of_UriSchemeNetTcp_10() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeNetTcp_10)); } inline String_t* get_UriSchemeNetTcp_10() const { return ___UriSchemeNetTcp_10; } inline String_t** get_address_of_UriSchemeNetTcp_10() { return &___UriSchemeNetTcp_10; } inline void set_UriSchemeNetTcp_10(String_t* value) { ___UriSchemeNetTcp_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeNetTcp_10), (void*)value); } inline static int32_t get_offset_of_UriSchemeNetPipe_11() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeNetPipe_11)); } inline String_t* get_UriSchemeNetPipe_11() const { return ___UriSchemeNetPipe_11; } inline String_t** get_address_of_UriSchemeNetPipe_11() { return &___UriSchemeNetPipe_11; } inline void set_UriSchemeNetPipe_11(String_t* value) { ___UriSchemeNetPipe_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeNetPipe_11), (void*)value); } inline static int32_t get_offset_of_SchemeDelimiter_12() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___SchemeDelimiter_12)); } inline String_t* get_SchemeDelimiter_12() const { return ___SchemeDelimiter_12; } inline String_t** get_address_of_SchemeDelimiter_12() { return &___SchemeDelimiter_12; } inline void set_SchemeDelimiter_12(String_t* value) { ___SchemeDelimiter_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___SchemeDelimiter_12), (void*)value); } inline static int32_t get_offset_of_s_ConfigInitialized_23() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___s_ConfigInitialized_23)); } inline bool get_s_ConfigInitialized_23() const { return ___s_ConfigInitialized_23; } inline bool* get_address_of_s_ConfigInitialized_23() { return &___s_ConfigInitialized_23; } inline void set_s_ConfigInitialized_23(bool value) { ___s_ConfigInitialized_23 = value; } inline static int32_t get_offset_of_s_ConfigInitializing_24() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___s_ConfigInitializing_24)); } inline bool get_s_ConfigInitializing_24() const { return ___s_ConfigInitializing_24; } inline bool* get_address_of_s_ConfigInitializing_24() { return &___s_ConfigInitializing_24; } inline void set_s_ConfigInitializing_24(bool value) { ___s_ConfigInitializing_24 = value; } inline static int32_t get_offset_of_s_IdnScope_25() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___s_IdnScope_25)); } inline int32_t get_s_IdnScope_25() const { return ___s_IdnScope_25; } inline int32_t* get_address_of_s_IdnScope_25() { return &___s_IdnScope_25; } inline void set_s_IdnScope_25(int32_t value) { ___s_IdnScope_25 = value; } inline static int32_t get_offset_of_s_IriParsing_26() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___s_IriParsing_26)); } inline bool get_s_IriParsing_26() const { return ___s_IriParsing_26; } inline bool* get_address_of_s_IriParsing_26() { return &___s_IriParsing_26; } inline void set_s_IriParsing_26(bool value) { ___s_IriParsing_26 = value; } inline static int32_t get_offset_of_useDotNetRelativeOrAbsolute_27() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___useDotNetRelativeOrAbsolute_27)); } inline bool get_useDotNetRelativeOrAbsolute_27() const { return ___useDotNetRelativeOrAbsolute_27; } inline bool* get_address_of_useDotNetRelativeOrAbsolute_27() { return &___useDotNetRelativeOrAbsolute_27; } inline void set_useDotNetRelativeOrAbsolute_27(bool value) { ___useDotNetRelativeOrAbsolute_27 = value; } inline static int32_t get_offset_of_IsWindowsFileSystem_29() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___IsWindowsFileSystem_29)); } inline bool get_IsWindowsFileSystem_29() const { return ___IsWindowsFileSystem_29; } inline bool* get_address_of_IsWindowsFileSystem_29() { return &___IsWindowsFileSystem_29; } inline void set_IsWindowsFileSystem_29(bool value) { ___IsWindowsFileSystem_29 = value; } inline static int32_t get_offset_of_s_initLock_30() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___s_initLock_30)); } inline RuntimeObject * get_s_initLock_30() const { return ___s_initLock_30; } inline RuntimeObject ** get_address_of_s_initLock_30() { return &___s_initLock_30; } inline void set_s_initLock_30(RuntimeObject * value) { ___s_initLock_30 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_initLock_30), (void*)value); } inline static int32_t get_offset_of_HexLowerChars_34() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___HexLowerChars_34)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_HexLowerChars_34() const { return ___HexLowerChars_34; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_HexLowerChars_34() { return &___HexLowerChars_34; } inline void set_HexLowerChars_34(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___HexLowerChars_34 = value; Il2CppCodeGenWriteBarrier((void**)(&___HexLowerChars_34), (void*)value); } inline static int32_t get_offset_of__WSchars_35() { return static_cast(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ____WSchars_35)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get__WSchars_35() const { return ____WSchars_35; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of__WSchars_35() { return &____WSchars_35; } inline void set__WSchars_35(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ____WSchars_35 = value; Il2CppCodeGenWriteBarrier((void**)(&____WSchars_35), (void*)value); } }; // BestHTTP.WebSocket.Frames.WebSocketFrameReader struct WebSocketFrameReader_t58A18F681862A4A1930215AE1E08ADB8C9B8CFCB { public: // System.Byte BestHTTP.WebSocket.Frames.WebSocketFrameReader::
k__BackingField uint8_t ___U3CHeaderU3Ek__BackingField_0; // System.Boolean BestHTTP.WebSocket.Frames.WebSocketFrameReader::k__BackingField bool ___U3CIsFinalU3Ek__BackingField_1; // BestHTTP.WebSocket.Frames.WebSocketFrameTypes BestHTTP.WebSocket.Frames.WebSocketFrameReader::k__BackingField uint8_t ___U3CTypeU3Ek__BackingField_2; // System.Boolean BestHTTP.WebSocket.Frames.WebSocketFrameReader::k__BackingField bool ___U3CHasMaskU3Ek__BackingField_3; // System.UInt64 BestHTTP.WebSocket.Frames.WebSocketFrameReader::k__BackingField uint64_t ___U3CLengthU3Ek__BackingField_4; // System.Byte[] BestHTTP.WebSocket.Frames.WebSocketFrameReader::k__BackingField ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___U3CDataU3Ek__BackingField_5; // System.String BestHTTP.WebSocket.Frames.WebSocketFrameReader::k__BackingField String_t* ___U3CDataAsTextU3Ek__BackingField_6; public: inline static int32_t get_offset_of_U3CHeaderU3Ek__BackingField_0() { return static_cast(offsetof(WebSocketFrameReader_t58A18F681862A4A1930215AE1E08ADB8C9B8CFCB, ___U3CHeaderU3Ek__BackingField_0)); } inline uint8_t get_U3CHeaderU3Ek__BackingField_0() const { return ___U3CHeaderU3Ek__BackingField_0; } inline uint8_t* get_address_of_U3CHeaderU3Ek__BackingField_0() { return &___U3CHeaderU3Ek__BackingField_0; } inline void set_U3CHeaderU3Ek__BackingField_0(uint8_t value) { ___U3CHeaderU3Ek__BackingField_0 = value; } inline static int32_t get_offset_of_U3CIsFinalU3Ek__BackingField_1() { return static_cast(offsetof(WebSocketFrameReader_t58A18F681862A4A1930215AE1E08ADB8C9B8CFCB, ___U3CIsFinalU3Ek__BackingField_1)); } inline bool get_U3CIsFinalU3Ek__BackingField_1() const { return ___U3CIsFinalU3Ek__BackingField_1; } inline bool* get_address_of_U3CIsFinalU3Ek__BackingField_1() { return &___U3CIsFinalU3Ek__BackingField_1; } inline void set_U3CIsFinalU3Ek__BackingField_1(bool value) { ___U3CIsFinalU3Ek__BackingField_1 = value; } inline static int32_t get_offset_of_U3CTypeU3Ek__BackingField_2() { return static_cast(offsetof(WebSocketFrameReader_t58A18F681862A4A1930215AE1E08ADB8C9B8CFCB, ___U3CTypeU3Ek__BackingField_2)); } inline uint8_t get_U3CTypeU3Ek__BackingField_2() const { return ___U3CTypeU3Ek__BackingField_2; } inline uint8_t* get_address_of_U3CTypeU3Ek__BackingField_2() { return &___U3CTypeU3Ek__BackingField_2; } inline void set_U3CTypeU3Ek__BackingField_2(uint8_t value) { ___U3CTypeU3Ek__BackingField_2 = value; } inline static int32_t get_offset_of_U3CHasMaskU3Ek__BackingField_3() { return static_cast(offsetof(WebSocketFrameReader_t58A18F681862A4A1930215AE1E08ADB8C9B8CFCB, ___U3CHasMaskU3Ek__BackingField_3)); } inline bool get_U3CHasMaskU3Ek__BackingField_3() const { return ___U3CHasMaskU3Ek__BackingField_3; } inline bool* get_address_of_U3CHasMaskU3Ek__BackingField_3() { return &___U3CHasMaskU3Ek__BackingField_3; } inline void set_U3CHasMaskU3Ek__BackingField_3(bool value) { ___U3CHasMaskU3Ek__BackingField_3 = value; } inline static int32_t get_offset_of_U3CLengthU3Ek__BackingField_4() { return static_cast(offsetof(WebSocketFrameReader_t58A18F681862A4A1930215AE1E08ADB8C9B8CFCB, ___U3CLengthU3Ek__BackingField_4)); } inline uint64_t get_U3CLengthU3Ek__BackingField_4() const { return ___U3CLengthU3Ek__BackingField_4; } inline uint64_t* get_address_of_U3CLengthU3Ek__BackingField_4() { return &___U3CLengthU3Ek__BackingField_4; } inline void set_U3CLengthU3Ek__BackingField_4(uint64_t value) { ___U3CLengthU3Ek__BackingField_4 = value; } inline static int32_t get_offset_of_U3CDataU3Ek__BackingField_5() { return static_cast(offsetof(WebSocketFrameReader_t58A18F681862A4A1930215AE1E08ADB8C9B8CFCB, ___U3CDataU3Ek__BackingField_5)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_U3CDataU3Ek__BackingField_5() const { return ___U3CDataU3Ek__BackingField_5; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_U3CDataU3Ek__BackingField_5() { return &___U3CDataU3Ek__BackingField_5; } inline void set_U3CDataU3Ek__BackingField_5(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___U3CDataU3Ek__BackingField_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CDataU3Ek__BackingField_5), (void*)value); } inline static int32_t get_offset_of_U3CDataAsTextU3Ek__BackingField_6() { return static_cast(offsetof(WebSocketFrameReader_t58A18F681862A4A1930215AE1E08ADB8C9B8CFCB, ___U3CDataAsTextU3Ek__BackingField_6)); } inline String_t* get_U3CDataAsTextU3Ek__BackingField_6() const { return ___U3CDataAsTextU3Ek__BackingField_6; } inline String_t** get_address_of_U3CDataAsTextU3Ek__BackingField_6() { return &___U3CDataAsTextU3Ek__BackingField_6; } inline void set_U3CDataAsTextU3Ek__BackingField_6(String_t* value) { ___U3CDataAsTextU3Ek__BackingField_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CDataAsTextU3Ek__BackingField_6), (void*)value); } }; // Native definition for P/Invoke marshalling of BestHTTP.WebSocket.Frames.WebSocketFrameReader struct WebSocketFrameReader_t58A18F681862A4A1930215AE1E08ADB8C9B8CFCB_marshaled_pinvoke { uint8_t ___U3CHeaderU3Ek__BackingField_0; int32_t ___U3CIsFinalU3Ek__BackingField_1; uint8_t ___U3CTypeU3Ek__BackingField_2; int32_t ___U3CHasMaskU3Ek__BackingField_3; uint64_t ___U3CLengthU3Ek__BackingField_4; Il2CppSafeArray/*NONE*/* ___U3CDataU3Ek__BackingField_5; char* ___U3CDataAsTextU3Ek__BackingField_6; }; // Native definition for COM marshalling of BestHTTP.WebSocket.Frames.WebSocketFrameReader struct WebSocketFrameReader_t58A18F681862A4A1930215AE1E08ADB8C9B8CFCB_marshaled_com { uint8_t ___U3CHeaderU3Ek__BackingField_0; int32_t ___U3CIsFinalU3Ek__BackingField_1; uint8_t ___U3CTypeU3Ek__BackingField_2; int32_t ___U3CHasMaskU3Ek__BackingField_3; uint64_t ___U3CLengthU3Ek__BackingField_4; Il2CppSafeArray/*NONE*/* ___U3CDataU3Ek__BackingField_5; Il2CppChar* ___U3CDataAsTextU3Ek__BackingField_6; }; // System.Action`1 struct Action_1_t0F808BECFC00C2BA783741BFBB1E452E1850A394 : public MulticastDelegate_t { public: public: }; // System.Action`1 struct Action_1_t09C12AA7E5E85A97B5B1F128A642D012DF05E10F : public MulticastDelegate_t { public: public: }; // System.Action`1 struct Action_1_t080BA8EFA9616A494EBB4DD352BFEF943792E05B : public MulticastDelegate_t { public: public: }; // System.Action`1 struct Action_1_t41459F578D5FCF151500CBC8CF9276BDC6C984FE : public MulticastDelegate_t { public: public: }; // System.Comparison`1 struct Comparison_1_t97B2A8BC9742CE824022B71E5E5A340C030DADC4 : public MulticastDelegate_t { public: public: }; // System.Func`1 struct Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F : public MulticastDelegate_t { public: public: }; // System.Func`1 struct Func_1_t2F3325DADD1F420568A48646BFC825E9F29472B1 : public MulticastDelegate_t { public: public: }; // System.Func`2 struct Func_2_t50F598941CFDF02619DC5D52FFDBC329473C5F7B : public MulticastDelegate_t { public: public: }; // System.Func`4 struct Func_4_t0EA5243FC4B656A18B7AC7B130FD78666AA9FE84 : public MulticastDelegate_t { public: public: }; // System.Predicate`1 struct Predicate_1_t39705BC94BB4A2ECA2F5A3EF2CAA5FF6B9B99860 : public MulticastDelegate_t { public: public: }; // System.Predicate`1 struct Predicate_1_tB4F754B3E9DEE1E0D6B5EF4F2E333344DE8909B5 : public MulticastDelegate_t { public: public: }; // System.Predicate`1 struct Predicate_1_tC838A5EB8B3B9289CB9C0A2CF1806336669C565A : public MulticastDelegate_t { public: public: }; // System.Predicate`1 struct Predicate_1_t782ED4F640A61B7ACA1DD787F7C4993C746207B3 : public MulticastDelegate_t { public: public: }; // UnityEngine.Events.UnityAction`1 struct UnityAction_1_t4A1848C01D99711D0E3D235F1FDBBA96BA48B647 : public MulticastDelegate_t { public: public: }; // System.Action struct Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 : public MulticastDelegate_t { public: public: }; // System.ArgumentException struct ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: // System.String System.ArgumentException::m_paramName String_t* ___m_paramName_17; public: inline static int32_t get_offset_of_m_paramName_17() { return static_cast(offsetof(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00, ___m_paramName_17)); } inline String_t* get_m_paramName_17() const { return ___m_paramName_17; } inline String_t** get_address_of_m_paramName_17() { return &___m_paramName_17; } inline void set_m_paramName_17(String_t* value) { ___m_paramName_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_paramName_17), (void*)value); } }; // System.ArithmeticException struct ArithmeticException_t8E5F44FABC7FAE0966CBA6DE9BFD545F2660ED47 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; // System.AsyncCallback struct AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA : public MulticastDelegate_t { public: public: }; // UnityEngine.Behaviour struct Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9 : public Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 { public: public: }; // BestHTTP.FileConnection struct FileConnection_tA6431B122AA31FBDD3050A1D909840045D1B0BAA : public ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57 { public: public: }; // System.FormatException struct FormatException_t119BB207B54B4B1BC28D9B1783C4625AE23D4759 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; // BestHTTP.HTTPConnection struct HTTPConnection_t51D075C863581CF6C0E77BBABD92B87EA1F23C9A : public ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57 { public: // BestHTTP.PlatformSupport.TcpClient.General.TcpClient BestHTTP.HTTPConnection::Client TcpClient_t31BAC3FC66E2985035A039820F08B7F64DC59075 * ___Client_10; // System.IO.Stream BestHTTP.HTTPConnection::Stream Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___Stream_11; // BestHTTP.KeepAliveHeader BestHTTP.HTTPConnection::KeepAlive KeepAliveHeader_t93C1CC9FD7D51F432D9A50741F9BC0EF59166924 * ___KeepAlive_12; public: inline static int32_t get_offset_of_Client_10() { return static_cast(offsetof(HTTPConnection_t51D075C863581CF6C0E77BBABD92B87EA1F23C9A, ___Client_10)); } inline TcpClient_t31BAC3FC66E2985035A039820F08B7F64DC59075 * get_Client_10() const { return ___Client_10; } inline TcpClient_t31BAC3FC66E2985035A039820F08B7F64DC59075 ** get_address_of_Client_10() { return &___Client_10; } inline void set_Client_10(TcpClient_t31BAC3FC66E2985035A039820F08B7F64DC59075 * value) { ___Client_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___Client_10), (void*)value); } inline static int32_t get_offset_of_Stream_11() { return static_cast(offsetof(HTTPConnection_t51D075C863581CF6C0E77BBABD92B87EA1F23C9A, ___Stream_11)); } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_Stream_11() const { return ___Stream_11; } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_Stream_11() { return &___Stream_11; } inline void set_Stream_11(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value) { ___Stream_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___Stream_11), (void*)value); } inline static int32_t get_offset_of_KeepAlive_12() { return static_cast(offsetof(HTTPConnection_t51D075C863581CF6C0E77BBABD92B87EA1F23C9A, ___KeepAlive_12)); } inline KeepAliveHeader_t93C1CC9FD7D51F432D9A50741F9BC0EF59166924 * get_KeepAlive_12() const { return ___KeepAlive_12; } inline KeepAliveHeader_t93C1CC9FD7D51F432D9A50741F9BC0EF59166924 ** get_address_of_KeepAlive_12() { return &___KeepAlive_12; } inline void set_KeepAlive_12(KeepAliveHeader_t93C1CC9FD7D51F432D9A50741F9BC0EF59166924 * value) { ___KeepAlive_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___KeepAlive_12), (void*)value); } }; // BestHTTP.HTTPConnectionRecycledDelegate struct HTTPConnectionRecycledDelegate_t386301071C1322CEA345542DD58665526B1CA85A : public MulticastDelegate_t { public: public: }; // System.InvalidOperationException struct InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; // System.MemberAccessException struct MemberAccessException_tD623E47056C7D98D56B63B4B954D4E5E128A30FC : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; // System.NotImplementedException struct NotImplementedException_t26260C4EE0444C5FA022994203060B3A42A3ADE6 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; // System.NotSupportedException struct NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; // BestHTTP.OnBeforeHeaderSendDelegate struct OnBeforeHeaderSendDelegate_t14E6C0AF9AE042EBCE08E9B5911D7327A37DE05F : public MulticastDelegate_t { public: public: }; // BestHTTP.OnBeforeRedirectionDelegate struct OnBeforeRedirectionDelegate_t81B75D27201DA4FD218ADB97B6FCF92A176AE238 : public MulticastDelegate_t { public: public: }; // BestHTTP.OnHeaderEnumerationDelegate struct OnHeaderEnumerationDelegate_t8569EB210DE78ADA6200BC74C9CE08E713FDE448 : public MulticastDelegate_t { public: public: }; // BestHTTP.OnRequestFinishedDelegate struct OnRequestFinishedDelegate_t4E35BB5277ED27A8B43D1987DE7F3B47772018B4 : public MulticastDelegate_t { public: public: }; // System.Net.Security.RemoteCertificateValidationCallback struct RemoteCertificateValidationCallback_t69AACF4DA933279BC0F7916FB62BC05A5DC5A947 : public MulticastDelegate_t { public: public: }; // System.TimeoutException struct TimeoutException_tB5D0EEFAEC3FC79FFDEF23C55D1BDF4DE347C926 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; // UnityEngine.Transform struct Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 : public Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 { public: public: }; // DG.Tweening.Tween struct Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941 : public ABSSequentiable_t74F7F9AFFD39EE435A16A3E202A7872B46DA6C76 { public: // System.Single DG.Tweening.Tween::timeScale float ___timeScale_4; // System.Boolean DG.Tweening.Tween::isBackwards bool ___isBackwards_5; // System.Object DG.Tweening.Tween::id RuntimeObject * ___id_6; // System.String DG.Tweening.Tween::stringId String_t* ___stringId_7; // System.Int32 DG.Tweening.Tween::intId int32_t ___intId_8; // System.Object DG.Tweening.Tween::target RuntimeObject * ___target_9; // DG.Tweening.UpdateType DG.Tweening.Tween::updateType int32_t ___updateType_10; // System.Boolean DG.Tweening.Tween::isIndependentUpdate bool ___isIndependentUpdate_11; // DG.Tweening.TweenCallback DG.Tweening.Tween::onPlay TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB * ___onPlay_12; // DG.Tweening.TweenCallback DG.Tweening.Tween::onPause TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB * ___onPause_13; // DG.Tweening.TweenCallback DG.Tweening.Tween::onRewind TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB * ___onRewind_14; // DG.Tweening.TweenCallback DG.Tweening.Tween::onUpdate TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB * ___onUpdate_15; // DG.Tweening.TweenCallback DG.Tweening.Tween::onStepComplete TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB * ___onStepComplete_16; // DG.Tweening.TweenCallback DG.Tweening.Tween::onComplete TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB * ___onComplete_17; // DG.Tweening.TweenCallback DG.Tweening.Tween::onKill TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB * ___onKill_18; // DG.Tweening.TweenCallback`1 DG.Tweening.Tween::onWaypointChange TweenCallback_1_t145CD5D30F08B617B445D2B1B79A7BAADC305B9B * ___onWaypointChange_19; // System.Boolean DG.Tweening.Tween::isFrom bool ___isFrom_20; // System.Boolean DG.Tweening.Tween::isBlendable bool ___isBlendable_21; // System.Boolean DG.Tweening.Tween::isRecyclable bool ___isRecyclable_22; // System.Boolean DG.Tweening.Tween::isSpeedBased bool ___isSpeedBased_23; // System.Boolean DG.Tweening.Tween::autoKill bool ___autoKill_24; // System.Single DG.Tweening.Tween::duration float ___duration_25; // System.Int32 DG.Tweening.Tween::loops int32_t ___loops_26; // DG.Tweening.LoopType DG.Tweening.Tween::loopType int32_t ___loopType_27; // System.Single DG.Tweening.Tween::delay float ___delay_28; // System.Boolean DG.Tweening.Tween::k__BackingField bool ___U3CisRelativeU3Ek__BackingField_29; // DG.Tweening.Ease DG.Tweening.Tween::easeType int32_t ___easeType_30; // DG.Tweening.EaseFunction DG.Tweening.Tween::customEase EaseFunction_tC7ECEFDCAE4EC041E6FD7AC7C021E7B7680EFEB9 * ___customEase_31; // System.Single DG.Tweening.Tween::easeOvershootOrAmplitude float ___easeOvershootOrAmplitude_32; // System.Single DG.Tweening.Tween::easePeriod float ___easePeriod_33; // System.String DG.Tweening.Tween::debugTargetId String_t* ___debugTargetId_34; // System.Type DG.Tweening.Tween::typeofT1 Type_t * ___typeofT1_35; // System.Type DG.Tweening.Tween::typeofT2 Type_t * ___typeofT2_36; // System.Type DG.Tweening.Tween::typeofTPlugOptions Type_t * ___typeofTPlugOptions_37; // System.Boolean DG.Tweening.Tween::k__BackingField bool ___U3CactiveU3Ek__BackingField_38; // System.Boolean DG.Tweening.Tween::isSequenced bool ___isSequenced_39; // DG.Tweening.Sequence DG.Tweening.Tween::sequenceParent Sequence_tE01FFFCA34A537CE2FF32EDAF451CDEC55A1399E * ___sequenceParent_40; // System.Int32 DG.Tweening.Tween::activeId int32_t ___activeId_41; // DG.Tweening.Core.Enums.SpecialStartupMode DG.Tweening.Tween::specialStartupMode int32_t ___specialStartupMode_42; // System.Boolean DG.Tweening.Tween::creationLocked bool ___creationLocked_43; // System.Boolean DG.Tweening.Tween::startupDone bool ___startupDone_44; // System.Boolean DG.Tweening.Tween::k__BackingField bool ___U3CplayedOnceU3Ek__BackingField_45; // System.Single DG.Tweening.Tween::k__BackingField float ___U3CpositionU3Ek__BackingField_46; // System.Single DG.Tweening.Tween::fullDuration float ___fullDuration_47; // System.Int32 DG.Tweening.Tween::completedLoops int32_t ___completedLoops_48; // System.Boolean DG.Tweening.Tween::isPlaying bool ___isPlaying_49; // System.Boolean DG.Tweening.Tween::isComplete bool ___isComplete_50; // System.Single DG.Tweening.Tween::elapsedDelay float ___elapsedDelay_51; // System.Boolean DG.Tweening.Tween::delayComplete bool ___delayComplete_52; // System.Int32 DG.Tweening.Tween::miscInt int32_t ___miscInt_53; public: inline static int32_t get_offset_of_timeScale_4() { return static_cast(offsetof(Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941, ___timeScale_4)); } inline float get_timeScale_4() const { return ___timeScale_4; } inline float* get_address_of_timeScale_4() { return &___timeScale_4; } inline void set_timeScale_4(float value) { ___timeScale_4 = value; } inline static int32_t get_offset_of_isBackwards_5() { return static_cast(offsetof(Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941, ___isBackwards_5)); } inline bool get_isBackwards_5() const { return ___isBackwards_5; } inline bool* get_address_of_isBackwards_5() { return &___isBackwards_5; } inline void set_isBackwards_5(bool value) { ___isBackwards_5 = value; } inline static int32_t get_offset_of_id_6() { return static_cast(offsetof(Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941, ___id_6)); } inline RuntimeObject * get_id_6() const { return ___id_6; } inline RuntimeObject ** get_address_of_id_6() { return &___id_6; } inline void set_id_6(RuntimeObject * value) { ___id_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___id_6), (void*)value); } inline static int32_t get_offset_of_stringId_7() { return static_cast(offsetof(Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941, ___stringId_7)); } inline String_t* get_stringId_7() const { return ___stringId_7; } inline String_t** get_address_of_stringId_7() { return &___stringId_7; } inline void set_stringId_7(String_t* value) { ___stringId_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___stringId_7), (void*)value); } inline static int32_t get_offset_of_intId_8() { return static_cast(offsetof(Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941, ___intId_8)); } inline int32_t get_intId_8() const { return ___intId_8; } inline int32_t* get_address_of_intId_8() { return &___intId_8; } inline void set_intId_8(int32_t value) { ___intId_8 = value; } inline static int32_t get_offset_of_target_9() { return static_cast(offsetof(Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941, ___target_9)); } inline RuntimeObject * get_target_9() const { return ___target_9; } inline RuntimeObject ** get_address_of_target_9() { return &___target_9; } inline void set_target_9(RuntimeObject * value) { ___target_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___target_9), (void*)value); } inline static int32_t get_offset_of_updateType_10() { return static_cast(offsetof(Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941, ___updateType_10)); } inline int32_t get_updateType_10() const { return ___updateType_10; } inline int32_t* get_address_of_updateType_10() { return &___updateType_10; } inline void set_updateType_10(int32_t value) { ___updateType_10 = value; } inline static int32_t get_offset_of_isIndependentUpdate_11() { return static_cast(offsetof(Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941, ___isIndependentUpdate_11)); } inline bool get_isIndependentUpdate_11() const { return ___isIndependentUpdate_11; } inline bool* get_address_of_isIndependentUpdate_11() { return &___isIndependentUpdate_11; } inline void set_isIndependentUpdate_11(bool value) { ___isIndependentUpdate_11 = value; } inline static int32_t get_offset_of_onPlay_12() { return static_cast(offsetof(Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941, ___onPlay_12)); } inline TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB * get_onPlay_12() const { return ___onPlay_12; } inline TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB ** get_address_of_onPlay_12() { return &___onPlay_12; } inline void set_onPlay_12(TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB * value) { ___onPlay_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___onPlay_12), (void*)value); } inline static int32_t get_offset_of_onPause_13() { return static_cast(offsetof(Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941, ___onPause_13)); } inline TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB * get_onPause_13() const { return ___onPause_13; } inline TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB ** get_address_of_onPause_13() { return &___onPause_13; } inline void set_onPause_13(TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB * value) { ___onPause_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___onPause_13), (void*)value); } inline static int32_t get_offset_of_onRewind_14() { return static_cast(offsetof(Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941, ___onRewind_14)); } inline TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB * get_onRewind_14() const { return ___onRewind_14; } inline TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB ** get_address_of_onRewind_14() { return &___onRewind_14; } inline void set_onRewind_14(TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB * value) { ___onRewind_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___onRewind_14), (void*)value); } inline static int32_t get_offset_of_onUpdate_15() { return static_cast(offsetof(Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941, ___onUpdate_15)); } inline TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB * get_onUpdate_15() const { return ___onUpdate_15; } inline TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB ** get_address_of_onUpdate_15() { return &___onUpdate_15; } inline void set_onUpdate_15(TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB * value) { ___onUpdate_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___onUpdate_15), (void*)value); } inline static int32_t get_offset_of_onStepComplete_16() { return static_cast(offsetof(Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941, ___onStepComplete_16)); } inline TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB * get_onStepComplete_16() const { return ___onStepComplete_16; } inline TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB ** get_address_of_onStepComplete_16() { return &___onStepComplete_16; } inline void set_onStepComplete_16(TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB * value) { ___onStepComplete_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___onStepComplete_16), (void*)value); } inline static int32_t get_offset_of_onComplete_17() { return static_cast(offsetof(Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941, ___onComplete_17)); } inline TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB * get_onComplete_17() const { return ___onComplete_17; } inline TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB ** get_address_of_onComplete_17() { return &___onComplete_17; } inline void set_onComplete_17(TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB * value) { ___onComplete_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___onComplete_17), (void*)value); } inline static int32_t get_offset_of_onKill_18() { return static_cast(offsetof(Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941, ___onKill_18)); } inline TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB * get_onKill_18() const { return ___onKill_18; } inline TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB ** get_address_of_onKill_18() { return &___onKill_18; } inline void set_onKill_18(TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB * value) { ___onKill_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___onKill_18), (void*)value); } inline static int32_t get_offset_of_onWaypointChange_19() { return static_cast(offsetof(Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941, ___onWaypointChange_19)); } inline TweenCallback_1_t145CD5D30F08B617B445D2B1B79A7BAADC305B9B * get_onWaypointChange_19() const { return ___onWaypointChange_19; } inline TweenCallback_1_t145CD5D30F08B617B445D2B1B79A7BAADC305B9B ** get_address_of_onWaypointChange_19() { return &___onWaypointChange_19; } inline void set_onWaypointChange_19(TweenCallback_1_t145CD5D30F08B617B445D2B1B79A7BAADC305B9B * value) { ___onWaypointChange_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___onWaypointChange_19), (void*)value); } inline static int32_t get_offset_of_isFrom_20() { return static_cast(offsetof(Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941, ___isFrom_20)); } inline bool get_isFrom_20() const { return ___isFrom_20; } inline bool* get_address_of_isFrom_20() { return &___isFrom_20; } inline void set_isFrom_20(bool value) { ___isFrom_20 = value; } inline static int32_t get_offset_of_isBlendable_21() { return static_cast(offsetof(Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941, ___isBlendable_21)); } inline bool get_isBlendable_21() const { return ___isBlendable_21; } inline bool* get_address_of_isBlendable_21() { return &___isBlendable_21; } inline void set_isBlendable_21(bool value) { ___isBlendable_21 = value; } inline static int32_t get_offset_of_isRecyclable_22() { return static_cast(offsetof(Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941, ___isRecyclable_22)); } inline bool get_isRecyclable_22() const { return ___isRecyclable_22; } inline bool* get_address_of_isRecyclable_22() { return &___isRecyclable_22; } inline void set_isRecyclable_22(bool value) { ___isRecyclable_22 = value; } inline static int32_t get_offset_of_isSpeedBased_23() { return static_cast(offsetof(Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941, ___isSpeedBased_23)); } inline bool get_isSpeedBased_23() const { return ___isSpeedBased_23; } inline bool* get_address_of_isSpeedBased_23() { return &___isSpeedBased_23; } inline void set_isSpeedBased_23(bool value) { ___isSpeedBased_23 = value; } inline static int32_t get_offset_of_autoKill_24() { return static_cast(offsetof(Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941, ___autoKill_24)); } inline bool get_autoKill_24() const { return ___autoKill_24; } inline bool* get_address_of_autoKill_24() { return &___autoKill_24; } inline void set_autoKill_24(bool value) { ___autoKill_24 = value; } inline static int32_t get_offset_of_duration_25() { return static_cast(offsetof(Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941, ___duration_25)); } inline float get_duration_25() const { return ___duration_25; } inline float* get_address_of_duration_25() { return &___duration_25; } inline void set_duration_25(float value) { ___duration_25 = value; } inline static int32_t get_offset_of_loops_26() { return static_cast(offsetof(Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941, ___loops_26)); } inline int32_t get_loops_26() const { return ___loops_26; } inline int32_t* get_address_of_loops_26() { return &___loops_26; } inline void set_loops_26(int32_t value) { ___loops_26 = value; } inline static int32_t get_offset_of_loopType_27() { return static_cast(offsetof(Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941, ___loopType_27)); } inline int32_t get_loopType_27() const { return ___loopType_27; } inline int32_t* get_address_of_loopType_27() { return &___loopType_27; } inline void set_loopType_27(int32_t value) { ___loopType_27 = value; } inline static int32_t get_offset_of_delay_28() { return static_cast(offsetof(Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941, ___delay_28)); } inline float get_delay_28() const { return ___delay_28; } inline float* get_address_of_delay_28() { return &___delay_28; } inline void set_delay_28(float value) { ___delay_28 = value; } inline static int32_t get_offset_of_U3CisRelativeU3Ek__BackingField_29() { return static_cast(offsetof(Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941, ___U3CisRelativeU3Ek__BackingField_29)); } inline bool get_U3CisRelativeU3Ek__BackingField_29() const { return ___U3CisRelativeU3Ek__BackingField_29; } inline bool* get_address_of_U3CisRelativeU3Ek__BackingField_29() { return &___U3CisRelativeU3Ek__BackingField_29; } inline void set_U3CisRelativeU3Ek__BackingField_29(bool value) { ___U3CisRelativeU3Ek__BackingField_29 = value; } inline static int32_t get_offset_of_easeType_30() { return static_cast(offsetof(Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941, ___easeType_30)); } inline int32_t get_easeType_30() const { return ___easeType_30; } inline int32_t* get_address_of_easeType_30() { return &___easeType_30; } inline void set_easeType_30(int32_t value) { ___easeType_30 = value; } inline static int32_t get_offset_of_customEase_31() { return static_cast(offsetof(Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941, ___customEase_31)); } inline EaseFunction_tC7ECEFDCAE4EC041E6FD7AC7C021E7B7680EFEB9 * get_customEase_31() const { return ___customEase_31; } inline EaseFunction_tC7ECEFDCAE4EC041E6FD7AC7C021E7B7680EFEB9 ** get_address_of_customEase_31() { return &___customEase_31; } inline void set_customEase_31(EaseFunction_tC7ECEFDCAE4EC041E6FD7AC7C021E7B7680EFEB9 * value) { ___customEase_31 = value; Il2CppCodeGenWriteBarrier((void**)(&___customEase_31), (void*)value); } inline static int32_t get_offset_of_easeOvershootOrAmplitude_32() { return static_cast(offsetof(Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941, ___easeOvershootOrAmplitude_32)); } inline float get_easeOvershootOrAmplitude_32() const { return ___easeOvershootOrAmplitude_32; } inline float* get_address_of_easeOvershootOrAmplitude_32() { return &___easeOvershootOrAmplitude_32; } inline void set_easeOvershootOrAmplitude_32(float value) { ___easeOvershootOrAmplitude_32 = value; } inline static int32_t get_offset_of_easePeriod_33() { return static_cast(offsetof(Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941, ___easePeriod_33)); } inline float get_easePeriod_33() const { return ___easePeriod_33; } inline float* get_address_of_easePeriod_33() { return &___easePeriod_33; } inline void set_easePeriod_33(float value) { ___easePeriod_33 = value; } inline static int32_t get_offset_of_debugTargetId_34() { return static_cast(offsetof(Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941, ___debugTargetId_34)); } inline String_t* get_debugTargetId_34() const { return ___debugTargetId_34; } inline String_t** get_address_of_debugTargetId_34() { return &___debugTargetId_34; } inline void set_debugTargetId_34(String_t* value) { ___debugTargetId_34 = value; Il2CppCodeGenWriteBarrier((void**)(&___debugTargetId_34), (void*)value); } inline static int32_t get_offset_of_typeofT1_35() { return static_cast(offsetof(Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941, ___typeofT1_35)); } inline Type_t * get_typeofT1_35() const { return ___typeofT1_35; } inline Type_t ** get_address_of_typeofT1_35() { return &___typeofT1_35; } inline void set_typeofT1_35(Type_t * value) { ___typeofT1_35 = value; Il2CppCodeGenWriteBarrier((void**)(&___typeofT1_35), (void*)value); } inline static int32_t get_offset_of_typeofT2_36() { return static_cast(offsetof(Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941, ___typeofT2_36)); } inline Type_t * get_typeofT2_36() const { return ___typeofT2_36; } inline Type_t ** get_address_of_typeofT2_36() { return &___typeofT2_36; } inline void set_typeofT2_36(Type_t * value) { ___typeofT2_36 = value; Il2CppCodeGenWriteBarrier((void**)(&___typeofT2_36), (void*)value); } inline static int32_t get_offset_of_typeofTPlugOptions_37() { return static_cast(offsetof(Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941, ___typeofTPlugOptions_37)); } inline Type_t * get_typeofTPlugOptions_37() const { return ___typeofTPlugOptions_37; } inline Type_t ** get_address_of_typeofTPlugOptions_37() { return &___typeofTPlugOptions_37; } inline void set_typeofTPlugOptions_37(Type_t * value) { ___typeofTPlugOptions_37 = value; Il2CppCodeGenWriteBarrier((void**)(&___typeofTPlugOptions_37), (void*)value); } inline static int32_t get_offset_of_U3CactiveU3Ek__BackingField_38() { return static_cast(offsetof(Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941, ___U3CactiveU3Ek__BackingField_38)); } inline bool get_U3CactiveU3Ek__BackingField_38() const { return ___U3CactiveU3Ek__BackingField_38; } inline bool* get_address_of_U3CactiveU3Ek__BackingField_38() { return &___U3CactiveU3Ek__BackingField_38; } inline void set_U3CactiveU3Ek__BackingField_38(bool value) { ___U3CactiveU3Ek__BackingField_38 = value; } inline static int32_t get_offset_of_isSequenced_39() { return static_cast(offsetof(Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941, ___isSequenced_39)); } inline bool get_isSequenced_39() const { return ___isSequenced_39; } inline bool* get_address_of_isSequenced_39() { return &___isSequenced_39; } inline void set_isSequenced_39(bool value) { ___isSequenced_39 = value; } inline static int32_t get_offset_of_sequenceParent_40() { return static_cast(offsetof(Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941, ___sequenceParent_40)); } inline Sequence_tE01FFFCA34A537CE2FF32EDAF451CDEC55A1399E * get_sequenceParent_40() const { return ___sequenceParent_40; } inline Sequence_tE01FFFCA34A537CE2FF32EDAF451CDEC55A1399E ** get_address_of_sequenceParent_40() { return &___sequenceParent_40; } inline void set_sequenceParent_40(Sequence_tE01FFFCA34A537CE2FF32EDAF451CDEC55A1399E * value) { ___sequenceParent_40 = value; Il2CppCodeGenWriteBarrier((void**)(&___sequenceParent_40), (void*)value); } inline static int32_t get_offset_of_activeId_41() { return static_cast(offsetof(Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941, ___activeId_41)); } inline int32_t get_activeId_41() const { return ___activeId_41; } inline int32_t* get_address_of_activeId_41() { return &___activeId_41; } inline void set_activeId_41(int32_t value) { ___activeId_41 = value; } inline static int32_t get_offset_of_specialStartupMode_42() { return static_cast(offsetof(Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941, ___specialStartupMode_42)); } inline int32_t get_specialStartupMode_42() const { return ___specialStartupMode_42; } inline int32_t* get_address_of_specialStartupMode_42() { return &___specialStartupMode_42; } inline void set_specialStartupMode_42(int32_t value) { ___specialStartupMode_42 = value; } inline static int32_t get_offset_of_creationLocked_43() { return static_cast(offsetof(Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941, ___creationLocked_43)); } inline bool get_creationLocked_43() const { return ___creationLocked_43; } inline bool* get_address_of_creationLocked_43() { return &___creationLocked_43; } inline void set_creationLocked_43(bool value) { ___creationLocked_43 = value; } inline static int32_t get_offset_of_startupDone_44() { return static_cast(offsetof(Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941, ___startupDone_44)); } inline bool get_startupDone_44() const { return ___startupDone_44; } inline bool* get_address_of_startupDone_44() { return &___startupDone_44; } inline void set_startupDone_44(bool value) { ___startupDone_44 = value; } inline static int32_t get_offset_of_U3CplayedOnceU3Ek__BackingField_45() { return static_cast(offsetof(Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941, ___U3CplayedOnceU3Ek__BackingField_45)); } inline bool get_U3CplayedOnceU3Ek__BackingField_45() const { return ___U3CplayedOnceU3Ek__BackingField_45; } inline bool* get_address_of_U3CplayedOnceU3Ek__BackingField_45() { return &___U3CplayedOnceU3Ek__BackingField_45; } inline void set_U3CplayedOnceU3Ek__BackingField_45(bool value) { ___U3CplayedOnceU3Ek__BackingField_45 = value; } inline static int32_t get_offset_of_U3CpositionU3Ek__BackingField_46() { return static_cast(offsetof(Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941, ___U3CpositionU3Ek__BackingField_46)); } inline float get_U3CpositionU3Ek__BackingField_46() const { return ___U3CpositionU3Ek__BackingField_46; } inline float* get_address_of_U3CpositionU3Ek__BackingField_46() { return &___U3CpositionU3Ek__BackingField_46; } inline void set_U3CpositionU3Ek__BackingField_46(float value) { ___U3CpositionU3Ek__BackingField_46 = value; } inline static int32_t get_offset_of_fullDuration_47() { return static_cast(offsetof(Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941, ___fullDuration_47)); } inline float get_fullDuration_47() const { return ___fullDuration_47; } inline float* get_address_of_fullDuration_47() { return &___fullDuration_47; } inline void set_fullDuration_47(float value) { ___fullDuration_47 = value; } inline static int32_t get_offset_of_completedLoops_48() { return static_cast(offsetof(Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941, ___completedLoops_48)); } inline int32_t get_completedLoops_48() const { return ___completedLoops_48; } inline int32_t* get_address_of_completedLoops_48() { return &___completedLoops_48; } inline void set_completedLoops_48(int32_t value) { ___completedLoops_48 = value; } inline static int32_t get_offset_of_isPlaying_49() { return static_cast(offsetof(Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941, ___isPlaying_49)); } inline bool get_isPlaying_49() const { return ___isPlaying_49; } inline bool* get_address_of_isPlaying_49() { return &___isPlaying_49; } inline void set_isPlaying_49(bool value) { ___isPlaying_49 = value; } inline static int32_t get_offset_of_isComplete_50() { return static_cast(offsetof(Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941, ___isComplete_50)); } inline bool get_isComplete_50() const { return ___isComplete_50; } inline bool* get_address_of_isComplete_50() { return &___isComplete_50; } inline void set_isComplete_50(bool value) { ___isComplete_50 = value; } inline static int32_t get_offset_of_elapsedDelay_51() { return static_cast(offsetof(Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941, ___elapsedDelay_51)); } inline float get_elapsedDelay_51() const { return ___elapsedDelay_51; } inline float* get_address_of_elapsedDelay_51() { return &___elapsedDelay_51; } inline void set_elapsedDelay_51(float value) { ___elapsedDelay_51 = value; } inline static int32_t get_offset_of_delayComplete_52() { return static_cast(offsetof(Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941, ___delayComplete_52)); } inline bool get_delayComplete_52() const { return ___delayComplete_52; } inline bool* get_address_of_delayComplete_52() { return &___delayComplete_52; } inline void set_delayComplete_52(bool value) { ___delayComplete_52 = value; } inline static int32_t get_offset_of_miscInt_53() { return static_cast(offsetof(Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941, ___miscInt_53)); } inline int32_t get_miscInt_53() const { return ___miscInt_53; } inline int32_t* get_address_of_miscInt_53() { return &___miscInt_53; } inline void set_miscInt_53(int32_t value) { ___miscInt_53 = value; } }; // DG.Tweening.TweenCallback struct TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB : public MulticastDelegate_t { public: public: }; // UnityEngine.Events.UnityAction struct UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 : public MulticastDelegate_t { public: public: }; // System.Threading.WaitCallback struct WaitCallback_t82C85517E973DCC6390AFB0BC3C2276F3328A319 : public MulticastDelegate_t { public: public: }; // BestHTTP.WebSocket.WebSocketResponse struct WebSocketResponse_tBFF22330A397E15C5849F83779F881AFC6EE8CDF : public HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD { public: // BestHTTP.WebSocket.WebSocket BestHTTP.WebSocket.WebSocketResponse::k__BackingField WebSocket_tC5AF27C0708BBCF99D3D7332F846C0FFFD446C54 * ___U3CWebSocketU3Ek__BackingField_33; // System.Action`2 BestHTTP.WebSocket.WebSocketResponse::OnText Action_2_tB1E900EE56707598576A70203857030B4D9C936C * ___OnText_34; // System.Action`2 BestHTTP.WebSocket.WebSocketResponse::OnBinary Action_2_t110B526D14830B3074682426066849C15C290882 * ___OnBinary_35; // System.Action`2 BestHTTP.WebSocket.WebSocketResponse::OnIncompleteFrame Action_2_t502726B4D7373B9926DF64C2ADAAA5BD8A314062 * ___OnIncompleteFrame_36; // System.Action`3 BestHTTP.WebSocket.WebSocketResponse::OnClosed Action_3_t2B590811781714B7E9AEF6A3F3962EEC9ED5FF32 * ___OnClosed_37; // System.TimeSpan BestHTTP.WebSocket.WebSocketResponse::k__BackingField TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___U3CPingFrequnecyU3Ek__BackingField_38; // System.UInt16 BestHTTP.WebSocket.WebSocketResponse::k__BackingField uint16_t ___U3CMaxFragmentSizeU3Ek__BackingField_39; // System.Int32 BestHTTP.WebSocket.WebSocketResponse::_bufferedAmount int32_t ____bufferedAmount_40; // System.Int32 BestHTTP.WebSocket.WebSocketResponse::k__BackingField int32_t ___U3CLatencyU3Ek__BackingField_41; // System.Collections.Generic.List`1 BestHTTP.WebSocket.WebSocketResponse::IncompleteFrames List_1_t3F9EF315AB2F77BBF0220562A966A7A60FD0DF56 * ___IncompleteFrames_42; // System.Collections.Generic.List`1 BestHTTP.WebSocket.WebSocketResponse::CompletedFrames List_1_t3F9EF315AB2F77BBF0220562A966A7A60FD0DF56 * ___CompletedFrames_43; // System.Collections.Generic.List`1 BestHTTP.WebSocket.WebSocketResponse::frameCache List_1_t3F9EF315AB2F77BBF0220562A966A7A60FD0DF56 * ___frameCache_44; // BestHTTP.WebSocket.Frames.WebSocketFrameReader BestHTTP.WebSocket.WebSocketResponse::CloseFrame WebSocketFrameReader_t58A18F681862A4A1930215AE1E08ADB8C9B8CFCB ___CloseFrame_45; // System.Object BestHTTP.WebSocket.WebSocketResponse::FrameLock RuntimeObject * ___FrameLock_46; // System.Object BestHTTP.WebSocket.WebSocketResponse::SendLock RuntimeObject * ___SendLock_47; // System.Collections.Generic.List`1 BestHTTP.WebSocket.WebSocketResponse::unsentFrames List_1_tC68C1FDC8957D84E9A7C1DB169384F9F4A1D686A * ___unsentFrames_48; // System.Threading.AutoResetEvent modreq(System.Runtime.CompilerServices.IsVolatile) BestHTTP.WebSocket.WebSocketResponse::newFrameSignal AutoResetEvent_t3B012223F0DE760BF0D282C5F7B9084C6D3AF53D * ___newFrameSignal_49; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) BestHTTP.WebSocket.WebSocketResponse::sendThreadCreated bool ___sendThreadCreated_50; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) BestHTTP.WebSocket.WebSocketResponse::closeSent bool ___closeSent_51; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) BestHTTP.WebSocket.WebSocketResponse::closed bool ___closed_52; // System.DateTime BestHTTP.WebSocket.WebSocketResponse::lastPing DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___lastPing_53; // System.DateTime BestHTTP.WebSocket.WebSocketResponse::lastMessage DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___lastMessage_54; // BestHTTP.Extensions.CircularBuffer`1 BestHTTP.WebSocket.WebSocketResponse::rtts CircularBuffer_1_t0EEE361509A7632E72FAA9678BD22A0E639DEC88 * ___rtts_55; public: inline static int32_t get_offset_of_U3CWebSocketU3Ek__BackingField_33() { return static_cast(offsetof(WebSocketResponse_tBFF22330A397E15C5849F83779F881AFC6EE8CDF, ___U3CWebSocketU3Ek__BackingField_33)); } inline WebSocket_tC5AF27C0708BBCF99D3D7332F846C0FFFD446C54 * get_U3CWebSocketU3Ek__BackingField_33() const { return ___U3CWebSocketU3Ek__BackingField_33; } inline WebSocket_tC5AF27C0708BBCF99D3D7332F846C0FFFD446C54 ** get_address_of_U3CWebSocketU3Ek__BackingField_33() { return &___U3CWebSocketU3Ek__BackingField_33; } inline void set_U3CWebSocketU3Ek__BackingField_33(WebSocket_tC5AF27C0708BBCF99D3D7332F846C0FFFD446C54 * value) { ___U3CWebSocketU3Ek__BackingField_33 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CWebSocketU3Ek__BackingField_33), (void*)value); } inline static int32_t get_offset_of_OnText_34() { return static_cast(offsetof(WebSocketResponse_tBFF22330A397E15C5849F83779F881AFC6EE8CDF, ___OnText_34)); } inline Action_2_tB1E900EE56707598576A70203857030B4D9C936C * get_OnText_34() const { return ___OnText_34; } inline Action_2_tB1E900EE56707598576A70203857030B4D9C936C ** get_address_of_OnText_34() { return &___OnText_34; } inline void set_OnText_34(Action_2_tB1E900EE56707598576A70203857030B4D9C936C * value) { ___OnText_34 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnText_34), (void*)value); } inline static int32_t get_offset_of_OnBinary_35() { return static_cast(offsetof(WebSocketResponse_tBFF22330A397E15C5849F83779F881AFC6EE8CDF, ___OnBinary_35)); } inline Action_2_t110B526D14830B3074682426066849C15C290882 * get_OnBinary_35() const { return ___OnBinary_35; } inline Action_2_t110B526D14830B3074682426066849C15C290882 ** get_address_of_OnBinary_35() { return &___OnBinary_35; } inline void set_OnBinary_35(Action_2_t110B526D14830B3074682426066849C15C290882 * value) { ___OnBinary_35 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnBinary_35), (void*)value); } inline static int32_t get_offset_of_OnIncompleteFrame_36() { return static_cast(offsetof(WebSocketResponse_tBFF22330A397E15C5849F83779F881AFC6EE8CDF, ___OnIncompleteFrame_36)); } inline Action_2_t502726B4D7373B9926DF64C2ADAAA5BD8A314062 * get_OnIncompleteFrame_36() const { return ___OnIncompleteFrame_36; } inline Action_2_t502726B4D7373B9926DF64C2ADAAA5BD8A314062 ** get_address_of_OnIncompleteFrame_36() { return &___OnIncompleteFrame_36; } inline void set_OnIncompleteFrame_36(Action_2_t502726B4D7373B9926DF64C2ADAAA5BD8A314062 * value) { ___OnIncompleteFrame_36 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnIncompleteFrame_36), (void*)value); } inline static int32_t get_offset_of_OnClosed_37() { return static_cast(offsetof(WebSocketResponse_tBFF22330A397E15C5849F83779F881AFC6EE8CDF, ___OnClosed_37)); } inline Action_3_t2B590811781714B7E9AEF6A3F3962EEC9ED5FF32 * get_OnClosed_37() const { return ___OnClosed_37; } inline Action_3_t2B590811781714B7E9AEF6A3F3962EEC9ED5FF32 ** get_address_of_OnClosed_37() { return &___OnClosed_37; } inline void set_OnClosed_37(Action_3_t2B590811781714B7E9AEF6A3F3962EEC9ED5FF32 * value) { ___OnClosed_37 = value; Il2CppCodeGenWriteBarrier((void**)(&___OnClosed_37), (void*)value); } inline static int32_t get_offset_of_U3CPingFrequnecyU3Ek__BackingField_38() { return static_cast(offsetof(WebSocketResponse_tBFF22330A397E15C5849F83779F881AFC6EE8CDF, ___U3CPingFrequnecyU3Ek__BackingField_38)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_U3CPingFrequnecyU3Ek__BackingField_38() const { return ___U3CPingFrequnecyU3Ek__BackingField_38; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_U3CPingFrequnecyU3Ek__BackingField_38() { return &___U3CPingFrequnecyU3Ek__BackingField_38; } inline void set_U3CPingFrequnecyU3Ek__BackingField_38(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___U3CPingFrequnecyU3Ek__BackingField_38 = value; } inline static int32_t get_offset_of_U3CMaxFragmentSizeU3Ek__BackingField_39() { return static_cast(offsetof(WebSocketResponse_tBFF22330A397E15C5849F83779F881AFC6EE8CDF, ___U3CMaxFragmentSizeU3Ek__BackingField_39)); } inline uint16_t get_U3CMaxFragmentSizeU3Ek__BackingField_39() const { return ___U3CMaxFragmentSizeU3Ek__BackingField_39; } inline uint16_t* get_address_of_U3CMaxFragmentSizeU3Ek__BackingField_39() { return &___U3CMaxFragmentSizeU3Ek__BackingField_39; } inline void set_U3CMaxFragmentSizeU3Ek__BackingField_39(uint16_t value) { ___U3CMaxFragmentSizeU3Ek__BackingField_39 = value; } inline static int32_t get_offset_of__bufferedAmount_40() { return static_cast(offsetof(WebSocketResponse_tBFF22330A397E15C5849F83779F881AFC6EE8CDF, ____bufferedAmount_40)); } inline int32_t get__bufferedAmount_40() const { return ____bufferedAmount_40; } inline int32_t* get_address_of__bufferedAmount_40() { return &____bufferedAmount_40; } inline void set__bufferedAmount_40(int32_t value) { ____bufferedAmount_40 = value; } inline static int32_t get_offset_of_U3CLatencyU3Ek__BackingField_41() { return static_cast(offsetof(WebSocketResponse_tBFF22330A397E15C5849F83779F881AFC6EE8CDF, ___U3CLatencyU3Ek__BackingField_41)); } inline int32_t get_U3CLatencyU3Ek__BackingField_41() const { return ___U3CLatencyU3Ek__BackingField_41; } inline int32_t* get_address_of_U3CLatencyU3Ek__BackingField_41() { return &___U3CLatencyU3Ek__BackingField_41; } inline void set_U3CLatencyU3Ek__BackingField_41(int32_t value) { ___U3CLatencyU3Ek__BackingField_41 = value; } inline static int32_t get_offset_of_IncompleteFrames_42() { return static_cast(offsetof(WebSocketResponse_tBFF22330A397E15C5849F83779F881AFC6EE8CDF, ___IncompleteFrames_42)); } inline List_1_t3F9EF315AB2F77BBF0220562A966A7A60FD0DF56 * get_IncompleteFrames_42() const { return ___IncompleteFrames_42; } inline List_1_t3F9EF315AB2F77BBF0220562A966A7A60FD0DF56 ** get_address_of_IncompleteFrames_42() { return &___IncompleteFrames_42; } inline void set_IncompleteFrames_42(List_1_t3F9EF315AB2F77BBF0220562A966A7A60FD0DF56 * value) { ___IncompleteFrames_42 = value; Il2CppCodeGenWriteBarrier((void**)(&___IncompleteFrames_42), (void*)value); } inline static int32_t get_offset_of_CompletedFrames_43() { return static_cast(offsetof(WebSocketResponse_tBFF22330A397E15C5849F83779F881AFC6EE8CDF, ___CompletedFrames_43)); } inline List_1_t3F9EF315AB2F77BBF0220562A966A7A60FD0DF56 * get_CompletedFrames_43() const { return ___CompletedFrames_43; } inline List_1_t3F9EF315AB2F77BBF0220562A966A7A60FD0DF56 ** get_address_of_CompletedFrames_43() { return &___CompletedFrames_43; } inline void set_CompletedFrames_43(List_1_t3F9EF315AB2F77BBF0220562A966A7A60FD0DF56 * value) { ___CompletedFrames_43 = value; Il2CppCodeGenWriteBarrier((void**)(&___CompletedFrames_43), (void*)value); } inline static int32_t get_offset_of_frameCache_44() { return static_cast(offsetof(WebSocketResponse_tBFF22330A397E15C5849F83779F881AFC6EE8CDF, ___frameCache_44)); } inline List_1_t3F9EF315AB2F77BBF0220562A966A7A60FD0DF56 * get_frameCache_44() const { return ___frameCache_44; } inline List_1_t3F9EF315AB2F77BBF0220562A966A7A60FD0DF56 ** get_address_of_frameCache_44() { return &___frameCache_44; } inline void set_frameCache_44(List_1_t3F9EF315AB2F77BBF0220562A966A7A60FD0DF56 * value) { ___frameCache_44 = value; Il2CppCodeGenWriteBarrier((void**)(&___frameCache_44), (void*)value); } inline static int32_t get_offset_of_CloseFrame_45() { return static_cast(offsetof(WebSocketResponse_tBFF22330A397E15C5849F83779F881AFC6EE8CDF, ___CloseFrame_45)); } inline WebSocketFrameReader_t58A18F681862A4A1930215AE1E08ADB8C9B8CFCB get_CloseFrame_45() const { return ___CloseFrame_45; } inline WebSocketFrameReader_t58A18F681862A4A1930215AE1E08ADB8C9B8CFCB * get_address_of_CloseFrame_45() { return &___CloseFrame_45; } inline void set_CloseFrame_45(WebSocketFrameReader_t58A18F681862A4A1930215AE1E08ADB8C9B8CFCB value) { ___CloseFrame_45 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___CloseFrame_45))->___U3CDataU3Ek__BackingField_5), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___CloseFrame_45))->___U3CDataAsTextU3Ek__BackingField_6), (void*)NULL); #endif } inline static int32_t get_offset_of_FrameLock_46() { return static_cast(offsetof(WebSocketResponse_tBFF22330A397E15C5849F83779F881AFC6EE8CDF, ___FrameLock_46)); } inline RuntimeObject * get_FrameLock_46() const { return ___FrameLock_46; } inline RuntimeObject ** get_address_of_FrameLock_46() { return &___FrameLock_46; } inline void set_FrameLock_46(RuntimeObject * value) { ___FrameLock_46 = value; Il2CppCodeGenWriteBarrier((void**)(&___FrameLock_46), (void*)value); } inline static int32_t get_offset_of_SendLock_47() { return static_cast(offsetof(WebSocketResponse_tBFF22330A397E15C5849F83779F881AFC6EE8CDF, ___SendLock_47)); } inline RuntimeObject * get_SendLock_47() const { return ___SendLock_47; } inline RuntimeObject ** get_address_of_SendLock_47() { return &___SendLock_47; } inline void set_SendLock_47(RuntimeObject * value) { ___SendLock_47 = value; Il2CppCodeGenWriteBarrier((void**)(&___SendLock_47), (void*)value); } inline static int32_t get_offset_of_unsentFrames_48() { return static_cast(offsetof(WebSocketResponse_tBFF22330A397E15C5849F83779F881AFC6EE8CDF, ___unsentFrames_48)); } inline List_1_tC68C1FDC8957D84E9A7C1DB169384F9F4A1D686A * get_unsentFrames_48() const { return ___unsentFrames_48; } inline List_1_tC68C1FDC8957D84E9A7C1DB169384F9F4A1D686A ** get_address_of_unsentFrames_48() { return &___unsentFrames_48; } inline void set_unsentFrames_48(List_1_tC68C1FDC8957D84E9A7C1DB169384F9F4A1D686A * value) { ___unsentFrames_48 = value; Il2CppCodeGenWriteBarrier((void**)(&___unsentFrames_48), (void*)value); } inline static int32_t get_offset_of_newFrameSignal_49() { return static_cast(offsetof(WebSocketResponse_tBFF22330A397E15C5849F83779F881AFC6EE8CDF, ___newFrameSignal_49)); } inline AutoResetEvent_t3B012223F0DE760BF0D282C5F7B9084C6D3AF53D * get_newFrameSignal_49() const { return ___newFrameSignal_49; } inline AutoResetEvent_t3B012223F0DE760BF0D282C5F7B9084C6D3AF53D ** get_address_of_newFrameSignal_49() { return &___newFrameSignal_49; } inline void set_newFrameSignal_49(AutoResetEvent_t3B012223F0DE760BF0D282C5F7B9084C6D3AF53D * value) { ___newFrameSignal_49 = value; Il2CppCodeGenWriteBarrier((void**)(&___newFrameSignal_49), (void*)value); } inline static int32_t get_offset_of_sendThreadCreated_50() { return static_cast(offsetof(WebSocketResponse_tBFF22330A397E15C5849F83779F881AFC6EE8CDF, ___sendThreadCreated_50)); } inline bool get_sendThreadCreated_50() const { return ___sendThreadCreated_50; } inline bool* get_address_of_sendThreadCreated_50() { return &___sendThreadCreated_50; } inline void set_sendThreadCreated_50(bool value) { ___sendThreadCreated_50 = value; } inline static int32_t get_offset_of_closeSent_51() { return static_cast(offsetof(WebSocketResponse_tBFF22330A397E15C5849F83779F881AFC6EE8CDF, ___closeSent_51)); } inline bool get_closeSent_51() const { return ___closeSent_51; } inline bool* get_address_of_closeSent_51() { return &___closeSent_51; } inline void set_closeSent_51(bool value) { ___closeSent_51 = value; } inline static int32_t get_offset_of_closed_52() { return static_cast(offsetof(WebSocketResponse_tBFF22330A397E15C5849F83779F881AFC6EE8CDF, ___closed_52)); } inline bool get_closed_52() const { return ___closed_52; } inline bool* get_address_of_closed_52() { return &___closed_52; } inline void set_closed_52(bool value) { ___closed_52 = value; } inline static int32_t get_offset_of_lastPing_53() { return static_cast(offsetof(WebSocketResponse_tBFF22330A397E15C5849F83779F881AFC6EE8CDF, ___lastPing_53)); } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_lastPing_53() const { return ___lastPing_53; } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_lastPing_53() { return &___lastPing_53; } inline void set_lastPing_53(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value) { ___lastPing_53 = value; } inline static int32_t get_offset_of_lastMessage_54() { return static_cast(offsetof(WebSocketResponse_tBFF22330A397E15C5849F83779F881AFC6EE8CDF, ___lastMessage_54)); } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_lastMessage_54() const { return ___lastMessage_54; } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_lastMessage_54() { return &___lastMessage_54; } inline void set_lastMessage_54(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value) { ___lastMessage_54 = value; } inline static int32_t get_offset_of_rtts_55() { return static_cast(offsetof(WebSocketResponse_tBFF22330A397E15C5849F83779F881AFC6EE8CDF, ___rtts_55)); } inline CircularBuffer_1_t0EEE361509A7632E72FAA9678BD22A0E639DEC88 * get_rtts_55() const { return ___rtts_55; } inline CircularBuffer_1_t0EEE361509A7632E72FAA9678BD22A0E639DEC88 ** get_address_of_rtts_55() { return &___rtts_55; } inline void set_rtts_55(CircularBuffer_1_t0EEE361509A7632E72FAA9678BD22A0E639DEC88 * value) { ___rtts_55 = value; Il2CppCodeGenWriteBarrier((void**)(&___rtts_55), (void*)value); } }; struct WebSocketResponse_tBFF22330A397E15C5849F83779F881AFC6EE8CDF_StaticFields { public: // System.Int32 BestHTTP.WebSocket.WebSocketResponse::RTTBufferCapacity int32_t ___RTTBufferCapacity_32; public: inline static int32_t get_offset_of_RTTBufferCapacity_32() { return static_cast(offsetof(WebSocketResponse_tBFF22330A397E15C5849F83779F881AFC6EE8CDF_StaticFields, ___RTTBufferCapacity_32)); } inline int32_t get_RTTBufferCapacity_32() const { return ___RTTBufferCapacity_32; } inline int32_t* get_address_of_RTTBufferCapacity_32() { return &___RTTBufferCapacity_32; } inline void set_RTTBufferCapacity_32(int32_t value) { ___RTTBufferCapacity_32 = value; } }; // ArduinoBluetoothAPI.BluetoothHelper/BluetoothEvents struct BluetoothEvents_t6367CF752C0000C65AC334DE644AE84EDAA71FA3 : public MulticastDelegate_t { public: public: }; // ArduinoBluetoothAPI.BluetoothHelper/BluetoothLEDataEvent struct BluetoothLEDataEvent_t68F97939E5C7C84395925D0B3DFFD9BE12FAD4CD : public MulticastDelegate_t { public: public: }; // ArduinoBluetoothAPI.BluetoothHelper/BluetoothScanEvents struct BluetoothScanEvents_t96E44F26E6E173C76A806E7E95CF4C7C84B8A33B : public MulticastDelegate_t { public: public: }; // System.ArgumentNullException struct ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB : public ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 { public: public: }; // System.ArgumentOutOfRangeException struct ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 : public ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 { public: // System.Object System.ArgumentOutOfRangeException::m_actualValue RuntimeObject * ___m_actualValue_19; public: inline static int32_t get_offset_of_m_actualValue_19() { return static_cast(offsetof(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8, ___m_actualValue_19)); } inline RuntimeObject * get_m_actualValue_19() const { return ___m_actualValue_19; } inline RuntimeObject ** get_address_of_m_actualValue_19() { return &___m_actualValue_19; } inline void set_m_actualValue_19(RuntimeObject * value) { ___m_actualValue_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_actualValue_19), (void*)value); } }; struct ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_StaticFields { public: // System.String modreq(System.Runtime.CompilerServices.IsVolatile) System.ArgumentOutOfRangeException::_rangeMessage String_t* ____rangeMessage_18; public: inline static int32_t get_offset_of__rangeMessage_18() { return static_cast(offsetof(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_StaticFields, ____rangeMessage_18)); } inline String_t* get__rangeMessage_18() const { return ____rangeMessage_18; } inline String_t** get_address_of__rangeMessage_18() { return &____rangeMessage_18; } inline void set__rangeMessage_18(String_t* value) { ____rangeMessage_18 = value; Il2CppCodeGenWriteBarrier((void**)(&____rangeMessage_18), (void*)value); } }; // System.MissingMemberException struct MissingMemberException_t890E7665FD7C812DAD826E4B5CF55F20F16CF639 : public MemberAccessException_tD623E47056C7D98D56B63B4B954D4E5E128A30FC { public: // System.String System.MissingMemberException::ClassName String_t* ___ClassName_17; // System.String System.MissingMemberException::MemberName String_t* ___MemberName_18; // System.Byte[] System.MissingMemberException::Signature ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___Signature_19; public: inline static int32_t get_offset_of_ClassName_17() { return static_cast(offsetof(MissingMemberException_t890E7665FD7C812DAD826E4B5CF55F20F16CF639, ___ClassName_17)); } inline String_t* get_ClassName_17() const { return ___ClassName_17; } inline String_t** get_address_of_ClassName_17() { return &___ClassName_17; } inline void set_ClassName_17(String_t* value) { ___ClassName_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___ClassName_17), (void*)value); } inline static int32_t get_offset_of_MemberName_18() { return static_cast(offsetof(MissingMemberException_t890E7665FD7C812DAD826E4B5CF55F20F16CF639, ___MemberName_18)); } inline String_t* get_MemberName_18() const { return ___MemberName_18; } inline String_t** get_address_of_MemberName_18() { return &___MemberName_18; } inline void set_MemberName_18(String_t* value) { ___MemberName_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___MemberName_18), (void*)value); } inline static int32_t get_offset_of_Signature_19() { return static_cast(offsetof(MissingMemberException_t890E7665FD7C812DAD826E4B5CF55F20F16CF639, ___Signature_19)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_Signature_19() const { return ___Signature_19; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_Signature_19() { return &___Signature_19; } inline void set_Signature_19(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___Signature_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___Signature_19), (void*)value); } }; // UnityEngine.MonoBehaviour struct MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A : public Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9 { public: public: }; // System.OverflowException struct OverflowException_tD1FBF4E54D81EC98EEF386B69344D336D1EC1AB9 : public ArithmeticException_t8E5F44FABC7FAE0966CBA6DE9BFD545F2660ED47 { public: public: }; // UnityEngine.RectTransform struct RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 : public Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 { public: public: }; struct RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072_StaticFields { public: // UnityEngine.RectTransform/ReapplyDrivenProperties UnityEngine.RectTransform::reapplyDrivenProperties ReapplyDrivenProperties_t1441259DADA8FE33A95334AC24C017DFA3DEB4CE * ___reapplyDrivenProperties_4; public: inline static int32_t get_offset_of_reapplyDrivenProperties_4() { return static_cast(offsetof(RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072_StaticFields, ___reapplyDrivenProperties_4)); } inline ReapplyDrivenProperties_t1441259DADA8FE33A95334AC24C017DFA3DEB4CE * get_reapplyDrivenProperties_4() const { return ___reapplyDrivenProperties_4; } inline ReapplyDrivenProperties_t1441259DADA8FE33A95334AC24C017DFA3DEB4CE ** get_address_of_reapplyDrivenProperties_4() { return &___reapplyDrivenProperties_4; } inline void set_reapplyDrivenProperties_4(ReapplyDrivenProperties_t1441259DADA8FE33A95334AC24C017DFA3DEB4CE * value) { ___reapplyDrivenProperties_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___reapplyDrivenProperties_4), (void*)value); } }; // DG.Tweening.Sequence struct Sequence_tE01FFFCA34A537CE2FF32EDAF451CDEC55A1399E : public Tween_tF17E40B3AD65D4E0C7E78D43A9224C6A1FC4C941 { public: // System.Collections.Generic.List`1 DG.Tweening.Sequence::sequencedTweens List_1_t08B78D4D8AA7967CCB0B188F26199678C0124DF1 * ___sequencedTweens_54; // System.Collections.Generic.List`1 DG.Tweening.Sequence::_sequencedObjs List_1_t6642D08E578C77292ED5537CF3192269131C189C * ____sequencedObjs_55; // System.Single DG.Tweening.Sequence::lastTweenInsertTime float ___lastTweenInsertTime_56; public: inline static int32_t get_offset_of_sequencedTweens_54() { return static_cast(offsetof(Sequence_tE01FFFCA34A537CE2FF32EDAF451CDEC55A1399E, ___sequencedTweens_54)); } inline List_1_t08B78D4D8AA7967CCB0B188F26199678C0124DF1 * get_sequencedTweens_54() const { return ___sequencedTweens_54; } inline List_1_t08B78D4D8AA7967CCB0B188F26199678C0124DF1 ** get_address_of_sequencedTweens_54() { return &___sequencedTweens_54; } inline void set_sequencedTweens_54(List_1_t08B78D4D8AA7967CCB0B188F26199678C0124DF1 * value) { ___sequencedTweens_54 = value; Il2CppCodeGenWriteBarrier((void**)(&___sequencedTweens_54), (void*)value); } inline static int32_t get_offset_of__sequencedObjs_55() { return static_cast(offsetof(Sequence_tE01FFFCA34A537CE2FF32EDAF451CDEC55A1399E, ____sequencedObjs_55)); } inline List_1_t6642D08E578C77292ED5537CF3192269131C189C * get__sequencedObjs_55() const { return ____sequencedObjs_55; } inline List_1_t6642D08E578C77292ED5537CF3192269131C189C ** get_address_of__sequencedObjs_55() { return &____sequencedObjs_55; } inline void set__sequencedObjs_55(List_1_t6642D08E578C77292ED5537CF3192269131C189C * value) { ____sequencedObjs_55 = value; Il2CppCodeGenWriteBarrier((void**)(&____sequencedObjs_55), (void*)value); } inline static int32_t get_offset_of_lastTweenInsertTime_56() { return static_cast(offsetof(Sequence_tE01FFFCA34A537CE2FF32EDAF451CDEC55A1399E, ___lastTweenInsertTime_56)); } inline float get_lastTweenInsertTime_56() const { return ___lastTweenInsertTime_56; } inline float* get_address_of_lastTweenInsertTime_56() { return &___lastTweenInsertTime_56; } inline void set_lastTweenInsertTime_56(float value) { ___lastTweenInsertTime_56 = value; } }; // System.UriFormatException struct UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D : public FormatException_t119BB207B54B4B1BC28D9B1783C4625AE23D4759 { public: public: }; // JCUnityLib.ViewManager`1 struct ViewManager_1_t5BDF7DFD13D86428BB0E5054ADC635CE0AE90F1E : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: // System.Collections.Generic.Dictionary`2 JCUnityLib.ViewManager`1::viewGroupDict Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 * ___viewGroupDict_4; // System.Collections.Generic.Dictionary`2 JCUnityLib.ViewManager`1::viewDict Dictionary_2_tF4468D80E7CE97788C2E325EC65E231981A653F6 * ___viewDict_5; // System.Collections.Generic.HashSet`1 JCUnityLib.ViewManager`1::viewDontDestroySet HashSet_1_t45F75268054D01D9E70EB33D7F6D2FA609DB9229 * ___viewDontDestroySet_6; public: inline static int32_t get_offset_of_viewGroupDict_4() { return static_cast(offsetof(ViewManager_1_t5BDF7DFD13D86428BB0E5054ADC635CE0AE90F1E, ___viewGroupDict_4)); } inline Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 * get_viewGroupDict_4() const { return ___viewGroupDict_4; } inline Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 ** get_address_of_viewGroupDict_4() { return &___viewGroupDict_4; } inline void set_viewGroupDict_4(Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 * value) { ___viewGroupDict_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___viewGroupDict_4), (void*)value); } inline static int32_t get_offset_of_viewDict_5() { return static_cast(offsetof(ViewManager_1_t5BDF7DFD13D86428BB0E5054ADC635CE0AE90F1E, ___viewDict_5)); } inline Dictionary_2_tF4468D80E7CE97788C2E325EC65E231981A653F6 * get_viewDict_5() const { return ___viewDict_5; } inline Dictionary_2_tF4468D80E7CE97788C2E325EC65E231981A653F6 ** get_address_of_viewDict_5() { return &___viewDict_5; } inline void set_viewDict_5(Dictionary_2_tF4468D80E7CE97788C2E325EC65E231981A653F6 * value) { ___viewDict_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___viewDict_5), (void*)value); } inline static int32_t get_offset_of_viewDontDestroySet_6() { return static_cast(offsetof(ViewManager_1_t5BDF7DFD13D86428BB0E5054ADC635CE0AE90F1E, ___viewDontDestroySet_6)); } inline HashSet_1_t45F75268054D01D9E70EB33D7F6D2FA609DB9229 * get_viewDontDestroySet_6() const { return ___viewDontDestroySet_6; } inline HashSet_1_t45F75268054D01D9E70EB33D7F6D2FA609DB9229 ** get_address_of_viewDontDestroySet_6() { return &___viewDontDestroySet_6; } inline void set_viewDontDestroySet_6(HashSet_1_t45F75268054D01D9E70EB33D7F6D2FA609DB9229 * value) { ___viewDontDestroySet_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___viewDontDestroySet_6), (void*)value); } }; struct ViewManager_1_t5BDF7DFD13D86428BB0E5054ADC635CE0AE90F1E_StaticFields { public: // CT JCUnityLib.ViewManager`1::s_Instance HRB_ViewMgr_tA45A4A89DBF774D4F4AEFF894E68F37285F780FC * ___s_Instance_7; public: inline static int32_t get_offset_of_s_Instance_7() { return static_cast(offsetof(ViewManager_1_t5BDF7DFD13D86428BB0E5054ADC635CE0AE90F1E_StaticFields, ___s_Instance_7)); } inline HRB_ViewMgr_tA45A4A89DBF774D4F4AEFF894E68F37285F780FC * get_s_Instance_7() const { return ___s_Instance_7; } inline HRB_ViewMgr_tA45A4A89DBF774D4F4AEFF894E68F37285F780FC ** get_address_of_s_Instance_7() { return &___s_Instance_7; } inline void set_s_Instance_7(HRB_ViewMgr_tA45A4A89DBF774D4F4AEFF894E68F37285F780FC * value) { ___s_Instance_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_Instance_7), (void*)value); } }; // AgreementPopup struct AgreementPopup_tCC38F433C4A11AEF6FBB883ACABC611A73F4B3E6 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: // System.Action AgreementPopup::onDisagree Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___onDisagree_4; public: inline static int32_t get_offset_of_onDisagree_4() { return static_cast(offsetof(AgreementPopup_tCC38F433C4A11AEF6FBB883ACABC611A73F4B3E6, ___onDisagree_4)); } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * get_onDisagree_4() const { return ___onDisagree_4; } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 ** get_address_of_onDisagree_4() { return &___onDisagree_4; } inline void set_onDisagree_4(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * value) { ___onDisagree_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___onDisagree_4), (void*)value); } }; // AgreenmentOption struct AgreenmentOption_t432B742374FB1C0EDA1654B663688306A3D77CDF : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: public: }; struct AgreenmentOption_t432B742374FB1C0EDA1654B663688306A3D77CDF_StaticFields { public: // AgreenmentOption AgreenmentOption::ins AgreenmentOption_t432B742374FB1C0EDA1654B663688306A3D77CDF * ___ins_4; public: inline static int32_t get_offset_of_ins_4() { return static_cast(offsetof(AgreenmentOption_t432B742374FB1C0EDA1654B663688306A3D77CDF_StaticFields, ___ins_4)); } inline AgreenmentOption_t432B742374FB1C0EDA1654B663688306A3D77CDF * get_ins_4() const { return ___ins_4; } inline AgreenmentOption_t432B742374FB1C0EDA1654B663688306A3D77CDF ** get_address_of_ins_4() { return &___ins_4; } inline void set_ins_4(AgreenmentOption_t432B742374FB1C0EDA1654B663688306A3D77CDF * value) { ___ins_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___ins_4), (void*)value); } }; // AimHandler struct AimHandler_t09E6B497CE2A5136591A25DDCED60D7D7D00A563 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: // AxisBaseHandler AimHandler::m_axisHandler AxisBaseHandler_tB2ADEE63CF0D81D5D1EE9EF876E6CA6BCF7AA09D * ___m_axisHandler_4; // System.Int32 AimHandler::gyrCalibrateCompleteCount int32_t ___gyrCalibrateCompleteCount_5; // System.Int32 AimHandler::gyrCalibrateTotalCount int32_t ___gyrCalibrateTotalCount_6; // UnityEngine.Quaternion AimHandler::newRotation Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___newRotation_8; // System.Boolean AimHandler::lerpForRotation bool ___lerpForRotation_9; // System.Single AimHandler::lerpTimeRate float ___lerpTimeRate_10; // System.Boolean AimHandler::m_magCompleted bool ___m_magCompleted_11; // System.Boolean AimHandler::m_ban9AxisCalculate bool ___m_ban9AxisCalculate_12; public: inline static int32_t get_offset_of_m_axisHandler_4() { return static_cast(offsetof(AimHandler_t09E6B497CE2A5136591A25DDCED60D7D7D00A563, ___m_axisHandler_4)); } inline AxisBaseHandler_tB2ADEE63CF0D81D5D1EE9EF876E6CA6BCF7AA09D * get_m_axisHandler_4() const { return ___m_axisHandler_4; } inline AxisBaseHandler_tB2ADEE63CF0D81D5D1EE9EF876E6CA6BCF7AA09D ** get_address_of_m_axisHandler_4() { return &___m_axisHandler_4; } inline void set_m_axisHandler_4(AxisBaseHandler_tB2ADEE63CF0D81D5D1EE9EF876E6CA6BCF7AA09D * value) { ___m_axisHandler_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_axisHandler_4), (void*)value); } inline static int32_t get_offset_of_gyrCalibrateCompleteCount_5() { return static_cast(offsetof(AimHandler_t09E6B497CE2A5136591A25DDCED60D7D7D00A563, ___gyrCalibrateCompleteCount_5)); } inline int32_t get_gyrCalibrateCompleteCount_5() const { return ___gyrCalibrateCompleteCount_5; } inline int32_t* get_address_of_gyrCalibrateCompleteCount_5() { return &___gyrCalibrateCompleteCount_5; } inline void set_gyrCalibrateCompleteCount_5(int32_t value) { ___gyrCalibrateCompleteCount_5 = value; } inline static int32_t get_offset_of_gyrCalibrateTotalCount_6() { return static_cast(offsetof(AimHandler_t09E6B497CE2A5136591A25DDCED60D7D7D00A563, ___gyrCalibrateTotalCount_6)); } inline int32_t get_gyrCalibrateTotalCount_6() const { return ___gyrCalibrateTotalCount_6; } inline int32_t* get_address_of_gyrCalibrateTotalCount_6() { return &___gyrCalibrateTotalCount_6; } inline void set_gyrCalibrateTotalCount_6(int32_t value) { ___gyrCalibrateTotalCount_6 = value; } inline static int32_t get_offset_of_newRotation_8() { return static_cast(offsetof(AimHandler_t09E6B497CE2A5136591A25DDCED60D7D7D00A563, ___newRotation_8)); } inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 get_newRotation_8() const { return ___newRotation_8; } inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * get_address_of_newRotation_8() { return &___newRotation_8; } inline void set_newRotation_8(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 value) { ___newRotation_8 = value; } inline static int32_t get_offset_of_lerpForRotation_9() { return static_cast(offsetof(AimHandler_t09E6B497CE2A5136591A25DDCED60D7D7D00A563, ___lerpForRotation_9)); } inline bool get_lerpForRotation_9() const { return ___lerpForRotation_9; } inline bool* get_address_of_lerpForRotation_9() { return &___lerpForRotation_9; } inline void set_lerpForRotation_9(bool value) { ___lerpForRotation_9 = value; } inline static int32_t get_offset_of_lerpTimeRate_10() { return static_cast(offsetof(AimHandler_t09E6B497CE2A5136591A25DDCED60D7D7D00A563, ___lerpTimeRate_10)); } inline float get_lerpTimeRate_10() const { return ___lerpTimeRate_10; } inline float* get_address_of_lerpTimeRate_10() { return &___lerpTimeRate_10; } inline void set_lerpTimeRate_10(float value) { ___lerpTimeRate_10 = value; } inline static int32_t get_offset_of_m_magCompleted_11() { return static_cast(offsetof(AimHandler_t09E6B497CE2A5136591A25DDCED60D7D7D00A563, ___m_magCompleted_11)); } inline bool get_m_magCompleted_11() const { return ___m_magCompleted_11; } inline bool* get_address_of_m_magCompleted_11() { return &___m_magCompleted_11; } inline void set_m_magCompleted_11(bool value) { ___m_magCompleted_11 = value; } inline static int32_t get_offset_of_m_ban9AxisCalculate_12() { return static_cast(offsetof(AimHandler_t09E6B497CE2A5136591A25DDCED60D7D7D00A563, ___m_ban9AxisCalculate_12)); } inline bool get_m_ban9AxisCalculate_12() const { return ___m_ban9AxisCalculate_12; } inline bool* get_address_of_m_ban9AxisCalculate_12() { return &___m_ban9AxisCalculate_12; } inline void set_m_ban9AxisCalculate_12(bool value) { ___m_ban9AxisCalculate_12 = value; } }; struct AimHandler_t09E6B497CE2A5136591A25DDCED60D7D7D00A563_StaticFields { public: // AimHandler AimHandler::ins AimHandler_t09E6B497CE2A5136591A25DDCED60D7D7D00A563 * ___ins_7; public: inline static int32_t get_offset_of_ins_7() { return static_cast(offsetof(AimHandler_t09E6B497CE2A5136591A25DDCED60D7D7D00A563_StaticFields, ___ins_7)); } inline AimHandler_t09E6B497CE2A5136591A25DDCED60D7D7D00A563 * get_ins_7() const { return ___ins_7; } inline AimHandler_t09E6B497CE2A5136591A25DDCED60D7D7D00A563 ** get_address_of_ins_7() { return &___ins_7; } inline void set_ins_7(AimHandler_t09E6B497CE2A5136591A25DDCED60D7D7D00A563 * value) { ___ins_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___ins_7), (void*)value); } }; // AudioMgr struct AudioMgr_t37818C35286C2FF09D8B8FFF7E74D479D3817DA0 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: // UnityEngine.AudioSource AudioMgr::audioSource AudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B * ___audioSource_4; public: inline static int32_t get_offset_of_audioSource_4() { return static_cast(offsetof(AudioMgr_t37818C35286C2FF09D8B8FFF7E74D479D3817DA0, ___audioSource_4)); } inline AudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B * get_audioSource_4() const { return ___audioSource_4; } inline AudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B ** get_address_of_audioSource_4() { return &___audioSource_4; } inline void set_audioSource_4(AudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B * value) { ___audioSource_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___audioSource_4), (void*)value); } }; struct AudioMgr_t37818C35286C2FF09D8B8FFF7E74D479D3817DA0_StaticFields { public: // AudioMgr AudioMgr::ins AudioMgr_t37818C35286C2FF09D8B8FFF7E74D479D3817DA0 * ___ins_5; public: inline static int32_t get_offset_of_ins_5() { return static_cast(offsetof(AudioMgr_t37818C35286C2FF09D8B8FFF7E74D479D3817DA0_StaticFields, ___ins_5)); } inline AudioMgr_t37818C35286C2FF09D8B8FFF7E74D479D3817DA0 * get_ins_5() const { return ___ins_5; } inline AudioMgr_t37818C35286C2FF09D8B8FFF7E74D479D3817DA0 ** get_address_of_ins_5() { return &___ins_5; } inline void set_ins_5(AudioMgr_t37818C35286C2FF09D8B8FFF7E74D479D3817DA0 * value) { ___ins_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___ins_5), (void*)value); } }; // AuthLoginMask struct AuthLoginMask_t5885C21EF2FAB0AE37931AB74598E783A4925962 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: public: }; struct AuthLoginMask_t5885C21EF2FAB0AE37931AB74598E783A4925962_StaticFields { public: // AuthLoginMask AuthLoginMask::ins AuthLoginMask_t5885C21EF2FAB0AE37931AB74598E783A4925962 * ___ins_4; public: inline static int32_t get_offset_of_ins_4() { return static_cast(offsetof(AuthLoginMask_t5885C21EF2FAB0AE37931AB74598E783A4925962_StaticFields, ___ins_4)); } inline AuthLoginMask_t5885C21EF2FAB0AE37931AB74598E783A4925962 * get_ins_4() const { return ___ins_4; } inline AuthLoginMask_t5885C21EF2FAB0AE37931AB74598E783A4925962 ** get_address_of_ins_4() { return &___ins_4; } inline void set_ins_4(AuthLoginMask_t5885C21EF2FAB0AE37931AB74598E783A4925962 * value) { ___ins_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___ins_4), (void*)value); } }; // BluetoothShoot struct BluetoothShoot_tFFB2B3FBCA6C8833498153B0B9A2F5327215D1F6 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: // ArduinoBluetoothAPI.BluetoothHelper BluetoothShoot::bluetoothHelper BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2 * ___bluetoothHelper_4; // ArduinoBluetoothAPI.BluetoothHelperCharacteristic BluetoothShoot::characteristicWrite BluetoothHelperCharacteristic_t192402A7C03FD9857C87822D541F8737A469B6E9 * ___characteristicWrite_5; // ArduinoBluetoothAPI.BluetoothHelperService BluetoothShoot::bluetoothService BluetoothHelperService_t4C830DA91BDB3A9EC558D45C55A9318E931CA2A9 * ___bluetoothService_6; // System.String BluetoothShoot::targetDeviceName String_t* ___targetDeviceName_7; // System.String BluetoothShoot::deviceName String_t* ___deviceName_8; // System.Boolean BluetoothShoot::canConnect bool ___canConnect_9; // UnityEngine.UI.Text BluetoothShoot::textUI Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * ___textUI_10; // BluetoothStatusEnum BluetoothShoot::status int32_t ___status_11; // System.Boolean BluetoothShoot::hasData bool ___hasData_12; // System.Boolean BluetoothShoot::userDoConnect bool ___userDoConnect_15; // System.Boolean BluetoothShoot::doConnect bool ___doConnect_16; // System.Boolean BluetoothShoot::dataGetting bool ___dataGetting_17; // System.Int32 BluetoothShoot::dataGetLen int32_t ___dataGetLen_18; // System.Collections.Generic.List`1 BluetoothShoot::dataBytes List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF * ___dataBytes_19; public: inline static int32_t get_offset_of_bluetoothHelper_4() { return static_cast(offsetof(BluetoothShoot_tFFB2B3FBCA6C8833498153B0B9A2F5327215D1F6, ___bluetoothHelper_4)); } inline BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2 * get_bluetoothHelper_4() const { return ___bluetoothHelper_4; } inline BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2 ** get_address_of_bluetoothHelper_4() { return &___bluetoothHelper_4; } inline void set_bluetoothHelper_4(BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2 * value) { ___bluetoothHelper_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___bluetoothHelper_4), (void*)value); } inline static int32_t get_offset_of_characteristicWrite_5() { return static_cast(offsetof(BluetoothShoot_tFFB2B3FBCA6C8833498153B0B9A2F5327215D1F6, ___characteristicWrite_5)); } inline BluetoothHelperCharacteristic_t192402A7C03FD9857C87822D541F8737A469B6E9 * get_characteristicWrite_5() const { return ___characteristicWrite_5; } inline BluetoothHelperCharacteristic_t192402A7C03FD9857C87822D541F8737A469B6E9 ** get_address_of_characteristicWrite_5() { return &___characteristicWrite_5; } inline void set_characteristicWrite_5(BluetoothHelperCharacteristic_t192402A7C03FD9857C87822D541F8737A469B6E9 * value) { ___characteristicWrite_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___characteristicWrite_5), (void*)value); } inline static int32_t get_offset_of_bluetoothService_6() { return static_cast(offsetof(BluetoothShoot_tFFB2B3FBCA6C8833498153B0B9A2F5327215D1F6, ___bluetoothService_6)); } inline BluetoothHelperService_t4C830DA91BDB3A9EC558D45C55A9318E931CA2A9 * get_bluetoothService_6() const { return ___bluetoothService_6; } inline BluetoothHelperService_t4C830DA91BDB3A9EC558D45C55A9318E931CA2A9 ** get_address_of_bluetoothService_6() { return &___bluetoothService_6; } inline void set_bluetoothService_6(BluetoothHelperService_t4C830DA91BDB3A9EC558D45C55A9318E931CA2A9 * value) { ___bluetoothService_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___bluetoothService_6), (void*)value); } inline static int32_t get_offset_of_targetDeviceName_7() { return static_cast(offsetof(BluetoothShoot_tFFB2B3FBCA6C8833498153B0B9A2F5327215D1F6, ___targetDeviceName_7)); } inline String_t* get_targetDeviceName_7() const { return ___targetDeviceName_7; } inline String_t** get_address_of_targetDeviceName_7() { return &___targetDeviceName_7; } inline void set_targetDeviceName_7(String_t* value) { ___targetDeviceName_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___targetDeviceName_7), (void*)value); } inline static int32_t get_offset_of_deviceName_8() { return static_cast(offsetof(BluetoothShoot_tFFB2B3FBCA6C8833498153B0B9A2F5327215D1F6, ___deviceName_8)); } inline String_t* get_deviceName_8() const { return ___deviceName_8; } inline String_t** get_address_of_deviceName_8() { return &___deviceName_8; } inline void set_deviceName_8(String_t* value) { ___deviceName_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___deviceName_8), (void*)value); } inline static int32_t get_offset_of_canConnect_9() { return static_cast(offsetof(BluetoothShoot_tFFB2B3FBCA6C8833498153B0B9A2F5327215D1F6, ___canConnect_9)); } inline bool get_canConnect_9() const { return ___canConnect_9; } inline bool* get_address_of_canConnect_9() { return &___canConnect_9; } inline void set_canConnect_9(bool value) { ___canConnect_9 = value; } inline static int32_t get_offset_of_textUI_10() { return static_cast(offsetof(BluetoothShoot_tFFB2B3FBCA6C8833498153B0B9A2F5327215D1F6, ___textUI_10)); } inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * get_textUI_10() const { return ___textUI_10; } inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 ** get_address_of_textUI_10() { return &___textUI_10; } inline void set_textUI_10(Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * value) { ___textUI_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___textUI_10), (void*)value); } inline static int32_t get_offset_of_status_11() { return static_cast(offsetof(BluetoothShoot_tFFB2B3FBCA6C8833498153B0B9A2F5327215D1F6, ___status_11)); } inline int32_t get_status_11() const { return ___status_11; } inline int32_t* get_address_of_status_11() { return &___status_11; } inline void set_status_11(int32_t value) { ___status_11 = value; } inline static int32_t get_offset_of_hasData_12() { return static_cast(offsetof(BluetoothShoot_tFFB2B3FBCA6C8833498153B0B9A2F5327215D1F6, ___hasData_12)); } inline bool get_hasData_12() const { return ___hasData_12; } inline bool* get_address_of_hasData_12() { return &___hasData_12; } inline void set_hasData_12(bool value) { ___hasData_12 = value; } inline static int32_t get_offset_of_userDoConnect_15() { return static_cast(offsetof(BluetoothShoot_tFFB2B3FBCA6C8833498153B0B9A2F5327215D1F6, ___userDoConnect_15)); } inline bool get_userDoConnect_15() const { return ___userDoConnect_15; } inline bool* get_address_of_userDoConnect_15() { return &___userDoConnect_15; } inline void set_userDoConnect_15(bool value) { ___userDoConnect_15 = value; } inline static int32_t get_offset_of_doConnect_16() { return static_cast(offsetof(BluetoothShoot_tFFB2B3FBCA6C8833498153B0B9A2F5327215D1F6, ___doConnect_16)); } inline bool get_doConnect_16() const { return ___doConnect_16; } inline bool* get_address_of_doConnect_16() { return &___doConnect_16; } inline void set_doConnect_16(bool value) { ___doConnect_16 = value; } inline static int32_t get_offset_of_dataGetting_17() { return static_cast(offsetof(BluetoothShoot_tFFB2B3FBCA6C8833498153B0B9A2F5327215D1F6, ___dataGetting_17)); } inline bool get_dataGetting_17() const { return ___dataGetting_17; } inline bool* get_address_of_dataGetting_17() { return &___dataGetting_17; } inline void set_dataGetting_17(bool value) { ___dataGetting_17 = value; } inline static int32_t get_offset_of_dataGetLen_18() { return static_cast(offsetof(BluetoothShoot_tFFB2B3FBCA6C8833498153B0B9A2F5327215D1F6, ___dataGetLen_18)); } inline int32_t get_dataGetLen_18() const { return ___dataGetLen_18; } inline int32_t* get_address_of_dataGetLen_18() { return &___dataGetLen_18; } inline void set_dataGetLen_18(int32_t value) { ___dataGetLen_18 = value; } inline static int32_t get_offset_of_dataBytes_19() { return static_cast(offsetof(BluetoothShoot_tFFB2B3FBCA6C8833498153B0B9A2F5327215D1F6, ___dataBytes_19)); } inline List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF * get_dataBytes_19() const { return ___dataBytes_19; } inline List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF ** get_address_of_dataBytes_19() { return &___dataBytes_19; } inline void set_dataBytes_19(List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF * value) { ___dataBytes_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___dataBytes_19), (void*)value); } }; struct BluetoothShoot_tFFB2B3FBCA6C8833498153B0B9A2F5327215D1F6_StaticFields { public: // System.Boolean BluetoothShoot::scanLock bool ___scanLock_13; // BluetoothShoot BluetoothShoot::ins BluetoothShoot_tFFB2B3FBCA6C8833498153B0B9A2F5327215D1F6 * ___ins_14; public: inline static int32_t get_offset_of_scanLock_13() { return static_cast(offsetof(BluetoothShoot_tFFB2B3FBCA6C8833498153B0B9A2F5327215D1F6_StaticFields, ___scanLock_13)); } inline bool get_scanLock_13() const { return ___scanLock_13; } inline bool* get_address_of_scanLock_13() { return &___scanLock_13; } inline void set_scanLock_13(bool value) { ___scanLock_13 = value; } inline static int32_t get_offset_of_ins_14() { return static_cast(offsetof(BluetoothShoot_tFFB2B3FBCA6C8833498153B0B9A2F5327215D1F6_StaticFields, ___ins_14)); } inline BluetoothShoot_tFFB2B3FBCA6C8833498153B0B9A2F5327215D1F6 * get_ins_14() const { return ___ins_14; } inline BluetoothShoot_tFFB2B3FBCA6C8833498153B0B9A2F5327215D1F6 ** get_address_of_ins_14() { return &___ins_14; } inline void set_ins_14(BluetoothShoot_tFFB2B3FBCA6C8833498153B0B9A2F5327215D1F6 * value) { ___ins_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___ins_14), (void*)value); } }; // BowCamera struct BowCamera_t7AA7E1A3AE4107303360B6EC9EC72E5F762D0FF9 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: // UnityEngine.Camera BowCamera::_cameraComp Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * ____cameraComp_4; // ArmBow BowCamera::_armBow ArmBow_tB6B0B80BF49B5CD1F51E828D121AF6CBE42F74E4 * ____armBow_5; // UnityEngine.Vector3 BowCamera::localEulerAngles Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___localEulerAngles_6; // JCUnityLib.TouchChecker BowCamera::touchChecker TouchChecker_t947EC531E7CCB512A72D6F50820DD968969FBAED * ___touchChecker_7; // System.Single[] BowCamera::limitRangeRotateY SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* ___limitRangeRotateY_9; // System.Single[] BowCamera::limitRangeRotateX SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* ___limitRangeRotateX_10; // System.Boolean BowCamera::banLogic bool ___banLogic_11; // System.Boolean BowCamera::needLookAtPoint bool ___needLookAtPoint_13; // System.Single[] BowCamera::_bowRotateConvertRate SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* ____bowRotateConvertRate_14; // System.Action BowCamera::onAfterLateUpdate Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___onAfterLateUpdate_15; // System.Single BowCamera::cameraFieldOfView float ___cameraFieldOfView_16; // System.Single BowCamera::defaultCameraFieldOfView float ___defaultCameraFieldOfView_17; // System.Boolean BowCamera::banCameraFieldOfView bool ___banCameraFieldOfView_18; // System.Boolean BowCamera::isArrowFollowing bool ___isArrowFollowing_19; // System.Boolean BowCamera::isScaleAimDisplaying bool ___isScaleAimDisplaying_20; // BowCamera/BowCameraFixed BowCamera::bowCameraFixed BowCameraFixed_tB84EA66C717C757B6D1772F572D7C4A4AF9D32A3 * ___bowCameraFixed_21; public: inline static int32_t get_offset_of__cameraComp_4() { return static_cast(offsetof(BowCamera_t7AA7E1A3AE4107303360B6EC9EC72E5F762D0FF9, ____cameraComp_4)); } inline Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * get__cameraComp_4() const { return ____cameraComp_4; } inline Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C ** get_address_of__cameraComp_4() { return &____cameraComp_4; } inline void set__cameraComp_4(Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * value) { ____cameraComp_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____cameraComp_4), (void*)value); } inline static int32_t get_offset_of__armBow_5() { return static_cast(offsetof(BowCamera_t7AA7E1A3AE4107303360B6EC9EC72E5F762D0FF9, ____armBow_5)); } inline ArmBow_tB6B0B80BF49B5CD1F51E828D121AF6CBE42F74E4 * get__armBow_5() const { return ____armBow_5; } inline ArmBow_tB6B0B80BF49B5CD1F51E828D121AF6CBE42F74E4 ** get_address_of__armBow_5() { return &____armBow_5; } inline void set__armBow_5(ArmBow_tB6B0B80BF49B5CD1F51E828D121AF6CBE42F74E4 * value) { ____armBow_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____armBow_5), (void*)value); } inline static int32_t get_offset_of_localEulerAngles_6() { return static_cast(offsetof(BowCamera_t7AA7E1A3AE4107303360B6EC9EC72E5F762D0FF9, ___localEulerAngles_6)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_localEulerAngles_6() const { return ___localEulerAngles_6; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_localEulerAngles_6() { return &___localEulerAngles_6; } inline void set_localEulerAngles_6(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___localEulerAngles_6 = value; } inline static int32_t get_offset_of_touchChecker_7() { return static_cast(offsetof(BowCamera_t7AA7E1A3AE4107303360B6EC9EC72E5F762D0FF9, ___touchChecker_7)); } inline TouchChecker_t947EC531E7CCB512A72D6F50820DD968969FBAED * get_touchChecker_7() const { return ___touchChecker_7; } inline TouchChecker_t947EC531E7CCB512A72D6F50820DD968969FBAED ** get_address_of_touchChecker_7() { return &___touchChecker_7; } inline void set_touchChecker_7(TouchChecker_t947EC531E7CCB512A72D6F50820DD968969FBAED * value) { ___touchChecker_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___touchChecker_7), (void*)value); } inline static int32_t get_offset_of_limitRangeRotateY_9() { return static_cast(offsetof(BowCamera_t7AA7E1A3AE4107303360B6EC9EC72E5F762D0FF9, ___limitRangeRotateY_9)); } inline SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* get_limitRangeRotateY_9() const { return ___limitRangeRotateY_9; } inline SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA** get_address_of_limitRangeRotateY_9() { return &___limitRangeRotateY_9; } inline void set_limitRangeRotateY_9(SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* value) { ___limitRangeRotateY_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___limitRangeRotateY_9), (void*)value); } inline static int32_t get_offset_of_limitRangeRotateX_10() { return static_cast(offsetof(BowCamera_t7AA7E1A3AE4107303360B6EC9EC72E5F762D0FF9, ___limitRangeRotateX_10)); } inline SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* get_limitRangeRotateX_10() const { return ___limitRangeRotateX_10; } inline SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA** get_address_of_limitRangeRotateX_10() { return &___limitRangeRotateX_10; } inline void set_limitRangeRotateX_10(SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* value) { ___limitRangeRotateX_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___limitRangeRotateX_10), (void*)value); } inline static int32_t get_offset_of_banLogic_11() { return static_cast(offsetof(BowCamera_t7AA7E1A3AE4107303360B6EC9EC72E5F762D0FF9, ___banLogic_11)); } inline bool get_banLogic_11() const { return ___banLogic_11; } inline bool* get_address_of_banLogic_11() { return &___banLogic_11; } inline void set_banLogic_11(bool value) { ___banLogic_11 = value; } inline static int32_t get_offset_of_needLookAtPoint_13() { return static_cast(offsetof(BowCamera_t7AA7E1A3AE4107303360B6EC9EC72E5F762D0FF9, ___needLookAtPoint_13)); } inline bool get_needLookAtPoint_13() const { return ___needLookAtPoint_13; } inline bool* get_address_of_needLookAtPoint_13() { return &___needLookAtPoint_13; } inline void set_needLookAtPoint_13(bool value) { ___needLookAtPoint_13 = value; } inline static int32_t get_offset_of__bowRotateConvertRate_14() { return static_cast(offsetof(BowCamera_t7AA7E1A3AE4107303360B6EC9EC72E5F762D0FF9, ____bowRotateConvertRate_14)); } inline SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* get__bowRotateConvertRate_14() const { return ____bowRotateConvertRate_14; } inline SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA** get_address_of__bowRotateConvertRate_14() { return &____bowRotateConvertRate_14; } inline void set__bowRotateConvertRate_14(SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* value) { ____bowRotateConvertRate_14 = value; Il2CppCodeGenWriteBarrier((void**)(&____bowRotateConvertRate_14), (void*)value); } inline static int32_t get_offset_of_onAfterLateUpdate_15() { return static_cast(offsetof(BowCamera_t7AA7E1A3AE4107303360B6EC9EC72E5F762D0FF9, ___onAfterLateUpdate_15)); } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * get_onAfterLateUpdate_15() const { return ___onAfterLateUpdate_15; } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 ** get_address_of_onAfterLateUpdate_15() { return &___onAfterLateUpdate_15; } inline void set_onAfterLateUpdate_15(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * value) { ___onAfterLateUpdate_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___onAfterLateUpdate_15), (void*)value); } inline static int32_t get_offset_of_cameraFieldOfView_16() { return static_cast(offsetof(BowCamera_t7AA7E1A3AE4107303360B6EC9EC72E5F762D0FF9, ___cameraFieldOfView_16)); } inline float get_cameraFieldOfView_16() const { return ___cameraFieldOfView_16; } inline float* get_address_of_cameraFieldOfView_16() { return &___cameraFieldOfView_16; } inline void set_cameraFieldOfView_16(float value) { ___cameraFieldOfView_16 = value; } inline static int32_t get_offset_of_defaultCameraFieldOfView_17() { return static_cast(offsetof(BowCamera_t7AA7E1A3AE4107303360B6EC9EC72E5F762D0FF9, ___defaultCameraFieldOfView_17)); } inline float get_defaultCameraFieldOfView_17() const { return ___defaultCameraFieldOfView_17; } inline float* get_address_of_defaultCameraFieldOfView_17() { return &___defaultCameraFieldOfView_17; } inline void set_defaultCameraFieldOfView_17(float value) { ___defaultCameraFieldOfView_17 = value; } inline static int32_t get_offset_of_banCameraFieldOfView_18() { return static_cast(offsetof(BowCamera_t7AA7E1A3AE4107303360B6EC9EC72E5F762D0FF9, ___banCameraFieldOfView_18)); } inline bool get_banCameraFieldOfView_18() const { return ___banCameraFieldOfView_18; } inline bool* get_address_of_banCameraFieldOfView_18() { return &___banCameraFieldOfView_18; } inline void set_banCameraFieldOfView_18(bool value) { ___banCameraFieldOfView_18 = value; } inline static int32_t get_offset_of_isArrowFollowing_19() { return static_cast(offsetof(BowCamera_t7AA7E1A3AE4107303360B6EC9EC72E5F762D0FF9, ___isArrowFollowing_19)); } inline bool get_isArrowFollowing_19() const { return ___isArrowFollowing_19; } inline bool* get_address_of_isArrowFollowing_19() { return &___isArrowFollowing_19; } inline void set_isArrowFollowing_19(bool value) { ___isArrowFollowing_19 = value; } inline static int32_t get_offset_of_isScaleAimDisplaying_20() { return static_cast(offsetof(BowCamera_t7AA7E1A3AE4107303360B6EC9EC72E5F762D0FF9, ___isScaleAimDisplaying_20)); } inline bool get_isScaleAimDisplaying_20() const { return ___isScaleAimDisplaying_20; } inline bool* get_address_of_isScaleAimDisplaying_20() { return &___isScaleAimDisplaying_20; } inline void set_isScaleAimDisplaying_20(bool value) { ___isScaleAimDisplaying_20 = value; } inline static int32_t get_offset_of_bowCameraFixed_21() { return static_cast(offsetof(BowCamera_t7AA7E1A3AE4107303360B6EC9EC72E5F762D0FF9, ___bowCameraFixed_21)); } inline BowCameraFixed_tB84EA66C717C757B6D1772F572D7C4A4AF9D32A3 * get_bowCameraFixed_21() const { return ___bowCameraFixed_21; } inline BowCameraFixed_tB84EA66C717C757B6D1772F572D7C4A4AF9D32A3 ** get_address_of_bowCameraFixed_21() { return &___bowCameraFixed_21; } inline void set_bowCameraFixed_21(BowCameraFixed_tB84EA66C717C757B6D1772F572D7C4A4AF9D32A3 * value) { ___bowCameraFixed_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___bowCameraFixed_21), (void*)value); } }; struct BowCamera_t7AA7E1A3AE4107303360B6EC9EC72E5F762D0FF9_StaticFields { public: // System.Boolean BowCamera::_isTouchMode bool ____isTouchMode_8; // BowCamera BowCamera::_ins BowCamera_t7AA7E1A3AE4107303360B6EC9EC72E5F762D0FF9 * ____ins_12; public: inline static int32_t get_offset_of__isTouchMode_8() { return static_cast(offsetof(BowCamera_t7AA7E1A3AE4107303360B6EC9EC72E5F762D0FF9_StaticFields, ____isTouchMode_8)); } inline bool get__isTouchMode_8() const { return ____isTouchMode_8; } inline bool* get_address_of__isTouchMode_8() { return &____isTouchMode_8; } inline void set__isTouchMode_8(bool value) { ____isTouchMode_8 = value; } inline static int32_t get_offset_of__ins_12() { return static_cast(offsetof(BowCamera_t7AA7E1A3AE4107303360B6EC9EC72E5F762D0FF9_StaticFields, ____ins_12)); } inline BowCamera_t7AA7E1A3AE4107303360B6EC9EC72E5F762D0FF9 * get__ins_12() const { return ____ins_12; } inline BowCamera_t7AA7E1A3AE4107303360B6EC9EC72E5F762D0FF9 ** get_address_of__ins_12() { return &____ins_12; } inline void set__ins_12(BowCamera_t7AA7E1A3AE4107303360B6EC9EC72E5F762D0FF9 * value) { ____ins_12 = value; Il2CppCodeGenWriteBarrier((void**)(&____ins_12), (void*)value); } }; // JC.Unity.Picker.DatePickerGroup struct DatePickerGroup_t71E7FBA55BB588830802A8486F57942BFFB72516 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: // System.DateTime JC.Unity.Picker.DatePickerGroup::minDate DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___minDate_4; // System.DateTime JC.Unity.Picker.DatePickerGroup::maxDate DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___maxDate_5; // System.DateTime JC.Unity.Picker.DatePickerGroup::selectDate DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___selectDate_6; // System.Collections.Generic.List`1 JC.Unity.Picker.DatePickerGroup::datePickerList List_1_tE00ED8A38D30AEEF7640BA5742471CBFD07CC72D * ___datePickerList_7; // UnityEngine.UI.Button JC.Unity.Picker.DatePickerGroup::btnClose Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * ___btnClose_8; // UnityEngine.UI.Button JC.Unity.Picker.DatePickerGroup::btnEnter Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * ___btnEnter_9; // System.Action`1 JC.Unity.Picker.DatePickerGroup::onEnter Action_1_t09C12AA7E5E85A97B5B1F128A642D012DF05E10F * ___onEnter_10; // System.Single JC.Unity.Picker.DatePickerGroup::_height float ____height_11; public: inline static int32_t get_offset_of_minDate_4() { return static_cast(offsetof(DatePickerGroup_t71E7FBA55BB588830802A8486F57942BFFB72516, ___minDate_4)); } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_minDate_4() const { return ___minDate_4; } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_minDate_4() { return &___minDate_4; } inline void set_minDate_4(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value) { ___minDate_4 = value; } inline static int32_t get_offset_of_maxDate_5() { return static_cast(offsetof(DatePickerGroup_t71E7FBA55BB588830802A8486F57942BFFB72516, ___maxDate_5)); } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_maxDate_5() const { return ___maxDate_5; } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_maxDate_5() { return &___maxDate_5; } inline void set_maxDate_5(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value) { ___maxDate_5 = value; } inline static int32_t get_offset_of_selectDate_6() { return static_cast(offsetof(DatePickerGroup_t71E7FBA55BB588830802A8486F57942BFFB72516, ___selectDate_6)); } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_selectDate_6() const { return ___selectDate_6; } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_selectDate_6() { return &___selectDate_6; } inline void set_selectDate_6(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value) { ___selectDate_6 = value; } inline static int32_t get_offset_of_datePickerList_7() { return static_cast(offsetof(DatePickerGroup_t71E7FBA55BB588830802A8486F57942BFFB72516, ___datePickerList_7)); } inline List_1_tE00ED8A38D30AEEF7640BA5742471CBFD07CC72D * get_datePickerList_7() const { return ___datePickerList_7; } inline List_1_tE00ED8A38D30AEEF7640BA5742471CBFD07CC72D ** get_address_of_datePickerList_7() { return &___datePickerList_7; } inline void set_datePickerList_7(List_1_tE00ED8A38D30AEEF7640BA5742471CBFD07CC72D * value) { ___datePickerList_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___datePickerList_7), (void*)value); } inline static int32_t get_offset_of_btnClose_8() { return static_cast(offsetof(DatePickerGroup_t71E7FBA55BB588830802A8486F57942BFFB72516, ___btnClose_8)); } inline Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * get_btnClose_8() const { return ___btnClose_8; } inline Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D ** get_address_of_btnClose_8() { return &___btnClose_8; } inline void set_btnClose_8(Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * value) { ___btnClose_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___btnClose_8), (void*)value); } inline static int32_t get_offset_of_btnEnter_9() { return static_cast(offsetof(DatePickerGroup_t71E7FBA55BB588830802A8486F57942BFFB72516, ___btnEnter_9)); } inline Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * get_btnEnter_9() const { return ___btnEnter_9; } inline Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D ** get_address_of_btnEnter_9() { return &___btnEnter_9; } inline void set_btnEnter_9(Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * value) { ___btnEnter_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___btnEnter_9), (void*)value); } inline static int32_t get_offset_of_onEnter_10() { return static_cast(offsetof(DatePickerGroup_t71E7FBA55BB588830802A8486F57942BFFB72516, ___onEnter_10)); } inline Action_1_t09C12AA7E5E85A97B5B1F128A642D012DF05E10F * get_onEnter_10() const { return ___onEnter_10; } inline Action_1_t09C12AA7E5E85A97B5B1F128A642D012DF05E10F ** get_address_of_onEnter_10() { return &___onEnter_10; } inline void set_onEnter_10(Action_1_t09C12AA7E5E85A97B5B1F128A642D012DF05E10F * value) { ___onEnter_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___onEnter_10), (void*)value); } inline static int32_t get_offset_of__height_11() { return static_cast(offsetof(DatePickerGroup_t71E7FBA55BB588830802A8486F57942BFFB72516, ____height_11)); } inline float get__height_11() const { return ____height_11; } inline float* get_address_of__height_11() { return &____height_11; } inline void set__height_11(float value) { ____height_11 = value; } }; // HRB_Bluetooth struct HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: // System.String HRB_Bluetooth::targetDeviceName String_t* ___targetDeviceName_4; // ArduinoBluetoothAPI.BluetoothHelper HRB_Bluetooth::bluetoothHelper BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2 * ___bluetoothHelper_5; // ArduinoBluetoothAPI.BluetoothHelperCharacteristic HRB_Bluetooth::characteristicWrite BluetoothHelperCharacteristic_t192402A7C03FD9857C87822D541F8737A469B6E9 * ___characteristicWrite_6; // ArduinoBluetoothAPI.BluetoothHelperService HRB_Bluetooth::bluetoothService BluetoothHelperService_t4C830DA91BDB3A9EC558D45C55A9318E931CA2A9 * ___bluetoothService_7; // System.String HRB_Bluetooth::deviceName String_t* ___deviceName_8; // System.Boolean HRB_Bluetooth::canConnect bool ___canConnect_9; // UnityEngine.UI.Text HRB_Bluetooth::textUI Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * ___textUI_10; // BluetoothStatusEnum HRB_Bluetooth::status int32_t ___status_11; // System.Action HRB_Bluetooth::onFindTargetDevice Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___onFindTargetDevice_12; // System.Boolean HRB_Bluetooth::userDoConnect bool ___userDoConnect_13; // System.Boolean HRB_Bluetooth::doConnect bool ___doConnect_14; // System.Func`1 HRB_Bluetooth::action_DoConnectInterceptor Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * ___action_DoConnectInterceptor_15; public: inline static int32_t get_offset_of_targetDeviceName_4() { return static_cast(offsetof(HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D, ___targetDeviceName_4)); } inline String_t* get_targetDeviceName_4() const { return ___targetDeviceName_4; } inline String_t** get_address_of_targetDeviceName_4() { return &___targetDeviceName_4; } inline void set_targetDeviceName_4(String_t* value) { ___targetDeviceName_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___targetDeviceName_4), (void*)value); } inline static int32_t get_offset_of_bluetoothHelper_5() { return static_cast(offsetof(HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D, ___bluetoothHelper_5)); } inline BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2 * get_bluetoothHelper_5() const { return ___bluetoothHelper_5; } inline BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2 ** get_address_of_bluetoothHelper_5() { return &___bluetoothHelper_5; } inline void set_bluetoothHelper_5(BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2 * value) { ___bluetoothHelper_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___bluetoothHelper_5), (void*)value); } inline static int32_t get_offset_of_characteristicWrite_6() { return static_cast(offsetof(HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D, ___characteristicWrite_6)); } inline BluetoothHelperCharacteristic_t192402A7C03FD9857C87822D541F8737A469B6E9 * get_characteristicWrite_6() const { return ___characteristicWrite_6; } inline BluetoothHelperCharacteristic_t192402A7C03FD9857C87822D541F8737A469B6E9 ** get_address_of_characteristicWrite_6() { return &___characteristicWrite_6; } inline void set_characteristicWrite_6(BluetoothHelperCharacteristic_t192402A7C03FD9857C87822D541F8737A469B6E9 * value) { ___characteristicWrite_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___characteristicWrite_6), (void*)value); } inline static int32_t get_offset_of_bluetoothService_7() { return static_cast(offsetof(HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D, ___bluetoothService_7)); } inline BluetoothHelperService_t4C830DA91BDB3A9EC558D45C55A9318E931CA2A9 * get_bluetoothService_7() const { return ___bluetoothService_7; } inline BluetoothHelperService_t4C830DA91BDB3A9EC558D45C55A9318E931CA2A9 ** get_address_of_bluetoothService_7() { return &___bluetoothService_7; } inline void set_bluetoothService_7(BluetoothHelperService_t4C830DA91BDB3A9EC558D45C55A9318E931CA2A9 * value) { ___bluetoothService_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___bluetoothService_7), (void*)value); } inline static int32_t get_offset_of_deviceName_8() { return static_cast(offsetof(HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D, ___deviceName_8)); } inline String_t* get_deviceName_8() const { return ___deviceName_8; } inline String_t** get_address_of_deviceName_8() { return &___deviceName_8; } inline void set_deviceName_8(String_t* value) { ___deviceName_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___deviceName_8), (void*)value); } inline static int32_t get_offset_of_canConnect_9() { return static_cast(offsetof(HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D, ___canConnect_9)); } inline bool get_canConnect_9() const { return ___canConnect_9; } inline bool* get_address_of_canConnect_9() { return &___canConnect_9; } inline void set_canConnect_9(bool value) { ___canConnect_9 = value; } inline static int32_t get_offset_of_textUI_10() { return static_cast(offsetof(HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D, ___textUI_10)); } inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * get_textUI_10() const { return ___textUI_10; } inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 ** get_address_of_textUI_10() { return &___textUI_10; } inline void set_textUI_10(Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * value) { ___textUI_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___textUI_10), (void*)value); } inline static int32_t get_offset_of_status_11() { return static_cast(offsetof(HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D, ___status_11)); } inline int32_t get_status_11() const { return ___status_11; } inline int32_t* get_address_of_status_11() { return &___status_11; } inline void set_status_11(int32_t value) { ___status_11 = value; } inline static int32_t get_offset_of_onFindTargetDevice_12() { return static_cast(offsetof(HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D, ___onFindTargetDevice_12)); } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * get_onFindTargetDevice_12() const { return ___onFindTargetDevice_12; } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 ** get_address_of_onFindTargetDevice_12() { return &___onFindTargetDevice_12; } inline void set_onFindTargetDevice_12(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * value) { ___onFindTargetDevice_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___onFindTargetDevice_12), (void*)value); } inline static int32_t get_offset_of_userDoConnect_13() { return static_cast(offsetof(HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D, ___userDoConnect_13)); } inline bool get_userDoConnect_13() const { return ___userDoConnect_13; } inline bool* get_address_of_userDoConnect_13() { return &___userDoConnect_13; } inline void set_userDoConnect_13(bool value) { ___userDoConnect_13 = value; } inline static int32_t get_offset_of_doConnect_14() { return static_cast(offsetof(HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D, ___doConnect_14)); } inline bool get_doConnect_14() const { return ___doConnect_14; } inline bool* get_address_of_doConnect_14() { return &___doConnect_14; } inline void set_doConnect_14(bool value) { ___doConnect_14 = value; } inline static int32_t get_offset_of_action_DoConnectInterceptor_15() { return static_cast(offsetof(HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D, ___action_DoConnectInterceptor_15)); } inline Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * get_action_DoConnectInterceptor_15() const { return ___action_DoConnectInterceptor_15; } inline Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F ** get_address_of_action_DoConnectInterceptor_15() { return &___action_DoConnectInterceptor_15; } inline void set_action_DoConnectInterceptor_15(Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * value) { ___action_DoConnectInterceptor_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___action_DoConnectInterceptor_15), (void*)value); } }; // HRB_Mgr struct HRB_Mgr_tC4108F6765C8604CCCC0B79BCF577788E303F856 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: public: }; // InputFieldFocusListener struct InputFieldFocusListener_t56C02463411D50EFB479098C91BA0BA1C3150EB9 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: // UnityEngine.UI.InputField InputFieldFocusListener::inputField InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 * ___inputField_4; // System.Action InputFieldFocusListener::onBeginFocus Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___onBeginFocus_5; // System.Boolean InputFieldFocusListener::_isFocused bool ____isFocused_6; // System.Boolean InputFieldFocusListener::_curIsFocused bool ____curIsFocused_7; public: inline static int32_t get_offset_of_inputField_4() { return static_cast(offsetof(InputFieldFocusListener_t56C02463411D50EFB479098C91BA0BA1C3150EB9, ___inputField_4)); } inline InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 * get_inputField_4() const { return ___inputField_4; } inline InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 ** get_address_of_inputField_4() { return &___inputField_4; } inline void set_inputField_4(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 * value) { ___inputField_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___inputField_4), (void*)value); } inline static int32_t get_offset_of_onBeginFocus_5() { return static_cast(offsetof(InputFieldFocusListener_t56C02463411D50EFB479098C91BA0BA1C3150EB9, ___onBeginFocus_5)); } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * get_onBeginFocus_5() const { return ___onBeginFocus_5; } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 ** get_address_of_onBeginFocus_5() { return &___onBeginFocus_5; } inline void set_onBeginFocus_5(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * value) { ___onBeginFocus_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___onBeginFocus_5), (void*)value); } inline static int32_t get_offset_of__isFocused_6() { return static_cast(offsetof(InputFieldFocusListener_t56C02463411D50EFB479098C91BA0BA1C3150EB9, ____isFocused_6)); } inline bool get__isFocused_6() const { return ____isFocused_6; } inline bool* get_address_of__isFocused_6() { return &____isFocused_6; } inline void set__isFocused_6(bool value) { ____isFocused_6 = value; } inline static int32_t get_offset_of__curIsFocused_7() { return static_cast(offsetof(InputFieldFocusListener_t56C02463411D50EFB479098C91BA0BA1C3150EB9, ____curIsFocused_7)); } inline bool get__curIsFocused_7() const { return ____curIsFocused_7; } inline bool* get_address_of__curIsFocused_7() { return &____curIsFocused_7; } inline void set__curIsFocused_7(bool value) { ____curIsFocused_7 = value; } }; // System.MissingFieldException struct MissingFieldException_t608CFBD864BEF9A5608F5E4EE1AFF009769E835A : public MissingMemberException_t890E7665FD7C812DAD826E4B5CF55F20F16CF639 { public: public: }; // PersistenHandler struct PersistenHandler_t0045D44D2514530321E6C396BB8FD5B9222E4CB1 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: // MenuBackController PersistenHandler::menuBackCtr MenuBackController_t545B27D5E7BCA7C609808B7960239E0FC034ADA4 * ___menuBackCtr_4; public: inline static int32_t get_offset_of_menuBackCtr_4() { return static_cast(offsetof(PersistenHandler_t0045D44D2514530321E6C396BB8FD5B9222E4CB1, ___menuBackCtr_4)); } inline MenuBackController_t545B27D5E7BCA7C609808B7960239E0FC034ADA4 * get_menuBackCtr_4() const { return ___menuBackCtr_4; } inline MenuBackController_t545B27D5E7BCA7C609808B7960239E0FC034ADA4 ** get_address_of_menuBackCtr_4() { return &___menuBackCtr_4; } inline void set_menuBackCtr_4(MenuBackController_t545B27D5E7BCA7C609808B7960239E0FC034ADA4 * value) { ___menuBackCtr_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___menuBackCtr_4), (void*)value); } }; struct PersistenHandler_t0045D44D2514530321E6C396BB8FD5B9222E4CB1_StaticFields { public: // PersistenHandler PersistenHandler::ins PersistenHandler_t0045D44D2514530321E6C396BB8FD5B9222E4CB1 * ___ins_5; public: inline static int32_t get_offset_of_ins_5() { return static_cast(offsetof(PersistenHandler_t0045D44D2514530321E6C396BB8FD5B9222E4CB1_StaticFields, ___ins_5)); } inline PersistenHandler_t0045D44D2514530321E6C396BB8FD5B9222E4CB1 * get_ins_5() const { return ___ins_5; } inline PersistenHandler_t0045D44D2514530321E6C396BB8FD5B9222E4CB1 ** get_address_of_ins_5() { return &___ins_5; } inline void set_ins_5(PersistenHandler_t0045D44D2514530321E6C396BB8FD5B9222E4CB1 * value) { ___ins_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___ins_5), (void*)value); } }; // PopupMgr struct PopupMgr_t6FED92ED719BC99F2D92EB96849B1570DB8580AC : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: // UnityEngine.Transform PopupMgr::popupRoot Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___popupRoot_5; public: inline static int32_t get_offset_of_popupRoot_5() { return static_cast(offsetof(PopupMgr_t6FED92ED719BC99F2D92EB96849B1570DB8580AC, ___popupRoot_5)); } inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * get_popupRoot_5() const { return ___popupRoot_5; } inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 ** get_address_of_popupRoot_5() { return &___popupRoot_5; } inline void set_popupRoot_5(Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * value) { ___popupRoot_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___popupRoot_5), (void*)value); } }; struct PopupMgr_t6FED92ED719BC99F2D92EB96849B1570DB8580AC_StaticFields { public: // PopupMgr PopupMgr::_ins PopupMgr_t6FED92ED719BC99F2D92EB96849B1570DB8580AC * ____ins_4; public: inline static int32_t get_offset_of__ins_4() { return static_cast(offsetof(PopupMgr_t6FED92ED719BC99F2D92EB96849B1570DB8580AC_StaticFields, ____ins_4)); } inline PopupMgr_t6FED92ED719BC99F2D92EB96849B1570DB8580AC * get__ins_4() const { return ____ins_4; } inline PopupMgr_t6FED92ED719BC99F2D92EB96849B1570DB8580AC ** get_address_of__ins_4() { return &____ins_4; } inline void set__ins_4(PopupMgr_t6FED92ED719BC99F2D92EB96849B1570DB8580AC * value) { ____ins_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____ins_4), (void*)value); } }; // JCUnityLib.SceneResourceManager struct SceneResourceManager_t5836F17AC072ACCD0FB4CD2FFB6B814D68D0E0CF : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: // UnityEngine.GameObject[] JCUnityLib.SceneResourceManager::prefabs GameObjectU5BU5D_tA88FC1A1FC9D4D73D0B3984D4B0ECE88F4C47642* ___prefabs_4; public: inline static int32_t get_offset_of_prefabs_4() { return static_cast(offsetof(SceneResourceManager_t5836F17AC072ACCD0FB4CD2FFB6B814D68D0E0CF, ___prefabs_4)); } inline GameObjectU5BU5D_tA88FC1A1FC9D4D73D0B3984D4B0ECE88F4C47642* get_prefabs_4() const { return ___prefabs_4; } inline GameObjectU5BU5D_tA88FC1A1FC9D4D73D0B3984D4B0ECE88F4C47642** get_address_of_prefabs_4() { return &___prefabs_4; } inline void set_prefabs_4(GameObjectU5BU5D_tA88FC1A1FC9D4D73D0B3984D4B0ECE88F4C47642* value) { ___prefabs_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___prefabs_4), (void*)value); } }; struct SceneResourceManager_t5836F17AC072ACCD0FB4CD2FFB6B814D68D0E0CF_StaticFields { public: // JCUnityLib.SceneResourceManager JCUnityLib.SceneResourceManager::s_Instance SceneResourceManager_t5836F17AC072ACCD0FB4CD2FFB6B814D68D0E0CF * ___s_Instance_5; public: inline static int32_t get_offset_of_s_Instance_5() { return static_cast(offsetof(SceneResourceManager_t5836F17AC072ACCD0FB4CD2FFB6B814D68D0E0CF_StaticFields, ___s_Instance_5)); } inline SceneResourceManager_t5836F17AC072ACCD0FB4CD2FFB6B814D68D0E0CF * get_s_Instance_5() const { return ___s_Instance_5; } inline SceneResourceManager_t5836F17AC072ACCD0FB4CD2FFB6B814D68D0E0CF ** get_address_of_s_Instance_5() { return &___s_Instance_5; } inline void set_s_Instance_5(SceneResourceManager_t5836F17AC072ACCD0FB4CD2FFB6B814D68D0E0CF * value) { ___s_Instance_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_Instance_5), (void*)value); } }; // JCUnityLib.UI.TwoPoleSwitch struct TwoPoleSwitch_tE7E4EC1E9EA056C875ADC10C88ED8BC83B0DF540 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: // UnityEngine.RectTransform JCUnityLib.UI.TwoPoleSwitch::point RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * ___point_4; // System.Boolean JCUnityLib.UI.TwoPoleSwitch::_isSwitchOn bool ____isSwitchOn_5; // UnityEngine.Color JCUnityLib.UI.TwoPoleSwitch::colorSwitchOn Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___colorSwitchOn_6; // UnityEngine.Color JCUnityLib.UI.TwoPoleSwitch::colorSwitchOff Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___colorSwitchOff_7; // System.Func`2 JCUnityLib.UI.TwoPoleSwitch::onClick Func_2_t50F598941CFDF02619DC5D52FFDBC329473C5F7B * ___onClick_8; // UnityEngine.UI.Image JCUnityLib.UI.TwoPoleSwitch::_image Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C * ____image_9; public: inline static int32_t get_offset_of_point_4() { return static_cast(offsetof(TwoPoleSwitch_tE7E4EC1E9EA056C875ADC10C88ED8BC83B0DF540, ___point_4)); } inline RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * get_point_4() const { return ___point_4; } inline RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 ** get_address_of_point_4() { return &___point_4; } inline void set_point_4(RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * value) { ___point_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___point_4), (void*)value); } inline static int32_t get_offset_of__isSwitchOn_5() { return static_cast(offsetof(TwoPoleSwitch_tE7E4EC1E9EA056C875ADC10C88ED8BC83B0DF540, ____isSwitchOn_5)); } inline bool get__isSwitchOn_5() const { return ____isSwitchOn_5; } inline bool* get_address_of__isSwitchOn_5() { return &____isSwitchOn_5; } inline void set__isSwitchOn_5(bool value) { ____isSwitchOn_5 = value; } inline static int32_t get_offset_of_colorSwitchOn_6() { return static_cast(offsetof(TwoPoleSwitch_tE7E4EC1E9EA056C875ADC10C88ED8BC83B0DF540, ___colorSwitchOn_6)); } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_colorSwitchOn_6() const { return ___colorSwitchOn_6; } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_colorSwitchOn_6() { return &___colorSwitchOn_6; } inline void set_colorSwitchOn_6(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value) { ___colorSwitchOn_6 = value; } inline static int32_t get_offset_of_colorSwitchOff_7() { return static_cast(offsetof(TwoPoleSwitch_tE7E4EC1E9EA056C875ADC10C88ED8BC83B0DF540, ___colorSwitchOff_7)); } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_colorSwitchOff_7() const { return ___colorSwitchOff_7; } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_colorSwitchOff_7() { return &___colorSwitchOff_7; } inline void set_colorSwitchOff_7(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value) { ___colorSwitchOff_7 = value; } inline static int32_t get_offset_of_onClick_8() { return static_cast(offsetof(TwoPoleSwitch_tE7E4EC1E9EA056C875ADC10C88ED8BC83B0DF540, ___onClick_8)); } inline Func_2_t50F598941CFDF02619DC5D52FFDBC329473C5F7B * get_onClick_8() const { return ___onClick_8; } inline Func_2_t50F598941CFDF02619DC5D52FFDBC329473C5F7B ** get_address_of_onClick_8() { return &___onClick_8; } inline void set_onClick_8(Func_2_t50F598941CFDF02619DC5D52FFDBC329473C5F7B * value) { ___onClick_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___onClick_8), (void*)value); } inline static int32_t get_offset_of__image_9() { return static_cast(offsetof(TwoPoleSwitch_tE7E4EC1E9EA056C875ADC10C88ED8BC83B0DF540, ____image_9)); } inline Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C * get__image_9() const { return ____image_9; } inline Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C ** get_address_of__image_9() { return &____image_9; } inline void set__image_9(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C * value) { ____image_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____image_9), (void*)value); } }; // UnityEngine.EventSystems.UIBehaviour struct UIBehaviour_tD1C6E2D542222546D68510ECE74036EFBC3C3B0E : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: public: }; // JCUnityLib.ViewBase struct ViewBase_tE400461F1C7843F494ACB48A3DFF21BDBF2B78FC : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: // System.Boolean JCUnityLib.ViewBase::k__BackingField bool ___U3CviewInitedU3Ek__BackingField_4; // System.Boolean JCUnityLib.ViewBase::k__BackingField bool ___U3CviewDestroyedU3Ek__BackingField_5; public: inline static int32_t get_offset_of_U3CviewInitedU3Ek__BackingField_4() { return static_cast(offsetof(ViewBase_tE400461F1C7843F494ACB48A3DFF21BDBF2B78FC, ___U3CviewInitedU3Ek__BackingField_4)); } inline bool get_U3CviewInitedU3Ek__BackingField_4() const { return ___U3CviewInitedU3Ek__BackingField_4; } inline bool* get_address_of_U3CviewInitedU3Ek__BackingField_4() { return &___U3CviewInitedU3Ek__BackingField_4; } inline void set_U3CviewInitedU3Ek__BackingField_4(bool value) { ___U3CviewInitedU3Ek__BackingField_4 = value; } inline static int32_t get_offset_of_U3CviewDestroyedU3Ek__BackingField_5() { return static_cast(offsetof(ViewBase_tE400461F1C7843F494ACB48A3DFF21BDBF2B78FC, ___U3CviewDestroyedU3Ek__BackingField_5)); } inline bool get_U3CviewDestroyedU3Ek__BackingField_5() const { return ___U3CviewDestroyedU3Ek__BackingField_5; } inline bool* get_address_of_U3CviewDestroyedU3Ek__BackingField_5() { return &___U3CviewDestroyedU3Ek__BackingField_5; } inline void set_U3CviewDestroyedU3Ek__BackingField_5(bool value) { ___U3CviewDestroyedU3Ek__BackingField_5 = value; } }; // UnityEngine.UI.CanvasScaler struct CanvasScaler_t8EF50255FD2913C31BD62B14476C994F64D711F1 : public UIBehaviour_tD1C6E2D542222546D68510ECE74036EFBC3C3B0E { public: // UnityEngine.UI.CanvasScaler/ScaleMode UnityEngine.UI.CanvasScaler::m_UiScaleMode int32_t ___m_UiScaleMode_4; // System.Single UnityEngine.UI.CanvasScaler::m_ReferencePixelsPerUnit float ___m_ReferencePixelsPerUnit_5; // System.Single UnityEngine.UI.CanvasScaler::m_ScaleFactor float ___m_ScaleFactor_6; // UnityEngine.Vector2 UnityEngine.UI.CanvasScaler::m_ReferenceResolution Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_ReferenceResolution_7; // UnityEngine.UI.CanvasScaler/ScreenMatchMode UnityEngine.UI.CanvasScaler::m_ScreenMatchMode int32_t ___m_ScreenMatchMode_8; // System.Single UnityEngine.UI.CanvasScaler::m_MatchWidthOrHeight float ___m_MatchWidthOrHeight_9; // UnityEngine.UI.CanvasScaler/Unit UnityEngine.UI.CanvasScaler::m_PhysicalUnit int32_t ___m_PhysicalUnit_11; // System.Single UnityEngine.UI.CanvasScaler::m_FallbackScreenDPI float ___m_FallbackScreenDPI_12; // System.Single UnityEngine.UI.CanvasScaler::m_DefaultSpriteDPI float ___m_DefaultSpriteDPI_13; // System.Single UnityEngine.UI.CanvasScaler::m_DynamicPixelsPerUnit float ___m_DynamicPixelsPerUnit_14; // UnityEngine.Canvas UnityEngine.UI.CanvasScaler::m_Canvas Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA * ___m_Canvas_15; // System.Single UnityEngine.UI.CanvasScaler::m_PrevScaleFactor float ___m_PrevScaleFactor_16; // System.Single UnityEngine.UI.CanvasScaler::m_PrevReferencePixelsPerUnit float ___m_PrevReferencePixelsPerUnit_17; // System.Boolean UnityEngine.UI.CanvasScaler::m_PresetInfoIsWorld bool ___m_PresetInfoIsWorld_18; public: inline static int32_t get_offset_of_m_UiScaleMode_4() { return static_cast(offsetof(CanvasScaler_t8EF50255FD2913C31BD62B14476C994F64D711F1, ___m_UiScaleMode_4)); } inline int32_t get_m_UiScaleMode_4() const { return ___m_UiScaleMode_4; } inline int32_t* get_address_of_m_UiScaleMode_4() { return &___m_UiScaleMode_4; } inline void set_m_UiScaleMode_4(int32_t value) { ___m_UiScaleMode_4 = value; } inline static int32_t get_offset_of_m_ReferencePixelsPerUnit_5() { return static_cast(offsetof(CanvasScaler_t8EF50255FD2913C31BD62B14476C994F64D711F1, ___m_ReferencePixelsPerUnit_5)); } inline float get_m_ReferencePixelsPerUnit_5() const { return ___m_ReferencePixelsPerUnit_5; } inline float* get_address_of_m_ReferencePixelsPerUnit_5() { return &___m_ReferencePixelsPerUnit_5; } inline void set_m_ReferencePixelsPerUnit_5(float value) { ___m_ReferencePixelsPerUnit_5 = value; } inline static int32_t get_offset_of_m_ScaleFactor_6() { return static_cast(offsetof(CanvasScaler_t8EF50255FD2913C31BD62B14476C994F64D711F1, ___m_ScaleFactor_6)); } inline float get_m_ScaleFactor_6() const { return ___m_ScaleFactor_6; } inline float* get_address_of_m_ScaleFactor_6() { return &___m_ScaleFactor_6; } inline void set_m_ScaleFactor_6(float value) { ___m_ScaleFactor_6 = value; } inline static int32_t get_offset_of_m_ReferenceResolution_7() { return static_cast(offsetof(CanvasScaler_t8EF50255FD2913C31BD62B14476C994F64D711F1, ___m_ReferenceResolution_7)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_m_ReferenceResolution_7() const { return ___m_ReferenceResolution_7; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_m_ReferenceResolution_7() { return &___m_ReferenceResolution_7; } inline void set_m_ReferenceResolution_7(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___m_ReferenceResolution_7 = value; } inline static int32_t get_offset_of_m_ScreenMatchMode_8() { return static_cast(offsetof(CanvasScaler_t8EF50255FD2913C31BD62B14476C994F64D711F1, ___m_ScreenMatchMode_8)); } inline int32_t get_m_ScreenMatchMode_8() const { return ___m_ScreenMatchMode_8; } inline int32_t* get_address_of_m_ScreenMatchMode_8() { return &___m_ScreenMatchMode_8; } inline void set_m_ScreenMatchMode_8(int32_t value) { ___m_ScreenMatchMode_8 = value; } inline static int32_t get_offset_of_m_MatchWidthOrHeight_9() { return static_cast(offsetof(CanvasScaler_t8EF50255FD2913C31BD62B14476C994F64D711F1, ___m_MatchWidthOrHeight_9)); } inline float get_m_MatchWidthOrHeight_9() const { return ___m_MatchWidthOrHeight_9; } inline float* get_address_of_m_MatchWidthOrHeight_9() { return &___m_MatchWidthOrHeight_9; } inline void set_m_MatchWidthOrHeight_9(float value) { ___m_MatchWidthOrHeight_9 = value; } inline static int32_t get_offset_of_m_PhysicalUnit_11() { return static_cast(offsetof(CanvasScaler_t8EF50255FD2913C31BD62B14476C994F64D711F1, ___m_PhysicalUnit_11)); } inline int32_t get_m_PhysicalUnit_11() const { return ___m_PhysicalUnit_11; } inline int32_t* get_address_of_m_PhysicalUnit_11() { return &___m_PhysicalUnit_11; } inline void set_m_PhysicalUnit_11(int32_t value) { ___m_PhysicalUnit_11 = value; } inline static int32_t get_offset_of_m_FallbackScreenDPI_12() { return static_cast(offsetof(CanvasScaler_t8EF50255FD2913C31BD62B14476C994F64D711F1, ___m_FallbackScreenDPI_12)); } inline float get_m_FallbackScreenDPI_12() const { return ___m_FallbackScreenDPI_12; } inline float* get_address_of_m_FallbackScreenDPI_12() { return &___m_FallbackScreenDPI_12; } inline void set_m_FallbackScreenDPI_12(float value) { ___m_FallbackScreenDPI_12 = value; } inline static int32_t get_offset_of_m_DefaultSpriteDPI_13() { return static_cast(offsetof(CanvasScaler_t8EF50255FD2913C31BD62B14476C994F64D711F1, ___m_DefaultSpriteDPI_13)); } inline float get_m_DefaultSpriteDPI_13() const { return ___m_DefaultSpriteDPI_13; } inline float* get_address_of_m_DefaultSpriteDPI_13() { return &___m_DefaultSpriteDPI_13; } inline void set_m_DefaultSpriteDPI_13(float value) { ___m_DefaultSpriteDPI_13 = value; } inline static int32_t get_offset_of_m_DynamicPixelsPerUnit_14() { return static_cast(offsetof(CanvasScaler_t8EF50255FD2913C31BD62B14476C994F64D711F1, ___m_DynamicPixelsPerUnit_14)); } inline float get_m_DynamicPixelsPerUnit_14() const { return ___m_DynamicPixelsPerUnit_14; } inline float* get_address_of_m_DynamicPixelsPerUnit_14() { return &___m_DynamicPixelsPerUnit_14; } inline void set_m_DynamicPixelsPerUnit_14(float value) { ___m_DynamicPixelsPerUnit_14 = value; } inline static int32_t get_offset_of_m_Canvas_15() { return static_cast(offsetof(CanvasScaler_t8EF50255FD2913C31BD62B14476C994F64D711F1, ___m_Canvas_15)); } inline Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA * get_m_Canvas_15() const { return ___m_Canvas_15; } inline Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA ** get_address_of_m_Canvas_15() { return &___m_Canvas_15; } inline void set_m_Canvas_15(Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA * value) { ___m_Canvas_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Canvas_15), (void*)value); } inline static int32_t get_offset_of_m_PrevScaleFactor_16() { return static_cast(offsetof(CanvasScaler_t8EF50255FD2913C31BD62B14476C994F64D711F1, ___m_PrevScaleFactor_16)); } inline float get_m_PrevScaleFactor_16() const { return ___m_PrevScaleFactor_16; } inline float* get_address_of_m_PrevScaleFactor_16() { return &___m_PrevScaleFactor_16; } inline void set_m_PrevScaleFactor_16(float value) { ___m_PrevScaleFactor_16 = value; } inline static int32_t get_offset_of_m_PrevReferencePixelsPerUnit_17() { return static_cast(offsetof(CanvasScaler_t8EF50255FD2913C31BD62B14476C994F64D711F1, ___m_PrevReferencePixelsPerUnit_17)); } inline float get_m_PrevReferencePixelsPerUnit_17() const { return ___m_PrevReferencePixelsPerUnit_17; } inline float* get_address_of_m_PrevReferencePixelsPerUnit_17() { return &___m_PrevReferencePixelsPerUnit_17; } inline void set_m_PrevReferencePixelsPerUnit_17(float value) { ___m_PrevReferencePixelsPerUnit_17 = value; } inline static int32_t get_offset_of_m_PresetInfoIsWorld_18() { return static_cast(offsetof(CanvasScaler_t8EF50255FD2913C31BD62B14476C994F64D711F1, ___m_PresetInfoIsWorld_18)); } inline bool get_m_PresetInfoIsWorld_18() const { return ___m_PresetInfoIsWorld_18; } inline bool* get_address_of_m_PresetInfoIsWorld_18() { return &___m_PresetInfoIsWorld_18; } inline void set_m_PresetInfoIsWorld_18(bool value) { ___m_PresetInfoIsWorld_18 = value; } }; // UnityEngine.UI.Graphic struct Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24 : public UIBehaviour_tD1C6E2D542222546D68510ECE74036EFBC3C3B0E { public: // UnityEngine.Material UnityEngine.UI.Graphic::m_Material Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___m_Material_6; // UnityEngine.Color UnityEngine.UI.Graphic::m_Color Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___m_Color_7; // System.Boolean UnityEngine.UI.Graphic::m_SkipLayoutUpdate bool ___m_SkipLayoutUpdate_8; // System.Boolean UnityEngine.UI.Graphic::m_SkipMaterialUpdate bool ___m_SkipMaterialUpdate_9; // System.Boolean UnityEngine.UI.Graphic::m_RaycastTarget bool ___m_RaycastTarget_10; // UnityEngine.Vector4 UnityEngine.UI.Graphic::m_RaycastPadding Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___m_RaycastPadding_11; // UnityEngine.RectTransform UnityEngine.UI.Graphic::m_RectTransform RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * ___m_RectTransform_12; // UnityEngine.CanvasRenderer UnityEngine.UI.Graphic::m_CanvasRenderer CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E * ___m_CanvasRenderer_13; // UnityEngine.Canvas UnityEngine.UI.Graphic::m_Canvas Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA * ___m_Canvas_14; // System.Boolean UnityEngine.UI.Graphic::m_VertsDirty bool ___m_VertsDirty_15; // System.Boolean UnityEngine.UI.Graphic::m_MaterialDirty bool ___m_MaterialDirty_16; // UnityEngine.Events.UnityAction UnityEngine.UI.Graphic::m_OnDirtyLayoutCallback UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * ___m_OnDirtyLayoutCallback_17; // UnityEngine.Events.UnityAction UnityEngine.UI.Graphic::m_OnDirtyVertsCallback UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * ___m_OnDirtyVertsCallback_18; // UnityEngine.Events.UnityAction UnityEngine.UI.Graphic::m_OnDirtyMaterialCallback UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * ___m_OnDirtyMaterialCallback_19; // UnityEngine.Mesh UnityEngine.UI.Graphic::m_CachedMesh Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 * ___m_CachedMesh_22; // UnityEngine.Vector2[] UnityEngine.UI.Graphic::m_CachedUvs Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA* ___m_CachedUvs_23; // UnityEngine.UI.CoroutineTween.TweenRunner`1 UnityEngine.UI.Graphic::m_ColorTweenRunner TweenRunner_1_tD84B9953874682FCC36990AF2C54D748293908F3 * ___m_ColorTweenRunner_24; // System.Boolean UnityEngine.UI.Graphic::k__BackingField bool ___U3CuseLegacyMeshGenerationU3Ek__BackingField_25; public: inline static int32_t get_offset_of_m_Material_6() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_Material_6)); } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE * get_m_Material_6() const { return ___m_Material_6; } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE ** get_address_of_m_Material_6() { return &___m_Material_6; } inline void set_m_Material_6(Material_t8927C00353A72755313F046D0CE85178AE8218EE * value) { ___m_Material_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Material_6), (void*)value); } inline static int32_t get_offset_of_m_Color_7() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_Color_7)); } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_m_Color_7() const { return ___m_Color_7; } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_m_Color_7() { return &___m_Color_7; } inline void set_m_Color_7(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value) { ___m_Color_7 = value; } inline static int32_t get_offset_of_m_SkipLayoutUpdate_8() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_SkipLayoutUpdate_8)); } inline bool get_m_SkipLayoutUpdate_8() const { return ___m_SkipLayoutUpdate_8; } inline bool* get_address_of_m_SkipLayoutUpdate_8() { return &___m_SkipLayoutUpdate_8; } inline void set_m_SkipLayoutUpdate_8(bool value) { ___m_SkipLayoutUpdate_8 = value; } inline static int32_t get_offset_of_m_SkipMaterialUpdate_9() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_SkipMaterialUpdate_9)); } inline bool get_m_SkipMaterialUpdate_9() const { return ___m_SkipMaterialUpdate_9; } inline bool* get_address_of_m_SkipMaterialUpdate_9() { return &___m_SkipMaterialUpdate_9; } inline void set_m_SkipMaterialUpdate_9(bool value) { ___m_SkipMaterialUpdate_9 = value; } inline static int32_t get_offset_of_m_RaycastTarget_10() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_RaycastTarget_10)); } inline bool get_m_RaycastTarget_10() const { return ___m_RaycastTarget_10; } inline bool* get_address_of_m_RaycastTarget_10() { return &___m_RaycastTarget_10; } inline void set_m_RaycastTarget_10(bool value) { ___m_RaycastTarget_10 = value; } inline static int32_t get_offset_of_m_RaycastPadding_11() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_RaycastPadding_11)); } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_m_RaycastPadding_11() const { return ___m_RaycastPadding_11; } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_m_RaycastPadding_11() { return &___m_RaycastPadding_11; } inline void set_m_RaycastPadding_11(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value) { ___m_RaycastPadding_11 = value; } inline static int32_t get_offset_of_m_RectTransform_12() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_RectTransform_12)); } inline RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * get_m_RectTransform_12() const { return ___m_RectTransform_12; } inline RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 ** get_address_of_m_RectTransform_12() { return &___m_RectTransform_12; } inline void set_m_RectTransform_12(RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * value) { ___m_RectTransform_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_RectTransform_12), (void*)value); } inline static int32_t get_offset_of_m_CanvasRenderer_13() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_CanvasRenderer_13)); } inline CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E * get_m_CanvasRenderer_13() const { return ___m_CanvasRenderer_13; } inline CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E ** get_address_of_m_CanvasRenderer_13() { return &___m_CanvasRenderer_13; } inline void set_m_CanvasRenderer_13(CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E * value) { ___m_CanvasRenderer_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_CanvasRenderer_13), (void*)value); } inline static int32_t get_offset_of_m_Canvas_14() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_Canvas_14)); } inline Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA * get_m_Canvas_14() const { return ___m_Canvas_14; } inline Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA ** get_address_of_m_Canvas_14() { return &___m_Canvas_14; } inline void set_m_Canvas_14(Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA * value) { ___m_Canvas_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Canvas_14), (void*)value); } inline static int32_t get_offset_of_m_VertsDirty_15() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_VertsDirty_15)); } inline bool get_m_VertsDirty_15() const { return ___m_VertsDirty_15; } inline bool* get_address_of_m_VertsDirty_15() { return &___m_VertsDirty_15; } inline void set_m_VertsDirty_15(bool value) { ___m_VertsDirty_15 = value; } inline static int32_t get_offset_of_m_MaterialDirty_16() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_MaterialDirty_16)); } inline bool get_m_MaterialDirty_16() const { return ___m_MaterialDirty_16; } inline bool* get_address_of_m_MaterialDirty_16() { return &___m_MaterialDirty_16; } inline void set_m_MaterialDirty_16(bool value) { ___m_MaterialDirty_16 = value; } inline static int32_t get_offset_of_m_OnDirtyLayoutCallback_17() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_OnDirtyLayoutCallback_17)); } inline UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * get_m_OnDirtyLayoutCallback_17() const { return ___m_OnDirtyLayoutCallback_17; } inline UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 ** get_address_of_m_OnDirtyLayoutCallback_17() { return &___m_OnDirtyLayoutCallback_17; } inline void set_m_OnDirtyLayoutCallback_17(UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * value) { ___m_OnDirtyLayoutCallback_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_OnDirtyLayoutCallback_17), (void*)value); } inline static int32_t get_offset_of_m_OnDirtyVertsCallback_18() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_OnDirtyVertsCallback_18)); } inline UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * get_m_OnDirtyVertsCallback_18() const { return ___m_OnDirtyVertsCallback_18; } inline UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 ** get_address_of_m_OnDirtyVertsCallback_18() { return &___m_OnDirtyVertsCallback_18; } inline void set_m_OnDirtyVertsCallback_18(UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * value) { ___m_OnDirtyVertsCallback_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_OnDirtyVertsCallback_18), (void*)value); } inline static int32_t get_offset_of_m_OnDirtyMaterialCallback_19() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_OnDirtyMaterialCallback_19)); } inline UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * get_m_OnDirtyMaterialCallback_19() const { return ___m_OnDirtyMaterialCallback_19; } inline UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 ** get_address_of_m_OnDirtyMaterialCallback_19() { return &___m_OnDirtyMaterialCallback_19; } inline void set_m_OnDirtyMaterialCallback_19(UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * value) { ___m_OnDirtyMaterialCallback_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_OnDirtyMaterialCallback_19), (void*)value); } inline static int32_t get_offset_of_m_CachedMesh_22() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_CachedMesh_22)); } inline Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 * get_m_CachedMesh_22() const { return ___m_CachedMesh_22; } inline Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 ** get_address_of_m_CachedMesh_22() { return &___m_CachedMesh_22; } inline void set_m_CachedMesh_22(Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 * value) { ___m_CachedMesh_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_CachedMesh_22), (void*)value); } inline static int32_t get_offset_of_m_CachedUvs_23() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_CachedUvs_23)); } inline Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA* get_m_CachedUvs_23() const { return ___m_CachedUvs_23; } inline Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA** get_address_of_m_CachedUvs_23() { return &___m_CachedUvs_23; } inline void set_m_CachedUvs_23(Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA* value) { ___m_CachedUvs_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_CachedUvs_23), (void*)value); } inline static int32_t get_offset_of_m_ColorTweenRunner_24() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_ColorTweenRunner_24)); } inline TweenRunner_1_tD84B9953874682FCC36990AF2C54D748293908F3 * get_m_ColorTweenRunner_24() const { return ___m_ColorTweenRunner_24; } inline TweenRunner_1_tD84B9953874682FCC36990AF2C54D748293908F3 ** get_address_of_m_ColorTweenRunner_24() { return &___m_ColorTweenRunner_24; } inline void set_m_ColorTweenRunner_24(TweenRunner_1_tD84B9953874682FCC36990AF2C54D748293908F3 * value) { ___m_ColorTweenRunner_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ColorTweenRunner_24), (void*)value); } inline static int32_t get_offset_of_U3CuseLegacyMeshGenerationU3Ek__BackingField_25() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___U3CuseLegacyMeshGenerationU3Ek__BackingField_25)); } inline bool get_U3CuseLegacyMeshGenerationU3Ek__BackingField_25() const { return ___U3CuseLegacyMeshGenerationU3Ek__BackingField_25; } inline bool* get_address_of_U3CuseLegacyMeshGenerationU3Ek__BackingField_25() { return &___U3CuseLegacyMeshGenerationU3Ek__BackingField_25; } inline void set_U3CuseLegacyMeshGenerationU3Ek__BackingField_25(bool value) { ___U3CuseLegacyMeshGenerationU3Ek__BackingField_25 = value; } }; struct Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24_StaticFields { public: // UnityEngine.Material UnityEngine.UI.Graphic::s_DefaultUI Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___s_DefaultUI_4; // UnityEngine.Texture2D UnityEngine.UI.Graphic::s_WhiteTexture Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * ___s_WhiteTexture_5; // UnityEngine.Mesh UnityEngine.UI.Graphic::s_Mesh Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 * ___s_Mesh_20; // UnityEngine.UI.VertexHelper UnityEngine.UI.Graphic::s_VertexHelper VertexHelper_tDE8B67D3B076061C4F8DF325B0D63ED2E5367E55 * ___s_VertexHelper_21; public: inline static int32_t get_offset_of_s_DefaultUI_4() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24_StaticFields, ___s_DefaultUI_4)); } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE * get_s_DefaultUI_4() const { return ___s_DefaultUI_4; } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE ** get_address_of_s_DefaultUI_4() { return &___s_DefaultUI_4; } inline void set_s_DefaultUI_4(Material_t8927C00353A72755313F046D0CE85178AE8218EE * value) { ___s_DefaultUI_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_DefaultUI_4), (void*)value); } inline static int32_t get_offset_of_s_WhiteTexture_5() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24_StaticFields, ___s_WhiteTexture_5)); } inline Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * get_s_WhiteTexture_5() const { return ___s_WhiteTexture_5; } inline Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF ** get_address_of_s_WhiteTexture_5() { return &___s_WhiteTexture_5; } inline void set_s_WhiteTexture_5(Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * value) { ___s_WhiteTexture_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_WhiteTexture_5), (void*)value); } inline static int32_t get_offset_of_s_Mesh_20() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24_StaticFields, ___s_Mesh_20)); } inline Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 * get_s_Mesh_20() const { return ___s_Mesh_20; } inline Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 ** get_address_of_s_Mesh_20() { return &___s_Mesh_20; } inline void set_s_Mesh_20(Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 * value) { ___s_Mesh_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_Mesh_20), (void*)value); } inline static int32_t get_offset_of_s_VertexHelper_21() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24_StaticFields, ___s_VertexHelper_21)); } inline VertexHelper_tDE8B67D3B076061C4F8DF325B0D63ED2E5367E55 * get_s_VertexHelper_21() const { return ___s_VertexHelper_21; } inline VertexHelper_tDE8B67D3B076061C4F8DF325B0D63ED2E5367E55 ** get_address_of_s_VertexHelper_21() { return &___s_VertexHelper_21; } inline void set_s_VertexHelper_21(VertexHelper_tDE8B67D3B076061C4F8DF325B0D63ED2E5367E55 * value) { ___s_VertexHelper_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_VertexHelper_21), (void*)value); } }; // HRB_DegreaseView struct HRB_DegreaseView_tBFDCE6B3DF07E6FBF2F3EF05AE4AD2B9481183BD : public ViewBase_tE400461F1C7843F494ACB48A3DFF21BDBF2B78FC { public: // UnityEngine.UI.InputField HRB_DegreaseView::inputField_bmpMin InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 * ___inputField_bmpMin_6; // UnityEngine.UI.Text HRB_DegreaseView::text_TimeCounter Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * ___text_TimeCounter_7; // System.Boolean HRB_DegreaseView::_isTimeCounterStart bool ____isTimeCounterStart_8; // System.Single HRB_DegreaseView::_curTimeCount float ____curTimeCount_9; public: inline static int32_t get_offset_of_inputField_bmpMin_6() { return static_cast(offsetof(HRB_DegreaseView_tBFDCE6B3DF07E6FBF2F3EF05AE4AD2B9481183BD, ___inputField_bmpMin_6)); } inline InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 * get_inputField_bmpMin_6() const { return ___inputField_bmpMin_6; } inline InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 ** get_address_of_inputField_bmpMin_6() { return &___inputField_bmpMin_6; } inline void set_inputField_bmpMin_6(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 * value) { ___inputField_bmpMin_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___inputField_bmpMin_6), (void*)value); } inline static int32_t get_offset_of_text_TimeCounter_7() { return static_cast(offsetof(HRB_DegreaseView_tBFDCE6B3DF07E6FBF2F3EF05AE4AD2B9481183BD, ___text_TimeCounter_7)); } inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * get_text_TimeCounter_7() const { return ___text_TimeCounter_7; } inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 ** get_address_of_text_TimeCounter_7() { return &___text_TimeCounter_7; } inline void set_text_TimeCounter_7(Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * value) { ___text_TimeCounter_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___text_TimeCounter_7), (void*)value); } inline static int32_t get_offset_of__isTimeCounterStart_8() { return static_cast(offsetof(HRB_DegreaseView_tBFDCE6B3DF07E6FBF2F3EF05AE4AD2B9481183BD, ____isTimeCounterStart_8)); } inline bool get__isTimeCounterStart_8() const { return ____isTimeCounterStart_8; } inline bool* get_address_of__isTimeCounterStart_8() { return &____isTimeCounterStart_8; } inline void set__isTimeCounterStart_8(bool value) { ____isTimeCounterStart_8 = value; } inline static int32_t get_offset_of__curTimeCount_9() { return static_cast(offsetof(HRB_DegreaseView_tBFDCE6B3DF07E6FBF2F3EF05AE4AD2B9481183BD, ____curTimeCount_9)); } inline float get__curTimeCount_9() const { return ____curTimeCount_9; } inline float* get_address_of__curTimeCount_9() { return &____curTimeCount_9; } inline void set__curTimeCount_9(float value) { ____curTimeCount_9 = value; } }; // HRB_HomeView struct HRB_HomeView_t287CA33A5A196A46E071D4C02FE00DF5C3C4C9F0 : public ViewBase_tE400461F1C7843F494ACB48A3DFF21BDBF2B78FC { public: // HRB_Bluetooth HRB_HomeView::_hRB_Bluetooth HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D * ____hRB_Bluetooth_6; // UnityEngine.UI.Text HRB_HomeView::_btn_ble_text Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * ____btn_ble_text_7; // System.Collections.Generic.List`1 HRB_HomeView::buttonAB List_1_t21BC49A4390CA067C4050F19A1D58BE64AC2E89E * ___buttonAB_8; // UnityEngine.Color HRB_HomeView::btnColorAB_Light Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___btnColorAB_Light_9; // UnityEngine.Color HRB_HomeView::btnColorAB_Dark Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___btnColorAB_Dark_10; // System.Int32 HRB_HomeView::currentABSwitchIndex int32_t ___currentABSwitchIndex_11; // UnityEngine.UI.Text HRB_HomeView::textAB Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * ___textAB_12; // UnityEngine.UI.InputField HRB_HomeView::inputFieldAB InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 * ___inputFieldAB_13; // System.Boolean HRB_HomeView::inputFieldAB_Focused bool ___inputFieldAB_Focused_14; // BluetoothStatusEnum HRB_HomeView::bowStatus int32_t ___bowStatus_15; public: inline static int32_t get_offset_of__hRB_Bluetooth_6() { return static_cast(offsetof(HRB_HomeView_t287CA33A5A196A46E071D4C02FE00DF5C3C4C9F0, ____hRB_Bluetooth_6)); } inline HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D * get__hRB_Bluetooth_6() const { return ____hRB_Bluetooth_6; } inline HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D ** get_address_of__hRB_Bluetooth_6() { return &____hRB_Bluetooth_6; } inline void set__hRB_Bluetooth_6(HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D * value) { ____hRB_Bluetooth_6 = value; Il2CppCodeGenWriteBarrier((void**)(&____hRB_Bluetooth_6), (void*)value); } inline static int32_t get_offset_of__btn_ble_text_7() { return static_cast(offsetof(HRB_HomeView_t287CA33A5A196A46E071D4C02FE00DF5C3C4C9F0, ____btn_ble_text_7)); } inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * get__btn_ble_text_7() const { return ____btn_ble_text_7; } inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 ** get_address_of__btn_ble_text_7() { return &____btn_ble_text_7; } inline void set__btn_ble_text_7(Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * value) { ____btn_ble_text_7 = value; Il2CppCodeGenWriteBarrier((void**)(&____btn_ble_text_7), (void*)value); } inline static int32_t get_offset_of_buttonAB_8() { return static_cast(offsetof(HRB_HomeView_t287CA33A5A196A46E071D4C02FE00DF5C3C4C9F0, ___buttonAB_8)); } inline List_1_t21BC49A4390CA067C4050F19A1D58BE64AC2E89E * get_buttonAB_8() const { return ___buttonAB_8; } inline List_1_t21BC49A4390CA067C4050F19A1D58BE64AC2E89E ** get_address_of_buttonAB_8() { return &___buttonAB_8; } inline void set_buttonAB_8(List_1_t21BC49A4390CA067C4050F19A1D58BE64AC2E89E * value) { ___buttonAB_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___buttonAB_8), (void*)value); } inline static int32_t get_offset_of_btnColorAB_Light_9() { return static_cast(offsetof(HRB_HomeView_t287CA33A5A196A46E071D4C02FE00DF5C3C4C9F0, ___btnColorAB_Light_9)); } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_btnColorAB_Light_9() const { return ___btnColorAB_Light_9; } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_btnColorAB_Light_9() { return &___btnColorAB_Light_9; } inline void set_btnColorAB_Light_9(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value) { ___btnColorAB_Light_9 = value; } inline static int32_t get_offset_of_btnColorAB_Dark_10() { return static_cast(offsetof(HRB_HomeView_t287CA33A5A196A46E071D4C02FE00DF5C3C4C9F0, ___btnColorAB_Dark_10)); } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_btnColorAB_Dark_10() const { return ___btnColorAB_Dark_10; } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_btnColorAB_Dark_10() { return &___btnColorAB_Dark_10; } inline void set_btnColorAB_Dark_10(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value) { ___btnColorAB_Dark_10 = value; } inline static int32_t get_offset_of_currentABSwitchIndex_11() { return static_cast(offsetof(HRB_HomeView_t287CA33A5A196A46E071D4C02FE00DF5C3C4C9F0, ___currentABSwitchIndex_11)); } inline int32_t get_currentABSwitchIndex_11() const { return ___currentABSwitchIndex_11; } inline int32_t* get_address_of_currentABSwitchIndex_11() { return &___currentABSwitchIndex_11; } inline void set_currentABSwitchIndex_11(int32_t value) { ___currentABSwitchIndex_11 = value; } inline static int32_t get_offset_of_textAB_12() { return static_cast(offsetof(HRB_HomeView_t287CA33A5A196A46E071D4C02FE00DF5C3C4C9F0, ___textAB_12)); } inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * get_textAB_12() const { return ___textAB_12; } inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 ** get_address_of_textAB_12() { return &___textAB_12; } inline void set_textAB_12(Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * value) { ___textAB_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___textAB_12), (void*)value); } inline static int32_t get_offset_of_inputFieldAB_13() { return static_cast(offsetof(HRB_HomeView_t287CA33A5A196A46E071D4C02FE00DF5C3C4C9F0, ___inputFieldAB_13)); } inline InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 * get_inputFieldAB_13() const { return ___inputFieldAB_13; } inline InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 ** get_address_of_inputFieldAB_13() { return &___inputFieldAB_13; } inline void set_inputFieldAB_13(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 * value) { ___inputFieldAB_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___inputFieldAB_13), (void*)value); } inline static int32_t get_offset_of_inputFieldAB_Focused_14() { return static_cast(offsetof(HRB_HomeView_t287CA33A5A196A46E071D4C02FE00DF5C3C4C9F0, ___inputFieldAB_Focused_14)); } inline bool get_inputFieldAB_Focused_14() const { return ___inputFieldAB_Focused_14; } inline bool* get_address_of_inputFieldAB_Focused_14() { return &___inputFieldAB_Focused_14; } inline void set_inputFieldAB_Focused_14(bool value) { ___inputFieldAB_Focused_14 = value; } inline static int32_t get_offset_of_bowStatus_15() { return static_cast(offsetof(HRB_HomeView_t287CA33A5A196A46E071D4C02FE00DF5C3C4C9F0, ___bowStatus_15)); } inline int32_t get_bowStatus_15() const { return ___bowStatus_15; } inline int32_t* get_address_of_bowStatus_15() { return &___bowStatus_15; } inline void set_bowStatus_15(int32_t value) { ___bowStatus_15 = value; } }; // HRB_LoginView struct HRB_LoginView_tAB63EA9B74F3B36084D0BEFF7E1F1C66212D2A07 : public ViewBase_tE400461F1C7843F494ACB48A3DFF21BDBF2B78FC { public: // UnityEngine.GameObject HRB_LoginView::loginInUser GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___loginInUser_6; // UnityEngine.GameObject HRB_LoginView::loginInPWD GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___loginInPWD_7; // UnityEngine.GameObject HRB_LoginView::loginInCaptcha GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___loginInCaptcha_8; // UnityEngine.GameObject HRB_LoginView::btnLogin GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___btnLogin_9; // UnityEngine.GameObject HRB_LoginView::btnRegister GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___btnRegister_10; // System.Int32 HRB_LoginView::captcha_Login int32_t ___captcha_Login_11; // JCUnityLib.Throttler HRB_LoginView::throttlerLoginNormal Throttler_t24208F2310962DD9B2C5169CB881DBF9E6A44246 * ___throttlerLoginNormal_12; public: inline static int32_t get_offset_of_loginInUser_6() { return static_cast(offsetof(HRB_LoginView_tAB63EA9B74F3B36084D0BEFF7E1F1C66212D2A07, ___loginInUser_6)); } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_loginInUser_6() const { return ___loginInUser_6; } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_loginInUser_6() { return &___loginInUser_6; } inline void set_loginInUser_6(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value) { ___loginInUser_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___loginInUser_6), (void*)value); } inline static int32_t get_offset_of_loginInPWD_7() { return static_cast(offsetof(HRB_LoginView_tAB63EA9B74F3B36084D0BEFF7E1F1C66212D2A07, ___loginInPWD_7)); } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_loginInPWD_7() const { return ___loginInPWD_7; } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_loginInPWD_7() { return &___loginInPWD_7; } inline void set_loginInPWD_7(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value) { ___loginInPWD_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___loginInPWD_7), (void*)value); } inline static int32_t get_offset_of_loginInCaptcha_8() { return static_cast(offsetof(HRB_LoginView_tAB63EA9B74F3B36084D0BEFF7E1F1C66212D2A07, ___loginInCaptcha_8)); } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_loginInCaptcha_8() const { return ___loginInCaptcha_8; } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_loginInCaptcha_8() { return &___loginInCaptcha_8; } inline void set_loginInCaptcha_8(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value) { ___loginInCaptcha_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___loginInCaptcha_8), (void*)value); } inline static int32_t get_offset_of_btnLogin_9() { return static_cast(offsetof(HRB_LoginView_tAB63EA9B74F3B36084D0BEFF7E1F1C66212D2A07, ___btnLogin_9)); } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_btnLogin_9() const { return ___btnLogin_9; } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_btnLogin_9() { return &___btnLogin_9; } inline void set_btnLogin_9(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value) { ___btnLogin_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___btnLogin_9), (void*)value); } inline static int32_t get_offset_of_btnRegister_10() { return static_cast(offsetof(HRB_LoginView_tAB63EA9B74F3B36084D0BEFF7E1F1C66212D2A07, ___btnRegister_10)); } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_btnRegister_10() const { return ___btnRegister_10; } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_btnRegister_10() { return &___btnRegister_10; } inline void set_btnRegister_10(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value) { ___btnRegister_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___btnRegister_10), (void*)value); } inline static int32_t get_offset_of_captcha_Login_11() { return static_cast(offsetof(HRB_LoginView_tAB63EA9B74F3B36084D0BEFF7E1F1C66212D2A07, ___captcha_Login_11)); } inline int32_t get_captcha_Login_11() const { return ___captcha_Login_11; } inline int32_t* get_address_of_captcha_Login_11() { return &___captcha_Login_11; } inline void set_captcha_Login_11(int32_t value) { ___captcha_Login_11 = value; } inline static int32_t get_offset_of_throttlerLoginNormal_12() { return static_cast(offsetof(HRB_LoginView_tAB63EA9B74F3B36084D0BEFF7E1F1C66212D2A07, ___throttlerLoginNormal_12)); } inline Throttler_t24208F2310962DD9B2C5169CB881DBF9E6A44246 * get_throttlerLoginNormal_12() const { return ___throttlerLoginNormal_12; } inline Throttler_t24208F2310962DD9B2C5169CB881DBF9E6A44246 ** get_address_of_throttlerLoginNormal_12() { return &___throttlerLoginNormal_12; } inline void set_throttlerLoginNormal_12(Throttler_t24208F2310962DD9B2C5169CB881DBF9E6A44246 * value) { ___throttlerLoginNormal_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___throttlerLoginNormal_12), (void*)value); } }; // HRB_MeView struct HRB_MeView_t6E8399EB5C5A369A0E043C949BB4F953DF0A9C76 : public ViewBase_tE400461F1C7843F494ACB48A3DFF21BDBF2B78FC { public: // UnityEngine.UI.Image HRB_MeView::avatarImage Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C * ___avatarImage_6; // UnityEngine.UI.Text HRB_MeView::nameText Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * ___nameText_7; // UnityEngine.GameObject HRB_MeView::inputs GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___inputs_8; // JCUnityLib.Throttler HRB_MeView::throttlerSave Throttler_t24208F2310962DD9B2C5169CB881DBF9E6A44246 * ___throttlerSave_9; // UnityEngine.GameObject HRB_MeView::datePickerPrefab GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___datePickerPrefab_10; // UnityEngine.GameObject HRB_MeView::locationPickerPrefab GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___locationPickerPrefab_11; // System.String HRB_MeView::countryCode String_t* ___countryCode_12; // System.String HRB_MeView::stateCode String_t* ___stateCode_13; // System.String HRB_MeView::cityCode String_t* ___cityCode_14; // System.Boolean HRB_MeView::avatarSelectViewInited bool ___avatarSelectViewInited_15; // System.Int32 HRB_MeView::curAvatarSelectID int32_t ___curAvatarSelectID_16; // HRB_MeView/MeUserInfo HRB_MeView::meUserInfo MeUserInfo_t908ED54BB1E8C15D78C04BA32BB12B06CF0DC94E * ___meUserInfo_17; public: inline static int32_t get_offset_of_avatarImage_6() { return static_cast(offsetof(HRB_MeView_t6E8399EB5C5A369A0E043C949BB4F953DF0A9C76, ___avatarImage_6)); } inline Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C * get_avatarImage_6() const { return ___avatarImage_6; } inline Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C ** get_address_of_avatarImage_6() { return &___avatarImage_6; } inline void set_avatarImage_6(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C * value) { ___avatarImage_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___avatarImage_6), (void*)value); } inline static int32_t get_offset_of_nameText_7() { return static_cast(offsetof(HRB_MeView_t6E8399EB5C5A369A0E043C949BB4F953DF0A9C76, ___nameText_7)); } inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * get_nameText_7() const { return ___nameText_7; } inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 ** get_address_of_nameText_7() { return &___nameText_7; } inline void set_nameText_7(Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * value) { ___nameText_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___nameText_7), (void*)value); } inline static int32_t get_offset_of_inputs_8() { return static_cast(offsetof(HRB_MeView_t6E8399EB5C5A369A0E043C949BB4F953DF0A9C76, ___inputs_8)); } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_inputs_8() const { return ___inputs_8; } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_inputs_8() { return &___inputs_8; } inline void set_inputs_8(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value) { ___inputs_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___inputs_8), (void*)value); } inline static int32_t get_offset_of_throttlerSave_9() { return static_cast(offsetof(HRB_MeView_t6E8399EB5C5A369A0E043C949BB4F953DF0A9C76, ___throttlerSave_9)); } inline Throttler_t24208F2310962DD9B2C5169CB881DBF9E6A44246 * get_throttlerSave_9() const { return ___throttlerSave_9; } inline Throttler_t24208F2310962DD9B2C5169CB881DBF9E6A44246 ** get_address_of_throttlerSave_9() { return &___throttlerSave_9; } inline void set_throttlerSave_9(Throttler_t24208F2310962DD9B2C5169CB881DBF9E6A44246 * value) { ___throttlerSave_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___throttlerSave_9), (void*)value); } inline static int32_t get_offset_of_datePickerPrefab_10() { return static_cast(offsetof(HRB_MeView_t6E8399EB5C5A369A0E043C949BB4F953DF0A9C76, ___datePickerPrefab_10)); } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_datePickerPrefab_10() const { return ___datePickerPrefab_10; } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_datePickerPrefab_10() { return &___datePickerPrefab_10; } inline void set_datePickerPrefab_10(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value) { ___datePickerPrefab_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___datePickerPrefab_10), (void*)value); } inline static int32_t get_offset_of_locationPickerPrefab_11() { return static_cast(offsetof(HRB_MeView_t6E8399EB5C5A369A0E043C949BB4F953DF0A9C76, ___locationPickerPrefab_11)); } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_locationPickerPrefab_11() const { return ___locationPickerPrefab_11; } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_locationPickerPrefab_11() { return &___locationPickerPrefab_11; } inline void set_locationPickerPrefab_11(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value) { ___locationPickerPrefab_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___locationPickerPrefab_11), (void*)value); } inline static int32_t get_offset_of_countryCode_12() { return static_cast(offsetof(HRB_MeView_t6E8399EB5C5A369A0E043C949BB4F953DF0A9C76, ___countryCode_12)); } inline String_t* get_countryCode_12() const { return ___countryCode_12; } inline String_t** get_address_of_countryCode_12() { return &___countryCode_12; } inline void set_countryCode_12(String_t* value) { ___countryCode_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___countryCode_12), (void*)value); } inline static int32_t get_offset_of_stateCode_13() { return static_cast(offsetof(HRB_MeView_t6E8399EB5C5A369A0E043C949BB4F953DF0A9C76, ___stateCode_13)); } inline String_t* get_stateCode_13() const { return ___stateCode_13; } inline String_t** get_address_of_stateCode_13() { return &___stateCode_13; } inline void set_stateCode_13(String_t* value) { ___stateCode_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___stateCode_13), (void*)value); } inline static int32_t get_offset_of_cityCode_14() { return static_cast(offsetof(HRB_MeView_t6E8399EB5C5A369A0E043C949BB4F953DF0A9C76, ___cityCode_14)); } inline String_t* get_cityCode_14() const { return ___cityCode_14; } inline String_t** get_address_of_cityCode_14() { return &___cityCode_14; } inline void set_cityCode_14(String_t* value) { ___cityCode_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___cityCode_14), (void*)value); } inline static int32_t get_offset_of_avatarSelectViewInited_15() { return static_cast(offsetof(HRB_MeView_t6E8399EB5C5A369A0E043C949BB4F953DF0A9C76, ___avatarSelectViewInited_15)); } inline bool get_avatarSelectViewInited_15() const { return ___avatarSelectViewInited_15; } inline bool* get_address_of_avatarSelectViewInited_15() { return &___avatarSelectViewInited_15; } inline void set_avatarSelectViewInited_15(bool value) { ___avatarSelectViewInited_15 = value; } inline static int32_t get_offset_of_curAvatarSelectID_16() { return static_cast(offsetof(HRB_MeView_t6E8399EB5C5A369A0E043C949BB4F953DF0A9C76, ___curAvatarSelectID_16)); } inline int32_t get_curAvatarSelectID_16() const { return ___curAvatarSelectID_16; } inline int32_t* get_address_of_curAvatarSelectID_16() { return &___curAvatarSelectID_16; } inline void set_curAvatarSelectID_16(int32_t value) { ___curAvatarSelectID_16 = value; } inline static int32_t get_offset_of_meUserInfo_17() { return static_cast(offsetof(HRB_MeView_t6E8399EB5C5A369A0E043C949BB4F953DF0A9C76, ___meUserInfo_17)); } inline MeUserInfo_t908ED54BB1E8C15D78C04BA32BB12B06CF0DC94E * get_meUserInfo_17() const { return ___meUserInfo_17; } inline MeUserInfo_t908ED54BB1E8C15D78C04BA32BB12B06CF0DC94E ** get_address_of_meUserInfo_17() { return &___meUserInfo_17; } inline void set_meUserInfo_17(MeUserInfo_t908ED54BB1E8C15D78C04BA32BB12B06CF0DC94E * value) { ___meUserInfo_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___meUserInfo_17), (void*)value); } }; // HRB_PlanView struct HRB_PlanView_t5BDCE3FB207F5302CCB99DF4865485D4F727F9D3 : public ViewBase_tE400461F1C7843F494ACB48A3DFF21BDBF2B78FC { public: // UnityEngine.UI.InputField HRB_PlanView::m_PlanWeightLoss_InputField InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 * ___m_PlanWeightLoss_InputField_6; // UnityEngine.UI.Text HRB_PlanView::m_PlanWeightLoss_Text Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * ___m_PlanWeightLoss_Text_7; // UnityEngine.UI.Text HRB_PlanView::_planDateStartText Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * ____planDateStartText_8; // UnityEngine.UI.Text HRB_PlanView::_planDateEndText Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * ____planDateEndText_9; // UnityEngine.UI.Text HRB_PlanView::_planDayText Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * ____planDayText_10; // UnityEngine.GameObject HRB_PlanView::datePickerPrefab GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___datePickerPrefab_11; public: inline static int32_t get_offset_of_m_PlanWeightLoss_InputField_6() { return static_cast(offsetof(HRB_PlanView_t5BDCE3FB207F5302CCB99DF4865485D4F727F9D3, ___m_PlanWeightLoss_InputField_6)); } inline InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 * get_m_PlanWeightLoss_InputField_6() const { return ___m_PlanWeightLoss_InputField_6; } inline InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 ** get_address_of_m_PlanWeightLoss_InputField_6() { return &___m_PlanWeightLoss_InputField_6; } inline void set_m_PlanWeightLoss_InputField_6(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 * value) { ___m_PlanWeightLoss_InputField_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_PlanWeightLoss_InputField_6), (void*)value); } inline static int32_t get_offset_of_m_PlanWeightLoss_Text_7() { return static_cast(offsetof(HRB_PlanView_t5BDCE3FB207F5302CCB99DF4865485D4F727F9D3, ___m_PlanWeightLoss_Text_7)); } inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * get_m_PlanWeightLoss_Text_7() const { return ___m_PlanWeightLoss_Text_7; } inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 ** get_address_of_m_PlanWeightLoss_Text_7() { return &___m_PlanWeightLoss_Text_7; } inline void set_m_PlanWeightLoss_Text_7(Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * value) { ___m_PlanWeightLoss_Text_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_PlanWeightLoss_Text_7), (void*)value); } inline static int32_t get_offset_of__planDateStartText_8() { return static_cast(offsetof(HRB_PlanView_t5BDCE3FB207F5302CCB99DF4865485D4F727F9D3, ____planDateStartText_8)); } inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * get__planDateStartText_8() const { return ____planDateStartText_8; } inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 ** get_address_of__planDateStartText_8() { return &____planDateStartText_8; } inline void set__planDateStartText_8(Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * value) { ____planDateStartText_8 = value; Il2CppCodeGenWriteBarrier((void**)(&____planDateStartText_8), (void*)value); } inline static int32_t get_offset_of__planDateEndText_9() { return static_cast(offsetof(HRB_PlanView_t5BDCE3FB207F5302CCB99DF4865485D4F727F9D3, ____planDateEndText_9)); } inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * get__planDateEndText_9() const { return ____planDateEndText_9; } inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 ** get_address_of__planDateEndText_9() { return &____planDateEndText_9; } inline void set__planDateEndText_9(Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * value) { ____planDateEndText_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____planDateEndText_9), (void*)value); } inline static int32_t get_offset_of__planDayText_10() { return static_cast(offsetof(HRB_PlanView_t5BDCE3FB207F5302CCB99DF4865485D4F727F9D3, ____planDayText_10)); } inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * get__planDayText_10() const { return ____planDayText_10; } inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 ** get_address_of__planDayText_10() { return &____planDayText_10; } inline void set__planDayText_10(Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * value) { ____planDayText_10 = value; Il2CppCodeGenWriteBarrier((void**)(&____planDayText_10), (void*)value); } inline static int32_t get_offset_of_datePickerPrefab_11() { return static_cast(offsetof(HRB_PlanView_t5BDCE3FB207F5302CCB99DF4865485D4F727F9D3, ___datePickerPrefab_11)); } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_datePickerPrefab_11() const { return ___datePickerPrefab_11; } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_datePickerPrefab_11() { return &___datePickerPrefab_11; } inline void set_datePickerPrefab_11(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value) { ___datePickerPrefab_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___datePickerPrefab_11), (void*)value); } }; // HRB_RegisterView struct HRB_RegisterView_t359F235962408A9007BD942F4F568BC3DFBB2D3D : public ViewBase_tE400461F1C7843F494ACB48A3DFF21BDBF2B78FC { public: // UnityEngine.GameObject HRB_RegisterView::registerInUser GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___registerInUser_6; // UnityEngine.GameObject HRB_RegisterView::registerInPWD1 GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___registerInPWD1_7; // UnityEngine.GameObject HRB_RegisterView::registerInPWD2 GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___registerInPWD2_8; // UnityEngine.GameObject HRB_RegisterView::registerInCaptcha GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___registerInCaptcha_9; // UnityEngine.GameObject HRB_RegisterView::registerInNickname GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___registerInNickname_10; // UnityEngine.GameObject HRB_RegisterView::registerInGender GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___registerInGender_11; // UnityEngine.GameObject HRB_RegisterView::registerInBirthday GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___registerInBirthday_12; // UnityEngine.GameObject HRB_RegisterView::registerInLocation GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___registerInLocation_13; // UnityEngine.GameObject HRB_RegisterView::btnBack GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___btnBack_14; // UnityEngine.GameObject HRB_RegisterView::btnNext GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___btnNext_15; // UnityEngine.GameObject HRB_RegisterView::btnSave GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___btnSave_16; // System.Int32 HRB_RegisterView::captcha_Register int32_t ___captcha_Register_17; // System.String HRB_RegisterView::usrRecord String_t* ___usrRecord_18; // System.String HRB_RegisterView::pwdRecord String_t* ___pwdRecord_19; // JCUnityLib.Throttler HRB_RegisterView::throttlerRegisterNext Throttler_t24208F2310962DD9B2C5169CB881DBF9E6A44246 * ___throttlerRegisterNext_20; // JCUnityLib.Throttler HRB_RegisterView::throttlerRegisterSave Throttler_t24208F2310962DD9B2C5169CB881DBF9E6A44246 * ___throttlerRegisterSave_21; // UnityEngine.GameObject HRB_RegisterView::datePickerPrefab GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___datePickerPrefab_22; // UnityEngine.GameObject HRB_RegisterView::locationPickerPrefab GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___locationPickerPrefab_23; // System.String HRB_RegisterView::countryCode String_t* ___countryCode_24; // System.String HRB_RegisterView::stateCode String_t* ___stateCode_25; // System.String HRB_RegisterView::cityCode String_t* ___cityCode_26; public: inline static int32_t get_offset_of_registerInUser_6() { return static_cast(offsetof(HRB_RegisterView_t359F235962408A9007BD942F4F568BC3DFBB2D3D, ___registerInUser_6)); } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_registerInUser_6() const { return ___registerInUser_6; } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_registerInUser_6() { return &___registerInUser_6; } inline void set_registerInUser_6(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value) { ___registerInUser_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___registerInUser_6), (void*)value); } inline static int32_t get_offset_of_registerInPWD1_7() { return static_cast(offsetof(HRB_RegisterView_t359F235962408A9007BD942F4F568BC3DFBB2D3D, ___registerInPWD1_7)); } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_registerInPWD1_7() const { return ___registerInPWD1_7; } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_registerInPWD1_7() { return &___registerInPWD1_7; } inline void set_registerInPWD1_7(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value) { ___registerInPWD1_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___registerInPWD1_7), (void*)value); } inline static int32_t get_offset_of_registerInPWD2_8() { return static_cast(offsetof(HRB_RegisterView_t359F235962408A9007BD942F4F568BC3DFBB2D3D, ___registerInPWD2_8)); } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_registerInPWD2_8() const { return ___registerInPWD2_8; } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_registerInPWD2_8() { return &___registerInPWD2_8; } inline void set_registerInPWD2_8(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value) { ___registerInPWD2_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___registerInPWD2_8), (void*)value); } inline static int32_t get_offset_of_registerInCaptcha_9() { return static_cast(offsetof(HRB_RegisterView_t359F235962408A9007BD942F4F568BC3DFBB2D3D, ___registerInCaptcha_9)); } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_registerInCaptcha_9() const { return ___registerInCaptcha_9; } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_registerInCaptcha_9() { return &___registerInCaptcha_9; } inline void set_registerInCaptcha_9(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value) { ___registerInCaptcha_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___registerInCaptcha_9), (void*)value); } inline static int32_t get_offset_of_registerInNickname_10() { return static_cast(offsetof(HRB_RegisterView_t359F235962408A9007BD942F4F568BC3DFBB2D3D, ___registerInNickname_10)); } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_registerInNickname_10() const { return ___registerInNickname_10; } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_registerInNickname_10() { return &___registerInNickname_10; } inline void set_registerInNickname_10(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value) { ___registerInNickname_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___registerInNickname_10), (void*)value); } inline static int32_t get_offset_of_registerInGender_11() { return static_cast(offsetof(HRB_RegisterView_t359F235962408A9007BD942F4F568BC3DFBB2D3D, ___registerInGender_11)); } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_registerInGender_11() const { return ___registerInGender_11; } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_registerInGender_11() { return &___registerInGender_11; } inline void set_registerInGender_11(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value) { ___registerInGender_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___registerInGender_11), (void*)value); } inline static int32_t get_offset_of_registerInBirthday_12() { return static_cast(offsetof(HRB_RegisterView_t359F235962408A9007BD942F4F568BC3DFBB2D3D, ___registerInBirthday_12)); } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_registerInBirthday_12() const { return ___registerInBirthday_12; } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_registerInBirthday_12() { return &___registerInBirthday_12; } inline void set_registerInBirthday_12(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value) { ___registerInBirthday_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___registerInBirthday_12), (void*)value); } inline static int32_t get_offset_of_registerInLocation_13() { return static_cast(offsetof(HRB_RegisterView_t359F235962408A9007BD942F4F568BC3DFBB2D3D, ___registerInLocation_13)); } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_registerInLocation_13() const { return ___registerInLocation_13; } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_registerInLocation_13() { return &___registerInLocation_13; } inline void set_registerInLocation_13(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value) { ___registerInLocation_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___registerInLocation_13), (void*)value); } inline static int32_t get_offset_of_btnBack_14() { return static_cast(offsetof(HRB_RegisterView_t359F235962408A9007BD942F4F568BC3DFBB2D3D, ___btnBack_14)); } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_btnBack_14() const { return ___btnBack_14; } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_btnBack_14() { return &___btnBack_14; } inline void set_btnBack_14(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value) { ___btnBack_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___btnBack_14), (void*)value); } inline static int32_t get_offset_of_btnNext_15() { return static_cast(offsetof(HRB_RegisterView_t359F235962408A9007BD942F4F568BC3DFBB2D3D, ___btnNext_15)); } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_btnNext_15() const { return ___btnNext_15; } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_btnNext_15() { return &___btnNext_15; } inline void set_btnNext_15(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value) { ___btnNext_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___btnNext_15), (void*)value); } inline static int32_t get_offset_of_btnSave_16() { return static_cast(offsetof(HRB_RegisterView_t359F235962408A9007BD942F4F568BC3DFBB2D3D, ___btnSave_16)); } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_btnSave_16() const { return ___btnSave_16; } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_btnSave_16() { return &___btnSave_16; } inline void set_btnSave_16(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value) { ___btnSave_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___btnSave_16), (void*)value); } inline static int32_t get_offset_of_captcha_Register_17() { return static_cast(offsetof(HRB_RegisterView_t359F235962408A9007BD942F4F568BC3DFBB2D3D, ___captcha_Register_17)); } inline int32_t get_captcha_Register_17() const { return ___captcha_Register_17; } inline int32_t* get_address_of_captcha_Register_17() { return &___captcha_Register_17; } inline void set_captcha_Register_17(int32_t value) { ___captcha_Register_17 = value; } inline static int32_t get_offset_of_usrRecord_18() { return static_cast(offsetof(HRB_RegisterView_t359F235962408A9007BD942F4F568BC3DFBB2D3D, ___usrRecord_18)); } inline String_t* get_usrRecord_18() const { return ___usrRecord_18; } inline String_t** get_address_of_usrRecord_18() { return &___usrRecord_18; } inline void set_usrRecord_18(String_t* value) { ___usrRecord_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___usrRecord_18), (void*)value); } inline static int32_t get_offset_of_pwdRecord_19() { return static_cast(offsetof(HRB_RegisterView_t359F235962408A9007BD942F4F568BC3DFBB2D3D, ___pwdRecord_19)); } inline String_t* get_pwdRecord_19() const { return ___pwdRecord_19; } inline String_t** get_address_of_pwdRecord_19() { return &___pwdRecord_19; } inline void set_pwdRecord_19(String_t* value) { ___pwdRecord_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___pwdRecord_19), (void*)value); } inline static int32_t get_offset_of_throttlerRegisterNext_20() { return static_cast(offsetof(HRB_RegisterView_t359F235962408A9007BD942F4F568BC3DFBB2D3D, ___throttlerRegisterNext_20)); } inline Throttler_t24208F2310962DD9B2C5169CB881DBF9E6A44246 * get_throttlerRegisterNext_20() const { return ___throttlerRegisterNext_20; } inline Throttler_t24208F2310962DD9B2C5169CB881DBF9E6A44246 ** get_address_of_throttlerRegisterNext_20() { return &___throttlerRegisterNext_20; } inline void set_throttlerRegisterNext_20(Throttler_t24208F2310962DD9B2C5169CB881DBF9E6A44246 * value) { ___throttlerRegisterNext_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___throttlerRegisterNext_20), (void*)value); } inline static int32_t get_offset_of_throttlerRegisterSave_21() { return static_cast(offsetof(HRB_RegisterView_t359F235962408A9007BD942F4F568BC3DFBB2D3D, ___throttlerRegisterSave_21)); } inline Throttler_t24208F2310962DD9B2C5169CB881DBF9E6A44246 * get_throttlerRegisterSave_21() const { return ___throttlerRegisterSave_21; } inline Throttler_t24208F2310962DD9B2C5169CB881DBF9E6A44246 ** get_address_of_throttlerRegisterSave_21() { return &___throttlerRegisterSave_21; } inline void set_throttlerRegisterSave_21(Throttler_t24208F2310962DD9B2C5169CB881DBF9E6A44246 * value) { ___throttlerRegisterSave_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___throttlerRegisterSave_21), (void*)value); } inline static int32_t get_offset_of_datePickerPrefab_22() { return static_cast(offsetof(HRB_RegisterView_t359F235962408A9007BD942F4F568BC3DFBB2D3D, ___datePickerPrefab_22)); } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_datePickerPrefab_22() const { return ___datePickerPrefab_22; } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_datePickerPrefab_22() { return &___datePickerPrefab_22; } inline void set_datePickerPrefab_22(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value) { ___datePickerPrefab_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___datePickerPrefab_22), (void*)value); } inline static int32_t get_offset_of_locationPickerPrefab_23() { return static_cast(offsetof(HRB_RegisterView_t359F235962408A9007BD942F4F568BC3DFBB2D3D, ___locationPickerPrefab_23)); } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_locationPickerPrefab_23() const { return ___locationPickerPrefab_23; } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_locationPickerPrefab_23() { return &___locationPickerPrefab_23; } inline void set_locationPickerPrefab_23(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value) { ___locationPickerPrefab_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___locationPickerPrefab_23), (void*)value); } inline static int32_t get_offset_of_countryCode_24() { return static_cast(offsetof(HRB_RegisterView_t359F235962408A9007BD942F4F568BC3DFBB2D3D, ___countryCode_24)); } inline String_t* get_countryCode_24() const { return ___countryCode_24; } inline String_t** get_address_of_countryCode_24() { return &___countryCode_24; } inline void set_countryCode_24(String_t* value) { ___countryCode_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___countryCode_24), (void*)value); } inline static int32_t get_offset_of_stateCode_25() { return static_cast(offsetof(HRB_RegisterView_t359F235962408A9007BD942F4F568BC3DFBB2D3D, ___stateCode_25)); } inline String_t* get_stateCode_25() const { return ___stateCode_25; } inline String_t** get_address_of_stateCode_25() { return &___stateCode_25; } inline void set_stateCode_25(String_t* value) { ___stateCode_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___stateCode_25), (void*)value); } inline static int32_t get_offset_of_cityCode_26() { return static_cast(offsetof(HRB_RegisterView_t359F235962408A9007BD942F4F568BC3DFBB2D3D, ___cityCode_26)); } inline String_t* get_cityCode_26() const { return ___cityCode_26; } inline String_t** get_address_of_cityCode_26() { return &___cityCode_26; } inline void set_cityCode_26(String_t* value) { ___cityCode_26 = value; Il2CppCodeGenWriteBarrier((void**)(&___cityCode_26), (void*)value); } }; // HRB_ViewMgr struct HRB_ViewMgr_tA45A4A89DBF774D4F4AEFF894E68F37285F780FC : public ViewManager_1_t5BDF7DFD13D86428BB0E5054ADC635CE0AE90F1E { public: public: }; // UnityEngine.UI.LayoutGroup struct LayoutGroup_t63C978964192B57EFC660D5FDA03DEE89DDC1AE2 : public UIBehaviour_tD1C6E2D542222546D68510ECE74036EFBC3C3B0E { public: // UnityEngine.RectOffset UnityEngine.UI.LayoutGroup::m_Padding RectOffset_tE3A58467CD0749AD9D3E1271F9E315B38F39AE70 * ___m_Padding_4; // UnityEngine.TextAnchor UnityEngine.UI.LayoutGroup::m_ChildAlignment int32_t ___m_ChildAlignment_5; // UnityEngine.RectTransform UnityEngine.UI.LayoutGroup::m_Rect RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * ___m_Rect_6; // UnityEngine.DrivenRectTransformTracker UnityEngine.UI.LayoutGroup::m_Tracker DrivenRectTransformTracker_t7DAF937E47C63B899C7BA0E9B0F206AAB4D85AC2 ___m_Tracker_7; // UnityEngine.Vector2 UnityEngine.UI.LayoutGroup::m_TotalMinSize Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_TotalMinSize_8; // UnityEngine.Vector2 UnityEngine.UI.LayoutGroup::m_TotalPreferredSize Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_TotalPreferredSize_9; // UnityEngine.Vector2 UnityEngine.UI.LayoutGroup::m_TotalFlexibleSize Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_TotalFlexibleSize_10; // System.Collections.Generic.List`1 UnityEngine.UI.LayoutGroup::m_RectChildren List_1_t432BA4439FC00E108A9A351BD7FBCD9242270BB3 * ___m_RectChildren_11; public: inline static int32_t get_offset_of_m_Padding_4() { return static_cast(offsetof(LayoutGroup_t63C978964192B57EFC660D5FDA03DEE89DDC1AE2, ___m_Padding_4)); } inline RectOffset_tE3A58467CD0749AD9D3E1271F9E315B38F39AE70 * get_m_Padding_4() const { return ___m_Padding_4; } inline RectOffset_tE3A58467CD0749AD9D3E1271F9E315B38F39AE70 ** get_address_of_m_Padding_4() { return &___m_Padding_4; } inline void set_m_Padding_4(RectOffset_tE3A58467CD0749AD9D3E1271F9E315B38F39AE70 * value) { ___m_Padding_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Padding_4), (void*)value); } inline static int32_t get_offset_of_m_ChildAlignment_5() { return static_cast(offsetof(LayoutGroup_t63C978964192B57EFC660D5FDA03DEE89DDC1AE2, ___m_ChildAlignment_5)); } inline int32_t get_m_ChildAlignment_5() const { return ___m_ChildAlignment_5; } inline int32_t* get_address_of_m_ChildAlignment_5() { return &___m_ChildAlignment_5; } inline void set_m_ChildAlignment_5(int32_t value) { ___m_ChildAlignment_5 = value; } inline static int32_t get_offset_of_m_Rect_6() { return static_cast(offsetof(LayoutGroup_t63C978964192B57EFC660D5FDA03DEE89DDC1AE2, ___m_Rect_6)); } inline RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * get_m_Rect_6() const { return ___m_Rect_6; } inline RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 ** get_address_of_m_Rect_6() { return &___m_Rect_6; } inline void set_m_Rect_6(RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * value) { ___m_Rect_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Rect_6), (void*)value); } inline static int32_t get_offset_of_m_Tracker_7() { return static_cast(offsetof(LayoutGroup_t63C978964192B57EFC660D5FDA03DEE89DDC1AE2, ___m_Tracker_7)); } inline DrivenRectTransformTracker_t7DAF937E47C63B899C7BA0E9B0F206AAB4D85AC2 get_m_Tracker_7() const { return ___m_Tracker_7; } inline DrivenRectTransformTracker_t7DAF937E47C63B899C7BA0E9B0F206AAB4D85AC2 * get_address_of_m_Tracker_7() { return &___m_Tracker_7; } inline void set_m_Tracker_7(DrivenRectTransformTracker_t7DAF937E47C63B899C7BA0E9B0F206AAB4D85AC2 value) { ___m_Tracker_7 = value; } inline static int32_t get_offset_of_m_TotalMinSize_8() { return static_cast(offsetof(LayoutGroup_t63C978964192B57EFC660D5FDA03DEE89DDC1AE2, ___m_TotalMinSize_8)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_m_TotalMinSize_8() const { return ___m_TotalMinSize_8; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_m_TotalMinSize_8() { return &___m_TotalMinSize_8; } inline void set_m_TotalMinSize_8(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___m_TotalMinSize_8 = value; } inline static int32_t get_offset_of_m_TotalPreferredSize_9() { return static_cast(offsetof(LayoutGroup_t63C978964192B57EFC660D5FDA03DEE89DDC1AE2, ___m_TotalPreferredSize_9)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_m_TotalPreferredSize_9() const { return ___m_TotalPreferredSize_9; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_m_TotalPreferredSize_9() { return &___m_TotalPreferredSize_9; } inline void set_m_TotalPreferredSize_9(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___m_TotalPreferredSize_9 = value; } inline static int32_t get_offset_of_m_TotalFlexibleSize_10() { return static_cast(offsetof(LayoutGroup_t63C978964192B57EFC660D5FDA03DEE89DDC1AE2, ___m_TotalFlexibleSize_10)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_m_TotalFlexibleSize_10() const { return ___m_TotalFlexibleSize_10; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_m_TotalFlexibleSize_10() { return &___m_TotalFlexibleSize_10; } inline void set_m_TotalFlexibleSize_10(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___m_TotalFlexibleSize_10 = value; } inline static int32_t get_offset_of_m_RectChildren_11() { return static_cast(offsetof(LayoutGroup_t63C978964192B57EFC660D5FDA03DEE89DDC1AE2, ___m_RectChildren_11)); } inline List_1_t432BA4439FC00E108A9A351BD7FBCD9242270BB3 * get_m_RectChildren_11() const { return ___m_RectChildren_11; } inline List_1_t432BA4439FC00E108A9A351BD7FBCD9242270BB3 ** get_address_of_m_RectChildren_11() { return &___m_RectChildren_11; } inline void set_m_RectChildren_11(List_1_t432BA4439FC00E108A9A351BD7FBCD9242270BB3 * value) { ___m_RectChildren_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_RectChildren_11), (void*)value); } }; // UnityEngine.UI.Selectable struct Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD : public UIBehaviour_tD1C6E2D542222546D68510ECE74036EFBC3C3B0E { public: // System.Boolean UnityEngine.UI.Selectable::m_EnableCalled bool ___m_EnableCalled_6; // UnityEngine.UI.Navigation UnityEngine.UI.Selectable::m_Navigation Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A ___m_Navigation_7; // UnityEngine.UI.Selectable/Transition UnityEngine.UI.Selectable::m_Transition int32_t ___m_Transition_8; // UnityEngine.UI.ColorBlock UnityEngine.UI.Selectable::m_Colors ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 ___m_Colors_9; // UnityEngine.UI.SpriteState UnityEngine.UI.Selectable::m_SpriteState SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E ___m_SpriteState_10; // UnityEngine.UI.AnimationTriggers UnityEngine.UI.Selectable::m_AnimationTriggers AnimationTriggers_tF38CA7FA631709E096B57D732668D86081F44C11 * ___m_AnimationTriggers_11; // System.Boolean UnityEngine.UI.Selectable::m_Interactable bool ___m_Interactable_12; // UnityEngine.UI.Graphic UnityEngine.UI.Selectable::m_TargetGraphic Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24 * ___m_TargetGraphic_13; // System.Boolean UnityEngine.UI.Selectable::m_GroupsAllowInteraction bool ___m_GroupsAllowInteraction_14; // System.Int32 UnityEngine.UI.Selectable::m_CurrentIndex int32_t ___m_CurrentIndex_15; // System.Boolean UnityEngine.UI.Selectable::k__BackingField bool ___U3CisPointerInsideU3Ek__BackingField_16; // System.Boolean UnityEngine.UI.Selectable::k__BackingField bool ___U3CisPointerDownU3Ek__BackingField_17; // System.Boolean UnityEngine.UI.Selectable::k__BackingField bool ___U3ChasSelectionU3Ek__BackingField_18; // System.Collections.Generic.List`1 UnityEngine.UI.Selectable::m_CanvasGroupCache List_1_t34AA4AF4E7352129CA58045901530E41445AC16D * ___m_CanvasGroupCache_19; public: inline static int32_t get_offset_of_m_EnableCalled_6() { return static_cast(offsetof(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD, ___m_EnableCalled_6)); } inline bool get_m_EnableCalled_6() const { return ___m_EnableCalled_6; } inline bool* get_address_of_m_EnableCalled_6() { return &___m_EnableCalled_6; } inline void set_m_EnableCalled_6(bool value) { ___m_EnableCalled_6 = value; } inline static int32_t get_offset_of_m_Navigation_7() { return static_cast(offsetof(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD, ___m_Navigation_7)); } inline Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A get_m_Navigation_7() const { return ___m_Navigation_7; } inline Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A * get_address_of_m_Navigation_7() { return &___m_Navigation_7; } inline void set_m_Navigation_7(Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A value) { ___m_Navigation_7 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_Navigation_7))->___m_SelectOnUp_2), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_Navigation_7))->___m_SelectOnDown_3), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_Navigation_7))->___m_SelectOnLeft_4), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_Navigation_7))->___m_SelectOnRight_5), (void*)NULL); #endif } inline static int32_t get_offset_of_m_Transition_8() { return static_cast(offsetof(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD, ___m_Transition_8)); } inline int32_t get_m_Transition_8() const { return ___m_Transition_8; } inline int32_t* get_address_of_m_Transition_8() { return &___m_Transition_8; } inline void set_m_Transition_8(int32_t value) { ___m_Transition_8 = value; } inline static int32_t get_offset_of_m_Colors_9() { return static_cast(offsetof(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD, ___m_Colors_9)); } inline ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 get_m_Colors_9() const { return ___m_Colors_9; } inline ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 * get_address_of_m_Colors_9() { return &___m_Colors_9; } inline void set_m_Colors_9(ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 value) { ___m_Colors_9 = value; } inline static int32_t get_offset_of_m_SpriteState_10() { return static_cast(offsetof(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD, ___m_SpriteState_10)); } inline SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E get_m_SpriteState_10() const { return ___m_SpriteState_10; } inline SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E * get_address_of_m_SpriteState_10() { return &___m_SpriteState_10; } inline void set_m_SpriteState_10(SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E value) { ___m_SpriteState_10 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_SpriteState_10))->___m_HighlightedSprite_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_SpriteState_10))->___m_PressedSprite_1), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_SpriteState_10))->___m_SelectedSprite_2), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___m_SpriteState_10))->___m_DisabledSprite_3), (void*)NULL); #endif } inline static int32_t get_offset_of_m_AnimationTriggers_11() { return static_cast(offsetof(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD, ___m_AnimationTriggers_11)); } inline AnimationTriggers_tF38CA7FA631709E096B57D732668D86081F44C11 * get_m_AnimationTriggers_11() const { return ___m_AnimationTriggers_11; } inline AnimationTriggers_tF38CA7FA631709E096B57D732668D86081F44C11 ** get_address_of_m_AnimationTriggers_11() { return &___m_AnimationTriggers_11; } inline void set_m_AnimationTriggers_11(AnimationTriggers_tF38CA7FA631709E096B57D732668D86081F44C11 * value) { ___m_AnimationTriggers_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_AnimationTriggers_11), (void*)value); } inline static int32_t get_offset_of_m_Interactable_12() { return static_cast(offsetof(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD, ___m_Interactable_12)); } inline bool get_m_Interactable_12() const { return ___m_Interactable_12; } inline bool* get_address_of_m_Interactable_12() { return &___m_Interactable_12; } inline void set_m_Interactable_12(bool value) { ___m_Interactable_12 = value; } inline static int32_t get_offset_of_m_TargetGraphic_13() { return static_cast(offsetof(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD, ___m_TargetGraphic_13)); } inline Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24 * get_m_TargetGraphic_13() const { return ___m_TargetGraphic_13; } inline Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24 ** get_address_of_m_TargetGraphic_13() { return &___m_TargetGraphic_13; } inline void set_m_TargetGraphic_13(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24 * value) { ___m_TargetGraphic_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_TargetGraphic_13), (void*)value); } inline static int32_t get_offset_of_m_GroupsAllowInteraction_14() { return static_cast(offsetof(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD, ___m_GroupsAllowInteraction_14)); } inline bool get_m_GroupsAllowInteraction_14() const { return ___m_GroupsAllowInteraction_14; } inline bool* get_address_of_m_GroupsAllowInteraction_14() { return &___m_GroupsAllowInteraction_14; } inline void set_m_GroupsAllowInteraction_14(bool value) { ___m_GroupsAllowInteraction_14 = value; } inline static int32_t get_offset_of_m_CurrentIndex_15() { return static_cast(offsetof(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD, ___m_CurrentIndex_15)); } inline int32_t get_m_CurrentIndex_15() const { return ___m_CurrentIndex_15; } inline int32_t* get_address_of_m_CurrentIndex_15() { return &___m_CurrentIndex_15; } inline void set_m_CurrentIndex_15(int32_t value) { ___m_CurrentIndex_15 = value; } inline static int32_t get_offset_of_U3CisPointerInsideU3Ek__BackingField_16() { return static_cast(offsetof(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD, ___U3CisPointerInsideU3Ek__BackingField_16)); } inline bool get_U3CisPointerInsideU3Ek__BackingField_16() const { return ___U3CisPointerInsideU3Ek__BackingField_16; } inline bool* get_address_of_U3CisPointerInsideU3Ek__BackingField_16() { return &___U3CisPointerInsideU3Ek__BackingField_16; } inline void set_U3CisPointerInsideU3Ek__BackingField_16(bool value) { ___U3CisPointerInsideU3Ek__BackingField_16 = value; } inline static int32_t get_offset_of_U3CisPointerDownU3Ek__BackingField_17() { return static_cast(offsetof(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD, ___U3CisPointerDownU3Ek__BackingField_17)); } inline bool get_U3CisPointerDownU3Ek__BackingField_17() const { return ___U3CisPointerDownU3Ek__BackingField_17; } inline bool* get_address_of_U3CisPointerDownU3Ek__BackingField_17() { return &___U3CisPointerDownU3Ek__BackingField_17; } inline void set_U3CisPointerDownU3Ek__BackingField_17(bool value) { ___U3CisPointerDownU3Ek__BackingField_17 = value; } inline static int32_t get_offset_of_U3ChasSelectionU3Ek__BackingField_18() { return static_cast(offsetof(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD, ___U3ChasSelectionU3Ek__BackingField_18)); } inline bool get_U3ChasSelectionU3Ek__BackingField_18() const { return ___U3ChasSelectionU3Ek__BackingField_18; } inline bool* get_address_of_U3ChasSelectionU3Ek__BackingField_18() { return &___U3ChasSelectionU3Ek__BackingField_18; } inline void set_U3ChasSelectionU3Ek__BackingField_18(bool value) { ___U3ChasSelectionU3Ek__BackingField_18 = value; } inline static int32_t get_offset_of_m_CanvasGroupCache_19() { return static_cast(offsetof(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD, ___m_CanvasGroupCache_19)); } inline List_1_t34AA4AF4E7352129CA58045901530E41445AC16D * get_m_CanvasGroupCache_19() const { return ___m_CanvasGroupCache_19; } inline List_1_t34AA4AF4E7352129CA58045901530E41445AC16D ** get_address_of_m_CanvasGroupCache_19() { return &___m_CanvasGroupCache_19; } inline void set_m_CanvasGroupCache_19(List_1_t34AA4AF4E7352129CA58045901530E41445AC16D * value) { ___m_CanvasGroupCache_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_CanvasGroupCache_19), (void*)value); } }; struct Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD_StaticFields { public: // UnityEngine.UI.Selectable[] UnityEngine.UI.Selectable::s_Selectables SelectableU5BU5D_tECF9F5BDBF0652A937D18F10C883EFDAE2E62535* ___s_Selectables_4; // System.Int32 UnityEngine.UI.Selectable::s_SelectableCount int32_t ___s_SelectableCount_5; public: inline static int32_t get_offset_of_s_Selectables_4() { return static_cast(offsetof(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD_StaticFields, ___s_Selectables_4)); } inline SelectableU5BU5D_tECF9F5BDBF0652A937D18F10C883EFDAE2E62535* get_s_Selectables_4() const { return ___s_Selectables_4; } inline SelectableU5BU5D_tECF9F5BDBF0652A937D18F10C883EFDAE2E62535** get_address_of_s_Selectables_4() { return &___s_Selectables_4; } inline void set_s_Selectables_4(SelectableU5BU5D_tECF9F5BDBF0652A937D18F10C883EFDAE2E62535* value) { ___s_Selectables_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_Selectables_4), (void*)value); } inline static int32_t get_offset_of_s_SelectableCount_5() { return static_cast(offsetof(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD_StaticFields, ___s_SelectableCount_5)); } inline int32_t get_s_SelectableCount_5() const { return ___s_SelectableCount_5; } inline int32_t* get_address_of_s_SelectableCount_5() { return &___s_SelectableCount_5; } inline void set_s_SelectableCount_5(int32_t value) { ___s_SelectableCount_5 = value; } }; // UnityEngine.UI.Button struct Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D : public Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD { public: // UnityEngine.UI.Button/ButtonClickedEvent UnityEngine.UI.Button::m_OnClick ButtonClickedEvent_tE6D6D94ED8100451CF00D2BED1FB2253F37BB14F * ___m_OnClick_20; public: inline static int32_t get_offset_of_m_OnClick_20() { return static_cast(offsetof(Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D, ___m_OnClick_20)); } inline ButtonClickedEvent_tE6D6D94ED8100451CF00D2BED1FB2253F37BB14F * get_m_OnClick_20() const { return ___m_OnClick_20; } inline ButtonClickedEvent_tE6D6D94ED8100451CF00D2BED1FB2253F37BB14F ** get_address_of_m_OnClick_20() { return &___m_OnClick_20; } inline void set_m_OnClick_20(ButtonClickedEvent_tE6D6D94ED8100451CF00D2BED1FB2253F37BB14F * value) { ___m_OnClick_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_OnClick_20), (void*)value); } }; // UnityEngine.UI.GridLayoutGroup struct GridLayoutGroup_tE25FFEE93AF1291734B4EB8DA986D23A500E7C28 : public LayoutGroup_t63C978964192B57EFC660D5FDA03DEE89DDC1AE2 { public: // UnityEngine.UI.GridLayoutGroup/Corner UnityEngine.UI.GridLayoutGroup::m_StartCorner int32_t ___m_StartCorner_12; // UnityEngine.UI.GridLayoutGroup/Axis UnityEngine.UI.GridLayoutGroup::m_StartAxis int32_t ___m_StartAxis_13; // UnityEngine.Vector2 UnityEngine.UI.GridLayoutGroup::m_CellSize Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_CellSize_14; // UnityEngine.Vector2 UnityEngine.UI.GridLayoutGroup::m_Spacing Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_Spacing_15; // UnityEngine.UI.GridLayoutGroup/Constraint UnityEngine.UI.GridLayoutGroup::m_Constraint int32_t ___m_Constraint_16; // System.Int32 UnityEngine.UI.GridLayoutGroup::m_ConstraintCount int32_t ___m_ConstraintCount_17; public: inline static int32_t get_offset_of_m_StartCorner_12() { return static_cast(offsetof(GridLayoutGroup_tE25FFEE93AF1291734B4EB8DA986D23A500E7C28, ___m_StartCorner_12)); } inline int32_t get_m_StartCorner_12() const { return ___m_StartCorner_12; } inline int32_t* get_address_of_m_StartCorner_12() { return &___m_StartCorner_12; } inline void set_m_StartCorner_12(int32_t value) { ___m_StartCorner_12 = value; } inline static int32_t get_offset_of_m_StartAxis_13() { return static_cast(offsetof(GridLayoutGroup_tE25FFEE93AF1291734B4EB8DA986D23A500E7C28, ___m_StartAxis_13)); } inline int32_t get_m_StartAxis_13() const { return ___m_StartAxis_13; } inline int32_t* get_address_of_m_StartAxis_13() { return &___m_StartAxis_13; } inline void set_m_StartAxis_13(int32_t value) { ___m_StartAxis_13 = value; } inline static int32_t get_offset_of_m_CellSize_14() { return static_cast(offsetof(GridLayoutGroup_tE25FFEE93AF1291734B4EB8DA986D23A500E7C28, ___m_CellSize_14)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_m_CellSize_14() const { return ___m_CellSize_14; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_m_CellSize_14() { return &___m_CellSize_14; } inline void set_m_CellSize_14(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___m_CellSize_14 = value; } inline static int32_t get_offset_of_m_Spacing_15() { return static_cast(offsetof(GridLayoutGroup_tE25FFEE93AF1291734B4EB8DA986D23A500E7C28, ___m_Spacing_15)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_m_Spacing_15() const { return ___m_Spacing_15; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_m_Spacing_15() { return &___m_Spacing_15; } inline void set_m_Spacing_15(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___m_Spacing_15 = value; } inline static int32_t get_offset_of_m_Constraint_16() { return static_cast(offsetof(GridLayoutGroup_tE25FFEE93AF1291734B4EB8DA986D23A500E7C28, ___m_Constraint_16)); } inline int32_t get_m_Constraint_16() const { return ___m_Constraint_16; } inline int32_t* get_address_of_m_Constraint_16() { return &___m_Constraint_16; } inline void set_m_Constraint_16(int32_t value) { ___m_Constraint_16 = value; } inline static int32_t get_offset_of_m_ConstraintCount_17() { return static_cast(offsetof(GridLayoutGroup_tE25FFEE93AF1291734B4EB8DA986D23A500E7C28, ___m_ConstraintCount_17)); } inline int32_t get_m_ConstraintCount_17() const { return ___m_ConstraintCount_17; } inline int32_t* get_address_of_m_ConstraintCount_17() { return &___m_ConstraintCount_17; } inline void set_m_ConstraintCount_17(int32_t value) { ___m_ConstraintCount_17 = value; } }; // UnityEngine.UI.InputField struct InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 : public Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD { public: // UnityEngine.TouchScreenKeyboard UnityEngine.UI.InputField::m_Keyboard TouchScreenKeyboard_t7964B2E9E52C4E095B14F01C32774B98CA11711E * ___m_Keyboard_20; // UnityEngine.UI.Text UnityEngine.UI.InputField::m_TextComponent Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * ___m_TextComponent_22; // UnityEngine.UI.Graphic UnityEngine.UI.InputField::m_Placeholder Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24 * ___m_Placeholder_23; // UnityEngine.UI.InputField/ContentType UnityEngine.UI.InputField::m_ContentType int32_t ___m_ContentType_24; // UnityEngine.UI.InputField/InputType UnityEngine.UI.InputField::m_InputType int32_t ___m_InputType_25; // System.Char UnityEngine.UI.InputField::m_AsteriskChar Il2CppChar ___m_AsteriskChar_26; // UnityEngine.TouchScreenKeyboardType UnityEngine.UI.InputField::m_KeyboardType int32_t ___m_KeyboardType_27; // UnityEngine.UI.InputField/LineType UnityEngine.UI.InputField::m_LineType int32_t ___m_LineType_28; // System.Boolean UnityEngine.UI.InputField::m_HideMobileInput bool ___m_HideMobileInput_29; // UnityEngine.UI.InputField/CharacterValidation UnityEngine.UI.InputField::m_CharacterValidation int32_t ___m_CharacterValidation_30; // System.Int32 UnityEngine.UI.InputField::m_CharacterLimit int32_t ___m_CharacterLimit_31; // UnityEngine.UI.InputField/EndEditEvent UnityEngine.UI.InputField::m_OnEndEdit EndEditEvent_t85372BABF7066F7DF46B414EA94C5D42736A0E8D * ___m_OnEndEdit_32; // UnityEngine.UI.InputField/SubmitEvent UnityEngine.UI.InputField::m_OnSubmit SubmitEvent_t3FD30F627DF2ADEC87C0BE69EE632AAB99F3B8A9 * ___m_OnSubmit_33; // UnityEngine.UI.InputField/OnChangeEvent UnityEngine.UI.InputField::m_OnValueChanged OnChangeEvent_t2E59014A56EA94168140F0585834954B40D716F7 * ___m_OnValueChanged_34; // UnityEngine.UI.InputField/OnValidateInput UnityEngine.UI.InputField::m_OnValidateInput OnValidateInput_t721D2C2A7710D113E4909B36D9893CC6B1C69B9F * ___m_OnValidateInput_35; // UnityEngine.Color UnityEngine.UI.InputField::m_CaretColor Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___m_CaretColor_36; // System.Boolean UnityEngine.UI.InputField::m_CustomCaretColor bool ___m_CustomCaretColor_37; // UnityEngine.Color UnityEngine.UI.InputField::m_SelectionColor Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___m_SelectionColor_38; // System.String UnityEngine.UI.InputField::m_Text String_t* ___m_Text_39; // System.Single UnityEngine.UI.InputField::m_CaretBlinkRate float ___m_CaretBlinkRate_40; // System.Int32 UnityEngine.UI.InputField::m_CaretWidth int32_t ___m_CaretWidth_41; // System.Boolean UnityEngine.UI.InputField::m_ReadOnly bool ___m_ReadOnly_42; // System.Boolean UnityEngine.UI.InputField::m_ShouldActivateOnSelect bool ___m_ShouldActivateOnSelect_43; // System.Int32 UnityEngine.UI.InputField::m_CaretPosition int32_t ___m_CaretPosition_44; // System.Int32 UnityEngine.UI.InputField::m_CaretSelectPosition int32_t ___m_CaretSelectPosition_45; // UnityEngine.RectTransform UnityEngine.UI.InputField::caretRectTrans RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * ___caretRectTrans_46; // UnityEngine.UIVertex[] UnityEngine.UI.InputField::m_CursorVerts UIVertexU5BU5D_tE3D523C48DFEBC775876720DE2539A79FB7E5E5A* ___m_CursorVerts_47; // UnityEngine.TextGenerator UnityEngine.UI.InputField::m_InputTextCache TextGenerator_t893F256D3587633108E00E5731CDC5A77AFF1B70 * ___m_InputTextCache_48; // UnityEngine.CanvasRenderer UnityEngine.UI.InputField::m_CachedInputRenderer CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E * ___m_CachedInputRenderer_49; // System.Boolean UnityEngine.UI.InputField::m_PreventFontCallback bool ___m_PreventFontCallback_50; // UnityEngine.Mesh UnityEngine.UI.InputField::m_Mesh Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 * ___m_Mesh_51; // System.Boolean UnityEngine.UI.InputField::m_AllowInput bool ___m_AllowInput_52; // System.Boolean UnityEngine.UI.InputField::m_ShouldActivateNextUpdate bool ___m_ShouldActivateNextUpdate_53; // System.Boolean UnityEngine.UI.InputField::m_UpdateDrag bool ___m_UpdateDrag_54; // System.Boolean UnityEngine.UI.InputField::m_DragPositionOutOfBounds bool ___m_DragPositionOutOfBounds_55; // System.Boolean UnityEngine.UI.InputField::m_CaretVisible bool ___m_CaretVisible_58; // UnityEngine.Coroutine UnityEngine.UI.InputField::m_BlinkCoroutine Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * ___m_BlinkCoroutine_59; // System.Single UnityEngine.UI.InputField::m_BlinkStartTime float ___m_BlinkStartTime_60; // System.Int32 UnityEngine.UI.InputField::m_DrawStart int32_t ___m_DrawStart_61; // System.Int32 UnityEngine.UI.InputField::m_DrawEnd int32_t ___m_DrawEnd_62; // UnityEngine.Coroutine UnityEngine.UI.InputField::m_DragCoroutine Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * ___m_DragCoroutine_63; // System.String UnityEngine.UI.InputField::m_OriginalText String_t* ___m_OriginalText_64; // System.Boolean UnityEngine.UI.InputField::m_WasCanceled bool ___m_WasCanceled_65; // System.Boolean UnityEngine.UI.InputField::m_HasDoneFocusTransition bool ___m_HasDoneFocusTransition_66; // UnityEngine.WaitForSecondsRealtime UnityEngine.UI.InputField::m_WaitForSecondsRealtime WaitForSecondsRealtime_t04F2884A9814C3E4E415E788AFE56B5928577C40 * ___m_WaitForSecondsRealtime_67; // System.Boolean UnityEngine.UI.InputField::m_TouchKeyboardAllowsInPlaceEditing bool ___m_TouchKeyboardAllowsInPlaceEditing_68; // UnityEngine.Event UnityEngine.UI.InputField::m_ProcessingEvent Event_tED49F8EC5A2514F6E877E301B1AB7ABE4647253E * ___m_ProcessingEvent_70; public: inline static int32_t get_offset_of_m_Keyboard_20() { return static_cast(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_Keyboard_20)); } inline TouchScreenKeyboard_t7964B2E9E52C4E095B14F01C32774B98CA11711E * get_m_Keyboard_20() const { return ___m_Keyboard_20; } inline TouchScreenKeyboard_t7964B2E9E52C4E095B14F01C32774B98CA11711E ** get_address_of_m_Keyboard_20() { return &___m_Keyboard_20; } inline void set_m_Keyboard_20(TouchScreenKeyboard_t7964B2E9E52C4E095B14F01C32774B98CA11711E * value) { ___m_Keyboard_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Keyboard_20), (void*)value); } inline static int32_t get_offset_of_m_TextComponent_22() { return static_cast(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_TextComponent_22)); } inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * get_m_TextComponent_22() const { return ___m_TextComponent_22; } inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 ** get_address_of_m_TextComponent_22() { return &___m_TextComponent_22; } inline void set_m_TextComponent_22(Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * value) { ___m_TextComponent_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_TextComponent_22), (void*)value); } inline static int32_t get_offset_of_m_Placeholder_23() { return static_cast(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_Placeholder_23)); } inline Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24 * get_m_Placeholder_23() const { return ___m_Placeholder_23; } inline Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24 ** get_address_of_m_Placeholder_23() { return &___m_Placeholder_23; } inline void set_m_Placeholder_23(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24 * value) { ___m_Placeholder_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Placeholder_23), (void*)value); } inline static int32_t get_offset_of_m_ContentType_24() { return static_cast(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_ContentType_24)); } inline int32_t get_m_ContentType_24() const { return ___m_ContentType_24; } inline int32_t* get_address_of_m_ContentType_24() { return &___m_ContentType_24; } inline void set_m_ContentType_24(int32_t value) { ___m_ContentType_24 = value; } inline static int32_t get_offset_of_m_InputType_25() { return static_cast(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_InputType_25)); } inline int32_t get_m_InputType_25() const { return ___m_InputType_25; } inline int32_t* get_address_of_m_InputType_25() { return &___m_InputType_25; } inline void set_m_InputType_25(int32_t value) { ___m_InputType_25 = value; } inline static int32_t get_offset_of_m_AsteriskChar_26() { return static_cast(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_AsteriskChar_26)); } inline Il2CppChar get_m_AsteriskChar_26() const { return ___m_AsteriskChar_26; } inline Il2CppChar* get_address_of_m_AsteriskChar_26() { return &___m_AsteriskChar_26; } inline void set_m_AsteriskChar_26(Il2CppChar value) { ___m_AsteriskChar_26 = value; } inline static int32_t get_offset_of_m_KeyboardType_27() { return static_cast(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_KeyboardType_27)); } inline int32_t get_m_KeyboardType_27() const { return ___m_KeyboardType_27; } inline int32_t* get_address_of_m_KeyboardType_27() { return &___m_KeyboardType_27; } inline void set_m_KeyboardType_27(int32_t value) { ___m_KeyboardType_27 = value; } inline static int32_t get_offset_of_m_LineType_28() { return static_cast(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_LineType_28)); } inline int32_t get_m_LineType_28() const { return ___m_LineType_28; } inline int32_t* get_address_of_m_LineType_28() { return &___m_LineType_28; } inline void set_m_LineType_28(int32_t value) { ___m_LineType_28 = value; } inline static int32_t get_offset_of_m_HideMobileInput_29() { return static_cast(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_HideMobileInput_29)); } inline bool get_m_HideMobileInput_29() const { return ___m_HideMobileInput_29; } inline bool* get_address_of_m_HideMobileInput_29() { return &___m_HideMobileInput_29; } inline void set_m_HideMobileInput_29(bool value) { ___m_HideMobileInput_29 = value; } inline static int32_t get_offset_of_m_CharacterValidation_30() { return static_cast(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_CharacterValidation_30)); } inline int32_t get_m_CharacterValidation_30() const { return ___m_CharacterValidation_30; } inline int32_t* get_address_of_m_CharacterValidation_30() { return &___m_CharacterValidation_30; } inline void set_m_CharacterValidation_30(int32_t value) { ___m_CharacterValidation_30 = value; } inline static int32_t get_offset_of_m_CharacterLimit_31() { return static_cast(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_CharacterLimit_31)); } inline int32_t get_m_CharacterLimit_31() const { return ___m_CharacterLimit_31; } inline int32_t* get_address_of_m_CharacterLimit_31() { return &___m_CharacterLimit_31; } inline void set_m_CharacterLimit_31(int32_t value) { ___m_CharacterLimit_31 = value; } inline static int32_t get_offset_of_m_OnEndEdit_32() { return static_cast(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_OnEndEdit_32)); } inline EndEditEvent_t85372BABF7066F7DF46B414EA94C5D42736A0E8D * get_m_OnEndEdit_32() const { return ___m_OnEndEdit_32; } inline EndEditEvent_t85372BABF7066F7DF46B414EA94C5D42736A0E8D ** get_address_of_m_OnEndEdit_32() { return &___m_OnEndEdit_32; } inline void set_m_OnEndEdit_32(EndEditEvent_t85372BABF7066F7DF46B414EA94C5D42736A0E8D * value) { ___m_OnEndEdit_32 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_OnEndEdit_32), (void*)value); } inline static int32_t get_offset_of_m_OnSubmit_33() { return static_cast(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_OnSubmit_33)); } inline SubmitEvent_t3FD30F627DF2ADEC87C0BE69EE632AAB99F3B8A9 * get_m_OnSubmit_33() const { return ___m_OnSubmit_33; } inline SubmitEvent_t3FD30F627DF2ADEC87C0BE69EE632AAB99F3B8A9 ** get_address_of_m_OnSubmit_33() { return &___m_OnSubmit_33; } inline void set_m_OnSubmit_33(SubmitEvent_t3FD30F627DF2ADEC87C0BE69EE632AAB99F3B8A9 * value) { ___m_OnSubmit_33 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_OnSubmit_33), (void*)value); } inline static int32_t get_offset_of_m_OnValueChanged_34() { return static_cast(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_OnValueChanged_34)); } inline OnChangeEvent_t2E59014A56EA94168140F0585834954B40D716F7 * get_m_OnValueChanged_34() const { return ___m_OnValueChanged_34; } inline OnChangeEvent_t2E59014A56EA94168140F0585834954B40D716F7 ** get_address_of_m_OnValueChanged_34() { return &___m_OnValueChanged_34; } inline void set_m_OnValueChanged_34(OnChangeEvent_t2E59014A56EA94168140F0585834954B40D716F7 * value) { ___m_OnValueChanged_34 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_OnValueChanged_34), (void*)value); } inline static int32_t get_offset_of_m_OnValidateInput_35() { return static_cast(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_OnValidateInput_35)); } inline OnValidateInput_t721D2C2A7710D113E4909B36D9893CC6B1C69B9F * get_m_OnValidateInput_35() const { return ___m_OnValidateInput_35; } inline OnValidateInput_t721D2C2A7710D113E4909B36D9893CC6B1C69B9F ** get_address_of_m_OnValidateInput_35() { return &___m_OnValidateInput_35; } inline void set_m_OnValidateInput_35(OnValidateInput_t721D2C2A7710D113E4909B36D9893CC6B1C69B9F * value) { ___m_OnValidateInput_35 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_OnValidateInput_35), (void*)value); } inline static int32_t get_offset_of_m_CaretColor_36() { return static_cast(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_CaretColor_36)); } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_m_CaretColor_36() const { return ___m_CaretColor_36; } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_m_CaretColor_36() { return &___m_CaretColor_36; } inline void set_m_CaretColor_36(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value) { ___m_CaretColor_36 = value; } inline static int32_t get_offset_of_m_CustomCaretColor_37() { return static_cast(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_CustomCaretColor_37)); } inline bool get_m_CustomCaretColor_37() const { return ___m_CustomCaretColor_37; } inline bool* get_address_of_m_CustomCaretColor_37() { return &___m_CustomCaretColor_37; } inline void set_m_CustomCaretColor_37(bool value) { ___m_CustomCaretColor_37 = value; } inline static int32_t get_offset_of_m_SelectionColor_38() { return static_cast(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_SelectionColor_38)); } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_m_SelectionColor_38() const { return ___m_SelectionColor_38; } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_m_SelectionColor_38() { return &___m_SelectionColor_38; } inline void set_m_SelectionColor_38(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value) { ___m_SelectionColor_38 = value; } inline static int32_t get_offset_of_m_Text_39() { return static_cast(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_Text_39)); } inline String_t* get_m_Text_39() const { return ___m_Text_39; } inline String_t** get_address_of_m_Text_39() { return &___m_Text_39; } inline void set_m_Text_39(String_t* value) { ___m_Text_39 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Text_39), (void*)value); } inline static int32_t get_offset_of_m_CaretBlinkRate_40() { return static_cast(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_CaretBlinkRate_40)); } inline float get_m_CaretBlinkRate_40() const { return ___m_CaretBlinkRate_40; } inline float* get_address_of_m_CaretBlinkRate_40() { return &___m_CaretBlinkRate_40; } inline void set_m_CaretBlinkRate_40(float value) { ___m_CaretBlinkRate_40 = value; } inline static int32_t get_offset_of_m_CaretWidth_41() { return static_cast(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_CaretWidth_41)); } inline int32_t get_m_CaretWidth_41() const { return ___m_CaretWidth_41; } inline int32_t* get_address_of_m_CaretWidth_41() { return &___m_CaretWidth_41; } inline void set_m_CaretWidth_41(int32_t value) { ___m_CaretWidth_41 = value; } inline static int32_t get_offset_of_m_ReadOnly_42() { return static_cast(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_ReadOnly_42)); } inline bool get_m_ReadOnly_42() const { return ___m_ReadOnly_42; } inline bool* get_address_of_m_ReadOnly_42() { return &___m_ReadOnly_42; } inline void set_m_ReadOnly_42(bool value) { ___m_ReadOnly_42 = value; } inline static int32_t get_offset_of_m_ShouldActivateOnSelect_43() { return static_cast(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_ShouldActivateOnSelect_43)); } inline bool get_m_ShouldActivateOnSelect_43() const { return ___m_ShouldActivateOnSelect_43; } inline bool* get_address_of_m_ShouldActivateOnSelect_43() { return &___m_ShouldActivateOnSelect_43; } inline void set_m_ShouldActivateOnSelect_43(bool value) { ___m_ShouldActivateOnSelect_43 = value; } inline static int32_t get_offset_of_m_CaretPosition_44() { return static_cast(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_CaretPosition_44)); } inline int32_t get_m_CaretPosition_44() const { return ___m_CaretPosition_44; } inline int32_t* get_address_of_m_CaretPosition_44() { return &___m_CaretPosition_44; } inline void set_m_CaretPosition_44(int32_t value) { ___m_CaretPosition_44 = value; } inline static int32_t get_offset_of_m_CaretSelectPosition_45() { return static_cast(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_CaretSelectPosition_45)); } inline int32_t get_m_CaretSelectPosition_45() const { return ___m_CaretSelectPosition_45; } inline int32_t* get_address_of_m_CaretSelectPosition_45() { return &___m_CaretSelectPosition_45; } inline void set_m_CaretSelectPosition_45(int32_t value) { ___m_CaretSelectPosition_45 = value; } inline static int32_t get_offset_of_caretRectTrans_46() { return static_cast(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___caretRectTrans_46)); } inline RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * get_caretRectTrans_46() const { return ___caretRectTrans_46; } inline RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 ** get_address_of_caretRectTrans_46() { return &___caretRectTrans_46; } inline void set_caretRectTrans_46(RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * value) { ___caretRectTrans_46 = value; Il2CppCodeGenWriteBarrier((void**)(&___caretRectTrans_46), (void*)value); } inline static int32_t get_offset_of_m_CursorVerts_47() { return static_cast(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_CursorVerts_47)); } inline UIVertexU5BU5D_tE3D523C48DFEBC775876720DE2539A79FB7E5E5A* get_m_CursorVerts_47() const { return ___m_CursorVerts_47; } inline UIVertexU5BU5D_tE3D523C48DFEBC775876720DE2539A79FB7E5E5A** get_address_of_m_CursorVerts_47() { return &___m_CursorVerts_47; } inline void set_m_CursorVerts_47(UIVertexU5BU5D_tE3D523C48DFEBC775876720DE2539A79FB7E5E5A* value) { ___m_CursorVerts_47 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_CursorVerts_47), (void*)value); } inline static int32_t get_offset_of_m_InputTextCache_48() { return static_cast(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_InputTextCache_48)); } inline TextGenerator_t893F256D3587633108E00E5731CDC5A77AFF1B70 * get_m_InputTextCache_48() const { return ___m_InputTextCache_48; } inline TextGenerator_t893F256D3587633108E00E5731CDC5A77AFF1B70 ** get_address_of_m_InputTextCache_48() { return &___m_InputTextCache_48; } inline void set_m_InputTextCache_48(TextGenerator_t893F256D3587633108E00E5731CDC5A77AFF1B70 * value) { ___m_InputTextCache_48 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_InputTextCache_48), (void*)value); } inline static int32_t get_offset_of_m_CachedInputRenderer_49() { return static_cast(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_CachedInputRenderer_49)); } inline CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E * get_m_CachedInputRenderer_49() const { return ___m_CachedInputRenderer_49; } inline CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E ** get_address_of_m_CachedInputRenderer_49() { return &___m_CachedInputRenderer_49; } inline void set_m_CachedInputRenderer_49(CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E * value) { ___m_CachedInputRenderer_49 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_CachedInputRenderer_49), (void*)value); } inline static int32_t get_offset_of_m_PreventFontCallback_50() { return static_cast(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_PreventFontCallback_50)); } inline bool get_m_PreventFontCallback_50() const { return ___m_PreventFontCallback_50; } inline bool* get_address_of_m_PreventFontCallback_50() { return &___m_PreventFontCallback_50; } inline void set_m_PreventFontCallback_50(bool value) { ___m_PreventFontCallback_50 = value; } inline static int32_t get_offset_of_m_Mesh_51() { return static_cast(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_Mesh_51)); } inline Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 * get_m_Mesh_51() const { return ___m_Mesh_51; } inline Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 ** get_address_of_m_Mesh_51() { return &___m_Mesh_51; } inline void set_m_Mesh_51(Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 * value) { ___m_Mesh_51 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Mesh_51), (void*)value); } inline static int32_t get_offset_of_m_AllowInput_52() { return static_cast(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_AllowInput_52)); } inline bool get_m_AllowInput_52() const { return ___m_AllowInput_52; } inline bool* get_address_of_m_AllowInput_52() { return &___m_AllowInput_52; } inline void set_m_AllowInput_52(bool value) { ___m_AllowInput_52 = value; } inline static int32_t get_offset_of_m_ShouldActivateNextUpdate_53() { return static_cast(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_ShouldActivateNextUpdate_53)); } inline bool get_m_ShouldActivateNextUpdate_53() const { return ___m_ShouldActivateNextUpdate_53; } inline bool* get_address_of_m_ShouldActivateNextUpdate_53() { return &___m_ShouldActivateNextUpdate_53; } inline void set_m_ShouldActivateNextUpdate_53(bool value) { ___m_ShouldActivateNextUpdate_53 = value; } inline static int32_t get_offset_of_m_UpdateDrag_54() { return static_cast(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_UpdateDrag_54)); } inline bool get_m_UpdateDrag_54() const { return ___m_UpdateDrag_54; } inline bool* get_address_of_m_UpdateDrag_54() { return &___m_UpdateDrag_54; } inline void set_m_UpdateDrag_54(bool value) { ___m_UpdateDrag_54 = value; } inline static int32_t get_offset_of_m_DragPositionOutOfBounds_55() { return static_cast(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_DragPositionOutOfBounds_55)); } inline bool get_m_DragPositionOutOfBounds_55() const { return ___m_DragPositionOutOfBounds_55; } inline bool* get_address_of_m_DragPositionOutOfBounds_55() { return &___m_DragPositionOutOfBounds_55; } inline void set_m_DragPositionOutOfBounds_55(bool value) { ___m_DragPositionOutOfBounds_55 = value; } inline static int32_t get_offset_of_m_CaretVisible_58() { return static_cast(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_CaretVisible_58)); } inline bool get_m_CaretVisible_58() const { return ___m_CaretVisible_58; } inline bool* get_address_of_m_CaretVisible_58() { return &___m_CaretVisible_58; } inline void set_m_CaretVisible_58(bool value) { ___m_CaretVisible_58 = value; } inline static int32_t get_offset_of_m_BlinkCoroutine_59() { return static_cast(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_BlinkCoroutine_59)); } inline Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * get_m_BlinkCoroutine_59() const { return ___m_BlinkCoroutine_59; } inline Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 ** get_address_of_m_BlinkCoroutine_59() { return &___m_BlinkCoroutine_59; } inline void set_m_BlinkCoroutine_59(Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * value) { ___m_BlinkCoroutine_59 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_BlinkCoroutine_59), (void*)value); } inline static int32_t get_offset_of_m_BlinkStartTime_60() { return static_cast(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_BlinkStartTime_60)); } inline float get_m_BlinkStartTime_60() const { return ___m_BlinkStartTime_60; } inline float* get_address_of_m_BlinkStartTime_60() { return &___m_BlinkStartTime_60; } inline void set_m_BlinkStartTime_60(float value) { ___m_BlinkStartTime_60 = value; } inline static int32_t get_offset_of_m_DrawStart_61() { return static_cast(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_DrawStart_61)); } inline int32_t get_m_DrawStart_61() const { return ___m_DrawStart_61; } inline int32_t* get_address_of_m_DrawStart_61() { return &___m_DrawStart_61; } inline void set_m_DrawStart_61(int32_t value) { ___m_DrawStart_61 = value; } inline static int32_t get_offset_of_m_DrawEnd_62() { return static_cast(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_DrawEnd_62)); } inline int32_t get_m_DrawEnd_62() const { return ___m_DrawEnd_62; } inline int32_t* get_address_of_m_DrawEnd_62() { return &___m_DrawEnd_62; } inline void set_m_DrawEnd_62(int32_t value) { ___m_DrawEnd_62 = value; } inline static int32_t get_offset_of_m_DragCoroutine_63() { return static_cast(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_DragCoroutine_63)); } inline Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * get_m_DragCoroutine_63() const { return ___m_DragCoroutine_63; } inline Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 ** get_address_of_m_DragCoroutine_63() { return &___m_DragCoroutine_63; } inline void set_m_DragCoroutine_63(Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * value) { ___m_DragCoroutine_63 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_DragCoroutine_63), (void*)value); } inline static int32_t get_offset_of_m_OriginalText_64() { return static_cast(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_OriginalText_64)); } inline String_t* get_m_OriginalText_64() const { return ___m_OriginalText_64; } inline String_t** get_address_of_m_OriginalText_64() { return &___m_OriginalText_64; } inline void set_m_OriginalText_64(String_t* value) { ___m_OriginalText_64 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_OriginalText_64), (void*)value); } inline static int32_t get_offset_of_m_WasCanceled_65() { return static_cast(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_WasCanceled_65)); } inline bool get_m_WasCanceled_65() const { return ___m_WasCanceled_65; } inline bool* get_address_of_m_WasCanceled_65() { return &___m_WasCanceled_65; } inline void set_m_WasCanceled_65(bool value) { ___m_WasCanceled_65 = value; } inline static int32_t get_offset_of_m_HasDoneFocusTransition_66() { return static_cast(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_HasDoneFocusTransition_66)); } inline bool get_m_HasDoneFocusTransition_66() const { return ___m_HasDoneFocusTransition_66; } inline bool* get_address_of_m_HasDoneFocusTransition_66() { return &___m_HasDoneFocusTransition_66; } inline void set_m_HasDoneFocusTransition_66(bool value) { ___m_HasDoneFocusTransition_66 = value; } inline static int32_t get_offset_of_m_WaitForSecondsRealtime_67() { return static_cast(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_WaitForSecondsRealtime_67)); } inline WaitForSecondsRealtime_t04F2884A9814C3E4E415E788AFE56B5928577C40 * get_m_WaitForSecondsRealtime_67() const { return ___m_WaitForSecondsRealtime_67; } inline WaitForSecondsRealtime_t04F2884A9814C3E4E415E788AFE56B5928577C40 ** get_address_of_m_WaitForSecondsRealtime_67() { return &___m_WaitForSecondsRealtime_67; } inline void set_m_WaitForSecondsRealtime_67(WaitForSecondsRealtime_t04F2884A9814C3E4E415E788AFE56B5928577C40 * value) { ___m_WaitForSecondsRealtime_67 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_WaitForSecondsRealtime_67), (void*)value); } inline static int32_t get_offset_of_m_TouchKeyboardAllowsInPlaceEditing_68() { return static_cast(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_TouchKeyboardAllowsInPlaceEditing_68)); } inline bool get_m_TouchKeyboardAllowsInPlaceEditing_68() const { return ___m_TouchKeyboardAllowsInPlaceEditing_68; } inline bool* get_address_of_m_TouchKeyboardAllowsInPlaceEditing_68() { return &___m_TouchKeyboardAllowsInPlaceEditing_68; } inline void set_m_TouchKeyboardAllowsInPlaceEditing_68(bool value) { ___m_TouchKeyboardAllowsInPlaceEditing_68 = value; } inline static int32_t get_offset_of_m_ProcessingEvent_70() { return static_cast(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0, ___m_ProcessingEvent_70)); } inline Event_tED49F8EC5A2514F6E877E301B1AB7ABE4647253E * get_m_ProcessingEvent_70() const { return ___m_ProcessingEvent_70; } inline Event_tED49F8EC5A2514F6E877E301B1AB7ABE4647253E ** get_address_of_m_ProcessingEvent_70() { return &___m_ProcessingEvent_70; } inline void set_m_ProcessingEvent_70(Event_tED49F8EC5A2514F6E877E301B1AB7ABE4647253E * value) { ___m_ProcessingEvent_70 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ProcessingEvent_70), (void*)value); } }; struct InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0_StaticFields { public: // System.Char[] UnityEngine.UI.InputField::kSeparators CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___kSeparators_21; public: inline static int32_t get_offset_of_kSeparators_21() { return static_cast(offsetof(InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0_StaticFields, ___kSeparators_21)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_kSeparators_21() const { return ___kSeparators_21; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_kSeparators_21() { return &___kSeparators_21; } inline void set_kSeparators_21(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___kSeparators_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___kSeparators_21), (void*)value); } }; // UnityEngine.UI.MaskableGraphic struct MaskableGraphic_t0DB59E37E3C8AD2F5A4FB7FB091630CB21370CCE : public Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24 { public: // System.Boolean UnityEngine.UI.MaskableGraphic::m_ShouldRecalculateStencil bool ___m_ShouldRecalculateStencil_26; // UnityEngine.Material UnityEngine.UI.MaskableGraphic::m_MaskMaterial Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___m_MaskMaterial_27; // UnityEngine.UI.RectMask2D UnityEngine.UI.MaskableGraphic::m_ParentMask RectMask2D_tD909811991B341D752E4C978C89EFB80FA7A2B15 * ___m_ParentMask_28; // System.Boolean UnityEngine.UI.MaskableGraphic::m_Maskable bool ___m_Maskable_29; // System.Boolean UnityEngine.UI.MaskableGraphic::m_IsMaskingGraphic bool ___m_IsMaskingGraphic_30; // System.Boolean UnityEngine.UI.MaskableGraphic::m_IncludeForMasking bool ___m_IncludeForMasking_31; // UnityEngine.UI.MaskableGraphic/CullStateChangedEvent UnityEngine.UI.MaskableGraphic::m_OnCullStateChanged CullStateChangedEvent_t9B69755DEBEF041C3CC15C3604610BDD72856BD4 * ___m_OnCullStateChanged_32; // System.Boolean UnityEngine.UI.MaskableGraphic::m_ShouldRecalculate bool ___m_ShouldRecalculate_33; // System.Int32 UnityEngine.UI.MaskableGraphic::m_StencilValue int32_t ___m_StencilValue_34; // UnityEngine.Vector3[] UnityEngine.UI.MaskableGraphic::m_Corners Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* ___m_Corners_35; public: inline static int32_t get_offset_of_m_ShouldRecalculateStencil_26() { return static_cast(offsetof(MaskableGraphic_t0DB59E37E3C8AD2F5A4FB7FB091630CB21370CCE, ___m_ShouldRecalculateStencil_26)); } inline bool get_m_ShouldRecalculateStencil_26() const { return ___m_ShouldRecalculateStencil_26; } inline bool* get_address_of_m_ShouldRecalculateStencil_26() { return &___m_ShouldRecalculateStencil_26; } inline void set_m_ShouldRecalculateStencil_26(bool value) { ___m_ShouldRecalculateStencil_26 = value; } inline static int32_t get_offset_of_m_MaskMaterial_27() { return static_cast(offsetof(MaskableGraphic_t0DB59E37E3C8AD2F5A4FB7FB091630CB21370CCE, ___m_MaskMaterial_27)); } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE * get_m_MaskMaterial_27() const { return ___m_MaskMaterial_27; } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE ** get_address_of_m_MaskMaterial_27() { return &___m_MaskMaterial_27; } inline void set_m_MaskMaterial_27(Material_t8927C00353A72755313F046D0CE85178AE8218EE * value) { ___m_MaskMaterial_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_MaskMaterial_27), (void*)value); } inline static int32_t get_offset_of_m_ParentMask_28() { return static_cast(offsetof(MaskableGraphic_t0DB59E37E3C8AD2F5A4FB7FB091630CB21370CCE, ___m_ParentMask_28)); } inline RectMask2D_tD909811991B341D752E4C978C89EFB80FA7A2B15 * get_m_ParentMask_28() const { return ___m_ParentMask_28; } inline RectMask2D_tD909811991B341D752E4C978C89EFB80FA7A2B15 ** get_address_of_m_ParentMask_28() { return &___m_ParentMask_28; } inline void set_m_ParentMask_28(RectMask2D_tD909811991B341D752E4C978C89EFB80FA7A2B15 * value) { ___m_ParentMask_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ParentMask_28), (void*)value); } inline static int32_t get_offset_of_m_Maskable_29() { return static_cast(offsetof(MaskableGraphic_t0DB59E37E3C8AD2F5A4FB7FB091630CB21370CCE, ___m_Maskable_29)); } inline bool get_m_Maskable_29() const { return ___m_Maskable_29; } inline bool* get_address_of_m_Maskable_29() { return &___m_Maskable_29; } inline void set_m_Maskable_29(bool value) { ___m_Maskable_29 = value; } inline static int32_t get_offset_of_m_IsMaskingGraphic_30() { return static_cast(offsetof(MaskableGraphic_t0DB59E37E3C8AD2F5A4FB7FB091630CB21370CCE, ___m_IsMaskingGraphic_30)); } inline bool get_m_IsMaskingGraphic_30() const { return ___m_IsMaskingGraphic_30; } inline bool* get_address_of_m_IsMaskingGraphic_30() { return &___m_IsMaskingGraphic_30; } inline void set_m_IsMaskingGraphic_30(bool value) { ___m_IsMaskingGraphic_30 = value; } inline static int32_t get_offset_of_m_IncludeForMasking_31() { return static_cast(offsetof(MaskableGraphic_t0DB59E37E3C8AD2F5A4FB7FB091630CB21370CCE, ___m_IncludeForMasking_31)); } inline bool get_m_IncludeForMasking_31() const { return ___m_IncludeForMasking_31; } inline bool* get_address_of_m_IncludeForMasking_31() { return &___m_IncludeForMasking_31; } inline void set_m_IncludeForMasking_31(bool value) { ___m_IncludeForMasking_31 = value; } inline static int32_t get_offset_of_m_OnCullStateChanged_32() { return static_cast(offsetof(MaskableGraphic_t0DB59E37E3C8AD2F5A4FB7FB091630CB21370CCE, ___m_OnCullStateChanged_32)); } inline CullStateChangedEvent_t9B69755DEBEF041C3CC15C3604610BDD72856BD4 * get_m_OnCullStateChanged_32() const { return ___m_OnCullStateChanged_32; } inline CullStateChangedEvent_t9B69755DEBEF041C3CC15C3604610BDD72856BD4 ** get_address_of_m_OnCullStateChanged_32() { return &___m_OnCullStateChanged_32; } inline void set_m_OnCullStateChanged_32(CullStateChangedEvent_t9B69755DEBEF041C3CC15C3604610BDD72856BD4 * value) { ___m_OnCullStateChanged_32 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_OnCullStateChanged_32), (void*)value); } inline static int32_t get_offset_of_m_ShouldRecalculate_33() { return static_cast(offsetof(MaskableGraphic_t0DB59E37E3C8AD2F5A4FB7FB091630CB21370CCE, ___m_ShouldRecalculate_33)); } inline bool get_m_ShouldRecalculate_33() const { return ___m_ShouldRecalculate_33; } inline bool* get_address_of_m_ShouldRecalculate_33() { return &___m_ShouldRecalculate_33; } inline void set_m_ShouldRecalculate_33(bool value) { ___m_ShouldRecalculate_33 = value; } inline static int32_t get_offset_of_m_StencilValue_34() { return static_cast(offsetof(MaskableGraphic_t0DB59E37E3C8AD2F5A4FB7FB091630CB21370CCE, ___m_StencilValue_34)); } inline int32_t get_m_StencilValue_34() const { return ___m_StencilValue_34; } inline int32_t* get_address_of_m_StencilValue_34() { return &___m_StencilValue_34; } inline void set_m_StencilValue_34(int32_t value) { ___m_StencilValue_34 = value; } inline static int32_t get_offset_of_m_Corners_35() { return static_cast(offsetof(MaskableGraphic_t0DB59E37E3C8AD2F5A4FB7FB091630CB21370CCE, ___m_Corners_35)); } inline Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* get_m_Corners_35() const { return ___m_Corners_35; } inline Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4** get_address_of_m_Corners_35() { return &___m_Corners_35; } inline void set_m_Corners_35(Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* value) { ___m_Corners_35 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Corners_35), (void*)value); } }; // UnityEngine.UI.Toggle struct Toggle_t68F5A84CDD2BBAEA866F42EB4E0C9F2B431D612E : public Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD { public: // UnityEngine.UI.Toggle/ToggleTransition UnityEngine.UI.Toggle::toggleTransition int32_t ___toggleTransition_20; // UnityEngine.UI.Graphic UnityEngine.UI.Toggle::graphic Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24 * ___graphic_21; // UnityEngine.UI.ToggleGroup UnityEngine.UI.Toggle::m_Group ToggleGroup_t12E1DFDEB3FFD979A20299EE42A94388AC619C95 * ___m_Group_22; // UnityEngine.UI.Toggle/ToggleEvent UnityEngine.UI.Toggle::onValueChanged ToggleEvent_t7B9EFE80B7D7F16F3E7B8FA75FEF45B00E0C0075 * ___onValueChanged_23; // System.Boolean UnityEngine.UI.Toggle::m_IsOn bool ___m_IsOn_24; public: inline static int32_t get_offset_of_toggleTransition_20() { return static_cast(offsetof(Toggle_t68F5A84CDD2BBAEA866F42EB4E0C9F2B431D612E, ___toggleTransition_20)); } inline int32_t get_toggleTransition_20() const { return ___toggleTransition_20; } inline int32_t* get_address_of_toggleTransition_20() { return &___toggleTransition_20; } inline void set_toggleTransition_20(int32_t value) { ___toggleTransition_20 = value; } inline static int32_t get_offset_of_graphic_21() { return static_cast(offsetof(Toggle_t68F5A84CDD2BBAEA866F42EB4E0C9F2B431D612E, ___graphic_21)); } inline Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24 * get_graphic_21() const { return ___graphic_21; } inline Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24 ** get_address_of_graphic_21() { return &___graphic_21; } inline void set_graphic_21(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24 * value) { ___graphic_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___graphic_21), (void*)value); } inline static int32_t get_offset_of_m_Group_22() { return static_cast(offsetof(Toggle_t68F5A84CDD2BBAEA866F42EB4E0C9F2B431D612E, ___m_Group_22)); } inline ToggleGroup_t12E1DFDEB3FFD979A20299EE42A94388AC619C95 * get_m_Group_22() const { return ___m_Group_22; } inline ToggleGroup_t12E1DFDEB3FFD979A20299EE42A94388AC619C95 ** get_address_of_m_Group_22() { return &___m_Group_22; } inline void set_m_Group_22(ToggleGroup_t12E1DFDEB3FFD979A20299EE42A94388AC619C95 * value) { ___m_Group_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Group_22), (void*)value); } inline static int32_t get_offset_of_onValueChanged_23() { return static_cast(offsetof(Toggle_t68F5A84CDD2BBAEA866F42EB4E0C9F2B431D612E, ___onValueChanged_23)); } inline ToggleEvent_t7B9EFE80B7D7F16F3E7B8FA75FEF45B00E0C0075 * get_onValueChanged_23() const { return ___onValueChanged_23; } inline ToggleEvent_t7B9EFE80B7D7F16F3E7B8FA75FEF45B00E0C0075 ** get_address_of_onValueChanged_23() { return &___onValueChanged_23; } inline void set_onValueChanged_23(ToggleEvent_t7B9EFE80B7D7F16F3E7B8FA75FEF45B00E0C0075 * value) { ___onValueChanged_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___onValueChanged_23), (void*)value); } inline static int32_t get_offset_of_m_IsOn_24() { return static_cast(offsetof(Toggle_t68F5A84CDD2BBAEA866F42EB4E0C9F2B431D612E, ___m_IsOn_24)); } inline bool get_m_IsOn_24() const { return ___m_IsOn_24; } inline bool* get_address_of_m_IsOn_24() { return &___m_IsOn_24; } inline void set_m_IsOn_24(bool value) { ___m_IsOn_24 = value; } }; // UnityEngine.UI.Image struct Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C : public MaskableGraphic_t0DB59E37E3C8AD2F5A4FB7FB091630CB21370CCE { public: // UnityEngine.Sprite UnityEngine.UI.Image::m_Sprite Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_Sprite_37; // UnityEngine.Sprite UnityEngine.UI.Image::m_OverrideSprite Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_OverrideSprite_38; // UnityEngine.UI.Image/Type UnityEngine.UI.Image::m_Type int32_t ___m_Type_39; // System.Boolean UnityEngine.UI.Image::m_PreserveAspect bool ___m_PreserveAspect_40; // System.Boolean UnityEngine.UI.Image::m_FillCenter bool ___m_FillCenter_41; // UnityEngine.UI.Image/FillMethod UnityEngine.UI.Image::m_FillMethod int32_t ___m_FillMethod_42; // System.Single UnityEngine.UI.Image::m_FillAmount float ___m_FillAmount_43; // System.Boolean UnityEngine.UI.Image::m_FillClockwise bool ___m_FillClockwise_44; // System.Int32 UnityEngine.UI.Image::m_FillOrigin int32_t ___m_FillOrigin_45; // System.Single UnityEngine.UI.Image::m_AlphaHitTestMinimumThreshold float ___m_AlphaHitTestMinimumThreshold_46; // System.Boolean UnityEngine.UI.Image::m_Tracked bool ___m_Tracked_47; // System.Boolean UnityEngine.UI.Image::m_UseSpriteMesh bool ___m_UseSpriteMesh_48; // System.Single UnityEngine.UI.Image::m_PixelsPerUnitMultiplier float ___m_PixelsPerUnitMultiplier_49; // System.Single UnityEngine.UI.Image::m_CachedReferencePixelsPerUnit float ___m_CachedReferencePixelsPerUnit_50; public: inline static int32_t get_offset_of_m_Sprite_37() { return static_cast(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C, ___m_Sprite_37)); } inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * get_m_Sprite_37() const { return ___m_Sprite_37; } inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 ** get_address_of_m_Sprite_37() { return &___m_Sprite_37; } inline void set_m_Sprite_37(Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * value) { ___m_Sprite_37 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Sprite_37), (void*)value); } inline static int32_t get_offset_of_m_OverrideSprite_38() { return static_cast(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C, ___m_OverrideSprite_38)); } inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * get_m_OverrideSprite_38() const { return ___m_OverrideSprite_38; } inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 ** get_address_of_m_OverrideSprite_38() { return &___m_OverrideSprite_38; } inline void set_m_OverrideSprite_38(Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * value) { ___m_OverrideSprite_38 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_OverrideSprite_38), (void*)value); } inline static int32_t get_offset_of_m_Type_39() { return static_cast(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C, ___m_Type_39)); } inline int32_t get_m_Type_39() const { return ___m_Type_39; } inline int32_t* get_address_of_m_Type_39() { return &___m_Type_39; } inline void set_m_Type_39(int32_t value) { ___m_Type_39 = value; } inline static int32_t get_offset_of_m_PreserveAspect_40() { return static_cast(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C, ___m_PreserveAspect_40)); } inline bool get_m_PreserveAspect_40() const { return ___m_PreserveAspect_40; } inline bool* get_address_of_m_PreserveAspect_40() { return &___m_PreserveAspect_40; } inline void set_m_PreserveAspect_40(bool value) { ___m_PreserveAspect_40 = value; } inline static int32_t get_offset_of_m_FillCenter_41() { return static_cast(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C, ___m_FillCenter_41)); } inline bool get_m_FillCenter_41() const { return ___m_FillCenter_41; } inline bool* get_address_of_m_FillCenter_41() { return &___m_FillCenter_41; } inline void set_m_FillCenter_41(bool value) { ___m_FillCenter_41 = value; } inline static int32_t get_offset_of_m_FillMethod_42() { return static_cast(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C, ___m_FillMethod_42)); } inline int32_t get_m_FillMethod_42() const { return ___m_FillMethod_42; } inline int32_t* get_address_of_m_FillMethod_42() { return &___m_FillMethod_42; } inline void set_m_FillMethod_42(int32_t value) { ___m_FillMethod_42 = value; } inline static int32_t get_offset_of_m_FillAmount_43() { return static_cast(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C, ___m_FillAmount_43)); } inline float get_m_FillAmount_43() const { return ___m_FillAmount_43; } inline float* get_address_of_m_FillAmount_43() { return &___m_FillAmount_43; } inline void set_m_FillAmount_43(float value) { ___m_FillAmount_43 = value; } inline static int32_t get_offset_of_m_FillClockwise_44() { return static_cast(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C, ___m_FillClockwise_44)); } inline bool get_m_FillClockwise_44() const { return ___m_FillClockwise_44; } inline bool* get_address_of_m_FillClockwise_44() { return &___m_FillClockwise_44; } inline void set_m_FillClockwise_44(bool value) { ___m_FillClockwise_44 = value; } inline static int32_t get_offset_of_m_FillOrigin_45() { return static_cast(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C, ___m_FillOrigin_45)); } inline int32_t get_m_FillOrigin_45() const { return ___m_FillOrigin_45; } inline int32_t* get_address_of_m_FillOrigin_45() { return &___m_FillOrigin_45; } inline void set_m_FillOrigin_45(int32_t value) { ___m_FillOrigin_45 = value; } inline static int32_t get_offset_of_m_AlphaHitTestMinimumThreshold_46() { return static_cast(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C, ___m_AlphaHitTestMinimumThreshold_46)); } inline float get_m_AlphaHitTestMinimumThreshold_46() const { return ___m_AlphaHitTestMinimumThreshold_46; } inline float* get_address_of_m_AlphaHitTestMinimumThreshold_46() { return &___m_AlphaHitTestMinimumThreshold_46; } inline void set_m_AlphaHitTestMinimumThreshold_46(float value) { ___m_AlphaHitTestMinimumThreshold_46 = value; } inline static int32_t get_offset_of_m_Tracked_47() { return static_cast(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C, ___m_Tracked_47)); } inline bool get_m_Tracked_47() const { return ___m_Tracked_47; } inline bool* get_address_of_m_Tracked_47() { return &___m_Tracked_47; } inline void set_m_Tracked_47(bool value) { ___m_Tracked_47 = value; } inline static int32_t get_offset_of_m_UseSpriteMesh_48() { return static_cast(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C, ___m_UseSpriteMesh_48)); } inline bool get_m_UseSpriteMesh_48() const { return ___m_UseSpriteMesh_48; } inline bool* get_address_of_m_UseSpriteMesh_48() { return &___m_UseSpriteMesh_48; } inline void set_m_UseSpriteMesh_48(bool value) { ___m_UseSpriteMesh_48 = value; } inline static int32_t get_offset_of_m_PixelsPerUnitMultiplier_49() { return static_cast(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C, ___m_PixelsPerUnitMultiplier_49)); } inline float get_m_PixelsPerUnitMultiplier_49() const { return ___m_PixelsPerUnitMultiplier_49; } inline float* get_address_of_m_PixelsPerUnitMultiplier_49() { return &___m_PixelsPerUnitMultiplier_49; } inline void set_m_PixelsPerUnitMultiplier_49(float value) { ___m_PixelsPerUnitMultiplier_49 = value; } inline static int32_t get_offset_of_m_CachedReferencePixelsPerUnit_50() { return static_cast(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C, ___m_CachedReferencePixelsPerUnit_50)); } inline float get_m_CachedReferencePixelsPerUnit_50() const { return ___m_CachedReferencePixelsPerUnit_50; } inline float* get_address_of_m_CachedReferencePixelsPerUnit_50() { return &___m_CachedReferencePixelsPerUnit_50; } inline void set_m_CachedReferencePixelsPerUnit_50(float value) { ___m_CachedReferencePixelsPerUnit_50 = value; } }; struct Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C_StaticFields { public: // UnityEngine.Material UnityEngine.UI.Image::s_ETC1DefaultUI Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___s_ETC1DefaultUI_36; // UnityEngine.Vector2[] UnityEngine.UI.Image::s_VertScratch Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA* ___s_VertScratch_51; // UnityEngine.Vector2[] UnityEngine.UI.Image::s_UVScratch Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA* ___s_UVScratch_52; // UnityEngine.Vector3[] UnityEngine.UI.Image::s_Xy Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* ___s_Xy_53; // UnityEngine.Vector3[] UnityEngine.UI.Image::s_Uv Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* ___s_Uv_54; // System.Collections.Generic.List`1 UnityEngine.UI.Image::m_TrackedTexturelessImages List_1_t815A476B0A21E183042059E705F9E505478CD8AE * ___m_TrackedTexturelessImages_55; // System.Boolean UnityEngine.UI.Image::s_Initialized bool ___s_Initialized_56; public: inline static int32_t get_offset_of_s_ETC1DefaultUI_36() { return static_cast(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C_StaticFields, ___s_ETC1DefaultUI_36)); } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE * get_s_ETC1DefaultUI_36() const { return ___s_ETC1DefaultUI_36; } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE ** get_address_of_s_ETC1DefaultUI_36() { return &___s_ETC1DefaultUI_36; } inline void set_s_ETC1DefaultUI_36(Material_t8927C00353A72755313F046D0CE85178AE8218EE * value) { ___s_ETC1DefaultUI_36 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_ETC1DefaultUI_36), (void*)value); } inline static int32_t get_offset_of_s_VertScratch_51() { return static_cast(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C_StaticFields, ___s_VertScratch_51)); } inline Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA* get_s_VertScratch_51() const { return ___s_VertScratch_51; } inline Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA** get_address_of_s_VertScratch_51() { return &___s_VertScratch_51; } inline void set_s_VertScratch_51(Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA* value) { ___s_VertScratch_51 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_VertScratch_51), (void*)value); } inline static int32_t get_offset_of_s_UVScratch_52() { return static_cast(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C_StaticFields, ___s_UVScratch_52)); } inline Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA* get_s_UVScratch_52() const { return ___s_UVScratch_52; } inline Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA** get_address_of_s_UVScratch_52() { return &___s_UVScratch_52; } inline void set_s_UVScratch_52(Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA* value) { ___s_UVScratch_52 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_UVScratch_52), (void*)value); } inline static int32_t get_offset_of_s_Xy_53() { return static_cast(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C_StaticFields, ___s_Xy_53)); } inline Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* get_s_Xy_53() const { return ___s_Xy_53; } inline Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4** get_address_of_s_Xy_53() { return &___s_Xy_53; } inline void set_s_Xy_53(Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* value) { ___s_Xy_53 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_Xy_53), (void*)value); } inline static int32_t get_offset_of_s_Uv_54() { return static_cast(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C_StaticFields, ___s_Uv_54)); } inline Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* get_s_Uv_54() const { return ___s_Uv_54; } inline Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4** get_address_of_s_Uv_54() { return &___s_Uv_54; } inline void set_s_Uv_54(Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* value) { ___s_Uv_54 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_Uv_54), (void*)value); } inline static int32_t get_offset_of_m_TrackedTexturelessImages_55() { return static_cast(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C_StaticFields, ___m_TrackedTexturelessImages_55)); } inline List_1_t815A476B0A21E183042059E705F9E505478CD8AE * get_m_TrackedTexturelessImages_55() const { return ___m_TrackedTexturelessImages_55; } inline List_1_t815A476B0A21E183042059E705F9E505478CD8AE ** get_address_of_m_TrackedTexturelessImages_55() { return &___m_TrackedTexturelessImages_55; } inline void set_m_TrackedTexturelessImages_55(List_1_t815A476B0A21E183042059E705F9E505478CD8AE * value) { ___m_TrackedTexturelessImages_55 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_TrackedTexturelessImages_55), (void*)value); } inline static int32_t get_offset_of_s_Initialized_56() { return static_cast(offsetof(Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C_StaticFields, ___s_Initialized_56)); } inline bool get_s_Initialized_56() const { return ___s_Initialized_56; } inline bool* get_address_of_s_Initialized_56() { return &___s_Initialized_56; } inline void set_s_Initialized_56(bool value) { ___s_Initialized_56 = value; } }; // UnityEngine.UI.Text struct Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 : public MaskableGraphic_t0DB59E37E3C8AD2F5A4FB7FB091630CB21370CCE { public: // UnityEngine.UI.FontData UnityEngine.UI.Text::m_FontData FontData_t0F1E9B3ED8136CD40782AC9A6AFB69CAD127C738 * ___m_FontData_36; // System.String UnityEngine.UI.Text::m_Text String_t* ___m_Text_37; // UnityEngine.TextGenerator UnityEngine.UI.Text::m_TextCache TextGenerator_t893F256D3587633108E00E5731CDC5A77AFF1B70 * ___m_TextCache_38; // UnityEngine.TextGenerator UnityEngine.UI.Text::m_TextCacheForLayout TextGenerator_t893F256D3587633108E00E5731CDC5A77AFF1B70 * ___m_TextCacheForLayout_39; // System.Boolean UnityEngine.UI.Text::m_DisableFontTextureRebuiltCallback bool ___m_DisableFontTextureRebuiltCallback_41; // UnityEngine.UIVertex[] UnityEngine.UI.Text::m_TempVerts UIVertexU5BU5D_tE3D523C48DFEBC775876720DE2539A79FB7E5E5A* ___m_TempVerts_42; public: inline static int32_t get_offset_of_m_FontData_36() { return static_cast(offsetof(Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1, ___m_FontData_36)); } inline FontData_t0F1E9B3ED8136CD40782AC9A6AFB69CAD127C738 * get_m_FontData_36() const { return ___m_FontData_36; } inline FontData_t0F1E9B3ED8136CD40782AC9A6AFB69CAD127C738 ** get_address_of_m_FontData_36() { return &___m_FontData_36; } inline void set_m_FontData_36(FontData_t0F1E9B3ED8136CD40782AC9A6AFB69CAD127C738 * value) { ___m_FontData_36 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_FontData_36), (void*)value); } inline static int32_t get_offset_of_m_Text_37() { return static_cast(offsetof(Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1, ___m_Text_37)); } inline String_t* get_m_Text_37() const { return ___m_Text_37; } inline String_t** get_address_of_m_Text_37() { return &___m_Text_37; } inline void set_m_Text_37(String_t* value) { ___m_Text_37 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Text_37), (void*)value); } inline static int32_t get_offset_of_m_TextCache_38() { return static_cast(offsetof(Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1, ___m_TextCache_38)); } inline TextGenerator_t893F256D3587633108E00E5731CDC5A77AFF1B70 * get_m_TextCache_38() const { return ___m_TextCache_38; } inline TextGenerator_t893F256D3587633108E00E5731CDC5A77AFF1B70 ** get_address_of_m_TextCache_38() { return &___m_TextCache_38; } inline void set_m_TextCache_38(TextGenerator_t893F256D3587633108E00E5731CDC5A77AFF1B70 * value) { ___m_TextCache_38 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_TextCache_38), (void*)value); } inline static int32_t get_offset_of_m_TextCacheForLayout_39() { return static_cast(offsetof(Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1, ___m_TextCacheForLayout_39)); } inline TextGenerator_t893F256D3587633108E00E5731CDC5A77AFF1B70 * get_m_TextCacheForLayout_39() const { return ___m_TextCacheForLayout_39; } inline TextGenerator_t893F256D3587633108E00E5731CDC5A77AFF1B70 ** get_address_of_m_TextCacheForLayout_39() { return &___m_TextCacheForLayout_39; } inline void set_m_TextCacheForLayout_39(TextGenerator_t893F256D3587633108E00E5731CDC5A77AFF1B70 * value) { ___m_TextCacheForLayout_39 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_TextCacheForLayout_39), (void*)value); } inline static int32_t get_offset_of_m_DisableFontTextureRebuiltCallback_41() { return static_cast(offsetof(Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1, ___m_DisableFontTextureRebuiltCallback_41)); } inline bool get_m_DisableFontTextureRebuiltCallback_41() const { return ___m_DisableFontTextureRebuiltCallback_41; } inline bool* get_address_of_m_DisableFontTextureRebuiltCallback_41() { return &___m_DisableFontTextureRebuiltCallback_41; } inline void set_m_DisableFontTextureRebuiltCallback_41(bool value) { ___m_DisableFontTextureRebuiltCallback_41 = value; } inline static int32_t get_offset_of_m_TempVerts_42() { return static_cast(offsetof(Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1, ___m_TempVerts_42)); } inline UIVertexU5BU5D_tE3D523C48DFEBC775876720DE2539A79FB7E5E5A* get_m_TempVerts_42() const { return ___m_TempVerts_42; } inline UIVertexU5BU5D_tE3D523C48DFEBC775876720DE2539A79FB7E5E5A** get_address_of_m_TempVerts_42() { return &___m_TempVerts_42; } inline void set_m_TempVerts_42(UIVertexU5BU5D_tE3D523C48DFEBC775876720DE2539A79FB7E5E5A* value) { ___m_TempVerts_42 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_TempVerts_42), (void*)value); } }; struct Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1_StaticFields { public: // UnityEngine.Material UnityEngine.UI.Text::s_DefaultText Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___s_DefaultText_40; public: inline static int32_t get_offset_of_s_DefaultText_40() { return static_cast(offsetof(Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1_StaticFields, ___s_DefaultText_40)); } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE * get_s_DefaultText_40() const { return ___s_DefaultText_40; } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE ** get_address_of_s_DefaultText_40() { return &___s_DefaultText_40; } inline void set_s_DefaultText_40(Material_t8927C00353A72755313F046D0CE85178AE8218EE * value) { ___s_DefaultText_40 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_DefaultText_40), (void*)value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // System.Byte[] struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726 : public RuntimeArray { public: ALIGN_FIELD (8) uint8_t m_Items[1]; public: inline uint8_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline uint8_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, uint8_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value) { m_Items[index] = value; } }; // System.Byte[][] struct ByteU5BU5DU5BU5D_t95107DE217CCFA8CD77945AC2CB9492D4D01FE8D : public RuntimeArray { public: ALIGN_FIELD (8) ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* m_Items[1]; public: inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** 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, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Object[] struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE : public RuntimeArray { public: ALIGN_FIELD (8) RuntimeObject * m_Items[1]; public: 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.Char[] struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34 : public RuntimeArray { public: ALIGN_FIELD (8) Il2CppChar m_Items[1]; public: 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.String[] struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A : public RuntimeArray { public: ALIGN_FIELD (8) String_t* m_Items[1]; public: 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); } }; // UnityEngine.UI.Button[] struct ButtonU5BU5D_t2D8C7329F91F78C37FD1A3807DCD4366F7D7EC7B : public RuntimeArray { public: ALIGN_FIELD (8) Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * m_Items[1]; public: inline Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D ** 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, Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // UnityEngine.GameObject[] struct GameObjectU5BU5D_tA88FC1A1FC9D4D73D0B3984D4B0ECE88F4C47642 : public RuntimeArray { public: ALIGN_FIELD (8) GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * m_Items[1]; public: inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** 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, GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Delegate[] struct DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8 : public RuntimeArray { public: ALIGN_FIELD (8) Delegate_t * m_Items[1]; public: 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); } }; // BestHTTP.HTTPRequest[] struct HTTPRequestU5BU5D_t07CB6A710CA439BDB33EC53845374F01CEAF53BD : public RuntimeArray { public: ALIGN_FIELD (8) HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * m_Items[1]; public: inline HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 ** 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, HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // !0 System.Func`1::Invoke() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Func_1_Invoke_mCA605B0373C1EE39807AB82AEA983289D3F15C79_gshared (Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * __this, const RuntimeMethod* method); // !!0 DG.Tweening.TweenSettingsExtensions::SetUpdate(!!0,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TweenSettingsExtensions_SetUpdate_TisRuntimeObject_m7B426C4B27D21FC5CD7C922AB56185A32E9CD29D_gshared (RuntimeObject * ___t0, bool ___isIndependentUpdate1, const RuntimeMethod* method); // System.Collections.Generic.List`1/Enumerator System.Collections.Generic.List`1::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 List_1_GetEnumerator_m6339FC2D3D1CE4FA13CF21C7F9FC58CA4441BF0C_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method); // !0 System.Collections.Generic.List`1/Enumerator::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m4C91D0E84532DF10C654917487D82CB0AB27693B_gshared_inline (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, const RuntimeMethod* method); // System.Collections.Generic.LinkedList`1/Enumerator System.Collections.Generic.LinkedList`1::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B LinkedList_1_GetEnumerator_mA8E32570A3D8AE477E2EFAC93C602C8F319A1965_gshared (LinkedList_1_tF98410EEA26883FF7ECC1DFD10068A4CC744550B * __this, const RuntimeMethod* method); // !0 System.Collections.Generic.LinkedList`1/Enumerator::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m404B81639163579E072762AABE402383137A46B4_gshared_inline (Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.LinkedList`1/Enumerator::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m8C0026B8E1A6150866B1D0100A28B12A672875BB_gshared (Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.LinkedList`1/Enumerator::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m5259FBF9B6A888C745BA8877D281B992C503520D_gshared (Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2E56233762839CE55C67E00AC8DD3D4D3F6C0DF0_gshared (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mCFB225D9E5E597A1CC8F958E53BEA1367D8AC7B8_gshared (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, const RuntimeMethod* method); // System.Void JCUnityLib.Singleton`1::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Singleton_1__ctor_mFBCA8662AE05E456B27764B25D98C967DE677592_gshared (Singleton_1_t071853BF0705B5B5B8F435CF6F7E4AE60E60507D * __this, const RuntimeMethod* method); // !!0 UnityEngine.Component::GetComponentInChildren() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Component_GetComponentInChildren_TisRuntimeObject_m2D53662347629A70E2A610B61ACC705D63F22D34_gshared (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 * __this, const RuntimeMethod* method); // System.Void System.Func`2::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_2__ctor_m19840CEA81CA9090EC7708F6D398092E511A6DD7_gshared (Func_2_t50F598941CFDF02619DC5D52FFDBC329473C5F7B * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void UnityEngine.Events.UnityAction`1::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction_1__ctor_mDACAB67F7E76FF788C30CA0E51BF3274666F951E_gshared (UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void UnityEngine.Events.UnityEvent`1::AddListener(UnityEngine.Events.UnityAction`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_1_AddListener_mCB985906426A738046B3F5E3F98FF4049E9DE117_gshared (UnityEvent_1_t32063FE815890FF672DF76288FAC4ABE089B899F * __this, UnityAction_1_t00EE92422CBB066CEAB95CDDBF901E2967EC7B1A * ___call0, const RuntimeMethod* method); // !!0 UnityEngine.Component::GetComponent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Component_GetComponent_TisRuntimeObject_mDC2250CC3F24F6FE45660AF6153056ABDA5ED60F_gshared (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::Add(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Add_mF15250BF947CA27BE9A23C08BAC6DB6F180B0EDD_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, RuntimeObject * ___item0, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1::Remove(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Remove_mC8FCB6A53C017A6C13FC891B6BB1D78F9A77D5E3_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, RuntimeObject * ___item0, const RuntimeMethod* method); // !0 JCUnityLib.ViewManager`1::get_Instance() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ViewManager_1_get_Instance_mDDFA9B6B6B06ACF449DE7D293C43C6B815BA5A0C_gshared (const RuntimeMethod* method); // !!0[] System.Array::Empty() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* Array_Empty_TisRuntimeObject_m002765312BF306B1B3B5BFAB9550C0A2A1820CDA_gshared_inline (const RuntimeMethod* method); // !!0 UnityEngine.GameObject::AddComponent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * GameObject_AddComponent_TisRuntimeObject_mF5562A0C81CEDFE1C295F7E16FC6904B5057CB2D_gshared (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * __this, const RuntimeMethod* method); // !!0 UnityEngine.Object::Instantiate(!!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Object_Instantiate_TisRuntimeObject_m5E241FA6C20E2C54A2317FEE950354EB3BCE4454_gshared (RuntimeObject * ___original0, const RuntimeMethod* method); // !0 JCUnityLib.Singleton`1::get_Instance() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Singleton_1_get_Instance_mD7F54CFD6D60327428D8C7A97E68BE95288A9A52_gshared (const RuntimeMethod* method); // System.Void System.Action`1::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1__ctor_mA671E933C9D3DAE4E3F71D34FDDA971739618158_gshared (Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // !0 System.Collections.Generic.List`1::get_Item(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * List_1_get_Item_m7B5E3383CB67492E573AC0D875ED82A51350F188_gshared_inline (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, int32_t ___index0, const RuntimeMethod* method); // !0[] System.Collections.Generic.List`1::ToArray() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* List_1_ToArray_mC6E0B3CF74090974475F845BF79EC5E66D3A71AC_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method); // System.Int32 System.Array::IndexOf(!!0[],!!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_IndexOf_TisRuntimeObject_mBA88963C07F924406E8012B432FC74CD5216B562_gshared (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___array0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method); // !!0 Newtonsoft.Json.JsonConvert::DeserializeObject(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * JsonConvert_DeserializeObject_TisRuntimeObject_m12BD6B0524A17D2475F6F26FD93BF52EDDFA6591_gshared (String_t* ___value0, const RuntimeMethod* method); // !!0 UnityEngine.GameObject::GetComponent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * GameObject_GetComponent_TisRuntimeObject_m533C28B362284747FD5138B02D183642545146E8_gshared (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * __this, const RuntimeMethod* method); // System.Void System.Action`1::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1__ctor_mC14E24B188C6C29726CFCBC0E98734C95A1F6F7F_gshared (Action_1_t080BA8EFA9616A494EBB4DD352BFEF943792E05B * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Func`1::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_1__ctor_m16429CB52E95263F4C11AB13CF51474AFB25D1B9_gshared (Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // !!0 UnityEngine.GameObject::GetComponentInChildren() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * GameObject_GetComponentInChildren_TisRuntimeObject_m2DC5105404F597613BDFC5C8C87CE9931ED3D000_gshared (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * __this, const RuntimeMethod* method); // !!0 UnityEngine.Object::Instantiate(!!0,UnityEngine.Transform) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Object_Instantiate_TisRuntimeObject_m78E51E899A91F621B74B2CF3D5081EF822049DA3_gshared (RuntimeObject * ___original0, Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___parent1, const RuntimeMethod* method); // System.Void JCUnityLib.ViewManager`1::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ViewManager_1__ctor_mEF8DA98CEDA80D165AEBEB44394970E7AD9E9F32_gshared (ViewManager_1_t1AF1B827CBD563D4EBB896DD162E2BB33D4C3FF0 * __this, const RuntimeMethod* method); // System.Collections.Generic.Dictionary`2/Enumerator System.Collections.Generic.Dictionary`2::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 Dictionary_2_GetEnumerator_mD80BA563C32BF7C1EE95C9FC1BE3B423716CCE68_gshared (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * __this, const RuntimeMethod* method); // System.Collections.Generic.KeyValuePair`2 System.Collections.Generic.Dictionary`2/Enumerator::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 Enumerator_get_Current_m39BB9CD07FEC0DBEDFE938630364A23C9A87FC3F_gshared_inline (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method); // !0 System.Collections.Generic.KeyValuePair`2::get_Key() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_mEFB776105F87A4EAB1CAC3F0C96C4D0B79F3F03D_gshared_inline (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * __this, const RuntimeMethod* method); // !1 System.Collections.Generic.KeyValuePair`2::get_Value() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m8425596BB4249956819960EC76E618357F573E76_gshared_inline (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * __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_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mCAD84084129516BD41DE5CC3E1FABA5A8DF836D0_gshared (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m85CA135BAB22C9F0C87C84AB90FF6740D1859279_gshared (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2::ContainsKey(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsKey_mCABABA5D0FA017D2D54BE4FA6256C51518274116_gshared (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * __this, RuntimeObject * ___key0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2::Add(!0,!1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Add_m1D9CF8FA99A277EE49BC3002FDEAACDCDB29803B_gshared (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2::TryGetValue(!0,!1&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_mE985A35FC727FA9F519564063C5C5063209ADDA8_gshared (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * __this, RuntimeObject * ___key0, RuntimeObject ** ___value1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2::Remove(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_Remove_m45DB5340BC5312349874253DD3239546CB025D21_gshared (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * __this, RuntimeObject * ___key0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2::Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Clear_m883E91BB19072DD91E8FA3BEDA31D0FA095667EA_gshared (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m2C8EE5C13636D67F6C451C4935049F534AEC658F_gshared (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_mD19EFEA75894BC3F4C1B3FE93B568155B2D13603_gshared (Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2::ContainsKey(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsKey_m0549C7020066854E28C62D0DDDE00ADCD3AB2AF4_gshared (Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 * __this, uint64_t ___key0, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2::Remove(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_Remove_mC42208766336605241CB3D634B70366590838C53_gshared (Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 * __this, uint64_t ___key0, const RuntimeMethod* method); // System.Void System.Predicate`1::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Predicate_1__ctor_m3F41E32C976C3C48B3FC63FBFD3FBBC5B5F23EDD_gshared (Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1::Exists(System.Predicate`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool List_1_Exists_m154582BAA63606D08C742CCBD13A471B32229CFE_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB * ___match0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2::Add(!0,!1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Add_m96DF8FAD9D427E20D372D86A11DEC1BDC4E2FC19_gshared (Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 * __this, uint64_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2::Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Clear_m2927F42456D0508696958F73413B3C885983326F_gshared (Dictionary_2_t0D2BB9F0E2FC837777BFA6F573B64ED6362F83C8 * __this, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.Dictionary`2::get_Count() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Dictionary_2_get_Count_m1B599EE742A00E8D399B43E225AD4C6571FBC8DA_gshared (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2::.ctor(System.Collections.Generic.IEqualityComparer`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m6F00629E0FA67620F4D49A27FEA7BA5C3333FBC1_gshared (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mFEB2301A6F28290A828A979BA9CC847B16B3D538_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, int32_t ___capacity0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::.ctor(System.Collections.Generic.IEnumerable`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mBA0F95BC28DD65AA86AEA87839C278D24CDF43DF_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, RuntimeObject* ___collection0, const RuntimeMethod* method); // !0 System.Collections.Generic.List`1::Find(System.Predicate`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * List_1_Find_mF6189FA7C00C1CE54D074CA76B798288DB60452B_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB * ___match0, const RuntimeMethod* method); // !0 System.Func`1::Invoke() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Func_1_Invoke_m93C94FD300D841FFC12C9B8607F97CAEFC847701_gshared (Func_1_t807CEE610086E24A0167BAA97A64062016E09D49 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Clear_m5FB5A9C59D8625FDFB06876C4D8848F0F07ABFD0_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::RemoveAt(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveAt_m66148860899ECCAE9B323372032BFC1C255393D2_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, int32_t ___index0, const RuntimeMethod* method); // System.Void System.Comparison`1::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Comparison_1__ctor_mDE1798563694D30022D3B7E1010347C573690B4A_gshared (Comparison_1_tB56E8E7C2BF431D44E8EBD15EA3E6F41AAFF03D2 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::Sort(System.Comparison`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_m8DB96FBD4690CB659B48155D5B7BBF8CE21E6DF0_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, Comparison_1_tB56E8E7C2BF431D44E8EBD15EA3E6F41AAFF03D2 * ___comparison0, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.List`1::FindIndex(System.Predicate`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_FindIndex_m061718A03D18B14CCA37F61408780DF866F3DE0C_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB * ___match0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::set_Item(System.Int32,!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Item_m72B622AD9BAEA821ED4FE737B1474CA1EABA4AEB_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method); // !3 System.Func`4::Invoke(!0,!1,!2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Func_4_Invoke_m35BA93E84A6D3F213E6565849683523B6A8D338E_gshared (Func_4_tF6F189D6D926408D029FFFF408F38CEC6A26084E * __this, RuntimeObject * ___arg10, RuntimeObject * ___arg21, RuntimeObject * ___arg32, const RuntimeMethod* method); // System.Void System.Object::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405 (RuntimeObject * __this, const RuntimeMethod* method); // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.Drbg.DrbgUtilities::GetMaxSecurityStrength(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IMac) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DrbgUtilities_GetMaxSecurityStrength_mFAF94B9A4A72C4E9729D3C463D709308D4263974 (RuntimeObject* ___m0, const RuntimeMethod* method); // System.Void System.ArgumentException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.Drbg.HMacSP800Drbg::GetEntropy() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* HMacSP800Drbg_GetEntropy_m81365AD99622DC60DA05B6C4131802143D3E026C (HMacSP800Drbg_tE713E6D9192F0F6E8E212585185241A5A0EFFE21 * __this, const RuntimeMethod* method); // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Arrays::ConcatenateAll(System.Byte[][]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* Arrays_ConcatenateAll_mFD0C0EA5B7B3C247951E0F02F44D9BB49D1EB274 (ByteU5BU5DU5BU5D_t95107DE217CCFA8CD77945AC2CB9492D4D01FE8D* ___vs0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Arrays::Fill(System.Byte[],System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Arrays_Fill_m841D30B6E9F2CA374C9F6D5C3A690607C6E1BCFF (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___buf0, uint8_t ___b1, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.Drbg.HMacSP800Drbg::hmac_DRBG_Update(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HMacSP800Drbg_hmac_DRBG_Update_m5B6E7A2A5FBE9AD3342C937DED391F66DAD42A36 (HMacSP800Drbg_tE713E6D9192F0F6E8E212585185241A5A0EFFE21 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___seedMaterial0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.Drbg.HMacSP800Drbg::hmac_DRBG_Update_Func(System.Byte[],System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HMacSP800Drbg_hmac_DRBG_Update_Func_m46493F84DD869759A3B77F0379BF8D785E0AB936 (HMacSP800Drbg_tE713E6D9192F0F6E8E212585185241A5A0EFFE21 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___seedMaterial0, uint8_t ___vValue1, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.KeyParameter::.ctor(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyParameter__ctor_m96EBA1A3EB3F4981F3C14E96086C7083DDE16E67 (KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___key0, const RuntimeMethod* method); // System.String System.Int32::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411 (int32_t* __this, const RuntimeMethod* method); // System.String System.String::Concat(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B (String_t* ___str00, String_t* ___str11, const RuntimeMethod* method); // System.Void System.ArgumentException::.ctor(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * __this, String_t* ___message0, String_t* ___paramName1, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.Drbg.HMacSP800Drbg::Reseed(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HMacSP800Drbg_Reseed_mB9DB61A494F9F97E21BE2EAFDA3BBAA7AE70A9ED (HMacSP800Drbg_tE713E6D9192F0F6E8E212585185241A5A0EFFE21 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___additionalInput0, const RuntimeMethod* method); // System.Void System.Array::Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877 (RuntimeArray * ___sourceArray0, int32_t ___sourceIndex1, RuntimeArray * ___destinationArray2, int32_t ___destinationIndex3, int32_t ___length4, const RuntimeMethod* method); // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Arrays::Concatenate(System.Byte[],System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* Arrays_Concatenate_mAC0D7D6E145BE9066A98EBE001C71C181594C07F (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___a0, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___b1, const RuntimeMethod* method); // System.Void System.InvalidOperationException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void HRB_Bluetooth::DisconnectBleHelper() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_Bluetooth_DisconnectBleHelper_m5053730D45BD86F8A1182E75E32DD3561302A5E6 (HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D * __this, const RuntimeMethod* method); // !0 System.Func`1::Invoke() inline bool Func_1_Invoke_mCA605B0373C1EE39807AB82AEA983289D3F15C79 (Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * __this, const RuntimeMethod* method) { return (( bool (*) (Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F *, const RuntimeMethod*))Func_1_Invoke_mCA605B0373C1EE39807AB82AEA983289D3F15C79_gshared)(__this, method); } // System.Void HRB_Bluetooth::SetStatus(BluetoothStatusEnum) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_Bluetooth_SetStatus_mB80187534C079863DD305CA8EAAF2004682D0339 (HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D * __this, int32_t ___statusValue0, const RuntimeMethod* method); // System.Void HRB_Bluetooth::OnDisconnect() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_Bluetooth_OnDisconnect_mE60532F7F604A52F8EC4B8C0EEDAF1264DCBB052 (HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D * __this, const RuntimeMethod* method); // System.Void BowCamera::set_isTouchMode(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void BowCamera_set_isTouchMode_m697E7BDB07075516ADCEFDD7452D52356099CB82_inline (bool ___value0, const RuntimeMethod* method); // System.Boolean UnityEngine.Object::op_Implicit(UnityEngine.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Implicit_mC8214E4F028CC2F036CC82BDB81D102A02893499 (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * ___exists0, const RuntimeMethod* method); // System.Void AimHandler::SetMsOldDefault() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AimHandler_SetMsOldDefault_mF4BBB4680E6CF26D0E75B8DEF7E9D56C4BA80F28 (AimHandler_t09E6B497CE2A5136591A25DDCED60D7D7D00A563 * __this, const RuntimeMethod* method); // System.Void HRB_Bluetooth::DoConnect() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_Bluetooth_DoConnect_mECB2710C1631ADE8B1DD8FECCA99B5E1244F1AA6 (HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D * __this, const RuntimeMethod* method); // System.Void HRB_Bluetooth::Connect() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_Bluetooth_Connect_m6F2BD1A2ACB9B785EEB16615D4A8425FB196AE89 (HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D * __this, const RuntimeMethod* method); // DG.Tweening.Sequence DG.Tweening.DOTween::Sequence() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Sequence_tE01FFFCA34A537CE2FF32EDAF451CDEC55A1399E * DOTween_Sequence_m83221E315CE42CCE7B80D126A549114C86BC388D (const RuntimeMethod* method); // DG.Tweening.Sequence DG.Tweening.TweenSettingsExtensions::AppendInterval(DG.Tweening.Sequence,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Sequence_tE01FFFCA34A537CE2FF32EDAF451CDEC55A1399E * TweenSettingsExtensions_AppendInterval_m20E76B7FD0B9E0FD85D5E55444177E412D2A39FE (Sequence_tE01FFFCA34A537CE2FF32EDAF451CDEC55A1399E * ___s0, float ___interval1, const RuntimeMethod* method); // System.Void DG.Tweening.TweenCallback::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TweenCallback__ctor_m595231CFB0B8CD35F6377EA2A88CB98A8E905662 (TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // DG.Tweening.Sequence DG.Tweening.TweenSettingsExtensions::AppendCallback(DG.Tweening.Sequence,DG.Tweening.TweenCallback) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Sequence_tE01FFFCA34A537CE2FF32EDAF451CDEC55A1399E * TweenSettingsExtensions_AppendCallback_m056A9F025C67DB07A403E70BED916DCDDF8671E6 (Sequence_tE01FFFCA34A537CE2FF32EDAF451CDEC55A1399E * ___s0, TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB * ___callback1, const RuntimeMethod* method); // !!0 DG.Tweening.TweenSettingsExtensions::SetUpdate(!!0,System.Boolean) inline Sequence_tE01FFFCA34A537CE2FF32EDAF451CDEC55A1399E * TweenSettingsExtensions_SetUpdate_TisSequence_tE01FFFCA34A537CE2FF32EDAF451CDEC55A1399E_m919CA95D216B119B67D5C9C18F520957DC35BFC0 (Sequence_tE01FFFCA34A537CE2FF32EDAF451CDEC55A1399E * ___t0, bool ___isIndependentUpdate1, const RuntimeMethod* method) { return (( Sequence_tE01FFFCA34A537CE2FF32EDAF451CDEC55A1399E * (*) (Sequence_tE01FFFCA34A537CE2FF32EDAF451CDEC55A1399E *, bool, const RuntimeMethod*))TweenSettingsExtensions_SetUpdate_TisRuntimeObject_m7B426C4B27D21FC5CD7C922AB56185A32E9CD29D_gshared)(___t0, ___isIndependentUpdate1, method); } // System.Void SimulateMouseController::SetBleConnected(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SimulateMouseController_SetBleConnected_m3C54C070AD85437D87FBB7464F8337B47E28C45D (SimulateMouseController_tA70BEF03B40F921CF76BC22EDFB7F57083FD43F5 * __this, bool ___connected0, const RuntimeMethod* method); // System.Void HRB_Bluetooth::ConnectBleHelper() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_Bluetooth_ConnectBleHelper_m83D79537F8FC929D411469545C60A5A104DD686C (HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D * __this, const RuntimeMethod* method); // System.Void HRB_Bluetooth/<>c__DisplayClass25_0::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass25_0__ctor_mCAC6F5E70CEA33D9CFA666CE20431ACE4AD73476 (U3CU3Ec__DisplayClass25_0_t64D8C395B552D60CA41D39FD659B3676B96697B7 * __this, const RuntimeMethod* method); // ArduinoBluetoothAPI.BluetoothHelper ArduinoBluetoothAPI.BluetoothHelper::GetNewInstance(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2 * BluetoothHelper_GetNewInstance_m0232F26213407CD5A20C17A25977323C960B4E6A (String_t* ___deviceName0, const RuntimeMethod* method); // System.Void ArduinoBluetoothAPI.BluetoothHelper/BluetoothEvents::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BluetoothEvents__ctor_mD0C2D2FBABF155FBB8B8FF33F3481DE5B09022BF (BluetoothEvents_t6367CF752C0000C65AC334DE644AE84EDAA71FA3 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void ArduinoBluetoothAPI.BluetoothHelper::add_OnConnected(ArduinoBluetoothAPI.BluetoothHelper/BluetoothEvents) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BluetoothHelper_add_OnConnected_m5CE1875A1281B94F1FD5B265DE15CA4D1CC1807F (BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2 * __this, BluetoothEvents_t6367CF752C0000C65AC334DE644AE84EDAA71FA3 * ___value0, const RuntimeMethod* method); // System.Void ArduinoBluetoothAPI.BluetoothHelper::add_OnConnectionFailed(ArduinoBluetoothAPI.BluetoothHelper/BluetoothEvents) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BluetoothHelper_add_OnConnectionFailed_mEFBC9568FA0492A45442EDE15EF9D93641967D5F (BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2 * __this, BluetoothEvents_t6367CF752C0000C65AC334DE644AE84EDAA71FA3 * ___value0, const RuntimeMethod* method); // System.Void ArduinoBluetoothAPI.BluetoothHelper/BluetoothLEDataEvent::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BluetoothLEDataEvent__ctor_mB76D53B143951496C24E3EE72B1ADF1EFF4C1DF7 (BluetoothLEDataEvent_t68F97939E5C7C84395925D0B3DFFD9BE12FAD4CD * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void ArduinoBluetoothAPI.BluetoothHelper::add_OnCharacteristicChanged(ArduinoBluetoothAPI.BluetoothHelper/BluetoothLEDataEvent) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BluetoothHelper_add_OnCharacteristicChanged_mCF3C6E16969F2199776FEC9D2ACC99B4D06780F1 (BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2 * __this, BluetoothLEDataEvent_t68F97939E5C7C84395925D0B3DFFD9BE12FAD4CD * ___value0, const RuntimeMethod* method); // System.Void ArduinoBluetoothAPI.BluetoothHelper/BluetoothScanEvents::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BluetoothScanEvents__ctor_m4DF2074D4CDECEB0BFFB8A65A44B45E253EDC6C6 (BluetoothScanEvents_t96E44F26E6E173C76A806E7E95CF4C7C84B8A33B * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void ArduinoBluetoothAPI.BluetoothHelper::add_OnScanEnded(ArduinoBluetoothAPI.BluetoothHelper/BluetoothScanEvents) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BluetoothHelper_add_OnScanEnded_m29C2C4D0D6C05C482081DB00D47ADA32CEF7D3F0 (BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2 * __this, BluetoothScanEvents_t96E44F26E6E173C76A806E7E95CF4C7C84B8A33B * ___value0, const RuntimeMethod* method); // System.Void HRB_Bluetooth::Log(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_Bluetooth_Log_mFAC5D03F7EBAA03BBC516167F66379A7798D460D (HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D * __this, String_t* ___text0, const RuntimeMethod* method); // System.Void UnityEngine.Debug::LogError(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogError_m8850D65592770A364D494025FF3A73E8D4D70485 (RuntimeObject * ___message0, const RuntimeMethod* method); // PopupMgr PopupMgr::get_ins() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PopupMgr_t6FED92ED719BC99F2D92EB96849B1570DB8580AC * PopupMgr_get_ins_m15DA1C0D50F662D8254FACBA48B090BF0145027D (const RuntimeMethod* method); // System.String TextAutoLanguage2::GetTextByKey(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TextAutoLanguage2_GetTextByKey_m20ADD7FAA78166ED8C8C209077DAC7EF5C8FF4D2 (String_t* ___textKey0, const RuntimeMethod* method); // System.Void PopupMgr::ShowTip(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PopupMgr_ShowTip_m887A05C0D87DB1BC665DB614C6352F8F0EA68E42 (PopupMgr_t6FED92ED719BC99F2D92EB96849B1570DB8580AC * __this, String_t* ___text0, const RuntimeMethod* method); // System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E (RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 ___handle0, const RuntimeMethod* method); // System.String System.String::Format(System.String,System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m8D1CB0410C35E052A53AE957C914C841E54BAB66 (String_t* ___format0, RuntimeObject * ___arg01, RuntimeObject * ___arg12, const RuntimeMethod* method); // System.Void UnityEngine.Debug::Log(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_Log_mC26E5AD0D8D156C7FFD173AA15827F69225E9DB8 (RuntimeObject * ___message0, const RuntimeMethod* method); // System.Void UnityEngine.MonoBehaviour::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoBehaviour__ctor_mC0995D847F6A95B1A553652636C38A2AA8B13BED (MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * __this, const RuntimeMethod* method); // System.Collections.Generic.List`1/Enumerator System.Collections.Generic.List`1::GetEnumerator() inline Enumerator_t45A82901819006B9A7ADA1749AE31E33D0AF8AF2 List_1_GetEnumerator_mFEADCD2047CEE6D0CFA45A429CF8F3074E37673C (List_1_tFD38E11A811DED19252DF7684390FF692DB525C5 * __this, const RuntimeMethod* method) { return (( Enumerator_t45A82901819006B9A7ADA1749AE31E33D0AF8AF2 (*) (List_1_tFD38E11A811DED19252DF7684390FF692DB525C5 *, const RuntimeMethod*))List_1_GetEnumerator_m6339FC2D3D1CE4FA13CF21C7F9FC58CA4441BF0C_gshared)(__this, method); } // !0 System.Collections.Generic.List`1/Enumerator::get_Current() inline BluetoothHelperService_t4C830DA91BDB3A9EC558D45C55A9318E931CA2A9 * Enumerator_get_Current_m2DA3B3BBAA26BE86BD21DB51E1E2174867768DF4_inline (Enumerator_t45A82901819006B9A7ADA1749AE31E33D0AF8AF2 * __this, const RuntimeMethod* method) { return (( BluetoothHelperService_t4C830DA91BDB3A9EC558D45C55A9318E931CA2A9 * (*) (Enumerator_t45A82901819006B9A7ADA1749AE31E33D0AF8AF2 *, const RuntimeMethod*))Enumerator_get_Current_m4C91D0E84532DF10C654917487D82CB0AB27693B_gshared_inline)(__this, method); } // System.String ArduinoBluetoothAPI.BluetoothHelperService::getName() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* BluetoothHelperService_getName_mC2B58215D48C8773638DCE0D3347D094B99CD20C_inline (BluetoothHelperService_t4C830DA91BDB3A9EC558D45C55A9318E931CA2A9 * __this, const RuntimeMethod* method); // System.String System.String::ToLower() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_ToLower_m7875A49FE166D0A68F3F6B6E70C0C056EBEFD31D (String_t* __this, const RuntimeMethod* method); // System.String HRB_Bluetooth::get_targetDeviceService() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* HRB_Bluetooth_get_targetDeviceService_mB34B364EABE36C047F92CB1E94E25FB4C9824342 (HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D * __this, const RuntimeMethod* method); // System.Boolean System.String::StartsWith(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_StartsWith_mDE2FF98CAFFD13F88EDEB6C40158DDF840BFCF12 (String_t* __this, String_t* ___value0, const RuntimeMethod* method); // System.Collections.Generic.LinkedList`1 ArduinoBluetoothAPI.BluetoothHelperService::getCharacteristics() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR LinkedList_1_t3656FF46586A1EDB68EC68E62D94A1284314CC08 * BluetoothHelperService_getCharacteristics_mBD7CEF21C1DC6FC1100FF68426FD9BDEDF2BB28A_inline (BluetoothHelperService_t4C830DA91BDB3A9EC558D45C55A9318E931CA2A9 * __this, const RuntimeMethod* method); // System.Collections.Generic.LinkedList`1/Enumerator System.Collections.Generic.LinkedList`1::GetEnumerator() inline Enumerator_t798BE184229895CEBE1EA4E63709DBA660A3460C LinkedList_1_GetEnumerator_m23E2202D223C083DAC688E7DE70CE31E8902EF46 (LinkedList_1_t3656FF46586A1EDB68EC68E62D94A1284314CC08 * __this, const RuntimeMethod* method) { return (( Enumerator_t798BE184229895CEBE1EA4E63709DBA660A3460C (*) (LinkedList_1_t3656FF46586A1EDB68EC68E62D94A1284314CC08 *, const RuntimeMethod*))LinkedList_1_GetEnumerator_mA8E32570A3D8AE477E2EFAC93C602C8F319A1965_gshared)(__this, method); } // !0 System.Collections.Generic.LinkedList`1/Enumerator::get_Current() inline BluetoothHelperCharacteristic_t192402A7C03FD9857C87822D541F8737A469B6E9 * Enumerator_get_Current_m6774D8858FE9A9551EB72A70CD0855E255B7C974_inline (Enumerator_t798BE184229895CEBE1EA4E63709DBA660A3460C * __this, const RuntimeMethod* method) { return (( BluetoothHelperCharacteristic_t192402A7C03FD9857C87822D541F8737A469B6E9 * (*) (Enumerator_t798BE184229895CEBE1EA4E63709DBA660A3460C *, const RuntimeMethod*))Enumerator_get_Current_m404B81639163579E072762AABE402383137A46B4_gshared_inline)(__this, method); } // System.String ArduinoBluetoothAPI.BluetoothHelperCharacteristic::getName() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* BluetoothHelperCharacteristic_getName_m59316C36B56D20C5176500C1A3D4B8CBD9825E5E_inline (BluetoothHelperCharacteristic_t192402A7C03FD9857C87822D541F8737A469B6E9 * __this, const RuntimeMethod* method); // System.String HRB_Bluetooth::get_targetDeviceCharacteristicWrite() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* HRB_Bluetooth_get_targetDeviceCharacteristicWrite_m5D2F65F036125A1A3E0234748E3848C022933116 (HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D * __this, const RuntimeMethod* method); // System.String HRB_Bluetooth::get_targetDeviceCharacteristicNotify() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* HRB_Bluetooth_get_targetDeviceCharacteristicNotify_m30D2FE7DCE4049FD414A3CA8EC7EE2D843B4E7C7 (HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D * __this, const RuntimeMethod* method); // System.Void ArduinoBluetoothAPI.BluetoothHelperCharacteristic::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BluetoothHelperCharacteristic__ctor_mCEAEDEF8755245EE6043CAAECC137B37C611305C (BluetoothHelperCharacteristic_t192402A7C03FD9857C87822D541F8737A469B6E9 * __this, String_t* ___name0, const RuntimeMethod* method); // System.Void ArduinoBluetoothAPI.BluetoothHelperCharacteristic::setService(System.String) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void BluetoothHelperCharacteristic_setService_mE0AB7736081BC9807E94F146988121AAC5562642_inline (BluetoothHelperCharacteristic_t192402A7C03FD9857C87822D541F8737A469B6E9 * __this, String_t* ___service0, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.LinkedList`1/Enumerator::MoveNext() inline bool Enumerator_MoveNext_m43A83012B262D49B331D221FBE414049CBCD4F42 (Enumerator_t798BE184229895CEBE1EA4E63709DBA660A3460C * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t798BE184229895CEBE1EA4E63709DBA660A3460C *, const RuntimeMethod*))Enumerator_MoveNext_m8C0026B8E1A6150866B1D0100A28B12A672875BB_gshared)(__this, method); } // System.Void System.Collections.Generic.LinkedList`1/Enumerator::Dispose() inline void Enumerator_Dispose_mCC607B0C09E801F33EB6B0922A8899D2A5D55BA9 (Enumerator_t798BE184229895CEBE1EA4E63709DBA660A3460C * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t798BE184229895CEBE1EA4E63709DBA660A3460C *, const RuntimeMethod*))Enumerator_Dispose_m5259FBF9B6A888C745BA8877D281B992C503520D_gshared)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator::MoveNext() inline bool Enumerator_MoveNext_m5D19B55E374EAB466CAF87C0C00A02C61F887F00 (Enumerator_t45A82901819006B9A7ADA1749AE31E33D0AF8AF2 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t45A82901819006B9A7ADA1749AE31E33D0AF8AF2 *, const RuntimeMethod*))Enumerator_MoveNext_m2E56233762839CE55C67E00AC8DD3D4D3F6C0DF0_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator::Dispose() inline void Enumerator_Dispose_m2A96334EF63834D3A85C16B1CEC9D0F360424EFC (Enumerator_t45A82901819006B9A7ADA1749AE31E33D0AF8AF2 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t45A82901819006B9A7ADA1749AE31E33D0AF8AF2 *, const RuntimeMethod*))Enumerator_Dispose_mCFB225D9E5E597A1CC8F958E53BEA1367D8AC7B8_gshared)(__this, method); } // System.Void HRB_Controller/d__0::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CgetUserInfoU3Ed__0__ctor_m13C419D3DB5AA9227A3ABFAF90480C2402BD9B14 (U3CgetUserInfoU3Ed__0_tBD35BE495BE4163DEDADF5A235B0855C5F764FDD * __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method); // System.Void HRB_Controller/d__1::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CsaveUserInfoU3Ed__1__ctor_m4AECFFD56B06756D1121AE2E8B3B9698D0499B18 (U3CsaveUserInfoU3Ed__1_t33EC474A0E07837222472BE5DE956D54E775BEE7 * __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method); // System.Void JCUnityLib.Singleton`1::.ctor() inline void Singleton_1__ctor_m062E752286577263B3C539CE4019517F47F93FC1 (Singleton_1_t4C10A31CE8B158E185660F1293127F7D95894322 * __this, const RuntimeMethod* method) { (( void (*) (Singleton_1_t4C10A31CE8B158E185660F1293127F7D95894322 *, const RuntimeMethod*))Singleton_1__ctor_mFBCA8662AE05E456B27764B25D98C967DE677592_gshared)(__this, method); } // !!0 UnityEngine.Component::GetComponentInChildren() inline TwoPoleSwitch_tE7E4EC1E9EA056C875ADC10C88ED8BC83B0DF540 * Component_GetComponentInChildren_TisTwoPoleSwitch_tE7E4EC1E9EA056C875ADC10C88ED8BC83B0DF540_mD0515C9523EACD85F88F9AB1BEB328436EEB8C91 (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 * __this, const RuntimeMethod* method) { return (( TwoPoleSwitch_tE7E4EC1E9EA056C875ADC10C88ED8BC83B0DF540 * (*) (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 *, const RuntimeMethod*))Component_GetComponentInChildren_TisRuntimeObject_m2D53662347629A70E2A610B61ACC705D63F22D34_gshared)(__this, method); } // System.Void System.Func`2::.ctor(System.Object,System.IntPtr) inline void Func_2__ctor_m19840CEA81CA9090EC7708F6D398092E511A6DD7 (Func_2_t50F598941CFDF02619DC5D52FFDBC329473C5F7B * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Func_2_t50F598941CFDF02619DC5D52FFDBC329473C5F7B *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_2__ctor_m19840CEA81CA9090EC7708F6D398092E511A6DD7_gshared)(__this, ___object0, ___method1, method); } // UnityEngine.Transform UnityEngine.Component::get_transform() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 * __this, const RuntimeMethod* method); // UnityEngine.Transform UnityEngine.Transform::Find(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * Transform_Find_mB1687901A4FB0D562C44A93CC67CD35DCFCAABA1 (Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * __this, String_t* ___n0, const RuntimeMethod* method); // !!0 UnityEngine.Component::GetComponentInChildren() inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * Component_GetComponentInChildren_TisText_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1_mCBD44A97260E33F58E2FBBD76E0432C8F120C30E (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 * __this, const RuntimeMethod* method) { return (( Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * (*) (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 *, const RuntimeMethod*))Component_GetComponentInChildren_TisRuntimeObject_m2D53662347629A70E2A610B61ACC705D63F22D34_gshared)(__this, method); } // !!0 UnityEngine.Component::GetComponentInChildren() inline InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 * Component_GetComponentInChildren_TisInputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0_m00E16B3E961B585CB5C071AF073E99CED52F5EA9 (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 * __this, const RuntimeMethod* method) { return (( InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 * (*) (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 *, const RuntimeMethod*))Component_GetComponentInChildren_TisRuntimeObject_m2D53662347629A70E2A610B61ACC705D63F22D34_gshared)(__this, method); } // UnityEngine.UI.InputField/EndEditEvent UnityEngine.UI.InputField::get_onEndEdit() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EndEditEvent_t85372BABF7066F7DF46B414EA94C5D42736A0E8D * InputField_get_onEndEdit_m6E5D422101DA2F7BF3962CC783C98C022E8C26B3_inline (InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 * __this, const RuntimeMethod* method); // System.Void UnityEngine.Events.UnityAction`1::.ctor(System.Object,System.IntPtr) inline void UnityAction_1__ctor_mBB6FF824ECCAE3C08CD8B015E235BBDC15BCF43F (UnityAction_1_t4A1848C01D99711D0E3D235F1FDBBA96BA48B647 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (UnityAction_1_t4A1848C01D99711D0E3D235F1FDBBA96BA48B647 *, RuntimeObject *, intptr_t, const RuntimeMethod*))UnityAction_1__ctor_mDACAB67F7E76FF788C30CA0E51BF3274666F951E_gshared)(__this, ___object0, ___method1, method); } // System.Void UnityEngine.Events.UnityEvent`1::AddListener(UnityEngine.Events.UnityAction`1) inline void UnityEvent_1_AddListener_mC6DDB55AF3B8AC6DBA08F1695CE00DE191603830 (UnityEvent_1_t208A952325F66BFCB1EDEECEFEF5F1C7A16298A0 * __this, UnityAction_1_t4A1848C01D99711D0E3D235F1FDBBA96BA48B647 * ___call0, const RuntimeMethod* method) { (( void (*) (UnityEvent_1_t208A952325F66BFCB1EDEECEFEF5F1C7A16298A0 *, UnityAction_1_t4A1848C01D99711D0E3D235F1FDBBA96BA48B647 *, const RuntimeMethod*))UnityEvent_1_AddListener_mCB985906426A738046B3F5E3F98FF4049E9DE117_gshared)(__this, ___call0, method); } // System.Void HRB_DegreaseView::RenderBmpMin() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_DegreaseView_RenderBmpMin_mA5C227AA06AB950E4F01ED87E977C16E1D8F9075 (HRB_DegreaseView_tBFDCE6B3DF07E6FBF2F3EF05AE4AD2B9481183BD * __this, const RuntimeMethod* method); // !!0 UnityEngine.Component::GetComponent() inline Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * Component_GetComponent_TisButton_tA893FC15AB26E1439AC25BDCA7079530587BB65D_mED8C9575844B41F67CB4C2B13685FC0174CB61BC (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 * __this, const RuntimeMethod* method) { return (( Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * (*) (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 *, const RuntimeMethod*))Component_GetComponent_TisRuntimeObject_mDC2250CC3F24F6FE45660AF6153056ABDA5ED60F_gshared)(__this, method); } // UnityEngine.UI.Button/ButtonClickedEvent UnityEngine.UI.Button::get_onClick() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ButtonClickedEvent_tE6D6D94ED8100451CF00D2BED1FB2253F37BB14F * Button_get_onClick_m28BD8C670676D4E2B292B5A7F59387D4BF61F8F4_inline (Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * __this, const RuntimeMethod* method); // System.Void UnityEngine.Events.UnityAction::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityAction__ctor_m48C04C4C0F46918CF216A2410A4E58D31B6362BA (UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void UnityEngine.Events.UnityEvent::AddListener(UnityEngine.Events.UnityAction) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEvent_AddListener_m0ACFF0706176ECCB20E0BC2542D07396616F436D (UnityEvent_tA0EA9BC49FD7D5185E7A238EF2E0E6F5D0EE27F4 * __this, UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * ___call0, const RuntimeMethod* method); // System.Void HRB_DegreaseView::UpdateForTimeCounter() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_DegreaseView_UpdateForTimeCounter_m6C52DB996857294EC8095CB53056272A3F6BBB88 (HRB_DegreaseView_tBFDCE6B3DF07E6FBF2F3EF05AE4AD2B9481183BD * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::Add(!0) inline void List_1_Add_m712CD9B14BF2DA1F178A167DD88FA0DB2432829A (List_1_t857A27AA47EED217A2CFE04C0C9B7FCDDE0C284F * __this, RuntimeObject* ___item0, const RuntimeMethod* method) { (( void (*) (List_1_t857A27AA47EED217A2CFE04C0C9B7FCDDE0C284F *, RuntimeObject*, const RuntimeMethod*))List_1_Add_mF15250BF947CA27BE9A23C08BAC6DB6F180B0EDD_gshared)(__this, ___item0, method); } // System.Boolean System.Collections.Generic.List`1::Remove(!0) inline bool List_1_Remove_mC12B2C13444571B235E76CDC562026433C464B1D (List_1_t857A27AA47EED217A2CFE04C0C9B7FCDDE0C284F * __this, RuntimeObject* ___item0, const RuntimeMethod* method) { return (( bool (*) (List_1_t857A27AA47EED217A2CFE04C0C9B7FCDDE0C284F *, RuntimeObject*, const RuntimeMethod*))List_1_Remove_mC8FCB6A53C017A6C13FC891B6BB1D78F9A77D5E3_gshared)(__this, ___item0, method); } // !0 JCUnityLib.ViewManager`1::get_Instance() inline HRB_ViewMgr_tA45A4A89DBF774D4F4AEFF894E68F37285F780FC * ViewManager_1_get_Instance_m98EFADBB86F374A94E5D44239185F5148030CE86 (const RuntimeMethod* method) { return (( HRB_ViewMgr_tA45A4A89DBF774D4F4AEFF894E68F37285F780FC * (*) (const RuntimeMethod*))ViewManager_1_get_Instance_mDDFA9B6B6B06ACF449DE7D293C43C6B815BA5A0C_gshared)(method); } // !!0[] System.Array::Empty() inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* Array_Empty_TisRuntimeObject_m002765312BF306B1B3B5BFAB9550C0A2A1820CDA_inline (const RuntimeMethod* method) { return (( ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* (*) (const RuntimeMethod*))Array_Empty_TisRuntimeObject_m002765312BF306B1B3B5BFAB9550C0A2A1820CDA_gshared_inline)(method); } // System.Void AudioMgr::PlayBtn() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AudioMgr_PlayBtn_mC4683BCAA8A2E25F6743DE3987368A27ADFF62E6 (AudioMgr_t37818C35286C2FF09D8B8FFF7E74D479D3817DA0 * __this, const RuntimeMethod* method); // HRB_UserInfo HRB_UserInfo::get_current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR HRB_UserInfo_t33A1D91CD880DFDBEF533505A82350E3D3C8B6A9 * HRB_UserInfo_get_current_mBA02B26AFBC97BCA26DEB3F43605BBA6C0696AFB_inline (const RuntimeMethod* method); // System.Void UnityEngine.UI.InputField::set_text(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InputField_set_text_m30EE95E064474DFA2842CA2DD6E831FF3F3500BF (InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 * __this, String_t* ___value0, const RuntimeMethod* method); // System.Single UnityEngine.Time::get_deltaTime() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Time_get_deltaTime_mCC15F147DA67F38C74CE408FB5D7FF4A87DA2290 (const RuntimeMethod* method); // System.Void HRB_DegreaseView::RenderTimeCounter() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_DegreaseView_RenderTimeCounter_m0218AEC61A4463913537A295DA3EB1DCDA1AF62F (HRB_DegreaseView_tBFDCE6B3DF07E6FBF2F3EF05AE4AD2B9481183BD * __this, const RuntimeMethod* method); // System.Int32 UnityEngine.Mathf::FloorToInt(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Mathf_FloorToInt_m9164D538D17B8C3C8A6C4E4FA95032F757D9091E (float ___f0, const RuntimeMethod* method); // System.Int32 System.String::get_Length() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline (String_t* __this, const RuntimeMethod* method); // System.String System.Single::ToString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Single_ToString_m15F10F2AFF80750906CEFCFB456EBA84F9D2E8D7 (float* __this, String_t* ___format0, const RuntimeMethod* method); // System.String[] System.String::Split(System.Char[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* String_Split_m2C74DC2B85B322998094BEDE787C378822E1F28B (String_t* __this, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___separator0, const RuntimeMethod* method); // System.String System.String::Concat(System.String[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mFEA7EFA1A6E75B96B1B7BC4526AAC864BFF83CC9 (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___values0, const RuntimeMethod* method); // System.Void JCUnityLib.ViewBase::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ViewBase__ctor_mB64BDE24E8F888C9A324D2BFFF2C4C1FC338590A (ViewBase_tE400461F1C7843F494ACB48A3DFF21BDBF2B78FC * __this, const RuntimeMethod* method); // System.Int32 System.Int32::Parse(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int32_Parse_mE5D220FEA7F0BFB1B220B2A30797D7DD83ACF22C (String_t* ___s0, const RuntimeMethod* method); // System.Int32 UnityEngine.Mathf::Clamp(System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Mathf_Clamp_mAD0781EB7470594CD4482DD64A0D739E4E539C3C (int32_t ___value0, int32_t ___min1, int32_t ___max2, const RuntimeMethod* method); // System.Void HRB_UserInfo::SaveLocalData() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_UserInfo_SaveLocalData_m0FDC10F2A01C77444840F9CF56AB582E3347A1C1 (HRB_UserInfo_t33A1D91CD880DFDBEF533505A82350E3D3C8B6A9 * __this, const RuntimeMethod* method); // UnityEngine.GameObject UnityEngine.Component::get_gameObject() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 * __this, const RuntimeMethod* method); // System.Void UnityEngine.GameObject::SetActive(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GameObject_SetActive_mCF1EEF2A314F3AE85DA581FF52EB06ACEF2FFF86 (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * __this, bool ___value0, const RuntimeMethod* method); // System.Void HRB_HomeView::InitButtonAB() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_HomeView_InitButtonAB_m5F81A9BB2EC075BEE2A9C1DFF311768BF85DD8E0 (HRB_HomeView_t287CA33A5A196A46E071D4C02FE00DF5C3C4C9F0 * __this, const RuntimeMethod* method); // System.Void HRB_HomeView::InitColumnAB() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_HomeView_InitColumnAB_m8454A919C3AA08AB39082305B8A07D7F14C636F1 (HRB_HomeView_t287CA33A5A196A46E071D4C02FE00DF5C3C4C9F0 * __this, const RuntimeMethod* method); // System.Void HRB_HomeView::InitGoal(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_HomeView_InitGoal_m716BC79252C2AC65290981B9DC9429485F2B4F68 (HRB_HomeView_t287CA33A5A196A46E071D4C02FE00DF5C3C4C9F0 * __this, int32_t ___goalVal0, int32_t ___consumeVal1, const RuntimeMethod* method); // System.Void HRB_HomeView::InitMask() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_HomeView_InitMask_mFEF3D1D5AD182419142161B77CA4030CF3D8BF47 (HRB_HomeView_t287CA33A5A196A46E071D4C02FE00DF5C3C4C9F0 * __this, const RuntimeMethod* method); // !!0 UnityEngine.GameObject::AddComponent() inline HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D * GameObject_AddComponent_TisHRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D_mF311262DFB96C47C0D932F98379C54FB002F5FAB (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * __this, const RuntimeMethod* method) { return (( HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D * (*) (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *, const RuntimeMethod*))GameObject_AddComponent_TisRuntimeObject_mF5562A0C81CEDFE1C295F7E16FC6904B5057CB2D_gshared)(__this, method); } // System.Void System.Action::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action__ctor_m07BE5EE8A629FBBA52AE6356D57A0D371BE2574B (Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // JCUnityLib.SceneResourceManager JCUnityLib.SceneResourceManager::get_Instance() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SceneResourceManager_t5836F17AC072ACCD0FB4CD2FFB6B814D68D0E0CF * SceneResourceManager_get_Instance_m454AFF83DC2DDF62A6184BDA6B3B909073286C8D (const RuntimeMethod* method); // UnityEngine.GameObject JCUnityLib.SceneResourceManager::GetPrefab(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * SceneResourceManager_GetPrefab_m7A4781FEBE538D2A71FAAB717D11A92CBA242888 (SceneResourceManager_t5836F17AC072ACCD0FB4CD2FFB6B814D68D0E0CF * __this, String_t* ___prefabName0, const RuntimeMethod* method); // !!0 UnityEngine.Object::Instantiate(!!0) inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * Object_Instantiate_TisGameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319_m85FD3AD1E7C2C143E7D5491BBB781F1C3DA22B85 (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___original0, const RuntimeMethod* method) { return (( GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * (*) (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *, const RuntimeMethod*))Object_Instantiate_TisRuntimeObject_m5E241FA6C20E2C54A2317FEE950354EB3BCE4454_gshared)(___original0, method); } // System.Void AuthLoginMask::SetVisiable(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AuthLoginMask_SetVisiable_m8569895A745BFD617DBED79FAB4DAA5D24296435 (AuthLoginMask_t5885C21EF2FAB0AE37931AB74598E783A4925962 * __this, bool ___visiable0, const RuntimeMethod* method); // System.Void HRB_HomeView::LoadUserInfo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_HomeView_LoadUserInfo_mB1C45E0E5B3A0630F7DD7E3380DC311A004D6333 (HRB_HomeView_t287CA33A5A196A46E071D4C02FE00DF5C3C4C9F0 * __this, const RuntimeMethod* method); // !0 JCUnityLib.Singleton`1::get_Instance() inline LoginController_t03F941FA0DBBB22F0DD5B41C1F54876FA93466B6 * Singleton_1_get_Instance_mEA24133F067AA33E873E2B7E10DE993B007252D7 (const RuntimeMethod* method) { return (( LoginController_t03F941FA0DBBB22F0DD5B41C1F54876FA93466B6 * (*) (const RuntimeMethod*))Singleton_1_get_Instance_mD7F54CFD6D60327428D8C7A97E68BE95288A9A52_gshared)(method); } // System.Void System.Action`1::.ctor(System.Object,System.IntPtr) inline void Action_1__ctor_m053845EECFC7CC252EE6CB59DE74EF741058C9DE (Action_1_t41459F578D5FCF151500CBC8CF9276BDC6C984FE * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Action_1_t41459F578D5FCF151500CBC8CF9276BDC6C984FE *, RuntimeObject *, intptr_t, const RuntimeMethod*))Action_1__ctor_mA671E933C9D3DAE4E3F71D34FDDA971739618158_gshared)(__this, ___object0, ___method1, method); } // System.Collections.IEnumerator LoginController::LoginByToken(System.Action`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* LoginController_LoginByToken_m4565EC5E35566E35C96E83B27F771EC9CC49F0FF (LoginController_t03F941FA0DBBB22F0DD5B41C1F54876FA93466B6 * __this, Action_1_t41459F578D5FCF151500CBC8CF9276BDC6C984FE * ___callback0, const RuntimeMethod* method); // UnityEngine.Coroutine JCUnityLib.CoroutineStarter::Start(System.Collections.IEnumerator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * CoroutineStarter_Start_mE4CE5D6D054BE5D28D32E50837CD9CEE247E9670 (RuntimeObject* ___enumerator0, const RuntimeMethod* method); // !0 JCUnityLib.Singleton`1::get_Instance() inline HRB_Controller_tE1A7F19BF3E22DAFD78C6889E6DBEB285342C247 * Singleton_1_get_Instance_mA0E4AADC24C9635DB52871E746D69650850285A8 (const RuntimeMethod* method) { return (( HRB_Controller_tE1A7F19BF3E22DAFD78C6889E6DBEB285342C247 * (*) (const RuntimeMethod*))Singleton_1_get_Instance_mD7F54CFD6D60327428D8C7A97E68BE95288A9A52_gshared)(method); } // System.Collections.IEnumerator HRB_Controller::getUserInfo(System.Action`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* HRB_Controller_getUserInfo_m1D13450FE2AA23C86CBA6BE6156608DB211300CA (HRB_Controller_tE1A7F19BF3E22DAFD78C6889E6DBEB285342C247 * __this, Action_1_t41459F578D5FCF151500CBC8CF9276BDC6C984FE * ___callback0, const RuntimeMethod* method); // UnityEngine.Coroutine UnityEngine.MonoBehaviour::StartCoroutine(System.Collections.IEnumerator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * MonoBehaviour_StartCoroutine_m3E33706D38B23CDD179E99BAD61E32303E9CC719 (MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * __this, RuntimeObject* ___routine0, const RuntimeMethod* method); // System.Boolean AuthLoginMask::IsVisiable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AuthLoginMask_IsVisiable_m8987312045B207C4D8964A4EDFB5B7A139555E06 (AuthLoginMask_t5885C21EF2FAB0AE37931AB74598E783A4925962 * __this, const RuntimeMethod* method); // System.String TextAutoLanguage2::GetTextByCNKey(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TextAutoLanguage2_GetTextByCNKey_mE3F0235831425C99213D5478DA4778B2ED9E087E (String_t* ___textKey0, const RuntimeMethod* method); // System.Void AuthLoginMask::SetText(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AuthLoginMask_SetText_m47BD140BDACACD80C738036E7AFADA3D23D8756D (AuthLoginMask_t5885C21EF2FAB0AE37931AB74598E783A4925962 * __this, String_t* ___text0, const RuntimeMethod* method); // System.Void UnityEngine.PlayerPrefs::DeleteKey(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerPrefs_DeleteKey_mCEF6CE08D7D7670AD4072228E261A7E746030554 (String_t* ___key0, const RuntimeMethod* method); // System.Single UnityEngine.Mathf::Clamp01(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Mathf_Clamp01_m2296D75F0F1292D5C8181C57007A1CA45F440C4C (float ___value0, const RuntimeMethod* method); // !!0 UnityEngine.Component::GetComponent() inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * Component_GetComponent_TisText_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1_mE775A52A31F4F2F9E99272B014CC0CBFB4BD3294 (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 * __this, const RuntimeMethod* method) { return (( Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * (*) (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 *, const RuntimeMethod*))Component_GetComponent_TisRuntimeObject_mDC2250CC3F24F6FE45660AF6153056ABDA5ED60F_gshared)(__this, method); } // System.String System.String::Format(System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_mB3D38E5238C3164DB4D7D29339D9E225A4496D17 (String_t* ___format0, RuntimeObject * ___arg01, const RuntimeMethod* method); // UnityEngine.Rect UnityEngine.RectTransform::get_rect() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 RectTransform_get_rect_m7B24A1D6E0CB87F3481DDD2584C82C97025404E2 (RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * __this, const RuntimeMethod* method); // UnityEngine.Vector2 UnityEngine.Rect::get_size() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 Rect_get_size_m752B3BB45AE862F6EAE941ED5E5C1B01C0973A00 (Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 * __this, const RuntimeMethod* method); // UnityEngine.Vector2 UnityEngine.RectTransform::get_anchoredPosition() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 RectTransform_get_anchoredPosition_mFDC4F160F99634B2FBC73FE5FB1F4F4127CDD975 (RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * __this, const RuntimeMethod* method); // System.Void UnityEngine.RectTransform::SetSizeWithCurrentAnchors(UnityEngine.RectTransform/Axis,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RectTransform_SetSizeWithCurrentAnchors_m69641A375B011EA52C69C5E2553406FFB819F44B (RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * __this, int32_t ___axis0, float ___size1, const RuntimeMethod* method); // System.Void UnityEngine.RectTransform::set_anchoredPosition(UnityEngine.Vector2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RectTransform_set_anchoredPosition_m8143009B7D2B786DF8309D1D319F2212EFD24905 (RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * __this, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___value0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::Add(!0) inline void List_1_Add_m07C610356AB5C68760B3F1A16391671DCCD8FC89 (List_1_t21BC49A4390CA067C4050F19A1D58BE64AC2E89E * __this, Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * ___item0, const RuntimeMethod* method) { (( void (*) (List_1_t21BC49A4390CA067C4050F19A1D58BE64AC2E89E *, Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D *, const RuntimeMethod*))List_1_Add_mF15250BF947CA27BE9A23C08BAC6DB6F180B0EDD_gshared)(__this, ___item0, method); } // !0 System.Collections.Generic.List`1::get_Item(System.Int32) inline Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * List_1_get_Item_m77F12A63EB4FD22AA4D725B91DC135C20B32AE0A_inline (List_1_t21BC49A4390CA067C4050F19A1D58BE64AC2E89E * __this, int32_t ___index0, const RuntimeMethod* method) { return (( Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * (*) (List_1_t21BC49A4390CA067C4050F19A1D58BE64AC2E89E *, int32_t, const RuntimeMethod*))List_1_get_Item_m7B5E3383CB67492E573AC0D875ED82A51350F188_gshared_inline)(__this, ___index0, method); } // !!0 UnityEngine.Component::GetComponent() inline Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C * Component_GetComponent_TisImage_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C_m5D5D0C1BB7E1E67F46C955DA2861E7B83FC7301D (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 * __this, const RuntimeMethod* method) { return (( Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C * (*) (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 *, const RuntimeMethod*))Component_GetComponent_TisRuntimeObject_mDC2250CC3F24F6FE45660AF6153056ABDA5ED60F_gshared)(__this, method); } // System.Collections.Generic.List`1/Enumerator System.Collections.Generic.List`1::GetEnumerator() inline Enumerator_t6D0827411121305C0C750B338E1BFB757246E871 List_1_GetEnumerator_m8041326D4A8D9C2B4FD5DC665665140F3AC4C5B0 (List_1_t21BC49A4390CA067C4050F19A1D58BE64AC2E89E * __this, const RuntimeMethod* method) { return (( Enumerator_t6D0827411121305C0C750B338E1BFB757246E871 (*) (List_1_t21BC49A4390CA067C4050F19A1D58BE64AC2E89E *, const RuntimeMethod*))List_1_GetEnumerator_m6339FC2D3D1CE4FA13CF21C7F9FC58CA4441BF0C_gshared)(__this, method); } // System.Void HRB_HomeView/<>c__DisplayClass11_0::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass11_0__ctor_mC20FE58E0D5183F0538B0F79B5A361FB8A1736C1 (U3CU3Ec__DisplayClass11_0_tCA0E8647AB76DCC40237EF0A7E428BBB40B30192 * __this, const RuntimeMethod* method); // !0 System.Collections.Generic.List`1/Enumerator::get_Current() inline Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * Enumerator_get_Current_m2D001E6B343C8E7004498AC86EA2AA21863CC5FC_inline (Enumerator_t6D0827411121305C0C750B338E1BFB757246E871 * __this, const RuntimeMethod* method) { return (( Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * (*) (Enumerator_t6D0827411121305C0C750B338E1BFB757246E871 *, const RuntimeMethod*))Enumerator_get_Current_m4C91D0E84532DF10C654917487D82CB0AB27693B_gshared_inline)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator::MoveNext() inline bool Enumerator_MoveNext_m7206FD3121D8BEA7DFCAD913FDAF3CA0F6821691 (Enumerator_t6D0827411121305C0C750B338E1BFB757246E871 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t6D0827411121305C0C750B338E1BFB757246E871 *, const RuntimeMethod*))Enumerator_MoveNext_m2E56233762839CE55C67E00AC8DD3D4D3F6C0DF0_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator::Dispose() inline void Enumerator_Dispose_mD9C961426EFA6BBBFDCA42D46BCEA62283586500 (Enumerator_t6D0827411121305C0C750B338E1BFB757246E871 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t6D0827411121305C0C750B338E1BFB757246E871 *, const RuntimeMethod*))Enumerator_Dispose_mCFB225D9E5E597A1CC8F958E53BEA1367D8AC7B8_gshared)(__this, method); } // System.Boolean UnityEngine.Object::op_Equality(UnityEngine.Object,UnityEngine.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Equality_mEE9EC7EB5C7DC3E95B94AB904E1986FC4D566D54 (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * ___x0, Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * ___y1, const RuntimeMethod* method); // !0[] System.Collections.Generic.List`1::ToArray() inline ButtonU5BU5D_t2D8C7329F91F78C37FD1A3807DCD4366F7D7EC7B* List_1_ToArray_mECC850EEEC22522CC135B482CD46396A145A65D5 (List_1_t21BC49A4390CA067C4050F19A1D58BE64AC2E89E * __this, const RuntimeMethod* method) { return (( ButtonU5BU5D_t2D8C7329F91F78C37FD1A3807DCD4366F7D7EC7B* (*) (List_1_t21BC49A4390CA067C4050F19A1D58BE64AC2E89E *, const RuntimeMethod*))List_1_ToArray_mC6E0B3CF74090974475F845BF79EC5E66D3A71AC_gshared)(__this, method); } // System.Int32 System.Array::IndexOf(!!0[],!!0) inline int32_t Array_IndexOf_TisButton_tA893FC15AB26E1439AC25BDCA7079530587BB65D_m7E1281C9DD8335491BBCBF2DCA0EEF789C8E631E (ButtonU5BU5D_t2D8C7329F91F78C37FD1A3807DCD4366F7D7EC7B* ___array0, Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * ___value1, const RuntimeMethod* method) { return (( int32_t (*) (ButtonU5BU5D_t2D8C7329F91F78C37FD1A3807DCD4366F7D7EC7B*, Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D *, const RuntimeMethod*))Array_IndexOf_TisRuntimeObject_mBA88963C07F924406E8012B432FC74CD5216B562_gshared)(___array0, ___value1, method); } // System.Void HRB_HomeView::RenderTextAB() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_HomeView_RenderTextAB_m0360D0A26B00D60DF819797E49960BE52D154BBF (HRB_HomeView_t287CA33A5A196A46E071D4C02FE00DF5C3C4C9F0 * __this, const RuntimeMethod* method); // !!0 UnityEngine.Component::GetComponent() inline InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 * Component_GetComponent_TisInputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0_m1025822CFFC3A3C846267590775A843ED9532924 (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 * __this, const RuntimeMethod* method) { return (( InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 * (*) (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 *, const RuntimeMethod*))Component_GetComponent_TisRuntimeObject_mDC2250CC3F24F6FE45660AF6153056ABDA5ED60F_gshared)(__this, method); } // System.Boolean UnityEngine.UI.InputField::get_isFocused() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool InputField_get_isFocused_m60B873B25A63045E65D55BDC90268C8623D7C418_inline (InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 * __this, const RuntimeMethod* method); // System.Void HRB_HomeView::UpdateBtnForConnect() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_HomeView_UpdateBtnForConnect_mF1D785625A4194F61DECBBEAC6067D17475721BC (HRB_HomeView_t287CA33A5A196A46E071D4C02FE00DF5C3C4C9F0 * __this, const RuntimeMethod* method); // UnityEngine.Color UnityEngine.Color::get_yellow() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 Color_get_yellow_m9FD4BDABA7E40E136BE57EE7872CEA6B1B2FA1D1 (const RuntimeMethod* method); // UnityEngine.Color UnityEngine.Color::get_white() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 Color_get_white_mB21E47D20959C3AEC41AF8BA04F63AC89FAF319E (const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::.ctor() inline void List_1__ctor_mA1744A70D10E32296ECF132BFF63A811CB50A795 (List_1_t21BC49A4390CA067C4050F19A1D58BE64AC2E89E * __this, const RuntimeMethod* method) { (( void (*) (List_1_t21BC49A4390CA067C4050F19A1D58BE64AC2E89E *, const RuntimeMethod*))List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared)(__this, method); } // System.Boolean HomeView::ShowProminentBeforeConnectBLE(System.Action) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HomeView_ShowProminentBeforeConnectBLE_m92FF068A6060130ACAD0984C2DB2FF37CD3575F4 (Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___onAgree0, const RuntimeMethod* method); // System.Void UnityEngine.PlayerPrefs::SetString(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerPrefs_SetString_m94CD8FF45692553A5726DFADF74935F7E1D1C633 (String_t* ___key0, String_t* ___value1, const RuntimeMethod* method); // System.Void HRB_HomeView::handleAuthExpire() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_HomeView_handleAuthExpire_mB278A6EA066B9F27846D0BD17C92D872771BD701 (HRB_HomeView_t287CA33A5A196A46E071D4C02FE00DF5C3C4C9F0 * __this, const RuntimeMethod* method); // !!0 Newtonsoft.Json.JsonConvert::DeserializeObject(System.String) inline HRB_UserInfo_t33A1D91CD880DFDBEF533505A82350E3D3C8B6A9 * JsonConvert_DeserializeObject_TisHRB_UserInfo_t33A1D91CD880DFDBEF533505A82350E3D3C8B6A9_m2D2ACAF122823C65C12ABF5BA59968B66AD8EA63 (String_t* ___value0, const RuntimeMethod* method) { return (( HRB_UserInfo_t33A1D91CD880DFDBEF533505A82350E3D3C8B6A9 * (*) (String_t*, const RuntimeMethod*))JsonConvert_DeserializeObject_TisRuntimeObject_m12BD6B0524A17D2475F6F26FD93BF52EDDFA6591_gshared)(___value0, method); } // System.Void HRB_UserInfo::set_current(HRB_UserInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_UserInfo_set_current_m5F6B8A698E7C08FF26345CB40C45F04588306B00 (HRB_UserInfo_t33A1D91CD880DFDBEF533505A82350E3D3C8B6A9 * ___value0, const RuntimeMethod* method); // System.Void System.Action::Invoke() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_Invoke_m3FFA5BE3D64F0FF8E1E1CB6F953913FADB5EB89E (Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * __this, const RuntimeMethod* method); // UnityEngine.GameObject UnityEngine.GameObject::Find(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * GameObject_Find_m20157C941F1A9DA0E33E0ACA1324FAA41C2B199B (String_t* ___name0, const RuntimeMethod* method); // UnityEngine.Transform UnityEngine.GameObject::get_transform() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * GameObject_get_transform_m16A80BB92B6C8C5AB696E447014D45EDF1E4DE34 (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * __this, const RuntimeMethod* method); // !!0 UnityEngine.GameObject::GetComponent() inline Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * GameObject_GetComponent_TisButton_tA893FC15AB26E1439AC25BDCA7079530587BB65D_mAB159CED4EA42F6E700527382D795CCD31EF293F (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * __this, const RuntimeMethod* method) { return (( Button_tA893FC15AB26E1439AC25BDCA7079530587BB65D * (*) (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *, const RuntimeMethod*))GameObject_GetComponent_TisRuntimeObject_m533C28B362284747FD5138B02D183642545146E8_gshared)(__this, method); } // System.Void HRB_LoginView::InitInputLimit() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_LoginView_InitInputLimit_mE9AE770227219C29CC003032E5C59AE90EB0DE8E (HRB_LoginView_tAB63EA9B74F3B36084D0BEFF7E1F1C66212D2A07 * __this, const RuntimeMethod* method); // System.Void HRB_LoginView::ChnageCaptcha() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_LoginView_ChnageCaptcha_mDAD98CFB0DE2B885044806B2AD256F040127B9C6 (HRB_LoginView_tAB63EA9B74F3B36084D0BEFF7E1F1C66212D2A07 * __this, const RuntimeMethod* method); // System.Void HRB_LoginView/<>c__DisplayClass9_0::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass9_0__ctor_m1FF60C4CDB8C56793E7CEAEE2E37951E35180E11 (U3CU3Ec__DisplayClass9_0_t47B31812D03B51989C4B01F90B8B9946E74041BB * __this, const RuntimeMethod* method); // UnityEngine.UI.InputField HRB_LoginView::GetInputField(UnityEngine.GameObject) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 * HRB_LoginView_GetInputField_mA8F182F9034D9C2CE030202838F7B11126D9FE19 (HRB_LoginView_tAB63EA9B74F3B36084D0BEFF7E1F1C66212D2A07 * __this, GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___inputNode0, const RuntimeMethod* method); // UnityEngine.UI.InputField/OnChangeEvent UnityEngine.UI.InputField::get_onValueChanged() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR OnChangeEvent_t2E59014A56EA94168140F0585834954B40D716F7 * InputField_get_onValueChanged_mAF7D77CCBED34CF4A46A9E4EA77405D790C58449_inline (InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 * __this, const RuntimeMethod* method); // !0 JCUnityLib.Singleton`1::get_Instance() inline CaptchaController_t43D34329B0D2332B81C73361818403490AF27437 * Singleton_1_get_Instance_mF44541474BC5DD051198E345F6E9C943FF05074D (const RuntimeMethod* method) { return (( CaptchaController_t43D34329B0D2332B81C73361818403490AF27437 * (*) (const RuntimeMethod*))Singleton_1_get_Instance_mD7F54CFD6D60327428D8C7A97E68BE95288A9A52_gshared)(method); } // System.Void System.Action`1::.ctor(System.Object,System.IntPtr) inline void Action_1__ctor_mC14E24B188C6C29726CFCBC0E98734C95A1F6F7F (Action_1_t080BA8EFA9616A494EBB4DD352BFEF943792E05B * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Action_1_t080BA8EFA9616A494EBB4DD352BFEF943792E05B *, RuntimeObject *, intptr_t, const RuntimeMethod*))Action_1__ctor_mC14E24B188C6C29726CFCBC0E98734C95A1F6F7F_gshared)(__this, ___object0, ___method1, method); } // System.Collections.IEnumerator CaptchaController::GetCaptcha(UnityEngine.UI.Image,System.Action`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CaptchaController_GetCaptcha_mB29D14E72C49CCCE00A091A32DB797A8185333D3 (CaptchaController_t43D34329B0D2332B81C73361818403490AF27437 * __this, Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C * ___targetRenderImage0, Action_1_t080BA8EFA9616A494EBB4DD352BFEF943792E05B * ___cb1, const RuntimeMethod* method); // System.String UnityEngine.UI.InputField::get_text() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* InputField_get_text_m15D0C784A4A104390610325B02216FC2A6F1077C_inline (InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 * __this, const RuntimeMethod* method); // System.String System.String::Trim() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Trim_m3FEC641D7046124B7F381701903B50B5171DE0A2 (String_t* __this, const RuntimeMethod* method); // System.Boolean System.String::Equals(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Equals_m8A062B96B61A7D652E7D73C9B3E904F6B0E5F41D (String_t* __this, String_t* ___value0, const RuntimeMethod* method); // System.Boolean AgreenmentOption::IsAgreementChecked() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AgreenmentOption_IsAgreementChecked_mD6ED7B4AEF68522B617F58F32D5DA160CF61C198 (AgreenmentOption_t432B742374FB1C0EDA1654B663688306A3D77CDF * __this, const RuntimeMethod* method); // System.Boolean JCUnityLib.Throttler::CanPass() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Throttler_CanPass_m080D5F98049F0E4E2E401080CAB6AD14C50DF76C (Throttler_t24208F2310962DD9B2C5169CB881DBF9E6A44246 * __this, const RuntimeMethod* method); // System.Collections.IEnumerator LoginController::LoginNormal(System.String,System.String,System.Action`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* LoginController_LoginNormal_mF9085D37C204BD28870171506D19CC8798355BBE (LoginController_t03F941FA0DBBB22F0DD5B41C1F54876FA93466B6 * __this, String_t* ___username0, String_t* ___password1, Action_1_t41459F578D5FCF151500CBC8CF9276BDC6C984FE * ___callback2, const RuntimeMethod* method); // System.Boolean System.String::op_Equality(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method); // System.Void JCUnityLib.Throttler::.ctor(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Throttler__ctor_mB35126909D5163CA812E372D3078896EE45410F8 (Throttler_t24208F2310962DD9B2C5169CB881DBF9E6A44246 * __this, int64_t ___limitTimeMillis0, const RuntimeMethod* method); // System.Void HRB_MeView/MeUserInfo::.ctor(HRB_MeView) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MeUserInfo__ctor_m5F3535338F6A81B407E3DD0342D5A2A5346BEBA3 (MeUserInfo_t908ED54BB1E8C15D78C04BA32BB12B06CF0DC94E * __this, HRB_MeView_t6E8399EB5C5A369A0E043C949BB4F953DF0A9C76 * ___context0, const RuntimeMethod* method); // System.Void HRB_MeView::RenderAfterSave() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_MeView_RenderAfterSave_m94570DFF1CC12BD9B8399E45A2FCFA1822BE7414 (HRB_MeView_t6E8399EB5C5A369A0E043C949BB4F953DF0A9C76 * __this, const RuntimeMethod* method); // System.Void UnityEngine.Application::Quit() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Application_Quit_m8D720E5092786C2EE32310D85FE61C253D3B1F2A (const RuntimeMethod* method); // System.Boolean HRB_MeView/MeUserInfo::ShowModalForSave() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MeUserInfo_ShowModalForSave_mC0327B0F8D76DA81E7D4C55BC502AA31D2399F4C (MeUserInfo_t908ED54BB1E8C15D78C04BA32BB12B06CF0DC94E * __this, const RuntimeMethod* method); // System.Void HRB_MeView::ExcuteLogic_Destroy() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_MeView_ExcuteLogic_Destroy_m16490771A675BA612A68D93D4239DE64B63DD96D (HRB_MeView_t6E8399EB5C5A369A0E043C949BB4F953DF0A9C76 * __this, const RuntimeMethod* method); // System.Boolean HRB_MeView::ExcuteLogic_SaveUserInfo(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HRB_MeView_ExcuteLogic_SaveUserInfo_m86B0B5239C9DFB1107117108C32514C349649F42 (HRB_MeView_t6E8399EB5C5A369A0E043C949BB4F953DF0A9C76 * __this, bool ___useThrottler0, const RuntimeMethod* method); // System.Void HRB_MeView/<>c__DisplayClass12_0::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass12_0__ctor_mE24186D8F12CFE07E320E20AF28E40011AC484D2 (U3CU3Ec__DisplayClass12_0_tD686DEAD8544F1FF6ED0EC5C8AFE469538015B2F * __this, const RuntimeMethod* method); // System.Void System.Func`1::.ctor(System.Object,System.IntPtr) inline void Func_1__ctor_m16429CB52E95263F4C11AB13CF51474AFB25D1B9 (Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_1__ctor_m16429CB52E95263F4C11AB13CF51474AFB25D1B9_gshared)(__this, ___object0, ___method1, method); } // System.Boolean HRB_MeView/MeUserInfo::Save(System.Func`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MeUserInfo_Save_m67A8B96E0F5EAEB672F98A38ED54D2230267D983 (MeUserInfo_t908ED54BB1E8C15D78C04BA32BB12B06CF0DC94E * __this, Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * ___interceptor0, const RuntimeMethod* method); // UnityEngine.Transform UnityEngine.Transform::GetChild(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * Transform_GetChild_mA7D94BEFF0144F76561D9B8FED61C5C939EC1F1C (Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * __this, int32_t ___index0, const RuntimeMethod* method); // !!0 UnityEngine.Component::GetComponent() inline Toggle_t68F5A84CDD2BBAEA866F42EB4E0C9F2B431D612E * Component_GetComponent_TisToggle_t68F5A84CDD2BBAEA866F42EB4E0C9F2B431D612E_m544EDB55EC6C249F96B487032ECEB73B848CD844 (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 * __this, const RuntimeMethod* method) { return (( Toggle_t68F5A84CDD2BBAEA866F42EB4E0C9F2B431D612E * (*) (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 *, const RuntimeMethod*))Component_GetComponent_TisRuntimeObject_mDC2250CC3F24F6FE45660AF6153056ABDA5ED60F_gshared)(__this, method); } // System.Void UnityEngine.UI.Toggle::set_isOn(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Toggle_set_isOn_mB018B9F410D7236AAB71D6D1A5BACC64C891F507 (Toggle_t68F5A84CDD2BBAEA866F42EB4E0C9F2B431D612E * __this, bool ___value0, const RuntimeMethod* method); // UnityEngine.UI.InputField HRB_MeView::GetInputField(UnityEngine.Transform) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 * HRB_MeView_GetInputField_m45B995481B17EB270FEB3E85A365B1C19E2B2F54 (HRB_MeView_t6E8399EB5C5A369A0E043C949BB4F953DF0A9C76 * __this, Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___transform0, const RuntimeMethod* method); // System.Int32 UnityEngine.Transform::get_childCount() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Transform_get_childCount_mCBED4F6D3F6A7386C4D97C2C3FD25C383A0BCD05 (Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * __this, const RuntimeMethod* method); // UnityEngine.Sprite RoleMgr::GetAvatar(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * RoleMgr_GetAvatar_m00BD9EB1217DB54B7B324F9A78DEB486E9070B0F (int32_t ___id0, const RuntimeMethod* method); // System.Void UnityEngine.UI.Image::set_sprite(UnityEngine.Sprite) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Image_set_sprite_m55C50F18ABA0A98E926FC777F7D07FA18A7D04E4 (Image_t4021FF27176E44BFEDDCBE43C7FE6B713EC70D3C * __this, Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___value0, const RuntimeMethod* method); // !!0 UnityEngine.GameObject::GetComponentInChildren() inline DatePickerGroup_t71E7FBA55BB588830802A8486F57942BFFB72516 * GameObject_GetComponentInChildren_TisDatePickerGroup_t71E7FBA55BB588830802A8486F57942BFFB72516_m991EAEA7DED510BDA6066DA652D4DFD3546BE4A7 (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * __this, const RuntimeMethod* method) { return (( DatePickerGroup_t71E7FBA55BB588830802A8486F57942BFFB72516 * (*) (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *, const RuntimeMethod*))GameObject_GetComponentInChildren_TisRuntimeObject_m2DC5105404F597613BDFC5C8C87CE9931ED3D000_gshared)(__this, method); } // System.Void System.Action`1::.ctor(System.Object,System.IntPtr) inline void Action_1__ctor_mF1B9F869B92E0564B028B92505D790CF0F65CCD5 (Action_1_t09C12AA7E5E85A97B5B1F128A642D012DF05E10F * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Action_1_t09C12AA7E5E85A97B5B1F128A642D012DF05E10F *, RuntimeObject *, intptr_t, const RuntimeMethod*))Action_1__ctor_mA671E933C9D3DAE4E3F71D34FDDA971739618158_gshared)(__this, ___object0, ___method1, method); } // System.Delegate System.Delegate::Combine(System.Delegate,System.Delegate) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Delegate_t * Delegate_Combine_m631D10D6CFF81AB4F237B9D549B235A54F45FA55 (Delegate_t * ___a0, Delegate_t * ___b1, const RuntimeMethod* method); // System.Void HRB_MeView/<>c__DisplayClass24_0::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass24_0__ctor_m69A0D5039FD30803AAD5C2285E3D6C641A7F2CAA (U3CU3Ec__DisplayClass24_0_t01B1FD0D637D7AE431CBAF412D97D15EE230D59B * __this, const RuntimeMethod* method); // !!0 UnityEngine.Component::GetComponentInChildren() inline GridLayoutGroup_tE25FFEE93AF1291734B4EB8DA986D23A500E7C28 * Component_GetComponentInChildren_TisGridLayoutGroup_tE25FFEE93AF1291734B4EB8DA986D23A500E7C28_m8CFDF0E818E4FB1868C04BC63FBD7C5D9B1A39D7 (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 * __this, const RuntimeMethod* method) { return (( GridLayoutGroup_tE25FFEE93AF1291734B4EB8DA986D23A500E7C28 * (*) (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 *, const RuntimeMethod*))Component_GetComponentInChildren_TisRuntimeObject_m2D53662347629A70E2A610B61ACC705D63F22D34_gshared)(__this, method); } // System.Void HRB_MeView/<>c__DisplayClass24_1::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass24_1__ctor_mAC255A4B1EB77B5522D4BCBA932D9CD8BDF54DA5 (U3CU3Ec__DisplayClass24_1_t767CEE21DB2453E00C5135DDD61D958CCD4DA0AC * __this, const RuntimeMethod* method); // System.Boolean RoleMgr::IsRoleAvatar(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RoleMgr_IsRoleAvatar_m07C332E979BF5791306961EA29CAE4406BEB0FCE (int32_t ___id0, const RuntimeMethod* method); // !!0 UnityEngine.Object::Instantiate(!!0,UnityEngine.Transform) inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * Object_Instantiate_TisGameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319_mACEFD07C5A0FE9C85BC165DF1E4A825675719EAC (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___original0, Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___parent1, const RuntimeMethod* method) { return (( GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * (*) (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *, Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 *, const RuntimeMethod*))Object_Instantiate_TisRuntimeObject_m78E51E899A91F621B74B2CF3D5081EF822049DA3_gshared)(___original0, ___parent1, method); } // UnityEngine.GameObject UnityEngine.GameObject::get_gameObject() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * GameObject_get_gameObject_mD5FFECF7C3AC5039E847DF7A8842478539B701D6 (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * __this, const RuntimeMethod* method); // System.Void UnityEngine.Object::set_name(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object_set_name_m87C4006618ADB325ABE5439DF159E10DD8DD0781 (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * __this, String_t* ___value0, const RuntimeMethod* method); // System.Int32 RoleMgr::GetAvatarListLen() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RoleMgr_GetAvatarListLen_mC1B57889D4A928558C4C10E07D37B4DFE3571FD0 (const RuntimeMethod* method); // System.Void UnityEngine.Object::Destroy(UnityEngine.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object_Destroy_m3EEDB6ECD49A541EC826EA8E1C8B599F7AF67D30 (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * ___obj0, const RuntimeMethod* method); // UnityEngine.Transform UnityEngine.Transform::get_parent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * Transform_get_parent_m7D06005D9CB55F90F39D42F6A2AF9C7BC80745C9 (Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * __this, const RuntimeMethod* method); // !!0 UnityEngine.Component::GetComponent() inline RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * Component_GetComponent_TisRectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072_mEF448C51C8366D2CFA81704FFE76C31E4715E6D4 (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 * __this, const RuntimeMethod* method) { return (( RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * (*) (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 *, const RuntimeMethod*))Component_GetComponent_TisRuntimeObject_mDC2250CC3F24F6FE45660AF6153056ABDA5ED60F_gshared)(__this, method); } // System.Void UnityEngine.UI.LayoutRebuilder::ForceRebuildLayoutImmediate(UnityEngine.RectTransform) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LayoutRebuilder_ForceRebuildLayoutImmediate_mD06D080BA3FC8111AF814FA67ED8764F8CFECC2C (RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * ___layoutRoot0, const RuntimeMethod* method); // System.Void HRB_UserInfo::Save(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_UserInfo_Save_mE8EBFE983241379E7CDD02947FBFFE61F944EFAC (HRB_UserInfo_t33A1D91CD880DFDBEF533505A82350E3D3C8B6A9 * __this, bool ___showTip0, const RuntimeMethod* method); // System.String JC.Unity.Picker.DatePickerGroup::GetSelectDateStr() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DatePickerGroup_GetSelectDateStr_m4B905F0247BD4E57EC2E65AEDB65095D4E72EA43 (DatePickerGroup_t71E7FBA55BB588830802A8486F57942BFFB72516 * __this, const RuntimeMethod* method); // System.Void System.Action`1::.ctor(System.Object,System.IntPtr) inline void Action_1__ctor_m0830373DB14CA8000087DD745ED3AED5B645D5D8 (Action_1_t0F808BECFC00C2BA783741BFBB1E452E1850A394 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Action_1_t0F808BECFC00C2BA783741BFBB1E452E1850A394 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Action_1__ctor_mA671E933C9D3DAE4E3F71D34FDDA971739618158_gshared)(__this, ___object0, ___method1, method); } // System.Void GPSTool::GetAddress(System.Action`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GPSTool_GetAddress_mD068B33B06551CD714AD087C776F7915D9786CA1 (Action_1_t0F808BECFC00C2BA783741BFBB1E452E1850A394 * ___callback0, const RuntimeMethod* method); // System.Void UnityEngine.Screen::set_orientation(UnityEngine.ScreenOrientation) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Screen_set_orientation_mBEF7687B3C2B4726AE40F2BBB3568B1B131B6D1B (int32_t ___value0, const RuntimeMethod* method); // System.Void UnityEngine.Screen::set_autorotateToLandscapeRight(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Screen_set_autorotateToLandscapeRight_m7934E7BCD90CEE16D1C4A10E739DF1B021F2E255 (bool ___value0, const RuntimeMethod* method); // System.Void UnityEngine.Screen::set_autorotateToLandscapeLeft(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Screen_set_autorotateToLandscapeLeft_mA58796BBE0540504E54B1E0A06C06786456C4D5B (bool ___value0, const RuntimeMethod* method); // System.Void UnityEngine.Screen::set_autorotateToPortrait(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Screen_set_autorotateToPortrait_m4463ABAE29F26E957CF488565AEF4EF655B6E048 (bool ___value0, const RuntimeMethod* method); // System.Void UnityEngine.Screen::set_autorotateToPortraitUpsideDown(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Screen_set_autorotateToPortraitUpsideDown_m55CA3FBCA4E8F835AC084D1B0FAE19D72A924906 (bool ___value0, const RuntimeMethod* method); // System.Boolean LoginMgr::HasToken() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LoginMgr_HasToken_m292A1410442A0D5A89D68D285E10833CE15724D8 (const RuntimeMethod* method); // System.Void HRB_PlanView::InitPlanWeightLoss() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_PlanView_InitPlanWeightLoss_m4059CEFF6E359CC2173B03067F489B46F95C8F3F (HRB_PlanView_t5BDCE3FB207F5302CCB99DF4865485D4F727F9D3 * __this, const RuntimeMethod* method); // System.Void HRB_PlanView::RenderPlanDateStart() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_PlanView_RenderPlanDateStart_m8096181E9E7E67B5E73BCA1DD136EF7B38B6BACC (HRB_PlanView_t5BDCE3FB207F5302CCB99DF4865485D4F727F9D3 * __this, const RuntimeMethod* method); // System.Void HRB_PlanView::RenderPlanDateEnd() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_PlanView_RenderPlanDateEnd_mA05A648ED925067E42FA96B2D6D494B5C0131BE6 (HRB_PlanView_t5BDCE3FB207F5302CCB99DF4865485D4F727F9D3 * __this, const RuntimeMethod* method); // System.Void HRB_PlanView::RenderPlanDayCount() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_PlanView_RenderPlanDayCount_mA816E09CC76EAB10208A475833FBA32CBBA6872D (HRB_PlanView_t5BDCE3FB207F5302CCB99DF4865485D4F727F9D3 * __this, const RuntimeMethod* method); // !!0 UnityEngine.Component::GetComponent() inline InputFieldFocusListener_t56C02463411D50EFB479098C91BA0BA1C3150EB9 * Component_GetComponent_TisInputFieldFocusListener_t56C02463411D50EFB479098C91BA0BA1C3150EB9_mBC8443542C1BF627EBFCFA78C8AA5C1DBB557969 (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 * __this, const RuntimeMethod* method) { return (( InputFieldFocusListener_t56C02463411D50EFB479098C91BA0BA1C3150EB9 * (*) (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 *, const RuntimeMethod*))Component_GetComponent_TisRuntimeObject_mDC2250CC3F24F6FE45660AF6153056ABDA5ED60F_gshared)(__this, method); } // System.Void HRB_PlanView::RenderPlanWeightLoss() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_PlanView_RenderPlanWeightLoss_m43CBB55FE78433FA759A2DF86F7CAE9518090D96 (HRB_PlanView_t5BDCE3FB207F5302CCB99DF4865485D4F727F9D3 * __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_m89EAB4C6A96B0E5C3F87300D6BE78D386B9EFC44 (String_t* ___str00, String_t* ___str11, String_t* ___str22, const RuntimeMethod* method); // System.DateTime System.DateTime::Parse(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 DateTime_Parse_m15F41E956747FC3E7EEBB24E45AA8733C1966989 (String_t* ___s0, const RuntimeMethod* method); // System.TimeSpan System.DateTime::Subtract(System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 DateTime_Subtract_mB3CA7BD87D07F9A98AA7A571D7CA179A4209AE0B (DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * __this, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___value0, const RuntimeMethod* method); // System.Int32 System.TimeSpan::get_Days() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TimeSpan_get_Days_m4DDAF161E1C81C08CDF8AEFC1AD6AF08FAEE09A7 (TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * __this, const RuntimeMethod* method); // System.Void HRB_PlanView/<>c__DisplayClass14_0::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass14_0__ctor_mF59CD8A032ED9D8D5CF319484D0F8F701858C53B (U3CU3Ec__DisplayClass14_0_t09BB7C4820DB6D3313FE63075C68D3DA6C7DB0CC * __this, const RuntimeMethod* method); // System.Void System.DateTime::.ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTime__ctor_m4DA8AA49E6923EDCFB8927D588AE3D79B218545D (DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * __this, int32_t ___year0, int32_t ___month1, int32_t ___day2, int32_t ___hour3, int32_t ___minute4, int32_t ___second5, const RuntimeMethod* method); // System.DateTime System.DateTime::get_Now() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 DateTime_get_Now_mCAC695993D6E2C57B900C83BEF3F8B18BC4EBC2C (const RuntimeMethod* method); // System.String System.DateTime::ToString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTime_ToString_m19ECEFF7BA22ED4425F7562A82A1C2308E934204 (DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * __this, String_t* ___format0, const RuntimeMethod* method); // System.DateTime System.DateTime::AddDays(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 DateTime_AddDays_mEB8882A3289F39D7B10E5A1FB36A2ABF80328368 (DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * __this, double ___value0, const RuntimeMethod* method); // System.Single System.Single::Parse(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Single_Parse_mA1B20E6E0AAD67F60707D81E82667D2D4B274D6F (String_t* ___s0, const RuntimeMethod* method); // System.Void HRB_RegisterView/<>c__DisplayClass12_0::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass12_0__ctor_m59EC130153A8B1D28991BF351F792B6CF94B5626 (U3CU3Ec__DisplayClass12_0_t4C6405DB73B24A09203B2F40BA909F3226A3A110 * __this, const RuntimeMethod* method); // System.Void HRB_RegisterView::InitPage(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_RegisterView_InitPage_mFED2B059A8B0D83CEE5F6A374E216FD298995DA2 (HRB_RegisterView_t359F235962408A9007BD942F4F568BC3DFBB2D3D * __this, bool ___isNext0, const RuntimeMethod* method); // !!0 UnityEngine.Component::GetComponent() inline AgreementPopup_tCC38F433C4A11AEF6FBB883ACABC611A73F4B3E6 * Component_GetComponent_TisAgreementPopup_tCC38F433C4A11AEF6FBB883ACABC611A73F4B3E6_m7488B2BAD3DB37C0D0866D1C993DB4CEF8BC43E9 (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 * __this, const RuntimeMethod* method) { return (( AgreementPopup_tCC38F433C4A11AEF6FBB883ACABC611A73F4B3E6 * (*) (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 *, const RuntimeMethod*))Component_GetComponent_TisRuntimeObject_mDC2250CC3F24F6FE45660AF6153056ABDA5ED60F_gshared)(__this, method); } // System.Void HRB_RegisterView::InitInputLimit() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_RegisterView_InitInputLimit_mB3CE07BE3EC06E80C649565B1A06E0C92E52E1D5 (HRB_RegisterView_t359F235962408A9007BD942F4F568BC3DFBB2D3D * __this, const RuntimeMethod* method); // System.Void HRB_RegisterView/<>c__DisplayClass14_0::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass14_0__ctor_m626EE47A3AD2DEE28FDDDADC134E6019D098C001 (U3CU3Ec__DisplayClass14_0_t43C7855FC73760DB1B2FC4A67D1168EC2E935372 * __this, const RuntimeMethod* method); // UnityEngine.UI.InputField HRB_RegisterView::GetInputField(UnityEngine.GameObject) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 * HRB_RegisterView_GetInputField_m726E8EA46C76001DAEC1C1CCA76B5C33F1A0B689 (HRB_RegisterView_t359F235962408A9007BD942F4F568BC3DFBB2D3D * __this, GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___inputNode0, const RuntimeMethod* method); // System.Void DoTweenUtil::CallDelay(System.Single,DG.Tweening.TweenCallback) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DoTweenUtil_CallDelay_mC5557030978189F7F93173D4E6F513BFB7DE2C9A (float ___delayTime0, TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB * ___callback1, const RuntimeMethod* method); // System.Void HRB_RegisterView::ChnageCaptcha() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_RegisterView_ChnageCaptcha_m7129250ADD4E5BA07FB607EF9D4B82F90B2C7419 (HRB_RegisterView_t359F235962408A9007BD942F4F568BC3DFBB2D3D * __this, const RuntimeMethod* method); // System.Boolean System.String::op_Inequality(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Inequality_mDDA2DDED3E7EF042987EB7180EE3E88105F0AAE2 (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method); // System.Collections.IEnumerator LoginController::Register(System.String,System.String,System.Action`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* LoginController_Register_m6B3C3E01B36BEAF57767DFABAB13CD0A9045B2E6 (LoginController_t03F941FA0DBBB22F0DD5B41C1F54876FA93466B6 * __this, String_t* ___username0, String_t* ___password1, Action_1_t41459F578D5FCF151500CBC8CF9276BDC6C984FE * ___callback2, const RuntimeMethod* method); // System.Boolean UnityEngine.UI.Toggle::get_isOn() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Toggle_get_isOn_m2B1F3640101A6FCDA6B5AF27924FFD10E3A89A6C_inline (Toggle_t68F5A84CDD2BBAEA866F42EB4E0C9F2B431D612E * __this, const RuntimeMethod* method); // System.Collections.IEnumerator LoginController::CompleteUserInfo(System.String,System.String,System.String,System.Int32,System.String,System.String,System.String,System.String,System.Action`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* LoginController_CompleteUserInfo_m50BBAC83FCFA5A446B20B5E871BD5DE335835D0D (LoginController_t03F941FA0DBBB22F0DD5B41C1F54876FA93466B6 * __this, String_t* ___username0, String_t* ___password1, String_t* ___nickname2, int32_t ___gender3, String_t* ___birthday4, String_t* ___countryCode5, String_t* ___stateCode6, String_t* ___cityCode7, Action_1_t41459F578D5FCF151500CBC8CF9276BDC6C984FE * ___callback8, const RuntimeMethod* method); // System.Void HRB_RegisterView::GetLocation() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_RegisterView_GetLocation_m5EA7604CF3CF5227D0679FDFA570991A915206AA (HRB_RegisterView_t359F235962408A9007BD942F4F568BC3DFBB2D3D * __this, const RuntimeMethod* method); // System.Void PopupMgr::ShowTipTop(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PopupMgr_ShowTipTop_m258B2C95347BD8E1B9114FB76341F42977DF376E (PopupMgr_t6FED92ED719BC99F2D92EB96849B1570DB8580AC * __this, String_t* ___text0, const RuntimeMethod* method); // System.Void HRB_UserInfo::LoadLocalData() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_UserInfo_LoadLocalData_mEED531440E9C17FC3E2062ADE16ABA00FDED2AD4 (HRB_UserInfo_t33A1D91CD880DFDBEF533505A82350E3D3C8B6A9 * __this, const RuntimeMethod* method); // System.String HRB_UserInfo::GetLocalDataKey(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* HRB_UserInfo_GetLocalDataKey_mA4DAA6182F256A73D43848CB43F30B9BCD25FB90 (HRB_UserInfo_t33A1D91CD880DFDBEF533505A82350E3D3C8B6A9 * __this, String_t* ___propName0, const RuntimeMethod* method); // System.Int32 UnityEngine.PlayerPrefs::GetInt(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PlayerPrefs_GetInt_mDA4476C10FCFF55FC65816E5E519B0EAFCB2AC14 (String_t* ___key0, int32_t ___defaultValue1, const RuntimeMethod* method); // System.Single UnityEngine.PlayerPrefs::GetFloat(System.String,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float PlayerPrefs_GetFloat_mCF1F69BE283197090AB08158CD05995136A1EBCF (String_t* ___key0, float ___defaultValue1, const RuntimeMethod* method); // System.String UnityEngine.PlayerPrefs::GetString(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* PlayerPrefs_GetString_m5709C9DC233D10A7E9AF4BCC9639E3F18FE36831 (String_t* ___key0, String_t* ___defaultValue1, const RuntimeMethod* method); // System.Void UnityEngine.PlayerPrefs::SetInt(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerPrefs_SetInt_m0C5C977E960B9CA8F9AB73AF4129C3DCABD067B6 (String_t* ___key0, int32_t ___value1, const RuntimeMethod* method); // System.Void UnityEngine.PlayerPrefs::SetFloat(System.String,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlayerPrefs_SetFloat_mF660C042621E97A05AD99134DBDD9B1205CDD214 (String_t* ___key0, float ___value1, const RuntimeMethod* method); // System.Void HRB_UserInfo/<>c__DisplayClass21_0::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass21_0__ctor_mA80E89B8E1E9F77FDDB25FEAE55FCD000471D764 (U3CU3Ec__DisplayClass21_0_tAD8B65444910AC8D8907AF555A90618FF1A2FDBA * __this, const RuntimeMethod* method); // System.Collections.IEnumerator HRB_Controller::saveUserInfo(HRB_UserInfo,System.Action`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* HRB_Controller_saveUserInfo_m61410C07BA405FED7313D5E62678D8A717F8446F (HRB_Controller_tE1A7F19BF3E22DAFD78C6889E6DBEB285342C247 * __this, HRB_UserInfo_t33A1D91CD880DFDBEF533505A82350E3D3C8B6A9 * ___userInfo0, Action_1_t41459F578D5FCF151500CBC8CF9276BDC6C984FE * ___callback1, const RuntimeMethod* method); // System.Void HRB_UserInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_UserInfo__ctor_m536FF4A616D68828C9300DC8134E8BFD0F434259 (HRB_UserInfo_t33A1D91CD880DFDBEF533505A82350E3D3C8B6A9 * __this, const RuntimeMethod* method); // !!0 UnityEngine.Component::GetComponent() inline CanvasScaler_t8EF50255FD2913C31BD62B14476C994F64D711F1 * Component_GetComponent_TisCanvasScaler_t8EF50255FD2913C31BD62B14476C994F64D711F1_m9E2CF42DCE2625D7E3040181FCA8036E22F12855 (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 * __this, const RuntimeMethod* method) { return (( CanvasScaler_t8EF50255FD2913C31BD62B14476C994F64D711F1 * (*) (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 *, const RuntimeMethod*))Component_GetComponent_TisRuntimeObject_mDC2250CC3F24F6FE45660AF6153056ABDA5ED60F_gshared)(__this, method); } // System.Void UnityEngine.Vector2::.ctor(System.Single,System.Single) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector2__ctor_m9F1F2D5EB5D1FF7091BB527AC8A72CBB309D115E_inline (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * __this, float ___x0, float ___y1, const RuntimeMethod* method); // System.Void UnityEngine.UI.CanvasScaler::set_referenceResolution(UnityEngine.Vector2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CanvasScaler_set_referenceResolution_mD3200E76103B16C8064B6E48595EFC9C5BDCB719 (CanvasScaler_t8EF50255FD2913C31BD62B14476C994F64D711F1 * __this, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___value0, const RuntimeMethod* method); // System.Void JCUnityLib.ViewManager`1::.ctor() inline void ViewManager_1__ctor_m2CE759B3554658FA49D40144864907A46B979C6F (ViewManager_1_t5BDF7DFD13D86428BB0E5054ADC635CE0AE90F1E * __this, const RuntimeMethod* method) { (( void (*) (ViewManager_1_t5BDF7DFD13D86428BB0E5054ADC635CE0AE90F1E *, const RuntimeMethod*))ViewManager_1__ctor_mEF8DA98CEDA80D165AEBEB44394970E7AD9E9F32_gshared)(__this, method); } // System.DateTime System.DateTime::get_UtcNow() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 DateTime_get_UtcNow_m761E57F86226DDD94F0A2F4D98F0A8E27C74F090 (const RuntimeMethod* method); // System.Void BestHTTP.Caching.HTTPCacheFileInfo::.ctor(System.Uri,System.DateTime,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPCacheFileInfo__ctor_mFC2C4D6CBF16FEC2613A7C9EB8EB3FB62D556369 (HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * __this, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri0, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___lastAcces1, int32_t ___bodyLength2, const RuntimeMethod* method); // System.Void BestHTTP.Caching.HTTPCacheFileInfo::set_Uri(System.Uri) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPCacheFileInfo_set_Uri_m35F398451B382792C80CBDE4BDCFE6F1068A3D82_inline (HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * __this, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___value0, const RuntimeMethod* method); // System.Void BestHTTP.Caching.HTTPCacheFileInfo::set_LastAccess(System.DateTime) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPCacheFileInfo_set_LastAccess_mAE37AE798CA0CAEC28DD64D08C91F764F4CB4195_inline (HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * __this, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___value0, const RuntimeMethod* method); // System.Void BestHTTP.Caching.HTTPCacheFileInfo::set_BodyLength(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPCacheFileInfo_set_BodyLength_m2073B5B438A7EC6A0EDB1F201C81A832F185E74C_inline (HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * __this, int32_t ___value0, const RuntimeMethod* method); // System.Void BestHTTP.Caching.HTTPCacheFileInfo::set_MaxAge(System.Int64) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPCacheFileInfo_set_MaxAge_mF153D559E3A954773DC204E3928D9B0C2AC06475_inline (HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * __this, int64_t ___value0, const RuntimeMethod* method); // System.UInt64 BestHTTP.Caching.HTTPCacheService::GetNameIdx() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t HTTPCacheService_GetNameIdx_m297C4010C23E4CBD844CCB3CF99485F0FC642D73 (const RuntimeMethod* method); // System.Void BestHTTP.Caching.HTTPCacheFileInfo::set_MappedNameIDX(System.UInt64) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPCacheFileInfo_set_MappedNameIDX_m841E53BBA7E4CE22B8DAAE9B06FDDCFDFD5F5D1E_inline (HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * __this, uint64_t ___value0, const RuntimeMethod* method); // System.DateTime System.DateTime::FromBinary(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 DateTime_FromBinary_m64478A16AE479B0ADB9319A22D3409696DD868AB (int64_t ___dateData0, const RuntimeMethod* method); // System.Void BestHTTP.Caching.HTTPCacheFileInfo::set_ETag(System.String) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPCacheFileInfo_set_ETag_m0842EED770D759262BFFE6119EF1573553F5FA49_inline (HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * __this, String_t* ___value0, const RuntimeMethod* method); // System.Void BestHTTP.Caching.HTTPCacheFileInfo::set_LastModified(System.String) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPCacheFileInfo_set_LastModified_m53099136896D2AF0F00BCBB94B617246EE3C392F_inline (HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * __this, String_t* ___value0, const RuntimeMethod* method); // System.Void BestHTTP.Caching.HTTPCacheFileInfo::set_Expires(System.DateTime) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPCacheFileInfo_set_Expires_m4FE12EBD605CE797E38DBB1DB168D9696FD4C07B_inline (HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * __this, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___value0, const RuntimeMethod* method); // System.Void BestHTTP.Caching.HTTPCacheFileInfo::set_Age(System.Int64) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPCacheFileInfo_set_Age_mD0F3D24243FF51556663B994FFBBEFC844DC7B70_inline (HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * __this, int64_t ___value0, const RuntimeMethod* method); // System.Void BestHTTP.Caching.HTTPCacheFileInfo::set_Date(System.DateTime) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPCacheFileInfo_set_Date_m21F4D29CC6AF5C8CC84F9C84CA0152C0E2F82C87_inline (HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * __this, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___value0, const RuntimeMethod* method); // System.Void BestHTTP.Caching.HTTPCacheFileInfo::set_MustRevalidate(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPCacheFileInfo_set_MustRevalidate_mBD0199C6E19454C4C5A303E8D8BF012309E6EA6B_inline (HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * __this, bool ___value0, const RuntimeMethod* method); // System.Void BestHTTP.Caching.HTTPCacheFileInfo::set_Received(System.DateTime) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPCacheFileInfo_set_Received_mB40B51C0FAC76FAF8C6784005FEA3B39C147AD1F_inline (HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * __this, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___value0, const RuntimeMethod* method); // System.DateTime BestHTTP.Caching.HTTPCacheFileInfo::get_LastAccess() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 HTTPCacheFileInfo_get_LastAccess_m661E5CC1286B43F9A2B860215FB44EF65DDE8B89_inline (HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * __this, const RuntimeMethod* method); // System.Int64 System.DateTime::ToBinary() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t DateTime_ToBinary_m5D858F047C395A96A5B2C547A47BACF5C857A603 (DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * __this, const RuntimeMethod* method); // System.Int32 BestHTTP.Caching.HTTPCacheFileInfo::get_BodyLength() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t HTTPCacheFileInfo_get_BodyLength_m17A90CD59E2F0F9F761C5211F6724305DB779943_inline (HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * __this, const RuntimeMethod* method); // System.UInt64 BestHTTP.Caching.HTTPCacheFileInfo::get_MappedNameIDX() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint64_t HTTPCacheFileInfo_get_MappedNameIDX_mF1ABB712655C4DE19316AD1CFC347BB24BE55C00_inline (HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * __this, const RuntimeMethod* method); // System.String BestHTTP.Caching.HTTPCacheFileInfo::get_ETag() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* HTTPCacheFileInfo_get_ETag_mB96016A49743B230BA9EC1CC0B5A7ABFAE209F0E_inline (HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * __this, const RuntimeMethod* method); // System.String BestHTTP.Caching.HTTPCacheFileInfo::get_LastModified() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* HTTPCacheFileInfo_get_LastModified_m0D2C859C286BFF7359F3C030CE15D92641EC0B40_inline (HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * __this, const RuntimeMethod* method); // System.DateTime BestHTTP.Caching.HTTPCacheFileInfo::get_Expires() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 HTTPCacheFileInfo_get_Expires_mE3667AF6A1B8E3CAD8782ECB5C229FD67E7A82FE_inline (HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * __this, const RuntimeMethod* method); // System.Int64 BestHTTP.Caching.HTTPCacheFileInfo::get_Age() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t HTTPCacheFileInfo_get_Age_m81CB88BC7262B8E2EB28AD458343F5CE4652D618_inline (HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * __this, const RuntimeMethod* method); // System.Int64 BestHTTP.Caching.HTTPCacheFileInfo::get_MaxAge() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t HTTPCacheFileInfo_get_MaxAge_m4D9D8076E6925CD3A1B8F09E5C2B095C168ED85F_inline (HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * __this, const RuntimeMethod* method); // System.DateTime BestHTTP.Caching.HTTPCacheFileInfo::get_Date() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 HTTPCacheFileInfo_get_Date_m612E468C7B7013EBF3A36964A3EB6709716E8855_inline (HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * __this, const RuntimeMethod* method); // System.Boolean BestHTTP.Caching.HTTPCacheFileInfo::get_MustRevalidate() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool HTTPCacheFileInfo_get_MustRevalidate_mB9FE87D224F5E2195A8A57F841BFE4ACE4809FAE_inline (HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * __this, const RuntimeMethod* method); // System.DateTime BestHTTP.Caching.HTTPCacheFileInfo::get_Received() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 HTTPCacheFileInfo_get_Received_m3670730C5D9F8F289C0A4F1BD77FE9683EC1B992_inline (HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * __this, const RuntimeMethod* method); // System.String BestHTTP.Caching.HTTPCacheFileInfo::get_ConstructedPath() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* HTTPCacheFileInfo_get_ConstructedPath_mB5CF35A980287C9D3B06AACF7CABA4972A7B6489_inline (HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * __this, const RuntimeMethod* method); // System.String BestHTTP.Caching.HTTPCacheService::get_CacheFolder() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* HTTPCacheService_get_CacheFolder_m01F2296A45174FBF7CDD42DFFF776BC07D3DFF18_inline (const RuntimeMethod* method); // System.String System.UInt64::ToString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UInt64_ToString_mFE48F1D174A1F741AB0795C1164BF45BF37F86E6 (uint64_t* __this, String_t* ___format0, const RuntimeMethod* method); // System.String System.IO.Path::Combine(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Path_Combine_mC22E47A9BB232F02ED3B6B5F6DD53338D37782EF (String_t* ___path10, String_t* ___path21, const RuntimeMethod* method); // System.Void BestHTTP.Caching.HTTPCacheFileInfo::set_ConstructedPath(System.String) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPCacheFileInfo_set_ConstructedPath_m0BE2790B51E1D608021E321146E375BC9A260431_inline (HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * __this, String_t* ___value0, const RuntimeMethod* method); // System.Boolean BestHTTP.Caching.HTTPCacheService::get_IsSupported() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HTTPCacheService_get_IsSupported_m3E752A3E9D87645131EAACB4D762DEE426186BF2 (const RuntimeMethod* method); // System.String BestHTTP.Caching.HTTPCacheFileInfo::GetPath() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* HTTPCacheFileInfo_GetPath_mD35AFE3AF59D1C57BFEF842F80414455899A0D97 (HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * __this, const RuntimeMethod* method); // System.Void BestHTTP.Caching.HTTPCacheFileInfo::Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPCacheFileInfo_Reset_m8F8C20441E0B49B67C2F5DA1BC0FBCFECF260D95 (HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * __this, const RuntimeMethod* method); // System.Void BestHTTP.HTTPResponse::set_CacheFileInfo(BestHTTP.Caching.HTTPCacheFileInfo) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPResponse_set_CacheFileInfo_mF7AA543EDCFC55427E99B16E8048C56329D6936B_inline (HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * __this, HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * ___value0, const RuntimeMethod* method); // System.String BestHTTP.HTTPResponse::GetFirstHeaderValue(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* HTTPResponse_GetFirstHeaderValue_mCEE274940680171EC84DC9DEEDB577DBF8A26D1B (HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * __this, String_t* ___name0, const RuntimeMethod* method); // System.String BestHTTP.Extensions.Extensions::ToStrOrEmpty(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Extensions_ToStrOrEmpty_m1917CECC4ABD96EA8A1D37CC972F9BCA366F47DA (String_t* ___str0, const RuntimeMethod* method); // System.DateTime BestHTTP.Extensions.Extensions::ToDateTime(System.String,System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 Extensions_ToDateTime_m32A458F4262DFA11C0F2819071B07D7946B8ABDB (String_t* ___str0, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___defaultValue1, const RuntimeMethod* method); // System.Int64 BestHTTP.Extensions.Extensions::ToInt64(System.String,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Extensions_ToInt64_mB69BCEEF6EE5DCD5BC355B796DE8EE42C41C274D (String_t* ___str0, int64_t ___defaultValue1, const RuntimeMethod* method); // System.Boolean System.String::IsNullOrEmpty(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_IsNullOrEmpty_m9AFBB5335B441B94E884B8A9D4A27AD60E3D7F7C (String_t* ___value0, const RuntimeMethod* method); // System.String[] BestHTTP.Extensions.Extensions::FindOption(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* Extensions_FindOption_m221E660AC78D706192EA4D799C6DA0C3F2CD5A31 (String_t* ___str0, String_t* ___option1, const RuntimeMethod* method); // System.Boolean System.Double::TryParse(System.String,System.Double&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Double_TryParse_m9152D976CDFE0B30C7E251DDD04EAD6BBD0800B0 (String_t* ___s0, double* ___result1, const RuntimeMethod* method); // System.Boolean System.String::Contains(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Contains_mA26BDCCE8F191E8965EB8EEFC18BB4D0F85A075A (String_t* __this, String_t* ___value0, const RuntimeMethod* method); // System.Boolean BestHTTP.Caching.HTTPCacheFileInfo::IsExists() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HTTPCacheFileInfo_IsExists_mA35212A40E37DCBEC204E2CF0504B9D8D16027B2 (HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * __this, const RuntimeMethod* method); // System.TimeSpan System.DateTime::op_Subtraction(System.DateTime,System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 DateTime_op_Subtraction_m67E0BD5004FEDD3A704BC74B9DC858C9BCED4DF2 (DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___d10, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___d21, const RuntimeMethod* method); // System.Double System.TimeSpan::get_TotalSeconds() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double TimeSpan_get_TotalSeconds_m28CDC7B9ADFEAFF912CC9B66984090CFE60B9AA4 (TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * __this, const RuntimeMethod* method); // System.Int64 System.Math::Max(System.Int64,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Math_Max_m9CDC0B9CEA956A30F9B6BDA815DA307169C6E1C8 (int64_t ___val10, int64_t ___val21, const RuntimeMethod* method); // System.Boolean System.DateTime::op_GreaterThan(System.DateTime,System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_op_GreaterThan_m87A988E247EFDFFE61474088700F29840758E3DD (DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___t10, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___t21, const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::SetHeader(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPRequest_SetHeader_m5DFA6302FD1F64647A4A7A80D9AFE68B56A8FD09 (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, String_t* ___name0, String_t* ___value1, const RuntimeMethod* method); // System.Boolean BestHTTP.HTTPRequest::get_UseStreaming() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool HTTPRequest_get_UseStreaming_m85DCE89D5F354C9220188675669714BBC3A89053_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, const RuntimeMethod* method); // System.Void BestHTTP.HTTPResponse::.ctor(BestHTTP.HTTPRequest,System.IO.Stream,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPResponse__ctor_mEE080B7F104F05A1D099B6D51804077185591D16 (HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * __this, HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * ___request0, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___stream1, bool ___isStreamed2, bool ___isFromCache3, const RuntimeMethod* method); // System.Int32 BestHTTP.HTTPManager::get_MaxPathLength() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t HTTPManager_get_MaxPathLength_m049A217C8FA9B9B6F89E7EE985F9B368332ED1A7_inline (const RuntimeMethod* method); // System.Void BestHTTP.Caching.HTTPCacheFileInfo::Delete() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPCacheFileInfo_Delete_mDB0C26ED1926F1C0C0204D0E1CBC71382EC09CC8 (HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * __this, const RuntimeMethod* method); // System.Int32 BestHTTP.HTTPResponse::get_StatusCode() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t HTTPResponse_get_StatusCode_m3D1C85F140105D51707DADCD3A376621CFA670DF_inline (HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * __this, const RuntimeMethod* method); // System.String BestHTTP.HTTPResponse::get_Message() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* HTTPResponse_get_Message_m1898E05F9D431E994A4D955B9B6C92A3C98A9383_inline (HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * __this, const RuntimeMethod* method); // System.Void BestHTTP.Extensions.Extensions::WriteLine(System.IO.Stream,System.String,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Extensions_WriteLine_m91D91D7B5A16EB0422F975E43B5B8B0DA8DB9A23 (Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___fs0, String_t* ___format1, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___values2, const RuntimeMethod* method); // System.Collections.Generic.Dictionary`2> BestHTTP.HTTPResponse::get_Headers() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086 * HTTPResponse_get_Headers_m27BA752299C9175A23DDB59E4DF0112ECD00F539_inline (HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * __this, const RuntimeMethod* method); // System.Collections.Generic.Dictionary`2/Enumerator System.Collections.Generic.Dictionary`2>::GetEnumerator() inline Enumerator_t165535373A2C041075C388ED21DF73971A40816A Dictionary_2_GetEnumerator_m73E15E905DFF4BA246EB8ED39C9203C080C53DB7 (Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086 * __this, const RuntimeMethod* method) { return (( Enumerator_t165535373A2C041075C388ED21DF73971A40816A (*) (Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086 *, const RuntimeMethod*))Dictionary_2_GetEnumerator_mD80BA563C32BF7C1EE95C9FC1BE3B423716CCE68_gshared)(__this, method); } // System.Collections.Generic.KeyValuePair`2 System.Collections.Generic.Dictionary`2/Enumerator>::get_Current() inline KeyValuePair_2_t51A34E5FB59AD087543207A2587CEF7C2B432E53 Enumerator_get_Current_m6856A4E056EDF877D9D78094CACACD8A645EC1E4_inline (Enumerator_t165535373A2C041075C388ED21DF73971A40816A * __this, const RuntimeMethod* method) { return (( KeyValuePair_2_t51A34E5FB59AD087543207A2587CEF7C2B432E53 (*) (Enumerator_t165535373A2C041075C388ED21DF73971A40816A *, const RuntimeMethod*))Enumerator_get_Current_m39BB9CD07FEC0DBEDFE938630364A23C9A87FC3F_gshared_inline)(__this, method); } // !0 System.Collections.Generic.KeyValuePair`2>::get_Key() inline String_t* KeyValuePair_2_get_Key_m16CB99BBD7631726AD4A7050581910997AA197C7_inline (KeyValuePair_2_t51A34E5FB59AD087543207A2587CEF7C2B432E53 * __this, const RuntimeMethod* method) { return (( String_t* (*) (KeyValuePair_2_t51A34E5FB59AD087543207A2587CEF7C2B432E53 *, const RuntimeMethod*))KeyValuePair_2_get_Key_mEFB776105F87A4EAB1CAC3F0C96C4D0B79F3F03D_gshared_inline)(__this, method); } // !1 System.Collections.Generic.KeyValuePair`2>::get_Value() inline List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * KeyValuePair_2_get_Value_mC2476B38FA5CB1B8C7A113524E76499DB7127E9B_inline (KeyValuePair_2_t51A34E5FB59AD087543207A2587CEF7C2B432E53 * __this, const RuntimeMethod* method) { return (( List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * (*) (KeyValuePair_2_t51A34E5FB59AD087543207A2587CEF7C2B432E53 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m8425596BB4249956819960EC76E618357F573E76_gshared_inline)(__this, method); } // !0 System.Collections.Generic.List`1::get_Item(System.Int32) inline String_t* List_1_get_Item_m3F624A80E7853289E4759DE8F16CF23B0958365B_inline (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * __this, int32_t ___index0, const RuntimeMethod* method) { return (( String_t* (*) (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 *, int32_t, const RuntimeMethod*))List_1_get_Item_m7B5E3383CB67492E573AC0D875ED82A51350F188_gshared_inline)(__this, ___index0, method); } // System.Int32 System.Collections.Generic.List`1::get_Count() inline int32_t List_1_get_Count_m199DB87BCE947106FBA38E19FDFE80CB65B61144_inline (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * __this, const RuntimeMethod* method) { return (( int32_t (*) (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 *, const RuntimeMethod*))List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator>::MoveNext() inline bool Enumerator_MoveNext_m190544484A48339ACEDE62C253203E1FC290E07E (Enumerator_t165535373A2C041075C388ED21DF73971A40816A * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t165535373A2C041075C388ED21DF73971A40816A *, const RuntimeMethod*))Enumerator_MoveNext_mCAD84084129516BD41DE5CC3E1FABA5A8DF836D0_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator>::Dispose() inline void Enumerator_Dispose_mC64A3087CF95F5E75C819788C5EE67AB1C86A7C5 (Enumerator_t165535373A2C041075C388ED21DF73971A40816A * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t165535373A2C041075C388ED21DF73971A40816A *, const RuntimeMethod*))Enumerator_Dispose_m85CA135BAB22C9F0C87C84AB90FF6740D1859279_gshared)(__this, method); } // System.Void BestHTTP.Extensions.Extensions::WriteLine(System.IO.Stream) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Extensions_WriteLine_m4F15F88A6C47CBB55D45F65894AD8804382E355F (Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___fs0, const RuntimeMethod* method); // System.Byte[] BestHTTP.HTTPResponse::get_Data() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* HTTPResponse_get_Data_m0CCF6E05405D6F2EEB11F87DEB23DB61A6059F0F_inline (HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * __this, const RuntimeMethod* method); // System.Void BestHTTP.Caching.HTTPCacheFileInfo::SetUpCachingValues(BestHTTP.HTTPResponse) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPCacheFileInfo_SetUpCachingValues_mE11E9B495682EBB89C6A42C5CA2F0B602242D244 (HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * __this, HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * ___response0, const RuntimeMethod* method); // System.Boolean BestHTTP.HTTPResponse::get_IsFromCache() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool HTTPResponse_get_IsFromCache_m7882BCA04E185FB10EB216550CCAD654AECC59F7_inline (HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2>::ContainsKey(!0) inline bool Dictionary_2_ContainsKey_m874EB6E7AC0D3AEFFC6D42129B3AB4A7A6D1758F (Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086 * __this, String_t* ___key0, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086 *, String_t*, const RuntimeMethod*))Dictionary_2_ContainsKey_mCABABA5D0FA017D2D54BE4FA6256C51518274116_gshared)(__this, ___key0, method); } // System.Void System.Collections.Generic.List`1::.ctor() inline void List_1__ctor_m30C52A4F2828D86CA3FAB0B1B583948F4DA9F1F9 (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * __this, const RuntimeMethod* method) { (( void (*) (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 *, const RuntimeMethod*))List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1::Add(!0) inline void List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * __this, String_t* ___item0, const RuntimeMethod* method) { (( void (*) (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 *, String_t*, const RuntimeMethod*))List_1_Add_mF15250BF947CA27BE9A23C08BAC6DB6F180B0EDD_gshared)(__this, ___item0, method); } // System.Void System.Collections.Generic.Dictionary`2>::Add(!0,!1) inline void Dictionary_2_Add_m699333D050BD0CC3BBB007F96141B89CCFD6C5BE (Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086 * __this, String_t* ___key0, List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * ___value1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086 *, String_t*, List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 *, const RuntimeMethod*))Dictionary_2_Add_m1D9CF8FA99A277EE49BC3002FDEAACDCDB29803B_gshared)(__this, ___key0, ___value1, method); } // System.Int32 System.DateTime::CompareTo(System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DateTime_CompareTo_m2864B0ABAE4B8748D4092D1D16AE56EE0B248F93 (DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * __this, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___value0, const RuntimeMethod* method); // System.Void System.Threading.Monitor::Enter(System.Object,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Enter_mBEB6CC84184B46F26375EC3FC8921D16E48EA4C4 (RuntimeObject * ___obj0, bool* ___lockTaken1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2::TryGetValue(!0,!1&) inline bool Dictionary_2_TryGetValue_m13326007A149F33A86BBFAEA328AE942BBE76783 (Dictionary_2_t470893CE409900ABAC60976F4121AC4F831D4ACD * __this, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___key0, RuntimeObject ** ___value1, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_t470893CE409900ABAC60976F4121AC4F831D4ACD *, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 *, RuntimeObject **, const RuntimeMethod*))Dictionary_2_TryGetValue_mE985A35FC727FA9F519564063C5C5063209ADDA8_gshared)(__this, ___key0, ___value1, method); } // System.Void System.Collections.Generic.Dictionary`2::Add(!0,!1) inline void Dictionary_2_Add_m32B412A16021895D9925276EAABD7621EA7AA46F (Dictionary_2_t470893CE409900ABAC60976F4121AC4F831D4ACD * __this, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t470893CE409900ABAC60976F4121AC4F831D4ACD *, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 *, RuntimeObject *, const RuntimeMethod*))Dictionary_2_Add_m1D9CF8FA99A277EE49BC3002FDEAACDCDB29803B_gshared)(__this, ___key0, ___value1, method); } // System.Void System.Threading.Monitor::Exit(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Exit_mA776B403DA88AC77CDEEF67AB9F0D0E77ABD254A (RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2::ContainsKey(!0) inline bool Dictionary_2_ContainsKey_m9867AD065B5FC2240B62595667FE7A060BE7A446 (Dictionary_2_t470893CE409900ABAC60976F4121AC4F831D4ACD * __this, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___key0, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_t470893CE409900ABAC60976F4121AC4F831D4ACD *, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 *, const RuntimeMethod*))Dictionary_2_ContainsKey_mCABABA5D0FA017D2D54BE4FA6256C51518274116_gshared)(__this, ___key0, method); } // System.Boolean System.Collections.Generic.Dictionary`2::Remove(!0) inline bool Dictionary_2_Remove_mD0EB2DCFE569F49A8274E53F8202942B3D164E09 (Dictionary_2_t470893CE409900ABAC60976F4121AC4F831D4ACD * __this, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___key0, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_t470893CE409900ABAC60976F4121AC4F831D4ACD *, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 *, const RuntimeMethod*))Dictionary_2_Remove_m45DB5340BC5312349874253DD3239546CB025D21_gshared)(__this, ___key0, method); } // System.Void System.Collections.Generic.Dictionary`2::Clear() inline void Dictionary_2_Clear_mB7C7C697435DA03C31AD15DE075F33207DAD1C68 (Dictionary_2_t470893CE409900ABAC60976F4121AC4F831D4ACD * __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t470893CE409900ABAC60976F4121AC4F831D4ACD *, const RuntimeMethod*))Dictionary_2_Clear_m883E91BB19072DD91E8FA3BEDA31D0FA095667EA_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2::.ctor() inline void Dictionary_2__ctor_m4F3AC2011D05A435BE16FEE649D389E3040CABD5 (Dictionary_2_t470893CE409900ABAC60976F4121AC4F831D4ACD * __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t470893CE409900ABAC60976F4121AC4F831D4ACD *, const RuntimeMethod*))Dictionary_2__ctor_m2C8EE5C13636D67F6C451C4935049F534AEC658F_gshared)(__this, method); } // System.Void BestHTTP.Caching.HTTPCacheMaintananceParams::set_DeleteOlder(System.TimeSpan) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPCacheMaintananceParams_set_DeleteOlder_m57A07A4A4A810D582E8F04644A59743B33C55558_inline (HTTPCacheMaintananceParams_t3C1DDABAF1478424BBFF3E0EEFDF7E81843C8142 * __this, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___value0, const RuntimeMethod* method); // System.Void BestHTTP.Caching.HTTPCacheMaintananceParams::set_MaxCacheSize(System.UInt64) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPCacheMaintananceParams_set_MaxCacheSize_mC8F4E26CC801274311B19E85921C07D5F83F3EC6_inline (HTTPCacheMaintananceParams_t3C1DDABAF1478424BBFF3E0EEFDF7E81843C8142 * __this, uint64_t ___value0, const RuntimeMethod* method); // System.String BestHTTP.HTTPManager::GetRootCacheFolder() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* HTTPManager_GetRootCacheFolder_mD87BE71F38F823E87CD6A907F4BE6D6B9B9557FE (const RuntimeMethod* method); // BestHTTP.Logger.ILogger BestHTTP.HTTPManager::get_Logger() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* HTTPManager_get_Logger_mB91589452664F0CFB4B3332E2AB502D742F93B88 (const RuntimeMethod* method); // System.Void BestHTTP.Caching.HTTPCacheService::LoadLibrary() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPCacheService_LoadLibrary_m22285C72BF00A18CCCA458063060736C18507C00 (const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2::.ctor() inline void Dictionary_2__ctor_m9E1C7D76325A8A94F62825816DCC9ECD8D2F3A1C (Dictionary_2_tA951181AD5BB597EA527552FB0018E7527A392E6 * __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_tA951181AD5BB597EA527552FB0018E7527A392E6 *, const RuntimeMethod*))Dictionary_2__ctor_mD19EFEA75894BC3F4C1B3FE93B568155B2D13603_gshared)(__this, method); } // System.Void BestHTTP.Caching.HTTPCacheService::SetupCacheFolder() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPCacheService_SetupCacheFolder_mC57922C228A34BE3026AD57C56C995CBA8F2C31B (const RuntimeMethod* method); // System.String BestHTTP.Caching.HTTPCacheService::get_LibraryPath() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* HTTPCacheService_get_LibraryPath_mFB459E00CBD529054B44938F00873A1432ADEAE8_inline (const RuntimeMethod* method); // System.Void BestHTTP.Caching.HTTPCacheService::set_CacheFolder(System.String) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPCacheService_set_CacheFolder_m1FBD5559884F88D8C4F738A19CAF0A58B011265B_inline (String_t* ___value0, const RuntimeMethod* method); // System.Void BestHTTP.Caching.HTTPCacheService::set_LibraryPath(System.String) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPCacheService_set_LibraryPath_m2722D5DD215C70535A6027496804DF9286F873FE_inline (String_t* ___value0, const RuntimeMethod* method); // System.Collections.Generic.Dictionary`2 BestHTTP.Caching.HTTPCacheService::get_Library() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Dictionary_2_tF5B4A5A925F35194AB6289544146EEDFF54229AC * HTTPCacheService_get_Library_m0D6A9D6FA06DC84D5AF016C1459A9AA5D5FFD4A6 (const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2::ContainsKey(!0) inline bool Dictionary_2_ContainsKey_m9439B4289F9285C2474C00186B3AF492A70019D2 (Dictionary_2_tA951181AD5BB597EA527552FB0018E7527A392E6 * __this, uint64_t ___key0, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_tA951181AD5BB597EA527552FB0018E7527A392E6 *, uint64_t, const RuntimeMethod*))Dictionary_2_ContainsKey_m0549C7020066854E28C62D0DDDE00ADCD3AB2AF4_gshared)(__this, ___key0, method); } // System.Boolean System.Collections.Generic.Dictionary`2::ContainsKey(!0) inline bool Dictionary_2_ContainsKey_m3F59458E50606AA5B4E5F1F92A1C9A25EA61AF59 (Dictionary_2_tF5B4A5A925F35194AB6289544146EEDFF54229AC * __this, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___key0, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_tF5B4A5A925F35194AB6289544146EEDFF54229AC *, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 *, const RuntimeMethod*))Dictionary_2_ContainsKey_mCABABA5D0FA017D2D54BE4FA6256C51518274116_gshared)(__this, ___key0, method); } // System.Object BestHTTP.Caching.HTTPCacheFileLock::Acquire(System.Uri) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * HTTPCacheFileLock_Acquire_mFE995CF7461EC3A0E106807E42B619D2D967E6DB (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri0, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2::TryGetValue(!0,!1&) inline bool Dictionary_2_TryGetValue_m896FD21EAB6BB456C695D713AFFC171F27AF88A9 (Dictionary_2_tF5B4A5A925F35194AB6289544146EEDFF54229AC * __this, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___key0, HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA ** ___value1, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_tF5B4A5A925F35194AB6289544146EEDFF54229AC *, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 *, HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA **, const RuntimeMethod*))Dictionary_2_TryGetValue_mE985A35FC727FA9F519564063C5C5063209ADDA8_gshared)(__this, ___key0, ___value1, method); } // System.Boolean System.Collections.Generic.Dictionary`2::Remove(!0) inline bool Dictionary_2_Remove_m48BA884F96EE5E0F2B9409D760A44C965A2D1821 (Dictionary_2_tF5B4A5A925F35194AB6289544146EEDFF54229AC * __this, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___key0, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_tF5B4A5A925F35194AB6289544146EEDFF54229AC *, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 *, const RuntimeMethod*))Dictionary_2_Remove_m45DB5340BC5312349874253DD3239546CB025D21_gshared)(__this, ___key0, method); } // System.Boolean System.Collections.Generic.Dictionary`2::Remove(!0) inline bool Dictionary_2_Remove_mA3BB03F883AD372BD401E6906D155ADA09E59A9C (Dictionary_2_tA951181AD5BB597EA527552FB0018E7527A392E6 * __this, uint64_t ___key0, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_tA951181AD5BB597EA527552FB0018E7527A392E6 *, uint64_t, const RuntimeMethod*))Dictionary_2_Remove_mC42208766336605241CB3D634B70366590838C53_gshared)(__this, ___key0, method); } // System.Uri BestHTTP.HTTPRequest::get_CurrentUri() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * HTTPRequest_get_CurrentUri_mF08CB7FC8F25CCCC9128FFE014B19E17B74D8264 (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, const RuntimeMethod* method); // System.Boolean BestHTTP.Caching.HTTPCacheFileInfo::WillExpireInTheFuture() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HTTPCacheFileInfo_WillExpireInTheFuture_m55D9F9807238AEC85E75FB8510D56C8FB4901993 (HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * __this, const RuntimeMethod* method); // System.Boolean BestHTTP.HTTPRequest::RemoveHeader(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HTTPRequest_RemoveHeader_mF822C9F433831FD31D95BDAABE255CCF4D5DB45C (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, String_t* ___name0, const RuntimeMethod* method); // System.Void BestHTTP.Caching.HTTPCacheFileInfo::SetUpRevalidationHeaders(BestHTTP.HTTPRequest) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPCacheFileInfo_SetUpRevalidationHeaders_mB914DB16ACC0AFD083D0385355D64131447A9F0B (HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * __this, HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * ___request0, const RuntimeMethod* method); // BestHTTP.HTTPResponse BestHTTP.Caching.HTTPCacheFileInfo::ReadResponseTo(BestHTTP.HTTPRequest) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * HTTPCacheFileInfo_ReadResponseTo_m047C35901B46021AE8B680F398161B56CF2BE1DB (HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * __this, HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * ___request0, const RuntimeMethod* method); // System.Collections.Generic.List`1 BestHTTP.HTTPResponse::GetHeaderValues(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * HTTPResponse_GetHeaderValues_m67493FE1D1261B7F5CCBEC2C6036A435B8CFE14D (HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * __this, String_t* ___name0, const RuntimeMethod* method); // System.Void System.Predicate`1::.ctor(System.Object,System.IntPtr) inline void Predicate_1__ctor_m6B6D8E35C0E83BBC784E881CCFA837ED78F48F14 (Predicate_1_t782ED4F640A61B7ACA1DD787F7C4993C746207B3 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Predicate_1_t782ED4F640A61B7ACA1DD787F7C4993C746207B3 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Predicate_1__ctor_m3F41E32C976C3C48B3FC63FBFD3FBBC5B5F23EDD_gshared)(__this, ___object0, ___method1, method); } // System.Boolean System.Collections.Generic.List`1::Exists(System.Predicate`1) inline bool List_1_Exists_mBCB8DC8D0EB73889417420C647EC3D5353BA8AB3 (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * __this, Predicate_1_t782ED4F640A61B7ACA1DD787F7C4993C746207B3 * ___match0, const RuntimeMethod* method) { return (( bool (*) (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 *, Predicate_1_t782ED4F640A61B7ACA1DD787F7C4993C746207B3 *, const RuntimeMethod*))List_1_Exists_m154582BAA63606D08C742CCBD13A471B32229CFE_gshared)(__this, ___match0, method); } // System.Void BestHTTP.Caching.HTTPCacheFileInfo::.ctor(System.Uri) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPCacheFileInfo__ctor_m5E655DDEF88C2B864A890D85C56B0EBD7A5E584D (HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * __this, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2::Add(!0,!1) inline void Dictionary_2_Add_mD0CB82738006021ED5361AEF786CE9097604F19B (Dictionary_2_tF5B4A5A925F35194AB6289544146EEDFF54229AC * __this, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___key0, HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * ___value1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_tF5B4A5A925F35194AB6289544146EEDFF54229AC *, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 *, HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA *, const RuntimeMethod*))Dictionary_2_Add_m1D9CF8FA99A277EE49BC3002FDEAACDCDB29803B_gshared)(__this, ___key0, ___value1, method); } // System.Void System.Collections.Generic.Dictionary`2::Add(!0,!1) inline void Dictionary_2_Add_m8F783427B54197FCD9BFB0087CD53C03EA02FD9E (Dictionary_2_tA951181AD5BB597EA527552FB0018E7527A392E6 * __this, uint64_t ___key0, HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * ___value1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_tA951181AD5BB597EA527552FB0018E7527A392E6 *, uint64_t, HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA *, const RuntimeMethod*))Dictionary_2_Add_m96DF8FAD9D427E20D372D86A11DEC1BDC4E2FC19_gshared)(__this, ___key0, ___value1, method); } // System.Void BestHTTP.Caching.HTTPCacheFileInfo::Store(BestHTTP.HTTPResponse) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPCacheFileInfo_Store_mC9BF6F6AB568537BF96B5863DF23D3BE840CD075 (HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * __this, HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * ___response0, const RuntimeMethod* method); // System.Boolean BestHTTP.Caching.HTTPCacheService::DeleteEntity(System.Uri,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HTTPCacheService_DeleteEntity_m772DCA747FA87E7289BF42582D87C2ED4B391045 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri0, bool ___removeFromLibrary1, const RuntimeMethod* method); // System.IO.Stream BestHTTP.Caching.HTTPCacheFileInfo::GetSaveStream(BestHTTP.HTTPResponse) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * HTTPCacheFileInfo_GetSaveStream_m6AE500BDBB343A7AD69C162E3AE78FB6D144BC42 (HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * __this, HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * ___response0, const RuntimeMethod* method); // System.Void System.Threading.WaitCallback::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WaitCallback__ctor_m50EFFE5096DF1DE733EA9895CEEC8EB6F142D5D5 (WaitCallback_t82C85517E973DCC6390AFB0BC3C2276F3328A319 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Boolean System.Threading.ThreadPool::QueueUserWorkItem(System.Threading.WaitCallback) IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR bool ThreadPool_QueueUserWorkItem_m76F5D0CD8F37E5D736F781049045AD9173E9A323 (WaitCallback_t82C85517E973DCC6390AFB0BC3C2276F3328A319 * ___callBack0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2::Clear() inline void Dictionary_2_Clear_m3CA969647D37F8EBC80E1FF3E8E7DAA70459FA42 (Dictionary_2_tA951181AD5BB597EA527552FB0018E7527A392E6 * __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_tA951181AD5BB597EA527552FB0018E7527A392E6 *, const RuntimeMethod*))Dictionary_2_Clear_m2927F42456D0508696958F73413B3C885983326F_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2::Clear() inline void Dictionary_2_Clear_m0558947A29404A56FC8732C9739DB9D97DED351B (Dictionary_2_tF5B4A5A925F35194AB6289544146EEDFF54229AC * __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_tF5B4A5A925F35194AB6289544146EEDFF54229AC *, const RuntimeMethod*))Dictionary_2_Clear_m883E91BB19072DD91E8FA3BEDA31D0FA095667EA_gshared)(__this, method); } // System.Void BestHTTP.Caching.HTTPCacheService::SaveLibrary() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPCacheService_SaveLibrary_m0AEDEBFC66DA9572E91F8BC8537B980D5A88EECF (const RuntimeMethod* method); // System.Void BestHTTP.Caching.HTTPCacheService/<>c__DisplayClass35_0::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass35_0__ctor_mC426DB51EE98A48DD31B758A30E1A4BE5B3590DF (U3CU3Ec__DisplayClass35_0_tE3A988AF6E5AF47AD8FE5A1AB5407A8B1CFFFC51 * __this, const RuntimeMethod* method); // System.Void System.ArgumentNullException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97 (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * __this, String_t* ___paramName0, const RuntimeMethod* method); // System.Void BestHTTP.Caching.HTTPCacheService::CheckSetup() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPCacheService_CheckSetup_m56988E47F1464B0539FF0F6A80B7CA992C8777C1 (const RuntimeMethod* method); // System.Int32 System.Collections.Generic.Dictionary`2::get_Count() inline int32_t Dictionary_2_get_Count_mA54F0C33E27B7C9F11741297888910B0FC090E25 (Dictionary_2_tF5B4A5A925F35194AB6289544146EEDFF54229AC * __this, const RuntimeMethod* method) { return (( int32_t (*) (Dictionary_2_tF5B4A5A925F35194AB6289544146EEDFF54229AC *, const RuntimeMethod*))Dictionary_2_get_Count_m1B599EE742A00E8D399B43E225AD4C6571FBC8DA_gshared)(__this, method); } // System.Collections.Generic.Dictionary`2/Enumerator System.Collections.Generic.Dictionary`2::GetEnumerator() inline Enumerator_t38BE2B834827855AC34872152506CFEEF8E92C28 Dictionary_2_GetEnumerator_m97BBE95772CC2AD6D101ACCE613DF87A6000138C (Dictionary_2_tF5B4A5A925F35194AB6289544146EEDFF54229AC * __this, const RuntimeMethod* method) { return (( Enumerator_t38BE2B834827855AC34872152506CFEEF8E92C28 (*) (Dictionary_2_tF5B4A5A925F35194AB6289544146EEDFF54229AC *, const RuntimeMethod*))Dictionary_2_GetEnumerator_mD80BA563C32BF7C1EE95C9FC1BE3B423716CCE68_gshared)(__this, method); } // System.Collections.Generic.KeyValuePair`2 System.Collections.Generic.Dictionary`2/Enumerator::get_Current() inline KeyValuePair_2_tA61128FB2E93C19D2A93737C07B7B96AE2F20634 Enumerator_get_Current_mEDC92D5DB9288950853C1011506D2A07DF370A9B_inline (Enumerator_t38BE2B834827855AC34872152506CFEEF8E92C28 * __this, const RuntimeMethod* method) { return (( KeyValuePair_2_tA61128FB2E93C19D2A93737C07B7B96AE2F20634 (*) (Enumerator_t38BE2B834827855AC34872152506CFEEF8E92C28 *, const RuntimeMethod*))Enumerator_get_Current_m39BB9CD07FEC0DBEDFE938630364A23C9A87FC3F_gshared_inline)(__this, method); } // !1 System.Collections.Generic.KeyValuePair`2::get_Value() inline HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * KeyValuePair_2_get_Value_m5676458050DF65C737F3AAA71CF4A9D3A501A246_inline (KeyValuePair_2_tA61128FB2E93C19D2A93737C07B7B96AE2F20634 * __this, const RuntimeMethod* method) { return (( HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * (*) (KeyValuePair_2_tA61128FB2E93C19D2A93737C07B7B96AE2F20634 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m8425596BB4249956819960EC76E618357F573E76_gshared_inline)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator::MoveNext() inline bool Enumerator_MoveNext_m21AC06A8444695DC5021B1592115B9010824AD51 (Enumerator_t38BE2B834827855AC34872152506CFEEF8E92C28 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t38BE2B834827855AC34872152506CFEEF8E92C28 *, const RuntimeMethod*))Enumerator_MoveNext_mCAD84084129516BD41DE5CC3E1FABA5A8DF836D0_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator::Dispose() inline void Enumerator_Dispose_m1135FF0F4A98F6B0E8F1FF4BA70785D00B0EEECA (Enumerator_t38BE2B834827855AC34872152506CFEEF8E92C28 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t38BE2B834827855AC34872152506CFEEF8E92C28 *, const RuntimeMethod*))Enumerator_Dispose_m85CA135BAB22C9F0C87C84AB90FF6740D1859279_gshared)(__this, method); } // System.Void BestHTTP.Caching.UriComparer::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UriComparer__ctor_mBD5D0F7BD72AD66EB661799925AA0CCA79A18F1A (UriComparer_t06192E3DDBFFAEB5F378C881695DF101DDD71C49 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2::.ctor(System.Collections.Generic.IEqualityComparer`1) inline void Dictionary_2__ctor_m2CAA647A798A014A467A05CC98A2D70CA9F022A4 (Dictionary_2_tF5B4A5A925F35194AB6289544146EEDFF54229AC * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) { (( void (*) (Dictionary_2_tF5B4A5A925F35194AB6289544146EEDFF54229AC *, RuntimeObject*, const RuntimeMethod*))Dictionary_2__ctor_m6F00629E0FA67620F4D49A27FEA7BA5C3333FBC1_gshared)(__this, ___comparer0, method); } // System.Void BestHTTP.Caching.HTTPCacheService::DeleteUnusedFiles() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPCacheService_DeleteUnusedFiles_m9F7D20B0962BD07F627324E82F8C92976834A6A7 (const RuntimeMethod* method); // System.Void System.IO.BinaryReader::.ctor(System.IO.Stream) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryReader__ctor_m8D2F966D44EF5BD30D54D94653A831EFDB9C6A60 (BinaryReader_t4F45C15FF44F8E1C105704A21FFBE58D60015128 * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___input0, const RuntimeMethod* method); // System.Void System.Uri::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri__ctor_m7724F43B1525624FFF97A774B6B909B075714D5C (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, String_t* ___uriString0, const RuntimeMethod* method); // System.Void BestHTTP.Caching.HTTPCacheFileInfo::.ctor(System.Uri,System.IO.BinaryReader,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPCacheFileInfo__ctor_m8F347B18BBFB7B7AE2DC9CF27EAEFE170C214222 (HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * __this, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri0, BinaryReader_t4F45C15FF44F8E1C105704A21FFBE58D60015128 * ___reader1, int32_t ___version2, const RuntimeMethod* method); // System.Void BestHTTP.Caching.HTTPCacheService::BeginClear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPCacheService_BeginClear_m5CD2483DDD7ED7E1BB0A92E038F7CF592367CAD6 (const RuntimeMethod* method); // System.Void System.IO.BinaryWriter::.ctor(System.IO.Stream) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryWriter__ctor_mC6F89939E04734FBEEA375D7E0FF9C042E4AB71A (BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___output0, const RuntimeMethod* method); // !0 System.Collections.Generic.KeyValuePair`2::get_Key() inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * KeyValuePair_2_get_Key_m62FE9F5F821F062C8DCBC73D9CAFB704516FF5BE_inline (KeyValuePair_2_tA61128FB2E93C19D2A93737C07B7B96AE2F20634 * __this, const RuntimeMethod* method) { return (( Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * (*) (KeyValuePair_2_tA61128FB2E93C19D2A93737C07B7B96AE2F20634 *, const RuntimeMethod*))KeyValuePair_2_get_Key_mEFB776105F87A4EAB1CAC3F0C96C4D0B79F3F03D_gshared_inline)(__this, method); } // System.Void BestHTTP.Caching.HTTPCacheFileInfo::SaveTo(System.IO.BinaryWriter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPCacheFileInfo_SaveTo_mF365B00915DF18255D98D6C792F545F5A6922F26 (HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * __this, BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * ___writer0, const RuntimeMethod* method); // System.String System.IO.Path::GetFileName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Path_GetFileName_m4CCFEEE8CA42DE16FCAF05D765EFB88E7086744A (String_t* ___path0, const RuntimeMethod* method); // System.Boolean System.UInt64::TryParse(System.String,System.Globalization.NumberStyles,System.IFormatProvider,System.UInt64&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UInt64_TryParse_m1D56C1385B6F4855FD1A893FEEE12C0796695621 (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, uint64_t* ___result3, const RuntimeMethod* method); // System.Boolean BestHTTP.ConnectionBase::get_IsRemovable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConnectionBase_get_IsRemovable_mC38C18665B8A4FF09E5EBD47851BBA5772569CB4 (ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57 * __this, const RuntimeMethod* method); // System.Boolean BestHTTP.ConnectionBase::get_IsFree() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConnectionBase_get_IsFree_mFFAF36443A7132BE6310CABBFE46CA6111CA574D (ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57 * __this, const RuntimeMethod* method); // System.TimeSpan BestHTTP.KeepAliveHeader::get_TimeOut() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 KeepAliveHeader_get_TimeOut_m619BA3781C9024C74711BB27E3F5650CAAE71C3D_inline (KeepAliveHeader_t93C1CC9FD7D51F432D9A50741F9BC0EF59166924 * __this, const RuntimeMethod* method); // System.Boolean System.TimeSpan::op_GreaterThanOrEqual(System.TimeSpan,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeSpan_op_GreaterThanOrEqual_mD46D3E561D8EA7384F3857D9F3BDE2D1390F1944 (TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___t10, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___t21, const RuntimeMethod* method); // System.Void BestHTTP.ConnectionBase::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionBase__ctor_m9A79113A8DBCEEC7F899BF26FCE9B1F684C85F39 (ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57 * __this, String_t* ___serverAddress0, const RuntimeMethod* method); // System.Boolean BestHTTP.HTTPConnection::TryLoadAllFromCache() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HTTPConnection_TryLoadAllFromCache_mC07E5C4381D04E6F021228263DAD522571BDD044 (HTTPConnection_t51D075C863581CF6C0E77BBABD92B87EA1F23C9A * __this, const RuntimeMethod* method); // System.Boolean BestHTTP.PlatformSupport.TcpClient.General.TcpClient::IsConnected() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TcpClient_IsConnected_m3B40F1386878EFBF5F4CFC6AD380CBC741B99408 (TcpClient_t31BAC3FC66E2985035A039820F08B7F64DC59075 * __this, const RuntimeMethod* method); // System.Void BestHTTP.HTTPConnection::Close() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPConnection_Close_m59F51ECFA8C7AD8B4FDB6EEDCAE43AF4A4091EF1 (HTTPConnection_t51D075C863581CF6C0E77BBABD92B87EA1F23C9A * __this, const RuntimeMethod* method); // System.Void System.Threading.Thread::Sleep(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_Sleep_m8E61FC80BD38981CB18CA549909710790283DDCC (int32_t ___millisecondsTimeout0, const RuntimeMethod* method); // BestHTTP.HTTPRequest BestHTTP.ConnectionBase::get_CurrentRequest() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * ConnectionBase_get_CurrentRequest_mD55648C7AC31E5F56D372D9B66E7B1822A535997_inline (ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57 * __this, const RuntimeMethod* method); // System.Void BestHTTP.ConnectionBase::set_LastProcessedUri(System.Uri) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ConnectionBase_set_LastProcessedUri_m31CA7CCFD19B189EAFF01551598DFF15E4C7B977_inline (ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57 * __this, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___value0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPConnection::Connect() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPConnection_Connect_mDB32C95CA91A3E579F268FE032BF09F899198F21 (HTTPConnection_t51D075C863581CF6C0E77BBABD92B87EA1F23C9A * __this, const RuntimeMethod* method); // BestHTTP.HTTPConnectionStates BestHTTP.ConnectionBase::get_State() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ConnectionBase_get_State_m622F93DB6DF6845C5025622F383FB3B59A7FB164_inline (ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57 * __this, const RuntimeMethod* method); // System.Void System.Exception::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_m8ECDE8ACA7F2E0EF1144BD1200FB5DB2870B5F11 (Exception_t * __this, String_t* ___message0, const RuntimeMethod* method); // System.Boolean BestHTTP.HTTPRequest::get_DisableCache() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool HTTPRequest_get_DisableCache_mA6C8ABC37868F1685AEB56B29B5FCEB2912E41DE_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, const RuntimeMethod* method); // System.Void BestHTTP.Caching.HTTPCacheService::SetHeaders(BestHTTP.HTTPRequest) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPCacheService_SetHeaders_m383D52339E796A9167DC0B115CE9E27848405C11 (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * ___request0, const RuntimeMethod* method); // System.Boolean BestHTTP.HTTPRequest::get_TryToMinimizeTCPLatency() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool HTTPRequest_get_TryToMinimizeTCPLatency_m45ECE62DFCF4962A87DE03E5013F6CEECC8FAEAB_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, const RuntimeMethod* method); // System.Void BestHTTP.PlatformSupport.TcpClient.General.TcpClient::set_NoDelay(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TcpClient_set_NoDelay_m24B30ED846F17BBC73CB3E98BBF742ABBD94D01B (TcpClient_t31BAC3FC66E2985035A039820F08B7F64DC59075 * __this, bool ___value0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::SendOutTo(System.IO.Stream) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPRequest_SendOutTo_m233D33CEE624D9354BB4ADF8B990043425A6E35B (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___stream0, const RuntimeMethod* method); // System.Boolean BestHTTP.HTTPRequest::get_DisableRetry() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool HTTPRequest_get_DisableRetry_m8AB9A075FAC215D7E294CE9740F25F7B9E61CF44_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, const RuntimeMethod* method); // System.Boolean BestHTTP.HTTPConnection::Receive() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HTTPConnection_Receive_m62590EEAA62B2A5C2753204CF4FFBF5F649AAC4D (HTTPConnection_t51D075C863581CF6C0E77BBABD92B87EA1F23C9A * __this, const RuntimeMethod* method); // BestHTTP.HTTPResponse BestHTTP.HTTPRequest::get_Response() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * HTTPRequest_get_Response_m1927E850F0A54B20D30CD31B0973EAB42B12D978_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, const RuntimeMethod* method); // System.Boolean BestHTTP.HTTPRequest::get_IsCookiesEnabled() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool HTTPRequest_get_IsCookiesEnabled_mC68325CF643CA952E082FF547B4470B7475701E4_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, const RuntimeMethod* method); // System.Void BestHTTP.Cookies.CookieJar::Set(BestHTTP.HTTPResponse) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CookieJar_Set_m97B7C4A5EE7256C54EBEB16B2B29986DFE11FCBA (HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * ___response0, const RuntimeMethod* method); // System.Void BestHTTP.Cookies.CookieJar::Persist() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CookieJar_Persist_mF9211882ADFB6CA031241D30AB902AF30AEE4450 (const RuntimeMethod* method); // System.String BestHTTP.Authentication.DigestStore::FindBest(System.Collections.Generic.List`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DigestStore_FindBest_m6F579E496398DF988B20C2CC36C521079F6C4F64 (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * ___authHeaders0, const RuntimeMethod* method); // BestHTTP.Authentication.Digest BestHTTP.Authentication.DigestStore::GetOrCreate(System.Uri) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Digest_tECBB0FFA62FFE1D74BB3E5FD1C60635385FCE734 * DigestStore_GetOrCreate_m41D0D740ECB1B54136E4612487D126D77396151E (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri0, const RuntimeMethod* method); // System.Void BestHTTP.Authentication.Digest::ParseChallange(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Digest_ParseChallange_m79BC4E83986DE430CF0A0A4B2C65B3536B3734CF (Digest_tECBB0FFA62FFE1D74BB3E5FD1C60635385FCE734 * __this, String_t* ___header0, const RuntimeMethod* method); // BestHTTP.Authentication.Credentials BestHTTP.HTTPRequest::get_Credentials() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Credentials_tD6C60AC7DFFD64212481FBCB4AF02846196F5CE8 * HTTPRequest_get_Credentials_m026B90160D7EB32D9B33E8FA2D7B2B3235B1F8C3_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, const RuntimeMethod* method); // System.Boolean BestHTTP.Authentication.Digest::IsUriProtected(System.Uri) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Digest_IsUriProtected_mBCCB5A590A5E72CA235089512CA05A84244A75C9 (Digest_tECBB0FFA62FFE1D74BB3E5FD1C60635385FCE734 * __this, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri0, const RuntimeMethod* method); // System.Boolean BestHTTP.HTTPRequest::HasHeader(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HTTPRequest_HasHeader_m7AA881D2B1D28F6FB67E5B9CEB9F97A79E996E02 (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, String_t* ___name0, const RuntimeMethod* method); // System.Boolean BestHTTP.Authentication.Digest::get_Stale() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Digest_get_Stale_mBD92EF21A75E1190F76126AA9B8716944ED8C278_inline (Digest_tECBB0FFA62FFE1D74BB3E5FD1C60635385FCE734 * __this, const RuntimeMethod* method); // System.Boolean BestHTTP.HTTPRequest::get_HasProxy() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HTTPRequest_get_HasProxy_m4D912B3823B3BFBF7837A8180D25073F564A2599 (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, const RuntimeMethod* method); // BestHTTP.Proxy BestHTTP.HTTPRequest::get_Proxy() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Proxy_t84F0DDAE5A37016479C7094FFB8F78835B8BD4F6 * HTTPRequest_get_Proxy_m8B6C0E880DA536B2BE6DAE4DF454BE8FF49343F0_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, const RuntimeMethod* method); // System.Uri BestHTTP.Proxy::get_Address() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * Proxy_get_Address_mFEAC54C53753024C5E55F5F0200AF3CEDA252DB7_inline (Proxy_t84F0DDAE5A37016479C7094FFB8F78835B8BD4F6 * __this, const RuntimeMethod* method); // BestHTTP.Authentication.Credentials BestHTTP.Proxy::get_Credentials() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Credentials_tD6C60AC7DFFD64212481FBCB4AF02846196F5CE8 * Proxy_get_Credentials_mE1D30979B19EEACABD966C702E50077AC0E4E8C8_inline (Proxy_t84F0DDAE5A37016479C7094FFB8F78835B8BD4F6 * __this, const RuntimeMethod* method); // System.Int32 BestHTTP.HTTPRequest::get_RedirectCount() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t HTTPRequest_get_RedirectCount_mFCADDB48F902FEF4305D44D0EAFBA98C53A0F974_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, const RuntimeMethod* method); // System.Int32 BestHTTP.HTTPRequest::get_MaxRedirects() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t HTTPRequest_get_MaxRedirects_m52F702E7A5DFAD321B173178CF70186D58CD7DEC_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::set_RedirectCount(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPRequest_set_RedirectCount_mB24C3A90F306704308DA628E7E8391D01CF34044_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, int32_t ___value0, const RuntimeMethod* method); // System.Uri BestHTTP.HTTPConnection::GetRedirectUri(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * HTTPConnection_GetRedirectUri_mD28666D0E56B2D848D7CFF8AA431F7B8065D9189 (HTTPConnection_t51D075C863581CF6C0E77BBABD92B87EA1F23C9A * __this, String_t* ___location0, const RuntimeMethod* method); // System.String System.String::Format(System.String,System.Object,System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m039737CCD992C5BFC8D16DFD681F5E8786E87FA6 (String_t* ___format0, RuntimeObject * ___arg01, RuntimeObject * ___arg12, RuntimeObject * ___arg23, const RuntimeMethod* method); // System.Boolean BestHTTP.HTTPRequest::CallOnBeforeRedirection(System.Uri) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HTTPRequest_CallOnBeforeRedirection_mACB8171E72E172D2DE31C94A36D84BFE18A210B2 (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___redirectUri0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::set_RedirectUri(System.Uri) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPRequest_set_RedirectUri_m8159F9AA39300188754BB030494BA6BC59BA1661_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___value0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::set_Response(BestHTTP.HTTPResponse) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPRequest_set_Response_mB4466BAA1F8D09D4828DD49FB3DBEC2E514367E3_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * ___value0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::set_IsRedirected(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPRequest_set_IsRedirected_m8E027099221F58D730CC40A4A00701ABE561F3E9_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, bool ___value0, const RuntimeMethod* method); // System.Void System.MissingFieldException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MissingFieldException__ctor_m0F4E3D3E9E33838D3EAF81FD61CF5227AB3BBF61 (MissingFieldException_t608CFBD864BEF9A5608F5E4EE1AFF009769E835A * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPConnection::TryStoreInCache() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPConnection_TryStoreInCache_mEB2111CBE8EB5717437A8FCB77FB9119D11800EA (HTTPConnection_t51D075C863581CF6C0E77BBABD92B87EA1F23C9A * __this, const RuntimeMethod* method); // System.Boolean BestHTTP.HTTPResponse::get_IsClosedManually() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool HTTPResponse_get_IsClosedManually_m7EE2B9E24661D05C8861E2002E01FE1AAFA78257_inline (HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * __this, const RuntimeMethod* method); // System.Boolean BestHTTP.HTTPResponse::HasHeaderWithValue(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HTTPResponse_HasHeaderWithValue_m4032ECF7991F2D452311EF1E46397555913AB914 (HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * __this, String_t* ___headerName0, String_t* ___value1, const RuntimeMethod* method); // System.Boolean BestHTTP.HTTPRequest::get_IsKeepAlive() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool HTTPRequest_get_IsKeepAlive_m728F8895E8128A21E72D2EAF2169DA94F65E37DF_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, const RuntimeMethod* method); // System.Void BestHTTP.KeepAliveHeader::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeepAliveHeader__ctor_m139FE3F1B1A691E0AB049E3CD5751AD830054D33 (KeepAliveHeader_t93C1CC9FD7D51F432D9A50741F9BC0EF59166924 * __this, const RuntimeMethod* method); // System.Void BestHTTP.KeepAliveHeader::Parse(System.Collections.Generic.List`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeepAliveHeader_Parse_mE53742A03A7153483CEDA880B89A36D3F53E8EE2 (KeepAliveHeader_t93C1CC9FD7D51F432D9A50741F9BC0EF59166924 * __this, List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * ___headerValues0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::set_Exception(System.Exception) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPRequest_set_Exception_mA64B041648A30DDA995B04F2137B0A7B2A93EC00_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, Exception_t * ___value0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::set_State(BestHTTP.HTTPRequestStates) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPRequest_set_State_m8B42AABAE06683325CA663653FEB8692EC78B4DA_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, int32_t ___value0, const RuntimeMethod* method); // System.Boolean BestHTTP.HTTPResponse::get_IsUpgraded() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool HTTPResponse_get_IsUpgraded_m741260E1BB78F03FC9A3446C2FF692698B2629E3_inline (HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * __this, const RuntimeMethod* method); // System.Void BestHTTP.ConnectionBase::set_State(BestHTTP.HTTPConnectionStates) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ConnectionBase_set_State_m5B221CF3A4563ABCB163FE5B1EC9A4FFA2D745A6_inline (ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57 * __this, int32_t ___value0, const RuntimeMethod* method); // BestHTTP.HTTPRequestStates BestHTTP.HTTPRequest::get_State() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t HTTPRequest_get_State_mA2343B8DDC11F4489B724FDC12DD6671C55DA82A_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, const RuntimeMethod* method); // System.Void BestHTTP.ConnectionBase::RecycleNow() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionBase_RecycleNow_m4D8BA27B972C6244F840916E7183D6A33E1BACCA (ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57 * __this, const RuntimeMethod* method); // System.Void BestHTTP.PlatformSupport.TcpClient.General.TcpClient::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TcpClient__ctor_mE4339E9129A2159B5AF0985D78A42160D740C1E1 (TcpClient_t31BAC3FC66E2985035A039820F08B7F64DC59075 * __this, const RuntimeMethod* method); // System.Boolean BestHTTP.PlatformSupport.TcpClient.General.TcpClient::get_Connected() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TcpClient_get_Connected_mB496FE76E59DD18D4832F4A74AC4F2D16DFFD734 (TcpClient_t31BAC3FC66E2985035A039820F08B7F64DC59075 * __this, const RuntimeMethod* method); // System.TimeSpan BestHTTP.HTTPRequest::get_ConnectTimeout() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 HTTPRequest_get_ConnectTimeout_m72AF1245E0F8ECF797127E04874552FB05750B51_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, const RuntimeMethod* method); // System.Void BestHTTP.PlatformSupport.TcpClient.General.TcpClient::set_ConnectTimeout(System.TimeSpan) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TcpClient_set_ConnectTimeout_m41F287128EA5EA39017FA0F9289000886067DE7C_inline (TcpClient_t31BAC3FC66E2985035A039820F08B7F64DC59075 * __this, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___value0, const RuntimeMethod* method); // System.String System.Uri::get_Host() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_Host_m05E1D82C4E6B14A2369AEDED218F9089DE336E64 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method); // System.Int32 System.Uri::get_Port() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Uri_get_Port_m23A08BF55EC1DC7421B99E6E77544DDF5900099C (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method); // System.Void BestHTTP.PlatformSupport.TcpClient.General.TcpClient::set_SendBufferSize(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TcpClient_set_SendBufferSize_m9BF8FF71490464C51C8530E4232B64976A3008E7 (TcpClient_t31BAC3FC66E2985035A039820F08B7F64DC59075 * __this, int32_t ___value0, const RuntimeMethod* method); // System.Void BestHTTP.PlatformSupport.TcpClient.General.TcpClient::set_ReceiveBufferSize(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TcpClient_set_ReceiveBufferSize_m71776AA46FF5BBCEE3508BA346BD9D1D1B36CAA6 (TcpClient_t31BAC3FC66E2985035A039820F08B7F64DC59075 * __this, int32_t ___value0, const RuntimeMethod* method); // System.Int32 BestHTTP.PlatformSupport.TcpClient.General.TcpClient::get_SendBufferSize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TcpClient_get_SendBufferSize_mA1E35C38EB10537162B3E1EABDCADA5E4655F1FC (TcpClient_t31BAC3FC66E2985035A039820F08B7F64DC59075 * __this, const RuntimeMethod* method); // System.Int32 BestHTTP.PlatformSupport.TcpClient.General.TcpClient::get_ReceiveBufferSize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TcpClient_get_ReceiveBufferSize_mF46CF6E3F0222B0DFEDEC5E0C3F07FAF4A46BC00 (TcpClient_t31BAC3FC66E2985035A039820F08B7F64DC59075 * __this, const RuntimeMethod* method); // System.Net.Sockets.Socket BestHTTP.PlatformSupport.TcpClient.General.TcpClient::get_Client() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09 * TcpClient_get_Client_mF042D03BD323C5D43FBF3FECDE90DF606B68C854_inline (TcpClient_t31BAC3FC66E2985035A039820F08B7F64DC59075 * __this, const RuntimeMethod* method); // System.Boolean System.Net.Sockets.Socket::get_Blocking() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Socket_get_Blocking_m808720CD768833CF2EB6F7F8AA462115AA3A1F8B_inline (Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09 * __this, const RuntimeMethod* method); // System.String System.Boolean::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Boolean_ToString_m59BB8456DD05A874BBD756E57EA8AD983287015C (bool* __this, const RuntimeMethod* method); // System.String System.String::Format(System.String,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_mCED6767EA5FEE6F15ABCD5B4F9150D1284C2795B (String_t* ___format0, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___args1, const RuntimeMethod* method); // System.Void BestHTTP.PlatformSupport.TcpClient.General.TcpClient::Connect(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TcpClient_Connect_m4ABC3FC07D64BB549912D577B611A34398E1B7FE (TcpClient_t31BAC3FC66E2985035A039820F08B7F64DC59075 * __this, String_t* ___hostname0, int32_t ___port1, 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_m37A5BF26F8F8F1892D60D727303B23FB604FEE78 (String_t* ___str00, String_t* ___str11, String_t* ___str22, String_t* ___str33, const RuntimeMethod* method); // System.Void BestHTTP.ConnectionBase::set_StartTime(System.DateTime) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ConnectionBase_set_StartTime_mB0C4A13B520CD90170B4209CB11BDD4894137844_inline (ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57 * __this, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___value0, const RuntimeMethod* method); // System.Boolean BestHTTP.HTTPProtocolFactory::IsSecureProtocol(System.Uri) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HTTPProtocolFactory_IsSecureProtocol_mEBD60F3BC1AED65EFA64D19AD491CC186FA0FC0F (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri0, const RuntimeMethod* method); // System.IO.Stream BestHTTP.PlatformSupport.TcpClient.General.TcpClient::GetStream() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * TcpClient_GetStream_m18EA98607E68C5B69FA1E97D5AD6AC4C9B50414D (TcpClient_t31BAC3FC66E2985035A039820F08B7F64DC59075 * __this, const RuntimeMethod* method); // System.Boolean BestHTTP.HTTPRequest::get_UseAlternateSSL() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool HTTPRequest_get_UseAlternateSSL_m085044A335B11E4DE255D21AAEA90DAC3D4DC8B0_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SecureRandom__ctor_mAD42803A2428614D1F961A8BCC228B22958C978A (SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls.TlsClientProtocol::.ctor(System.IO.Stream,BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TlsClientProtocol__ctor_m917AFA9DB080FE0BF9AF1CCD67C2AA47D11CCCFF (TlsClientProtocol_t699CCD2E87EC8483837B996FB590D11781975967 * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___stream0, SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * ___secureRandom1, const RuntimeMethod* method); // System.Collections.Generic.List`1 BestHTTP.HTTPRequest::get_CustomTLSServerNameList() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * HTTPRequest_get_CustomTLSServerNameList_m5C8999B234D73B71A5DD141E4BE75C45C116810D_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, const RuntimeMethod* method); // System.Boolean BestHTTP.Extensions.Extensions::IsHostIsAnIPAddress(System.Uri) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Extensions_IsHostIsAnIPAddress_mD892872A31F0F3A6AF15CCAB403B9BC9658F4384 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::.ctor(System.Int32) inline void List_1__ctor_m4D81A60A3C9A9F425B13CEE1AC43A357335E8B0B (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * __this, int32_t ___capacity0, const RuntimeMethod* method) { (( void (*) (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 *, int32_t, const RuntimeMethod*))List_1__ctor_mFEB2301A6F28290A828A979BA9CC847B16B3D538_gshared)(__this, ___capacity0, method); } // Org.BouncyCastle.Crypto.Tls2.ICertificateVerifyer BestHTTP.HTTPRequest::get_CustomCertificateVerifyer() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* HTTPRequest_get_CustomCertificateVerifyer_m2BB9EE6184E6CBACBAB26559E4B311F0EBCE5BE8_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, const RuntimeMethod* method); // System.Void Org.BouncyCastle.Crypto.Tls2.AlwaysValidVerifyer::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AlwaysValidVerifyer__ctor_mBE393A75EEDAAC4803E299911612FDCDA2503A01 (AlwaysValidVerifyer_t7ADF972FD4D728037278659A56B61B9F7C918C6A * __this, const RuntimeMethod* method); // Org.BouncyCastle.Crypto.Tls2.IClientCredentialsProvider BestHTTP.HTTPRequest::get_CustomClientCredentialsProvider() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* HTTPRequest_get_CustomClientCredentialsProvider_m29ED39656BC1EAA376E9ECC53FAA237A5A9087CC_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, const RuntimeMethod* method); // System.Void Org.BouncyCastle.Crypto.Tls2.LegacyTlsClient::.ctor(System.Uri,Org.BouncyCastle.Crypto.Tls2.ICertificateVerifyer,Org.BouncyCastle.Crypto.Tls2.IClientCredentialsProvider,System.Collections.Generic.List`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LegacyTlsClient__ctor_m318D4C4C7C28403F9BBF6984AB97D228210A134C (LegacyTlsClient_t4BEFCBA84F5A2CA83714DEC1CCBE32EC12681856 * __this, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___targetUri0, RuntimeObject* ___verifyer1, RuntimeObject* ___prov2, List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * ___hostNames3, const RuntimeMethod* method); // System.Void System.Net.Security.RemoteCertificateValidationCallback::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemoteCertificateValidationCallback__ctor_mDBCF893D0A540CB506F5547807525625F5CBA4C4 (RemoteCertificateValidationCallback_t69AACF4DA933279BC0F7916FB62BC05A5DC5A947 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void System.Net.Security.SslStream::.ctor(System.IO.Stream,System.Boolean,System.Net.Security.RemoteCertificateValidationCallback) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SslStream__ctor_mDE2A5EC03984D2F7A4AB6DDE2A4A160E9CA80BC3 (SslStream_t8C3E1BFCC63C3FC9A4684697FFBBA81B843D5F49 * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___innerStream0, bool ___leaveInnerStreamOpen1, RemoteCertificateValidationCallback_t69AACF4DA933279BC0F7916FB62BC05A5DC5A947 * ___userCertificateValidationCallback2, const RuntimeMethod* method); // BestHTTP.SupportedProtocols BestHTTP.HTTPRequest::get_ProtocolHandler() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t HTTPRequest_get_ProtocolHandler_m13BBA651D1C1AE052340E2F32C975F5BFA75022D_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, const RuntimeMethod* method); // BestHTTP.SupportedProtocols BestHTTP.HTTPProtocolFactory::GetProtocolFromUri(System.Uri) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HTTPProtocolFactory_GetProtocolFromUri_mE8C4F386B2F24694029C80A9ED759F4FF4974F8E (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri0, const RuntimeMethod* method); // BestHTTP.HTTPResponse BestHTTP.HTTPProtocolFactory::Get(BestHTTP.SupportedProtocols,BestHTTP.HTTPRequest,System.IO.Stream,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * HTTPProtocolFactory_Get_mA4FE8896A3F7AD6610459A030D66769E7A56B4D3 (int32_t ___protocol0, HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * ___request1, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___stream2, bool ___isStreamed3, bool ___isFromCache4, const RuntimeMethod* method); // System.Boolean BestHTTP.HTTPRequest::get_IsRedirected() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool HTTPRequest_get_IsRedirected_m338EA335CDB07C0DDFA25D87F3F5D4F57A5E4F2F_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, const RuntimeMethod* method); // System.Uri BestHTTP.HTTPRequest::get_RedirectUri() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * HTTPRequest_get_RedirectUri_mE1B8A1F1B0E7133DB166E4CA73FC82DE640BCE0D_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, const RuntimeMethod* method); // System.Boolean BestHTTP.HTTPConnection::LoadFromCache(System.Uri) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HTTPConnection_LoadFromCache_m3AC0CC7A3B757138B4F8C0A1A6A15FC0928B8A3A (HTTPConnection_t51D075C863581CF6C0E77BBABD92B87EA1F23C9A * __this, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri0, const RuntimeMethod* method); // System.Uri BestHTTP.HTTPRequest::get_Uri() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * HTTPRequest_get_Uri_mCF0675FA33A1F32DF6728DA439D9D477671EBD76_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, const RuntimeMethod* method); // BestHTTP.Caching.HTTPCacheFileInfo BestHTTP.Caching.HTTPCacheService::GetEntity(System.Uri) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * HTTPCacheService_GetEntity_m9ECBDC65367F2BD91DECDCF412AB381E56FF4E30 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri0, const RuntimeMethod* method); // System.IO.Stream BestHTTP.Caching.HTTPCacheFileInfo::GetBodyStream(System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * HTTPCacheFileInfo_GetBodyStream_m435D6D7776467A6D3B32A58E4E13516BB72E7ADA (HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * __this, int32_t* ___length0, const RuntimeMethod* method); // System.Boolean BestHTTP.HTTPResponse::HasHeader(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HTTPResponse_HasHeader_m33686019500B7E5462F4AD7F7529CBBC2EF18CA9 (HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * __this, String_t* ___headerName0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPResponse::set_IsFromCache(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPResponse_set_IsFromCache_m23C6FAC0BBCBCD2744394588B99E4230336F3059_inline (HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * __this, bool ___value0, const RuntimeMethod* method); // System.Boolean BestHTTP.HTTPRequest::get_CacheOnly() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool HTTPRequest_get_CacheOnly_m812A51D08882F3522A4C1A1E762F5E419DEB5DE2_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, const RuntimeMethod* method); // System.Void BestHTTP.HTTPResponse::ReadRaw(System.IO.Stream,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPResponse_ReadRaw_m6DEF8955ECD771EBBA3A95C308AC37942F9BC44E (HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___stream0, int64_t ___contentLength1, const RuntimeMethod* method); // System.Boolean BestHTTP.Caching.HTTPCacheService::IsCachedEntityExpiresInTheFuture(BestHTTP.HTTPRequest) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HTTPCacheService_IsCachedEntityExpiresInTheFuture_m6E2C8A33EF40A02A4510C159641F4015EF8A4383 (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * ___request0, const RuntimeMethod* method); // BestHTTP.HTTPResponse BestHTTP.Caching.HTTPCacheService::GetFullResponse(BestHTTP.HTTPRequest) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * HTTPCacheService_GetFullResponse_mA9EF63994D13876095BEB968ADEF1D92B9F2BFA6 (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * ___request0, const RuntimeMethod* method); // BestHTTP.HTTPMethods BestHTTP.HTTPRequest::get_MethodType() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint8_t HTTPRequest_get_MethodType_m9C6ADC126D0A5C7737A80457239C5E26D79C8B67_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, const RuntimeMethod* method); // System.Boolean BestHTTP.Caching.HTTPCacheService::IsCacheble(System.Uri,BestHTTP.HTTPMethods,BestHTTP.HTTPResponse) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HTTPCacheService_IsCacheble_mE08CAAE97A2CD21219FCDF4AD5539172A07F8755 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri0, uint8_t ___method1, HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * ___response2, const RuntimeMethod* method); // BestHTTP.Caching.HTTPCacheFileInfo BestHTTP.Caching.HTTPCacheService::Store(System.Uri,BestHTTP.HTTPMethods,BestHTTP.HTTPResponse) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HTTPCacheFileInfo_t3BCDECECC6AD2CFF9DA37550CD6EE707999B15EA * HTTPCacheService_Store_m3068CDB9A39AEA564D36DDE8CB6C518F33EE954B (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri0, uint8_t ___method1, HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * ___response2, const RuntimeMethod* method); // System.Boolean System.Uri::get_IsFile() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_get_IsFile_mCFA022C6E4641EBD7285A01056B7E201CEFD2C73 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method); // System.String System.Uri::get_AbsolutePath() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_AbsolutePath_mB845A99D0CEB442AAF90B24A95EE7509C34C6306 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method); // System.Boolean System.Uri::op_Equality(System.Uri,System.Uri) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_op_Equality_mB322C9CBB45846441BDCA7357E7D28123824ED83 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri10, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri21, const RuntimeMethod* method); // System.String System.Uri::get_Scheme() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_Scheme_mEC4980E1C82DE3963007E33C759742A02A26FF29 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method); // System.Void System.UriBuilder::.ctor(System.String,System.String,System.Int32,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UriBuilder__ctor_m77266A99C72EE7D34263F79C98DA6C303FD06D8D (UriBuilder_t6FF22E0E019C73564385054BE4AF98E6C5EE0F42 * __this, String_t* ___scheme0, String_t* ___host1, int32_t ___port2, String_t* ___pathValue3, const RuntimeMethod* method); // System.Uri System.UriBuilder::get_Uri() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * UriBuilder_get_Uri_mCC00D0ED823993613F5E62435B85FDADC891C328 (UriBuilder_t6FF22E0E019C73564385054BE4AF98E6C5EE0F42 * __this, const RuntimeMethod* method); // System.Void BestHTTP.ConnectionBase::set_TimedOutStart(System.DateTime) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ConnectionBase_set_TimedOutStart_m763485949BAF9B456D79B83A1884AE4C9B602500_inline (ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57 * __this, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___value0, const RuntimeMethod* method); // System.Void System.IO.Stream::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stream_Dispose_m117324084DDAD414761AD29FB17A419840BA6EA0 (Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * __this, const RuntimeMethod* method); // System.Void BestHTTP.PlatformSupport.TcpClient.General.TcpClient::Close() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TcpClient_Close_m0835AB036C6ACC74EB78F7454C0BEB279F222A29 (TcpClient_t31BAC3FC66E2985035A039820F08B7F64DC59075 * __this, const RuntimeMethod* method); // System.Void BestHTTP.ConnectionBase::Dispose(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionBase_Dispose_mFEDC3330F67388E232E536D1E8D42BB616D04D72 (ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57 * __this, bool ___disposing0, const RuntimeMethod* method); // System.Boolean BestHTTP.HTTPRequest::CallCustomCertificationValidator(System.Security.Cryptography.X509Certificates.X509Certificate,System.Security.Cryptography.X509Certificates.X509Chain) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HTTPRequest_CallCustomCertificationValidator_m460C231100824E4F680EEA152F68916E63E83BDF (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553 * ___cert0, X509Chain_t2167363ADB11F31A4A13E77EB73BEEE29381AF37 * ___chain1, const RuntimeMethod* method); // System.Byte[] BestHTTP.Forms.HTTPFieldData::get_Binary() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* HTTPFieldData_get_Binary_mDE41CC95866C58AF59CCD81D9F6F46C3DAD207DC_inline (HTTPFieldData_t6D10CC260BB01415CE5644EAC56F0E4785C7C16E * __this, const RuntimeMethod* method); // System.Text.Encoding BestHTTP.Forms.HTTPFieldData::get_Encoding() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * HTTPFieldData_get_Encoding_m8AFF68ADE1DCF5249771E47060FECB9B0CDA655D_inline (HTTPFieldData_t6D10CC260BB01415CE5644EAC56F0E4785C7C16E * __this, const RuntimeMethod* method); // System.Text.Encoding System.Text.Encoding::get_UTF8() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * Encoding_get_UTF8_mC877FB3137BBD566AEE7B15F9BF61DC4EF8F5E5E (const RuntimeMethod* method); // System.Void BestHTTP.Forms.HTTPFieldData::set_Encoding(System.Text.Encoding) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPFieldData_set_Encoding_mEA1F1E28CF8272BAABF40292BBAA4D1E52C1C76F_inline (HTTPFieldData_t6D10CC260BB01415CE5644EAC56F0E4785C7C16E * __this, Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___value0, const RuntimeMethod* method); // System.String BestHTTP.Forms.HTTPFieldData::get_Text() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* HTTPFieldData_get_Text_mBCE863EAE635EB857A05D4C81607D469C28C4713_inline (HTTPFieldData_t6D10CC260BB01415CE5644EAC56F0E4785C7C16E * __this, const RuntimeMethod* method); // System.Void BestHTTP.Forms.HTTPFieldData::set_Binary(System.Byte[]) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPFieldData_set_Binary_mA0D56DF338B106D5041475325895219F452812D4_inline (HTTPFieldData_t6D10CC260BB01415CE5644EAC56F0E4785C7C16E * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___value0, const RuntimeMethod* method); // System.Collections.Generic.List`1 BestHTTP.Forms.HTTPFormBase::get_Fields() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_tAB6EE9557BF734F9EF011194835DEFD04B650ACD * HTTPFormBase_get_Fields_m1B8E66C86ABA4D88F3239EA0ABB3512397812F28_inline (HTTPFormBase_t62B2F52574B8465343CE4B246C6021BC42A45BF2 * __this, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.List`1::get_Count() inline int32_t List_1_get_Count_m8AE987185C2C4F583F4D0E4532CD8D47FD00FFFC_inline (List_1_tAB6EE9557BF734F9EF011194835DEFD04B650ACD * __this, const RuntimeMethod* method) { return (( int32_t (*) (List_1_tAB6EE9557BF734F9EF011194835DEFD04B650ACD *, const RuntimeMethod*))List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline)(__this, method); } // System.Void BestHTTP.Forms.HTTPFormBase::AddBinaryData(System.String,System.Byte[],System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPFormBase_AddBinaryData_mB4FBF34F0A0B95AEB8688C00F6244F0B6B496C23 (HTTPFormBase_t62B2F52574B8465343CE4B246C6021BC42A45BF2 * __this, String_t* ___fieldName0, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___content1, String_t* ___fileName2, String_t* ___mimeType3, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::.ctor() inline void List_1__ctor_m9AACCDE153A63FBC3ECF18A61B39D12FCBCE9748 (List_1_tAB6EE9557BF734F9EF011194835DEFD04B650ACD * __this, const RuntimeMethod* method) { (( void (*) (List_1_tAB6EE9557BF734F9EF011194835DEFD04B650ACD *, const RuntimeMethod*))List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared)(__this, method); } // System.Void BestHTTP.Forms.HTTPFormBase::set_Fields(System.Collections.Generic.List`1) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPFormBase_set_Fields_m715A8CF21764F3B7587EF91D1FB6A6F704899208_inline (HTTPFormBase_t62B2F52574B8465343CE4B246C6021BC42A45BF2 * __this, List_1_tAB6EE9557BF734F9EF011194835DEFD04B650ACD * ___value0, const RuntimeMethod* method); // System.Void BestHTTP.Forms.HTTPFieldData::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPFieldData__ctor_m8B69229804C65659975B20C071BA8E4829A6AA55 (HTTPFieldData_t6D10CC260BB01415CE5644EAC56F0E4785C7C16E * __this, const RuntimeMethod* method); // System.Void BestHTTP.Forms.HTTPFieldData::set_Name(System.String) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPFieldData_set_Name_m1E874D6CC1F2BA3222AF29871F2844D570D5E060_inline (HTTPFieldData_t6D10CC260BB01415CE5644EAC56F0E4785C7C16E * __this, String_t* ___value0, const RuntimeMethod* method); // System.Void BestHTTP.Forms.HTTPFieldData::set_FileName(System.String) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPFieldData_set_FileName_mE71A0C346CEFDF4F1E4E05681784EEFA465B25EA_inline (HTTPFieldData_t6D10CC260BB01415CE5644EAC56F0E4785C7C16E * __this, String_t* ___value0, const RuntimeMethod* method); // System.Void BestHTTP.Forms.HTTPFieldData::set_MimeType(System.String) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPFieldData_set_MimeType_mB96B013557F79F8DBD68DABE1C20A34BD5736C3D_inline (HTTPFieldData_t6D10CC260BB01415CE5644EAC56F0E4785C7C16E * __this, String_t* ___value0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::Add(!0) inline void List_1_Add_m57E8F16E09F368CAC170562B0307883284902E2D (List_1_tAB6EE9557BF734F9EF011194835DEFD04B650ACD * __this, HTTPFieldData_t6D10CC260BB01415CE5644EAC56F0E4785C7C16E * ___item0, const RuntimeMethod* method) { (( void (*) (List_1_tAB6EE9557BF734F9EF011194835DEFD04B650ACD *, HTTPFieldData_t6D10CC260BB01415CE5644EAC56F0E4785C7C16E *, const RuntimeMethod*))List_1_Add_mF15250BF947CA27BE9A23C08BAC6DB6F180B0EDD_gshared)(__this, ___item0, method); } // System.Void BestHTTP.Forms.HTTPFormBase::set_IsChanged(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPFormBase_set_IsChanged_mCD63DDDAB783E0831177A0CC6493DC920A8EC0D7_inline (HTTPFormBase_t62B2F52574B8465343CE4B246C6021BC42A45BF2 * __this, bool ___value0, const RuntimeMethod* method); // System.Void BestHTTP.Forms.HTTPFormBase::set_HasBinary(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPFormBase_set_HasBinary_m04F3523C4C905918E3C29CAD4C5D56755FB5E2FB_inline (HTTPFormBase_t62B2F52574B8465343CE4B246C6021BC42A45BF2 * __this, bool ___value0, const RuntimeMethod* method); // System.Void BestHTTP.Forms.HTTPFormBase::AddField(System.String,System.String,System.Text.Encoding) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPFormBase_AddField_mC6E3081F0C2E60D686A4095E91F14DB54EA32981 (HTTPFormBase_t62B2F52574B8465343CE4B246C6021BC42A45BF2 * __this, String_t* ___fieldName0, String_t* ___value1, Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___e2, const RuntimeMethod* method); // System.Void BestHTTP.Forms.HTTPFieldData::set_Text(System.String) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPFieldData_set_Text_m9EA4202D0562BEDB70AF5A4174C6795C02962E94_inline (HTTPFieldData_t6D10CC260BB01415CE5644EAC56F0E4785C7C16E * __this, String_t* ___value0, const RuntimeMethod* method); // System.Boolean BestHTTP.Forms.HTTPFormBase::get_HasLongValue() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool HTTPFormBase_get_HasLongValue_mC8EBA10C50575AF74F3573A2A3839B8A15A42354_inline (HTTPFormBase_t62B2F52574B8465343CE4B246C6021BC42A45BF2 * __this, const RuntimeMethod* method); // System.Void BestHTTP.Forms.HTTPFormBase::set_HasLongValue(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPFormBase_set_HasLongValue_m4AB022DC346188F31D8390A9B03A61719DCFD33E_inline (HTTPFormBase_t62B2F52574B8465343CE4B246C6021BC42A45BF2 * __this, bool ___value0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::.ctor(System.Collections.Generic.IEnumerable`1) inline void List_1__ctor_m2387B419A3F2952A848E1B0A9DF2B989FA5F39C8 (List_1_tAB6EE9557BF734F9EF011194835DEFD04B650ACD * __this, RuntimeObject* ___collection0, const RuntimeMethod* method) { (( void (*) (List_1_tAB6EE9557BF734F9EF011194835DEFD04B650ACD *, RuntimeObject*, const RuntimeMethod*))List_1__ctor_mBA0F95BC28DD65AA86AEA87839C278D24CDF43DF_gshared)(__this, ___collection0, method); } // System.Boolean BestHTTP.Forms.HTTPFormBase::get_HasBinary() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool HTTPFormBase_get_HasBinary_m51F49EEFC93D41A880E2F849F31879C5FE278358_inline (HTTPFormBase_t62B2F52574B8465343CE4B246C6021BC42A45BF2 * __this, const RuntimeMethod* method); // System.Void System.NotImplementedException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotImplementedException__ctor_mA2E9CE7F00CB335581A296D2596082D57E45BA83 (NotImplementedException_t26260C4EE0444C5FA022994203060B3A42A3ADE6 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2>::.ctor() inline void Dictionary_2__ctor_m0599C1A51CDF5D9B9854E841F33CF61DD474F1C3 (Dictionary_2_t3CA977FBCA3158664D7AB53A25D36155F805ABB3 * __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t3CA977FBCA3158664D7AB53A25D36155F805ABB3 *, const RuntimeMethod*))Dictionary_2__ctor_m2C8EE5C13636D67F6C451C4935049F534AEC658F_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1::.ctor() inline void List_1__ctor_m46A1C28C169E2F7525AC6EE4E4A50D0A00B71194 (List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836 * __this, const RuntimeMethod* method) { (( void (*) (List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836 *, const RuntimeMethod*))List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1::.ctor() inline void List_1__ctor_mF8584C023BE0C2A988FB60BBCFE2F622AF22E79A (List_1_t406EC705E72137D2240DC7D4E2B21A200546B181 * __this, const RuntimeMethod* method) { (( void (*) (List_1_t406EC705E72137D2240DC7D4E2B21A200546B181 *, const RuntimeMethod*))List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared)(__this, method); } // System.Void BestHTTP.HTTPManager::set_MaxConnectionPerServer(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPManager_set_MaxConnectionPerServer_mFF2EDBA22285481DB01A957DA6146B14F4DD3194 (uint8_t ___value0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPManager::set_KeepAliveDefaultValue(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPManager_set_KeepAliveDefaultValue_mFB9AEBBAA9CC3F05CFC8130B860D395D26CEC8A8_inline (bool ___value0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPManager::set_MaxPathLength(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPManager_set_MaxPathLength_m0C43D99675CA5C749B4C5BE4086D315C042B09E0_inline (int32_t ___value0, const RuntimeMethod* method); // System.TimeSpan System.TimeSpan::FromSeconds(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 TimeSpan_FromSeconds_m4644EABECA69BC6C07AD649C5898A8E53F4FE7B0 (double ___value0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPManager::set_MaxConnectionIdleTime(System.TimeSpan) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPManager_set_MaxConnectionIdleTime_m84B2A546942B975E8D27031AD82B69097CBCC84F_inline (TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___value0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPManager::set_IsCookiesEnabled(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPManager_set_IsCookiesEnabled_mFF0D0F1022C75D90BC109676B219588A8EB243E5_inline (bool ___value0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPManager::set_CookieJarSize(System.UInt32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPManager_set_CookieJarSize_m95C1A9876BFAC3EC48375B91929E6A1C12BC6DE4_inline (uint32_t ___value0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPManager::set_EnablePrivateBrowsing(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPManager_set_EnablePrivateBrowsing_m86C164B346BE9E2CF404DA0E96014744F6631DA6_inline (bool ___value0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPManager::set_ConnectTimeout(System.TimeSpan) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPManager_set_ConnectTimeout_m778FB77E3CEB95F043CF2FE0DAC4D28B5134117D_inline (TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___value0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPManager::set_RequestTimeout(System.TimeSpan) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPManager_set_RequestTimeout_m3F96BEEE2D3B46EEC4CEB3C9ECD8648DA3F1EF94_inline (TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___value0, const RuntimeMethod* method); // System.Void BestHTTP.Logger.DefaultLogger::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultLogger__ctor_m28CE9FD6F88E2926ADF88F7FE6E4FA048F05AD74 (DefaultLogger_t7E3DFAD4BFABAD5605389979F1604A7952296EB7 * __this, const RuntimeMethod* method); // System.Void BestHTTP.HTTPManager::set_DefaultCertificateVerifyer(Org.BouncyCastle.Crypto.Tls2.ICertificateVerifyer) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPManager_set_DefaultCertificateVerifyer_mB60569B8CBFBEE4EC44521D71BB74914E937AF57_inline (RuntimeObject* ___value0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPManager::set_UseAlternateSSLDefaultValue(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPManager_set_UseAlternateSSLDefaultValue_m726FC75AA04EAD8441ABFDA619B49B52DFCCEEFD_inline (bool ___value0, const RuntimeMethod* method); // System.Void BestHTTP.PlatformSupport.FileSystem.DefaultIOService::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultIOService__ctor_m57E2CF327298330F57016C8987B0EBE82C658C54 (DefaultIOService_tC04F35048EAA8FDBBB1E12D95E091A27EA271DDC * __this, const RuntimeMethod* method); // System.Void System.ArgumentOutOfRangeException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * __this, String_t* ___paramName0, const RuntimeMethod* method); // System.Void BestHTTP.Extensions.HeartbeatManager::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HeartbeatManager__ctor_mD20BB09BABF6F07A36307DCCB5C64F21BEC5092C (HeartbeatManager_tC2289824FFCE494A74441E065011CD0E66C2134E * __this, const RuntimeMethod* method); // System.Void BestHTTP.HTTPUpdateDelegator::CheckInstance() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPUpdateDelegator_CheckInstance_m1A0DE4FEA1DDBE644089D6D646CF395A90B8C492 (const RuntimeMethod* method); // System.Void BestHTTP.Cookies.CookieJar::SetupFolder() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CookieJar_SetupFolder_mE851CBB3AEAFB6F9DFF72647D0F071569A7656E3 (const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::.ctor(System.Uri,BestHTTP.HTTPMethods,BestHTTP.OnRequestFinishedDelegate) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPRequest__ctor_m00C13EB79996ACA6B7B3A94149FC36736BE59976 (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri0, uint8_t ___methodType1, OnRequestFinishedDelegate_t4E35BB5277ED27A8B43D1987DE7F3B47772018B4 * ___callback2, const RuntimeMethod* method); // BestHTTP.HTTPRequest BestHTTP.HTTPManager::SendRequest(BestHTTP.HTTPRequest) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * HTTPManager_SendRequest_m18B2DDBDC1A852365BEA5B1D02CA24D4E7B8011E (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * ___request0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::.ctor(System.Uri,BestHTTP.HTTPMethods,System.Boolean,BestHTTP.OnRequestFinishedDelegate) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPRequest__ctor_m6199A248DFD5E3CFE8BB6466BADF98A010CD37CF (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri0, uint8_t ___methodType1, bool ___isKeepAlive2, OnRequestFinishedDelegate_t4E35BB5277ED27A8B43D1987DE7F3B47772018B4 * ___callback3, const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::.ctor(System.Uri,BestHTTP.HTTPMethods,System.Boolean,System.Boolean,BestHTTP.OnRequestFinishedDelegate) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPRequest__ctor_mAE64F8AB6E9A1C375D196E7686BC368D24B96E1B (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri0, uint8_t ___methodType1, bool ___isKeepAlive2, bool ___disableCache3, OnRequestFinishedDelegate_t4E35BB5277ED27A8B43D1987DE7F3B47772018B4 * ___callback4, const RuntimeMethod* method); // System.Void BestHTTP.HTTPManager::Setup() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPManager_Setup_m57D5159492292B0D4ED347333BBCEA5EC8ACC7E2 (const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::Add(!0) inline void List_1_Add_mA31F7E28D59110EFD3A0A0B96E52190E747CE71B (List_1_t406EC705E72137D2240DC7D4E2B21A200546B181 * __this, HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * ___item0, const RuntimeMethod* method) { (( void (*) (List_1_t406EC705E72137D2240DC7D4E2B21A200546B181 *, HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 *, const RuntimeMethod*))List_1_Add_mF15250BF947CA27BE9A23C08BAC6DB6F180B0EDD_gshared)(__this, ___item0, method); } // System.Void BestHTTP.HTTPManager::SendRequestImpl(BestHTTP.HTTPRequest) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPManager_SendRequestImpl_m1E76BEDDE9DDC92117C6139435FEEAC060225B99 (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * ___request0, const RuntimeMethod* method); // System.Collections.Generic.Dictionary`2/Enumerator System.Collections.Generic.Dictionary`2>::GetEnumerator() inline Enumerator_t87845B18CF1C429E8B015F97E7E640B1D69D1995 Dictionary_2_GetEnumerator_m00CF9AA8DCEF7671525C1D98BD3733D08C305642 (Dictionary_2_t3CA977FBCA3158664D7AB53A25D36155F805ABB3 * __this, const RuntimeMethod* method) { return (( Enumerator_t87845B18CF1C429E8B015F97E7E640B1D69D1995 (*) (Dictionary_2_t3CA977FBCA3158664D7AB53A25D36155F805ABB3 *, const RuntimeMethod*))Dictionary_2_GetEnumerator_mD80BA563C32BF7C1EE95C9FC1BE3B423716CCE68_gshared)(__this, method); } // System.Collections.Generic.KeyValuePair`2 System.Collections.Generic.Dictionary`2/Enumerator>::get_Current() inline KeyValuePair_2_tC0803126FFC93A1688084924A6D491E22FCDEBF5 Enumerator_get_Current_m0475DE681D1FF6D8FFF2471C08D5BAF9820EE1C5_inline (Enumerator_t87845B18CF1C429E8B015F97E7E640B1D69D1995 * __this, const RuntimeMethod* method) { return (( KeyValuePair_2_tC0803126FFC93A1688084924A6D491E22FCDEBF5 (*) (Enumerator_t87845B18CF1C429E8B015F97E7E640B1D69D1995 *, const RuntimeMethod*))Enumerator_get_Current_m39BB9CD07FEC0DBEDFE938630364A23C9A87FC3F_gshared_inline)(__this, method); } // !1 System.Collections.Generic.KeyValuePair`2>::get_Value() inline List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836 * KeyValuePair_2_get_Value_m186BC722C59F93B942ABAD43C3FE91D711371211_inline (KeyValuePair_2_tC0803126FFC93A1688084924A6D491E22FCDEBF5 * __this, const RuntimeMethod* method) { return (( List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836 * (*) (KeyValuePair_2_tC0803126FFC93A1688084924A6D491E22FCDEBF5 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m8425596BB4249956819960EC76E618357F573E76_gshared_inline)(__this, method); } // System.Int32 System.Collections.Generic.List`1::get_Count() inline int32_t List_1_get_Count_m2E71CCE00E3A141636251EB314D4A194E9EFB5EE_inline (List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836 * __this, const RuntimeMethod* method) { return (( int32_t (*) (List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836 *, const RuntimeMethod*))List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator>::MoveNext() inline bool Enumerator_MoveNext_m14F9201E481814A0D824D7C1983341F3B6506544 (Enumerator_t87845B18CF1C429E8B015F97E7E640B1D69D1995 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t87845B18CF1C429E8B015F97E7E640B1D69D1995 *, const RuntimeMethod*))Enumerator_MoveNext_mCAD84084129516BD41DE5CC3E1FABA5A8DF836D0_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator>::Dispose() inline void Enumerator_Dispose_m19AE7CA2C77C70042150932E6F0E74BEC2C9B088 (Enumerator_t87845B18CF1C429E8B015F97E7E640B1D69D1995 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t87845B18CF1C429E8B015F97E7E640B1D69D1995 *, const RuntimeMethod*))Enumerator_Dispose_m85CA135BAB22C9F0C87C84AB90FF6740D1859279_gshared)(__this, method); } // System.Int32 System.Collections.Generic.List`1::get_Count() inline int32_t List_1_get_Count_mEC8D5F7B14AC04EA45002CD6385B4D99B109FA12_inline (List_1_t406EC705E72137D2240DC7D4E2B21A200546B181 * __this, const RuntimeMethod* method) { return (( int32_t (*) (List_1_t406EC705E72137D2240DC7D4E2B21A200546B181 *, const RuntimeMethod*))List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline)(__this, method); } // System.Int32 BestHTTP.Caching.HTTPCacheService::GetCacheEntityCount() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HTTPCacheService_GetCacheEntityCount_m065CDBB53EC7ECE6EE1BCF10D2A8D7FC65A40DAB (const RuntimeMethod* method); // System.UInt64 BestHTTP.Caching.HTTPCacheService::GetCacheSize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t HTTPCacheService_GetCacheSize_mEA87317D4E0B6C2130CAA0498EB529B1C32EBFB4 (const RuntimeMethod* method); // System.Collections.Generic.List`1 BestHTTP.Cookies.CookieJar::GetAll() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_tF9D8E572A8599785D6C36AD7BDC592752B89E0A1 * CookieJar_GetAll_mD187A6F8CA355D4336EC7F7DC0C8F84060A3D04B (const RuntimeMethod* method); // System.Int32 System.Collections.Generic.List`1::get_Count() inline int32_t List_1_get_Count_mD1B367C2B55FF6B3506DE6E8970DC93A12DBFA4B_inline (List_1_tF9D8E572A8599785D6C36AD7BDC592752B89E0A1 * __this, const RuntimeMethod* method) { return (( int32_t (*) (List_1_tF9D8E572A8599785D6C36AD7BDC592752B89E0A1 *, const RuntimeMethod*))List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline)(__this, method); } // !0 System.Collections.Generic.List`1::get_Item(System.Int32) inline Cookie_tC21D2404C4CCA8449C9DB970939F9DFB8CE61EC2 * List_1_get_Item_mB7DA00540AD75B1C988577AAFCBC59A220DA71E1_inline (List_1_tF9D8E572A8599785D6C36AD7BDC592752B89E0A1 * __this, int32_t ___index0, const RuntimeMethod* method) { return (( Cookie_tC21D2404C4CCA8449C9DB970939F9DFB8CE61EC2 * (*) (List_1_tF9D8E572A8599785D6C36AD7BDC592752B89E0A1 *, int32_t, const RuntimeMethod*))List_1_get_Item_m7B5E3383CB67492E573AC0D875ED82A51350F188_gshared_inline)(__this, ___index0, method); } // System.UInt32 BestHTTP.Cookies.Cookie::GuessSize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Cookie_GuessSize_m7FF3D74B191C2615F881ADD19AEA7C025A360F8C (Cookie_tC21D2404C4CCA8449C9DB970939F9DFB8CE61EC2 * __this, const RuntimeMethod* method); // System.Void BestHTTP.HTTPManager/<>c__DisplayClass94_0::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass94_0__ctor_mE5A5AA7EA6A1ACB5A6D0BFCAC2AE9937D96E5229 (U3CU3Ec__DisplayClass94_0_tAF390C495207D82599C243517BC7510C5F085B0A * __this, const RuntimeMethod* method); // BestHTTP.ConnectionBase BestHTTP.HTTPManager::FindOrCreateFreeConnection(BestHTTP.HTTPRequest) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57 * HTTPManager_FindOrCreateFreeConnection_m69989705D5D6FF7838BECF74D9604C4DF15C7CA4 (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * ___request0, const RuntimeMethod* method); // System.Void System.Predicate`1::.ctor(System.Object,System.IntPtr) inline void Predicate_1__ctor_mEF73C868D2A94A127F81693D387621C967D47BBF (Predicate_1_t39705BC94BB4A2ECA2F5A3EF2CAA5FF6B9B99860 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Predicate_1_t39705BC94BB4A2ECA2F5A3EF2CAA5FF6B9B99860 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Predicate_1__ctor_m3F41E32C976C3C48B3FC63FBFD3FBBC5B5F23EDD_gshared)(__this, ___object0, ___method1, method); } // !0 System.Collections.Generic.List`1::Find(System.Predicate`1) inline ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57 * List_1_Find_m3DDE986CD476265E1D3737BD1C554926106863DF (List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836 * __this, Predicate_1_t39705BC94BB4A2ECA2F5A3EF2CAA5FF6B9B99860 * ___match0, const RuntimeMethod* method) { return (( ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57 * (*) (List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836 *, Predicate_1_t39705BC94BB4A2ECA2F5A3EF2CAA5FF6B9B99860 *, const RuntimeMethod*))List_1_Find_mF6189FA7C00C1CE54D074CA76B798288DB60452B_gshared)(__this, ___match0, method); } // System.Void System.Collections.Generic.List`1::Add(!0) inline void List_1_Add_m7F58FCE42C6A24E9FDFAB9BA1034920F7E67D0BB (List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836 * __this, ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57 * ___item0, const RuntimeMethod* method) { (( void (*) (List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836 *, ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57 *, const RuntimeMethod*))List_1_Add_mF15250BF947CA27BE9A23C08BAC6DB6F180B0EDD_gshared)(__this, ___item0, method); } // System.Boolean System.Collections.Generic.List`1::Remove(!0) inline bool List_1_Remove_m3252E021253D81FDFC16D6EA456AA17A426954E5 (List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836 * __this, ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57 * ___item0, const RuntimeMethod* method) { return (( bool (*) (List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836 *, ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57 *, const RuntimeMethod*))List_1_Remove_mC8FCB6A53C017A6C13FC891B6BB1D78F9A77D5E3_gshared)(__this, ___item0, method); } // System.Void BestHTTP.HTTPRequest::Prepare() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPRequest_Prepare_mD603D7302448BD958B1B01999990640524ADE375 (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, const RuntimeMethod* method); // System.Void BestHTTP.ConnectionBase::Process(BestHTTP.HTTPRequest) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionBase_Process_mD7FFAC41F0C86DF73DF2A18D2AD09B6AA3ACB003 (ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57 * __this, HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * ___request0, const RuntimeMethod* method); // System.Void System.UriBuilder::.ctor(System.String,System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UriBuilder__ctor_mC106E0BBBCB86E5F0A7EB84B8CE00512859570F5 (UriBuilder_t6FF22E0E019C73564385054BE4AF98E6C5EE0F42 * __this, String_t* ___scheme0, String_t* ___host1, int32_t ___portNumber2, const RuntimeMethod* method); // UnityEngine.RuntimePlatform UnityEngine.Application::get_platform() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Application_get_platform_mB22F7F39CDD46667C3EF64507E55BB7DA18F66C4 (const RuntimeMethod* method); // System.Void BestHTTP.FileConnection::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileConnection__ctor_m0DC30A10F6505974C622DBF225D366B5F08EB633 (FileConnection_tA6431B122AA31FBDD3050A1D909840045D1B0BAA * __this, String_t* ___serverAddress0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPConnection::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPConnection__ctor_mD6339F0A3D71CFFAF3F81C421CF5983D93C0D0B0 (HTTPConnection_t51D075C863581CF6C0E77BBABD92B87EA1F23C9A * __this, String_t* ___serverAddress0, const RuntimeMethod* method); // System.String BestHTTP.HTTPManager::GetKeyForRequest(BestHTTP.HTTPRequest) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* HTTPManager_GetKeyForRequest_mDF06874B4AB056FB001BDE39219B53CEECEB265E (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * ___request0, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2>::TryGetValue(!0,!1&) inline bool Dictionary_2_TryGetValue_m87F3A64C5DD114C6F3146F1D1273A10B9E8142A0 (Dictionary_2_t3CA977FBCA3158664D7AB53A25D36155F805ABB3 * __this, String_t* ___key0, List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836 ** ___value1, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_t3CA977FBCA3158664D7AB53A25D36155F805ABB3 *, String_t*, List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836 **, const RuntimeMethod*))Dictionary_2_TryGetValue_mE985A35FC727FA9F519564063C5C5063209ADDA8_gshared)(__this, ___key0, ___value1, method); } // !0 System.Collections.Generic.List`1::get_Item(System.Int32) inline ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57 * List_1_get_Item_m09656BC7AFBC2D9B01CEA2BBD389BE2231BCDB11_inline (List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836 * __this, int32_t ___index0, const RuntimeMethod* method) { return (( ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57 * (*) (List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836 *, int32_t, const RuntimeMethod*))List_1_get_Item_m7B5E3383CB67492E573AC0D875ED82A51350F188_gshared_inline)(__this, ___index0, method); } // System.Boolean BestHTTP.ConnectionBase::get_IsActive() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConnectionBase_get_IsActive_m6424AFC72F62BF3E17939949576D0E637D2BC69A (ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57 * __this, const RuntimeMethod* method); // System.Byte BestHTTP.HTTPManager::get_MaxConnectionPerServer() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint8_t HTTPManager_get_MaxConnectionPerServer_m5509778F050AD330F03D3DE2EAF453FDE0E05065_inline (const RuntimeMethod* method); // System.Boolean BestHTTP.ConnectionBase::get_HasProxy() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConnectionBase_get_HasProxy_m044A263255F2F0DE11AD7A5ADF696A84ABABBA23 (ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57 * __this, const RuntimeMethod* method); // System.Uri BestHTTP.ConnectionBase::get_LastProcessedUri() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ConnectionBase_get_LastProcessedUri_mB38295EC83A0DE8BDEFE2B61DDE76821BE9980E8_inline (ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57 * __this, const RuntimeMethod* method); // System.Boolean System.String::Equals(System.String,System.StringComparison) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Equals_m62F0586691097AA2EE48F1596A130170BCFBF7F6 (String_t* __this, String_t* ___value0, int32_t ___comparisonType1, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::.ctor(System.Int32) inline void List_1__ctor_m916A4E18084B27B796B4971C42835C4538B227F9 (List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836 * __this, int32_t ___capacity0, const RuntimeMethod* method) { (( void (*) (List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836 *, int32_t, const RuntimeMethod*))List_1__ctor_mFEB2301A6F28290A828A979BA9CC847B16B3D538_gshared)(__this, ___capacity0, method); } // System.Void System.Collections.Generic.Dictionary`2>::Add(!0,!1) inline void Dictionary_2_Add_m78A1D9A5F6B53D48CD730DE01558E665062F261A (Dictionary_2_t3CA977FBCA3158664D7AB53A25D36155F805ABB3 * __this, String_t* ___key0, List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836 * ___value1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t3CA977FBCA3158664D7AB53A25D36155F805ABB3 *, String_t*, List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836 *, const RuntimeMethod*))Dictionary_2_Add_m1D9CF8FA99A277EE49BC3002FDEAACDCDB29803B_gshared)(__this, ___key0, ___value1, method); } // BestHTTP.ConnectionBase BestHTTP.HTTPManager::CreateConnection(BestHTTP.HTTPRequest,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57 * HTTPManager_CreateConnection_mDD475D118D9D4A53D26EEE16327854840B6E68AD (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * ___request0, String_t* ___serverUrl1, const RuntimeMethod* method); // !0 System.Collections.Generic.List`1::get_Item(System.Int32) inline HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * List_1_get_Item_mFD077553662201281C03532C17BBE4C83A5FE95D_inline (List_1_t406EC705E72137D2240DC7D4E2B21A200546B181 * __this, int32_t ___index0, const RuntimeMethod* method) { return (( HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * (*) (List_1_t406EC705E72137D2240DC7D4E2B21A200546B181 *, int32_t, const RuntimeMethod*))List_1_get_Item_m7B5E3383CB67492E573AC0D875ED82A51350F188_gshared_inline)(__this, ___index0, method); } // System.Void BestHTTP.HTTPConnectionRecycledDelegate::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPConnectionRecycledDelegate__ctor_m52CB2161E23B71E344742B3DDBC50DB0EFEAE7AD (HTTPConnectionRecycledDelegate_t386301071C1322CEA345542DD58665526B1CA85A * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void BestHTTP.ConnectionBase::Recycle(BestHTTP.HTTPConnectionRecycledDelegate) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionBase_Recycle_mF1DEC14EC41A2B2A87A4281EBC8E8E89D5C55B71 (ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57 * __this, HTTPConnectionRecycledDelegate_t386301071C1322CEA345542DD58665526B1CA85A * ___onConnectionRecycled0, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1::Remove(!0) inline bool List_1_Remove_m37C567F99B3FB4B5C29058A738E07617C39DCC29 (List_1_t406EC705E72137D2240DC7D4E2B21A200546B181 * __this, HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * ___item0, const RuntimeMethod* method) { return (( bool (*) (List_1_t406EC705E72137D2240DC7D4E2B21A200546B181 *, HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 *, const RuntimeMethod*))List_1_Remove_mC8FCB6A53C017A6C13FC891B6BB1D78F9A77D5E3_gshared)(__this, ___item0, method); } // System.Func`1 BestHTTP.HTTPManager::get_RootCacheFolderProvider() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Func_1_t2F3325DADD1F420568A48646BFC825E9F29472B1 * HTTPManager_get_RootCacheFolderProvider_mC082CA6E687AB7123418D7CA5475680EEA6C8BB9_inline (const RuntimeMethod* method); // !0 System.Func`1::Invoke() inline String_t* Func_1_Invoke_m13CEA453F2172A139E21431E115D795218DE6A57 (Func_1_t2F3325DADD1F420568A48646BFC825E9F29472B1 * __this, const RuntimeMethod* method) { return (( String_t* (*) (Func_1_t2F3325DADD1F420568A48646BFC825E9F29472B1 *, const RuntimeMethod*))Func_1_Invoke_m93C94FD300D841FFC12C9B8607F97CAEFC847701_gshared)(__this, method); } // System.String UnityEngine.Application::get_persistentDataPath() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Application_get_persistentDataPath_mBD9C84D06693A9DEF2D9D2206B59D4BCF8A03463 (const RuntimeMethod* method); // System.Boolean System.Threading.Monitor::TryEnter(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Monitor_TryEnter_m058FE81963EDAC380A08A637786B8B291F472FA0 (RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Void BestHTTP.ConnectionBase::HandleProgressCallback() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionBase_HandleProgressCallback_m44C11ECB8B90DA4D5879C1A2798F19AF7F029731 (ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57 * __this, const RuntimeMethod* method); // System.Boolean BestHTTP.HTTPResponse::HasStreamedFragments() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HTTPResponse_HasStreamedFragments_m191CC68097B72D015C1EAC9F437089236DF0CFC2 (HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * __this, const RuntimeMethod* method); // System.Void BestHTTP.ConnectionBase::HandleCallback() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionBase_HandleCallback_mC6EB90CD6FA76F1B298DB31546742B3B75D58C70 (ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57 * __this, const RuntimeMethod* method); // System.IO.Stream BestHTTP.HTTPRequest::get_UploadStream() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * HTTPRequest_get_UploadStream_m7729A15875ED430152B8840206187A0A814EDDEC_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, const RuntimeMethod* method); // System.Boolean BestHTTP.HTTPRequest::get_EnableTimoutForStreaming() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool HTTPRequest_get_EnableTimoutForStreaming_mA90CAD3374841A5B3BEE2B541B9694525CD14A83_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, const RuntimeMethod* method); // System.DateTime BestHTTP.ConnectionBase::get_StartTime() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ConnectionBase_get_StartTime_mA5F36FECF0F5BC4687B2881C1BEC2955823E45EA_inline (ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57 * __this, const RuntimeMethod* method); // System.TimeSpan BestHTTP.HTTPRequest::get_Timeout() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 HTTPRequest_get_Timeout_mB8A6760120AE1234789C197E64EDF190730C5019_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, const RuntimeMethod* method); // System.Boolean System.TimeSpan::op_GreaterThan(System.TimeSpan,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeSpan_op_GreaterThan_m2D4C46D810B02CAA65335A1AB9053AE45875BA18 (TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___t10, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___t21, const RuntimeMethod* method); // System.DateTime BestHTTP.ConnectionBase::get_TimedOutStart() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ConnectionBase_get_TimedOutStart_m38F4B40B8558D4D1D7A16D4A6AF7A77EC0F31D4A_inline (ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57 * __this, const RuntimeMethod* method); // System.TimeSpan System.TimeSpan::FromMilliseconds(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 TimeSpan_FromMilliseconds_m12D90542B044C450FDFBCEA1CBC32369479483EC (double ___value0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPManager::RecycleConnection(BestHTTP.ConnectionBase) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPManager_RecycleConnection_m01BC9F15C3BC03C22158FDDA8768B88F3763736E (ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57 * ___conn0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::FinishStreaming() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPRequest_FinishStreaming_m323095382BD30094FD0AD7869B4C18609BF4C37A (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, const RuntimeMethod* method); // System.Void BestHTTP.ConnectionBase::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionBase_Dispose_m915CDB290E2507201B67BC89947B6776E51F752A (ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::Clear() inline void List_1_Clear_mEAEE031CF4C02B7C3B20261D0523359BA8373EED (List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836 * __this, const RuntimeMethod* method) { (( void (*) (List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836 *, const RuntimeMethod*))List_1_Clear_m5FB5A9C59D8625FDFB06876C4D8848F0F07ABFD0_gshared)(__this, method); } // System.String BestHTTP.ConnectionBase::get_ServerAddress() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* ConnectionBase_get_ServerAddress_mA6E4CBE2AC1D53B96029F36A7302A77C733FD62D_inline (ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::RemoveAt(System.Int32) inline void List_1_RemoveAt_mCFE82F08442BCF9908F040F38051C8183BA738DC (List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836 * __this, int32_t ___index0, const RuntimeMethod* method) { (( void (*) (List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836 *, int32_t, const RuntimeMethod*))List_1_RemoveAt_m66148860899ECCAE9B323372032BFC1C255393D2_gshared)(__this, ___index0, method); } // System.Boolean BestHTTP.HTTPManager::CanProcessFromQueue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HTTPManager_CanProcessFromQueue_m8A35B98EF8972BE45C1877505DF6151E5F54FA2F (const RuntimeMethod* method); // System.Void System.Predicate`1::.ctor(System.Object,System.IntPtr) inline void Predicate_1__ctor_mA0EC6ACCA11889E7D2C8E0D08C1242EECEF5E64E (Predicate_1_tC838A5EB8B3B9289CB9C0A2CF1806336669C565A * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Predicate_1_tC838A5EB8B3B9289CB9C0A2CF1806336669C565A *, RuntimeObject *, intptr_t, const RuntimeMethod*))Predicate_1__ctor_m3F41E32C976C3C48B3FC63FBFD3FBBC5B5F23EDD_gshared)(__this, ___object0, ___method1, method); } // !0 System.Collections.Generic.List`1::Find(System.Predicate`1) inline HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * List_1_Find_m96A4E687D1529B7DAA06B26C747EB64F5B6A9850 (List_1_t406EC705E72137D2240DC7D4E2B21A200546B181 * __this, Predicate_1_tC838A5EB8B3B9289CB9C0A2CF1806336669C565A * ___match0, const RuntimeMethod* method) { return (( HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * (*) (List_1_t406EC705E72137D2240DC7D4E2B21A200546B181 *, Predicate_1_tC838A5EB8B3B9289CB9C0A2CF1806336669C565A *, const RuntimeMethod*))List_1_Find_mF6189FA7C00C1CE54D074CA76B798288DB60452B_gshared)(__this, ___match0, method); } // System.Void System.Comparison`1::.ctor(System.Object,System.IntPtr) inline void Comparison_1__ctor_m33AFA64B4FDDEA55E5745E9DCEDA1571455B4FCF (Comparison_1_t97B2A8BC9742CE824022B71E5E5A340C030DADC4 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Comparison_1_t97B2A8BC9742CE824022B71E5E5A340C030DADC4 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Comparison_1__ctor_mDE1798563694D30022D3B7E1010347C573690B4A_gshared)(__this, ___object0, ___method1, method); } // System.Void System.Collections.Generic.List`1::Sort(System.Comparison`1) inline void List_1_Sort_m65189F683C677C96AAAF621490DBCD6E82BE7470 (List_1_t406EC705E72137D2240DC7D4E2B21A200546B181 * __this, Comparison_1_t97B2A8BC9742CE824022B71E5E5A340C030DADC4 * ___comparison0, const RuntimeMethod* method) { (( void (*) (List_1_t406EC705E72137D2240DC7D4E2B21A200546B181 *, Comparison_1_t97B2A8BC9742CE824022B71E5E5A340C030DADC4 *, const RuntimeMethod*))List_1_Sort_m8DB96FBD4690CB659B48155D5B7BBF8CE21E6DF0_gshared)(__this, ___comparison0, method); } // !0[] System.Collections.Generic.List`1::ToArray() inline HTTPRequestU5BU5D_t07CB6A710CA439BDB33EC53845374F01CEAF53BD* List_1_ToArray_m2C6B2445AAC353C8DEF6A9C18918C5642E70D327 (List_1_t406EC705E72137D2240DC7D4E2B21A200546B181 * __this, const RuntimeMethod* method) { return (( HTTPRequestU5BU5D_t07CB6A710CA439BDB33EC53845374F01CEAF53BD* (*) (List_1_t406EC705E72137D2240DC7D4E2B21A200546B181 *, const RuntimeMethod*))List_1_ToArray_mC6E0B3CF74090974475F845BF79EC5E66D3A71AC_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1::Clear() inline void List_1_Clear_m3BF601B0ABC487F7D60DCAD4CEF8CE6363C0FE3C (List_1_t406EC705E72137D2240DC7D4E2B21A200546B181 * __this, const RuntimeMethod* method) { (( void (*) (List_1_t406EC705E72137D2240DC7D4E2B21A200546B181 *, const RuntimeMethod*))List_1_Clear_m5FB5A9C59D8625FDFB06876C4D8848F0F07ABFD0_gshared)(__this, method); } // System.Void BestHTTP.Extensions.HeartbeatManager::Update() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HeartbeatManager_Update_m24CA260209DA30B93FFBEC7FB25DD763AEC52807 (HeartbeatManager_tC2289824FFCE494A74441E065011CD0E66C2134E * __this, const RuntimeMethod* method); // System.Void BestHTTP.Extensions.VariableSizedBufferPool::Maintain() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VariableSizedBufferPool_Maintain_m4AECD20234C94553920DD0E360F8F7D039523F7F (const RuntimeMethod* method); // System.Void BestHTTP.HTTPManager::set_IsQuitting(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPManager_set_IsQuitting_m80019BB0A62D9DDE541B62C2AD7E36465D41648B_inline (bool ___value0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPManager::AbortAll(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPManager_AbortAll_m06033DAFDC7EBC6E07E24C71F09C67197C141CFA (bool ___allowCallbacks0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPManager::OnUpdate() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPManager_OnUpdate_m64152318A790D491DC9D8A7454956AC5AFDEE8B1 (const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::set_Callback(BestHTTP.OnRequestFinishedDelegate) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPRequest_set_Callback_mFF8B458F232390A69C19361510FC68B7B7486D01_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, OnRequestFinishedDelegate_t4E35BB5277ED27A8B43D1987DE7F3B47772018B4 * ___value0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::Abort() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPRequest_Abort_mD093C17FDF52A73A6762C4D1959B86F0464773BE (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, const RuntimeMethod* method); // System.Collections.Generic.List`1/Enumerator System.Collections.Generic.List`1::GetEnumerator() inline Enumerator_t0AF7A66000F7E39648996AE89592D1895291B243 List_1_GetEnumerator_mCC778581E696F17E42852966AE2D9E1743BC9A12 (List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836 * __this, const RuntimeMethod* method) { return (( Enumerator_t0AF7A66000F7E39648996AE89592D1895291B243 (*) (List_1_t0DB1C0A58B442F90F8A61BBD77B8A7B61715B836 *, const RuntimeMethod*))List_1_GetEnumerator_m6339FC2D3D1CE4FA13CF21C7F9FC58CA4441BF0C_gshared)(__this, method); } // !0 System.Collections.Generic.List`1/Enumerator::get_Current() inline ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57 * Enumerator_get_Current_m4A9B5BE1C9915825C5AED167289AF4F811351505_inline (Enumerator_t0AF7A66000F7E39648996AE89592D1895291B243 * __this, const RuntimeMethod* method) { return (( ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57 * (*) (Enumerator_t0AF7A66000F7E39648996AE89592D1895291B243 *, const RuntimeMethod*))Enumerator_get_Current_m4C91D0E84532DF10C654917487D82CB0AB27693B_gshared_inline)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator::MoveNext() inline bool Enumerator_MoveNext_m4AC84B66B8C5E86880751C01215E6C7FBA767FE7 (Enumerator_t0AF7A66000F7E39648996AE89592D1895291B243 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t0AF7A66000F7E39648996AE89592D1895291B243 *, const RuntimeMethod*))Enumerator_MoveNext_m2E56233762839CE55C67E00AC8DD3D4D3F6C0DF0_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator::Dispose() inline void Enumerator_Dispose_mA8A9E39DB90D0771F7856CB497CC98E75295CC04 (Enumerator_t0AF7A66000F7E39648996AE89592D1895291B243 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t0AF7A66000F7E39648996AE89592D1895291B243 *, const RuntimeMethod*))Enumerator_Dispose_mCFB225D9E5E597A1CC8F958E53BEA1367D8AC7B8_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2>::Clear() inline void Dictionary_2_Clear_mA8A41744E441E2892693FC8CF7C0B8525A5827A7 (Dictionary_2_t3CA977FBCA3158664D7AB53A25D36155F805ABB3 * __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t3CA977FBCA3158664D7AB53A25D36155F805ABB3 *, const RuntimeMethod*))Dictionary_2_Clear_m883E91BB19072DD91E8FA3BEDA31D0FA095667EA_gshared)(__this, method); } // System.Void BestHTTP.Forms.HTTPFormBase::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPFormBase__ctor_m4D6A03CACF718F039939460052E10BD7C7FC9023 (HTTPFormBase_t62B2F52574B8465343CE4B246C6021BC42A45BF2 * __this, const RuntimeMethod* method); // System.String System.Int32::ToString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m5398ED0B6625B75CAF70C63B3CF2CE47D3C1B184 (int32_t* __this, String_t* ___format0, const RuntimeMethod* method); // System.Void BestHTTP.Extensions.BufferPoolMemoryStream::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BufferPoolMemoryStream__ctor_mFD5AAB679C5DC7B5CED7AC16368A20FFB892543E (BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B * __this, const RuntimeMethod* method); // !0 System.Collections.Generic.List`1::get_Item(System.Int32) inline HTTPFieldData_t6D10CC260BB01415CE5644EAC56F0E4785C7C16E * List_1_get_Item_mF4F6719718719560F662560AC561A3AFF6B39332_inline (List_1_tAB6EE9557BF734F9EF011194835DEFD04B650ACD * __this, int32_t ___index0, const RuntimeMethod* method) { return (( HTTPFieldData_t6D10CC260BB01415CE5644EAC56F0E4785C7C16E * (*) (List_1_tAB6EE9557BF734F9EF011194835DEFD04B650ACD *, int32_t, const RuntimeMethod*))List_1_get_Item_m7B5E3383CB67492E573AC0D875ED82A51350F188_gshared_inline)(__this, ___index0, method); } // System.Void BestHTTP.Extensions.Extensions::WriteLine(BestHTTP.Extensions.BufferPoolMemoryStream,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Extensions_WriteLine_mBBD917D23A98E0CC1E5B911EFA2DA3902C82420A (BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B * ___ms0, String_t* ___str1, const RuntimeMethod* method); // System.String BestHTTP.Forms.HTTPFieldData::get_Name() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* HTTPFieldData_get_Name_mDC8897581119ADA3E58A77E3A9A62A8D0A05897E_inline (HTTPFieldData_t6D10CC260BB01415CE5644EAC56F0E4785C7C16E * __this, const RuntimeMethod* method); // System.String BestHTTP.Forms.HTTPFieldData::get_FileName() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* HTTPFieldData_get_FileName_mB551D4158351C317D8EE18CE58C73B5FEB675DB4_inline (HTTPFieldData_t6D10CC260BB01415CE5644EAC56F0E4785C7C16E * __this, const RuntimeMethod* method); // System.String BestHTTP.Forms.HTTPFieldData::get_MimeType() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* HTTPFieldData_get_MimeType_m846AACEA3D183CFC5CE6AC7D99DCF2FFFFE96395_inline (HTTPFieldData_t6D10CC260BB01415CE5644EAC56F0E4785C7C16E * __this, const RuntimeMethod* method); // System.Byte[] BestHTTP.Forms.HTTPFieldData::get_Payload() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* HTTPFieldData_get_Payload_m1154CF5C9625A65E673C8D2902379C50899C0E16 (HTTPFieldData_t6D10CC260BB01415CE5644EAC56F0E4785C7C16E * __this, const RuntimeMethod* method); // System.Void BestHTTP.Extensions.Extensions::WriteLine(BestHTTP.Extensions.BufferPoolMemoryStream) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Extensions_WriteLine_m1E785CD1CACB2A023FD4A7B73FA56FBAA02E3F64 (BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B * ___ms0, const RuntimeMethod* method); // System.Byte[] BestHTTP.Extensions.BufferPoolMemoryStream::ToArray() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* BufferPoolMemoryStream_ToArray_mD16D6B23D6B78424183FE3C65E4BDB4CE31CA27F (BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B * __this, const RuntimeMethod* method); // System.Void BestHTTP.WebSocket.WebSocketResponse::.ctor(BestHTTP.HTTPRequest,System.IO.Stream,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebSocketResponse__ctor_m1825573BE563672CB0DC760C39191BF4AB9A6A47 (WebSocketResponse_tBFF22330A397E15C5849F83779F881AFC6EE8CDF * __this, HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * ___request0, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___stream1, bool ___isStreamed2, bool ___isFromCache3, const RuntimeMethod* method); // System.Void BestHTTP.ServerSentEvents.EventSourceResponse::.ctor(BestHTTP.HTTPRequest,System.IO.Stream,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSourceResponse__ctor_mE8C22894FEE2396B24882DA37917200F43F5ED7C (EventSourceResponse_t8DF68E0CA897F157917279A5863C7A8730E5524A * __this, HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * ___request0, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___stream1, bool ___isStreamed2, bool ___isFromCache3, const RuntimeMethod* method); // System.Void BestHTTP.Extensions.ReadOnlyBufferedStream::.ctor(System.IO.Stream) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyBufferedStream__ctor_m810DB40EFB540C69D63A29C0C80FA3E6E2D696C2 (ReadOnlyBufferedStream_tD77D50B2DC8D878C4C3960DD5EE5AEBB73439D34 * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___nstream0, const RuntimeMethod* method); // System.String System.String::ToLowerInvariant() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_ToLowerInvariant_m070E99F11A6005755BD6579A6CC835694395F79F (String_t* __this, const RuntimeMethod* method); // System.Void BestHTTP.HTTPProxy::.ctor(System.Uri,BestHTTP.Authentication.Credentials,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPProxy__ctor_mBC15065465E8041E427525A9F7FB44A2293FFA11 (HTTPProxy_tFC2D52414714BA2872C2308AC3BCDB4AF918C51E * __this, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___address0, Credentials_tD6C60AC7DFFD64212481FBCB4AF02846196F5CE8 * ___credentials1, bool ___isTransparent2, const RuntimeMethod* method); // System.Void BestHTTP.HTTPProxy::.ctor(System.Uri,BestHTTP.Authentication.Credentials,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPProxy__ctor_m75149B97A383BEDB91D8E31591EFAA23C7F3D259 (HTTPProxy_tFC2D52414714BA2872C2308AC3BCDB4AF918C51E * __this, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___address0, Credentials_tD6C60AC7DFFD64212481FBCB4AF02846196F5CE8 * ___credentials1, bool ___isTransparent2, bool ___sendWholeUri3, const RuntimeMethod* method); // System.Void BestHTTP.HTTPProxy::.ctor(System.Uri,BestHTTP.Authentication.Credentials,System.Boolean,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPProxy__ctor_mA382D6BD70791E7FD47F07DEA9DB3DFF9F73793F (HTTPProxy_tFC2D52414714BA2872C2308AC3BCDB4AF918C51E * __this, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___address0, Credentials_tD6C60AC7DFFD64212481FBCB4AF02846196F5CE8 * ___credentials1, bool ___isTransparent2, bool ___sendWholeUri3, bool ___nonTransparentForHTTPS4, const RuntimeMethod* method); // System.Void BestHTTP.Proxy::.ctor(System.Uri,BestHTTP.Authentication.Credentials) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Proxy__ctor_m5E68D31619E9B2B3426B10D5EDC716E9E2AFBC8E (Proxy_t84F0DDAE5A37016479C7094FFB8F78835B8BD4F6 * __this, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___address0, Credentials_tD6C60AC7DFFD64212481FBCB4AF02846196F5CE8 * ___credentials1, const RuntimeMethod* method); // System.Void BestHTTP.HTTPProxy::set_IsTransparent(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPProxy_set_IsTransparent_mF75AB7A700CC1BD5C190A644222C2C9A230C9507_inline (HTTPProxy_tFC2D52414714BA2872C2308AC3BCDB4AF918C51E * __this, bool ___value0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPProxy::set_SendWholeUri(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPProxy_set_SendWholeUri_m116C5037F6B27C7B379FA0F23595D742CA55FAD6_inline (HTTPProxy_tFC2D52414714BA2872C2308AC3BCDB4AF918C51E * __this, bool ___value0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPProxy::set_NonTransparentForHTTPS(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPProxy_set_NonTransparentForHTTPS_m1F08D26B4223ABB78807B564E242AC376247EAD3_inline (HTTPProxy_tFC2D52414714BA2872C2308AC3BCDB4AF918C51E * __this, bool ___value0, const RuntimeMethod* method); // System.Boolean BestHTTP.HTTPProxy::get_SendWholeUri() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool HTTPProxy_get_SendWholeUri_m4364FEF63EAA7FB01200CBAD3B03AC72F3BB1C7C_inline (HTTPProxy_tFC2D52414714BA2872C2308AC3BCDB4AF918C51E * __this, const RuntimeMethod* method); // System.String BestHTTP.Extensions.Extensions::GetRequestPathAndQueryURL(System.Uri) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Extensions_GetRequestPathAndQueryURL_m619A1B3BF9E17F16BA55B9B5AD36A47D5F7445E6 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri0, const RuntimeMethod* method); // System.String System.Uri::get_OriginalString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_OriginalString_mBD94B4BB84AE9C051C1CA8BA33C14D5BAD25B0AC (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method); // System.Boolean BestHTTP.HTTPProxy::get_IsTransparent() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool HTTPProxy_get_IsTransparent_mFE621132237F90285CC55CBC4520931E07660BA2_inline (HTTPProxy_tFC2D52414714BA2872C2308AC3BCDB4AF918C51E * __this, const RuntimeMethod* method); // System.Boolean BestHTTP.HTTPProxy::get_NonTransparentForHTTPS() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool HTTPProxy_get_NonTransparentForHTTPS_mC7F73CC0342B10C02F980C4ADC4DA3839EC2E2C1_inline (HTTPProxy_tFC2D52414714BA2872C2308AC3BCDB4AF918C51E * __this, const RuntimeMethod* method); // System.Void BestHTTP.Extensions.WriteOnlyBufferedStream::.ctor(System.IO.Stream,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WriteOnlyBufferedStream__ctor_m064E465F4D4916582E9F4429109F959074C4BC8E (WriteOnlyBufferedStream_tFF439EC9711DB5912AB954E51F6122E21A348F14 * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___stream0, int32_t ___bufferSize1, const RuntimeMethod* method); // System.Void System.IO.BinaryWriter::.ctor(System.IO.Stream,System.Text.Encoding) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryWriter__ctor_mCA19225B5842FB12C01B5C8F91A3FB3E5CB1F497 (BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___output0, Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___encoding1, const RuntimeMethod* method); // System.Void BestHTTP.Extensions.Extensions::SendAsASCII(System.IO.BinaryWriter,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Extensions_SendAsASCII_m9AEE26F8FB9D520012A2E10BA544B459E0D44DB0 (BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * ___stream0, String_t* ___str1, const RuntimeMethod* method); // BestHTTP.Authentication.AuthenticationTypes BestHTTP.Authentication.Credentials::get_Type() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Credentials_get_Type_m05D808ECD7BF95531F317CEA0F66FBFCD344D384_inline (Credentials_tD6C60AC7DFFD64212481FBCB4AF02846196F5CE8 * __this, const RuntimeMethod* method); // System.String BestHTTP.Authentication.Credentials::get_UserName() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* Credentials_get_UserName_m0E433C7364AF87FA9DE5F186207C9B3D67A5F19F_inline (Credentials_tD6C60AC7DFFD64212481FBCB4AF02846196F5CE8 * __this, const RuntimeMethod* method); // System.String BestHTTP.Authentication.Credentials::get_Password() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* Credentials_get_Password_m2103AC3CE5EFC8EFAAF5F411D7333225BE69C847_inline (Credentials_tD6C60AC7DFFD64212481FBCB4AF02846196F5CE8 * __this, const RuntimeMethod* method); // System.String System.Convert::ToBase64String(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Convert_ToBase64String_mE6E1FE504EF1E99DB2F8B92180A82A5F1512EF6A (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___inArray0, const RuntimeMethod* method); // System.Byte[] BestHTTP.Extensions.Extensions::GetASCIIBytes(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* Extensions_GetASCIIBytes_mD7511286A9AA72F2F58A54857ACA63548127CAE2 (String_t* ___str0, const RuntimeMethod* method); // BestHTTP.Authentication.Digest BestHTTP.Authentication.DigestStore::Get(System.Uri) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Digest_tECBB0FFA62FFE1D74BB3E5FD1C60635385FCE734 * DigestStore_Get_mA613DBE6A695CA42E0F6B95FAD6ABBEE101ED3BE (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri0, const RuntimeMethod* method); // System.String BestHTTP.Authentication.Digest::GenerateResponseHeader(BestHTTP.HTTPRequest,BestHTTP.Authentication.Credentials,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Digest_GenerateResponseHeader_mE6F5D60635CFE927281EA659CA41161E58644723 (Digest_tECBB0FFA62FFE1D74BB3E5FD1C60635385FCE734 * __this, HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * ___request0, Credentials_tD6C60AC7DFFD64212481FBCB4AF02846196F5CE8 * ___credentials1, bool ___isProxy2, const RuntimeMethod* method); // System.Void BestHTTP.Extensions.VariableSizedBufferPool::Release(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VariableSizedBufferPool_Release_m7CE32B3F6F1BE1379CFA6F8DCE25378F6BF48221 (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___buffer0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::set_ProxyResponse(BestHTTP.HTTPResponse) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPRequest_set_ProxyResponse_mDBBC2BFEF2B4481B13516BCF99D2DEFA1FAA1323_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * ___value0, const RuntimeMethod* method); // BestHTTP.HTTPResponse BestHTTP.HTTPRequest::get_ProxyResponse() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * HTTPRequest_get_ProxyResponse_m2F5E8B66218CB3FD8E6FE84C61AA6C4C4450AB08_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, const RuntimeMethod* method); // System.String BestHTTP.HTTPResponse::get_DataAsText() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* HTTPResponse_get_DataAsText_mE627F5169E5E8FCD960C0503DAC684E82CF38ECA (HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * __this, const RuntimeMethod* method); // System.Boolean BestHTTP.HTTPResponse::get_IsSuccess() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HTTPResponse_get_IsSuccess_m8DF99D28A8D0B0C58F7C496DA07782BE17A2E37C (HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * __this, const RuntimeMethod* method); // System.Void BestHTTP.HTTPRange::set_ContentLength(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPRange_set_ContentLength_m83BA0DA962E05062D1F77A35A7E709D19381F313_inline (HTTPRange_t20F26AB96B01FD02CEFFC27DC68C91383CF6C16B * __this, int32_t ___value0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPRange::set_IsValid(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPRange_set_IsValid_mF271F40ABF225486CE4F3E23F1A354AC987A31AF_inline (HTTPRange_t20F26AB96B01FD02CEFFC27DC68C91383CF6C16B * __this, bool ___value0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPRange::set_FirstBytePos(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPRange_set_FirstBytePos_mA17F10BD64E8CF1253D552153B163D5CA826ED38_inline (HTTPRange_t20F26AB96B01FD02CEFFC27DC68C91383CF6C16B * __this, int32_t ___value0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPRange::set_LastBytePos(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPRange_set_LastBytePos_mCAA2B4B0082FC73AEC9DA63C286BB322FD0D88D8_inline (HTTPRange_t20F26AB96B01FD02CEFFC27DC68C91383CF6C16B * __this, int32_t ___value0, const RuntimeMethod* method); // System.Int32 BestHTTP.HTTPRange::get_FirstBytePos() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t HTTPRange_get_FirstBytePos_m01721F0C9148AB6EA30118E83F8C17CA093AFD7F_inline (HTTPRange_t20F26AB96B01FD02CEFFC27DC68C91383CF6C16B * __this, const RuntimeMethod* method); // System.Int32 BestHTTP.HTTPRange::get_LastBytePos() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t HTTPRange_get_LastBytePos_mBD344AEABE0021BE1CCF2A06F3DA7EDF3F0D540E_inline (HTTPRange_t20F26AB96B01FD02CEFFC27DC68C91383CF6C16B * __this, const RuntimeMethod* method); // System.Int32 BestHTTP.HTTPRange::get_ContentLength() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t HTTPRange_get_ContentLength_m7AE16DCA4825526E540E347D1CFEF92FE0CA85C5_inline (HTTPRange_t20F26AB96B01FD02CEFFC27DC68C91383CF6C16B * __this, const RuntimeMethod* method); // System.Boolean BestHTTP.HTTPRange::get_IsValid() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool HTTPRange_get_IsValid_mDA45856BB6A2EB9BD61E5843172A538E0FD7AD0E_inline (HTTPRange_t20F26AB96B01FD02CEFFC27DC68C91383CF6C16B * __this, const RuntimeMethod* method); // System.Void System.NotSupportedException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90 (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::.ctor() inline void List_1__ctor_m403163EDF30C0B6621D620F9F0789E9A07CECCFC (List_1_tF9D8E572A8599785D6C36AD7BDC592752B89E0A1 * __this, const RuntimeMethod* method) { (( void (*) (List_1_tF9D8E572A8599785D6C36AD7BDC592752B89E0A1 *, const RuntimeMethod*))List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared)(__this, method); } // System.Delegate System.Delegate::Remove(System.Delegate,System.Delegate) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Delegate_t * Delegate_Remove_m8B4AD17254118B2904720D55C9B34FB3DCCBD7D4 (Delegate_t * ___source0, Delegate_t * ___value1, const RuntimeMethod* method); // System.Boolean BestHTTP.HTTPRequest::get_UseUploadStreamLength() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool HTTPRequest_get_UseUploadStreamLength_mA51F9DD2EF0F7C5744EEE51FB6582EBFB4D27B4A_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, const RuntimeMethod* method); // System.Boolean BestHTTP.HTTPManager::get_KeepAliveDefaultValue() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool HTTPManager_get_KeepAliveDefaultValue_mE2EAB43830F3648ED2B1D71A59709E33A3AC9585_inline (const RuntimeMethod* method); // System.Boolean BestHTTP.HTTPManager::get_IsCachingDisabled() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool HTTPManager_get_IsCachingDisabled_m327A485D8A3A9BA184F4061D8A84A88137E6A656_inline (const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::set_Uri(System.Uri) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPRequest_set_Uri_m893183CA5EA690FB7C4866D9F6DCE8FA20D0FAF5_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___value0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::set_MethodType(BestHTTP.HTTPMethods) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPRequest_set_MethodType_mD42A6465088C735F47AEBE5081E4DF9D13A6257D_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, uint8_t ___value0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::set_IsKeepAlive(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPRequest_set_IsKeepAlive_m2F5DA8B1300DA3B9A1112B9D9D4B9732899A4D28 (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, bool ___value0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::set_DisableCache(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPRequest_set_DisableCache_m7FF877063A703DC79DCD5EB1DE3CC3E964707343 (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, bool ___value0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::set_StreamFragmentSize(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPRequest_set_StreamFragmentSize_mC1FEB4D8020ED43DAA1D03B2736B32BEBA60A88B (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, int32_t ___value0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::set_MaxFragmentQueueLength(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPRequest_set_MaxFragmentQueueLength_m52AE1D98F59A6D1E83EF7EA4C0A3AB214A14FC64_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, int32_t ___value0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::set_DisableRetry(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPRequest_set_DisableRetry_m86128201E93DF4B8F3FDB048878FDEBE8E321A73_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, bool ___value0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::set_MaxRedirects(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPRequest_set_MaxRedirects_m9CE5DB122A19CA928D656D4E9F4E1E7B7390A4A2_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, int32_t ___value0, const RuntimeMethod* method); // System.Boolean BestHTTP.HTTPManager::get_IsCookiesEnabled() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool HTTPManager_get_IsCookiesEnabled_m7AE64B585A176B098DA082B15061EE51FC04C940_inline (const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::set_IsCookiesEnabled(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPRequest_set_IsCookiesEnabled_m74461618FFCDC67F0A8C2238D1E7BD9596116ABA_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, bool ___value0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::set_DownloadLength(System.Int64) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPRequest_set_DownloadLength_mC263A6A15406B851823CCC4CEB71AF42D8C36F05_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, int64_t ___value0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::set_Downloaded(System.Int64) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPRequest_set_Downloaded_m865C60EE06E6410693D1E009BD51F2AFAE5207B0_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, int64_t ___value0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::set_DownloadProgressChanged(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPRequest_set_DownloadProgressChanged_m3A92431C12D78ADB8D759B5E8CEE59A40AB8C666_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, bool ___value0, const RuntimeMethod* method); // System.TimeSpan BestHTTP.HTTPManager::get_ConnectTimeout() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 HTTPManager_get_ConnectTimeout_mF0B2EF3FB9DDE61E89DCC202037FE1A164E83E4B_inline (const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::set_ConnectTimeout(System.TimeSpan) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPRequest_set_ConnectTimeout_mF3E4D71B1E87852718E4373932E254C51620E9A2_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___value0, const RuntimeMethod* method); // System.TimeSpan BestHTTP.HTTPManager::get_RequestTimeout() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 HTTPManager_get_RequestTimeout_m9534B0163B7BAF192399FA9BC84161B457F717F6_inline (const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::set_Timeout(System.TimeSpan) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPRequest_set_Timeout_m8D757C7A7D43D11A56BB63A7C4772B8AF03DF0A7_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___value0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::set_EnableTimoutForStreaming(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPRequest_set_EnableTimoutForStreaming_mF124260A45415A34523F8EDBE2A32428C0CAB7B3_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, bool ___value0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::set_EnableSafeReadOnUnknownContentLength(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPRequest_set_EnableSafeReadOnUnknownContentLength_m28C1963642AD27A56A572AE4EEFA31A614708E38_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, bool ___value0, const RuntimeMethod* method); // BestHTTP.Proxy BestHTTP.HTTPManager::get_Proxy() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Proxy_t84F0DDAE5A37016479C7094FFB8F78835B8BD4F6 * HTTPManager_get_Proxy_mD95EEFBF3CC7E81129B1E1FD88B09BF5D6F359C3_inline (const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::set_Proxy(BestHTTP.Proxy) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPRequest_set_Proxy_mBA6CA5AB24EDD4700FD16C57C004A62AEE770103_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, Proxy_t84F0DDAE5A37016479C7094FFB8F78835B8BD4F6 * ___value0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::set_UseUploadStreamLength(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPRequest_set_UseUploadStreamLength_m79FC74602D350516B1642D432662E9DDA7C45D08_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, bool ___value0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::set_DisposeUploadStream(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPRequest_set_DisposeUploadStream_m04CEC50307CB46D442F4ED97D7AC27DB8452F002_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, bool ___value0, const RuntimeMethod* method); // Org.BouncyCastle.Crypto.Tls2.ICertificateVerifyer BestHTTP.HTTPManager::get_DefaultCertificateVerifyer() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* HTTPManager_get_DefaultCertificateVerifyer_m647EA5D067DCCD9B86CE0ACF1F2D665ED292A3BD_inline (const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::set_CustomCertificateVerifyer(Org.BouncyCastle.Crypto.Tls2.ICertificateVerifyer) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPRequest_set_CustomCertificateVerifyer_mF0CFDCDC4ADB0EC4CA94B5672948913B6B199A89_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, RuntimeObject* ___value0, const RuntimeMethod* method); // Org.BouncyCastle.Crypto.Tls2.IClientCredentialsProvider BestHTTP.HTTPManager::get_DefaultClientCredentialsProvider() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* HTTPManager_get_DefaultClientCredentialsProvider_m4C9A1D4C3455AB5B198CF3CC657AA02731E8A09D_inline (const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::set_CustomClientCredentialsProvider(Org.BouncyCastle.Crypto.Tls2.IClientCredentialsProvider) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPRequest_set_CustomClientCredentialsProvider_mBC52F4217C5C556ED5199BC4C7E6A1AF1378012F_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, RuntimeObject* ___value0, const RuntimeMethod* method); // System.Boolean BestHTTP.HTTPManager::get_UseAlternateSSLDefaultValue() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool HTTPManager_get_UseAlternateSSLDefaultValue_mCA1439438B743FB5BD90DDD6593E5362D44B25CE_inline (const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::set_UseAlternateSSL(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPRequest_set_UseAlternateSSL_m85547C20BBEBE6575E5FA90CF9D38D53CEE7D81B_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, bool ___value0, const RuntimeMethod* method); // System.Func`4 BestHTTP.HTTPManager::get_DefaultCertificationValidator() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Func_4_t0EA5243FC4B656A18B7AC7B130FD78666AA9FE84 * HTTPManager_get_DefaultCertificationValidator_mC86B0FF1E706CDF4AFB8AEB3A4B9C48D92ABA00D_inline (const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::add_CustomCertificationValidator(System.Func`4) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPRequest_add_CustomCertificationValidator_m8010C00F9CB2A3AA53CEBAE734FB796494540B56 (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, Func_4_t0EA5243FC4B656A18B7AC7B130FD78666AA9FE84 * ___value0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::set_TryToMinimizeTCPLatency(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPRequest_set_TryToMinimizeTCPLatency_m2BC27A6AA5E305A2E138EEC69344B05E7BFD811F_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, bool ___value0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::AddField(System.String,System.String,System.Text.Encoding) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPRequest_AddField_m38CD9742FFEDFC5186B51A871B853A631A0A1E0B (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, String_t* ___fieldName0, String_t* ___value1, Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___e2, const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::AddBinaryData(System.String,System.Byte[],System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPRequest_AddBinaryData_m2DCAEA78D5FD83005AB4963AFCFF3AF854C4E673 (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, String_t* ___fieldName0, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___content1, String_t* ___fileName2, String_t* ___mimeType3, const RuntimeMethod* method); // System.Boolean BestHTTP.Forms.HTTPFormBase::get_IsEmpty() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HTTPFormBase_get_IsEmpty_m8DE0CDCA313C9581FF7D532D1C5E06E053621342 (HTTPFormBase_t62B2F52574B8465343CE4B246C6021BC42A45BF2 * __this, const RuntimeMethod* method); // BestHTTP.Forms.HTTPFormUsage BestHTTP.HTTPRequest::get_FormUsage() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t HTTPRequest_get_FormUsage_mF3B4C69AA45942CB3A96D0E0714F1D697A5D33E6_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, const RuntimeMethod* method); // System.Void BestHTTP.Forms.HTTPUrlEncodedForm::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPUrlEncodedForm__ctor_m6C464432542AA9E593C94FF30E734C608D80B881 (HTTPUrlEncodedForm_t8E2BE5AB6A6F3A3D8260820746C46CA2A35572AF * __this, const RuntimeMethod* method); // System.Void BestHTTP.Forms.HTTPMultiPartForm::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPMultiPartForm__ctor_m69FB855A044D97EB10655FB495B2D4D0EE8FC781 (HTTPMultiPartForm_t495EC7057C9CBD041C4F7F5C73534368C58AB3F3 * __this, const RuntimeMethod* method); // System.Void BestHTTP.Forms.RawJsonForm::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RawJsonForm__ctor_m520E57EF2E5D957897D4077903B25F04237CEA15 (RawJsonForm_tA9605806D5AACD3A9AF70E67E907BC172AB17FA8 * __this, const RuntimeMethod* method); // System.Collections.Generic.Dictionary`2> BestHTTP.HTTPRequest::get_Headers() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086 * HTTPRequest_get_Headers_mA0E7DFD4D010822D3C06DFD7B830D6BF10EBDB78_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2>::.ctor() inline void Dictionary_2__ctor_m4BF4B650B2E69D5D783B9AE68644355C271BE54C (Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086 * __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086 *, const RuntimeMethod*))Dictionary_2__ctor_m2C8EE5C13636D67F6C451C4935049F534AEC658F_gshared)(__this, method); } // System.Void BestHTTP.HTTPRequest::set_Headers(System.Collections.Generic.Dictionary`2>) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPRequest_set_Headers_m0FF8C86B7BD337C4BEE80E65D978CE3C03E84DB7_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086 * ___value0, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2>::TryGetValue(!0,!1&) inline bool Dictionary_2_TryGetValue_mAD3BF926925BC89D9AD1ACE56DEDF384520DF88F (Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086 * __this, String_t* ___key0, List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 ** ___value1, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086 *, String_t*, List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 **, const RuntimeMethod*))Dictionary_2_TryGetValue_mE985A35FC727FA9F519564063C5C5063209ADDA8_gshared)(__this, ___key0, ___value1, method); } // System.Void System.Collections.Generic.List`1::Clear() inline void List_1_Clear_m1E4AF39A1050CD8394AA202B04F2B07267435640 (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * __this, const RuntimeMethod* method) { (( void (*) (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 *, const RuntimeMethod*))List_1_Clear_m5FB5A9C59D8625FDFB06876C4D8848F0F07ABFD0_gshared)(__this, method); } // System.Boolean System.Collections.Generic.Dictionary`2>::Remove(!0) inline bool Dictionary_2_Remove_m6C3191CCDBB413E1B3F2C92A4CC1236106BF5DE7 (Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086 * __this, String_t* ___key0, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086 *, String_t*, const RuntimeMethod*))Dictionary_2_Remove_m45DB5340BC5312349874253DD3239546CB025D21_gshared)(__this, ___key0, method); } // System.Void System.Collections.Generic.Dictionary`2>::Clear() inline void Dictionary_2_Clear_m425604D2739C474CBA676076F44F5063BD2AAB53 (Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086 * __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_tEB5D55E42E5DA520002C808F5126BAC54EE05086 *, const RuntimeMethod*))Dictionary_2_Clear_m883E91BB19072DD91E8FA3BEDA31D0FA095667EA_gshared)(__this, method); } // System.Void BestHTTP.HTTPRequest::EnumerateHeaders(BestHTTP.OnHeaderEnumerationDelegate,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPRequest_EnumerateHeaders_m5D5FA1D2DED600D1DA4320B510742D8DAE26F1F7 (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, OnHeaderEnumerationDelegate_t8569EB210DE78ADA6200BC74C9CE08E713FDE448 * ___callback0, bool ___callBeforeSendCallback1, const RuntimeMethod* method); // System.String System.Uri::get_Authority() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_Authority_m453C817B1681F5FD99431A7FDF6F11CDB9FAC093 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::AddHeader(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPRequest_AddHeader_m2C1C2FAEE3117B90CDA79E8FBD740352E8AF3D78 (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, String_t* ___name0, String_t* ___value1, const RuntimeMethod* method); // System.Byte[] BestHTTP.HTTPRequest::GetEntityBody() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* HTTPRequest_GetEntityBody_m2B09072FFC8B6FB56FAEE738B4302593FAF2C67B (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, const RuntimeMethod* method); // System.Byte[] BestHTTP.HTTPRequest::get_RawData() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* HTTPRequest_get_RawData_m2B729643CCE8ED3F0D02C8AE4D1CF391ED07E4CF_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, const RuntimeMethod* method); // BestHTTP.Forms.HTTPFormBase BestHTTP.HTTPRequest::SelectFormImplementation() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HTTPFormBase_t62B2F52574B8465343CE4B246C6021BC42A45BF2 * HTTPRequest_SelectFormImplementation_m849D8BBC4DC652B6F7FBA9A7FFD91B4EBC491654 (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, const RuntimeMethod* method); // System.Int64 BestHTTP.HTTPRequest::get_UploadStreamLength() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t HTTPRequest_get_UploadStreamLength_m430F051C12686149E4A9C758D48F828939CB93EF (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, const RuntimeMethod* method); // System.String System.Int64::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int64_ToString_m8AAA883F340993DCDF339C208F3416C3BA82589F (int64_t* __this, const RuntimeMethod* method); // System.Collections.Generic.List`1 BestHTTP.Cookies.CookieJar::Get(System.Uri) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_tF9D8E572A8599785D6C36AD7BDC592752B89E0A1 * CookieJar_Get_m4B7B8905E9969886200F48B5ED578692FEF0350D (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest/<>c__DisplayClass236_0::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass236_0__ctor_m8622778D78DAF323420091AEEE4A21D8FA2636C3 (U3CU3Ec__DisplayClass236_0_t5D73E77F88085755E0AC16CEC06D0F13B7D5F7BF * __this, const RuntimeMethod* method); // System.Void System.Predicate`1::.ctor(System.Object,System.IntPtr) inline void Predicate_1__ctor_m4A5A9332129D8DDB24986BC8B1771A0683883ADA (Predicate_1_tB4F754B3E9DEE1E0D6B5EF4F2E333344DE8909B5 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Predicate_1_tB4F754B3E9DEE1E0D6B5EF4F2E333344DE8909B5 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Predicate_1__ctor_m3F41E32C976C3C48B3FC63FBFD3FBBC5B5F23EDD_gshared)(__this, ___object0, ___method1, method); } // System.Int32 System.Collections.Generic.List`1::FindIndex(System.Predicate`1) inline int32_t List_1_FindIndex_m35106E807EBB3C70B41776AC922042C1DA8EC3C4 (List_1_tF9D8E572A8599785D6C36AD7BDC592752B89E0A1 * __this, Predicate_1_tB4F754B3E9DEE1E0D6B5EF4F2E333344DE8909B5 * ___match0, const RuntimeMethod* method) { return (( int32_t (*) (List_1_tF9D8E572A8599785D6C36AD7BDC592752B89E0A1 *, Predicate_1_tB4F754B3E9DEE1E0D6B5EF4F2E333344DE8909B5 *, const RuntimeMethod*))List_1_FindIndex_m061718A03D18B14CCA37F61408780DF866F3DE0C_gshared)(__this, ___match0, method); } // System.Void System.Collections.Generic.List`1::set_Item(System.Int32,!0) inline void List_1_set_Item_m7425E43A385CCC913D4362FD461AB5FC79DA81B3 (List_1_tF9D8E572A8599785D6C36AD7BDC592752B89E0A1 * __this, int32_t ___index0, Cookie_tC21D2404C4CCA8449C9DB970939F9DFB8CE61EC2 * ___value1, const RuntimeMethod* method) { (( void (*) (List_1_tF9D8E572A8599785D6C36AD7BDC592752B89E0A1 *, int32_t, Cookie_tC21D2404C4CCA8449C9DB970939F9DFB8CE61EC2 *, const RuntimeMethod*))List_1_set_Item_m72B622AD9BAEA821ED4FE737B1474CA1EABA4AEB_gshared)(__this, ___index0, ___value1, method); } // System.Void System.Collections.Generic.List`1::Add(!0) inline void List_1_Add_mCECCF5F790E858074AB82811CE8CC99C75E2A939 (List_1_tF9D8E572A8599785D6C36AD7BDC592752B89E0A1 * __this, Cookie_tC21D2404C4CCA8449C9DB970939F9DFB8CE61EC2 * ___item0, const RuntimeMethod* method) { (( void (*) (List_1_tF9D8E572A8599785D6C36AD7BDC592752B89E0A1 *, Cookie_tC21D2404C4CCA8449C9DB970939F9DFB8CE61EC2 *, const RuntimeMethod*))List_1_Add_mF15250BF947CA27BE9A23C08BAC6DB6F180B0EDD_gshared)(__this, ___item0, method); } // System.Collections.Generic.List`1/Enumerator System.Collections.Generic.List`1::GetEnumerator() inline Enumerator_tC257AE0EA84511152B4BBE99B18B14EDAF5DBDB1 List_1_GetEnumerator_m84BDC40E4C4696B3B76CEF72C89C66ACFEF168EB (List_1_tF9D8E572A8599785D6C36AD7BDC592752B89E0A1 * __this, const RuntimeMethod* method) { return (( Enumerator_tC257AE0EA84511152B4BBE99B18B14EDAF5DBDB1 (*) (List_1_tF9D8E572A8599785D6C36AD7BDC592752B89E0A1 *, const RuntimeMethod*))List_1_GetEnumerator_m6339FC2D3D1CE4FA13CF21C7F9FC58CA4441BF0C_gshared)(__this, method); } // !0 System.Collections.Generic.List`1/Enumerator::get_Current() inline Cookie_tC21D2404C4CCA8449C9DB970939F9DFB8CE61EC2 * Enumerator_get_Current_m3D48661EE6836BD909FCD569E1505B4536CF72FC_inline (Enumerator_tC257AE0EA84511152B4BBE99B18B14EDAF5DBDB1 * __this, const RuntimeMethod* method) { return (( Cookie_tC21D2404C4CCA8449C9DB970939F9DFB8CE61EC2 * (*) (Enumerator_tC257AE0EA84511152B4BBE99B18B14EDAF5DBDB1 *, const RuntimeMethod*))Enumerator_get_Current_m4C91D0E84532DF10C654917487D82CB0AB27693B_gshared_inline)(__this, method); } // System.Boolean BestHTTP.Cookies.Cookie::get_IsSecure() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Cookie_get_IsSecure_m14415AA0DE44F1264AECBEEC3CD000588C10A98D_inline (Cookie_tC21D2404C4CCA8449C9DB970939F9DFB8CE61EC2 * __this, const RuntimeMethod* method); // System.Void BestHTTP.Cookies.Cookie::set_LastAccess(System.DateTime) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Cookie_set_LastAccess_m851D0F1BABC53141292A889EE2CB9D40C31747B9_inline (Cookie_tC21D2404C4CCA8449C9DB970939F9DFB8CE61EC2 * __this, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___value0, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator::MoveNext() inline bool Enumerator_MoveNext_mD2556E608845386FA3A2803C2167295DB72CD7F2 (Enumerator_tC257AE0EA84511152B4BBE99B18B14EDAF5DBDB1 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tC257AE0EA84511152B4BBE99B18B14EDAF5DBDB1 *, const RuntimeMethod*))Enumerator_MoveNext_m2E56233762839CE55C67E00AC8DD3D4D3F6C0DF0_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator::Dispose() inline void Enumerator_Dispose_m4937C09419C6EA83BFBFD0A65600340CB5EE9743 (Enumerator_tC257AE0EA84511152B4BBE99B18B14EDAF5DBDB1 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tC257AE0EA84511152B4BBE99B18B14EDAF5DBDB1 *, const RuntimeMethod*))Enumerator_Dispose_mCFB225D9E5E597A1CC8F958E53BEA1367D8AC7B8_gshared)(__this, method); } // System.Void BestHTTP.OnBeforeHeaderSendDelegate::Invoke(BestHTTP.HTTPRequest) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OnBeforeHeaderSendDelegate_Invoke_mDDCC8867F3F9A8D6CF1098016151DA1C3C63F100 (OnBeforeHeaderSendDelegate_t14E6C0AF9AE042EBCE08E9B5911D7327A37DE05F * __this, HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * ___req0, const RuntimeMethod* method); // System.Void BestHTTP.OnHeaderEnumerationDelegate::Invoke(System.String,System.Collections.Generic.List`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OnHeaderEnumerationDelegate_Invoke_mD145C3B254B3E48215DC27254EEA908B39F331C3 (OnHeaderEnumerationDelegate_t8569EB210DE78ADA6200BC74C9CE08E713FDE448 * __this, String_t* ___header0, List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * ___values1, const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest/<>c__DisplayClass237_0::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass237_0__ctor_m5306C04C6FE151F4569BBDE565C3E8F550B82D77 (U3CU3Ec__DisplayClass237_0_t6E177732B76E901E21CDA82DE87FFF83EC6F96E3 * __this, const RuntimeMethod* method); // System.Void BestHTTP.OnHeaderEnumerationDelegate::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OnHeaderEnumerationDelegate__ctor_m5F257574E3B175E4978120680BC42AC33BFAA0F6 (OnHeaderEnumerationDelegate_t8569EB210DE78ADA6200BC74C9CE08E713FDE448 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Void BestHTTP.Extensions.BufferPoolMemoryStream::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BufferPoolMemoryStream__ctor_m9BAAD89884657726AF5E5AD72B76CE790D59BA9F (BufferPoolMemoryStream_tF5A986312C891B0B6B0C8C7DD3E5042938CAEB4B * __this, int32_t ___capacity0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::SendHeaders(System.IO.Stream) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPRequest_SendHeaders_m7156444FF2B2C30900C303E62A8720C39D62CEFE (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___stream0, const RuntimeMethod* method); // System.String BestHTTP.Extensions.Extensions::AsciiToString(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Extensions_AsciiToString_m11A0089A4A3507AA60147EC50F81C43149237C0D (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___bytes0, const RuntimeMethod* method); // System.Void BestHTTP.Extensions.Extensions::WriteArray(System.IO.Stream,System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Extensions_WriteArray_mDC698F50E60018D705922AE68AE791C56681741D (Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___stream0, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___array1, const RuntimeMethod* method); // System.Void System.IO.MemoryStream::.ctor(System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryStream__ctor_mA86FC905FD26E1C04DE9E35750EB42EF25B6B1D1 (MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::set_UploadLength(System.Int64) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPRequest_set_UploadLength_m146006A43974D44898A2F4837B12C735E081AB2A_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, int64_t ___value0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::set_Uploaded(System.Int64) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPRequest_set_Uploaded_mE1F86510718E3216C582C14122FD50EE37637162_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, int64_t ___value0, const RuntimeMethod* method); // System.Byte[] BestHTTP.Extensions.VariableSizedBufferPool::Get(System.Int64,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* VariableSizedBufferPool_Get_m8BC3BE4646FF90AAAAE5A5A298A893A5FDCBE5FF (int64_t ___size0, bool ___canBeLarger1, const RuntimeMethod* method); // System.Int64 BestHTTP.HTTPRequest::get_Uploaded() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t HTTPRequest_get_Uploaded_m1215F052F1827765DC1C127692A67E97704B835F_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::set_UploadProgressChanged(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void HTTPRequest_set_UploadProgressChanged_mFD1BFFD62CDC378E971F44013510A55CA0C7C9FB_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, bool ___value0, const RuntimeMethod* method); // System.Boolean BestHTTP.HTTPRequest::get_DisposeUploadStream() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool HTTPRequest_get_DisposeUploadStream_m1E6D6705FEA4EA6C80441820D59F1C1B282D195A_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, const RuntimeMethod* method); // System.Void BestHTTP.OnRequestFinishedDelegate::Invoke(BestHTTP.HTTPRequest,BestHTTP.HTTPResponse) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OnRequestFinishedDelegate_Invoke_m6E30BC2B81AE6087669122560341324931B4F44B (OnRequestFinishedDelegate_t4E35BB5277ED27A8B43D1987DE7F3B47772018B4 * __this, HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * ___originalRequest0, HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * ___response1, const RuntimeMethod* method); // BestHTTP.OnRequestFinishedDelegate BestHTTP.HTTPRequest::get_Callback() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR OnRequestFinishedDelegate_t4E35BB5277ED27A8B43D1987DE7F3B47772018B4 * HTTPRequest_get_Callback_mE77E9CF591D6D3A43DAD1CB70D62C65CEC1CC02F_inline (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, const RuntimeMethod* method); // System.Boolean BestHTTP.OnBeforeRedirectionDelegate::Invoke(BestHTTP.HTTPRequest,BestHTTP.HTTPResponse,System.Uri) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool OnBeforeRedirectionDelegate_Invoke_mA146B35D71FB2D156C43D38948F101D8329D0672 (OnBeforeRedirectionDelegate_t81B75D27201DA4FD218ADB97B6FCF92A176AE238 * __this, HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * ___originalRequest0, HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * ___response1, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___redirectUri2, const RuntimeMethod* method); // System.Void BestHTTP.HTTPResponse::FinishStreaming() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPResponse_FinishStreaming_mF027E23E5C865161A41205A935F1D2B1FB47D62E (HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * __this, const RuntimeMethod* method); // !3 System.Func`4::Invoke(!0,!1,!2) inline bool Func_4_Invoke_m99F84FB3C597407937790B51288FF13459567EAC (Func_4_t0EA5243FC4B656A18B7AC7B130FD78666AA9FE84 * __this, HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * ___arg10, X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553 * ___arg21, X509Chain_t2167363ADB11F31A4A13E77EB73BEEE29381AF37 * ___arg32, const RuntimeMethod* method) { return (( bool (*) (Func_4_t0EA5243FC4B656A18B7AC7B130FD78666AA9FE84 *, HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 *, X509Certificate_t6F3E94ED7C8FB33253E4705C76A40144E59F0553 *, X509Chain_t2167363ADB11F31A4A13E77EB73BEEE29381AF37 *, const RuntimeMethod*))Func_4_Invoke_m35BA93E84A6D3F213E6565849683523B6A8D338E_gshared)(__this, ___arg10, ___arg21, ___arg32, method); } // System.Boolean System.Threading.Monitor::TryEnter(System.Object,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Monitor_TryEnter_m2CB4614E0739D14F7548E13CFF330421D488C56C (RuntimeObject * ___obj0, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___timeout1, const RuntimeMethod* method); // BestHTTP.ConnectionBase BestHTTP.HTTPManager::GetConnectionWith(BestHTTP.HTTPRequest) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConnectionBase_t3763CEA138D78F13729C816F002FF55B509BFB57 * HTTPManager_GetConnectionWith_mB8620CC3F7C19B390C8376E90D78438347FA3860 (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * ___request0, const RuntimeMethod* method); // System.Boolean BestHTTP.HTTPManager::RemoveFromQueue(BestHTTP.HTTPRequest) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HTTPManager_RemoveFromQueue_m1005BC4E2C3D5CE3543429F0F7027E2774430536 (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * ___request0, const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::CallCallback() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPRequest_CallCallback_m19EB5CBDBFD296B249812EE138191AA5F745291D (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, const RuntimeMethod* method); // System.Boolean BestHTTP.HTTPResponse::get_IsStreamed() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool HTTPResponse_get_IsStreamed_mEB40039F8A4ACBFC5ADC28D2AC18B6DCF35F325E_inline (HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * __this, const RuntimeMethod* method); // System.Void BestHTTP.HTTPResponse::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPResponse_Dispose_m69B90113A5B0923DBCF4E85487A0A4804E38E171 (HTTPResponse_t13F30F110D6D281CCB957BCF6DD6F6AD1D9139BD * __this, const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::ClearForm() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPRequest_ClearForm_mB8D5013BDEEF2202ACBBCE1F621800025259EF76 (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, const RuntimeMethod* method); // System.Void BestHTTP.HTTPRequest::RemoveHeaders() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HTTPRequest_RemoveHeaders_m0BCA4C20F9CD9249613C9433D9B1935B2D986D33 (HTTPRequest_t315DE271990629AEA5B463C9B4EF797C4254EE42 * __this, const RuntimeMethod* method); // System.String System.String::ToUpper() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_ToUpper_m4BC629F8059C3E0C4E3F7C7E04DB50EBB0C1A05A (String_t* __this, const RuntimeMethod* method); // System.Void System.ThrowHelper::ThrowArgumentOutOfRangeException() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_m4841366ABC2B2AFA37C10900551D7E07522C0929 (const RuntimeMethod* method); #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.Drbg.HMacSP800Drbg::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IMac,System.Int32,BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IEntropySource,System.Byte[],System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HMacSP800Drbg__ctor_mCA51B634E5561AFBAC16BDA1E97A756F1DEE6C5A (HMacSP800Drbg_tE713E6D9192F0F6E8E212585185241A5A0EFFE21 * __this, RuntimeObject* ___hMac0, int32_t ___securityStrength1, RuntimeObject* ___entropySource2, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___personalizationString3, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___nonce4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Arrays_t7CFD09DA7425047721E193958DAC5AB0FCFF67BF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5DU5BU5D_t95107DE217CCFA8CD77945AC2CB9492D4D01FE8D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DrbgUtilities_tE3432795718F27B184DC1ABEA30D74188E8742D0_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEntropySource_tB5D9DE195690CD14EA3F129F3F30B2B6A8B21CCE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IMac_tF574CEDFF4E3D5D95581FD8DF86EF985AE61B37C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_0 = NULL; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_1 = NULL; { // public HMacSP800Drbg(IMac hMac, int securityStrength, IEntropySource entropySource, byte[] personalizationString, byte[] nonce) Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); // if (securityStrength > DrbgUtilities.GetMaxSecurityStrength(hMac)) int32_t L_0 = ___securityStrength1; RuntimeObject* L_1 = ___hMac0; IL2CPP_RUNTIME_CLASS_INIT(DrbgUtilities_tE3432795718F27B184DC1ABEA30D74188E8742D0_il2cpp_TypeInfo_var); int32_t L_2; L_2 = DrbgUtilities_GetMaxSecurityStrength_mFAF94B9A4A72C4E9729D3C463D709308D4263974(L_1, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)L_2))) { goto IL_001a; } } { // throw new ArgumentException("Requested security strength is not supported by the derivation function"); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_3 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAC74C91AC84175DF19050FAF49E7E682198F5EBA)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&HMacSP800Drbg__ctor_mCA51B634E5561AFBAC16BDA1E97A756F1DEE6C5A_RuntimeMethod_var))); } IL_001a: { // if (entropySource.EntropySize < securityStrength) RuntimeObject* L_4 = ___entropySource2; NullCheck(L_4); int32_t L_5; L_5 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IEntropySource::get_EntropySize() */, IEntropySource_tB5D9DE195690CD14EA3F129F3F30B2B6A8B21CCE_il2cpp_TypeInfo_var, L_4); int32_t L_6 = ___securityStrength1; if ((((int32_t)L_5) >= ((int32_t)L_6))) { goto IL_002e; } } { // throw new ArgumentException("Not enough entropy for security strength required"); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_7 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFC0B78F7F34B12C0A2804C1AB09E3CD93F73F716)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&HMacSP800Drbg__ctor_mCA51B634E5561AFBAC16BDA1E97A756F1DEE6C5A_RuntimeMethod_var))); } IL_002e: { // mHMac = hMac; RuntimeObject* L_8 = ___hMac0; __this->set_mHMac_5(L_8); // mSecurityStrength = securityStrength; int32_t L_9 = ___securityStrength1; __this->set_mSecurityStrength_6(L_9); // mEntropySource = entropySource; RuntimeObject* L_10 = ___entropySource2; __this->set_mEntropySource_4(L_10); // byte[] entropy = GetEntropy(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_11; L_11 = HMacSP800Drbg_GetEntropy_m81365AD99622DC60DA05B6C4131802143D3E026C(__this, /*hidden argument*/NULL); V_0 = L_11; // byte[] seedMaterial = Arrays.ConcatenateAll(entropy, nonce, personalizationString); ByteU5BU5DU5BU5D_t95107DE217CCFA8CD77945AC2CB9492D4D01FE8D* L_12 = (ByteU5BU5DU5BU5D_t95107DE217CCFA8CD77945AC2CB9492D4D01FE8D*)(ByteU5BU5DU5BU5D_t95107DE217CCFA8CD77945AC2CB9492D4D01FE8D*)SZArrayNew(ByteU5BU5DU5BU5D_t95107DE217CCFA8CD77945AC2CB9492D4D01FE8D_il2cpp_TypeInfo_var, (uint32_t)3); ByteU5BU5DU5BU5D_t95107DE217CCFA8CD77945AC2CB9492D4D01FE8D* L_13 = L_12; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_14 = V_0; NullCheck(L_13); ArrayElementTypeCheck (L_13, L_14); (L_13)->SetAt(static_cast(0), (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)L_14); ByteU5BU5DU5BU5D_t95107DE217CCFA8CD77945AC2CB9492D4D01FE8D* L_15 = L_13; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_16 = ___nonce4; NullCheck(L_15); ArrayElementTypeCheck (L_15, L_16); (L_15)->SetAt(static_cast(1), (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)L_16); ByteU5BU5DU5BU5D_t95107DE217CCFA8CD77945AC2CB9492D4D01FE8D* L_17 = L_15; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_18 = ___personalizationString3; NullCheck(L_17); ArrayElementTypeCheck (L_17, L_18); (L_17)->SetAt(static_cast(2), (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)L_18); IL2CPP_RUNTIME_CLASS_INIT(Arrays_t7CFD09DA7425047721E193958DAC5AB0FCFF67BF_il2cpp_TypeInfo_var); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_19; L_19 = Arrays_ConcatenateAll_mFD0C0EA5B7B3C247951E0F02F44D9BB49D1EB274(L_17, /*hidden argument*/NULL); V_1 = L_19; // mK = new byte[hMac.GetMacSize()]; RuntimeObject* L_20 = ___hMac0; NullCheck(L_20); int32_t L_21; L_21 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IMac::GetMacSize() */, IMac_tF574CEDFF4E3D5D95581FD8DF86EF985AE61B37C_il2cpp_TypeInfo_var, L_20); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_22 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)L_21); __this->set_mK_2(L_22); // mV = new byte[mK.Length]; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_23 = __this->get_mK_2(); NullCheck(L_23); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_24 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)((int32_t)((int32_t)(((RuntimeArray*)L_23)->max_length)))); __this->set_mV_3(L_24); // Arrays.Fill(mV, (byte)1); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_25 = __this->get_mV_3(); Arrays_Fill_m841D30B6E9F2CA374C9F6D5C3A690607C6E1BCFF(L_25, (uint8_t)1, /*hidden argument*/NULL); // hmac_DRBG_Update(seedMaterial); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_26 = V_1; HMacSP800Drbg_hmac_DRBG_Update_m5B6E7A2A5FBE9AD3342C937DED391F66DAD42A36(__this, L_26, /*hidden argument*/NULL); // mReseedCounter = 1; __this->set_mReseedCounter_7(((int64_t)((int64_t)1))); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.Drbg.HMacSP800Drbg::hmac_DRBG_Update(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HMacSP800Drbg_hmac_DRBG_Update_m5B6E7A2A5FBE9AD3342C937DED391F66DAD42A36 (HMacSP800Drbg_tE713E6D9192F0F6E8E212585185241A5A0EFFE21 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___seedMaterial0, const RuntimeMethod* method) { { // hmac_DRBG_Update_Func(seedMaterial, (byte)0x00); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___seedMaterial0; HMacSP800Drbg_hmac_DRBG_Update_Func_m46493F84DD869759A3B77F0379BF8D785E0AB936(__this, L_0, (uint8_t)0, /*hidden argument*/NULL); // if (seedMaterial != null) ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = ___seedMaterial0; if (!L_1) { goto IL_0013; } } { // hmac_DRBG_Update_Func(seedMaterial, (byte)0x01); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = ___seedMaterial0; HMacSP800Drbg_hmac_DRBG_Update_Func_m46493F84DD869759A3B77F0379BF8D785E0AB936(__this, L_2, (uint8_t)1, /*hidden argument*/NULL); } IL_0013: { // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.Drbg.HMacSP800Drbg::hmac_DRBG_Update_Func(System.Byte[],System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HMacSP800Drbg_hmac_DRBG_Update_Func_m46493F84DD869759A3B77F0379BF8D785E0AB936 (HMacSP800Drbg_tE713E6D9192F0F6E8E212585185241A5A0EFFE21 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___seedMaterial0, uint8_t ___vValue1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IMac_tF574CEDFF4E3D5D95581FD8DF86EF985AE61B37C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // mHMac.Init(new KeyParameter(mK)); RuntimeObject* L_0 = __this->get_mHMac_5(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = __this->get_mK_2(); KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * L_2 = (KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC *)il2cpp_codegen_object_new(KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC_il2cpp_TypeInfo_var); KeyParameter__ctor_m96EBA1A3EB3F4981F3C14E96086C7083DDE16E67(L_2, L_1, /*hidden argument*/NULL); NullCheck(L_0); InterfaceActionInvoker1< RuntimeObject* >::Invoke(0 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IMac::Init(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ICipherParameters) */, IMac_tF574CEDFF4E3D5D95581FD8DF86EF985AE61B37C_il2cpp_TypeInfo_var, L_0, L_2); // mHMac.BlockUpdate(mV, 0, mV.Length); RuntimeObject* L_3 = __this->get_mHMac_5(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = __this->get_mV_3(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_5 = __this->get_mV_3(); NullCheck(L_5); NullCheck(L_3); InterfaceActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(4 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IMac::BlockUpdate(System.Byte[],System.Int32,System.Int32) */, IMac_tF574CEDFF4E3D5D95581FD8DF86EF985AE61B37C_il2cpp_TypeInfo_var, L_3, L_4, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length)))); // mHMac.Update(vValue); RuntimeObject* L_6 = __this->get_mHMac_5(); uint8_t L_7 = ___vValue1; NullCheck(L_6); InterfaceActionInvoker1< uint8_t >::Invoke(3 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IMac::Update(System.Byte) */, IMac_tF574CEDFF4E3D5D95581FD8DF86EF985AE61B37C_il2cpp_TypeInfo_var, L_6, L_7); // if (seedMaterial != null) ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_8 = ___seedMaterial0; if (!L_8) { goto IL_004f; } } { // mHMac.BlockUpdate(seedMaterial, 0, seedMaterial.Length); RuntimeObject* L_9 = __this->get_mHMac_5(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_10 = ___seedMaterial0; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_11 = ___seedMaterial0; NullCheck(L_11); NullCheck(L_9); InterfaceActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(4 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IMac::BlockUpdate(System.Byte[],System.Int32,System.Int32) */, IMac_tF574CEDFF4E3D5D95581FD8DF86EF985AE61B37C_il2cpp_TypeInfo_var, L_9, L_10, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_11)->max_length)))); } IL_004f: { // mHMac.DoFinal(mK, 0); RuntimeObject* L_12 = __this->get_mHMac_5(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_13 = __this->get_mK_2(); NullCheck(L_12); int32_t L_14; L_14 = InterfaceFuncInvoker2< int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t >::Invoke(5 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IMac::DoFinal(System.Byte[],System.Int32) */, IMac_tF574CEDFF4E3D5D95581FD8DF86EF985AE61B37C_il2cpp_TypeInfo_var, L_12, L_13, 0); // mHMac.Init(new KeyParameter(mK)); RuntimeObject* L_15 = __this->get_mHMac_5(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_16 = __this->get_mK_2(); KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * L_17 = (KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC *)il2cpp_codegen_object_new(KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC_il2cpp_TypeInfo_var); KeyParameter__ctor_m96EBA1A3EB3F4981F3C14E96086C7083DDE16E67(L_17, L_16, /*hidden argument*/NULL); NullCheck(L_15); InterfaceActionInvoker1< RuntimeObject* >::Invoke(0 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IMac::Init(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ICipherParameters) */, IMac_tF574CEDFF4E3D5D95581FD8DF86EF985AE61B37C_il2cpp_TypeInfo_var, L_15, L_17); // mHMac.BlockUpdate(mV, 0, mV.Length); RuntimeObject* L_18 = __this->get_mHMac_5(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_19 = __this->get_mV_3(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_20 = __this->get_mV_3(); NullCheck(L_20); NullCheck(L_18); InterfaceActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(4 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IMac::BlockUpdate(System.Byte[],System.Int32,System.Int32) */, IMac_tF574CEDFF4E3D5D95581FD8DF86EF985AE61B37C_il2cpp_TypeInfo_var, L_18, L_19, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_20)->max_length)))); // mHMac.DoFinal(mV, 0); RuntimeObject* L_21 = __this->get_mHMac_5(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_22 = __this->get_mV_3(); NullCheck(L_21); int32_t L_23; L_23 = InterfaceFuncInvoker2< int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t >::Invoke(5 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IMac::DoFinal(System.Byte[],System.Int32) */, IMac_tF574CEDFF4E3D5D95581FD8DF86EF985AE61B37C_il2cpp_TypeInfo_var, L_21, L_22, 0); // } return; } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.Drbg.HMacSP800Drbg::get_BlockSize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HMacSP800Drbg_get_BlockSize_mA8114A08132DDDA48BB5030952C36EB580E0F7AF (HMacSP800Drbg_tE713E6D9192F0F6E8E212585185241A5A0EFFE21 * __this, const RuntimeMethod* method) { { // get { return mV.Length * 8; } ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = __this->get_mV_3(); NullCheck(L_0); return ((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))), (int32_t)8)); } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.Drbg.HMacSP800Drbg::Generate(System.Byte[],System.Byte[],System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HMacSP800Drbg_Generate_mE34D3D23E9D1881E38A94CEDC5675776678CA3FD (HMacSP800Drbg_tE713E6D9192F0F6E8E212585185241A5A0EFFE21 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___output0, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___additionalInput1, bool ___predictionResistant2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HMacSP800Drbg_tE713E6D9192F0F6E8E212585185241A5A0EFFE21_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IMac_tF574CEDFF4E3D5D95581FD8DF86EF985AE61B37C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_1 = NULL; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; { // int numberOfBits = output.Length * 8; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___output0; NullCheck(L_0); V_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))), (int32_t)8)); // if (numberOfBits > MAX_BITS_REQUEST) int32_t L_1 = V_0; IL2CPP_RUNTIME_CLASS_INIT(HMacSP800Drbg_tE713E6D9192F0F6E8E212585185241A5A0EFFE21_il2cpp_TypeInfo_var); int32_t L_2 = ((HMacSP800Drbg_tE713E6D9192F0F6E8E212585185241A5A0EFFE21_StaticFields*)il2cpp_codegen_static_fields_for(HMacSP800Drbg_tE713E6D9192F0F6E8E212585185241A5A0EFFE21_il2cpp_TypeInfo_var))->get_MAX_BITS_REQUEST_1(); if ((((int32_t)L_1) <= ((int32_t)L_2))) { goto IL_0030; } } { // throw new ArgumentException("Number of bits per request limited to " + MAX_BITS_REQUEST, "output"); IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&HMacSP800Drbg_tE713E6D9192F0F6E8E212585185241A5A0EFFE21_il2cpp_TypeInfo_var))); int32_t L_3 = ((HMacSP800Drbg_tE713E6D9192F0F6E8E212585185241A5A0EFFE21_StaticFields*)il2cpp_codegen_static_fields_for(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&HMacSP800Drbg_tE713E6D9192F0F6E8E212585185241A5A0EFFE21_il2cpp_TypeInfo_var))))->get_MAX_BITS_REQUEST_1(); V_3 = L_3; String_t* L_4; L_4 = Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411((int32_t*)(&V_3), /*hidden argument*/NULL); String_t* L_5; L_5 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB3FAA66308461F1BC7771CA107A7DF8D0F9D66CD)), L_4, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_6 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_6, L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral71443AC7CF5CC108984A138188DE915E32441BB2)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&HMacSP800Drbg_Generate_mE34D3D23E9D1881E38A94CEDC5675776678CA3FD_RuntimeMethod_var))); } IL_0030: { // if (mReseedCounter > RESEED_MAX) int64_t L_7 = __this->get_mReseedCounter_7(); IL2CPP_RUNTIME_CLASS_INIT(HMacSP800Drbg_tE713E6D9192F0F6E8E212585185241A5A0EFFE21_il2cpp_TypeInfo_var); int64_t L_8 = ((HMacSP800Drbg_tE713E6D9192F0F6E8E212585185241A5A0EFFE21_StaticFields*)il2cpp_codegen_static_fields_for(HMacSP800Drbg_tE713E6D9192F0F6E8E212585185241A5A0EFFE21_il2cpp_TypeInfo_var))->get_RESEED_MAX_0(); if ((((int64_t)L_7) <= ((int64_t)L_8))) { goto IL_003f; } } { // return -1; return (-1); } IL_003f: { // if (predictionResistant) bool L_9 = ___predictionResistant2; if (!L_9) { goto IL_004c; } } { // Reseed(additionalInput); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_10 = ___additionalInput1; HMacSP800Drbg_Reseed_mB9DB61A494F9F97E21BE2EAFDA3BBAA7AE70A9ED(__this, L_10, /*hidden argument*/NULL); // additionalInput = null; ___additionalInput1 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)NULL; } IL_004c: { // if (additionalInput != null) ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_11 = ___additionalInput1; if (!L_11) { goto IL_0056; } } { // hmac_DRBG_Update(additionalInput); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_12 = ___additionalInput1; HMacSP800Drbg_hmac_DRBG_Update_m5B6E7A2A5FBE9AD3342C937DED391F66DAD42A36(__this, L_12, /*hidden argument*/NULL); } IL_0056: { // byte[] rv = new byte[output.Length]; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_13 = ___output0; NullCheck(L_13); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_14 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)((int32_t)((int32_t)(((RuntimeArray*)L_13)->max_length)))); V_1 = L_14; // int m = output.Length / mV.Length; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_15 = ___output0; NullCheck(L_15); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_16 = __this->get_mV_3(); NullCheck(L_16); V_2 = ((int32_t)((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_15)->max_length)))/(int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_16)->max_length))))); // mHMac.Init(new KeyParameter(mK)); RuntimeObject* L_17 = __this->get_mHMac_5(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_18 = __this->get_mK_2(); KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * L_19 = (KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC *)il2cpp_codegen_object_new(KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC_il2cpp_TypeInfo_var); KeyParameter__ctor_m96EBA1A3EB3F4981F3C14E96086C7083DDE16E67(L_19, L_18, /*hidden argument*/NULL); NullCheck(L_17); InterfaceActionInvoker1< RuntimeObject* >::Invoke(0 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IMac::Init(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ICipherParameters) */, IMac_tF574CEDFF4E3D5D95581FD8DF86EF985AE61B37C_il2cpp_TypeInfo_var, L_17, L_19); // for (int i = 0; i < m; i++) V_4 = 0; goto IL_00da; } IL_0087: { // mHMac.BlockUpdate(mV, 0, mV.Length); RuntimeObject* L_20 = __this->get_mHMac_5(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_21 = __this->get_mV_3(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_22 = __this->get_mV_3(); NullCheck(L_22); NullCheck(L_20); InterfaceActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(4 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IMac::BlockUpdate(System.Byte[],System.Int32,System.Int32) */, IMac_tF574CEDFF4E3D5D95581FD8DF86EF985AE61B37C_il2cpp_TypeInfo_var, L_20, L_21, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_22)->max_length)))); // mHMac.DoFinal(mV, 0); RuntimeObject* L_23 = __this->get_mHMac_5(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_24 = __this->get_mV_3(); NullCheck(L_23); int32_t L_25; L_25 = InterfaceFuncInvoker2< int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t >::Invoke(5 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IMac::DoFinal(System.Byte[],System.Int32) */, IMac_tF574CEDFF4E3D5D95581FD8DF86EF985AE61B37C_il2cpp_TypeInfo_var, L_23, L_24, 0); // Array.Copy(mV, 0, rv, i * mV.Length, mV.Length); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_26 = __this->get_mV_3(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_27 = V_1; int32_t L_28 = V_4; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_29 = __this->get_mV_3(); NullCheck(L_29); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_30 = __this->get_mV_3(); NullCheck(L_30); Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_26, 0, (RuntimeArray *)(RuntimeArray *)L_27, ((int32_t)il2cpp_codegen_multiply((int32_t)L_28, (int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_29)->max_length))))), ((int32_t)((int32_t)(((RuntimeArray*)L_30)->max_length))), /*hidden argument*/NULL); // for (int i = 0; i < m; i++) int32_t L_31 = V_4; V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_31, (int32_t)1)); } IL_00da: { // for (int i = 0; i < m; i++) int32_t L_32 = V_4; int32_t L_33 = V_2; if ((((int32_t)L_32) < ((int32_t)L_33))) { goto IL_0087; } } { // if (m * mV.Length < rv.Length) int32_t L_34 = V_2; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_35 = __this->get_mV_3(); NullCheck(L_35); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_36 = V_1; NullCheck(L_36); if ((((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_34, (int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_35)->max_length)))))) >= ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_36)->max_length)))))) { goto IL_0140; } } { // mHMac.BlockUpdate(mV, 0, mV.Length); RuntimeObject* L_37 = __this->get_mHMac_5(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_38 = __this->get_mV_3(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_39 = __this->get_mV_3(); NullCheck(L_39); NullCheck(L_37); InterfaceActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(4 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IMac::BlockUpdate(System.Byte[],System.Int32,System.Int32) */, IMac_tF574CEDFF4E3D5D95581FD8DF86EF985AE61B37C_il2cpp_TypeInfo_var, L_37, L_38, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_39)->max_length)))); // mHMac.DoFinal(mV, 0); RuntimeObject* L_40 = __this->get_mHMac_5(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_41 = __this->get_mV_3(); NullCheck(L_40); int32_t L_42; L_42 = InterfaceFuncInvoker2< int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t >::Invoke(5 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IMac::DoFinal(System.Byte[],System.Int32) */, IMac_tF574CEDFF4E3D5D95581FD8DF86EF985AE61B37C_il2cpp_TypeInfo_var, L_40, L_41, 0); // Array.Copy(mV, 0, rv, m * mV.Length, rv.Length - (m * mV.Length)); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_43 = __this->get_mV_3(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_44 = V_1; int32_t L_45 = V_2; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_46 = __this->get_mV_3(); NullCheck(L_46); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_47 = V_1; NullCheck(L_47); int32_t L_48 = V_2; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_49 = __this->get_mV_3(); NullCheck(L_49); Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_43, 0, (RuntimeArray *)(RuntimeArray *)L_44, ((int32_t)il2cpp_codegen_multiply((int32_t)L_45, (int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_46)->max_length))))), ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_47)->max_length))), (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_48, (int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_49)->max_length))))))), /*hidden argument*/NULL); } IL_0140: { // hmac_DRBG_Update(additionalInput); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_50 = ___additionalInput1; HMacSP800Drbg_hmac_DRBG_Update_m5B6E7A2A5FBE9AD3342C937DED391F66DAD42A36(__this, L_50, /*hidden argument*/NULL); // mReseedCounter++; int64_t L_51 = __this->get_mReseedCounter_7(); __this->set_mReseedCounter_7(((int64_t)il2cpp_codegen_add((int64_t)L_51, (int64_t)((int64_t)((int64_t)1))))); // Array.Copy(rv, 0, output, 0, output.Length); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_52 = V_1; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_53 = ___output0; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_54 = ___output0; NullCheck(L_54); Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_52, 0, (RuntimeArray *)(RuntimeArray *)L_53, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_54)->max_length))), /*hidden argument*/NULL); // return numberOfBits; int32_t L_55 = V_0; return L_55; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.Drbg.HMacSP800Drbg::Reseed(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HMacSP800Drbg_Reseed_mB9DB61A494F9F97E21BE2EAFDA3BBAA7AE70A9ED (HMacSP800Drbg_tE713E6D9192F0F6E8E212585185241A5A0EFFE21 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___additionalInput0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Arrays_t7CFD09DA7425047721E193958DAC5AB0FCFF67BF_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_0 = NULL; { // byte[] entropy = GetEntropy(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0; L_0 = HMacSP800Drbg_GetEntropy_m81365AD99622DC60DA05B6C4131802143D3E026C(__this, /*hidden argument*/NULL); // byte[] seedMaterial = Arrays.Concatenate(entropy, additionalInput); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = ___additionalInput0; IL2CPP_RUNTIME_CLASS_INIT(Arrays_t7CFD09DA7425047721E193958DAC5AB0FCFF67BF_il2cpp_TypeInfo_var); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2; L_2 = Arrays_Concatenate_mAC0D7D6E145BE9066A98EBE001C71C181594C07F(L_0, L_1, /*hidden argument*/NULL); V_0 = L_2; // hmac_DRBG_Update(seedMaterial); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_3 = V_0; HMacSP800Drbg_hmac_DRBG_Update_m5B6E7A2A5FBE9AD3342C937DED391F66DAD42A36(__this, L_3, /*hidden argument*/NULL); // mReseedCounter = 1; __this->set_mReseedCounter_7(((int64_t)((int64_t)1))); // } return; } } // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.Drbg.HMacSP800Drbg::GetEntropy() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* HMacSP800Drbg_GetEntropy_m81365AD99622DC60DA05B6C4131802143D3E026C (HMacSP800Drbg_tE713E6D9192F0F6E8E212585185241A5A0EFFE21 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEntropySource_tB5D9DE195690CD14EA3F129F3F30B2B6A8B21CCE_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* G_B2_0 = NULL; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* G_B1_0 = NULL; { // byte[] entropy = mEntropySource.GetEntropy(); RuntimeObject* L_0 = __this->get_mEntropySource_4(); NullCheck(L_0); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1; L_1 = InterfaceFuncInvoker0< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* >::Invoke(1 /* System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IEntropySource::GetEntropy() */, IEntropySource_tB5D9DE195690CD14EA3F129F3F30B2B6A8B21CCE_il2cpp_TypeInfo_var, L_0); // if (entropy.Length < (mSecurityStrength + 7) / 8) ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = L_1; NullCheck(L_2); int32_t L_3 = __this->get_mSecurityStrength_6(); G_B1_0 = L_2; if ((((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))) >= ((int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)7))/(int32_t)8))))) { G_B2_0 = L_2; goto IL_0025; } } { // throw new InvalidOperationException("Insufficient entropy provided by entropy source"); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7B28676A697A8BBC209A419D9D4BEECAA756DDF4)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&HMacSP800Drbg_GetEntropy_m81365AD99622DC60DA05B6C4131802143D3E026C_RuntimeMethod_var))); } IL_0025: { // return entropy; return G_B2_0; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.Drbg.HMacSP800Drbg::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HMacSP800Drbg__cctor_m503FAB40237476E2422031121C93BC4CAD7793D1 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HMacSP800Drbg_tE713E6D9192F0F6E8E212585185241A5A0EFFE21_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // private readonly static long RESEED_MAX = 1L << (48 - 1); ((HMacSP800Drbg_tE713E6D9192F0F6E8E212585185241A5A0EFFE21_StaticFields*)il2cpp_codegen_static_fields_for(HMacSP800Drbg_tE713E6D9192F0F6E8E212585185241A5A0EFFE21_il2cpp_TypeInfo_var))->set_RESEED_MAX_0(((int64_t)140737488355328LL)); // private readonly static int MAX_BITS_REQUEST = 1 << (19 - 1); ((HMacSP800Drbg_tE713E6D9192F0F6E8E212585185241A5A0EFFE21_StaticFields*)il2cpp_codegen_static_fields_for(HMacSP800Drbg_tE713E6D9192F0F6E8E212585185241A5A0EFFE21_il2cpp_TypeInfo_var))->set_MAX_BITS_REQUEST_1(((int32_t)262144)); 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.String HRB_Bluetooth::get_targetDeviceService() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* HRB_Bluetooth_get_targetDeviceService_mB34B364EABE36C047F92CB1E94E25FB4C9824342 (HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CommonConfig_tC195D49FCF47E1A741B397705259762D5D501FB3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral588FA00829EFB9528954C3C9D899DE5D204881DF); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC7D6E7A144812D40DA3F71DCBE6B47E6961CC049); s_Il2CppMethodInitialized = true; } { // if (CommonConfig.devicePlan == 0 || CommonConfig.devicePlan == 3) { IL2CPP_RUNTIME_CLASS_INIT(CommonConfig_tC195D49FCF47E1A741B397705259762D5D501FB3_il2cpp_TypeInfo_var); int32_t L_0 = ((CommonConfig_tC195D49FCF47E1A741B397705259762D5D501FB3_StaticFields*)il2cpp_codegen_static_fields_for(CommonConfig_tC195D49FCF47E1A741B397705259762D5D501FB3_il2cpp_TypeInfo_var))->get_devicePlan_8(); if (!L_0) { goto IL_000f; } } { IL2CPP_RUNTIME_CLASS_INIT(CommonConfig_tC195D49FCF47E1A741B397705259762D5D501FB3_il2cpp_TypeInfo_var); int32_t L_1 = ((CommonConfig_tC195D49FCF47E1A741B397705259762D5D501FB3_StaticFields*)il2cpp_codegen_static_fields_for(CommonConfig_tC195D49FCF47E1A741B397705259762D5D501FB3_il2cpp_TypeInfo_var))->get_devicePlan_8(); if ((!(((uint32_t)L_1) == ((uint32_t)3)))) { goto IL_0015; } } IL_000f: { // return "fff0"; return _stringLiteralC7D6E7A144812D40DA3F71DCBE6B47E6961CC049; } IL_0015: { // return "6e400001"; return _stringLiteral588FA00829EFB9528954C3C9D899DE5D204881DF; } } // System.String HRB_Bluetooth::get_targetDeviceCharacteristicWrite() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* HRB_Bluetooth_get_targetDeviceCharacteristicWrite_m5D2F65F036125A1A3E0234748E3848C022933116 (HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CommonConfig_tC195D49FCF47E1A741B397705259762D5D501FB3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral952230437686874AF0FE6A3943C4749F85F0DCD0); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBAE651911F4E2E4E8CABF0A27344C5656487265E); s_Il2CppMethodInitialized = true; } { // if (CommonConfig.devicePlan == 0 || CommonConfig.devicePlan == 3) { IL2CPP_RUNTIME_CLASS_INIT(CommonConfig_tC195D49FCF47E1A741B397705259762D5D501FB3_il2cpp_TypeInfo_var); int32_t L_0 = ((CommonConfig_tC195D49FCF47E1A741B397705259762D5D501FB3_StaticFields*)il2cpp_codegen_static_fields_for(CommonConfig_tC195D49FCF47E1A741B397705259762D5D501FB3_il2cpp_TypeInfo_var))->get_devicePlan_8(); if (!L_0) { goto IL_000f; } } { IL2CPP_RUNTIME_CLASS_INIT(CommonConfig_tC195D49FCF47E1A741B397705259762D5D501FB3_il2cpp_TypeInfo_var); int32_t L_1 = ((CommonConfig_tC195D49FCF47E1A741B397705259762D5D501FB3_StaticFields*)il2cpp_codegen_static_fields_for(CommonConfig_tC195D49FCF47E1A741B397705259762D5D501FB3_il2cpp_TypeInfo_var))->get_devicePlan_8(); if ((!(((uint32_t)L_1) == ((uint32_t)3)))) { goto IL_0015; } } IL_000f: { // return "fff2"; return _stringLiteralBAE651911F4E2E4E8CABF0A27344C5656487265E; } IL_0015: { // return "6e400002"; return _stringLiteral952230437686874AF0FE6A3943C4749F85F0DCD0; } } // System.String HRB_Bluetooth::get_targetDeviceCharacteristicNotify() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* HRB_Bluetooth_get_targetDeviceCharacteristicNotify_m30D2FE7DCE4049FD414A3CA8EC7EE2D843B4E7C7 (HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CommonConfig_tC195D49FCF47E1A741B397705259762D5D501FB3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral44450B2C3ED7E38D889FAD121B54102642B12375); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5E46B0B8FA77A3DCDEDB09B9F51CD37B861E0A77); s_Il2CppMethodInitialized = true; } { // if (CommonConfig.devicePlan == 0 || CommonConfig.devicePlan == 3) { IL2CPP_RUNTIME_CLASS_INIT(CommonConfig_tC195D49FCF47E1A741B397705259762D5D501FB3_il2cpp_TypeInfo_var); int32_t L_0 = ((CommonConfig_tC195D49FCF47E1A741B397705259762D5D501FB3_StaticFields*)il2cpp_codegen_static_fields_for(CommonConfig_tC195D49FCF47E1A741B397705259762D5D501FB3_il2cpp_TypeInfo_var))->get_devicePlan_8(); if (!L_0) { goto IL_000f; } } { IL2CPP_RUNTIME_CLASS_INIT(CommonConfig_tC195D49FCF47E1A741B397705259762D5D501FB3_il2cpp_TypeInfo_var); int32_t L_1 = ((CommonConfig_tC195D49FCF47E1A741B397705259762D5D501FB3_StaticFields*)il2cpp_codegen_static_fields_for(CommonConfig_tC195D49FCF47E1A741B397705259762D5D501FB3_il2cpp_TypeInfo_var))->get_devicePlan_8(); if ((!(((uint32_t)L_1) == ((uint32_t)3)))) { goto IL_0015; } } IL_000f: { // return "fff1"; return _stringLiteral44450B2C3ED7E38D889FAD121B54102642B12375; } IL_0015: { // return "6e400003"; return _stringLiteral5E46B0B8FA77A3DCDEDB09B9F51CD37B861E0A77; } } // System.Void HRB_Bluetooth::OnDestroy() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_Bluetooth_OnDestroy_m9FF80B5EFC922C607FCBCA8A719FAC4F362637CB (HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D * __this, const RuntimeMethod* method) { { // DisconnectBleHelper(); HRB_Bluetooth_DisconnectBleHelper_m5053730D45BD86F8A1182E75E32DD3561302A5E6(__this, /*hidden argument*/NULL); // } return; } } // System.Void HRB_Bluetooth::DoConnect() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_Bluetooth_DoConnect_mECB2710C1631ADE8B1DD8FECCA99B5E1244F1AA6 (HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_1_Invoke_mCA605B0373C1EE39807AB82AEA983289D3F15C79_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // if (action_DoConnectInterceptor != null) { Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * L_0 = __this->get_action_DoConnectInterceptor_15(); if (!L_0) { goto IL_0016; } } { // if (action_DoConnectInterceptor.Invoke()) return; Func_1_t76FCDA5C58178ED310C472967481FDE5F47DCF0F * L_1 = __this->get_action_DoConnectInterceptor_15(); NullCheck(L_1); bool L_2; L_2 = Func_1_Invoke_mCA605B0373C1EE39807AB82AEA983289D3F15C79(L_1, /*hidden argument*/Func_1_Invoke_mCA605B0373C1EE39807AB82AEA983289D3F15C79_RuntimeMethod_var); if (!L_2) { goto IL_0016; } } { // if (action_DoConnectInterceptor.Invoke()) return; return; } IL_0016: { // if (status == BluetoothStatusEnum.Connect) int32_t L_3 = __this->get_status_11(); if ((!(((uint32_t)L_3) == ((uint32_t)1)))) { goto IL_0035; } } { // userDoConnect = true; __this->set_userDoConnect_13((bool)1); // doConnect = true; __this->set_doConnect_14((bool)1); // SetStatus(BluetoothStatusEnum.Connecting); HRB_Bluetooth_SetStatus_mB80187534C079863DD305CA8EAAF2004682D0339(__this, 2, /*hidden argument*/NULL); // } return; } IL_0035: { // else if (status == BluetoothStatusEnum.ConnectSuccess) int32_t L_4 = __this->get_status_11(); if ((!(((uint32_t)L_4) == ((uint32_t)3)))) { goto IL_0058; } } { // userDoConnect = false; __this->set_userDoConnect_13((bool)0); // doConnect = false; __this->set_doConnect_14((bool)0); // OnDisconnect(); HRB_Bluetooth_OnDisconnect_mE60532F7F604A52F8EC4B8C0EEDAF1264DCBB052(__this, /*hidden argument*/NULL); // DisconnectBleHelper(); HRB_Bluetooth_DisconnectBleHelper_m5053730D45BD86F8A1182E75E32DD3561302A5E6(__this, /*hidden argument*/NULL); } IL_0058: { // } return; } } // System.Void HRB_Bluetooth::OnDisconnect() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_Bluetooth_OnDisconnect_mE60532F7F604A52F8EC4B8C0EEDAF1264DCBB052 (HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AimHandler_t09E6B497CE2A5136591A25DDCED60D7D7D00A563_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BowCamera_t7AA7E1A3AE4107303360B6EC9EC72E5F762D0FF9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // canConnect = true; __this->set_canConnect_9((bool)1); // SetStatus(BluetoothStatusEnum.ConnectFail); HRB_Bluetooth_SetStatus_mB80187534C079863DD305CA8EAAF2004682D0339(__this, 4, /*hidden argument*/NULL); // BowCamera.isTouchMode = true; IL2CPP_RUNTIME_CLASS_INIT(BowCamera_t7AA7E1A3AE4107303360B6EC9EC72E5F762D0FF9_il2cpp_TypeInfo_var); BowCamera_set_isTouchMode_m697E7BDB07075516ADCEFDD7452D52356099CB82_inline((bool)1, /*hidden argument*/NULL); // if (AimHandler.ins) AimHandler.ins.SetMsOldDefault(); AimHandler_t09E6B497CE2A5136591A25DDCED60D7D7D00A563 * L_0 = ((AimHandler_t09E6B497CE2A5136591A25DDCED60D7D7D00A563_StaticFields*)il2cpp_codegen_static_fields_for(AimHandler_t09E6B497CE2A5136591A25DDCED60D7D7D00A563_il2cpp_TypeInfo_var))->get_ins_7(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_1; L_1 = Object_op_Implicit_mC8214E4F028CC2F036CC82BDB81D102A02893499(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_002a; } } { // if (AimHandler.ins) AimHandler.ins.SetMsOldDefault(); AimHandler_t09E6B497CE2A5136591A25DDCED60D7D7D00A563 * L_2 = ((AimHandler_t09E6B497CE2A5136591A25DDCED60D7D7D00A563_StaticFields*)il2cpp_codegen_static_fields_for(AimHandler_t09E6B497CE2A5136591A25DDCED60D7D7D00A563_il2cpp_TypeInfo_var))->get_ins_7(); NullCheck(L_2); AimHandler_SetMsOldDefault_mF4BBB4680E6CF26D0E75B8DEF7E9D56C4BA80F28(L_2, /*hidden argument*/NULL); } IL_002a: { // } return; } } // System.Void HRB_Bluetooth::Update() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_Bluetooth_Update_m19FCF7E4475372DDAEBC14AE9D7FE077AF25B80E (HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D * __this, const RuntimeMethod* method) { { // if (userDoConnect && status == BluetoothStatusEnum.Connect) bool L_0 = __this->get_userDoConnect_13(); if (!L_0) { goto IL_0017; } } { int32_t L_1 = __this->get_status_11(); if ((!(((uint32_t)L_1) == ((uint32_t)1)))) { goto IL_0017; } } { // DoConnect(); HRB_Bluetooth_DoConnect_mECB2710C1631ADE8B1DD8FECCA99B5E1244F1AA6(__this, /*hidden argument*/NULL); } IL_0017: { // if (doConnect) Connect(); bool L_2 = __this->get_doConnect_14(); if (!L_2) { goto IL_0025; } } { // if (doConnect) Connect(); HRB_Bluetooth_Connect_m6F2BD1A2ACB9B785EEB16615D4A8425FB196AE89(__this, /*hidden argument*/NULL); } IL_0025: { // } return; } } // System.Void HRB_Bluetooth::SetStatus(BluetoothStatusEnum) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_Bluetooth_SetStatus_mB80187534C079863DD305CA8EAAF2004682D0339 (HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D * __this, int32_t ___statusValue0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DOTween_t7BE7AEC9D5268B0C5F1193D8F20B01B7F18CC203_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HRB_Bluetooth_U3CSetStatusU3Eb__22_0_mC347A67FC38BA5EFBEF4BB0276947D5DBB89CD7A_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SimulateMouseController_tA70BEF03B40F921CF76BC22EDFB7F57083FD43F5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TweenSettingsExtensions_SetUpdate_TisSequence_tE01FFFCA34A537CE2FF32EDAF451CDEC55A1399E_m919CA95D216B119B67D5C9C18F520957DC35BFC0_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } SimulateMouseController_tA70BEF03B40F921CF76BC22EDFB7F57083FD43F5 * G_B3_0 = NULL; SimulateMouseController_tA70BEF03B40F921CF76BC22EDFB7F57083FD43F5 * G_B2_0 = NULL; SimulateMouseController_tA70BEF03B40F921CF76BC22EDFB7F57083FD43F5 * G_B7_0 = NULL; SimulateMouseController_tA70BEF03B40F921CF76BC22EDFB7F57083FD43F5 * G_B6_0 = NULL; { // status = statusValue; int32_t L_0 = ___statusValue0; __this->set_status_11(L_0); // if (status == BluetoothStatusEnum.ConnectFail) int32_t L_1 = __this->get_status_11(); if ((!(((uint32_t)L_1) == ((uint32_t)4)))) { goto IL_004c; } } { // Sequence sequence = DOTween.Sequence(); IL2CPP_RUNTIME_CLASS_INIT(DOTween_t7BE7AEC9D5268B0C5F1193D8F20B01B7F18CC203_il2cpp_TypeInfo_var); Sequence_tE01FFFCA34A537CE2FF32EDAF451CDEC55A1399E * L_2; L_2 = DOTween_Sequence_m83221E315CE42CCE7B80D126A549114C86BC388D(/*hidden argument*/NULL); // sequence.AppendInterval(2f); Sequence_tE01FFFCA34A537CE2FF32EDAF451CDEC55A1399E * L_3 = L_2; Sequence_tE01FFFCA34A537CE2FF32EDAF451CDEC55A1399E * L_4; L_4 = TweenSettingsExtensions_AppendInterval_m20E76B7FD0B9E0FD85D5E55444177E412D2A39FE(L_3, (2.0f), /*hidden argument*/NULL); // sequence.AppendCallback(delegate () // { // if (status == BluetoothStatusEnum.ConnectFail) // { // status = BluetoothStatusEnum.Connect; // } // }); Sequence_tE01FFFCA34A537CE2FF32EDAF451CDEC55A1399E * L_5 = L_3; TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB * L_6 = (TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB *)il2cpp_codegen_object_new(TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB_il2cpp_TypeInfo_var); TweenCallback__ctor_m595231CFB0B8CD35F6377EA2A88CB98A8E905662(L_6, __this, (intptr_t)((intptr_t)HRB_Bluetooth_U3CSetStatusU3Eb__22_0_mC347A67FC38BA5EFBEF4BB0276947D5DBB89CD7A_RuntimeMethod_var), /*hidden argument*/NULL); Sequence_tE01FFFCA34A537CE2FF32EDAF451CDEC55A1399E * L_7; L_7 = TweenSettingsExtensions_AppendCallback_m056A9F025C67DB07A403E70BED916DCDDF8671E6(L_5, L_6, /*hidden argument*/NULL); // sequence.SetUpdate(true); Sequence_tE01FFFCA34A537CE2FF32EDAF451CDEC55A1399E * L_8; L_8 = TweenSettingsExtensions_SetUpdate_TisSequence_tE01FFFCA34A537CE2FF32EDAF451CDEC55A1399E_m919CA95D216B119B67D5C9C18F520957DC35BFC0(L_5, (bool)1, /*hidden argument*/TweenSettingsExtensions_SetUpdate_TisSequence_tE01FFFCA34A537CE2FF32EDAF451CDEC55A1399E_m919CA95D216B119B67D5C9C18F520957DC35BFC0_RuntimeMethod_var); // SimulateMouseController.ins?.SetBleConnected(false); SimulateMouseController_tA70BEF03B40F921CF76BC22EDFB7F57083FD43F5 * L_9 = ((SimulateMouseController_tA70BEF03B40F921CF76BC22EDFB7F57083FD43F5_StaticFields*)il2cpp_codegen_static_fields_for(SimulateMouseController_tA70BEF03B40F921CF76BC22EDFB7F57083FD43F5_il2cpp_TypeInfo_var))->get_ins_0(); SimulateMouseController_tA70BEF03B40F921CF76BC22EDFB7F57083FD43F5 * L_10 = L_9; G_B2_0 = L_10; if (L_10) { G_B3_0 = L_10; goto IL_0045; } } { return; } IL_0045: { NullCheck(G_B3_0); SimulateMouseController_SetBleConnected_m3C54C070AD85437D87FBB7464F8337B47E28C45D(G_B3_0, (bool)0, /*hidden argument*/NULL); // } else if (status == BluetoothStatusEnum.ConnectSuccess) { return; } IL_004c: { // } else if (status == BluetoothStatusEnum.ConnectSuccess) { int32_t L_11 = __this->get_status_11(); if ((!(((uint32_t)L_11) == ((uint32_t)3)))) { goto IL_0065; } } { // SimulateMouseController.ins?.SetBleConnected(true); SimulateMouseController_tA70BEF03B40F921CF76BC22EDFB7F57083FD43F5 * L_12 = ((SimulateMouseController_tA70BEF03B40F921CF76BC22EDFB7F57083FD43F5_StaticFields*)il2cpp_codegen_static_fields_for(SimulateMouseController_tA70BEF03B40F921CF76BC22EDFB7F57083FD43F5_il2cpp_TypeInfo_var))->get_ins_0(); SimulateMouseController_tA70BEF03B40F921CF76BC22EDFB7F57083FD43F5 * L_13 = L_12; G_B6_0 = L_13; if (L_13) { G_B7_0 = L_13; goto IL_005f; } } { return; } IL_005f: { NullCheck(G_B7_0); SimulateMouseController_SetBleConnected_m3C54C070AD85437D87FBB7464F8337B47E28C45D(G_B7_0, (bool)1, /*hidden argument*/NULL); } IL_0065: { // } return; } } // System.Void HRB_Bluetooth::DisconnectBleHelper() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_Bluetooth_DisconnectBleHelper_m5053730D45BD86F8A1182E75E32DD3561302A5E6 (HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D * __this, const RuntimeMethod* method) { { // if (bluetoothHelper != null) bluetoothHelper.Disconnect(); BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2 * L_0 = __this->get_bluetoothHelper_5(); if (!L_0) { goto IL_0013; } } { // if (bluetoothHelper != null) bluetoothHelper.Disconnect(); BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2 * L_1 = __this->get_bluetoothHelper_5(); NullCheck(L_1); VirtualActionInvoker0::Invoke(17 /* System.Void ArduinoBluetoothAPI.BluetoothHelper::Disconnect() */, L_1); } IL_0013: { // } return; } } // System.Void HRB_Bluetooth::Connect() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_Bluetooth_Connect_m6F2BD1A2ACB9B785EEB16615D4A8425FB196AE89 (HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BluetoothShoot_tFFB2B3FBCA6C8833498153B0B9A2F5327215D1F6_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (BluetoothShoot.scanLock) IL2CPP_RUNTIME_CLASS_INIT(BluetoothShoot_tFFB2B3FBCA6C8833498153B0B9A2F5327215D1F6_il2cpp_TypeInfo_var); bool L_0 = ((BluetoothShoot_tFFB2B3FBCA6C8833498153B0B9A2F5327215D1F6_StaticFields*)il2cpp_codegen_static_fields_for(BluetoothShoot_tFFB2B3FBCA6C8833498153B0B9A2F5327215D1F6_il2cpp_TypeInfo_var))->get_scanLock_13(); if (!L_0) { goto IL_0008; } } { // return; return; } IL_0008: { // if (!canConnect) bool L_1 = __this->get_canConnect_9(); if (L_1) { goto IL_0011; } } { // return; return; } IL_0011: { // doConnect = false; __this->set_doConnect_14((bool)0); // canConnect = false; __this->set_canConnect_9((bool)0); // SetStatus(BluetoothStatusEnum.Connecting); HRB_Bluetooth_SetStatus_mB80187534C079863DD305CA8EAAF2004682D0339(__this, 2, /*hidden argument*/NULL); // ConnectBleHelper(); HRB_Bluetooth_ConnectBleHelper_m83D79537F8FC929D411469545C60A5A104DD686C(__this, /*hidden argument*/NULL); // } return; } } // System.Void HRB_Bluetooth::ConnectBleHelper() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_Bluetooth_ConnectBleHelper_m83D79537F8FC929D411469545C60A5A104DD686C (HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BluetoothEvents_t6367CF752C0000C65AC334DE644AE84EDAA71FA3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BluetoothLEDataEvent_t68F97939E5C7C84395925D0B3DFFD9BE12FAD4CD_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BluetoothScanEvents_t96E44F26E6E173C76A806E7E95CF4C7C84B8A33B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HRB_Bluetooth_U3CConnectBleHelperU3Eb__25_0_mC1F1EC8C6814EA1C0814B27266BC43D76484D63C_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HRB_Bluetooth_U3CConnectBleHelperU3Eb__25_1_m87DADD8EF6B1375E1235C0AC6897D394B670B5D5_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HRB_Bluetooth_U3CConnectBleHelperU3Eb__25_2_mD14FCC25D2AE7B3C34174B631FAE2A30FCE4C87D_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass25_0_U3CConnectBleHelperU3Eb__3_m7A59D791A0A9640F3A2FE47501C6F1868908E5E5_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass25_0_t64D8C395B552D60CA41D39FD659B3676B96697B7_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEA7C9AAC67C8EA24FD7EC828C75FEC78129D1193); s_Il2CppMethodInitialized = true; } U3CU3Ec__DisplayClass25_0_t64D8C395B552D60CA41D39FD659B3676B96697B7 * V_0 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; IL_0000: try {// begin try (depth: 1) U3CU3Ec__DisplayClass25_0_t64D8C395B552D60CA41D39FD659B3676B96697B7 * L_0 = (U3CU3Ec__DisplayClass25_0_t64D8C395B552D60CA41D39FD659B3676B96697B7 *)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass25_0_t64D8C395B552D60CA41D39FD659B3676B96697B7_il2cpp_TypeInfo_var); U3CU3Ec__DisplayClass25_0__ctor_mCAC6F5E70CEA33D9CFA666CE20431ACE4AD73476(L_0, /*hidden argument*/NULL); V_0 = L_0; U3CU3Ec__DisplayClass25_0_t64D8C395B552D60CA41D39FD659B3676B96697B7 * L_1 = V_0; NullCheck(L_1); L_1->set_U3CU3E4__this_1(__this); // BluetoothHelper.BLE = true; IL2CPP_RUNTIME_CLASS_INIT(BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_il2cpp_TypeInfo_var); ((BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_StaticFields*)il2cpp_codegen_static_fields_for(BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2_il2cpp_TypeInfo_var))->set_BLE_3((bool)1); // bluetoothHelper = BluetoothHelper.GetNewInstance(); BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2 * L_2; L_2 = BluetoothHelper_GetNewInstance_m0232F26213407CD5A20C17A25977323C960B4E6A((String_t*)NULL, /*hidden argument*/NULL); __this->set_bluetoothHelper_5(L_2); // bluetoothHelper.OnConnected += (BluetoothHelper helper) => // { // Log("????\n" + helper.getDeviceName()); // SetStatus(BluetoothStatusEnum.ConnectSuccess); // BowCamera.isTouchMode = false; // foreach (BluetoothHelperService service in helper.getGattServices()) // { // if (service.getName().ToLower().StartsWith(targetDeviceService)) // { // bluetoothService = service; // foreach (BluetoothHelperCharacteristic characteristic in service.getCharacteristics()) // { // if (characteristic.getName().ToLower().StartsWith(targetDeviceCharacteristicWrite)) // { // characteristicWrite = characteristic; // } // else if (characteristic.getName().ToLower().StartsWith(targetDeviceCharacteristicNotify)) // { // BluetoothHelperCharacteristic ch = new BluetoothHelperCharacteristic(characteristic.getName()); // ch.setService(bluetoothService.getName()); // bluetoothHelper.Subscribe(ch); // } // } // } // } // }; BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2 * L_3 = __this->get_bluetoothHelper_5(); BluetoothEvents_t6367CF752C0000C65AC334DE644AE84EDAA71FA3 * L_4 = (BluetoothEvents_t6367CF752C0000C65AC334DE644AE84EDAA71FA3 *)il2cpp_codegen_object_new(BluetoothEvents_t6367CF752C0000C65AC334DE644AE84EDAA71FA3_il2cpp_TypeInfo_var); BluetoothEvents__ctor_mD0C2D2FBABF155FBB8B8FF33F3481DE5B09022BF(L_4, __this, (intptr_t)((intptr_t)HRB_Bluetooth_U3CConnectBleHelperU3Eb__25_0_mC1F1EC8C6814EA1C0814B27266BC43D76484D63C_RuntimeMethod_var), /*hidden argument*/NULL); NullCheck(L_3); BluetoothHelper_add_OnConnected_m5CE1875A1281B94F1FD5B265DE15CA4D1CC1807F(L_3, L_4, /*hidden argument*/NULL); // bluetoothHelper.OnConnectionFailed += (BluetoothHelper helper) => // { // Log("????\n" + helper.getDeviceName()); // OnDisconnect(); // }; BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2 * L_5 = __this->get_bluetoothHelper_5(); BluetoothEvents_t6367CF752C0000C65AC334DE644AE84EDAA71FA3 * L_6 = (BluetoothEvents_t6367CF752C0000C65AC334DE644AE84EDAA71FA3 *)il2cpp_codegen_object_new(BluetoothEvents_t6367CF752C0000C65AC334DE644AE84EDAA71FA3_il2cpp_TypeInfo_var); BluetoothEvents__ctor_mD0C2D2FBABF155FBB8B8FF33F3481DE5B09022BF(L_6, __this, (intptr_t)((intptr_t)HRB_Bluetooth_U3CConnectBleHelperU3Eb__25_1_m87DADD8EF6B1375E1235C0AC6897D394B670B5D5_RuntimeMethod_var), /*hidden argument*/NULL); NullCheck(L_5); BluetoothHelper_add_OnConnectionFailed_mEFBC9568FA0492A45442EDE15EF9D93641967D5F(L_5, L_6, /*hidden argument*/NULL); // bluetoothHelper.OnCharacteristicChanged += (helper, value, characteristic) => // { // if (status != BluetoothStatusEnum.ConnectSuccess) return; // }; BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2 * L_7 = __this->get_bluetoothHelper_5(); BluetoothLEDataEvent_t68F97939E5C7C84395925D0B3DFFD9BE12FAD4CD * L_8 = (BluetoothLEDataEvent_t68F97939E5C7C84395925D0B3DFFD9BE12FAD4CD *)il2cpp_codegen_object_new(BluetoothLEDataEvent_t68F97939E5C7C84395925D0B3DFFD9BE12FAD4CD_il2cpp_TypeInfo_var); BluetoothLEDataEvent__ctor_mB76D53B143951496C24E3EE72B1ADF1EFF4C1DF7(L_8, __this, (intptr_t)((intptr_t)HRB_Bluetooth_U3CConnectBleHelperU3Eb__25_2_mD14FCC25D2AE7B3C34174B631FAE2A30FCE4C87D_RuntimeMethod_var), /*hidden argument*/NULL); NullCheck(L_7); BluetoothHelper_add_OnCharacteristicChanged_mCF3C6E16969F2199776FEC9D2ACC99B4D06780F1(L_7, L_8, /*hidden argument*/NULL); // int scanCount = 0; U3CU3Ec__DisplayClass25_0_t64D8C395B552D60CA41D39FD659B3676B96697B7 * L_9 = V_0; NullCheck(L_9); L_9->set_scanCount_0(0); // bluetoothHelper.OnScanEnded += (BluetoothHelper helper, LinkedList nearbyDevices) => // { // foreach (BluetoothDevice device in nearbyDevices) // { // Log("???? " + device.DeviceName); // if (device.DeviceName == targetDeviceName) // { // deviceName = device.DeviceName; // // bluetoothHelper.setDeviceName(deviceName); // // bluetoothHelper.Connect(); // Log("???? " + device.DeviceName); // onFindTargetDevice?.Invoke(); // return; // } // } // if (scanCount < 3) // { //???????????????????????? // scanCount++; // bluetoothHelper.ScanNearbyDevices(); // } // else // { // canConnect = true; // Log("??????"); // SetStatus(BluetoothStatusEnum.ConnectFail); // } // }; BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2 * L_10 = __this->get_bluetoothHelper_5(); U3CU3Ec__DisplayClass25_0_t64D8C395B552D60CA41D39FD659B3676B96697B7 * L_11 = V_0; BluetoothScanEvents_t96E44F26E6E173C76A806E7E95CF4C7C84B8A33B * L_12 = (BluetoothScanEvents_t96E44F26E6E173C76A806E7E95CF4C7C84B8A33B *)il2cpp_codegen_object_new(BluetoothScanEvents_t96E44F26E6E173C76A806E7E95CF4C7C84B8A33B_il2cpp_TypeInfo_var); BluetoothScanEvents__ctor_m4DF2074D4CDECEB0BFFB8A65A44B45E253EDC6C6(L_12, L_11, (intptr_t)((intptr_t)U3CU3Ec__DisplayClass25_0_U3CConnectBleHelperU3Eb__3_m7A59D791A0A9640F3A2FE47501C6F1868908E5E5_RuntimeMethod_var), /*hidden argument*/NULL); NullCheck(L_10); BluetoothHelper_add_OnScanEnded_m29C2C4D0D6C05C482081DB00D47ADA32CEF7D3F0(L_10, L_12, /*hidden argument*/NULL); // bluetoothHelper.ScanNearbyDevices(); BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2 * L_13 = __this->get_bluetoothHelper_5(); NullCheck(L_13); bool L_14; L_14 = VirtualFuncInvoker0< bool >::Invoke(14 /* System.Boolean ArduinoBluetoothAPI.BluetoothHelper::ScanNearbyDevices() */, L_13); // Log("??????"); HRB_Bluetooth_Log_mFAC5D03F7EBAA03BBC516167F66379A7798D460D(__this, _stringLiteralEA7C9AAC67C8EA24FD7EC828C75FEC78129D1193, /*hidden argument*/NULL); // } goto IL_00db; }// 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_009b; } throw e; } CATCH_009b: {// begin catch(System.Exception) // Debug.LogError(e.Message); Exception_t * L_15 = ((Exception_t *)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *)); NullCheck(L_15); String_t* L_16; L_16 = VirtualFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Exception::get_Message() */, L_15); IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var))); Debug_LogError_m8850D65592770A364D494025FF3A73E8D4D70485(L_16, /*hidden argument*/NULL); // Debug.LogError(e.StackTrace); NullCheck(L_15); String_t* L_17; L_17 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Exception::get_StackTrace() */, L_15); Debug_LogError_m8850D65592770A364D494025FF3A73E8D4D70485(L_17, /*hidden argument*/NULL); // canConnect = true; __this->set_canConnect_9((bool)1); // status = BluetoothStatusEnum.Connect; __this->set_status_11(1); // userDoConnect = false; __this->set_userDoConnect_13((bool)0); // PopupMgr.ins.ShowTip(TextAutoLanguage2.GetTextByKey("ble-please-open-ble")); PopupMgr_t6FED92ED719BC99F2D92EB96849B1570DB8580AC * L_18; L_18 = PopupMgr_get_ins_m15DA1C0D50F662D8254FACBA48B090BF0145027D(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TextAutoLanguage2_t1A40AC9C9B03B78C659D1D0A51050A8085ED26CE_il2cpp_TypeInfo_var))); String_t* L_19; L_19 = TextAutoLanguage2_GetTextByKey_m20ADD7FAA78166ED8C8C209077DAC7EF5C8FF4D2(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7DB95A119A3D2214EDD81334E7557F03A972EA35)), /*hidden argument*/NULL); NullCheck(L_18); PopupMgr_ShowTip_m887A05C0D87DB1BC665DB614C6352F8F0EA68E42(L_18, L_19, /*hidden argument*/NULL); // } IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_00db; }// end catch (depth: 1) IL_00db: { // } return; } } // System.Void HRB_Bluetooth::Log(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_Bluetooth_Log_mFAC5D03F7EBAA03BBC516167F66379A7798D460D (HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D * __this, String_t* ___text0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral569269E39B5685F53BADE2640745A97AB89897F6); s_Il2CppMethodInitialized = true; } { // if (textUI) textUI.text = text; Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * L_0 = __this->get_textUI_10(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_1; L_1 = Object_op_Implicit_mC8214E4F028CC2F036CC82BDB81D102A02893499(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_0019; } } { // if (textUI) textUI.text = text; Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * L_2 = __this->get_textUI_10(); String_t* L_3 = ___text0; NullCheck(L_2); VirtualActionInvoker1< String_t* >::Invoke(75 /* System.Void UnityEngine.UI.Text::set_text(System.String) */, L_2, L_3); } IL_0019: { // Debug.Log(string.Format("[{0}]{1}", typeof(HRB_Bluetooth).Name, text)); RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_4 = { reinterpret_cast (HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_5; L_5 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_4, /*hidden argument*/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 = ___text0; String_t* L_8; L_8 = String_Format_m8D1CB0410C35E052A53AE957C914C841E54BAB66(_stringLiteral569269E39B5685F53BADE2640745A97AB89897F6, L_6, L_7, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_Log_mC26E5AD0D8D156C7FFD173AA15827F69225E9DB8(L_8, /*hidden argument*/NULL); // } return; } } // System.Void HRB_Bluetooth::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_Bluetooth__ctor_m01178CC3B954CD8BB9A8D5E7C828D1D325B1355A (HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE5053BB4068FA55A960E783C9E4398790DD6D031); s_Il2CppMethodInitialized = true; } { // readonly string targetDeviceName = "Bbow_20210501"; __this->set_targetDeviceName_4(_stringLiteralE5053BB4068FA55A960E783C9E4398790DD6D031); // string deviceName = ""; __this->set_deviceName_8(_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709); // bool canConnect = true; __this->set_canConnect_9((bool)1); // public BluetoothStatusEnum status = BluetoothStatusEnum.Connect; __this->set_status_11(1); MonoBehaviour__ctor_mC0995D847F6A95B1A553652636C38A2AA8B13BED(__this, /*hidden argument*/NULL); return; } } // System.Void HRB_Bluetooth::b__22_0() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_Bluetooth_U3CSetStatusU3Eb__22_0_mC347A67FC38BA5EFBEF4BB0276947D5DBB89CD7A (HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D * __this, const RuntimeMethod* method) { { // if (status == BluetoothStatusEnum.ConnectFail) int32_t L_0 = __this->get_status_11(); if ((!(((uint32_t)L_0) == ((uint32_t)4)))) { goto IL_0010; } } { // status = BluetoothStatusEnum.Connect; __this->set_status_11(1); } IL_0010: { // }); return; } } // System.Void HRB_Bluetooth::b__25_0(ArduinoBluetoothAPI.BluetoothHelper) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_Bluetooth_U3CConnectBleHelperU3Eb__25_0_mC1F1EC8C6814EA1C0814B27266BC43D76484D63C (HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D * __this, BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2 * ___helper0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BluetoothHelperCharacteristic_t192402A7C03FD9857C87822D541F8737A469B6E9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BowCamera_t7AA7E1A3AE4107303360B6EC9EC72E5F762D0FF9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m2A96334EF63834D3A85C16B1CEC9D0F360424EFC_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_mCC607B0C09E801F33EB6B0922A8899D2A5D55BA9_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m43A83012B262D49B331D221FBE414049CBCD4F42_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m5D19B55E374EAB466CAF87C0C00A02C61F887F00_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m2DA3B3BBAA26BE86BD21DB51E1E2174867768DF4_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m6774D8858FE9A9551EB72A70CD0855E255B7C974_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LinkedList_1_GetEnumerator_m23E2202D223C083DAC688E7DE70CE31E8902EF46_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_mFEADCD2047CEE6D0CFA45A429CF8F3074E37673C_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral085AA5469EE6BEB776E25FB4D162068D113925B4); s_Il2CppMethodInitialized = true; } Enumerator_t45A82901819006B9A7ADA1749AE31E33D0AF8AF2 V_0; memset((&V_0), 0, sizeof(V_0)); BluetoothHelperService_t4C830DA91BDB3A9EC558D45C55A9318E931CA2A9 * V_1 = NULL; Enumerator_t798BE184229895CEBE1EA4E63709DBA660A3460C V_2; memset((&V_2), 0, sizeof(V_2)); BluetoothHelperCharacteristic_t192402A7C03FD9857C87822D541F8737A469B6E9 * V_3 = NULL; BluetoothHelperCharacteristic_t192402A7C03FD9857C87822D541F8737A469B6E9 * V_4 = NULL; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; { // Log("????\n" + helper.getDeviceName()); BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2 * L_0 = ___helper0; NullCheck(L_0); String_t* L_1; L_1 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String ArduinoBluetoothAPI.BluetoothHelper::getDeviceName() */, L_0); String_t* L_2; L_2 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(_stringLiteral085AA5469EE6BEB776E25FB4D162068D113925B4, L_1, /*hidden argument*/NULL); HRB_Bluetooth_Log_mFAC5D03F7EBAA03BBC516167F66379A7798D460D(__this, L_2, /*hidden argument*/NULL); // SetStatus(BluetoothStatusEnum.ConnectSuccess); HRB_Bluetooth_SetStatus_mB80187534C079863DD305CA8EAAF2004682D0339(__this, 3, /*hidden argument*/NULL); // BowCamera.isTouchMode = false; IL2CPP_RUNTIME_CLASS_INIT(BowCamera_t7AA7E1A3AE4107303360B6EC9EC72E5F762D0FF9_il2cpp_TypeInfo_var); BowCamera_set_isTouchMode_m697E7BDB07075516ADCEFDD7452D52356099CB82_inline((bool)0, /*hidden argument*/NULL); // foreach (BluetoothHelperService service in helper.getGattServices()) BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2 * L_3 = ___helper0; NullCheck(L_3); List_1_tFD38E11A811DED19252DF7684390FF692DB525C5 * L_4; L_4 = VirtualFuncInvoker0< List_1_tFD38E11A811DED19252DF7684390FF692DB525C5 * >::Invoke(32 /* System.Collections.Generic.List`1 ArduinoBluetoothAPI.BluetoothHelper::getGattServices() */, L_3); NullCheck(L_4); Enumerator_t45A82901819006B9A7ADA1749AE31E33D0AF8AF2 L_5; L_5 = List_1_GetEnumerator_mFEADCD2047CEE6D0CFA45A429CF8F3074E37673C(L_4, /*hidden argument*/List_1_GetEnumerator_mFEADCD2047CEE6D0CFA45A429CF8F3074E37673C_RuntimeMethod_var); V_0 = L_5; } IL_002f: try {// begin try (depth: 1) { goto IL_00f2; } IL_0034: { // foreach (BluetoothHelperService service in helper.getGattServices()) BluetoothHelperService_t4C830DA91BDB3A9EC558D45C55A9318E931CA2A9 * L_6; L_6 = Enumerator_get_Current_m2DA3B3BBAA26BE86BD21DB51E1E2174867768DF4_inline((Enumerator_t45A82901819006B9A7ADA1749AE31E33D0AF8AF2 *)(&V_0), /*hidden argument*/Enumerator_get_Current_m2DA3B3BBAA26BE86BD21DB51E1E2174867768DF4_RuntimeMethod_var); V_1 = L_6; // if (service.getName().ToLower().StartsWith(targetDeviceService)) BluetoothHelperService_t4C830DA91BDB3A9EC558D45C55A9318E931CA2A9 * L_7 = V_1; NullCheck(L_7); String_t* L_8; L_8 = BluetoothHelperService_getName_mC2B58215D48C8773638DCE0D3347D094B99CD20C_inline(L_7, /*hidden argument*/NULL); NullCheck(L_8); String_t* L_9; L_9 = String_ToLower_m7875A49FE166D0A68F3F6B6E70C0C056EBEFD31D(L_8, /*hidden argument*/NULL); String_t* L_10; L_10 = HRB_Bluetooth_get_targetDeviceService_mB34B364EABE36C047F92CB1E94E25FB4C9824342(__this, /*hidden argument*/NULL); NullCheck(L_9); bool L_11; L_11 = String_StartsWith_mDE2FF98CAFFD13F88EDEB6C40158DDF840BFCF12(L_9, L_10, /*hidden argument*/NULL); if (!L_11) { goto IL_00f2; } } IL_0057: { // bluetoothService = service; BluetoothHelperService_t4C830DA91BDB3A9EC558D45C55A9318E931CA2A9 * L_12 = V_1; __this->set_bluetoothService_7(L_12); // foreach (BluetoothHelperCharacteristic characteristic in service.getCharacteristics()) BluetoothHelperService_t4C830DA91BDB3A9EC558D45C55A9318E931CA2A9 * L_13 = V_1; NullCheck(L_13); LinkedList_1_t3656FF46586A1EDB68EC68E62D94A1284314CC08 * L_14; L_14 = BluetoothHelperService_getCharacteristics_mBD7CEF21C1DC6FC1100FF68426FD9BDEDF2BB28A_inline(L_13, /*hidden argument*/NULL); NullCheck(L_14); Enumerator_t798BE184229895CEBE1EA4E63709DBA660A3460C L_15; L_15 = LinkedList_1_GetEnumerator_m23E2202D223C083DAC688E7DE70CE31E8902EF46(L_14, /*hidden argument*/LinkedList_1_GetEnumerator_m23E2202D223C083DAC688E7DE70CE31E8902EF46_RuntimeMethod_var); V_2 = L_15; } IL_006a: try {// begin try (depth: 2) { goto IL_00d9; } IL_006c: { // foreach (BluetoothHelperCharacteristic characteristic in service.getCharacteristics()) BluetoothHelperCharacteristic_t192402A7C03FD9857C87822D541F8737A469B6E9 * L_16; L_16 = Enumerator_get_Current_m6774D8858FE9A9551EB72A70CD0855E255B7C974_inline((Enumerator_t798BE184229895CEBE1EA4E63709DBA660A3460C *)(&V_2), /*hidden argument*/Enumerator_get_Current_m6774D8858FE9A9551EB72A70CD0855E255B7C974_RuntimeMethod_var); V_3 = L_16; // if (characteristic.getName().ToLower().StartsWith(targetDeviceCharacteristicWrite)) BluetoothHelperCharacteristic_t192402A7C03FD9857C87822D541F8737A469B6E9 * L_17 = V_3; NullCheck(L_17); String_t* L_18; L_18 = BluetoothHelperCharacteristic_getName_m59316C36B56D20C5176500C1A3D4B8CBD9825E5E_inline(L_17, /*hidden argument*/NULL); NullCheck(L_18); String_t* L_19; L_19 = String_ToLower_m7875A49FE166D0A68F3F6B6E70C0C056EBEFD31D(L_18, /*hidden argument*/NULL); String_t* L_20; L_20 = HRB_Bluetooth_get_targetDeviceCharacteristicWrite_m5D2F65F036125A1A3E0234748E3848C022933116(__this, /*hidden argument*/NULL); NullCheck(L_19); bool L_21; L_21 = String_StartsWith_mDE2FF98CAFFD13F88EDEB6C40158DDF840BFCF12(L_19, L_20, /*hidden argument*/NULL); if (!L_21) { goto IL_0095; } } IL_008c: { // characteristicWrite = characteristic; BluetoothHelperCharacteristic_t192402A7C03FD9857C87822D541F8737A469B6E9 * L_22 = V_3; __this->set_characteristicWrite_6(L_22); // } goto IL_00d9; } IL_0095: { // else if (characteristic.getName().ToLower().StartsWith(targetDeviceCharacteristicNotify)) BluetoothHelperCharacteristic_t192402A7C03FD9857C87822D541F8737A469B6E9 * L_23 = V_3; NullCheck(L_23); String_t* L_24; L_24 = BluetoothHelperCharacteristic_getName_m59316C36B56D20C5176500C1A3D4B8CBD9825E5E_inline(L_23, /*hidden argument*/NULL); NullCheck(L_24); String_t* L_25; L_25 = String_ToLower_m7875A49FE166D0A68F3F6B6E70C0C056EBEFD31D(L_24, /*hidden argument*/NULL); String_t* L_26; L_26 = HRB_Bluetooth_get_targetDeviceCharacteristicNotify_m30D2FE7DCE4049FD414A3CA8EC7EE2D843B4E7C7(__this, /*hidden argument*/NULL); NullCheck(L_25); bool L_27; L_27 = String_StartsWith_mDE2FF98CAFFD13F88EDEB6C40158DDF840BFCF12(L_25, L_26, /*hidden argument*/NULL); if (!L_27) { goto IL_00d9; } } IL_00ad: { // BluetoothHelperCharacteristic ch = new BluetoothHelperCharacteristic(characteristic.getName()); BluetoothHelperCharacteristic_t192402A7C03FD9857C87822D541F8737A469B6E9 * L_28 = V_3; NullCheck(L_28); String_t* L_29; L_29 = BluetoothHelperCharacteristic_getName_m59316C36B56D20C5176500C1A3D4B8CBD9825E5E_inline(L_28, /*hidden argument*/NULL); BluetoothHelperCharacteristic_t192402A7C03FD9857C87822D541F8737A469B6E9 * L_30 = (BluetoothHelperCharacteristic_t192402A7C03FD9857C87822D541F8737A469B6E9 *)il2cpp_codegen_object_new(BluetoothHelperCharacteristic_t192402A7C03FD9857C87822D541F8737A469B6E9_il2cpp_TypeInfo_var); BluetoothHelperCharacteristic__ctor_mCEAEDEF8755245EE6043CAAECC137B37C611305C(L_30, L_29, /*hidden argument*/NULL); V_4 = L_30; // ch.setService(bluetoothService.getName()); BluetoothHelperCharacteristic_t192402A7C03FD9857C87822D541F8737A469B6E9 * L_31 = V_4; BluetoothHelperService_t4C830DA91BDB3A9EC558D45C55A9318E931CA2A9 * L_32 = __this->get_bluetoothService_7(); NullCheck(L_32); String_t* L_33; L_33 = BluetoothHelperService_getName_mC2B58215D48C8773638DCE0D3347D094B99CD20C_inline(L_32, /*hidden argument*/NULL); NullCheck(L_31); BluetoothHelperCharacteristic_setService_mE0AB7736081BC9807E94F146988121AAC5562642_inline(L_31, L_33, /*hidden argument*/NULL); // bluetoothHelper.Subscribe(ch); BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2 * L_34 = __this->get_bluetoothHelper_5(); BluetoothHelperCharacteristic_t192402A7C03FD9857C87822D541F8737A469B6E9 * L_35 = V_4; NullCheck(L_34); VirtualActionInvoker1< BluetoothHelperCharacteristic_t192402A7C03FD9857C87822D541F8737A469B6E9 * >::Invoke(29 /* System.Void ArduinoBluetoothAPI.BluetoothHelper::Subscribe(ArduinoBluetoothAPI.BluetoothHelperCharacteristic) */, L_34, L_35); } IL_00d9: { // foreach (BluetoothHelperCharacteristic characteristic in service.getCharacteristics()) bool L_36; L_36 = Enumerator_MoveNext_m43A83012B262D49B331D221FBE414049CBCD4F42((Enumerator_t798BE184229895CEBE1EA4E63709DBA660A3460C *)(&V_2), /*hidden argument*/Enumerator_MoveNext_m43A83012B262D49B331D221FBE414049CBCD4F42_RuntimeMethod_var); if (L_36) { goto IL_006c; } } IL_00e2: { IL2CPP_LEAVE(0xF2, FINALLY_00e4); } }// end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00e4; } FINALLY_00e4: {// begin finally (depth: 2) Enumerator_Dispose_mCC607B0C09E801F33EB6B0922A8899D2A5D55BA9((Enumerator_t798BE184229895CEBE1EA4E63709DBA660A3460C *)(&V_2), /*hidden argument*/Enumerator_Dispose_mCC607B0C09E801F33EB6B0922A8899D2A5D55BA9_RuntimeMethod_var); IL2CPP_END_FINALLY(228) }// end finally (depth: 2) IL2CPP_CLEANUP(228) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0xF2, IL_00f2) } IL_00f2: { // foreach (BluetoothHelperService service in helper.getGattServices()) bool L_37; L_37 = Enumerator_MoveNext_m5D19B55E374EAB466CAF87C0C00A02C61F887F00((Enumerator_t45A82901819006B9A7ADA1749AE31E33D0AF8AF2 *)(&V_0), /*hidden argument*/Enumerator_MoveNext_m5D19B55E374EAB466CAF87C0C00A02C61F887F00_RuntimeMethod_var); if (L_37) { goto IL_0034; } } IL_00fe: { IL2CPP_LEAVE(0x10E, FINALLY_0100); } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0100; } FINALLY_0100: {// begin finally (depth: 1) Enumerator_Dispose_m2A96334EF63834D3A85C16B1CEC9D0F360424EFC((Enumerator_t45A82901819006B9A7ADA1749AE31E33D0AF8AF2 *)(&V_0), /*hidden argument*/Enumerator_Dispose_m2A96334EF63834D3A85C16B1CEC9D0F360424EFC_RuntimeMethod_var); IL2CPP_END_FINALLY(256) }// end finally (depth: 1) IL2CPP_CLEANUP(256) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x10E, IL_010e) } IL_010e: { // }; return; } } // System.Void HRB_Bluetooth::b__25_1(ArduinoBluetoothAPI.BluetoothHelper) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_Bluetooth_U3CConnectBleHelperU3Eb__25_1_m87DADD8EF6B1375E1235C0AC6897D394B670B5D5 (HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D * __this, BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2 * ___helper0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC66ADCDF699968596DCBB9929E528A493F44E91F); s_Il2CppMethodInitialized = true; } { // Log("????\n" + helper.getDeviceName()); BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2 * L_0 = ___helper0; NullCheck(L_0); String_t* L_1; L_1 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String ArduinoBluetoothAPI.BluetoothHelper::getDeviceName() */, L_0); String_t* L_2; L_2 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(_stringLiteralC66ADCDF699968596DCBB9929E528A493F44E91F, L_1, /*hidden argument*/NULL); HRB_Bluetooth_Log_mFAC5D03F7EBAA03BBC516167F66379A7798D460D(__this, L_2, /*hidden argument*/NULL); // OnDisconnect(); HRB_Bluetooth_OnDisconnect_mE60532F7F604A52F8EC4B8C0EEDAF1264DCBB052(__this, /*hidden argument*/NULL); // }; return; } } // System.Void HRB_Bluetooth::b__25_2(ArduinoBluetoothAPI.BluetoothHelper,System.Byte[],ArduinoBluetoothAPI.BluetoothHelperCharacteristic) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_Bluetooth_U3CConnectBleHelperU3Eb__25_2_mD14FCC25D2AE7B3C34174B631FAE2A30FCE4C87D (HRB_Bluetooth_tBA38D0E88AE73203949999A4098ED6FB91A9C55D * __this, BluetoothHelper_t15B42A0CCFF782A3A55652748E5495BCEA3063D2 * ___helper0, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___value1, BluetoothHelperCharacteristic_t192402A7C03FD9857C87822D541F8737A469B6E9 * ___characteristic2, const RuntimeMethod* method) { { // if (status != BluetoothStatusEnum.ConnectSuccess) return; int32_t L_0 = __this->get_status_11(); // if (status != BluetoothStatusEnum.ConnectSuccess) return; 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.Collections.IEnumerator HRB_Controller::getUserInfo(System.Action`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* HRB_Controller_getUserInfo_m1D13450FE2AA23C86CBA6BE6156608DB211300CA (HRB_Controller_tE1A7F19BF3E22DAFD78C6889E6DBEB285342C247 * __this, Action_1_t41459F578D5FCF151500CBC8CF9276BDC6C984FE * ___callback0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CgetUserInfoU3Ed__0_tBD35BE495BE4163DEDADF5A235B0855C5F764FDD_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { U3CgetUserInfoU3Ed__0_tBD35BE495BE4163DEDADF5A235B0855C5F764FDD * L_0 = (U3CgetUserInfoU3Ed__0_tBD35BE495BE4163DEDADF5A235B0855C5F764FDD *)il2cpp_codegen_object_new(U3CgetUserInfoU3Ed__0_tBD35BE495BE4163DEDADF5A235B0855C5F764FDD_il2cpp_TypeInfo_var); U3CgetUserInfoU3Ed__0__ctor_m13C419D3DB5AA9227A3ABFAF90480C2402BD9B14(L_0, 0, /*hidden argument*/NULL); U3CgetUserInfoU3Ed__0_tBD35BE495BE4163DEDADF5A235B0855C5F764FDD * L_1 = L_0; Action_1_t41459F578D5FCF151500CBC8CF9276BDC6C984FE * L_2 = ___callback0; NullCheck(L_1); L_1->set_callback_2(L_2); return L_1; } } // System.Collections.IEnumerator HRB_Controller::saveUserInfo(HRB_UserInfo,System.Action`1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* HRB_Controller_saveUserInfo_m61410C07BA405FED7313D5E62678D8A717F8446F (HRB_Controller_tE1A7F19BF3E22DAFD78C6889E6DBEB285342C247 * __this, HRB_UserInfo_t33A1D91CD880DFDBEF533505A82350E3D3C8B6A9 * ___userInfo0, Action_1_t41459F578D5FCF151500CBC8CF9276BDC6C984FE * ___callback1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CsaveUserInfoU3Ed__1_t33EC474A0E07837222472BE5DE956D54E775BEE7_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { U3CsaveUserInfoU3Ed__1_t33EC474A0E07837222472BE5DE956D54E775BEE7 * L_0 = (U3CsaveUserInfoU3Ed__1_t33EC474A0E07837222472BE5DE956D54E775BEE7 *)il2cpp_codegen_object_new(U3CsaveUserInfoU3Ed__1_t33EC474A0E07837222472BE5DE956D54E775BEE7_il2cpp_TypeInfo_var); U3CsaveUserInfoU3Ed__1__ctor_m4AECFFD56B06756D1121AE2E8B3B9698D0499B18(L_0, 0, /*hidden argument*/NULL); U3CsaveUserInfoU3Ed__1_t33EC474A0E07837222472BE5DE956D54E775BEE7 * L_1 = L_0; HRB_UserInfo_t33A1D91CD880DFDBEF533505A82350E3D3C8B6A9 * L_2 = ___userInfo0; NullCheck(L_1); L_1->set_userInfo_2(L_2); U3CsaveUserInfoU3Ed__1_t33EC474A0E07837222472BE5DE956D54E775BEE7 * L_3 = L_1; Action_1_t41459F578D5FCF151500CBC8CF9276BDC6C984FE * L_4 = ___callback1; NullCheck(L_3); L_3->set_callback_3(L_4); return L_3; } } // System.Void HRB_Controller::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_Controller__ctor_m43E6BC0A0B528030015C8CC085E9C431A64D21C7 (HRB_Controller_tE1A7F19BF3E22DAFD78C6889E6DBEB285342C247 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Singleton_1__ctor_m062E752286577263B3C539CE4019517F47F93FC1_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { Singleton_1__ctor_m062E752286577263B3C539CE4019517F47F93FC1(__this, /*hidden argument*/Singleton_1__ctor_m062E752286577263B3C539CE4019517F47F93FC1_RuntimeMethod_var); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void HRB_DegreaseView::Start() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HRB_DegreaseView_Start_m0AD62BF307861834AB8868A65023BCFE06750294 (HRB_DegreaseView_tBFDCE6B3DF07E6FBF2F3EF05AE4AD2B9481183BD * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Component_GetComponentInChildren_TisInputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0_m00E16B3E961B585CB5C071AF073E99CED52F5EA9_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Component_GetComponentInChildren_TisText_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1_mCBD44A97260E33F58E2FBBD76E0432C8F120C30E_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Component_GetComponentInChildren_TisTwoPoleSwitch_tE7E4EC1E9EA056C875ADC10C88ED8BC83B0DF540_mD0515C9523EACD85F88F9AB1BEB328436EEB8C91_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Component_GetComponent_TisButton_tA893FC15AB26E1439AC25BDCA7079530587BB65D_mED8C9575844B41F67CB4C2B13685FC0174CB61BC_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2__ctor_m19840CEA81CA9090EC7708F6D398092E511A6DD7_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_t50F598941CFDF02619DC5D52FFDBC329473C5F7B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HRB_DegreaseView_U3CStartU3Eb__4_1_mB935EC8148BC4FEBED21A2ED58531793D75932A2_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HRB_DegreaseView_U3CStartU3Eb__4_2_m15D72453A002614F0A9928A6A550482F8881ED37_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HRB_DegreaseView_U3CStartU3Eb__4_3_mA3B760C0EE932B11A5EE60DE0F253E74EE76D2C3_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3CStartU3Eb__4_0_mD78A8CE66B50D23A8C68B72C1FFADE68C7CF5436_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t5DC7D2574DC64DC3DA01783058EC97AA3F171420_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityAction_1__ctor_mBB6FF824ECCAE3C08CD8B015E235BBDC15BCF43F_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityAction_1_t4A1848C01D99711D0E3D235F1FDBBA96BA48B647_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityEvent_1_AddListener_mC6DDB55AF3B8AC6DBA08F1695CE00DE191603830_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral28D1B513AD2BF08C6D178E56957F7BA0972AB9BE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral45A5D42D97A4FCBA76B0B76E23146213DC1160D7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral479A748D3BC13E7D3FDE4C7BF17C04B4A434D8B3); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEB09EA92F56BD53467730DEE6BAADFC06CEDEA71); s_Il2CppMethodInitialized = true; } Func_2_t50F598941CFDF02619DC5D52FFDBC329473C5F7B * G_B2_0 = NULL; TwoPoleSwitch_tE7E4EC1E9EA056C875ADC10C88ED8BC83B0DF540 * G_B2_1 = NULL; Func_2_t50F598941CFDF02619DC5D52FFDBC329473C5F7B * G_B1_0 = NULL; TwoPoleSwitch_tE7E4EC1E9EA056C875ADC10C88ED8BC83B0DF540 * G_B1_1 = NULL; { // GetComponentInChildren().onClick = (v) => { // AudioMgr.ins.PlayBtn(); // return true; // }; TwoPoleSwitch_tE7E4EC1E9EA056C875ADC10C88ED8BC83B0DF540 * L_0; L_0 = Component_GetComponentInChildren_TisTwoPoleSwitch_tE7E4EC1E9EA056C875ADC10C88ED8BC83B0DF540_mD0515C9523EACD85F88F9AB1BEB328436EEB8C91(__this, /*hidden argument*/Component_GetComponentInChildren_TisTwoPoleSwitch_tE7E4EC1E9EA056C875ADC10C88ED8BC83B0DF540_mD0515C9523EACD85F88F9AB1BEB328436EEB8C91_RuntimeMethod_var); IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t5DC7D2574DC64DC3DA01783058EC97AA3F171420_il2cpp_TypeInfo_var); Func_2_t50F598941CFDF02619DC5D52FFDBC329473C5F7B * L_1 = ((U3CU3Ec_t5DC7D2574DC64DC3DA01783058EC97AA3F171420_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t5DC7D2574DC64DC3DA01783058EC97AA3F171420_il2cpp_TypeInfo_var))->get_U3CU3E9__4_0_1(); Func_2_t50F598941CFDF02619DC5D52FFDBC329473C5F7B * L_2 = L_1; G_B1_0 = L_2; G_B1_1 = L_0; if (L_2) { G_B2_0 = L_2; G_B2_1 = L_0; goto IL_0025; } } { IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t5DC7D2574DC64DC3DA01783058EC97AA3F171420_il2cpp_TypeInfo_var); U3CU3Ec_t5DC7D2574DC64DC3DA01783058EC97AA3F171420 * L_3 = ((U3CU3Ec_t5DC7D2574DC64DC3DA01783058EC97AA3F171420_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t5DC7D2574DC64DC3DA01783058EC97AA3F171420_il2cpp_TypeInfo_var))->get_U3CU3E9_0(); Func_2_t50F598941CFDF02619DC5D52FFDBC329473C5F7B * L_4 = (Func_2_t50F598941CFDF02619DC5D52FFDBC329473C5F7B *)il2cpp_codegen_object_new(Func_2_t50F598941CFDF02619DC5D52FFDBC329473C5F7B_il2cpp_TypeInfo_var); Func_2__ctor_m19840CEA81CA9090EC7708F6D398092E511A6DD7(L_4, L_3, (intptr_t)((intptr_t)U3CU3Ec_U3CStartU3Eb__4_0_mD78A8CE66B50D23A8C68B72C1FFADE68C7CF5436_RuntimeMethod_var), /*hidden argument*/Func_2__ctor_m19840CEA81CA9090EC7708F6D398092E511A6DD7_RuntimeMethod_var); Func_2_t50F598941CFDF02619DC5D52FFDBC329473C5F7B * L_5 = L_4; ((U3CU3Ec_t5DC7D2574DC64DC3DA01783058EC97AA3F171420_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t5DC7D2574DC64DC3DA01783058EC97AA3F171420_il2cpp_TypeInfo_var))->set_U3CU3E9__4_0_1(L_5); G_B2_0 = L_5; G_B2_1 = G_B1_1; } IL_0025: { NullCheck(G_B2_1); G_B2_1->set_onClick_8(G_B2_0); // text_TimeCounter = transform.Find("TimeCounter").GetComponentInChildren(); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_6; L_6 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(__this, /*hidden argument*/NULL); NullCheck(L_6); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_7; L_7 = Transform_Find_mB1687901A4FB0D562C44A93CC67CD35DCFCAABA1(L_6, _stringLiteralEB09EA92F56BD53467730DEE6BAADFC06CEDEA71, /*hidden argument*/NULL); NullCheck(L_7); Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * L_8; L_8 = Component_GetComponentInChildren_TisText_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1_mCBD44A97260E33F58E2FBBD76E0432C8F120C30E(L_7, /*hidden argument*/Component_GetComponentInChildren_TisText_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1_mCBD44A97260E33F58E2FBBD76E0432C8F120C30E_RuntimeMethod_var); __this->set_text_TimeCounter_7(L_8); // inputField_bmpMin = transform.Find("BoxBMP/BoxA").GetComponentInChildren(); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_9; L_9 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(__this, /*hidden argument*/NULL); NullCheck(L_9); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_10; L_10 = Transform_Find_mB1687901A4FB0D562C44A93CC67CD35DCFCAABA1(L_9, _stringLiteral479A748D3BC13E7D3FDE4C7BF17C04B4A434D8B3, /*hidden argument*/NULL); NullCheck(L_10); InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 * L_11; L_11 = Component_GetComponentInChildren_TisInputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0_m00E16B3E961B585CB5C071AF073E99CED52F5EA9(L_10, /*hidden argument*/Component_GetComponentInChildren_TisInputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0_m00E16B3E961B585CB5C071AF073E99CED52F5EA9_RuntimeMethod_var); __this->set_inputField_bmpMin_6(L_11); // inputField_bmpMin.onEndEdit.AddListener((s) => { // int value = int.Parse(s); // if (value < 0 || value > 250) PopupMgr.ins.ShowTip("???????????"); // HRB_UserInfo.current.bmpMin = Mathf.Clamp(value, 0, 250); // HRB_UserInfo.current.SaveLocalData(); // RenderBmpMin(); // }); InputField_tB41A2814F31A3E9373D443EDEBBB2856006324D0 * L_12 = __this->get_inputField_bmpMin_6(); NullCheck(L_12); EndEditEvent_t85372BABF7066F7DF46B414EA94C5D42736A0E8D * L_13; L_13 = InputField_get_onEndEdit_m6E5D422101DA2F7BF3962CC783C98C022E8C26B3_inline(L_12, /*hidden argument*/NULL); UnityAction_1_t4A1848C01D99711D0E3D235F1FDBBA96BA48B647 * L_14 = (UnityAction_1_t4A1848C01D99711D0E3D235F1FDBBA96BA48B647 *)il2cpp_codegen_object_new(UnityAction_1_t4A1848C01D99711D0E3D235F1FDBBA96BA48B647_il2cpp_TypeInfo_var); UnityAction_1__ctor_mBB6FF824ECCAE3C08CD8B015E235BBDC15BCF43F(L_14, __this, (intptr_t)((intptr_t)HRB_DegreaseView_U3CStartU3Eb__4_1_mB935EC8148BC4FEBED21A2ED58531793D75932A2_RuntimeMethod_var), /*hidden argument*/UnityAction_1__ctor_mBB6FF824ECCAE3C08CD8B015E235BBDC15BCF43F_RuntimeMethod_var); NullCheck(L_13); UnityEvent_1_AddListener_mC6DDB55AF3B8AC6DBA08F1695CE00DE191603830(L_13, L_14, /*hidden argument*/UnityEvent_1_AddListener_mC6DDB55AF3B8AC6DBA08F1695CE00DE191603830_RuntimeMethod_var); // RenderBmpMin(); HRB_DegreaseView_RenderBmpMin_mA5C227AA06AB950E4F01ED87E977C16E1D8F9075(__this, /*hidden argument*/NULL); // transform.Find("TimeClearer").GetComponent