#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 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 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); } }; template struct InterfaceFuncInvoker3 { typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*); static inline R 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); return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method); } }; template struct InterfaceFuncInvoker4 { typedef R (*Func)(void*, T1, T2, T3, T4, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method); } }; // System.Action`1 struct Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC; // System.Action`1 struct Action_1_t1B7004A16BED5066BEB03C343CA7F4B5EE772A10; // System.Action`2 struct Action_2_tC40BDAE269456CB20CA0E0A89A7024EA09439C94; // System.Action`2 struct Action_2_t0E8CFD7D8A4393070552ED14F07C6D3B5AD0ED57; // System.Action`2 struct Action_2_t5C556B6D8F8D47EA5C55DC24670009B95AF10486; // System.Action`2 struct Action_2_t2ED3ACC0CD5AF36EDBA73683487219F1ADB37DBD; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t7770EBD8CD2A9F2B15123613B176DC9B6B9E50BA; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t4BDF8B7A93F3D9B02BEBEC97EA442EFF60CDA1B2; // System.Collections.Generic.HashSet`1 struct HashSet_1_tC5715D3475135D0E978BA6BA299F273B6823EA1C; // System.Collections.Generic.HashSet`1 struct HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B; // System.Collections.Generic.HashSet`1 struct HashSet_1_t658A4F799C39BCEF71EEB383AC1FCCFDC8447673; // System.Collections.Generic.HashSet`1 struct HashSet_1_tBBDF351960AC909F90DBEEF112FAB92D79FAB089; // System.Collections.Generic.HashSet`1 struct HashSet_1_tDCAB35561946D13824B6FB0E682604867484A551; // System.Collections.Generic.HashSet`1 struct HashSet_1_t47ED9A0606C5D93A2045DE3AACBA2CD73C930023; // System.Collections.Generic.IEqualityComparer`1 struct IEqualityComparer_1_t1A386BEF1855064FD5CC71F340A68881A52B4932; // System.Collections.Generic.IEqualityComparer`1 struct IEqualityComparer_1_t8C1A8205A51B6BA84D976BC2CD223E4DE61D9C43; // System.Collections.Generic.IEqualityComparer`1 struct IEqualityComparer_1_tF690D87A9089EA6DAE3723F50B97C0F71D6D89D9; // System.Collections.Generic.List`1 struct List_1_t6642D08E578C77292ED5537CF3192269131C189C; // System.Collections.Generic.List`1 struct List_1_t27D7842CA3FD659C9BE64845F118C2590EE2D2C0; // System.Collections.Generic.List`1 struct List_1_t08B78D4D8AA7967CCB0B188F26199678C0124DF1; // System.Threading.Tasks.Task`1 struct Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725; // DG.Tweening.TweenCallback`1 struct TweenCallback_1_t145CD5D30F08B617B445D2B1B79A7BAADC305B9B; // System.Collections.Generic.HashSet`1/Slot[] struct SlotU5BU5D_tA2C59549601B8D4FF421D3FE4AE207703AADA494; // System.Collections.Generic.HashSet`1/Slot[] struct SlotU5BU5D_t8EC62680F649585ECE1B7E1D80BAFAF7F475C579; // System.Collections.Generic.HashSet`1/Slot[] struct SlotU5BU5D_t33EC0D3104CE571EFAFC379F9501DEEDBAA24170; // System.Int32[][] struct Int32U5BU5DU5BU5D_t104DBF1B996084AA19567FD32B02EDF88D044FAF; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable[] struct Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger[] struct BigIntegerU5BU5D_tE8B77B5B8A588D40881DE1C7EE373965BF9E33ED; // System.Boolean[] struct BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C; // System.Byte[] struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726; // System.Char[] struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34; // System.Delegate[] struct DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier[] struct DerObjectIdentifierU5BU5D_t801513A53C26B675A2EC1C7456321775EDCC225F; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECFieldElement[] struct ECFieldElementU5BU5D_tED7137DB1C0FB7E75B3A30A606822D4ED381D94E; // System.Int16[] struct Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD; // System.Int32[] struct Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32; // System.Int64[] struct Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6; // System.IntPtr[] struct IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6; // System.Object[] struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE; // UnityEngine.Quaternion[] struct QuaternionU5BU5D_t584B1CC68E95071898E32F34DB2CC1E4A726FAA6; // System.SByte[] struct SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7; // System.Single[] struct SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA; // System.Diagnostics.StackTrace[] struct StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971; // System.String[] struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A; // System.Type[] struct TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755; // System.UInt32[] struct UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Attribute[] struct X509AttributeU5BU5D_tB7CB869D1933A59A13717C710F5F0ED2A833E042; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate/Config[] struct ConfigU5BU5D_t881C9BAB1EC8EC965108D90A824EABB5DD576A2C; // TreeAreaRecorder/AreaInfo[] struct AreaInfoU5BU5D_tDB8FCFB9A63CBA4F532B013A8702761BB2E7BA27; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.Multiplier.AbstractECMultiplier struct AbstractECMultiplier_t54253743E31DE46FD22E58679B9792D44DA770B5; // System.Action struct Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Adler32 struct Adler32_tA7FF29BBF4C9B4738DDE9CA1F7F5B6457DDF5EC2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier struct AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9; // AnimationPlayer struct AnimationPlayer_t1E32EE81F0184E25458C1A42B7D71EDFA0CD849D; // UnityEngine.Animator struct Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149; // System.ArgumentException struct ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00; // System.ArgumentNullException struct ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB; // ArmBow struct ArmBow_tB6B0B80BF49B5CD1F51E828D121AF6CBE42F74E4; // Arrow struct Arrow_t98BA45BD73ADFAD1B38830B6D6D48588A96AC86A; // ArrowCamera struct ArrowCamera_t793154C45EDFAED3729D4987BA58D315612380FB; // ArrowCameraTemplate struct ArrowCameraTemplate_tFE88182B75A9486E4D72B88A48F2D1EC6327475B; // ArrowSync struct ArrowSync_t120ECE91237A141D58A2FD2CF93010D5537FD071; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable struct Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1EncodableVector struct Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Null struct Asn1Null_t5D40C5C3674510061A0C219CEB9849A5EF6492BC; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Object struct Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString struct Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence struct Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Set struct Asn1Set_t9EBB628AB5FBF1FCC866DC7AEA45C59A72698F49; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Operators.Asn1SignatureFactory struct Asn1SignatureFactory_t82880FE5F99692E8C940551308221AA7CAB2682A; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Operators.Asn1VerifierFactory struct Asn1VerifierFactory_t7331A64CE68459C50FCE03C94BBA668180927CD4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter struct AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A; // System.AsyncCallback struct AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttCertIssuer struct AttCertIssuer_tC2A63BCB19A64F1F5B6335B241ED80E5AAC1562A; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttCertValidityPeriod struct AttCertValidityPeriod_t02A425D4B6DBD563E99E6448C58680741D22B4EA; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeCertificate struct AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.AttributeCertificateHolder struct AttributeCertificateHolder_t84044880E63B3791FAAD143E5AE456CCAF5A283D; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeCertificateInfo struct AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.AttributeCertificateIssuer struct AttributeCertificateIssuer_t0CDFDFE49E5B87F38DDC1F1E13440FB7C1B394D4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeX509 struct AttributeX509_t63A4C9CCBF6EE24C795D436E493F4C56327185EA; // AudioMgr struct AudioMgr_t37818C35286C2FF09D8B8FFF7E74D479D3817DA0; // UnityEngine.AudioSource struct AudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.BasicConstraints struct BasicConstraints_t726ADB92F5098B7B4A50C44450B9A219DD48AA7C; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.BasicEntropySourceProvider struct BasicEntropySourceProvider_t6F0E2E503BBA509525A672616B82C23B8927D01E; // UnityEngine.Behaviour struct Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger struct BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9; // System.Reflection.Binder struct Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30; // BowCamera struct BowCamera_t7AA7E1A3AE4107303360B6EC9EC72E5F762D0FF9; // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.Certificates.CertificateEncodingException struct CertificateEncodingException_t026647D46DEE106DCC9AD27DBFE50F50009B2D5D; // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.Certificates.CertificateException struct CertificateException_tB4C9EC1D72D2EB953B1A67314C641CA607912CCB; // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.Certificates.CertificateExpiredException struct CertificateExpiredException_t05907054C3E1FC12C458807B83722B8477BD21B8; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.CertificateList struct CertificateList_tC023E9119F567E5589711845D4A07A59F9F26B34; // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.Certificates.CertificateNotYetValidException struct CertificateNotYetValidException_t23D92E9FAB5FBCE6D961AAD0BDE9F2EB97F699AE; // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.Certificates.CertificateParsingException struct CertificateParsingException_t5CE1769C4F94B5791C7D12C168E7BC8509C97778; // ChallengeGameMode struct ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B; // ChallengeGameModeLocalPK struct ChallengeGameModeLocalPK_t1B4DC78B64AF43CD49C70ACD5204D88F13CA39B5; // UnityEngine.Component struct Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.CrlEntry struct CrlEntry_t0100B5D8633443D3DAFC86741D49F1D2D0123227; // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.Certificates.CrlException struct CrlException_t4BF9F20E36202FA4390A2F1E9F10551D9A7ABEA1; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate struct Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169; // BestHTTP.Decompression.Zlib.DeflateManager struct DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142; // System.Delegate struct Delegate_t; // System.DelegateData struct DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString struct DerBitString_t305465793A47445626D3541AB8CEDE347D874524; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerGeneralizedTime struct DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger struct DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier struct DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerOctetString struct DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerSequence struct DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerTaggedObject struct DerTaggedObject_t88BB573E2BED5C1D2971741E012BB29FB0EB0C5E; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECCurve struct ECCurve_t850A42EEB1867F313B111B5A75430D443165B926; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.Endo.ECEndomorphism struct ECEndomorphism_tC94CEDEA023268D74990A2B2C08487E5D3DE2F7E; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECFieldElement struct ECFieldElement_t5B3E4EB355D81F73F6FAC09A042BE908A9631117; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.Multiplier.ECMultiplier struct ECMultiplier_t157DBBD8C0030BD905D93F22A7EDD2DD8AF2C0AC; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint struct ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA; // DG.Tweening.EaseFunction struct EaseFunction_tC7ECEFDCAE4EC041E6FD7AC7C021E7B7680EFEB9; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections.EnumerableProxy struct EnumerableProxy_t026114E7F2A8CD4B2FA989282FE080341A4614E2; // System.Exception struct Exception_t; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.F2mCurve struct F2mCurve_t2D35B6577B3DDFE26FC95C22B4281D005BD97C15; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.F2mFieldElement struct F2mFieldElement_t3C569642A15A78530B72B61257476BF41C52797E; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.F2mPoint struct F2mPoint_t59403C813B19AE1CA2B41B27F53D6A6E7C9C116F; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.FpCurve struct FpCurve_t9368FE54C52A7B5966A8B814B739D287356B93B8; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.FpFieldElement struct FpFieldElement_t14F5497CB64CC40A592A8313C210D3CBA9C54629; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.FpPoint struct FpPoint_t4D1072D1E2CB8D2BA79DEDF216003F575977B278; // GameEventCenter struct GameEventCenter_tB2B27C459DC3B44364D1B694E8FBDA2EA24E6190; // GameMgr struct GameMgr_tE3D60AE9C96D966787437C5F15D3477A9E948950; // GameMode struct GameMode_t3635427B8DF6A50F9EAE8955955887AD0D098C82; // UnityEngine.GameObject struct GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.GeneralNames struct GeneralNames_tFF74584199F5CAD145B6DA73D7552D4B4FD101E5; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections.HashSet struct HashSet_t1E14FE66FBB0732BFDA0861868A51969563DF754; // System.Collections.Hashtable struct Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.Holder struct Holder_t64C922905238378DD56C273DE16BA7D09529E22A; // HunterGamePlayerScoreCounter struct HunterGamePlayerScoreCounter_t4CFF1912DB681348618492344B5C63984D1CCDD7; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IAsymmetricBlockCipher struct IAsymmetricBlockCipher_tD85974B803F5DD17452DA8A4405647D1B2942F23; // System.IAsyncResult struct IAsyncResult_tC9F97BF36FCF122D29D3101D80642278297BF370; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher struct IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ICipherParameters struct ICipherParameters_t34CE1534DC151ED2EAE336C7381B86567D158F03; // System.Collections.ICollection struct ICollection_tC1E1DED86C0A66845675392606B302452210D5DA; // System.Collections.IComparer struct IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0; // System.Collections.IDictionary struct IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IDigest struct IDigest_tB278FE56BD588CA024BB5476E2A7468F836C78C6; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IEntropySource struct IEntropySource_tB5D9DE195690CD14EA3F129F3F30B2B6A8B21CCE; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IEntropySourceProvider struct IEntropySourceProvider_tDE331167214177ED45CF1390CC28B1BEDE00F2AD; // System.Collections.IEnumerable struct IEnumerable_t47A618747A1BB2A868710316F7372094849163A2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.Field.IFiniteField struct IFiniteField_t93F742CE2136665713411FB881C26BD6E901868C; // System.Collections.IList struct IList_tB15A9D6625D09661D6E47976BB626C703EC81910; // System.IO.IOException struct IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.IRandomGenerator struct IRandomGenerator_tA534F4AC93EEA5CDB578DDE58AE9A1E9C7B7487A; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections.ISet struct ISet_t5A23607F3EDC64EF08417F0C1A4212EB39469049; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ISignatureFactory struct ISignatureFactory_t1572BDBCE1A2741BB5DF8A6BE3FC219B7722135B; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ISigner struct ISigner_tCCA744D5676F335002A9182CD1A47660B2100EEA; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IVerifierFactory struct IVerifierFactory_t32298618FCE25BBB4B1B58D97DE26E1C64CA010F; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IVerifierFactoryProvider struct IVerifierFactoryProvider_tA6D5743A235196B76EBD51FFBA49A1C8C08DA539; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.IX509AttributeCertificate struct IX509AttributeCertificate_t96382508C6487F5655E190C16E2BCB3486645DA8; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.Store.IX509Store struct IX509Store_tB31DA2A2F16A64977B8B7FDF84FA1888AD932D82; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.Store.IX509StoreParameters struct IX509StoreParameters_t319B1D67B6D8B1F34DF6CFB9083EDBB1E126DDCE; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.InfBlocks struct InfBlocks_tC7114E073BB5526B2EA7F6D8C63E83493D26EB72; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Inflate struct Inflate_tA57633237054BCAD6EDC8DBC06F34D50C1680638; // System.InvalidCastException struct InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.InvalidCipherTextException struct InvalidCipherTextException_tCB4102F353576109DF6723BAD28806C82D61BC8D; // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.InvalidKeyException struct InvalidKeyException_t7F19EE8EB26000BAFDF50186FB1DD59F13A7FD8A; // System.InvalidOperationException struct InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.IssuerSerial struct IssuerSerial_t7368EB3A12EDEEEFCB87BE6B748D2FD5B54BAE37; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.KeyParameter struct KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.LongArray struct LongArray_tAD83B3758269288B1E3AEC8B5E5AF03BF79E1644; // System.Reflection.MemberFilter struct MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81; // System.IO.MemoryStream struct MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C; // System.Reflection.MethodInfo struct MethodInfo_t; // UnityEngine.MonoBehaviour struct MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A; // UnityEngine.AI.NavMeshAgent struct NavMeshAgent_tB9746B6C38013341DB63973CA7ED657494EFB41B; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.Store.NoSuchStoreException struct NoSuchStoreException_tD96393D1B68A67672A0B5A0D0C44305698C04176; // System.NotSupportedException struct NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339; // UnityEngine.Object struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.ObjectDigestInfo struct ObjectDigestInfo_t997F1CBD0115B95F608FDDBEFEF91C880640A005; // PKGameReadyView_Challenge struct PKGameReadyView_Challenge_t422FE0ED7612BCE36D96961918D3245CA322AB93; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ParametersWithRandom struct ParametersWithRandom_t557A9B373F5F2998BE6C0461812FBE4EB73425AC; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters struct RsaKeyParameters_t5CEAA6F9B92D2B6F1225DFF7C089B43146012801; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters struct RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69; // System.Runtime.Serialization.SafeSerializationManager struct SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Engines.Salsa20Engine struct Salsa20Engine_t661640C461D9868FAA0FE0F7765F0380147FEC66; // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom struct SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28; // System.Threading.SemaphoreSlim struct SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385; // DG.Tweening.Sequence struct Sequence_tE01FFFCA34A537CE2FF32EDAF451CDEC55A1399E; // System.Runtime.Serialization.SerializationInfo struct SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1; // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SignatureException struct SignatureException_t8646C7AB185E39DCCA9ED2BC70B36207BA5A8EBA; // SocketPlayer struct SocketPlayer_t3D341EF990F6F99AFA174DF42451ECD05E909D29; // BestHTTP.Decompression.Zlib.StaticTree struct StaticTree_t2695AB91EBA8322FADCB4C06A07B8ACAA5374809; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.StaticTree struct StaticTree_tFAE01A2B378F804F70FD3C06C5F18BEF8E31CFE5; // StoneRecorder struct StoneRecorder_tBA3376B07C34D8BDC00CAC5B96BDC69A6EC4DB4D; // System.IO.Stream struct Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB; // System.String struct String_t; // System.Text.StringBuilder struct StringBuilder_t; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo struct SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB; // TargetAnimal struct TargetAnimal_t90B2AB67B1B579964591B445CAF14122DB690D02; // TargetBody struct TargetBody_t6E7BBE108A6A731439FA465338CC657FC854634D; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateList struct TbsCertificateList_t1C345B12531EFE2A414CE6CF55DCEAF23B1A44B0; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateStructure struct TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.Time struct Time_tD684B1785E755395701D46F89A97609911CD6DDE; // UnityEngine.Transform struct Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1; // TreeAreaRecorder struct TreeAreaRecorder_tAE9063D38B62DF6BE86781A700F0D349C2E43B37; // DG.Tweening.TweenCallback struct TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB; // System.Type struct Type_t; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V1TbsCertificateGenerator struct V1TbsCertificateGenerator_t0C696954AC2E290683DA1581EA144E4EBB8D2D10; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V2AttributeCertificateInfoGenerator struct V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V2TbsCertListGenerator struct V2TbsCertListGenerator_tC7920E9D2AE505500F0D2338C49267713D9D76E3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V3TbsCertificateGenerator struct V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3; // System.Void struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5; // UnityEngine.WaitForSecondsRealtime struct WaitForSecondsRealtime_t04F2884A9814C3E4E415E788AFE56B5928577C40; // BestHTTP.WebSocket.WebSocket struct WebSocket_tC5AF27C0708BBCF99D3D7332F846C0FFFD446C54; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Attribute struct X509Attribute_t81BD5B9B96782764FF136486088938EC85B61559; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Certificate struct X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509CertificateStructure struct X509CertificateStructure_tD48237F907D1001604C98590613EFD6D720BEDE1; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.Store.X509CollectionStore struct X509CollectionStore_tC725C67FA9A701B4A60D34656D36A0A5FBCC6805; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.Store.X509CollectionStoreParameters struct X509CollectionStoreParameters_t9AC6D285ADBA3F814F6985940388A9C944D26401; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Crl struct X509Crl_t963C99FFAA5E9B3E8AE0BBB6F74D45D52C7BBB04; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509CrlEntry struct X509CrlEntry_tFFC049C5DB24BF9B445A5E04A1B87F6A25FC844C; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509ExtensionBase struct X509ExtensionBase_t91B691B9E834F516C9CE847F2B900B019A37CCE7; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions struct X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509ExtensionsGenerator struct X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name struct X509Name_t201376CBB74D033CD213122565CA7469C5FC8630; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509NameEntryConverter struct X509NameEntryConverter_tB7E7BD9119CAFF57159A4641EEF350B6A5111351; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509NameTokenizer struct X509NameTokenizer_tDAF307295F6A85ECEF068F02DFE878693672ECEC; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers struct X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509SignatureUtilities struct X509SignatureUtilities_t8501EA8FD0BAA2A5981CC285626A3BBA6990A9D9; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.Store.X509StoreException struct X509StoreException_tF3E73915BE44B8D996C94BA493CF61D30ADA2685; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.Store.X509StoreFactory struct X509StoreFactory_t60AFFB876F20A291ED4E862C50E10128DBFA623B; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Operators.X509Utilities struct X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Utilities struct X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V1CertificateGenerator struct X509V1CertificateGenerator_t010F8B11CD3F1A8AC4E596141AD1AFA3C02E9EE9; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificate struct X509V2AttributeCertificate_t004E81AFB075D95CA954C1C9E84F0C63F27A56A3; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificateGenerator struct X509V2AttributeCertificateGenerator_t1D1AA3B97DC5936015611DA35A8759A26D6FF775; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2CrlGenerator struct X509V2CrlGenerator_tE24775033089328401498B8DB1FB8176B95EA09D; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V3CertificateGenerator struct X509V3CertificateGenerator_tB58451ED00FF86B307032EF7908726B9D601664E; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Paddings.X923Padding struct X923Padding_t1226C4D23EC385127EA29971778309857A87FA0C; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.X931Rng struct X931Rng_t7B9242C1A220EC8F7036A04EB335B10EE7E26800; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.X931SecureRandom struct X931SecureRandom_t71D569F8B9A4EDFE82BF4FA1A5864AB8FD348935; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.X931SecureRandomBuilder struct X931SecureRandomBuilder_tF2FF9454E4C0A76A4297D2D1E0A3F1E48A85E5A7; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Signers.X931Signer struct X931Signer_t0C97B2C6A01B4D8F252321BA5CD572D7D1FF2D6B; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves struct X962NamedCurves_tBB2BFD74E2BCFB26E51F7D9F5BD8F9AF6C4E610C; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962Parameters struct X962Parameters_t4E41A769BDB21B21ECE217D5D99FA9DBBFFAE7E4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9Curve struct X9Curve_tE05684E0E4B3A1C4AC7B6DD81F6D6D20973C3AC9; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParameters struct X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParametersHolder struct X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECPoint struct X9ECPoint_t06D47967D73B459616A01610E0E5D88AB08BDF71; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9FieldElement struct X9FieldElement_t153792155C814A48E98DBBBF3BF3B5055CC18EA2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9FieldID struct X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9IntegerConverter struct X9IntegerConverter_t809A7A8949520D9F6EA5F8C7AC94BE04E9496C7E; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers struct X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Engines.XSalsa20Engine struct XSalsa20Engine_tC0EFC0018B12DF0F89158A81A2358AF6E14C6678; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Engines.XteaEngine struct XteaEngine_t1B9C763912FA90CC6C1F877687C08C15F3E2C6DE; // Yeji struct Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81; // YejiHuntGameMode struct YejiHuntGameMode_tC7B3AEEF3616DD293F13F32FC974BC22C561D563; // YejiHuntGameMode_LocalPK struct YejiHuntGameMode_LocalPK_t7B829CAB564B93A939025B2593348F8B65D5E229; // YejiHuntGameMode_OnlinePK struct YejiHuntGameMode_OnlinePK_tDDA2472446AEB0BB1728C88EE9B5DBE80B4CDCAA; // YejiSyncData struct YejiSyncData_t4FF903A600E64371DFF4510B3D1C308A95B38BA8; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZDeflaterOutputStream struct ZDeflaterOutputStream_tC29A2BAF5FCC76E4CDAB81E0BFA933D413B00A83; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInflaterInputStream struct ZInflaterInputStream_t187D375253406A691AA32C6281FD0979F5C26224; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInputStream struct ZInputStream_t2D5C611F3CB82738E6B107F6DD9F5BF0486E5C4D; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZOutputStream struct ZOutputStream_tC18E76CC9549F21AC543491E55ACCD9A7C76D5D5; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.Multiplier.ZSignedDigitL2RMultiplier struct ZSignedDigitL2RMultiplier_t8B0E2D2F725F6F74BCC0CF7BF6882FAC95DFBBF1; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.Multiplier.ZSignedDigitR2LMultiplier struct ZSignedDigitR2LMultiplier_t2CD05C5CD8FDC0C2DAC5C41591EC942B321A0B1C; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream struct ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.Abc.ZTauElement struct ZTauElement_t30903D25EED314C82D8D5182265B2BAAEF7CDD1C; // BestHTTP.Decompression.Zlib.ZTree struct ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZTree struct ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC; // BestHTTP.Decompression.Zlib.ZlibCodec struct ZlibCodec_tCA850DFFAD9256CE375665BA409A3B5F27B6C0A1; // ArrowSync/SyncData struct SyncData_tE8882F9BE18230D8E8AF15453546FB32A61D6ADF; // BestHTTP.Decompression.Zlib.DeflateManager/CompressFunc struct CompressFunc_tE8A822B7100290E68B533E359BAB7D9889880059; // BestHTTP.Decompression.Zlib.DeflateManager/Config struct Config_tB7037654EED17DA63573B87ABB5D35D5DCA9DFBB; // System.IO.Stream/ReadWriteTask struct ReadWriteTask_t32CD2C230786712954C1DB518DBE420A1F4C7974; // TreeAreaRecorder/AreaInfo struct AreaInfo_t23BDB3108537E7181ACFB654B90B389AE8FAC781; // Yeji/ComparerAreaInfosByDistance struct ComparerAreaInfosByDistance_t9EA8762959531B367A90185F6213B51755EEBD68; // Yeji/OnlineHandler struct OnlineHandler_t0EEA4F8C0170610DD9F19AE15F12F6A4C74E3587; // Yeji/State struct State_t908756508036982A4DF72593F6016F3C51C610B7; // YejiHuntGameMode_OnlinePK/OnlineHelper struct OnlineHelper_t2E4F71841FE6F0B13C9845579D42E94EE517115B; IL2CPP_EXTERN_C RuntimeClass* Action_1_t1B7004A16BED5066BEB03C343CA7F4B5EE772A10_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Adler32_tA7FF29BBF4C9B4738DDE9CA1F7F5B6457DDF5EC2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9_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* Arrays_t7CFD09DA7425047721E193958DAC5AB0FCFF67BF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Asn1Null_t5D40C5C3674510061A0C219CEB9849A5EF6492BC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Asn1SignatureFactory_t82880FE5F99692E8C940551308221AA7CAB2682A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Asn1VerifierFactory_t7331A64CE68459C50FCE03C94BBA668180927CD4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* AttributeCertificateHolder_t84044880E63B3791FAAD143E5AE456CCAF5A283D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* AttributeCertificateIssuer_t0CDFDFE49E5B87F38DDC1F1E13440FB7C1B394D4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* AudioMgr_t37818C35286C2FF09D8B8FFF7E74D479D3817DA0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* BasicEntropySourceProvider_t6F0E2E503BBA509525A672616B82C23B8927D01E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* C2pnb163v1Holder_t14404B5C4F247A6FC55F523428FEAE71BD17356E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* C2pnb163v2Holder_t4024F93EAAA6797CB7971874C3317CB2A1D30B51_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* C2pnb163v3Holder_t1C07A36DEFFB5AB9856D1F4FF36DD90BFFF98D2D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* C2pnb176w1Holder_tBEF5160BAD0DB37BA6D68F7652D63D100BCB0FA9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* C2pnb208w1Holder_tE2F80B7558866023258E8CBC01B139962E8255F8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* C2pnb272w1Holder_tCD74D325AAA8916FFECBC5948276D3A64BF83B7E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* C2pnb304w1Holder_t27D27503DAB760C2417A929CFF0D295E8B4C21AC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* C2pnb368w1Holder_tCFEE7AD795ADDE9FA7099095984035BF603EF526_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* C2tnb191v1Holder_tDC5C03DB24B41228D59938EB78416A87ECD6F282_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* C2tnb191v2Holder_tAB6EC306E891B275CB0C71D3EDA6BA346904E674_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* C2tnb191v3Holder_tE37AA2BE610F1E5FC1335A58B06C407C0F891584_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* C2tnb239v1Holder_t8B4686F28C4A8771FE0CBA85A8A3EC9E30FD499A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* C2tnb239v2Holder_tA4E988012BF3EA5F2CD89187D47B2908DDB47EAD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* C2tnb239v3Holder_t4B94D7A891E3046E3690DA34860C17C40B947604_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* C2tnb359v1Holder_tDAF3A97122802D04EC904C5416B7E02C267FD2A6_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* C2tnb431r1Holder_tE2F8B784758E3C2B77A17A464C69D212F357A2CA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CertificateEncodingException_t026647D46DEE106DCC9AD27DBFE50F50009B2D5D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CertificateException_tB4C9EC1D72D2EB953B1A67314C641CA607912CCB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CertificateExpiredException_t05907054C3E1FC12C458807B83722B8477BD21B8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CertificateNotYetValidException_t23D92E9FAB5FBCE6D961AAD0BDE9F2EB97F699AE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CertificateParsingException_t5CE1769C4F94B5791C7D12C168E7BC8509C97778_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ComparerAreaInfosByDistance_t9EA8762959531B367A90185F6213B51755EEBD68_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CrlException_t4BF9F20E36202FA4390A2F1E9F10551D9A7ABEA1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DOTween_t7BE7AEC9D5268B0C5F1193D8F20B01B7F18CC203_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DateTimeUtilities_t648A151F813B53590155F85F0F7EE722B161873A_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* Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DerBitString_t305465793A47445626D3541AB8CEDE347D874524_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DerNull_t020168AF07318033108544C00C803CD7AEB97239_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EnumerableProxy_t026114E7F2A8CD4B2FA989282FE080341A4614E2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* F2mCurve_t2D35B6577B3DDFE26FC95C22B4281D005BD97C15_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* F2mFieldElement_t3C569642A15A78530B72B61257476BF41C52797E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* FpCurve_t9368FE54C52A7B5966A8B814B739D287356B93B8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* FpFieldElement_t14F5497CB64CC40A592A8313C210D3CBA9C54629_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HashSet_1_t47ED9A0606C5D93A2045DE3AACBA2CD73C930023_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HashSet_t1E14FE66FBB0732BFDA0861868A51969563DF754_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Hex_t3B7B2ED165B9CA45F45E3F1EF2436D4FCA11F6FE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* HunterGamePlayerScoreCounter_t4CFF1912DB681348618492344B5C63984D1CCDD7_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IAsymmetricBlockCipher_tD85974B803F5DD17452DA8A4405647D1B2942F23_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IBlockResult_t6A7C472F432343ADBA690B12778C4CF5FFB19CCE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ICollection_tC1E1DED86C0A66845675392606B302452210D5DA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDigest_tB278FE56BD588CA024BB5476E2A7468F836C78C6_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEntropySourceProvider_tDE331167214177ED45CF1390CC28B1BEDE00F2AD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEntropySource_tB5D9DE195690CD14EA3F129F3F30B2B6A8B21CCE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEnumerable_t47A618747A1BB2A868710316F7372094849163A2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IFiniteField_t93F742CE2136665713411FB881C26BD6E901868C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IList_tB15A9D6625D09661D6E47976BB626C703EC81910_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IPolynomialExtensionField_t969265F2B050C50E58B08B2FF8C6390DEE0895D7_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IPolynomial_t32E76F737ABA75130C2897D9222256285C455755_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ISet_t5A23607F3EDC64EF08417F0C1A4212EB39469049_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ISignatureFactory_t1572BDBCE1A2741BB5DF8A6BE3FC219B7722135B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ISigner_tCCA744D5676F335002A9182CD1A47660B2100EEA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IStreamCalculator_t4F9460D63B0B76B77564036A39E861A0A03ABD07_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IVerifierFactoryProvider_tA6D5743A235196B76EBD51FFBA49A1C8C08DA539_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IVerifierFactory_t32298618FCE25BBB4B1B58D97DE26E1C64CA010F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IVerifier_tCA7824E68A9E21FEA945B0FDD274BB1CAF9872B6_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Inflate_tA57633237054BCAD6EDC8DBC06F34D50C1680638_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InternalConstants_t08B73D46FBB46D9AD4963A68BDEACB31F06B5388_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InvalidCipherTextException_tCB4102F353576109DF6723BAD28806C82D61BC8D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InvalidKeyException_t7F19EE8EB26000BAFDF50186FB1DD59F13A7FD8A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IsoTrailers_tA4B23CEB50D0726674607B15C5A68976D3577A55_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Math_tA269614262430118C9FC5C4D9EF4F61C812568F0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NoSuchStoreException_tD96393D1B68A67672A0B5A0D0C44305698C04176_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* OiwObjectIdentifiers_tACD1AAAAC365CD86B5E7F0DE22B66469A4A93CED_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OnlineHandler_t0EEA4F8C0170610DD9F19AE15F12F6A4C74E3587_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OnlineHelper_t2E4F71841FE6F0B13C9845579D42E94EE517115B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ParametersWithRandom_t557A9B373F5F2998BE6C0461812FBE4EB73425AC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Prime192v1Holder_t43C50E88A5EF475977296B3AE5F66499ADADADF0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Prime192v2Holder_tE9D04436BCAC89FF0ECCBCD0FCADA8933DADDC30_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Prime192v3Holder_t28351D53441067C55ABCAD0C8243164988CB226D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Prime239v1Holder_t105BAABEE61136A694461EB7BF72FCEE62E72A4E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Prime239v2Holder_tB1B1A0EF22267E909203936B1964E4458F7FDAE8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Prime239v3Holder_t16E1A407861C84C0A7F7ECCB571B84D5B6AFA1F7_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Prime256v1Holder_tDC56A4ECD9A19F80AA476CA23F85B69C29E2D57E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RsaKeyParameters_t5CEAA6F9B92D2B6F1225DFF7C089B43146012801_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Salsa20Engine_t661640C461D9868FAA0FE0F7765F0380147FEC66_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SignatureException_t8646C7AB185E39DCCA9ED2BC70B36207BA5A8EBA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SignerUtilities_t85A42F8179A404E46148D49278854CCF5ED2FB13_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* State_t908756508036982A4DF72593F6016F3C51C610B7_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StoneRecorder_tBA3376B07C34D8BDC00CAC5B96BDC69A6EC4DB4D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* String_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Time_tD684B1785E755395701D46F89A97609911CD6DDE_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* UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* V1TbsCertificateGenerator_t0C696954AC2E290683DA1581EA144E4EBB8D2D10_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* V2TbsCertListGenerator_tC7920E9D2AE505500F0D2338C49267713D9D76E3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* X509AttributeU5BU5D_tB7CB869D1933A59A13717C710F5F0ED2A833E042_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* X509Attribute_t81BD5B9B96782764FF136486088938EC85B61559_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* X509CertificateStructure_tD48237F907D1001604C98590613EFD6D720BEDE1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* X509CollectionStoreParameters_t9AC6D285ADBA3F814F6985940388A9C944D26401_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* X509CollectionStore_tC725C67FA9A701B4A60D34656D36A0A5FBCC6805_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* X509CrlEntry_tFFC049C5DB24BF9B445A5E04A1B87F6A25FC844C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* X509Crl_t963C99FFAA5E9B3E8AE0BBB6F74D45D52C7BBB04_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* X509SignatureUtilities_t8501EA8FD0BAA2A5981CC285626A3BBA6990A9D9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* X509V2AttributeCertificate_t004E81AFB075D95CA954C1C9E84F0C63F27A56A3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* X931Rng_t7B9242C1A220EC8F7036A04EB335B10EE7E26800_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* X931SecureRandom_t71D569F8B9A4EDFE82BF4FA1A5864AB8FD348935_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* X962NamedCurves_tBB2BFD74E2BCFB26E51F7D9F5BD8F9AF6C4E610C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* X962Parameters_t4E41A769BDB21B21ECE217D5D99FA9DBBFFAE7E4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* X9Curve_tE05684E0E4B3A1C4AC7B6DD81F6D6D20973C3AC9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* X9ECPoint_t06D47967D73B459616A01610E0E5D88AB08BDF71_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* X9FieldElement_t153792155C814A48E98DBBBF3BF3B5055CC18EA2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____111B15B20E0428A22EEAA1E54B0D3B008A7A3E79C8F7F4E783710F569E9CEF15_16_FieldInfo_var; IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____3E4FB5FE52BF269D6EE955711016291D6D327A4AAC39B2464C53C6BD0D73242A_69_FieldInfo_var; IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____5961BF1FCF83803CE7775E15E9DB8D21AF741539B85CCFDD643F9E22CC7820D6_101_FieldInfo_var; IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____7DDF88204E7E265240211841F0AB290A5E77EE4F9223EB2E39F9B89C30C41B9D_144_FieldInfo_var; IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____8FC498A953A183E1FE81A183AE59047435BB9B33D657C625FAB03D38BE19F92E_164_FieldInfo_var; IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____B23D510F520CB4BA8AFA847F8A40E757C40CB6A55B237EFA1AC6D3984911B114_212_FieldInfo_var; IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____B9D4AF390AFC6A0F149B843D651CFEBC1C4EC496A0263B72207836F9C525E1C4_227_FieldInfo_var; IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____F8D7861760C88CC514F66095AF0AED47ECBA063ADB65F47125ED07BCC2CF9842_298_FieldInfo_var; IL2CPP_EXTERN_C String_t* _stringLiteral00FAA6DAACAA311CCE49C5E1E1204A7130351314; IL2CPP_EXTERN_C String_t* _stringLiteral024FCA0B8EB9668557C8B3AB9421E9B4005D6ECB; IL2CPP_EXTERN_C String_t* _stringLiteral03A22D2949FD2326A177E5C99A250EB95B8D6FBA; IL2CPP_EXTERN_C String_t* _stringLiteral0803454762BF3842C62A2A9A2B7C99CD51D8BB17; IL2CPP_EXTERN_C String_t* _stringLiteral08DFED9B56DBA3DB573A6E23566527810FD3F2D4; IL2CPP_EXTERN_C String_t* _stringLiteral0EBC566A72F985E28DD57BC09180A1E5FDF54E41; IL2CPP_EXTERN_C String_t* _stringLiteral0EBFEDCE71CC77070BD35887BBA6B3AC08479560; IL2CPP_EXTERN_C String_t* _stringLiteral0F0049B7E5A6666DD84454AA082984FE5BDFF948; IL2CPP_EXTERN_C String_t* _stringLiteral121B3060A7B0A984E273BA5B47B399D1268552E1; IL2CPP_EXTERN_C String_t* _stringLiteral12C0D00507D5556F04E6640916CA4AAF502616A1; IL2CPP_EXTERN_C String_t* _stringLiteral12F053C351BC91F2DD597C0FD0E71FD69CF83C5E; IL2CPP_EXTERN_C String_t* _stringLiteral1330FBB7E4E078A3269D7217A21129F4728C78C7; IL2CPP_EXTERN_C String_t* _stringLiteral13451B7216BC16C8E6A7ADA10BAB5AA1BE011664; IL2CPP_EXTERN_C String_t* _stringLiteral155A4BC12A234318BF135F4542D363DCE33CE8A5; IL2CPP_EXTERN_C String_t* _stringLiteral158B6A1BFB4007A30B92DF912CBC29F2328168DD; IL2CPP_EXTERN_C String_t* _stringLiteral15A8EE2E7A32C06E91552CE409D01810AA49BEB2; IL2CPP_EXTERN_C String_t* _stringLiteral191CC63A85897671780393FA3266BF6F658D4111; IL2CPP_EXTERN_C String_t* _stringLiteral1A7FC08E8EB016BAD5A8A8D7B3447DAD63E867BC; IL2CPP_EXTERN_C String_t* _stringLiteral1AA1790AE1BC157DD7BC2E8E7D142CB22C2346A8; IL2CPP_EXTERN_C String_t* _stringLiteral1E975408BDC3CEEA3B3BBEDC11D8AE5E1FFE9B0B; IL2CPP_EXTERN_C String_t* _stringLiteral1FDF3C1B76238A2773D9417DEDEF895091BA1556; IL2CPP_EXTERN_C String_t* _stringLiteral2064F80F811DB79A33C4E51C10221454E30C74AE; IL2CPP_EXTERN_C String_t* _stringLiteral21BD368232F41BC4D3E2E1F13FAA13953FE83DFA; IL2CPP_EXTERN_C String_t* _stringLiteral21ED4C7AF50D987589A9029FC0422151BE3A0FC2; IL2CPP_EXTERN_C String_t* _stringLiteral228B48E1A9A3F026BD0FDFCC1C31D0FA2AF44767; IL2CPP_EXTERN_C String_t* _stringLiteral23DA32641C4151068AE4FEDAB66753C8754FE52A; IL2CPP_EXTERN_C String_t* _stringLiteral24C049E512CD1B48036BD162FF63700A57CA3469; IL2CPP_EXTERN_C String_t* _stringLiteral2594D1B685BA6F00D4A64DE944F76318ED32B71E; IL2CPP_EXTERN_C String_t* _stringLiteral25D74BC981E6316A5E3CAEEA0BAF3C438F5C94DA; IL2CPP_EXTERN_C String_t* _stringLiteral25F76CC1BDA61C71DE0DB52A74E1709B018BD814; IL2CPP_EXTERN_C String_t* _stringLiteral26E294139715163FBE9A18930A1D8CF567887641; IL2CPP_EXTERN_C String_t* _stringLiteral29D6C5E594BD686D07CE8241383224FD09EAF4B0; IL2CPP_EXTERN_C String_t* _stringLiteral2EC56193C8195EAD5B8542B13E1FCC9CF4DB3C08; IL2CPP_EXTERN_C String_t* _stringLiteral2ECCF0272C09381DA599D0B70DB523A192791180; IL2CPP_EXTERN_C String_t* _stringLiteral2F7234099CCD07F9C0939ACCC13D7F7F6E95DBAD; IL2CPP_EXTERN_C String_t* _stringLiteral2F851A80AFDF46DB1A689F30C8AD9B5960FA47F2; IL2CPP_EXTERN_C String_t* _stringLiteral32416F7E684240F18027249AB9871F2E020005D9; IL2CPP_EXTERN_C String_t* _stringLiteral33038386B47A94676767B67BA384962CDFC9EF7C; IL2CPP_EXTERN_C String_t* _stringLiteral33BB5A11405346DBDDE78D1A74DE8913BDA24E15; IL2CPP_EXTERN_C String_t* _stringLiteral33D56CA2E52DFDEF4F56463A9109D8276C56E4C3; IL2CPP_EXTERN_C String_t* _stringLiteral37012E583DD1F1C8F246850642B98606CD18CCCC; IL2CPP_EXTERN_C String_t* _stringLiteral384A972663A88A3CA636D7163BDC69F3C18E9CE5; IL2CPP_EXTERN_C String_t* _stringLiteral3878219245B0473A7CD218AB963BB98671D661E5; IL2CPP_EXTERN_C String_t* _stringLiteral3F1E5CF03BB694C1C8D1FAE67ACD616AD2BE797B; IL2CPP_EXTERN_C String_t* _stringLiteral40202E94CB94F4414051283AC5DD66540DCE9C28; IL2CPP_EXTERN_C String_t* _stringLiteral423764DB752CB258879C0D2CBA55603EFCBBD556; IL2CPP_EXTERN_C String_t* _stringLiteral4351851F76A2B0C936892EAF654EAD35BC2A592A; IL2CPP_EXTERN_C String_t* _stringLiteral43BDBEC92BA93D7B0B4BD665543E16F35289F63A; IL2CPP_EXTERN_C String_t* _stringLiteral4408D910CFD8CBB13B1D24EAF91F35D1AA3192E4; IL2CPP_EXTERN_C String_t* _stringLiteral447271DE5F13DD003CF556E844B5709E5912B891; IL2CPP_EXTERN_C String_t* _stringLiteral453A07B8CC155ECBEB68D277EC848642FFB5F3B6; IL2CPP_EXTERN_C String_t* _stringLiteral47F2472FC8067EADBDD3CD365DB6E481560AF525; IL2CPP_EXTERN_C String_t* _stringLiteral48F748BEDF1BBDC3AC0D68E6CD9DDD2A2B1EFFC0; IL2CPP_EXTERN_C String_t* _stringLiteral4A9003876B2369E378E58E064047EEA2FC1969EE; IL2CPP_EXTERN_C String_t* _stringLiteral4B32F882FFCCB657C01DC249EEA2507016576D10; IL2CPP_EXTERN_C String_t* _stringLiteral4C8FC0834485EA54FDC1DD8AEC5C3965BE95DFEA; IL2CPP_EXTERN_C String_t* _stringLiteral4D1DBF1A17F5789AFEF860392403A3538393B6F1; IL2CPP_EXTERN_C String_t* _stringLiteral4DA20454916FD4039FFF735897793CB2DFE7C17C; IL2CPP_EXTERN_C String_t* _stringLiteral4ED82D35A56DDE609C2E1DD0307D565E2D4D2D6D; IL2CPP_EXTERN_C String_t* _stringLiteral4FDC7FB7C422A052CB76D274DFDEBA76C8127E6D; IL2CPP_EXTERN_C String_t* _stringLiteral521FB55423CC068B92B5E8453A36DF0D6CBDD93F; IL2CPP_EXTERN_C String_t* _stringLiteral52BDFA54A164366A4CCA7F4E8E9D4CC3289B914B; IL2CPP_EXTERN_C String_t* _stringLiteral532EDB63D38BE849355CC05BBD302AC7006BF005; IL2CPP_EXTERN_C String_t* _stringLiteral570445B5D038FF01F81B846A72EE63849EB18527; IL2CPP_EXTERN_C String_t* _stringLiteral57660C993DD537E0138CBFB71EB6333EB13D0842; IL2CPP_EXTERN_C String_t* _stringLiteral5913EBCD9B8B054009F6001A1FE6EFB6A46EDA58; IL2CPP_EXTERN_C String_t* _stringLiteral592B57574AD389221A373888A91FE244D8A61AD4; IL2CPP_EXTERN_C String_t* _stringLiteral5A06357B575D7058D36E87C495E9D91FCD00437A; IL2CPP_EXTERN_C String_t* _stringLiteral5A32E41FF6844BFD07B06337D464958F14B832C5; IL2CPP_EXTERN_C String_t* _stringLiteral5C27C08176CCDC624C16868C80507E2DD754531C; IL2CPP_EXTERN_C String_t* _stringLiteral5D25D48E4A8C1FBE3AA0B744867D20DC87685419; IL2CPP_EXTERN_C String_t* _stringLiteral5F1A7897AF6D5097460B156B520C63C705855CA1; IL2CPP_EXTERN_C String_t* _stringLiteral5F1F4A58853B31A2075544F5A704FD9361EB7986; IL2CPP_EXTERN_C String_t* _stringLiteral603DF3B218370B957A3573A69F9CEB44F896AC74; IL2CPP_EXTERN_C String_t* _stringLiteral618D14E62AC3BD00FA4A1C3217EAFA621FD629A6; IL2CPP_EXTERN_C String_t* _stringLiteral637247DE4248B012DD7877FC9F9C7F3B3F024DF3; IL2CPP_EXTERN_C String_t* _stringLiteral65C91159DE73AB664AD579C104F3EE3E6A5B9308; IL2CPP_EXTERN_C String_t* _stringLiteral675D79C0F519ECB971940EF19740A0B518D09B84; IL2CPP_EXTERN_C String_t* _stringLiteral6B278DFEDC0223E2D824E4EF55F9B4F79CD9AFCE; IL2CPP_EXTERN_C String_t* _stringLiteral6B2AC9CFE2D6F41D65B35B350A18C43C77B033D9; IL2CPP_EXTERN_C String_t* _stringLiteral6C9DED8087C891AE33ACFFCE806DBFF63795F56F; IL2CPP_EXTERN_C String_t* _stringLiteral6D61A5962793C9EE547ED83C65E277AFBF5D42D7; IL2CPP_EXTERN_C String_t* _stringLiteral6E7CBDA006FCC8893A6B1EEE63FAEFCD7045475E; IL2CPP_EXTERN_C String_t* _stringLiteral6EB88BB6D8FEDB1AA37407138A21C08BFA38EB34; IL2CPP_EXTERN_C String_t* _stringLiteral6EFD1A3638C8E2B5AF3CCE72B415F2F498F48707; IL2CPP_EXTERN_C String_t* _stringLiteral6F52D92A97708BF39FAB686966B0E807E08B8BC5; IL2CPP_EXTERN_C String_t* _stringLiteral708429802CBDDA081DA338B83F5F3E07D419993A; IL2CPP_EXTERN_C String_t* _stringLiteral70E489F8299BDFFB0840F122BA07A5BEF2A1A604; IL2CPP_EXTERN_C String_t* _stringLiteral71443AC7CF5CC108984A138188DE915E32441BB2; IL2CPP_EXTERN_C String_t* _stringLiteral7402F76B2D6078A455F77607AF6E7350B6DE019E; IL2CPP_EXTERN_C String_t* _stringLiteral7454695E25D304C65D0C1333D8008E862569CAE9; IL2CPP_EXTERN_C String_t* _stringLiteral75E98C78538157035E0D0E268C0A2C76D23211BA; IL2CPP_EXTERN_C String_t* _stringLiteral7656E9310557F53848E366F4077B8B19B1EC3AC2; IL2CPP_EXTERN_C String_t* _stringLiteral78DCF8BE751904E2F2302AEBBAF7BA625943E2EB; IL2CPP_EXTERN_C String_t* _stringLiteral790562C2B0CF75907073DD8438EA8FA7AF1B8D9E; IL2CPP_EXTERN_C String_t* _stringLiteral7931519DFF1BB20E46AE397FD6DB8CD6EEC7ED0C; IL2CPP_EXTERN_C String_t* _stringLiteral79A2D8261FC12941628D2F7ED862D40859EB89A7; IL2CPP_EXTERN_C String_t* _stringLiteral7B2EE195BDAC749E6440849654D6F73CDDABD46D; IL2CPP_EXTERN_C String_t* _stringLiteral7BAB6C1AFDE0F5062E870520A697C2B67A8CFC76; IL2CPP_EXTERN_C String_t* _stringLiteral7CC025E138704F688F8D1E8261B03C31E8BAA465; IL2CPP_EXTERN_C String_t* _stringLiteral8105936FACB0C09C42FA2DF27F04F13536597A7F; IL2CPP_EXTERN_C String_t* _stringLiteral813661506A5DABD9B15FE77AA73D2864A4E115C6; IL2CPP_EXTERN_C String_t* _stringLiteral816238D2C5B664EF76E039079E40C1492ADCF0EC; IL2CPP_EXTERN_C String_t* _stringLiteral81A270B8DC466236688F0772045BCC1C51FBAF32; IL2CPP_EXTERN_C String_t* _stringLiteral81B54C81CE5770A2FB716FE3138FA18CE998793D; IL2CPP_EXTERN_C String_t* _stringLiteral822F301AC43CBC3A1E7B34B4CE3ED438E51A2609; IL2CPP_EXTERN_C String_t* _stringLiteral831BFD427B999973389FEBD63A8D4EC7D609AC21; IL2CPP_EXTERN_C String_t* _stringLiteral83298FB9C35B736FC1AE3C68DC4C4157F50AD0C4; IL2CPP_EXTERN_C String_t* _stringLiteral835935470BE3AD56EC53600D8D5427C4EB9EE754; IL2CPP_EXTERN_C String_t* _stringLiteral83A241C52DAFE0694C5B5B264CF687E09DF793D6; IL2CPP_EXTERN_C String_t* _stringLiteral8BB58B989DAAEFFC9FC49609A564874097684981; IL2CPP_EXTERN_C String_t* _stringLiteral8D6C301F7F9BEB27A65180FC3B3E5F7487F3383D; IL2CPP_EXTERN_C String_t* _stringLiteral8DD8D6FCBA1E38E53530F55F7B9061E65C123321; IL2CPP_EXTERN_C String_t* _stringLiteral8F14545E96A97CA6E4BB71607070728BAD81EE42; IL2CPP_EXTERN_C String_t* _stringLiteral91418DC5CE55D8F41D97B9EB719D8DA971A0A80D; IL2CPP_EXTERN_C String_t* _stringLiteral9208EF708351490ACDEE32FF93FCEF860D7FC47F; IL2CPP_EXTERN_C String_t* _stringLiteral927FDCD38E0B54E4CCEC1872B0DBF66B00C9F062; IL2CPP_EXTERN_C String_t* _stringLiteral929005093FDAFAC5D770520C4CC44C5F7EEF5E0E; IL2CPP_EXTERN_C String_t* _stringLiteral94227CA8EB4252C21E39FE8CCB2B65A6D01D3CF1; IL2CPP_EXTERN_C String_t* _stringLiteral94E977427483D7BD69B6F085D621728CDC022FB8; IL2CPP_EXTERN_C String_t* _stringLiteral95172EC2A9C2136A247F7460DD301F9FF51A8C5D; IL2CPP_EXTERN_C String_t* _stringLiteral95CECB12EF5997654615668E9338F78021E26420; IL2CPP_EXTERN_C String_t* _stringLiteral983DAE9D83E12DCA5C80D08CECA81E69518EBFEC; IL2CPP_EXTERN_C String_t* _stringLiteral99C134A36D015746C32203B98CC495F87311D9DC; IL2CPP_EXTERN_C String_t* _stringLiteral9B9CCB190BE9B31C27B26944C213095BD83A4032; IL2CPP_EXTERN_C String_t* _stringLiteral9C1576AC27CAC8326EA3CDE03CE7A486E12F423A; IL2CPP_EXTERN_C String_t* _stringLiteral9C86DC74663ECC1CCD6B393712268E40409B9836; IL2CPP_EXTERN_C String_t* _stringLiteral9D449255DADFB9B9614756478DEF9529E8C90FF2; IL2CPP_EXTERN_C String_t* _stringLiteral9DB6D87A2478B86E6D5C778B2FA8E6BA2602EF0D; IL2CPP_EXTERN_C String_t* _stringLiteral9EE1A72192464AF687D8F00523F17A91657278EE; IL2CPP_EXTERN_C String_t* _stringLiteralA006FCB4201934135FE5378132B66888869CBF16; IL2CPP_EXTERN_C String_t* _stringLiteralA1F8C30AF9A614832E6AEAE94C81E0CB4D21FA81; IL2CPP_EXTERN_C String_t* _stringLiteralA6DBDE4DFCE47C72AFA52C1981772A8DD7EFD2C8; IL2CPP_EXTERN_C String_t* _stringLiteralA72F811C6B453DBDDE052A965464A79F8D3E04B4; IL2CPP_EXTERN_C String_t* _stringLiteralA7AD513E5696D5979899AAB85472797E009007D2; IL2CPP_EXTERN_C String_t* _stringLiteralAA4DA1A93F07E2E4B09F8D5E2C45905E26A45E79; IL2CPP_EXTERN_C String_t* _stringLiteralB16364632FFDA7CF8AB0EF198C603812CB7ECD94; IL2CPP_EXTERN_C String_t* _stringLiteralB16CF3324CA15FF0851B0F99DD86AC638C3E0CAE; IL2CPP_EXTERN_C String_t* _stringLiteralB3FAA66308461F1BC7771CA107A7DF8D0F9D66CD; IL2CPP_EXTERN_C String_t* _stringLiteralB45413D5021961F635D2351C965C6FBA649B7EC9; IL2CPP_EXTERN_C String_t* _stringLiteralB4B7C0DD1031D01D1D525A2AFE11B0C544BA74ED; IL2CPP_EXTERN_C String_t* _stringLiteralB4D001C31FBECAB595B5B52B652E63F27D0364A7; IL2CPP_EXTERN_C String_t* _stringLiteralB6765A3F403DC14EACF320351BFC019F1605A13A; IL2CPP_EXTERN_C String_t* _stringLiteralB741A93561896DE4C43A52DCFA9AF9596110E331; IL2CPP_EXTERN_C String_t* _stringLiteralB8922EC46451A10AF98A8BC936A0D7240221208C; IL2CPP_EXTERN_C String_t* _stringLiteralB9781714FE806F152E476A132D5187A200851483; IL2CPP_EXTERN_C String_t* _stringLiteralB9E15D36DACFA970D8917F8A2D25B3E56074B572; IL2CPP_EXTERN_C String_t* _stringLiteralBB0D7DEB0469D32740BC8AFB9C4FD264AF0796E6; IL2CPP_EXTERN_C String_t* _stringLiteralBB8FB7C40046CAE7C8959AAE24AD38D8BBB78A2E; IL2CPP_EXTERN_C String_t* _stringLiteralBEDE5B38F0A36C656EFD739D528390E400FD7E4E; IL2CPP_EXTERN_C String_t* _stringLiteralC18C9BB6DF0D5C60CE5A5D2D3D6111BEB6F8CCEB; IL2CPP_EXTERN_C String_t* _stringLiteralC1E0482ABDB4530F47C01C2A81FB06ED6E98A110; IL2CPP_EXTERN_C String_t* _stringLiteralC47E7F7AEF16F78CE7B3D75756F38A67794AF4D0; IL2CPP_EXTERN_C String_t* _stringLiteralC4BDA98415573B97838847CF1A6949BA9FCC789E; IL2CPP_EXTERN_C String_t* _stringLiteralC60811AD65D0557EF69DFB2F66D9621903D5B62A; IL2CPP_EXTERN_C String_t* _stringLiteralC715ABAB0194B09F559C12418DDEFBF93E0D80C5; IL2CPP_EXTERN_C String_t* _stringLiteralC89858D824AC4A3F2216B74EEFEA4A867D131078; IL2CPP_EXTERN_C String_t* _stringLiteralCCAD23ED8EFB047E7DDC3717C32DD95445488797; IL2CPP_EXTERN_C String_t* _stringLiteralCD91C3A88929E5B8D90E8470FE3B58D30BBAF946; IL2CPP_EXTERN_C String_t* _stringLiteralCDDE7E78FCC67275355EB8BF4E41C8CC2315DFE7; IL2CPP_EXTERN_C String_t* _stringLiteralCDE54580457F1FCD2C1F67F9B80DFBBC50998E45; IL2CPP_EXTERN_C String_t* _stringLiteralCE0379382C2810C1AED5C5B0021E7B8221741E17; IL2CPP_EXTERN_C String_t* _stringLiteralCFD54298D28239D041E35594E7B01E17329A82C5; IL2CPP_EXTERN_C String_t* _stringLiteralD0C6D4AFE953D9CE14E2F81B70259C4AB735DF92; IL2CPP_EXTERN_C String_t* _stringLiteralD187D665853B8D7EA2432DDF6CBF2E65DC3BA81D; IL2CPP_EXTERN_C String_t* _stringLiteralD5C0F4A27D61AABF6B271E6015FA08AF7962AB6B; IL2CPP_EXTERN_C String_t* _stringLiteralD6ADF19E4F79C19E3F5D5806BA6D4AF4E5A6E68D; IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709; IL2CPP_EXTERN_C String_t* _stringLiteralDA492D95C1D553FB766B5566E22DDAA59E901970; IL2CPP_EXTERN_C String_t* _stringLiteralDB77F5662969C68C9C6D5ECF666ADD5C9D634441; IL2CPP_EXTERN_C String_t* _stringLiteralDC4A06A0DE599F745DBDD44A6FDE6212859D3A5F; IL2CPP_EXTERN_C String_t* _stringLiteralDD28D20543989F54A4DB90E000211D64618E6DC2; IL2CPP_EXTERN_C String_t* _stringLiteralDD381BE73F585C3796C220566E891E458F9D6290; IL2CPP_EXTERN_C String_t* _stringLiteralDD9C7849851C546319ED5DCC821A7B730DE8FF73; IL2CPP_EXTERN_C String_t* _stringLiteralDDB1E5CA18A9EC127B1F85C807C5ED8AC4DC732F; IL2CPP_EXTERN_C String_t* _stringLiteralDED62960F661FD03A2D508CA0B59F660758A058A; IL2CPP_EXTERN_C String_t* _stringLiteralE30A91CF21B67330B38E23371BABF6F6E47663D9; IL2CPP_EXTERN_C String_t* _stringLiteralE4EA996178DF2EDD616A772D8B33560D1E771B56; IL2CPP_EXTERN_C String_t* _stringLiteralE74AFAFAF4B7AA04C0FD03472697F86784E2E977; IL2CPP_EXTERN_C String_t* _stringLiteralE8843DC4A33316C1A7FC9E28CF5D334C24196060; IL2CPP_EXTERN_C String_t* _stringLiteralE91FE173F59B063D620A934CE1A010F2B114C1F3; IL2CPP_EXTERN_C String_t* _stringLiteralE9B7CE2D02A510C205D00BA29627B382A319C706; IL2CPP_EXTERN_C String_t* _stringLiteralEA2AC7DA2122607235D3D7EB8F5258E77B26CA40; IL2CPP_EXTERN_C String_t* _stringLiteralEB2CD4C6704ED17A9EC3675F0D53B6B9EC56DDAE; IL2CPP_EXTERN_C String_t* _stringLiteralEB7CCC8642D7B5521BC4E7440146281DA06EFDDF; IL2CPP_EXTERN_C String_t* _stringLiteralEBFEA42051B997E17C9814A7196FFB19014A1B51; IL2CPP_EXTERN_C String_t* _stringLiteralEF461B2216DDDC6022B4C65E8E85EFC5C40B1809; IL2CPP_EXTERN_C String_t* _stringLiteralEF7FC24B5117DE7A50326EB54B70AF5BAC17A774; IL2CPP_EXTERN_C String_t* _stringLiteralF09B7E7F9F61EE97EB764460510C20DAF3ACB664; IL2CPP_EXTERN_C String_t* _stringLiteralF39378FDB228D1C899BABB186E12163DE48302F5; IL2CPP_EXTERN_C String_t* _stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7; IL2CPP_EXTERN_C String_t* _stringLiteralF41B89FC23BF781B206EB07422CE9E5E94BF7B5A; IL2CPP_EXTERN_C String_t* _stringLiteralF4B67B27E4DD10700B0726FC3E0A89E2CDBB84C8; IL2CPP_EXTERN_C String_t* _stringLiteralF54C61EA654A453F853B81CE072DEC048FBB4991; IL2CPP_EXTERN_C String_t* _stringLiteralF61B6A23CE93B6AFE193ECD7C22723977C0AE9BE; IL2CPP_EXTERN_C String_t* _stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6; IL2CPP_EXTERN_C String_t* _stringLiteralF7DDF59B44DDF9253B657C54053522CF694D3FBE; IL2CPP_EXTERN_C String_t* _stringLiteralF8591E019243177659D36C84E0F0DD536C62D029; IL2CPP_EXTERN_C String_t* _stringLiteralF859CAA74FC4BD45E85F9AFF276F614AE47D3DA2; IL2CPP_EXTERN_C String_t* _stringLiteralF944DCD635F9801F7AC90A407FBC479964DEC024; IL2CPP_EXTERN_C String_t* _stringLiteralF99BCBBB4B8C3C02F6F76F631A6637B4DE59088E; IL2CPP_EXTERN_C String_t* _stringLiteralFA228A166C8AB08C7AA7D26E2EC88C52F25923F6; IL2CPP_EXTERN_C String_t* _stringLiteralFD3355E430CC5655482B6C8F085EF64D205724FB; IL2CPP_EXTERN_C String_t* _stringLiteralFD5E58EEEF235AFAE0D9C83C2E44CBC004FEC32F; IL2CPP_EXTERN_C String_t* _stringLiteralFF01C47ABD568A459C8EA38273E930831E0F8561; IL2CPP_EXTERN_C const RuntimeMethod* Action_1_Invoke_mA2954E8501AB156BB108CEC3D4DC74780BFC3FA9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Action_1__ctor_m7AAF677F8C357E5D7DD63D87EC0EA2B47FF37C61_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Action_2_Invoke_mE1893FFB3965F3DA39977325B195FF6F8DB9E3DA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Array_Empty_TisAsn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC_m6133560D3294995A1E65C8837F69C407350CD6DB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponentInChildren_TisTreeAreaRecorder_tAE9063D38B62DF6BE86781A700F0D349C2E43B37_m9D8A8EF527631BE85E2C2F35C95A33BDD8B134D9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponent_TisAnimator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149_mF86B79BED8570481BDFC54EAEF1F692E0508BA38_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Component_GetComponent_TisNavMeshAgent_tB9746B6C38013341DB63973CA7ED657494EFB41B_mEB498E1E05ECE05CF007D68E3C83DABA9E7CC819_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m5ABD8882ABDC6E2E298E2E25FC07464C6C960B96_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mB5A16792F59459BD7201172EF4DA7A224BD20424_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m9F1D001319885B4142FC8737B2F53BFC5D05B902_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* GameObject_GetComponent_TisPKGameReadyView_Challenge_t422FE0ED7612BCE36D96961918D3245CA322AB93_mF7DB01D2F056AE063C822F451E1F4BE1638C438A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* GameObject_GetComponent_TisYeji_tE6BD925F837340572A36DAC8B0F636034B696A81_m82CE4619411D4E631989E5433534C4474AF0ADED_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_Add_m703FB10019FF453F25D4AA1F74C549F547466497_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_Add_mB2893D629DB29C34964971EA0FE8DA9A28411FA5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_GetEnumerator_mCB0A1EBB995E9BA3FB805ACCB3B078ED8C0A7ABA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_Remove_m4AA89D9FE720A131C066D96CBCC54F06E6AC48C3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_Remove_mC768C51F031F7135EF36B0E02875D7F6B489B436_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1__ctor_mC25BB3DE4DB6E4BCC672FEAFDE153725ECE2B82E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_get_Count_m19BDF71BBAFEE3DADC4089E8DCF0F13D4838B415_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Object_Instantiate_TisGameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319_m85FD3AD1E7C2C143E7D5491BBB781F1C3DA22B85_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Object_Instantiate_TisGameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319_mBD93211DA0D7B29006CFA30014093BAFEFB1BA21_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Resources_Load_TisGameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319_mC871EF6B25D0F9AEDCB7D64F3A113DDB587A49D6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ValueTuple_2__ctor_mB8133ACA310169B397397A43169A5CB56FCEE9D6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* X509StoreFactory_Create_mBD3629E3DC37D3D32E06EB1150959A0F919BF61E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* X509StoreFactory_checkCorrectType_m4935FA509806DB1C3E7D7FB305FC3C3E7597253D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* X509Utilities_GetSignatureForObject_m57704A995906ABDD158E7B520106A65B6AA51640_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* X509V1CertificateGenerator_SetPublicKey_m48225E192AD07EE7687C7B9FDA34BBF265D35180_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* X509V1CertificateGenerator_SetSerialNumber_m9B0F85F8711706608A253114C6A97D52AF48DCC4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* X509V1CertificateGenerator_SetSignatureAlgorithm_mDE614B8BECC89DFC06BC4539DD780A5B67697A9E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* X509V2AttributeCertificateGenerator_Generate_m6F74A44069DAB28A3B24FBC988F70F6980C61B8D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* X509V2AttributeCertificateGenerator_SetIssuerUniqueId_mFF8221F4F89429EDC07DED379DAF862B9F138E9F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* X509V2AttributeCertificateGenerator_SetSignatureAlgorithm_m8AB316681BB5FA8C69797EC26A6DB6D8FA6596E2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* X509V2AttributeCertificate_CheckSignature_m8ED4D870354ED6A8DF5FA8FD35E6F165C4C0E1F2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* X509V2AttributeCertificate_CheckValidity_mC6399715873F1E4A615566292B322E412E990D81_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* X509V2AttributeCertificate_GetObject_mB379854757E0725E3E6A1F41CE6B847C8F02842B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* X509V2AttributeCertificate__ctor_mFE4BE06C834860627D03F6E242C656CB3B815554_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* X509V2CrlGenerator_AddCrl_mB14EFD46D0A00FFC9E364A1B99BCED2379E3C01F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* X509V2CrlGenerator_SetSignatureAlgorithm_m0F7C76B285A82A8C9A773C9193D58F5B9D10E960_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* X509V3CertificateGenerator_CopyAndAddExtension_m46924751BD2E0AFD9C796A75DA17E855F603C488_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* X509V3CertificateGenerator_SetSerialNumber_mB8A496ADD207B393A547BC03248048B01A5A0B63_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* X509V3CertificateGenerator_SetSignatureAlgorithm_m5FC5D98E31294E025FE20847715B0315011FF116_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* X923Padding_PadCount_m1A2CAC1249690F2857D64DB67F7113D44AD10B03_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* X931Rng_Generate_mD78CE28093A367EE4D5828DD4057BB1B50482FBA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* X931Rng_Reseed_mAC9142359C3303BFE899BA7405C52898102BAF13_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* X931Signer__ctor_m7E254D09534F8491F229938BC2AB7B08485335AE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* X962Parameters_GetInstance_mEC0346C936B50B75ACDEB93CE2A5723C3E92C87F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* X9Curve__ctor_m633F4D1ABDE4E23226E61E707C979247A44C5AF1_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* X9Curve__ctor_m954B3F1B487573FF81CFF93B026D5D4BC6E0FC0D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* X9ECParameters__ctor_m1BFE3A055B96908B6FB3DDFBE623F4F26C9B4D1B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* X9ECParameters__ctor_m6A7AF27CFE350EE199022E32754A845EBF2E4D0C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* X9FieldID__ctor_mF506790D5BB59536539E54AD472B25614F541B93_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XSalsa20Engine_SetKey_mA21F40A2F3A1FE656CD067347CD44EEA711D8625_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XteaEngine_Init_m260A7421CEBAA318605D7DECAF2D77C703CCCC17_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* XteaEngine_ProcessBlock_m37E443C11588C84B5B2F6E463BF7075B7090C98C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* YejiHuntGameMode_CreateAnimal_m50A84D5502FCFE43217BA3774FD66F0E2502CEA9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* YejiHuntGameMode_OnlinePK_OnStart_m14F2B08B4497E057DAB417830C21DB7431A13485_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* YejiHuntGameMode_U3CCreateAnimalU3Eb__8_0_m730EB0E05FCFECD971A9EDAE41E2C7F7BF782E3F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Yeji_U3CDieU3Eb__20_0_m5BE3B62FC235E4163B39C0EEAA36409A0E08ED24_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ZDeflaterOutputStream_Finish_mED3E8EAF8799F956AE5601F42D3ECF7512AF7C46_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ZDeflaterOutputStream_Write_m28054D7C2E4EA2EAAD138DEACA154DB61FA680EA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ZInflaterInputStream_Read_m6C2C145DCFEA7FA4F303715859E988D6C07EBE87_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ZInputStream_Read_mC39489FD8E17C1B7C7DEF279B1EFFB6546B8A330_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ZInputStream_Seek_mDD9C059AD9B89BFD01FB8FE1BC3C327920153301_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ZInputStream_SetLength_mC24153722653280F2B1039F30C452007983245B7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ZInputStream_Write_m019D295B88B1B02549FB5BE74E0D5048F8089CD5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ZInputStream_get_Length_m0E162B2C5AF2C779459F52F5C6D152EC89B6ED4C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ZInputStream_get_Position_mCC5D9D8AB7D3440B5C9AED756B85D04AAD177A82_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ZInputStream_set_Position_mA03BBB0B468CC3FFF45A114A63D0DE7912A351FC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ZOutputStream_Finish_m357AD7FA39B01F3BCEF602123F2DFC6E28B06DAC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ZOutputStream_Read_m95257492E95638A3C63DC663C1049070FD315307_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ZOutputStream_Seek_m40D0523F3E61F4A31967C22B6AE32933AE8742BE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ZOutputStream_SetLength_m55701E8EB5FB955206CD4C17FD375055F2CE4991_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ZOutputStream_Write_mFCC3668AFEBB36607C20702B943C9F577FAEAC4E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ZOutputStream_get_Length_m2EA192C004E6EAFACA0DC154A38F04B2D35AD0D8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ZOutputStream_get_Position_mC24068C865DE023846D6EBC568D9A337F0348B3D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ZOutputStream_set_Position_m7D5C7553B2ACEC151DCCB00980AF8653660E3B43_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeType* IX509AttributeCertificate_t96382508C6487F5655E190C16E2BCB3486645DA8_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* X509CertificatePair_t51FFCB1B7D2FF7CAD86D43DDD7EEA4046829F740_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06_0_0_0_var; IL2CPP_EXTERN_C const RuntimeType* X509Crl_t963C99FFAA5E9B3E8AE0BBB6F74D45D52C7BBB04_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 Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE; struct BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C; struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726; struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34; struct Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD; struct Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32; struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE; struct SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7; struct SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA; struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A; struct UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF; struct X509AttributeU5BU5D_tB7CB869D1933A59A13717C710F5F0ED2A833E042; struct AreaInfoU5BU5D_tDB8FCFB9A63CBA4F532B013A8702761BB2E7BA27; 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.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.HashSet`1 struct HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.HashSet`1::_buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ____buckets_7; // System.Collections.Generic.HashSet`1/Slot[] System.Collections.Generic.HashSet`1::_slots SlotU5BU5D_tA2C59549601B8D4FF421D3FE4AE207703AADA494* ____slots_8; // System.Int32 System.Collections.Generic.HashSet`1::_count int32_t ____count_9; // System.Int32 System.Collections.Generic.HashSet`1::_lastIndex int32_t ____lastIndex_10; // System.Int32 System.Collections.Generic.HashSet`1::_freeList int32_t ____freeList_11; // System.Collections.Generic.IEqualityComparer`1 System.Collections.Generic.HashSet`1::_comparer RuntimeObject* ____comparer_12; // System.Int32 System.Collections.Generic.HashSet`1::_version int32_t ____version_13; // System.Runtime.Serialization.SerializationInfo System.Collections.Generic.HashSet`1::_siInfo SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ____siInfo_14; public: inline static int32_t get_offset_of__buckets_7() { return static_cast(offsetof(HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B, ____buckets_7)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get__buckets_7() const { return ____buckets_7; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of__buckets_7() { return &____buckets_7; } inline void set__buckets_7(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ____buckets_7 = value; Il2CppCodeGenWriteBarrier((void**)(&____buckets_7), (void*)value); } inline static int32_t get_offset_of__slots_8() { return static_cast(offsetof(HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B, ____slots_8)); } inline SlotU5BU5D_tA2C59549601B8D4FF421D3FE4AE207703AADA494* get__slots_8() const { return ____slots_8; } inline SlotU5BU5D_tA2C59549601B8D4FF421D3FE4AE207703AADA494** get_address_of__slots_8() { return &____slots_8; } inline void set__slots_8(SlotU5BU5D_tA2C59549601B8D4FF421D3FE4AE207703AADA494* value) { ____slots_8 = value; Il2CppCodeGenWriteBarrier((void**)(&____slots_8), (void*)value); } inline static int32_t get_offset_of__count_9() { return static_cast(offsetof(HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B, ____count_9)); } inline int32_t get__count_9() const { return ____count_9; } inline int32_t* get_address_of__count_9() { return &____count_9; } inline void set__count_9(int32_t value) { ____count_9 = value; } inline static int32_t get_offset_of__lastIndex_10() { return static_cast(offsetof(HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B, ____lastIndex_10)); } inline int32_t get__lastIndex_10() const { return ____lastIndex_10; } inline int32_t* get_address_of__lastIndex_10() { return &____lastIndex_10; } inline void set__lastIndex_10(int32_t value) { ____lastIndex_10 = value; } inline static int32_t get_offset_of__freeList_11() { return static_cast(offsetof(HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B, ____freeList_11)); } inline int32_t get__freeList_11() const { return ____freeList_11; } inline int32_t* get_address_of__freeList_11() { return &____freeList_11; } inline void set__freeList_11(int32_t value) { ____freeList_11 = value; } inline static int32_t get_offset_of__comparer_12() { return static_cast(offsetof(HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B, ____comparer_12)); } inline RuntimeObject* get__comparer_12() const { return ____comparer_12; } inline RuntimeObject** get_address_of__comparer_12() { return &____comparer_12; } inline void set__comparer_12(RuntimeObject* value) { ____comparer_12 = value; Il2CppCodeGenWriteBarrier((void**)(&____comparer_12), (void*)value); } inline static int32_t get_offset_of__version_13() { return static_cast(offsetof(HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B, ____version_13)); } inline int32_t get__version_13() const { return ____version_13; } inline int32_t* get_address_of__version_13() { return &____version_13; } inline void set__version_13(int32_t value) { ____version_13 = value; } inline static int32_t get_offset_of__siInfo_14() { return static_cast(offsetof(HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B, ____siInfo_14)); } inline SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * get__siInfo_14() const { return ____siInfo_14; } inline SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 ** get_address_of__siInfo_14() { return &____siInfo_14; } inline void set__siInfo_14(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * value) { ____siInfo_14 = value; Il2CppCodeGenWriteBarrier((void**)(&____siInfo_14), (void*)value); } }; // System.Collections.Generic.HashSet`1 struct HashSet_1_tBBDF351960AC909F90DBEEF112FAB92D79FAB089 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.HashSet`1::_buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ____buckets_7; // System.Collections.Generic.HashSet`1/Slot[] System.Collections.Generic.HashSet`1::_slots SlotU5BU5D_t8EC62680F649585ECE1B7E1D80BAFAF7F475C579* ____slots_8; // System.Int32 System.Collections.Generic.HashSet`1::_count int32_t ____count_9; // System.Int32 System.Collections.Generic.HashSet`1::_lastIndex int32_t ____lastIndex_10; // System.Int32 System.Collections.Generic.HashSet`1::_freeList int32_t ____freeList_11; // System.Collections.Generic.IEqualityComparer`1 System.Collections.Generic.HashSet`1::_comparer RuntimeObject* ____comparer_12; // System.Int32 System.Collections.Generic.HashSet`1::_version int32_t ____version_13; // System.Runtime.Serialization.SerializationInfo System.Collections.Generic.HashSet`1::_siInfo SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ____siInfo_14; public: inline static int32_t get_offset_of__buckets_7() { return static_cast(offsetof(HashSet_1_tBBDF351960AC909F90DBEEF112FAB92D79FAB089, ____buckets_7)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get__buckets_7() const { return ____buckets_7; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of__buckets_7() { return &____buckets_7; } inline void set__buckets_7(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ____buckets_7 = value; Il2CppCodeGenWriteBarrier((void**)(&____buckets_7), (void*)value); } inline static int32_t get_offset_of__slots_8() { return static_cast(offsetof(HashSet_1_tBBDF351960AC909F90DBEEF112FAB92D79FAB089, ____slots_8)); } inline SlotU5BU5D_t8EC62680F649585ECE1B7E1D80BAFAF7F475C579* get__slots_8() const { return ____slots_8; } inline SlotU5BU5D_t8EC62680F649585ECE1B7E1D80BAFAF7F475C579** get_address_of__slots_8() { return &____slots_8; } inline void set__slots_8(SlotU5BU5D_t8EC62680F649585ECE1B7E1D80BAFAF7F475C579* value) { ____slots_8 = value; Il2CppCodeGenWriteBarrier((void**)(&____slots_8), (void*)value); } inline static int32_t get_offset_of__count_9() { return static_cast(offsetof(HashSet_1_tBBDF351960AC909F90DBEEF112FAB92D79FAB089, ____count_9)); } inline int32_t get__count_9() const { return ____count_9; } inline int32_t* get_address_of__count_9() { return &____count_9; } inline void set__count_9(int32_t value) { ____count_9 = value; } inline static int32_t get_offset_of__lastIndex_10() { return static_cast(offsetof(HashSet_1_tBBDF351960AC909F90DBEEF112FAB92D79FAB089, ____lastIndex_10)); } inline int32_t get__lastIndex_10() const { return ____lastIndex_10; } inline int32_t* get_address_of__lastIndex_10() { return &____lastIndex_10; } inline void set__lastIndex_10(int32_t value) { ____lastIndex_10 = value; } inline static int32_t get_offset_of__freeList_11() { return static_cast(offsetof(HashSet_1_tBBDF351960AC909F90DBEEF112FAB92D79FAB089, ____freeList_11)); } inline int32_t get__freeList_11() const { return ____freeList_11; } inline int32_t* get_address_of__freeList_11() { return &____freeList_11; } inline void set__freeList_11(int32_t value) { ____freeList_11 = value; } inline static int32_t get_offset_of__comparer_12() { return static_cast(offsetof(HashSet_1_tBBDF351960AC909F90DBEEF112FAB92D79FAB089, ____comparer_12)); } inline RuntimeObject* get__comparer_12() const { return ____comparer_12; } inline RuntimeObject** get_address_of__comparer_12() { return &____comparer_12; } inline void set__comparer_12(RuntimeObject* value) { ____comparer_12 = value; Il2CppCodeGenWriteBarrier((void**)(&____comparer_12), (void*)value); } inline static int32_t get_offset_of__version_13() { return static_cast(offsetof(HashSet_1_tBBDF351960AC909F90DBEEF112FAB92D79FAB089, ____version_13)); } inline int32_t get__version_13() const { return ____version_13; } inline int32_t* get_address_of__version_13() { return &____version_13; } inline void set__version_13(int32_t value) { ____version_13 = value; } inline static int32_t get_offset_of__siInfo_14() { return static_cast(offsetof(HashSet_1_tBBDF351960AC909F90DBEEF112FAB92D79FAB089, ____siInfo_14)); } inline SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * get__siInfo_14() const { return ____siInfo_14; } inline SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 ** get_address_of__siInfo_14() { return &____siInfo_14; } inline void set__siInfo_14(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * value) { ____siInfo_14 = value; Il2CppCodeGenWriteBarrier((void**)(&____siInfo_14), (void*)value); } }; // System.Collections.Generic.HashSet`1 struct HashSet_1_t47ED9A0606C5D93A2045DE3AACBA2CD73C930023 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.HashSet`1::_buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ____buckets_7; // System.Collections.Generic.HashSet`1/Slot[] System.Collections.Generic.HashSet`1::_slots SlotU5BU5D_t33EC0D3104CE571EFAFC379F9501DEEDBAA24170* ____slots_8; // System.Int32 System.Collections.Generic.HashSet`1::_count int32_t ____count_9; // System.Int32 System.Collections.Generic.HashSet`1::_lastIndex int32_t ____lastIndex_10; // System.Int32 System.Collections.Generic.HashSet`1::_freeList int32_t ____freeList_11; // System.Collections.Generic.IEqualityComparer`1 System.Collections.Generic.HashSet`1::_comparer RuntimeObject* ____comparer_12; // System.Int32 System.Collections.Generic.HashSet`1::_version int32_t ____version_13; // System.Runtime.Serialization.SerializationInfo System.Collections.Generic.HashSet`1::_siInfo SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ____siInfo_14; public: inline static int32_t get_offset_of__buckets_7() { return static_cast(offsetof(HashSet_1_t47ED9A0606C5D93A2045DE3AACBA2CD73C930023, ____buckets_7)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get__buckets_7() const { return ____buckets_7; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of__buckets_7() { return &____buckets_7; } inline void set__buckets_7(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ____buckets_7 = value; Il2CppCodeGenWriteBarrier((void**)(&____buckets_7), (void*)value); } inline static int32_t get_offset_of__slots_8() { return static_cast(offsetof(HashSet_1_t47ED9A0606C5D93A2045DE3AACBA2CD73C930023, ____slots_8)); } inline SlotU5BU5D_t33EC0D3104CE571EFAFC379F9501DEEDBAA24170* get__slots_8() const { return ____slots_8; } inline SlotU5BU5D_t33EC0D3104CE571EFAFC379F9501DEEDBAA24170** get_address_of__slots_8() { return &____slots_8; } inline void set__slots_8(SlotU5BU5D_t33EC0D3104CE571EFAFC379F9501DEEDBAA24170* value) { ____slots_8 = value; Il2CppCodeGenWriteBarrier((void**)(&____slots_8), (void*)value); } inline static int32_t get_offset_of__count_9() { return static_cast(offsetof(HashSet_1_t47ED9A0606C5D93A2045DE3AACBA2CD73C930023, ____count_9)); } inline int32_t get__count_9() const { return ____count_9; } inline int32_t* get_address_of__count_9() { return &____count_9; } inline void set__count_9(int32_t value) { ____count_9 = value; } inline static int32_t get_offset_of__lastIndex_10() { return static_cast(offsetof(HashSet_1_t47ED9A0606C5D93A2045DE3AACBA2CD73C930023, ____lastIndex_10)); } inline int32_t get__lastIndex_10() const { return ____lastIndex_10; } inline int32_t* get_address_of__lastIndex_10() { return &____lastIndex_10; } inline void set__lastIndex_10(int32_t value) { ____lastIndex_10 = value; } inline static int32_t get_offset_of__freeList_11() { return static_cast(offsetof(HashSet_1_t47ED9A0606C5D93A2045DE3AACBA2CD73C930023, ____freeList_11)); } inline int32_t get__freeList_11() const { return ____freeList_11; } inline int32_t* get_address_of__freeList_11() { return &____freeList_11; } inline void set__freeList_11(int32_t value) { ____freeList_11 = value; } inline static int32_t get_offset_of__comparer_12() { return static_cast(offsetof(HashSet_1_t47ED9A0606C5D93A2045DE3AACBA2CD73C930023, ____comparer_12)); } inline RuntimeObject* get__comparer_12() const { return ____comparer_12; } inline RuntimeObject** get_address_of__comparer_12() { return &____comparer_12; } inline void set__comparer_12(RuntimeObject* value) { ____comparer_12 = value; Il2CppCodeGenWriteBarrier((void**)(&____comparer_12), (void*)value); } inline static int32_t get_offset_of__version_13() { return static_cast(offsetof(HashSet_1_t47ED9A0606C5D93A2045DE3AACBA2CD73C930023, ____version_13)); } inline int32_t get__version_13() const { return ____version_13; } inline int32_t* get_address_of__version_13() { return &____version_13; } inline void set__version_13(int32_t value) { ____version_13 = value; } inline static int32_t get_offset_of__siInfo_14() { return static_cast(offsetof(HashSet_1_t47ED9A0606C5D93A2045DE3AACBA2CD73C930023, ____siInfo_14)); } inline SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * get__siInfo_14() const { return ____siInfo_14; } inline SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 ** get_address_of__siInfo_14() { return &____siInfo_14; } inline void set__siInfo_14(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * value) { ____siInfo_14 = value; Il2CppCodeGenWriteBarrier((void**)(&____siInfo_14), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.Multiplier.AbstractECMultiplier struct AbstractECMultiplier_t54253743E31DE46FD22E58679B9792D44DA770B5 : public RuntimeObject { public: public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Adler32 struct Adler32_tA7FF29BBF4C9B4738DDE9CA1F7F5B6457DDF5EC2 : public RuntimeObject { public: public: }; struct Il2CppArrayBounds; // System.Array // ArrowCameraTemplate struct ArrowCameraTemplate_tFE88182B75A9486E4D72B88A48F2D1EC6327475B : public RuntimeObject { public: // ArrowCamera ArrowCameraTemplate::arrowCamera ArrowCamera_t793154C45EDFAED3729D4987BA58D315612380FB * ___arrowCamera_0; public: inline static int32_t get_offset_of_arrowCamera_0() { return static_cast(offsetof(ArrowCameraTemplate_tFE88182B75A9486E4D72B88A48F2D1EC6327475B, ___arrowCamera_0)); } inline ArrowCamera_t793154C45EDFAED3729D4987BA58D315612380FB * get_arrowCamera_0() const { return ___arrowCamera_0; } inline ArrowCamera_t793154C45EDFAED3729D4987BA58D315612380FB ** get_address_of_arrowCamera_0() { return &___arrowCamera_0; } inline void set_arrowCamera_0(ArrowCamera_t793154C45EDFAED3729D4987BA58D315612380FB * value) { ___arrowCamera_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___arrowCamera_0), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable struct Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC : public RuntimeObject { public: public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1EncodableVector struct Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 : public RuntimeObject { public: // System.Collections.IList BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1EncodableVector::v RuntimeObject* ___v_0; public: inline static int32_t get_offset_of_v_0() { return static_cast(offsetof(Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3, ___v_0)); } inline RuntimeObject* get_v_0() const { return ___v_0; } inline RuntimeObject** get_address_of_v_0() { return &___v_0; } inline void set_v_0(RuntimeObject* value) { ___v_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___v_0), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Operators.Asn1SignatureFactory struct Asn1SignatureFactory_t82880FE5F99692E8C940551308221AA7CAB2682A : public RuntimeObject { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Operators.Asn1SignatureFactory::algID AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___algID_0; // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Operators.Asn1SignatureFactory::algorithm String_t* ___algorithm_1; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Operators.Asn1SignatureFactory::privateKey AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * ___privateKey_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Operators.Asn1SignatureFactory::random SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * ___random_3; public: inline static int32_t get_offset_of_algID_0() { return static_cast(offsetof(Asn1SignatureFactory_t82880FE5F99692E8C940551308221AA7CAB2682A, ___algID_0)); } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * get_algID_0() const { return ___algID_0; } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 ** get_address_of_algID_0() { return &___algID_0; } inline void set_algID_0(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * value) { ___algID_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___algID_0), (void*)value); } inline static int32_t get_offset_of_algorithm_1() { return static_cast(offsetof(Asn1SignatureFactory_t82880FE5F99692E8C940551308221AA7CAB2682A, ___algorithm_1)); } inline String_t* get_algorithm_1() const { return ___algorithm_1; } inline String_t** get_address_of_algorithm_1() { return &___algorithm_1; } inline void set_algorithm_1(String_t* value) { ___algorithm_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___algorithm_1), (void*)value); } inline static int32_t get_offset_of_privateKey_2() { return static_cast(offsetof(Asn1SignatureFactory_t82880FE5F99692E8C940551308221AA7CAB2682A, ___privateKey_2)); } inline AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * get_privateKey_2() const { return ___privateKey_2; } inline AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A ** get_address_of_privateKey_2() { return &___privateKey_2; } inline void set_privateKey_2(AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * value) { ___privateKey_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___privateKey_2), (void*)value); } inline static int32_t get_offset_of_random_3() { return static_cast(offsetof(Asn1SignatureFactory_t82880FE5F99692E8C940551308221AA7CAB2682A, ___random_3)); } inline SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * get_random_3() const { return ___random_3; } inline SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 ** get_address_of_random_3() { return &___random_3; } inline void set_random_3(SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * value) { ___random_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___random_3), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Operators.Asn1VerifierFactory struct Asn1VerifierFactory_t7331A64CE68459C50FCE03C94BBA668180927CD4 : public RuntimeObject { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Operators.Asn1VerifierFactory::algID AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___algID_0; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Operators.Asn1VerifierFactory::publicKey AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * ___publicKey_1; public: inline static int32_t get_offset_of_algID_0() { return static_cast(offsetof(Asn1VerifierFactory_t7331A64CE68459C50FCE03C94BBA668180927CD4, ___algID_0)); } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * get_algID_0() const { return ___algID_0; } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 ** get_address_of_algID_0() { return &___algID_0; } inline void set_algID_0(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * value) { ___algID_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___algID_0), (void*)value); } inline static int32_t get_offset_of_publicKey_1() { return static_cast(offsetof(Asn1VerifierFactory_t7331A64CE68459C50FCE03C94BBA668180927CD4, ___publicKey_1)); } inline AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * get_publicKey_1() const { return ___publicKey_1; } inline AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A ** get_address_of_publicKey_1() { return &___publicKey_1; } inline void set_publicKey_1(AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * value) { ___publicKey_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___publicKey_1), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter struct AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A : public RuntimeObject { public: // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter::privateKey bool ___privateKey_0; public: inline static int32_t get_offset_of_privateKey_0() { return static_cast(offsetof(AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A, ___privateKey_0)); } inline bool get_privateKey_0() const { return ___privateKey_0; } inline bool* get_address_of_privateKey_0() { return &___privateKey_0; } inline void set_privateKey_0(bool value) { ___privateKey_0 = value; } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.AttributeCertificateHolder struct AttributeCertificateHolder_t84044880E63B3791FAAD143E5AE456CCAF5A283D : public RuntimeObject { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.Holder BestHTTP.SecureProtocol.Org.BouncyCastle.X509.AttributeCertificateHolder::holder Holder_t64C922905238378DD56C273DE16BA7D09529E22A * ___holder_0; public: inline static int32_t get_offset_of_holder_0() { return static_cast(offsetof(AttributeCertificateHolder_t84044880E63B3791FAAD143E5AE456CCAF5A283D, ___holder_0)); } inline Holder_t64C922905238378DD56C273DE16BA7D09529E22A * get_holder_0() const { return ___holder_0; } inline Holder_t64C922905238378DD56C273DE16BA7D09529E22A ** get_address_of_holder_0() { return &___holder_0; } inline void set_holder_0(Holder_t64C922905238378DD56C273DE16BA7D09529E22A * value) { ___holder_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___holder_0), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.AttributeCertificateIssuer struct AttributeCertificateIssuer_t0CDFDFE49E5B87F38DDC1F1E13440FB7C1B394D4 : public RuntimeObject { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.X509.AttributeCertificateIssuer::form Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * ___form_0; public: inline static int32_t get_offset_of_form_0() { return static_cast(offsetof(AttributeCertificateIssuer_t0CDFDFE49E5B87F38DDC1F1E13440FB7C1B394D4, ___form_0)); } inline Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * get_form_0() const { return ___form_0; } inline Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC ** get_address_of_form_0() { return &___form_0; } inline void set_form_0(Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * value) { ___form_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___form_0), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.BasicEntropySourceProvider struct BasicEntropySourceProvider_t6F0E2E503BBA509525A672616B82C23B8927D01E : public RuntimeObject { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.BasicEntropySourceProvider::mSecureRandom SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * ___mSecureRandom_0; // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.BasicEntropySourceProvider::mPredictionResistant bool ___mPredictionResistant_1; public: inline static int32_t get_offset_of_mSecureRandom_0() { return static_cast(offsetof(BasicEntropySourceProvider_t6F0E2E503BBA509525A672616B82C23B8927D01E, ___mSecureRandom_0)); } inline SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * get_mSecureRandom_0() const { return ___mSecureRandom_0; } inline SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 ** get_address_of_mSecureRandom_0() { return &___mSecureRandom_0; } inline void set_mSecureRandom_0(SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * value) { ___mSecureRandom_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___mSecureRandom_0), (void*)value); } inline static int32_t get_offset_of_mPredictionResistant_1() { return static_cast(offsetof(BasicEntropySourceProvider_t6F0E2E503BBA509525A672616B82C23B8927D01E, ___mPredictionResistant_1)); } inline bool get_mPredictionResistant_1() const { return ___mPredictionResistant_1; } inline bool* get_address_of_mPredictionResistant_1() { return &___mPredictionResistant_1; } inline void set_mPredictionResistant_1(bool value) { ___mPredictionResistant_1 = value; } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger struct BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 : public RuntimeObject { public: // System.Int32[] BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::magnitude Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___magnitude_30; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::sign int32_t ___sign_31; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::nBits int32_t ___nBits_32; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::nBitLength int32_t ___nBitLength_33; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::mQuote int32_t ___mQuote_34; public: inline static int32_t get_offset_of_magnitude_30() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9, ___magnitude_30)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_magnitude_30() const { return ___magnitude_30; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_magnitude_30() { return &___magnitude_30; } inline void set_magnitude_30(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___magnitude_30 = value; Il2CppCodeGenWriteBarrier((void**)(&___magnitude_30), (void*)value); } inline static int32_t get_offset_of_sign_31() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9, ___sign_31)); } inline int32_t get_sign_31() const { return ___sign_31; } inline int32_t* get_address_of_sign_31() { return &___sign_31; } inline void set_sign_31(int32_t value) { ___sign_31 = value; } inline static int32_t get_offset_of_nBits_32() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9, ___nBits_32)); } inline int32_t get_nBits_32() const { return ___nBits_32; } inline int32_t* get_address_of_nBits_32() { return &___nBits_32; } inline void set_nBits_32(int32_t value) { ___nBits_32 = value; } inline static int32_t get_offset_of_nBitLength_33() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9, ___nBitLength_33)); } inline int32_t get_nBitLength_33() const { return ___nBitLength_33; } inline int32_t* get_address_of_nBitLength_33() { return &___nBitLength_33; } inline void set_nBitLength_33(int32_t value) { ___nBitLength_33 = value; } inline static int32_t get_offset_of_mQuote_34() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9, ___mQuote_34)); } inline int32_t get_mQuote_34() const { return ___mQuote_34; } inline int32_t* get_address_of_mQuote_34() { return &___mQuote_34; } inline void set_mQuote_34(int32_t value) { ___mQuote_34 = value; } }; struct BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_StaticFields { public: // System.Int32[][] BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::primeLists Int32U5BU5DU5BU5D_t104DBF1B996084AA19567FD32B02EDF88D044FAF* ___primeLists_0; // System.Int32[] BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::primeProducts Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___primeProducts_1; // System.Int32[] BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::ZeroMagnitude Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___ZeroMagnitude_4; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::ZeroEncoding ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___ZeroEncoding_5; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger[] BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::SMALL_CONSTANTS BigIntegerU5BU5D_tE8B77B5B8A588D40881DE1C7EE373965BF9E33ED* ___SMALL_CONSTANTS_6; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::Zero BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___Zero_7; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::One BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___One_8; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::Two BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___Two_9; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::Three BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___Three_10; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::Ten BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___Ten_11; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::BitLengthTable ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___BitLengthTable_12; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::radix2 BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___radix2_17; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::radix2E BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___radix2E_18; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::radix8 BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___radix8_19; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::radix8E BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___radix8E_20; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::radix10 BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___radix10_21; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::radix10E BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___radix10E_22; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::radix16 BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___radix16_23; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::radix16E BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___radix16E_24; // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::RandomSource SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * ___RandomSource_25; // System.Int32[] BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::ExpWindowThresholds Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___ExpWindowThresholds_26; public: inline static int32_t get_offset_of_primeLists_0() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_StaticFields, ___primeLists_0)); } inline Int32U5BU5DU5BU5D_t104DBF1B996084AA19567FD32B02EDF88D044FAF* get_primeLists_0() const { return ___primeLists_0; } inline Int32U5BU5DU5BU5D_t104DBF1B996084AA19567FD32B02EDF88D044FAF** get_address_of_primeLists_0() { return &___primeLists_0; } inline void set_primeLists_0(Int32U5BU5DU5BU5D_t104DBF1B996084AA19567FD32B02EDF88D044FAF* value) { ___primeLists_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___primeLists_0), (void*)value); } inline static int32_t get_offset_of_primeProducts_1() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_StaticFields, ___primeProducts_1)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_primeProducts_1() const { return ___primeProducts_1; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_primeProducts_1() { return &___primeProducts_1; } inline void set_primeProducts_1(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___primeProducts_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___primeProducts_1), (void*)value); } inline static int32_t get_offset_of_ZeroMagnitude_4() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_StaticFields, ___ZeroMagnitude_4)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_ZeroMagnitude_4() const { return ___ZeroMagnitude_4; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_ZeroMagnitude_4() { return &___ZeroMagnitude_4; } inline void set_ZeroMagnitude_4(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___ZeroMagnitude_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___ZeroMagnitude_4), (void*)value); } inline static int32_t get_offset_of_ZeroEncoding_5() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_StaticFields, ___ZeroEncoding_5)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_ZeroEncoding_5() const { return ___ZeroEncoding_5; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_ZeroEncoding_5() { return &___ZeroEncoding_5; } inline void set_ZeroEncoding_5(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___ZeroEncoding_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___ZeroEncoding_5), (void*)value); } inline static int32_t get_offset_of_SMALL_CONSTANTS_6() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_StaticFields, ___SMALL_CONSTANTS_6)); } inline BigIntegerU5BU5D_tE8B77B5B8A588D40881DE1C7EE373965BF9E33ED* get_SMALL_CONSTANTS_6() const { return ___SMALL_CONSTANTS_6; } inline BigIntegerU5BU5D_tE8B77B5B8A588D40881DE1C7EE373965BF9E33ED** get_address_of_SMALL_CONSTANTS_6() { return &___SMALL_CONSTANTS_6; } inline void set_SMALL_CONSTANTS_6(BigIntegerU5BU5D_tE8B77B5B8A588D40881DE1C7EE373965BF9E33ED* value) { ___SMALL_CONSTANTS_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___SMALL_CONSTANTS_6), (void*)value); } inline static int32_t get_offset_of_Zero_7() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_StaticFields, ___Zero_7)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_Zero_7() const { return ___Zero_7; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_Zero_7() { return &___Zero_7; } inline void set_Zero_7(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___Zero_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___Zero_7), (void*)value); } inline static int32_t get_offset_of_One_8() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_StaticFields, ___One_8)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_One_8() const { return ___One_8; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_One_8() { return &___One_8; } inline void set_One_8(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___One_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___One_8), (void*)value); } inline static int32_t get_offset_of_Two_9() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_StaticFields, ___Two_9)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_Two_9() const { return ___Two_9; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_Two_9() { return &___Two_9; } inline void set_Two_9(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___Two_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___Two_9), (void*)value); } inline static int32_t get_offset_of_Three_10() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_StaticFields, ___Three_10)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_Three_10() const { return ___Three_10; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_Three_10() { return &___Three_10; } inline void set_Three_10(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___Three_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___Three_10), (void*)value); } inline static int32_t get_offset_of_Ten_11() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_StaticFields, ___Ten_11)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_Ten_11() const { return ___Ten_11; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_Ten_11() { return &___Ten_11; } inline void set_Ten_11(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___Ten_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___Ten_11), (void*)value); } inline static int32_t get_offset_of_BitLengthTable_12() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_StaticFields, ___BitLengthTable_12)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_BitLengthTable_12() const { return ___BitLengthTable_12; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_BitLengthTable_12() { return &___BitLengthTable_12; } inline void set_BitLengthTable_12(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___BitLengthTable_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___BitLengthTable_12), (void*)value); } inline static int32_t get_offset_of_radix2_17() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_StaticFields, ___radix2_17)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_radix2_17() const { return ___radix2_17; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_radix2_17() { return &___radix2_17; } inline void set_radix2_17(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___radix2_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___radix2_17), (void*)value); } inline static int32_t get_offset_of_radix2E_18() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_StaticFields, ___radix2E_18)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_radix2E_18() const { return ___radix2E_18; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_radix2E_18() { return &___radix2E_18; } inline void set_radix2E_18(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___radix2E_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___radix2E_18), (void*)value); } inline static int32_t get_offset_of_radix8_19() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_StaticFields, ___radix8_19)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_radix8_19() const { return ___radix8_19; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_radix8_19() { return &___radix8_19; } inline void set_radix8_19(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___radix8_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___radix8_19), (void*)value); } inline static int32_t get_offset_of_radix8E_20() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_StaticFields, ___radix8E_20)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_radix8E_20() const { return ___radix8E_20; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_radix8E_20() { return &___radix8E_20; } inline void set_radix8E_20(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___radix8E_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___radix8E_20), (void*)value); } inline static int32_t get_offset_of_radix10_21() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_StaticFields, ___radix10_21)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_radix10_21() const { return ___radix10_21; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_radix10_21() { return &___radix10_21; } inline void set_radix10_21(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___radix10_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___radix10_21), (void*)value); } inline static int32_t get_offset_of_radix10E_22() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_StaticFields, ___radix10E_22)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_radix10E_22() const { return ___radix10E_22; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_radix10E_22() { return &___radix10E_22; } inline void set_radix10E_22(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___radix10E_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___radix10E_22), (void*)value); } inline static int32_t get_offset_of_radix16_23() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_StaticFields, ___radix16_23)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_radix16_23() const { return ___radix16_23; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_radix16_23() { return &___radix16_23; } inline void set_radix16_23(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___radix16_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___radix16_23), (void*)value); } inline static int32_t get_offset_of_radix16E_24() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_StaticFields, ___radix16E_24)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_radix16E_24() const { return ___radix16E_24; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_radix16E_24() { return &___radix16E_24; } inline void set_radix16E_24(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___radix16E_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___radix16E_24), (void*)value); } inline static int32_t get_offset_of_RandomSource_25() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_StaticFields, ___RandomSource_25)); } inline SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * get_RandomSource_25() const { return ___RandomSource_25; } inline SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 ** get_address_of_RandomSource_25() { return &___RandomSource_25; } inline void set_RandomSource_25(SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * value) { ___RandomSource_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___RandomSource_25), (void*)value); } inline static int32_t get_offset_of_ExpWindowThresholds_26() { return static_cast(offsetof(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_StaticFields, ___ExpWindowThresholds_26)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_ExpWindowThresholds_26() const { return ___ExpWindowThresholds_26; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_ExpWindowThresholds_26() { return &___ExpWindowThresholds_26; } inline void set_ExpWindowThresholds_26(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___ExpWindowThresholds_26 = value; Il2CppCodeGenWriteBarrier((void**)(&___ExpWindowThresholds_26), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers struct CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C : public RuntimeObject { public: public: }; struct CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3411 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___GostR3411_1; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3411Hmac DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___GostR3411Hmac_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR28147Cbc DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___GostR28147Cbc_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::ID_Gost28147_89_CryptoPro_A_ParamSet DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___ID_Gost28147_89_CryptoPro_A_ParamSet_4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3410x94 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___GostR3410x94_5; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3410x2001 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___GostR3410x2001_6; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3411x94WithGostR3410x94 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___GostR3411x94WithGostR3410x94_7; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3411x94WithGostR3410x2001 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___GostR3411x94WithGostR3410x2001_8; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3411x94CryptoProParamSet DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___GostR3411x94CryptoProParamSet_9; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3410x94CryptoProA DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___GostR3410x94CryptoProA_10; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3410x94CryptoProB DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___GostR3410x94CryptoProB_11; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3410x94CryptoProC DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___GostR3410x94CryptoProC_12; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3410x94CryptoProD DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___GostR3410x94CryptoProD_13; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3410x94CryptoProXchA DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___GostR3410x94CryptoProXchA_14; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3410x94CryptoProXchB DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___GostR3410x94CryptoProXchB_15; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3410x94CryptoProXchC DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___GostR3410x94CryptoProXchC_16; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3410x2001CryptoProA DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___GostR3410x2001CryptoProA_17; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3410x2001CryptoProB DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___GostR3410x2001CryptoProB_18; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3410x2001CryptoProC DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___GostR3410x2001CryptoProC_19; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3410x2001CryptoProXchA DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___GostR3410x2001CryptoProXchA_20; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3410x2001CryptoProXchB DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___GostR3410x2001CryptoProXchB_21; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostElSgDH3410Default DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___GostElSgDH3410Default_22; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostElSgDH3410x1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___GostElSgDH3410x1_23; public: inline static int32_t get_offset_of_GostR3411_1() { return static_cast(offsetof(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields, ___GostR3411_1)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_GostR3411_1() const { return ___GostR3411_1; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_GostR3411_1() { return &___GostR3411_1; } inline void set_GostR3411_1(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___GostR3411_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___GostR3411_1), (void*)value); } inline static int32_t get_offset_of_GostR3411Hmac_2() { return static_cast(offsetof(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields, ___GostR3411Hmac_2)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_GostR3411Hmac_2() const { return ___GostR3411Hmac_2; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_GostR3411Hmac_2() { return &___GostR3411Hmac_2; } inline void set_GostR3411Hmac_2(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___GostR3411Hmac_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___GostR3411Hmac_2), (void*)value); } inline static int32_t get_offset_of_GostR28147Cbc_3() { return static_cast(offsetof(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields, ___GostR28147Cbc_3)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_GostR28147Cbc_3() const { return ___GostR28147Cbc_3; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_GostR28147Cbc_3() { return &___GostR28147Cbc_3; } inline void set_GostR28147Cbc_3(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___GostR28147Cbc_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___GostR28147Cbc_3), (void*)value); } inline static int32_t get_offset_of_ID_Gost28147_89_CryptoPro_A_ParamSet_4() { return static_cast(offsetof(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields, ___ID_Gost28147_89_CryptoPro_A_ParamSet_4)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_ID_Gost28147_89_CryptoPro_A_ParamSet_4() const { return ___ID_Gost28147_89_CryptoPro_A_ParamSet_4; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_ID_Gost28147_89_CryptoPro_A_ParamSet_4() { return &___ID_Gost28147_89_CryptoPro_A_ParamSet_4; } inline void set_ID_Gost28147_89_CryptoPro_A_ParamSet_4(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___ID_Gost28147_89_CryptoPro_A_ParamSet_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___ID_Gost28147_89_CryptoPro_A_ParamSet_4), (void*)value); } inline static int32_t get_offset_of_GostR3410x94_5() { return static_cast(offsetof(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields, ___GostR3410x94_5)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_GostR3410x94_5() const { return ___GostR3410x94_5; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_GostR3410x94_5() { return &___GostR3410x94_5; } inline void set_GostR3410x94_5(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___GostR3410x94_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___GostR3410x94_5), (void*)value); } inline static int32_t get_offset_of_GostR3410x2001_6() { return static_cast(offsetof(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields, ___GostR3410x2001_6)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_GostR3410x2001_6() const { return ___GostR3410x2001_6; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_GostR3410x2001_6() { return &___GostR3410x2001_6; } inline void set_GostR3410x2001_6(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___GostR3410x2001_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___GostR3410x2001_6), (void*)value); } inline static int32_t get_offset_of_GostR3411x94WithGostR3410x94_7() { return static_cast(offsetof(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields, ___GostR3411x94WithGostR3410x94_7)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_GostR3411x94WithGostR3410x94_7() const { return ___GostR3411x94WithGostR3410x94_7; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_GostR3411x94WithGostR3410x94_7() { return &___GostR3411x94WithGostR3410x94_7; } inline void set_GostR3411x94WithGostR3410x94_7(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___GostR3411x94WithGostR3410x94_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___GostR3411x94WithGostR3410x94_7), (void*)value); } inline static int32_t get_offset_of_GostR3411x94WithGostR3410x2001_8() { return static_cast(offsetof(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields, ___GostR3411x94WithGostR3410x2001_8)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_GostR3411x94WithGostR3410x2001_8() const { return ___GostR3411x94WithGostR3410x2001_8; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_GostR3411x94WithGostR3410x2001_8() { return &___GostR3411x94WithGostR3410x2001_8; } inline void set_GostR3411x94WithGostR3410x2001_8(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___GostR3411x94WithGostR3410x2001_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___GostR3411x94WithGostR3410x2001_8), (void*)value); } inline static int32_t get_offset_of_GostR3411x94CryptoProParamSet_9() { return static_cast(offsetof(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields, ___GostR3411x94CryptoProParamSet_9)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_GostR3411x94CryptoProParamSet_9() const { return ___GostR3411x94CryptoProParamSet_9; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_GostR3411x94CryptoProParamSet_9() { return &___GostR3411x94CryptoProParamSet_9; } inline void set_GostR3411x94CryptoProParamSet_9(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___GostR3411x94CryptoProParamSet_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___GostR3411x94CryptoProParamSet_9), (void*)value); } inline static int32_t get_offset_of_GostR3410x94CryptoProA_10() { return static_cast(offsetof(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields, ___GostR3410x94CryptoProA_10)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_GostR3410x94CryptoProA_10() const { return ___GostR3410x94CryptoProA_10; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_GostR3410x94CryptoProA_10() { return &___GostR3410x94CryptoProA_10; } inline void set_GostR3410x94CryptoProA_10(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___GostR3410x94CryptoProA_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___GostR3410x94CryptoProA_10), (void*)value); } inline static int32_t get_offset_of_GostR3410x94CryptoProB_11() { return static_cast(offsetof(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields, ___GostR3410x94CryptoProB_11)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_GostR3410x94CryptoProB_11() const { return ___GostR3410x94CryptoProB_11; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_GostR3410x94CryptoProB_11() { return &___GostR3410x94CryptoProB_11; } inline void set_GostR3410x94CryptoProB_11(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___GostR3410x94CryptoProB_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___GostR3410x94CryptoProB_11), (void*)value); } inline static int32_t get_offset_of_GostR3410x94CryptoProC_12() { return static_cast(offsetof(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields, ___GostR3410x94CryptoProC_12)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_GostR3410x94CryptoProC_12() const { return ___GostR3410x94CryptoProC_12; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_GostR3410x94CryptoProC_12() { return &___GostR3410x94CryptoProC_12; } inline void set_GostR3410x94CryptoProC_12(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___GostR3410x94CryptoProC_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___GostR3410x94CryptoProC_12), (void*)value); } inline static int32_t get_offset_of_GostR3410x94CryptoProD_13() { return static_cast(offsetof(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields, ___GostR3410x94CryptoProD_13)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_GostR3410x94CryptoProD_13() const { return ___GostR3410x94CryptoProD_13; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_GostR3410x94CryptoProD_13() { return &___GostR3410x94CryptoProD_13; } inline void set_GostR3410x94CryptoProD_13(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___GostR3410x94CryptoProD_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___GostR3410x94CryptoProD_13), (void*)value); } inline static int32_t get_offset_of_GostR3410x94CryptoProXchA_14() { return static_cast(offsetof(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields, ___GostR3410x94CryptoProXchA_14)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_GostR3410x94CryptoProXchA_14() const { return ___GostR3410x94CryptoProXchA_14; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_GostR3410x94CryptoProXchA_14() { return &___GostR3410x94CryptoProXchA_14; } inline void set_GostR3410x94CryptoProXchA_14(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___GostR3410x94CryptoProXchA_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___GostR3410x94CryptoProXchA_14), (void*)value); } inline static int32_t get_offset_of_GostR3410x94CryptoProXchB_15() { return static_cast(offsetof(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields, ___GostR3410x94CryptoProXchB_15)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_GostR3410x94CryptoProXchB_15() const { return ___GostR3410x94CryptoProXchB_15; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_GostR3410x94CryptoProXchB_15() { return &___GostR3410x94CryptoProXchB_15; } inline void set_GostR3410x94CryptoProXchB_15(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___GostR3410x94CryptoProXchB_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___GostR3410x94CryptoProXchB_15), (void*)value); } inline static int32_t get_offset_of_GostR3410x94CryptoProXchC_16() { return static_cast(offsetof(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields, ___GostR3410x94CryptoProXchC_16)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_GostR3410x94CryptoProXchC_16() const { return ___GostR3410x94CryptoProXchC_16; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_GostR3410x94CryptoProXchC_16() { return &___GostR3410x94CryptoProXchC_16; } inline void set_GostR3410x94CryptoProXchC_16(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___GostR3410x94CryptoProXchC_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___GostR3410x94CryptoProXchC_16), (void*)value); } inline static int32_t get_offset_of_GostR3410x2001CryptoProA_17() { return static_cast(offsetof(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields, ___GostR3410x2001CryptoProA_17)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_GostR3410x2001CryptoProA_17() const { return ___GostR3410x2001CryptoProA_17; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_GostR3410x2001CryptoProA_17() { return &___GostR3410x2001CryptoProA_17; } inline void set_GostR3410x2001CryptoProA_17(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___GostR3410x2001CryptoProA_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___GostR3410x2001CryptoProA_17), (void*)value); } inline static int32_t get_offset_of_GostR3410x2001CryptoProB_18() { return static_cast(offsetof(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields, ___GostR3410x2001CryptoProB_18)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_GostR3410x2001CryptoProB_18() const { return ___GostR3410x2001CryptoProB_18; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_GostR3410x2001CryptoProB_18() { return &___GostR3410x2001CryptoProB_18; } inline void set_GostR3410x2001CryptoProB_18(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___GostR3410x2001CryptoProB_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___GostR3410x2001CryptoProB_18), (void*)value); } inline static int32_t get_offset_of_GostR3410x2001CryptoProC_19() { return static_cast(offsetof(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields, ___GostR3410x2001CryptoProC_19)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_GostR3410x2001CryptoProC_19() const { return ___GostR3410x2001CryptoProC_19; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_GostR3410x2001CryptoProC_19() { return &___GostR3410x2001CryptoProC_19; } inline void set_GostR3410x2001CryptoProC_19(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___GostR3410x2001CryptoProC_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___GostR3410x2001CryptoProC_19), (void*)value); } inline static int32_t get_offset_of_GostR3410x2001CryptoProXchA_20() { return static_cast(offsetof(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields, ___GostR3410x2001CryptoProXchA_20)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_GostR3410x2001CryptoProXchA_20() const { return ___GostR3410x2001CryptoProXchA_20; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_GostR3410x2001CryptoProXchA_20() { return &___GostR3410x2001CryptoProXchA_20; } inline void set_GostR3410x2001CryptoProXchA_20(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___GostR3410x2001CryptoProXchA_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___GostR3410x2001CryptoProXchA_20), (void*)value); } inline static int32_t get_offset_of_GostR3410x2001CryptoProXchB_21() { return static_cast(offsetof(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields, ___GostR3410x2001CryptoProXchB_21)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_GostR3410x2001CryptoProXchB_21() const { return ___GostR3410x2001CryptoProXchB_21; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_GostR3410x2001CryptoProXchB_21() { return &___GostR3410x2001CryptoProXchB_21; } inline void set_GostR3410x2001CryptoProXchB_21(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___GostR3410x2001CryptoProXchB_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___GostR3410x2001CryptoProXchB_21), (void*)value); } inline static int32_t get_offset_of_GostElSgDH3410Default_22() { return static_cast(offsetof(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields, ___GostElSgDH3410Default_22)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_GostElSgDH3410Default_22() const { return ___GostElSgDH3410Default_22; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_GostElSgDH3410Default_22() { return &___GostElSgDH3410Default_22; } inline void set_GostElSgDH3410Default_22(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___GostElSgDH3410Default_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___GostElSgDH3410Default_22), (void*)value); } inline static int32_t get_offset_of_GostElSgDH3410x1_23() { return static_cast(offsetof(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields, ___GostElSgDH3410x1_23)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_GostElSgDH3410x1_23() const { return ___GostElSgDH3410x1_23; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_GostElSgDH3410x1_23() { return &___GostElSgDH3410x1_23; } inline void set_GostElSgDH3410x1_23(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___GostElSgDH3410x1_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___GostElSgDH3410x1_23), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate struct Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 : public RuntimeObject { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::strm ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * ___strm_56; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::status int32_t ___status_57; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::pending_buf ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___pending_buf_58; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::pending_buf_size int32_t ___pending_buf_size_59; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::pending_out int32_t ___pending_out_60; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::pending int32_t ___pending_61; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::noheader int32_t ___noheader_62; // System.Byte BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::data_type uint8_t ___data_type_63; // System.Byte BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::method uint8_t ___method_64; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::last_flush int32_t ___last_flush_65; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::w_size int32_t ___w_size_66; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::w_bits int32_t ___w_bits_67; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::w_mask int32_t ___w_mask_68; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::window ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___window_69; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::window_size int32_t ___window_size_70; // System.Int16[] BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::prev Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* ___prev_71; // System.Int16[] BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::head Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* ___head_72; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::ins_h int32_t ___ins_h_73; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::hash_size int32_t ___hash_size_74; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::hash_bits int32_t ___hash_bits_75; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::hash_mask int32_t ___hash_mask_76; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::hash_shift int32_t ___hash_shift_77; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::block_start int32_t ___block_start_78; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::match_length int32_t ___match_length_79; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::prev_match int32_t ___prev_match_80; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::match_available int32_t ___match_available_81; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::strstart int32_t ___strstart_82; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::match_start int32_t ___match_start_83; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::lookahead int32_t ___lookahead_84; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::prev_length int32_t ___prev_length_85; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::max_chain_length int32_t ___max_chain_length_86; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::max_lazy_match int32_t ___max_lazy_match_87; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::level int32_t ___level_88; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::strategy int32_t ___strategy_89; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::good_match int32_t ___good_match_90; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::nice_match int32_t ___nice_match_91; // System.Int16[] BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::dyn_ltree Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* ___dyn_ltree_92; // System.Int16[] BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::dyn_dtree Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* ___dyn_dtree_93; // System.Int16[] BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::bl_tree Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* ___bl_tree_94; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZTree BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::l_desc ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC * ___l_desc_95; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZTree BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::d_desc ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC * ___d_desc_96; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZTree BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::bl_desc ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC * ___bl_desc_97; // System.Int16[] BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::bl_count Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* ___bl_count_98; // System.Int32[] BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::heap Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___heap_99; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::heap_len int32_t ___heap_len_100; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::heap_max int32_t ___heap_max_101; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::depth ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___depth_102; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::l_buf int32_t ___l_buf_103; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::lit_bufsize int32_t ___lit_bufsize_104; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::last_lit int32_t ___last_lit_105; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::d_buf int32_t ___d_buf_106; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::opt_len int32_t ___opt_len_107; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::static_len int32_t ___static_len_108; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::matches int32_t ___matches_109; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::last_eob_len int32_t ___last_eob_len_110; // System.UInt32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::bi_buf uint32_t ___bi_buf_111; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::bi_valid int32_t ___bi_valid_112; public: inline static int32_t get_offset_of_strm_56() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___strm_56)); } inline ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * get_strm_56() const { return ___strm_56; } inline ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C ** get_address_of_strm_56() { return &___strm_56; } inline void set_strm_56(ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * value) { ___strm_56 = value; Il2CppCodeGenWriteBarrier((void**)(&___strm_56), (void*)value); } inline static int32_t get_offset_of_status_57() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___status_57)); } inline int32_t get_status_57() const { return ___status_57; } inline int32_t* get_address_of_status_57() { return &___status_57; } inline void set_status_57(int32_t value) { ___status_57 = value; } inline static int32_t get_offset_of_pending_buf_58() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___pending_buf_58)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_pending_buf_58() const { return ___pending_buf_58; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_pending_buf_58() { return &___pending_buf_58; } inline void set_pending_buf_58(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___pending_buf_58 = value; Il2CppCodeGenWriteBarrier((void**)(&___pending_buf_58), (void*)value); } inline static int32_t get_offset_of_pending_buf_size_59() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___pending_buf_size_59)); } inline int32_t get_pending_buf_size_59() const { return ___pending_buf_size_59; } inline int32_t* get_address_of_pending_buf_size_59() { return &___pending_buf_size_59; } inline void set_pending_buf_size_59(int32_t value) { ___pending_buf_size_59 = value; } inline static int32_t get_offset_of_pending_out_60() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___pending_out_60)); } inline int32_t get_pending_out_60() const { return ___pending_out_60; } inline int32_t* get_address_of_pending_out_60() { return &___pending_out_60; } inline void set_pending_out_60(int32_t value) { ___pending_out_60 = value; } inline static int32_t get_offset_of_pending_61() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___pending_61)); } inline int32_t get_pending_61() const { return ___pending_61; } inline int32_t* get_address_of_pending_61() { return &___pending_61; } inline void set_pending_61(int32_t value) { ___pending_61 = value; } inline static int32_t get_offset_of_noheader_62() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___noheader_62)); } inline int32_t get_noheader_62() const { return ___noheader_62; } inline int32_t* get_address_of_noheader_62() { return &___noheader_62; } inline void set_noheader_62(int32_t value) { ___noheader_62 = value; } inline static int32_t get_offset_of_data_type_63() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___data_type_63)); } inline uint8_t get_data_type_63() const { return ___data_type_63; } inline uint8_t* get_address_of_data_type_63() { return &___data_type_63; } inline void set_data_type_63(uint8_t value) { ___data_type_63 = value; } inline static int32_t get_offset_of_method_64() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___method_64)); } inline uint8_t get_method_64() const { return ___method_64; } inline uint8_t* get_address_of_method_64() { return &___method_64; } inline void set_method_64(uint8_t value) { ___method_64 = value; } inline static int32_t get_offset_of_last_flush_65() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___last_flush_65)); } inline int32_t get_last_flush_65() const { return ___last_flush_65; } inline int32_t* get_address_of_last_flush_65() { return &___last_flush_65; } inline void set_last_flush_65(int32_t value) { ___last_flush_65 = value; } inline static int32_t get_offset_of_w_size_66() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___w_size_66)); } inline int32_t get_w_size_66() const { return ___w_size_66; } inline int32_t* get_address_of_w_size_66() { return &___w_size_66; } inline void set_w_size_66(int32_t value) { ___w_size_66 = value; } inline static int32_t get_offset_of_w_bits_67() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___w_bits_67)); } inline int32_t get_w_bits_67() const { return ___w_bits_67; } inline int32_t* get_address_of_w_bits_67() { return &___w_bits_67; } inline void set_w_bits_67(int32_t value) { ___w_bits_67 = value; } inline static int32_t get_offset_of_w_mask_68() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___w_mask_68)); } inline int32_t get_w_mask_68() const { return ___w_mask_68; } inline int32_t* get_address_of_w_mask_68() { return &___w_mask_68; } inline void set_w_mask_68(int32_t value) { ___w_mask_68 = value; } inline static int32_t get_offset_of_window_69() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___window_69)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_window_69() const { return ___window_69; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_window_69() { return &___window_69; } inline void set_window_69(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___window_69 = value; Il2CppCodeGenWriteBarrier((void**)(&___window_69), (void*)value); } inline static int32_t get_offset_of_window_size_70() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___window_size_70)); } inline int32_t get_window_size_70() const { return ___window_size_70; } inline int32_t* get_address_of_window_size_70() { return &___window_size_70; } inline void set_window_size_70(int32_t value) { ___window_size_70 = value; } inline static int32_t get_offset_of_prev_71() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___prev_71)); } inline Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* get_prev_71() const { return ___prev_71; } inline Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD** get_address_of_prev_71() { return &___prev_71; } inline void set_prev_71(Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* value) { ___prev_71 = value; Il2CppCodeGenWriteBarrier((void**)(&___prev_71), (void*)value); } inline static int32_t get_offset_of_head_72() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___head_72)); } inline Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* get_head_72() const { return ___head_72; } inline Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD** get_address_of_head_72() { return &___head_72; } inline void set_head_72(Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* value) { ___head_72 = value; Il2CppCodeGenWriteBarrier((void**)(&___head_72), (void*)value); } inline static int32_t get_offset_of_ins_h_73() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___ins_h_73)); } inline int32_t get_ins_h_73() const { return ___ins_h_73; } inline int32_t* get_address_of_ins_h_73() { return &___ins_h_73; } inline void set_ins_h_73(int32_t value) { ___ins_h_73 = value; } inline static int32_t get_offset_of_hash_size_74() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___hash_size_74)); } inline int32_t get_hash_size_74() const { return ___hash_size_74; } inline int32_t* get_address_of_hash_size_74() { return &___hash_size_74; } inline void set_hash_size_74(int32_t value) { ___hash_size_74 = value; } inline static int32_t get_offset_of_hash_bits_75() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___hash_bits_75)); } inline int32_t get_hash_bits_75() const { return ___hash_bits_75; } inline int32_t* get_address_of_hash_bits_75() { return &___hash_bits_75; } inline void set_hash_bits_75(int32_t value) { ___hash_bits_75 = value; } inline static int32_t get_offset_of_hash_mask_76() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___hash_mask_76)); } inline int32_t get_hash_mask_76() const { return ___hash_mask_76; } inline int32_t* get_address_of_hash_mask_76() { return &___hash_mask_76; } inline void set_hash_mask_76(int32_t value) { ___hash_mask_76 = value; } inline static int32_t get_offset_of_hash_shift_77() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___hash_shift_77)); } inline int32_t get_hash_shift_77() const { return ___hash_shift_77; } inline int32_t* get_address_of_hash_shift_77() { return &___hash_shift_77; } inline void set_hash_shift_77(int32_t value) { ___hash_shift_77 = value; } inline static int32_t get_offset_of_block_start_78() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___block_start_78)); } inline int32_t get_block_start_78() const { return ___block_start_78; } inline int32_t* get_address_of_block_start_78() { return &___block_start_78; } inline void set_block_start_78(int32_t value) { ___block_start_78 = value; } inline static int32_t get_offset_of_match_length_79() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___match_length_79)); } inline int32_t get_match_length_79() const { return ___match_length_79; } inline int32_t* get_address_of_match_length_79() { return &___match_length_79; } inline void set_match_length_79(int32_t value) { ___match_length_79 = value; } inline static int32_t get_offset_of_prev_match_80() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___prev_match_80)); } inline int32_t get_prev_match_80() const { return ___prev_match_80; } inline int32_t* get_address_of_prev_match_80() { return &___prev_match_80; } inline void set_prev_match_80(int32_t value) { ___prev_match_80 = value; } inline static int32_t get_offset_of_match_available_81() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___match_available_81)); } inline int32_t get_match_available_81() const { return ___match_available_81; } inline int32_t* get_address_of_match_available_81() { return &___match_available_81; } inline void set_match_available_81(int32_t value) { ___match_available_81 = value; } inline static int32_t get_offset_of_strstart_82() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___strstart_82)); } inline int32_t get_strstart_82() const { return ___strstart_82; } inline int32_t* get_address_of_strstart_82() { return &___strstart_82; } inline void set_strstart_82(int32_t value) { ___strstart_82 = value; } inline static int32_t get_offset_of_match_start_83() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___match_start_83)); } inline int32_t get_match_start_83() const { return ___match_start_83; } inline int32_t* get_address_of_match_start_83() { return &___match_start_83; } inline void set_match_start_83(int32_t value) { ___match_start_83 = value; } inline static int32_t get_offset_of_lookahead_84() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___lookahead_84)); } inline int32_t get_lookahead_84() const { return ___lookahead_84; } inline int32_t* get_address_of_lookahead_84() { return &___lookahead_84; } inline void set_lookahead_84(int32_t value) { ___lookahead_84 = value; } inline static int32_t get_offset_of_prev_length_85() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___prev_length_85)); } inline int32_t get_prev_length_85() const { return ___prev_length_85; } inline int32_t* get_address_of_prev_length_85() { return &___prev_length_85; } inline void set_prev_length_85(int32_t value) { ___prev_length_85 = value; } inline static int32_t get_offset_of_max_chain_length_86() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___max_chain_length_86)); } inline int32_t get_max_chain_length_86() const { return ___max_chain_length_86; } inline int32_t* get_address_of_max_chain_length_86() { return &___max_chain_length_86; } inline void set_max_chain_length_86(int32_t value) { ___max_chain_length_86 = value; } inline static int32_t get_offset_of_max_lazy_match_87() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___max_lazy_match_87)); } inline int32_t get_max_lazy_match_87() const { return ___max_lazy_match_87; } inline int32_t* get_address_of_max_lazy_match_87() { return &___max_lazy_match_87; } inline void set_max_lazy_match_87(int32_t value) { ___max_lazy_match_87 = value; } inline static int32_t get_offset_of_level_88() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___level_88)); } inline int32_t get_level_88() const { return ___level_88; } inline int32_t* get_address_of_level_88() { return &___level_88; } inline void set_level_88(int32_t value) { ___level_88 = value; } inline static int32_t get_offset_of_strategy_89() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___strategy_89)); } inline int32_t get_strategy_89() const { return ___strategy_89; } inline int32_t* get_address_of_strategy_89() { return &___strategy_89; } inline void set_strategy_89(int32_t value) { ___strategy_89 = value; } inline static int32_t get_offset_of_good_match_90() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___good_match_90)); } inline int32_t get_good_match_90() const { return ___good_match_90; } inline int32_t* get_address_of_good_match_90() { return &___good_match_90; } inline void set_good_match_90(int32_t value) { ___good_match_90 = value; } inline static int32_t get_offset_of_nice_match_91() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___nice_match_91)); } inline int32_t get_nice_match_91() const { return ___nice_match_91; } inline int32_t* get_address_of_nice_match_91() { return &___nice_match_91; } inline void set_nice_match_91(int32_t value) { ___nice_match_91 = value; } inline static int32_t get_offset_of_dyn_ltree_92() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___dyn_ltree_92)); } inline Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* get_dyn_ltree_92() const { return ___dyn_ltree_92; } inline Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD** get_address_of_dyn_ltree_92() { return &___dyn_ltree_92; } inline void set_dyn_ltree_92(Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* value) { ___dyn_ltree_92 = value; Il2CppCodeGenWriteBarrier((void**)(&___dyn_ltree_92), (void*)value); } inline static int32_t get_offset_of_dyn_dtree_93() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___dyn_dtree_93)); } inline Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* get_dyn_dtree_93() const { return ___dyn_dtree_93; } inline Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD** get_address_of_dyn_dtree_93() { return &___dyn_dtree_93; } inline void set_dyn_dtree_93(Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* value) { ___dyn_dtree_93 = value; Il2CppCodeGenWriteBarrier((void**)(&___dyn_dtree_93), (void*)value); } inline static int32_t get_offset_of_bl_tree_94() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___bl_tree_94)); } inline Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* get_bl_tree_94() const { return ___bl_tree_94; } inline Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD** get_address_of_bl_tree_94() { return &___bl_tree_94; } inline void set_bl_tree_94(Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* value) { ___bl_tree_94 = value; Il2CppCodeGenWriteBarrier((void**)(&___bl_tree_94), (void*)value); } inline static int32_t get_offset_of_l_desc_95() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___l_desc_95)); } inline ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC * get_l_desc_95() const { return ___l_desc_95; } inline ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC ** get_address_of_l_desc_95() { return &___l_desc_95; } inline void set_l_desc_95(ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC * value) { ___l_desc_95 = value; Il2CppCodeGenWriteBarrier((void**)(&___l_desc_95), (void*)value); } inline static int32_t get_offset_of_d_desc_96() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___d_desc_96)); } inline ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC * get_d_desc_96() const { return ___d_desc_96; } inline ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC ** get_address_of_d_desc_96() { return &___d_desc_96; } inline void set_d_desc_96(ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC * value) { ___d_desc_96 = value; Il2CppCodeGenWriteBarrier((void**)(&___d_desc_96), (void*)value); } inline static int32_t get_offset_of_bl_desc_97() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___bl_desc_97)); } inline ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC * get_bl_desc_97() const { return ___bl_desc_97; } inline ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC ** get_address_of_bl_desc_97() { return &___bl_desc_97; } inline void set_bl_desc_97(ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC * value) { ___bl_desc_97 = value; Il2CppCodeGenWriteBarrier((void**)(&___bl_desc_97), (void*)value); } inline static int32_t get_offset_of_bl_count_98() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___bl_count_98)); } inline Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* get_bl_count_98() const { return ___bl_count_98; } inline Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD** get_address_of_bl_count_98() { return &___bl_count_98; } inline void set_bl_count_98(Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* value) { ___bl_count_98 = value; Il2CppCodeGenWriteBarrier((void**)(&___bl_count_98), (void*)value); } inline static int32_t get_offset_of_heap_99() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___heap_99)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_heap_99() const { return ___heap_99; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_heap_99() { return &___heap_99; } inline void set_heap_99(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___heap_99 = value; Il2CppCodeGenWriteBarrier((void**)(&___heap_99), (void*)value); } inline static int32_t get_offset_of_heap_len_100() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___heap_len_100)); } inline int32_t get_heap_len_100() const { return ___heap_len_100; } inline int32_t* get_address_of_heap_len_100() { return &___heap_len_100; } inline void set_heap_len_100(int32_t value) { ___heap_len_100 = value; } inline static int32_t get_offset_of_heap_max_101() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___heap_max_101)); } inline int32_t get_heap_max_101() const { return ___heap_max_101; } inline int32_t* get_address_of_heap_max_101() { return &___heap_max_101; } inline void set_heap_max_101(int32_t value) { ___heap_max_101 = value; } inline static int32_t get_offset_of_depth_102() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___depth_102)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_depth_102() const { return ___depth_102; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_depth_102() { return &___depth_102; } inline void set_depth_102(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___depth_102 = value; Il2CppCodeGenWriteBarrier((void**)(&___depth_102), (void*)value); } inline static int32_t get_offset_of_l_buf_103() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___l_buf_103)); } inline int32_t get_l_buf_103() const { return ___l_buf_103; } inline int32_t* get_address_of_l_buf_103() { return &___l_buf_103; } inline void set_l_buf_103(int32_t value) { ___l_buf_103 = value; } inline static int32_t get_offset_of_lit_bufsize_104() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___lit_bufsize_104)); } inline int32_t get_lit_bufsize_104() const { return ___lit_bufsize_104; } inline int32_t* get_address_of_lit_bufsize_104() { return &___lit_bufsize_104; } inline void set_lit_bufsize_104(int32_t value) { ___lit_bufsize_104 = value; } inline static int32_t get_offset_of_last_lit_105() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___last_lit_105)); } inline int32_t get_last_lit_105() const { return ___last_lit_105; } inline int32_t* get_address_of_last_lit_105() { return &___last_lit_105; } inline void set_last_lit_105(int32_t value) { ___last_lit_105 = value; } inline static int32_t get_offset_of_d_buf_106() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___d_buf_106)); } inline int32_t get_d_buf_106() const { return ___d_buf_106; } inline int32_t* get_address_of_d_buf_106() { return &___d_buf_106; } inline void set_d_buf_106(int32_t value) { ___d_buf_106 = value; } inline static int32_t get_offset_of_opt_len_107() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___opt_len_107)); } inline int32_t get_opt_len_107() const { return ___opt_len_107; } inline int32_t* get_address_of_opt_len_107() { return &___opt_len_107; } inline void set_opt_len_107(int32_t value) { ___opt_len_107 = value; } inline static int32_t get_offset_of_static_len_108() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___static_len_108)); } inline int32_t get_static_len_108() const { return ___static_len_108; } inline int32_t* get_address_of_static_len_108() { return &___static_len_108; } inline void set_static_len_108(int32_t value) { ___static_len_108 = value; } inline static int32_t get_offset_of_matches_109() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___matches_109)); } inline int32_t get_matches_109() const { return ___matches_109; } inline int32_t* get_address_of_matches_109() { return &___matches_109; } inline void set_matches_109(int32_t value) { ___matches_109 = value; } inline static int32_t get_offset_of_last_eob_len_110() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___last_eob_len_110)); } inline int32_t get_last_eob_len_110() const { return ___last_eob_len_110; } inline int32_t* get_address_of_last_eob_len_110() { return &___last_eob_len_110; } inline void set_last_eob_len_110(int32_t value) { ___last_eob_len_110 = value; } inline static int32_t get_offset_of_bi_buf_111() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___bi_buf_111)); } inline uint32_t get_bi_buf_111() const { return ___bi_buf_111; } inline uint32_t* get_address_of_bi_buf_111() { return &___bi_buf_111; } inline void set_bi_buf_111(uint32_t value) { ___bi_buf_111 = value; } inline static int32_t get_offset_of_bi_valid_112() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169, ___bi_valid_112)); } inline int32_t get_bi_valid_112() const { return ___bi_valid_112; } inline int32_t* get_address_of_bi_valid_112() { return &___bi_valid_112; } inline void set_bi_valid_112(int32_t value) { ___bi_valid_112 = value; } }; struct Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate/Config[] BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::config_table ConfigU5BU5D_t881C9BAB1EC8EC965108D90A824EABB5DD576A2C* ___config_table_7; // System.String[] BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::z_errmsg StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___z_errmsg_8; public: inline static int32_t get_offset_of_config_table_7() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169_StaticFields, ___config_table_7)); } inline ConfigU5BU5D_t881C9BAB1EC8EC965108D90A824EABB5DD576A2C* get_config_table_7() const { return ___config_table_7; } inline ConfigU5BU5D_t881C9BAB1EC8EC965108D90A824EABB5DD576A2C** get_address_of_config_table_7() { return &___config_table_7; } inline void set_config_table_7(ConfigU5BU5D_t881C9BAB1EC8EC965108D90A824EABB5DD576A2C* value) { ___config_table_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___config_table_7), (void*)value); } inline static int32_t get_offset_of_z_errmsg_8() { return static_cast(offsetof(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169_StaticFields, ___z_errmsg_8)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_z_errmsg_8() const { return ___z_errmsg_8; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_z_errmsg_8() { return &___z_errmsg_8; } inline void set_z_errmsg_8(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___z_errmsg_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___z_errmsg_8), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECCurve struct ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 : public RuntimeObject { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.Field.IFiniteField BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECCurve::m_field RuntimeObject* ___m_field_8; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECFieldElement BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECCurve::m_a ECFieldElement_t5B3E4EB355D81F73F6FAC09A042BE908A9631117 * ___m_a_9; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECFieldElement BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECCurve::m_b ECFieldElement_t5B3E4EB355D81F73F6FAC09A042BE908A9631117 * ___m_b_10; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECCurve::m_order BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___m_order_11; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECCurve::m_cofactor BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___m_cofactor_12; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECCurve::m_coord int32_t ___m_coord_13; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.Endo.ECEndomorphism BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECCurve::m_endomorphism RuntimeObject* ___m_endomorphism_14; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.Multiplier.ECMultiplier BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECCurve::m_multiplier RuntimeObject* ___m_multiplier_15; public: inline static int32_t get_offset_of_m_field_8() { return static_cast(offsetof(ECCurve_t850A42EEB1867F313B111B5A75430D443165B926, ___m_field_8)); } inline RuntimeObject* get_m_field_8() const { return ___m_field_8; } inline RuntimeObject** get_address_of_m_field_8() { return &___m_field_8; } inline void set_m_field_8(RuntimeObject* value) { ___m_field_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_field_8), (void*)value); } inline static int32_t get_offset_of_m_a_9() { return static_cast(offsetof(ECCurve_t850A42EEB1867F313B111B5A75430D443165B926, ___m_a_9)); } inline ECFieldElement_t5B3E4EB355D81F73F6FAC09A042BE908A9631117 * get_m_a_9() const { return ___m_a_9; } inline ECFieldElement_t5B3E4EB355D81F73F6FAC09A042BE908A9631117 ** get_address_of_m_a_9() { return &___m_a_9; } inline void set_m_a_9(ECFieldElement_t5B3E4EB355D81F73F6FAC09A042BE908A9631117 * value) { ___m_a_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_a_9), (void*)value); } inline static int32_t get_offset_of_m_b_10() { return static_cast(offsetof(ECCurve_t850A42EEB1867F313B111B5A75430D443165B926, ___m_b_10)); } inline ECFieldElement_t5B3E4EB355D81F73F6FAC09A042BE908A9631117 * get_m_b_10() const { return ___m_b_10; } inline ECFieldElement_t5B3E4EB355D81F73F6FAC09A042BE908A9631117 ** get_address_of_m_b_10() { return &___m_b_10; } inline void set_m_b_10(ECFieldElement_t5B3E4EB355D81F73F6FAC09A042BE908A9631117 * value) { ___m_b_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_b_10), (void*)value); } inline static int32_t get_offset_of_m_order_11() { return static_cast(offsetof(ECCurve_t850A42EEB1867F313B111B5A75430D443165B926, ___m_order_11)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_m_order_11() const { return ___m_order_11; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_m_order_11() { return &___m_order_11; } inline void set_m_order_11(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___m_order_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_order_11), (void*)value); } inline static int32_t get_offset_of_m_cofactor_12() { return static_cast(offsetof(ECCurve_t850A42EEB1867F313B111B5A75430D443165B926, ___m_cofactor_12)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_m_cofactor_12() const { return ___m_cofactor_12; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_m_cofactor_12() { return &___m_cofactor_12; } inline void set_m_cofactor_12(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___m_cofactor_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_cofactor_12), (void*)value); } inline static int32_t get_offset_of_m_coord_13() { return static_cast(offsetof(ECCurve_t850A42EEB1867F313B111B5A75430D443165B926, ___m_coord_13)); } inline int32_t get_m_coord_13() const { return ___m_coord_13; } inline int32_t* get_address_of_m_coord_13() { return &___m_coord_13; } inline void set_m_coord_13(int32_t value) { ___m_coord_13 = value; } inline static int32_t get_offset_of_m_endomorphism_14() { return static_cast(offsetof(ECCurve_t850A42EEB1867F313B111B5A75430D443165B926, ___m_endomorphism_14)); } inline RuntimeObject* get_m_endomorphism_14() const { return ___m_endomorphism_14; } inline RuntimeObject** get_address_of_m_endomorphism_14() { return &___m_endomorphism_14; } inline void set_m_endomorphism_14(RuntimeObject* value) { ___m_endomorphism_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_endomorphism_14), (void*)value); } inline static int32_t get_offset_of_m_multiplier_15() { return static_cast(offsetof(ECCurve_t850A42EEB1867F313B111B5A75430D443165B926, ___m_multiplier_15)); } inline RuntimeObject* get_m_multiplier_15() const { return ___m_multiplier_15; } inline RuntimeObject** get_address_of_m_multiplier_15() { return &___m_multiplier_15; } inline void set_m_multiplier_15(RuntimeObject* value) { ___m_multiplier_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_multiplier_15), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECFieldElement struct ECFieldElement_t5B3E4EB355D81F73F6FAC09A042BE908A9631117 : public RuntimeObject { public: public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint struct ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA : public RuntimeObject { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECCurve BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint::m_curve ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * ___m_curve_1; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECFieldElement BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint::m_x ECFieldElement_t5B3E4EB355D81F73F6FAC09A042BE908A9631117 * ___m_x_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECFieldElement BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint::m_y ECFieldElement_t5B3E4EB355D81F73F6FAC09A042BE908A9631117 * ___m_y_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECFieldElement[] BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint::m_zs ECFieldElementU5BU5D_tED7137DB1C0FB7E75B3A30A606822D4ED381D94E* ___m_zs_4; // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint::m_withCompression bool ___m_withCompression_5; // System.Collections.IDictionary BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint::m_preCompTable RuntimeObject* ___m_preCompTable_6; public: inline static int32_t get_offset_of_m_curve_1() { return static_cast(offsetof(ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA, ___m_curve_1)); } inline ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * get_m_curve_1() const { return ___m_curve_1; } inline ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 ** get_address_of_m_curve_1() { return &___m_curve_1; } inline void set_m_curve_1(ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * value) { ___m_curve_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_curve_1), (void*)value); } inline static int32_t get_offset_of_m_x_2() { return static_cast(offsetof(ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA, ___m_x_2)); } inline ECFieldElement_t5B3E4EB355D81F73F6FAC09A042BE908A9631117 * get_m_x_2() const { return ___m_x_2; } inline ECFieldElement_t5B3E4EB355D81F73F6FAC09A042BE908A9631117 ** get_address_of_m_x_2() { return &___m_x_2; } inline void set_m_x_2(ECFieldElement_t5B3E4EB355D81F73F6FAC09A042BE908A9631117 * value) { ___m_x_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_x_2), (void*)value); } inline static int32_t get_offset_of_m_y_3() { return static_cast(offsetof(ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA, ___m_y_3)); } inline ECFieldElement_t5B3E4EB355D81F73F6FAC09A042BE908A9631117 * get_m_y_3() const { return ___m_y_3; } inline ECFieldElement_t5B3E4EB355D81F73F6FAC09A042BE908A9631117 ** get_address_of_m_y_3() { return &___m_y_3; } inline void set_m_y_3(ECFieldElement_t5B3E4EB355D81F73F6FAC09A042BE908A9631117 * value) { ___m_y_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_y_3), (void*)value); } inline static int32_t get_offset_of_m_zs_4() { return static_cast(offsetof(ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA, ___m_zs_4)); } inline ECFieldElementU5BU5D_tED7137DB1C0FB7E75B3A30A606822D4ED381D94E* get_m_zs_4() const { return ___m_zs_4; } inline ECFieldElementU5BU5D_tED7137DB1C0FB7E75B3A30A606822D4ED381D94E** get_address_of_m_zs_4() { return &___m_zs_4; } inline void set_m_zs_4(ECFieldElementU5BU5D_tED7137DB1C0FB7E75B3A30A606822D4ED381D94E* value) { ___m_zs_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_zs_4), (void*)value); } inline static int32_t get_offset_of_m_withCompression_5() { return static_cast(offsetof(ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA, ___m_withCompression_5)); } inline bool get_m_withCompression_5() const { return ___m_withCompression_5; } inline bool* get_address_of_m_withCompression_5() { return &___m_withCompression_5; } inline void set_m_withCompression_5(bool value) { ___m_withCompression_5 = value; } inline static int32_t get_offset_of_m_preCompTable_6() { return static_cast(offsetof(ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA, ___m_preCompTable_6)); } inline RuntimeObject* get_m_preCompTable_6() const { return ___m_preCompTable_6; } inline RuntimeObject** get_address_of_m_preCompTable_6() { return &___m_preCompTable_6; } inline void set_m_preCompTable_6(RuntimeObject* value) { ___m_preCompTable_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_preCompTable_6), (void*)value); } }; struct ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECFieldElement[] BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint::EMPTY_ZS ECFieldElementU5BU5D_tED7137DB1C0FB7E75B3A30A606822D4ED381D94E* ___EMPTY_ZS_0; public: inline static int32_t get_offset_of_EMPTY_ZS_0() { return static_cast(offsetof(ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA_StaticFields, ___EMPTY_ZS_0)); } inline ECFieldElementU5BU5D_tED7137DB1C0FB7E75B3A30A606822D4ED381D94E* get_EMPTY_ZS_0() const { return ___EMPTY_ZS_0; } inline ECFieldElementU5BU5D_tED7137DB1C0FB7E75B3A30A606822D4ED381D94E** get_address_of_EMPTY_ZS_0() { return &___EMPTY_ZS_0; } inline void set_EMPTY_ZS_0(ECFieldElementU5BU5D_tED7137DB1C0FB7E75B3A30A606822D4ED381D94E* value) { ___EMPTY_ZS_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___EMPTY_ZS_0), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections.EnumerableProxy struct EnumerableProxy_t026114E7F2A8CD4B2FA989282FE080341A4614E2 : public RuntimeObject { public: // System.Collections.IEnumerable BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections.EnumerableProxy::inner RuntimeObject* ___inner_0; public: inline static int32_t get_offset_of_inner_0() { return static_cast(offsetof(EnumerableProxy_t026114E7F2A8CD4B2FA989282FE080341A4614E2, ___inner_0)); } inline RuntimeObject* get_inner_0() const { return ___inner_0; } inline RuntimeObject** get_address_of_inner_0() { return &___inner_0; } inline void set_inner_0(RuntimeObject* value) { ___inner_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___inner_0), (void*)value); } }; // GameMode struct GameMode_t3635427B8DF6A50F9EAE8955955887AD0D098C82 : public RuntimeObject { public: // GameMgr GameMode::gameMgr GameMgr_tE3D60AE9C96D966787437C5F15D3477A9E948950 * ___gameMgr_0; // System.Collections.Generic.HashSet`1 GameMode::timeCountingPauseLockers HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B * ___timeCountingPauseLockers_1; public: inline static int32_t get_offset_of_gameMgr_0() { return static_cast(offsetof(GameMode_t3635427B8DF6A50F9EAE8955955887AD0D098C82, ___gameMgr_0)); } inline GameMgr_tE3D60AE9C96D966787437C5F15D3477A9E948950 * get_gameMgr_0() const { return ___gameMgr_0; } inline GameMgr_tE3D60AE9C96D966787437C5F15D3477A9E948950 ** get_address_of_gameMgr_0() { return &___gameMgr_0; } inline void set_gameMgr_0(GameMgr_tE3D60AE9C96D966787437C5F15D3477A9E948950 * value) { ___gameMgr_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___gameMgr_0), (void*)value); } inline static int32_t get_offset_of_timeCountingPauseLockers_1() { return static_cast(offsetof(GameMode_t3635427B8DF6A50F9EAE8955955887AD0D098C82, ___timeCountingPauseLockers_1)); } inline HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B * get_timeCountingPauseLockers_1() const { return ___timeCountingPauseLockers_1; } inline HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B ** get_address_of_timeCountingPauseLockers_1() { return &___timeCountingPauseLockers_1; } inline void set_timeCountingPauseLockers_1(HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B * value) { ___timeCountingPauseLockers_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___timeCountingPauseLockers_1), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections.HashSet struct HashSet_t1E14FE66FBB0732BFDA0861868A51969563DF754 : public RuntimeObject { public: // System.Collections.IDictionary BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections.HashSet::impl RuntimeObject* ___impl_0; public: inline static int32_t get_offset_of_impl_0() { return static_cast(offsetof(HashSet_t1E14FE66FBB0732BFDA0861868A51969563DF754, ___impl_0)); } inline RuntimeObject* get_impl_0() const { return ___impl_0; } inline RuntimeObject** get_address_of_impl_0() { return &___impl_0; } inline void set_impl_0(RuntimeObject* value) { ___impl_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___impl_0), (void*)value); } }; // HunterGamePlayerScoreCounter struct HunterGamePlayerScoreCounter_t4CFF1912DB681348618492344B5C63984D1CCDD7 : public RuntimeObject { public: // System.Int32[] HunterGamePlayerScoreCounter::hitScores Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___hitScores_0; // ChallengeGameModeLocalPK HunterGamePlayerScoreCounter::gameModeLocalPK RuntimeObject* ___gameModeLocalPK_1; public: inline static int32_t get_offset_of_hitScores_0() { return static_cast(offsetof(HunterGamePlayerScoreCounter_t4CFF1912DB681348618492344B5C63984D1CCDD7, ___hitScores_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_hitScores_0() const { return ___hitScores_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_hitScores_0() { return &___hitScores_0; } inline void set_hitScores_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___hitScores_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___hitScores_0), (void*)value); } inline static int32_t get_offset_of_gameModeLocalPK_1() { return static_cast(offsetof(HunterGamePlayerScoreCounter_t4CFF1912DB681348618492344B5C63984D1CCDD7, ___gameModeLocalPK_1)); } inline RuntimeObject* get_gameModeLocalPK_1() const { return ___gameModeLocalPK_1; } inline RuntimeObject** get_address_of_gameModeLocalPK_1() { return &___gameModeLocalPK_1; } inline void set_gameModeLocalPK_1(RuntimeObject* value) { ___gameModeLocalPK_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___gameModeLocalPK_1), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Inflate struct Inflate_tA57633237054BCAD6EDC8DBC06F34D50C1680638 : public RuntimeObject { public: // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Inflate::mode int32_t ___mode_31; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Inflate::method int32_t ___method_32; // System.Int64[] BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Inflate::was Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6* ___was_33; // System.Int64 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Inflate::need int64_t ___need_34; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Inflate::marker int32_t ___marker_35; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Inflate::nowrap int32_t ___nowrap_36; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Inflate::wbits int32_t ___wbits_37; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.InfBlocks BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Inflate::blocks InfBlocks_tC7114E073BB5526B2EA7F6D8C63E83493D26EB72 * ___blocks_38; public: inline static int32_t get_offset_of_mode_31() { return static_cast(offsetof(Inflate_tA57633237054BCAD6EDC8DBC06F34D50C1680638, ___mode_31)); } inline int32_t get_mode_31() const { return ___mode_31; } inline int32_t* get_address_of_mode_31() { return &___mode_31; } inline void set_mode_31(int32_t value) { ___mode_31 = value; } inline static int32_t get_offset_of_method_32() { return static_cast(offsetof(Inflate_tA57633237054BCAD6EDC8DBC06F34D50C1680638, ___method_32)); } inline int32_t get_method_32() const { return ___method_32; } inline int32_t* get_address_of_method_32() { return &___method_32; } inline void set_method_32(int32_t value) { ___method_32 = value; } inline static int32_t get_offset_of_was_33() { return static_cast(offsetof(Inflate_tA57633237054BCAD6EDC8DBC06F34D50C1680638, ___was_33)); } inline Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6* get_was_33() const { return ___was_33; } inline Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6** get_address_of_was_33() { return &___was_33; } inline void set_was_33(Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6* value) { ___was_33 = value; Il2CppCodeGenWriteBarrier((void**)(&___was_33), (void*)value); } inline static int32_t get_offset_of_need_34() { return static_cast(offsetof(Inflate_tA57633237054BCAD6EDC8DBC06F34D50C1680638, ___need_34)); } inline int64_t get_need_34() const { return ___need_34; } inline int64_t* get_address_of_need_34() { return &___need_34; } inline void set_need_34(int64_t value) { ___need_34 = value; } inline static int32_t get_offset_of_marker_35() { return static_cast(offsetof(Inflate_tA57633237054BCAD6EDC8DBC06F34D50C1680638, ___marker_35)); } inline int32_t get_marker_35() const { return ___marker_35; } inline int32_t* get_address_of_marker_35() { return &___marker_35; } inline void set_marker_35(int32_t value) { ___marker_35 = value; } inline static int32_t get_offset_of_nowrap_36() { return static_cast(offsetof(Inflate_tA57633237054BCAD6EDC8DBC06F34D50C1680638, ___nowrap_36)); } inline int32_t get_nowrap_36() const { return ___nowrap_36; } inline int32_t* get_address_of_nowrap_36() { return &___nowrap_36; } inline void set_nowrap_36(int32_t value) { ___nowrap_36 = value; } inline static int32_t get_offset_of_wbits_37() { return static_cast(offsetof(Inflate_tA57633237054BCAD6EDC8DBC06F34D50C1680638, ___wbits_37)); } inline int32_t get_wbits_37() const { return ___wbits_37; } inline int32_t* get_address_of_wbits_37() { return &___wbits_37; } inline void set_wbits_37(int32_t value) { ___wbits_37 = value; } inline static int32_t get_offset_of_blocks_38() { return static_cast(offsetof(Inflate_tA57633237054BCAD6EDC8DBC06F34D50C1680638, ___blocks_38)); } inline InfBlocks_tC7114E073BB5526B2EA7F6D8C63E83493D26EB72 * get_blocks_38() const { return ___blocks_38; } inline InfBlocks_tC7114E073BB5526B2EA7F6D8C63E83493D26EB72 ** get_address_of_blocks_38() { return &___blocks_38; } inline void set_blocks_38(InfBlocks_tC7114E073BB5526B2EA7F6D8C63E83493D26EB72 * value) { ___blocks_38 = value; Il2CppCodeGenWriteBarrier((void**)(&___blocks_38), (void*)value); } }; struct Inflate_tA57633237054BCAD6EDC8DBC06F34D50C1680638_StaticFields { public: // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Inflate::mark ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___mark_39; public: inline static int32_t get_offset_of_mark_39() { return static_cast(offsetof(Inflate_tA57633237054BCAD6EDC8DBC06F34D50C1680638_StaticFields, ___mark_39)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_mark_39() const { return ___mark_39; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_mark_39() { return &___mark_39; } inline void set_mark_39(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___mark_39 = value; Il2CppCodeGenWriteBarrier((void**)(&___mark_39), (void*)value); } }; // BestHTTP.Decompression.Zlib.InternalConstants struct InternalConstants_t08B73D46FBB46D9AD4963A68BDEACB31F06B5388 : public RuntimeObject { public: public: }; struct InternalConstants_t08B73D46FBB46D9AD4963A68BDEACB31F06B5388_StaticFields { public: // System.Int32 BestHTTP.Decompression.Zlib.InternalConstants::MAX_BITS int32_t ___MAX_BITS_0; // System.Int32 BestHTTP.Decompression.Zlib.InternalConstants::BL_CODES int32_t ___BL_CODES_1; // System.Int32 BestHTTP.Decompression.Zlib.InternalConstants::D_CODES int32_t ___D_CODES_2; // System.Int32 BestHTTP.Decompression.Zlib.InternalConstants::LITERALS int32_t ___LITERALS_3; // System.Int32 BestHTTP.Decompression.Zlib.InternalConstants::LENGTH_CODES int32_t ___LENGTH_CODES_4; // System.Int32 BestHTTP.Decompression.Zlib.InternalConstants::L_CODES int32_t ___L_CODES_5; // System.Int32 BestHTTP.Decompression.Zlib.InternalConstants::MAX_BL_BITS int32_t ___MAX_BL_BITS_6; // System.Int32 BestHTTP.Decompression.Zlib.InternalConstants::REP_3_6 int32_t ___REP_3_6_7; // System.Int32 BestHTTP.Decompression.Zlib.InternalConstants::REPZ_3_10 int32_t ___REPZ_3_10_8; // System.Int32 BestHTTP.Decompression.Zlib.InternalConstants::REPZ_11_138 int32_t ___REPZ_11_138_9; public: inline static int32_t get_offset_of_MAX_BITS_0() { return static_cast(offsetof(InternalConstants_t08B73D46FBB46D9AD4963A68BDEACB31F06B5388_StaticFields, ___MAX_BITS_0)); } inline int32_t get_MAX_BITS_0() const { return ___MAX_BITS_0; } inline int32_t* get_address_of_MAX_BITS_0() { return &___MAX_BITS_0; } inline void set_MAX_BITS_0(int32_t value) { ___MAX_BITS_0 = value; } inline static int32_t get_offset_of_BL_CODES_1() { return static_cast(offsetof(InternalConstants_t08B73D46FBB46D9AD4963A68BDEACB31F06B5388_StaticFields, ___BL_CODES_1)); } inline int32_t get_BL_CODES_1() const { return ___BL_CODES_1; } inline int32_t* get_address_of_BL_CODES_1() { return &___BL_CODES_1; } inline void set_BL_CODES_1(int32_t value) { ___BL_CODES_1 = value; } inline static int32_t get_offset_of_D_CODES_2() { return static_cast(offsetof(InternalConstants_t08B73D46FBB46D9AD4963A68BDEACB31F06B5388_StaticFields, ___D_CODES_2)); } inline int32_t get_D_CODES_2() const { return ___D_CODES_2; } inline int32_t* get_address_of_D_CODES_2() { return &___D_CODES_2; } inline void set_D_CODES_2(int32_t value) { ___D_CODES_2 = value; } inline static int32_t get_offset_of_LITERALS_3() { return static_cast(offsetof(InternalConstants_t08B73D46FBB46D9AD4963A68BDEACB31F06B5388_StaticFields, ___LITERALS_3)); } inline int32_t get_LITERALS_3() const { return ___LITERALS_3; } inline int32_t* get_address_of_LITERALS_3() { return &___LITERALS_3; } inline void set_LITERALS_3(int32_t value) { ___LITERALS_3 = value; } inline static int32_t get_offset_of_LENGTH_CODES_4() { return static_cast(offsetof(InternalConstants_t08B73D46FBB46D9AD4963A68BDEACB31F06B5388_StaticFields, ___LENGTH_CODES_4)); } inline int32_t get_LENGTH_CODES_4() const { return ___LENGTH_CODES_4; } inline int32_t* get_address_of_LENGTH_CODES_4() { return &___LENGTH_CODES_4; } inline void set_LENGTH_CODES_4(int32_t value) { ___LENGTH_CODES_4 = value; } inline static int32_t get_offset_of_L_CODES_5() { return static_cast(offsetof(InternalConstants_t08B73D46FBB46D9AD4963A68BDEACB31F06B5388_StaticFields, ___L_CODES_5)); } inline int32_t get_L_CODES_5() const { return ___L_CODES_5; } inline int32_t* get_address_of_L_CODES_5() { return &___L_CODES_5; } inline void set_L_CODES_5(int32_t value) { ___L_CODES_5 = value; } inline static int32_t get_offset_of_MAX_BL_BITS_6() { return static_cast(offsetof(InternalConstants_t08B73D46FBB46D9AD4963A68BDEACB31F06B5388_StaticFields, ___MAX_BL_BITS_6)); } inline int32_t get_MAX_BL_BITS_6() const { return ___MAX_BL_BITS_6; } inline int32_t* get_address_of_MAX_BL_BITS_6() { return &___MAX_BL_BITS_6; } inline void set_MAX_BL_BITS_6(int32_t value) { ___MAX_BL_BITS_6 = value; } inline static int32_t get_offset_of_REP_3_6_7() { return static_cast(offsetof(InternalConstants_t08B73D46FBB46D9AD4963A68BDEACB31F06B5388_StaticFields, ___REP_3_6_7)); } inline int32_t get_REP_3_6_7() const { return ___REP_3_6_7; } inline int32_t* get_address_of_REP_3_6_7() { return &___REP_3_6_7; } inline void set_REP_3_6_7(int32_t value) { ___REP_3_6_7 = value; } inline static int32_t get_offset_of_REPZ_3_10_8() { return static_cast(offsetof(InternalConstants_t08B73D46FBB46D9AD4963A68BDEACB31F06B5388_StaticFields, ___REPZ_3_10_8)); } inline int32_t get_REPZ_3_10_8() const { return ___REPZ_3_10_8; } inline int32_t* get_address_of_REPZ_3_10_8() { return &___REPZ_3_10_8; } inline void set_REPZ_3_10_8(int32_t value) { ___REPZ_3_10_8 = value; } inline static int32_t get_offset_of_REPZ_11_138_9() { return static_cast(offsetof(InternalConstants_t08B73D46FBB46D9AD4963A68BDEACB31F06B5388_StaticFields, ___REPZ_11_138_9)); } inline int32_t get_REPZ_11_138_9() const { return ___REPZ_11_138_9; } inline int32_t* get_address_of_REPZ_11_138_9() { return &___REPZ_11_138_9; } inline void set_REPZ_11_138_9(int32_t value) { ___REPZ_11_138_9 = 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: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers struct NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA : public RuntimeObject { public: public: }; struct NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::NistAlgorithm DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___NistAlgorithm_0; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::HashAlgs DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___HashAlgs_1; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdSha256 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdSha256_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdSha384 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdSha384_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdSha512 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdSha512_4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdSha224 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdSha224_5; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdSha512_224 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdSha512_224_6; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdSha512_256 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdSha512_256_7; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdSha3_224 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdSha3_224_8; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdSha3_256 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdSha3_256_9; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdSha3_384 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdSha3_384_10; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdSha3_512 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdSha3_512_11; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdShake128 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdShake128_12; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdShake256 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdShake256_13; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdHMacWithSha3_224 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdHMacWithSha3_224_14; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdHMacWithSha3_256 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdHMacWithSha3_256_15; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdHMacWithSha3_384 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdHMacWithSha3_384_16; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdHMacWithSha3_512 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdHMacWithSha3_512_17; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::Aes DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Aes_18; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes128Ecb DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAes128Ecb_19; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes128Cbc DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAes128Cbc_20; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes128Ofb DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAes128Ofb_21; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes128Cfb DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAes128Cfb_22; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes128Wrap DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAes128Wrap_23; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes128Gcm DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAes128Gcm_24; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes128Ccm DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAes128Ccm_25; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes192Ecb DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAes192Ecb_26; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes192Cbc DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAes192Cbc_27; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes192Ofb DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAes192Ofb_28; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes192Cfb DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAes192Cfb_29; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes192Wrap DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAes192Wrap_30; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes192Gcm DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAes192Gcm_31; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes192Ccm DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAes192Ccm_32; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes256Ecb DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAes256Ecb_33; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes256Cbc DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAes256Cbc_34; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes256Ofb DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAes256Ofb_35; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes256Cfb DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAes256Cfb_36; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes256Wrap DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAes256Wrap_37; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes256Gcm DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAes256Gcm_38; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes256Ccm DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAes256Ccm_39; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdDsaWithSha2 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdDsaWithSha2_40; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::DsaWithSha224 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DsaWithSha224_41; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::DsaWithSha256 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DsaWithSha256_42; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::DsaWithSha384 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DsaWithSha384_43; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::DsaWithSha512 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DsaWithSha512_44; public: inline static int32_t get_offset_of_NistAlgorithm_0() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___NistAlgorithm_0)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_NistAlgorithm_0() const { return ___NistAlgorithm_0; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_NistAlgorithm_0() { return &___NistAlgorithm_0; } inline void set_NistAlgorithm_0(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___NistAlgorithm_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___NistAlgorithm_0), (void*)value); } inline static int32_t get_offset_of_HashAlgs_1() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___HashAlgs_1)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_HashAlgs_1() const { return ___HashAlgs_1; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_HashAlgs_1() { return &___HashAlgs_1; } inline void set_HashAlgs_1(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___HashAlgs_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___HashAlgs_1), (void*)value); } inline static int32_t get_offset_of_IdSha256_2() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdSha256_2)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdSha256_2() const { return ___IdSha256_2; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdSha256_2() { return &___IdSha256_2; } inline void set_IdSha256_2(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdSha256_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdSha256_2), (void*)value); } inline static int32_t get_offset_of_IdSha384_3() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdSha384_3)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdSha384_3() const { return ___IdSha384_3; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdSha384_3() { return &___IdSha384_3; } inline void set_IdSha384_3(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdSha384_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdSha384_3), (void*)value); } inline static int32_t get_offset_of_IdSha512_4() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdSha512_4)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdSha512_4() const { return ___IdSha512_4; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdSha512_4() { return &___IdSha512_4; } inline void set_IdSha512_4(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdSha512_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdSha512_4), (void*)value); } inline static int32_t get_offset_of_IdSha224_5() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdSha224_5)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdSha224_5() const { return ___IdSha224_5; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdSha224_5() { return &___IdSha224_5; } inline void set_IdSha224_5(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdSha224_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdSha224_5), (void*)value); } inline static int32_t get_offset_of_IdSha512_224_6() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdSha512_224_6)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdSha512_224_6() const { return ___IdSha512_224_6; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdSha512_224_6() { return &___IdSha512_224_6; } inline void set_IdSha512_224_6(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdSha512_224_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdSha512_224_6), (void*)value); } inline static int32_t get_offset_of_IdSha512_256_7() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdSha512_256_7)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdSha512_256_7() const { return ___IdSha512_256_7; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdSha512_256_7() { return &___IdSha512_256_7; } inline void set_IdSha512_256_7(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdSha512_256_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdSha512_256_7), (void*)value); } inline static int32_t get_offset_of_IdSha3_224_8() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdSha3_224_8)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdSha3_224_8() const { return ___IdSha3_224_8; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdSha3_224_8() { return &___IdSha3_224_8; } inline void set_IdSha3_224_8(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdSha3_224_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdSha3_224_8), (void*)value); } inline static int32_t get_offset_of_IdSha3_256_9() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdSha3_256_9)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdSha3_256_9() const { return ___IdSha3_256_9; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdSha3_256_9() { return &___IdSha3_256_9; } inline void set_IdSha3_256_9(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdSha3_256_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdSha3_256_9), (void*)value); } inline static int32_t get_offset_of_IdSha3_384_10() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdSha3_384_10)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdSha3_384_10() const { return ___IdSha3_384_10; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdSha3_384_10() { return &___IdSha3_384_10; } inline void set_IdSha3_384_10(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdSha3_384_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdSha3_384_10), (void*)value); } inline static int32_t get_offset_of_IdSha3_512_11() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdSha3_512_11)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdSha3_512_11() const { return ___IdSha3_512_11; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdSha3_512_11() { return &___IdSha3_512_11; } inline void set_IdSha3_512_11(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdSha3_512_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdSha3_512_11), (void*)value); } inline static int32_t get_offset_of_IdShake128_12() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdShake128_12)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdShake128_12() const { return ___IdShake128_12; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdShake128_12() { return &___IdShake128_12; } inline void set_IdShake128_12(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdShake128_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdShake128_12), (void*)value); } inline static int32_t get_offset_of_IdShake256_13() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdShake256_13)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdShake256_13() const { return ___IdShake256_13; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdShake256_13() { return &___IdShake256_13; } inline void set_IdShake256_13(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdShake256_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdShake256_13), (void*)value); } inline static int32_t get_offset_of_IdHMacWithSha3_224_14() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdHMacWithSha3_224_14)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdHMacWithSha3_224_14() const { return ___IdHMacWithSha3_224_14; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdHMacWithSha3_224_14() { return &___IdHMacWithSha3_224_14; } inline void set_IdHMacWithSha3_224_14(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdHMacWithSha3_224_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdHMacWithSha3_224_14), (void*)value); } inline static int32_t get_offset_of_IdHMacWithSha3_256_15() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdHMacWithSha3_256_15)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdHMacWithSha3_256_15() const { return ___IdHMacWithSha3_256_15; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdHMacWithSha3_256_15() { return &___IdHMacWithSha3_256_15; } inline void set_IdHMacWithSha3_256_15(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdHMacWithSha3_256_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdHMacWithSha3_256_15), (void*)value); } inline static int32_t get_offset_of_IdHMacWithSha3_384_16() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdHMacWithSha3_384_16)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdHMacWithSha3_384_16() const { return ___IdHMacWithSha3_384_16; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdHMacWithSha3_384_16() { return &___IdHMacWithSha3_384_16; } inline void set_IdHMacWithSha3_384_16(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdHMacWithSha3_384_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdHMacWithSha3_384_16), (void*)value); } inline static int32_t get_offset_of_IdHMacWithSha3_512_17() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdHMacWithSha3_512_17)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdHMacWithSha3_512_17() const { return ___IdHMacWithSha3_512_17; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdHMacWithSha3_512_17() { return &___IdHMacWithSha3_512_17; } inline void set_IdHMacWithSha3_512_17(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdHMacWithSha3_512_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdHMacWithSha3_512_17), (void*)value); } inline static int32_t get_offset_of_Aes_18() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___Aes_18)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Aes_18() const { return ___Aes_18; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Aes_18() { return &___Aes_18; } inline void set_Aes_18(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Aes_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___Aes_18), (void*)value); } inline static int32_t get_offset_of_IdAes128Ecb_19() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdAes128Ecb_19)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAes128Ecb_19() const { return ___IdAes128Ecb_19; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAes128Ecb_19() { return &___IdAes128Ecb_19; } inline void set_IdAes128Ecb_19(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAes128Ecb_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAes128Ecb_19), (void*)value); } inline static int32_t get_offset_of_IdAes128Cbc_20() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdAes128Cbc_20)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAes128Cbc_20() const { return ___IdAes128Cbc_20; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAes128Cbc_20() { return &___IdAes128Cbc_20; } inline void set_IdAes128Cbc_20(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAes128Cbc_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAes128Cbc_20), (void*)value); } inline static int32_t get_offset_of_IdAes128Ofb_21() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdAes128Ofb_21)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAes128Ofb_21() const { return ___IdAes128Ofb_21; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAes128Ofb_21() { return &___IdAes128Ofb_21; } inline void set_IdAes128Ofb_21(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAes128Ofb_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAes128Ofb_21), (void*)value); } inline static int32_t get_offset_of_IdAes128Cfb_22() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdAes128Cfb_22)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAes128Cfb_22() const { return ___IdAes128Cfb_22; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAes128Cfb_22() { return &___IdAes128Cfb_22; } inline void set_IdAes128Cfb_22(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAes128Cfb_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAes128Cfb_22), (void*)value); } inline static int32_t get_offset_of_IdAes128Wrap_23() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdAes128Wrap_23)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAes128Wrap_23() const { return ___IdAes128Wrap_23; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAes128Wrap_23() { return &___IdAes128Wrap_23; } inline void set_IdAes128Wrap_23(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAes128Wrap_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAes128Wrap_23), (void*)value); } inline static int32_t get_offset_of_IdAes128Gcm_24() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdAes128Gcm_24)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAes128Gcm_24() const { return ___IdAes128Gcm_24; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAes128Gcm_24() { return &___IdAes128Gcm_24; } inline void set_IdAes128Gcm_24(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAes128Gcm_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAes128Gcm_24), (void*)value); } inline static int32_t get_offset_of_IdAes128Ccm_25() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdAes128Ccm_25)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAes128Ccm_25() const { return ___IdAes128Ccm_25; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAes128Ccm_25() { return &___IdAes128Ccm_25; } inline void set_IdAes128Ccm_25(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAes128Ccm_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAes128Ccm_25), (void*)value); } inline static int32_t get_offset_of_IdAes192Ecb_26() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdAes192Ecb_26)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAes192Ecb_26() const { return ___IdAes192Ecb_26; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAes192Ecb_26() { return &___IdAes192Ecb_26; } inline void set_IdAes192Ecb_26(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAes192Ecb_26 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAes192Ecb_26), (void*)value); } inline static int32_t get_offset_of_IdAes192Cbc_27() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdAes192Cbc_27)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAes192Cbc_27() const { return ___IdAes192Cbc_27; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAes192Cbc_27() { return &___IdAes192Cbc_27; } inline void set_IdAes192Cbc_27(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAes192Cbc_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAes192Cbc_27), (void*)value); } inline static int32_t get_offset_of_IdAes192Ofb_28() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdAes192Ofb_28)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAes192Ofb_28() const { return ___IdAes192Ofb_28; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAes192Ofb_28() { return &___IdAes192Ofb_28; } inline void set_IdAes192Ofb_28(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAes192Ofb_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAes192Ofb_28), (void*)value); } inline static int32_t get_offset_of_IdAes192Cfb_29() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdAes192Cfb_29)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAes192Cfb_29() const { return ___IdAes192Cfb_29; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAes192Cfb_29() { return &___IdAes192Cfb_29; } inline void set_IdAes192Cfb_29(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAes192Cfb_29 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAes192Cfb_29), (void*)value); } inline static int32_t get_offset_of_IdAes192Wrap_30() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdAes192Wrap_30)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAes192Wrap_30() const { return ___IdAes192Wrap_30; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAes192Wrap_30() { return &___IdAes192Wrap_30; } inline void set_IdAes192Wrap_30(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAes192Wrap_30 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAes192Wrap_30), (void*)value); } inline static int32_t get_offset_of_IdAes192Gcm_31() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdAes192Gcm_31)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAes192Gcm_31() const { return ___IdAes192Gcm_31; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAes192Gcm_31() { return &___IdAes192Gcm_31; } inline void set_IdAes192Gcm_31(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAes192Gcm_31 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAes192Gcm_31), (void*)value); } inline static int32_t get_offset_of_IdAes192Ccm_32() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdAes192Ccm_32)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAes192Ccm_32() const { return ___IdAes192Ccm_32; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAes192Ccm_32() { return &___IdAes192Ccm_32; } inline void set_IdAes192Ccm_32(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAes192Ccm_32 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAes192Ccm_32), (void*)value); } inline static int32_t get_offset_of_IdAes256Ecb_33() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdAes256Ecb_33)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAes256Ecb_33() const { return ___IdAes256Ecb_33; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAes256Ecb_33() { return &___IdAes256Ecb_33; } inline void set_IdAes256Ecb_33(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAes256Ecb_33 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAes256Ecb_33), (void*)value); } inline static int32_t get_offset_of_IdAes256Cbc_34() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdAes256Cbc_34)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAes256Cbc_34() const { return ___IdAes256Cbc_34; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAes256Cbc_34() { return &___IdAes256Cbc_34; } inline void set_IdAes256Cbc_34(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAes256Cbc_34 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAes256Cbc_34), (void*)value); } inline static int32_t get_offset_of_IdAes256Ofb_35() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdAes256Ofb_35)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAes256Ofb_35() const { return ___IdAes256Ofb_35; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAes256Ofb_35() { return &___IdAes256Ofb_35; } inline void set_IdAes256Ofb_35(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAes256Ofb_35 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAes256Ofb_35), (void*)value); } inline static int32_t get_offset_of_IdAes256Cfb_36() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdAes256Cfb_36)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAes256Cfb_36() const { return ___IdAes256Cfb_36; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAes256Cfb_36() { return &___IdAes256Cfb_36; } inline void set_IdAes256Cfb_36(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAes256Cfb_36 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAes256Cfb_36), (void*)value); } inline static int32_t get_offset_of_IdAes256Wrap_37() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdAes256Wrap_37)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAes256Wrap_37() const { return ___IdAes256Wrap_37; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAes256Wrap_37() { return &___IdAes256Wrap_37; } inline void set_IdAes256Wrap_37(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAes256Wrap_37 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAes256Wrap_37), (void*)value); } inline static int32_t get_offset_of_IdAes256Gcm_38() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdAes256Gcm_38)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAes256Gcm_38() const { return ___IdAes256Gcm_38; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAes256Gcm_38() { return &___IdAes256Gcm_38; } inline void set_IdAes256Gcm_38(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAes256Gcm_38 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAes256Gcm_38), (void*)value); } inline static int32_t get_offset_of_IdAes256Ccm_39() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdAes256Ccm_39)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAes256Ccm_39() const { return ___IdAes256Ccm_39; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAes256Ccm_39() { return &___IdAes256Ccm_39; } inline void set_IdAes256Ccm_39(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAes256Ccm_39 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAes256Ccm_39), (void*)value); } inline static int32_t get_offset_of_IdDsaWithSha2_40() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___IdDsaWithSha2_40)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdDsaWithSha2_40() const { return ___IdDsaWithSha2_40; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdDsaWithSha2_40() { return &___IdDsaWithSha2_40; } inline void set_IdDsaWithSha2_40(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdDsaWithSha2_40 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdDsaWithSha2_40), (void*)value); } inline static int32_t get_offset_of_DsaWithSha224_41() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___DsaWithSha224_41)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DsaWithSha224_41() const { return ___DsaWithSha224_41; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DsaWithSha224_41() { return &___DsaWithSha224_41; } inline void set_DsaWithSha224_41(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DsaWithSha224_41 = value; Il2CppCodeGenWriteBarrier((void**)(&___DsaWithSha224_41), (void*)value); } inline static int32_t get_offset_of_DsaWithSha256_42() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___DsaWithSha256_42)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DsaWithSha256_42() const { return ___DsaWithSha256_42; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DsaWithSha256_42() { return &___DsaWithSha256_42; } inline void set_DsaWithSha256_42(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DsaWithSha256_42 = value; Il2CppCodeGenWriteBarrier((void**)(&___DsaWithSha256_42), (void*)value); } inline static int32_t get_offset_of_DsaWithSha384_43() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___DsaWithSha384_43)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DsaWithSha384_43() const { return ___DsaWithSha384_43; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DsaWithSha384_43() { return &___DsaWithSha384_43; } inline void set_DsaWithSha384_43(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DsaWithSha384_43 = value; Il2CppCodeGenWriteBarrier((void**)(&___DsaWithSha384_43), (void*)value); } inline static int32_t get_offset_of_DsaWithSha512_44() { return static_cast(offsetof(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields, ___DsaWithSha512_44)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DsaWithSha512_44() const { return ___DsaWithSha512_44; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DsaWithSha512_44() { return &___DsaWithSha512_44; } inline void set_DsaWithSha512_44(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DsaWithSha512_44 = value; Il2CppCodeGenWriteBarrier((void**)(&___DsaWithSha512_44), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Oiw.OiwObjectIdentifiers struct OiwObjectIdentifiers_tACD1AAAAC365CD86B5E7F0DE22B66469A4A93CED : public RuntimeObject { public: public: }; struct OiwObjectIdentifiers_tACD1AAAAC365CD86B5E7F0DE22B66469A4A93CED_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Oiw.OiwObjectIdentifiers::MD4WithRsa DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___MD4WithRsa_0; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Oiw.OiwObjectIdentifiers::MD5WithRsa DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___MD5WithRsa_1; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Oiw.OiwObjectIdentifiers::MD4WithRsaEncryption DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___MD4WithRsaEncryption_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Oiw.OiwObjectIdentifiers::DesEcb DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DesEcb_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Oiw.OiwObjectIdentifiers::DesCbc DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DesCbc_4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Oiw.OiwObjectIdentifiers::DesOfb DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DesOfb_5; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Oiw.OiwObjectIdentifiers::DesCfb DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DesCfb_6; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Oiw.OiwObjectIdentifiers::DesEde DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DesEde_7; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Oiw.OiwObjectIdentifiers::IdSha1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdSha1_8; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Oiw.OiwObjectIdentifiers::DsaWithSha1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DsaWithSha1_9; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Oiw.OiwObjectIdentifiers::Sha1WithRsa DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Sha1WithRsa_10; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Oiw.OiwObjectIdentifiers::ElGamalAlgorithm DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___ElGamalAlgorithm_11; public: inline static int32_t get_offset_of_MD4WithRsa_0() { return static_cast(offsetof(OiwObjectIdentifiers_tACD1AAAAC365CD86B5E7F0DE22B66469A4A93CED_StaticFields, ___MD4WithRsa_0)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_MD4WithRsa_0() const { return ___MD4WithRsa_0; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_MD4WithRsa_0() { return &___MD4WithRsa_0; } inline void set_MD4WithRsa_0(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___MD4WithRsa_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___MD4WithRsa_0), (void*)value); } inline static int32_t get_offset_of_MD5WithRsa_1() { return static_cast(offsetof(OiwObjectIdentifiers_tACD1AAAAC365CD86B5E7F0DE22B66469A4A93CED_StaticFields, ___MD5WithRsa_1)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_MD5WithRsa_1() const { return ___MD5WithRsa_1; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_MD5WithRsa_1() { return &___MD5WithRsa_1; } inline void set_MD5WithRsa_1(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___MD5WithRsa_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___MD5WithRsa_1), (void*)value); } inline static int32_t get_offset_of_MD4WithRsaEncryption_2() { return static_cast(offsetof(OiwObjectIdentifiers_tACD1AAAAC365CD86B5E7F0DE22B66469A4A93CED_StaticFields, ___MD4WithRsaEncryption_2)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_MD4WithRsaEncryption_2() const { return ___MD4WithRsaEncryption_2; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_MD4WithRsaEncryption_2() { return &___MD4WithRsaEncryption_2; } inline void set_MD4WithRsaEncryption_2(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___MD4WithRsaEncryption_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___MD4WithRsaEncryption_2), (void*)value); } inline static int32_t get_offset_of_DesEcb_3() { return static_cast(offsetof(OiwObjectIdentifiers_tACD1AAAAC365CD86B5E7F0DE22B66469A4A93CED_StaticFields, ___DesEcb_3)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DesEcb_3() const { return ___DesEcb_3; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DesEcb_3() { return &___DesEcb_3; } inline void set_DesEcb_3(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DesEcb_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___DesEcb_3), (void*)value); } inline static int32_t get_offset_of_DesCbc_4() { return static_cast(offsetof(OiwObjectIdentifiers_tACD1AAAAC365CD86B5E7F0DE22B66469A4A93CED_StaticFields, ___DesCbc_4)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DesCbc_4() const { return ___DesCbc_4; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DesCbc_4() { return &___DesCbc_4; } inline void set_DesCbc_4(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DesCbc_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___DesCbc_4), (void*)value); } inline static int32_t get_offset_of_DesOfb_5() { return static_cast(offsetof(OiwObjectIdentifiers_tACD1AAAAC365CD86B5E7F0DE22B66469A4A93CED_StaticFields, ___DesOfb_5)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DesOfb_5() const { return ___DesOfb_5; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DesOfb_5() { return &___DesOfb_5; } inline void set_DesOfb_5(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DesOfb_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___DesOfb_5), (void*)value); } inline static int32_t get_offset_of_DesCfb_6() { return static_cast(offsetof(OiwObjectIdentifiers_tACD1AAAAC365CD86B5E7F0DE22B66469A4A93CED_StaticFields, ___DesCfb_6)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DesCfb_6() const { return ___DesCfb_6; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DesCfb_6() { return &___DesCfb_6; } inline void set_DesCfb_6(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DesCfb_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___DesCfb_6), (void*)value); } inline static int32_t get_offset_of_DesEde_7() { return static_cast(offsetof(OiwObjectIdentifiers_tACD1AAAAC365CD86B5E7F0DE22B66469A4A93CED_StaticFields, ___DesEde_7)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DesEde_7() const { return ___DesEde_7; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DesEde_7() { return &___DesEde_7; } inline void set_DesEde_7(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DesEde_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___DesEde_7), (void*)value); } inline static int32_t get_offset_of_IdSha1_8() { return static_cast(offsetof(OiwObjectIdentifiers_tACD1AAAAC365CD86B5E7F0DE22B66469A4A93CED_StaticFields, ___IdSha1_8)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdSha1_8() const { return ___IdSha1_8; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdSha1_8() { return &___IdSha1_8; } inline void set_IdSha1_8(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdSha1_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdSha1_8), (void*)value); } inline static int32_t get_offset_of_DsaWithSha1_9() { return static_cast(offsetof(OiwObjectIdentifiers_tACD1AAAAC365CD86B5E7F0DE22B66469A4A93CED_StaticFields, ___DsaWithSha1_9)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DsaWithSha1_9() const { return ___DsaWithSha1_9; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DsaWithSha1_9() { return &___DsaWithSha1_9; } inline void set_DsaWithSha1_9(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DsaWithSha1_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___DsaWithSha1_9), (void*)value); } inline static int32_t get_offset_of_Sha1WithRsa_10() { return static_cast(offsetof(OiwObjectIdentifiers_tACD1AAAAC365CD86B5E7F0DE22B66469A4A93CED_StaticFields, ___Sha1WithRsa_10)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Sha1WithRsa_10() const { return ___Sha1WithRsa_10; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Sha1WithRsa_10() { return &___Sha1WithRsa_10; } inline void set_Sha1WithRsa_10(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Sha1WithRsa_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___Sha1WithRsa_10), (void*)value); } inline static int32_t get_offset_of_ElGamalAlgorithm_11() { return static_cast(offsetof(OiwObjectIdentifiers_tACD1AAAAC365CD86B5E7F0DE22B66469A4A93CED_StaticFields, ___ElGamalAlgorithm_11)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_ElGamalAlgorithm_11() const { return ___ElGamalAlgorithm_11; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_ElGamalAlgorithm_11() { return &___ElGamalAlgorithm_11; } inline void set_ElGamalAlgorithm_11(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___ElGamalAlgorithm_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___ElGamalAlgorithm_11), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ParametersWithRandom struct ParametersWithRandom_t557A9B373F5F2998BE6C0461812FBE4EB73425AC : public RuntimeObject { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ICipherParameters BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ParametersWithRandom::parameters RuntimeObject* ___parameters_0; // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ParametersWithRandom::random SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * ___random_1; public: inline static int32_t get_offset_of_parameters_0() { return static_cast(offsetof(ParametersWithRandom_t557A9B373F5F2998BE6C0461812FBE4EB73425AC, ___parameters_0)); } inline RuntimeObject* get_parameters_0() const { return ___parameters_0; } inline RuntimeObject** get_address_of_parameters_0() { return &___parameters_0; } inline void set_parameters_0(RuntimeObject* value) { ___parameters_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___parameters_0), (void*)value); } inline static int32_t get_offset_of_random_1() { return static_cast(offsetof(ParametersWithRandom_t557A9B373F5F2998BE6C0461812FBE4EB73425AC, ___random_1)); } inline SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * get_random_1() const { return ___random_1; } inline SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 ** get_address_of_random_1() { return &___random_1; } inline void set_random_1(SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * value) { ___random_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___random_1), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers struct PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516 : public RuntimeObject { public: public: }; struct PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs1Oid DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Pkcs1Oid_1; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::RsaEncryption DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___RsaEncryption_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::MD2WithRsaEncryption DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___MD2WithRsaEncryption_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::MD4WithRsaEncryption DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___MD4WithRsaEncryption_4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::MD5WithRsaEncryption DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___MD5WithRsaEncryption_5; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Sha1WithRsaEncryption DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Sha1WithRsaEncryption_6; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::SrsaOaepEncryptionSet DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___SrsaOaepEncryptionSet_7; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdRsaesOaep DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdRsaesOaep_8; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdMgf1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdMgf1_9; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdPSpecified DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdPSpecified_10; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdRsassaPss DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdRsassaPss_11; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Sha256WithRsaEncryption DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Sha256WithRsaEncryption_12; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Sha384WithRsaEncryption DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Sha384WithRsaEncryption_13; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Sha512WithRsaEncryption DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Sha512WithRsaEncryption_14; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Sha224WithRsaEncryption DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Sha224WithRsaEncryption_15; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Sha512_224WithRSAEncryption DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Sha512_224WithRSAEncryption_16; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Sha512_256WithRSAEncryption DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Sha512_256WithRSAEncryption_17; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::DhKeyAgreement DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DhKeyAgreement_19; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::PbeWithMD2AndDesCbc DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___PbeWithMD2AndDesCbc_21; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::PbeWithMD2AndRC2Cbc DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___PbeWithMD2AndRC2Cbc_22; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::PbeWithMD5AndDesCbc DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___PbeWithMD5AndDesCbc_23; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::PbeWithMD5AndRC2Cbc DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___PbeWithMD5AndRC2Cbc_24; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::PbeWithSha1AndDesCbc DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___PbeWithSha1AndDesCbc_25; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::PbeWithSha1AndRC2Cbc DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___PbeWithSha1AndRC2Cbc_26; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdPbeS2 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdPbeS2_27; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdPbkdf2 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdPbkdf2_28; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::DesEde3Cbc DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DesEde3Cbc_30; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::RC2Cbc DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___RC2Cbc_31; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::MD2 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___MD2_33; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::MD4 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___MD4_34; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::MD5 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___MD5_35; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdHmacWithSha1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdHmacWithSha1_36; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdHmacWithSha224 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdHmacWithSha224_37; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdHmacWithSha256 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdHmacWithSha256_38; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdHmacWithSha384 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdHmacWithSha384_39; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdHmacWithSha512 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdHmacWithSha512_40; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Data DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Data_42; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::SignedData DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___SignedData_43; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::EnvelopedData DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___EnvelopedData_44; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::SignedAndEnvelopedData DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___SignedAndEnvelopedData_45; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::DigestedData DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DigestedData_46; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::EncryptedData DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___EncryptedData_47; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs9AtEmailAddress DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Pkcs9AtEmailAddress_49; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs9AtUnstructuredName DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Pkcs9AtUnstructuredName_50; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs9AtContentType DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Pkcs9AtContentType_51; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs9AtMessageDigest DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Pkcs9AtMessageDigest_52; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs9AtSigningTime DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Pkcs9AtSigningTime_53; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs9AtCounterSignature DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Pkcs9AtCounterSignature_54; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs9AtChallengePassword DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Pkcs9AtChallengePassword_55; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs9AtUnstructuredAddress DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Pkcs9AtUnstructuredAddress_56; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs9AtExtendedCertificateAttributes DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Pkcs9AtExtendedCertificateAttributes_57; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs9AtSigningDescription DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Pkcs9AtSigningDescription_58; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs9AtExtensionRequest DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Pkcs9AtExtensionRequest_59; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs9AtSmimeCapabilities DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Pkcs9AtSmimeCapabilities_60; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdSmime DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdSmime_61; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs9AtFriendlyName DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Pkcs9AtFriendlyName_62; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs9AtLocalKeyID DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Pkcs9AtLocalKeyID_63; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::X509CertType DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___X509CertType_64; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::X509Certificate DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___X509Certificate_66; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::SdsiCertificate DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___SdsiCertificate_67; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::X509Crl DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___X509Crl_69; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAlg DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAlg_70; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAlgEsdh DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAlgEsdh_71; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAlgCms3DesWrap DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAlgCms3DesWrap_72; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAlgCmsRC2Wrap DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAlgCmsRC2Wrap_73; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAlgPwriKek DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAlgPwriKek_74; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAlgSsdh DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAlgSsdh_75; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdRsaKem DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdRsaKem_76; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::PreferSignedData DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___PreferSignedData_77; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::CannotDecryptAny DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___CannotDecryptAny_78; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::SmimeCapabilitiesVersions DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___SmimeCapabilitiesVersions_79; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAReceiptRequest DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAAReceiptRequest_80; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdCTAuthData DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdCTAuthData_82; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdCTTstInfo DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdCTTstInfo_83; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdCTCompressedData DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdCTCompressedData_84; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdCTAuthEnvelopedData DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdCTAuthEnvelopedData_85; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdCTTimestampedData DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdCTTimestampedData_86; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdCtiEtsProofOfOrigin DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdCtiEtsProofOfOrigin_88; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdCtiEtsProofOfReceipt DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdCtiEtsProofOfReceipt_89; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdCtiEtsProofOfDelivery DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdCtiEtsProofOfDelivery_90; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdCtiEtsProofOfSender DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdCtiEtsProofOfSender_91; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdCtiEtsProofOfApproval DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdCtiEtsProofOfApproval_92; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdCtiEtsProofOfCreation DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdCtiEtsProofOfCreation_93; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAOid DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAAOid_95; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAContentHint DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAAContentHint_96; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAMsgSigDigest DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAAMsgSigDigest_97; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAContentReference DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAAContentReference_98; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAEncrypKeyPref DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAAEncrypKeyPref_99; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAASigningCertificate DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAASigningCertificate_100; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAASigningCertificateV2 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAASigningCertificateV2_101; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAContentIdentifier DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAAContentIdentifier_102; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAASignatureTimeStampToken DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAASignatureTimeStampToken_103; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAEtsSigPolicyID DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAAEtsSigPolicyID_104; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAEtsCommitmentType DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAAEtsCommitmentType_105; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAEtsSignerLocation DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAAEtsSignerLocation_106; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAEtsSignerAttr DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAAEtsSignerAttr_107; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAEtsOtherSigCert DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAAEtsOtherSigCert_108; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAEtsContentTimestamp DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAAEtsContentTimestamp_109; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAEtsCertificateRefs DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAAEtsCertificateRefs_110; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAEtsRevocationRefs DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAAEtsRevocationRefs_111; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAEtsCertValues DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAAEtsCertValues_112; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAEtsRevocationValues DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAAEtsRevocationValues_113; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAEtsEscTimeStamp DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAAEtsEscTimeStamp_114; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAEtsCertCrlTimestamp DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAAEtsCertCrlTimestamp_115; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAEtsArchiveTimestamp DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAAEtsArchiveTimestamp_116; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAADecryptKeyID DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAADecryptKeyID_117; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAImplCryptoAlgs DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAAImplCryptoAlgs_118; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAAsymmDecryptKeyID DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAAAsymmDecryptKeyID_119; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAImplCompressAlgs DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAAImplCompressAlgs_120; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAACommunityIdentifiers DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAACommunityIdentifiers_121; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAASigPolicyID DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAASigPolicyID_122; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAACommitmentType DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAACommitmentType_123; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAASignerLocation DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAASignerLocation_124; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAOtherSigCert DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAAOtherSigCert_125; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdSpqEtsUri DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdSpqEtsUri_127; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdSpqEtsUNotice DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdSpqEtsUNotice_128; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::KeyBag DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___KeyBag_131; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs8ShroudedKeyBag DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Pkcs8ShroudedKeyBag_132; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::CertBag DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___CertBag_133; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::CrlBag DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___CrlBag_134; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::SecretBag DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___SecretBag_135; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::SafeContentsBag DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___SafeContentsBag_136; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::PbeWithShaAnd128BitRC4 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___PbeWithShaAnd128BitRC4_138; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::PbeWithShaAnd40BitRC4 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___PbeWithShaAnd40BitRC4_139; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::PbeWithShaAnd3KeyTripleDesCbc DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___PbeWithShaAnd3KeyTripleDesCbc_140; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::PbeWithShaAnd2KeyTripleDesCbc DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___PbeWithShaAnd2KeyTripleDesCbc_141; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::PbeWithShaAnd128BitRC2Cbc DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___PbeWithShaAnd128BitRC2Cbc_142; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::PbewithShaAnd40BitRC2Cbc DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___PbewithShaAnd40BitRC2Cbc_143; public: inline static int32_t get_offset_of_Pkcs1Oid_1() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___Pkcs1Oid_1)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Pkcs1Oid_1() const { return ___Pkcs1Oid_1; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Pkcs1Oid_1() { return &___Pkcs1Oid_1; } inline void set_Pkcs1Oid_1(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Pkcs1Oid_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Pkcs1Oid_1), (void*)value); } inline static int32_t get_offset_of_RsaEncryption_2() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___RsaEncryption_2)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_RsaEncryption_2() const { return ___RsaEncryption_2; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_RsaEncryption_2() { return &___RsaEncryption_2; } inline void set_RsaEncryption_2(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___RsaEncryption_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___RsaEncryption_2), (void*)value); } inline static int32_t get_offset_of_MD2WithRsaEncryption_3() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___MD2WithRsaEncryption_3)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_MD2WithRsaEncryption_3() const { return ___MD2WithRsaEncryption_3; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_MD2WithRsaEncryption_3() { return &___MD2WithRsaEncryption_3; } inline void set_MD2WithRsaEncryption_3(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___MD2WithRsaEncryption_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___MD2WithRsaEncryption_3), (void*)value); } inline static int32_t get_offset_of_MD4WithRsaEncryption_4() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___MD4WithRsaEncryption_4)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_MD4WithRsaEncryption_4() const { return ___MD4WithRsaEncryption_4; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_MD4WithRsaEncryption_4() { return &___MD4WithRsaEncryption_4; } inline void set_MD4WithRsaEncryption_4(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___MD4WithRsaEncryption_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___MD4WithRsaEncryption_4), (void*)value); } inline static int32_t get_offset_of_MD5WithRsaEncryption_5() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___MD5WithRsaEncryption_5)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_MD5WithRsaEncryption_5() const { return ___MD5WithRsaEncryption_5; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_MD5WithRsaEncryption_5() { return &___MD5WithRsaEncryption_5; } inline void set_MD5WithRsaEncryption_5(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___MD5WithRsaEncryption_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___MD5WithRsaEncryption_5), (void*)value); } inline static int32_t get_offset_of_Sha1WithRsaEncryption_6() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___Sha1WithRsaEncryption_6)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Sha1WithRsaEncryption_6() const { return ___Sha1WithRsaEncryption_6; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Sha1WithRsaEncryption_6() { return &___Sha1WithRsaEncryption_6; } inline void set_Sha1WithRsaEncryption_6(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Sha1WithRsaEncryption_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___Sha1WithRsaEncryption_6), (void*)value); } inline static int32_t get_offset_of_SrsaOaepEncryptionSet_7() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___SrsaOaepEncryptionSet_7)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_SrsaOaepEncryptionSet_7() const { return ___SrsaOaepEncryptionSet_7; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_SrsaOaepEncryptionSet_7() { return &___SrsaOaepEncryptionSet_7; } inline void set_SrsaOaepEncryptionSet_7(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___SrsaOaepEncryptionSet_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___SrsaOaepEncryptionSet_7), (void*)value); } inline static int32_t get_offset_of_IdRsaesOaep_8() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdRsaesOaep_8)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdRsaesOaep_8() const { return ___IdRsaesOaep_8; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdRsaesOaep_8() { return &___IdRsaesOaep_8; } inline void set_IdRsaesOaep_8(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdRsaesOaep_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdRsaesOaep_8), (void*)value); } inline static int32_t get_offset_of_IdMgf1_9() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdMgf1_9)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdMgf1_9() const { return ___IdMgf1_9; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdMgf1_9() { return &___IdMgf1_9; } inline void set_IdMgf1_9(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdMgf1_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdMgf1_9), (void*)value); } inline static int32_t get_offset_of_IdPSpecified_10() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdPSpecified_10)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdPSpecified_10() const { return ___IdPSpecified_10; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdPSpecified_10() { return &___IdPSpecified_10; } inline void set_IdPSpecified_10(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdPSpecified_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdPSpecified_10), (void*)value); } inline static int32_t get_offset_of_IdRsassaPss_11() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdRsassaPss_11)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdRsassaPss_11() const { return ___IdRsassaPss_11; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdRsassaPss_11() { return &___IdRsassaPss_11; } inline void set_IdRsassaPss_11(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdRsassaPss_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdRsassaPss_11), (void*)value); } inline static int32_t get_offset_of_Sha256WithRsaEncryption_12() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___Sha256WithRsaEncryption_12)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Sha256WithRsaEncryption_12() const { return ___Sha256WithRsaEncryption_12; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Sha256WithRsaEncryption_12() { return &___Sha256WithRsaEncryption_12; } inline void set_Sha256WithRsaEncryption_12(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Sha256WithRsaEncryption_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___Sha256WithRsaEncryption_12), (void*)value); } inline static int32_t get_offset_of_Sha384WithRsaEncryption_13() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___Sha384WithRsaEncryption_13)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Sha384WithRsaEncryption_13() const { return ___Sha384WithRsaEncryption_13; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Sha384WithRsaEncryption_13() { return &___Sha384WithRsaEncryption_13; } inline void set_Sha384WithRsaEncryption_13(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Sha384WithRsaEncryption_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___Sha384WithRsaEncryption_13), (void*)value); } inline static int32_t get_offset_of_Sha512WithRsaEncryption_14() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___Sha512WithRsaEncryption_14)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Sha512WithRsaEncryption_14() const { return ___Sha512WithRsaEncryption_14; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Sha512WithRsaEncryption_14() { return &___Sha512WithRsaEncryption_14; } inline void set_Sha512WithRsaEncryption_14(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Sha512WithRsaEncryption_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___Sha512WithRsaEncryption_14), (void*)value); } inline static int32_t get_offset_of_Sha224WithRsaEncryption_15() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___Sha224WithRsaEncryption_15)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Sha224WithRsaEncryption_15() const { return ___Sha224WithRsaEncryption_15; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Sha224WithRsaEncryption_15() { return &___Sha224WithRsaEncryption_15; } inline void set_Sha224WithRsaEncryption_15(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Sha224WithRsaEncryption_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___Sha224WithRsaEncryption_15), (void*)value); } inline static int32_t get_offset_of_Sha512_224WithRSAEncryption_16() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___Sha512_224WithRSAEncryption_16)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Sha512_224WithRSAEncryption_16() const { return ___Sha512_224WithRSAEncryption_16; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Sha512_224WithRSAEncryption_16() { return &___Sha512_224WithRSAEncryption_16; } inline void set_Sha512_224WithRSAEncryption_16(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Sha512_224WithRSAEncryption_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___Sha512_224WithRSAEncryption_16), (void*)value); } inline static int32_t get_offset_of_Sha512_256WithRSAEncryption_17() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___Sha512_256WithRSAEncryption_17)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Sha512_256WithRSAEncryption_17() const { return ___Sha512_256WithRSAEncryption_17; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Sha512_256WithRSAEncryption_17() { return &___Sha512_256WithRSAEncryption_17; } inline void set_Sha512_256WithRSAEncryption_17(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Sha512_256WithRSAEncryption_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___Sha512_256WithRSAEncryption_17), (void*)value); } inline static int32_t get_offset_of_DhKeyAgreement_19() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___DhKeyAgreement_19)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DhKeyAgreement_19() const { return ___DhKeyAgreement_19; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DhKeyAgreement_19() { return &___DhKeyAgreement_19; } inline void set_DhKeyAgreement_19(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DhKeyAgreement_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___DhKeyAgreement_19), (void*)value); } inline static int32_t get_offset_of_PbeWithMD2AndDesCbc_21() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___PbeWithMD2AndDesCbc_21)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_PbeWithMD2AndDesCbc_21() const { return ___PbeWithMD2AndDesCbc_21; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_PbeWithMD2AndDesCbc_21() { return &___PbeWithMD2AndDesCbc_21; } inline void set_PbeWithMD2AndDesCbc_21(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___PbeWithMD2AndDesCbc_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___PbeWithMD2AndDesCbc_21), (void*)value); } inline static int32_t get_offset_of_PbeWithMD2AndRC2Cbc_22() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___PbeWithMD2AndRC2Cbc_22)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_PbeWithMD2AndRC2Cbc_22() const { return ___PbeWithMD2AndRC2Cbc_22; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_PbeWithMD2AndRC2Cbc_22() { return &___PbeWithMD2AndRC2Cbc_22; } inline void set_PbeWithMD2AndRC2Cbc_22(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___PbeWithMD2AndRC2Cbc_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___PbeWithMD2AndRC2Cbc_22), (void*)value); } inline static int32_t get_offset_of_PbeWithMD5AndDesCbc_23() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___PbeWithMD5AndDesCbc_23)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_PbeWithMD5AndDesCbc_23() const { return ___PbeWithMD5AndDesCbc_23; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_PbeWithMD5AndDesCbc_23() { return &___PbeWithMD5AndDesCbc_23; } inline void set_PbeWithMD5AndDesCbc_23(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___PbeWithMD5AndDesCbc_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___PbeWithMD5AndDesCbc_23), (void*)value); } inline static int32_t get_offset_of_PbeWithMD5AndRC2Cbc_24() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___PbeWithMD5AndRC2Cbc_24)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_PbeWithMD5AndRC2Cbc_24() const { return ___PbeWithMD5AndRC2Cbc_24; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_PbeWithMD5AndRC2Cbc_24() { return &___PbeWithMD5AndRC2Cbc_24; } inline void set_PbeWithMD5AndRC2Cbc_24(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___PbeWithMD5AndRC2Cbc_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___PbeWithMD5AndRC2Cbc_24), (void*)value); } inline static int32_t get_offset_of_PbeWithSha1AndDesCbc_25() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___PbeWithSha1AndDesCbc_25)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_PbeWithSha1AndDesCbc_25() const { return ___PbeWithSha1AndDesCbc_25; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_PbeWithSha1AndDesCbc_25() { return &___PbeWithSha1AndDesCbc_25; } inline void set_PbeWithSha1AndDesCbc_25(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___PbeWithSha1AndDesCbc_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___PbeWithSha1AndDesCbc_25), (void*)value); } inline static int32_t get_offset_of_PbeWithSha1AndRC2Cbc_26() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___PbeWithSha1AndRC2Cbc_26)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_PbeWithSha1AndRC2Cbc_26() const { return ___PbeWithSha1AndRC2Cbc_26; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_PbeWithSha1AndRC2Cbc_26() { return &___PbeWithSha1AndRC2Cbc_26; } inline void set_PbeWithSha1AndRC2Cbc_26(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___PbeWithSha1AndRC2Cbc_26 = value; Il2CppCodeGenWriteBarrier((void**)(&___PbeWithSha1AndRC2Cbc_26), (void*)value); } inline static int32_t get_offset_of_IdPbeS2_27() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdPbeS2_27)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdPbeS2_27() const { return ___IdPbeS2_27; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdPbeS2_27() { return &___IdPbeS2_27; } inline void set_IdPbeS2_27(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdPbeS2_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdPbeS2_27), (void*)value); } inline static int32_t get_offset_of_IdPbkdf2_28() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdPbkdf2_28)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdPbkdf2_28() const { return ___IdPbkdf2_28; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdPbkdf2_28() { return &___IdPbkdf2_28; } inline void set_IdPbkdf2_28(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdPbkdf2_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdPbkdf2_28), (void*)value); } inline static int32_t get_offset_of_DesEde3Cbc_30() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___DesEde3Cbc_30)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DesEde3Cbc_30() const { return ___DesEde3Cbc_30; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DesEde3Cbc_30() { return &___DesEde3Cbc_30; } inline void set_DesEde3Cbc_30(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DesEde3Cbc_30 = value; Il2CppCodeGenWriteBarrier((void**)(&___DesEde3Cbc_30), (void*)value); } inline static int32_t get_offset_of_RC2Cbc_31() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___RC2Cbc_31)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_RC2Cbc_31() const { return ___RC2Cbc_31; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_RC2Cbc_31() { return &___RC2Cbc_31; } inline void set_RC2Cbc_31(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___RC2Cbc_31 = value; Il2CppCodeGenWriteBarrier((void**)(&___RC2Cbc_31), (void*)value); } inline static int32_t get_offset_of_MD2_33() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___MD2_33)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_MD2_33() const { return ___MD2_33; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_MD2_33() { return &___MD2_33; } inline void set_MD2_33(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___MD2_33 = value; Il2CppCodeGenWriteBarrier((void**)(&___MD2_33), (void*)value); } inline static int32_t get_offset_of_MD4_34() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___MD4_34)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_MD4_34() const { return ___MD4_34; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_MD4_34() { return &___MD4_34; } inline void set_MD4_34(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___MD4_34 = value; Il2CppCodeGenWriteBarrier((void**)(&___MD4_34), (void*)value); } inline static int32_t get_offset_of_MD5_35() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___MD5_35)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_MD5_35() const { return ___MD5_35; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_MD5_35() { return &___MD5_35; } inline void set_MD5_35(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___MD5_35 = value; Il2CppCodeGenWriteBarrier((void**)(&___MD5_35), (void*)value); } inline static int32_t get_offset_of_IdHmacWithSha1_36() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdHmacWithSha1_36)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdHmacWithSha1_36() const { return ___IdHmacWithSha1_36; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdHmacWithSha1_36() { return &___IdHmacWithSha1_36; } inline void set_IdHmacWithSha1_36(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdHmacWithSha1_36 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdHmacWithSha1_36), (void*)value); } inline static int32_t get_offset_of_IdHmacWithSha224_37() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdHmacWithSha224_37)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdHmacWithSha224_37() const { return ___IdHmacWithSha224_37; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdHmacWithSha224_37() { return &___IdHmacWithSha224_37; } inline void set_IdHmacWithSha224_37(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdHmacWithSha224_37 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdHmacWithSha224_37), (void*)value); } inline static int32_t get_offset_of_IdHmacWithSha256_38() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdHmacWithSha256_38)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdHmacWithSha256_38() const { return ___IdHmacWithSha256_38; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdHmacWithSha256_38() { return &___IdHmacWithSha256_38; } inline void set_IdHmacWithSha256_38(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdHmacWithSha256_38 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdHmacWithSha256_38), (void*)value); } inline static int32_t get_offset_of_IdHmacWithSha384_39() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdHmacWithSha384_39)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdHmacWithSha384_39() const { return ___IdHmacWithSha384_39; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdHmacWithSha384_39() { return &___IdHmacWithSha384_39; } inline void set_IdHmacWithSha384_39(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdHmacWithSha384_39 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdHmacWithSha384_39), (void*)value); } inline static int32_t get_offset_of_IdHmacWithSha512_40() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdHmacWithSha512_40)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdHmacWithSha512_40() const { return ___IdHmacWithSha512_40; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdHmacWithSha512_40() { return &___IdHmacWithSha512_40; } inline void set_IdHmacWithSha512_40(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdHmacWithSha512_40 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdHmacWithSha512_40), (void*)value); } inline static int32_t get_offset_of_Data_42() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___Data_42)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Data_42() const { return ___Data_42; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Data_42() { return &___Data_42; } inline void set_Data_42(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Data_42 = value; Il2CppCodeGenWriteBarrier((void**)(&___Data_42), (void*)value); } inline static int32_t get_offset_of_SignedData_43() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___SignedData_43)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_SignedData_43() const { return ___SignedData_43; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_SignedData_43() { return &___SignedData_43; } inline void set_SignedData_43(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___SignedData_43 = value; Il2CppCodeGenWriteBarrier((void**)(&___SignedData_43), (void*)value); } inline static int32_t get_offset_of_EnvelopedData_44() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___EnvelopedData_44)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_EnvelopedData_44() const { return ___EnvelopedData_44; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_EnvelopedData_44() { return &___EnvelopedData_44; } inline void set_EnvelopedData_44(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___EnvelopedData_44 = value; Il2CppCodeGenWriteBarrier((void**)(&___EnvelopedData_44), (void*)value); } inline static int32_t get_offset_of_SignedAndEnvelopedData_45() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___SignedAndEnvelopedData_45)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_SignedAndEnvelopedData_45() const { return ___SignedAndEnvelopedData_45; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_SignedAndEnvelopedData_45() { return &___SignedAndEnvelopedData_45; } inline void set_SignedAndEnvelopedData_45(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___SignedAndEnvelopedData_45 = value; Il2CppCodeGenWriteBarrier((void**)(&___SignedAndEnvelopedData_45), (void*)value); } inline static int32_t get_offset_of_DigestedData_46() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___DigestedData_46)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DigestedData_46() const { return ___DigestedData_46; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DigestedData_46() { return &___DigestedData_46; } inline void set_DigestedData_46(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DigestedData_46 = value; Il2CppCodeGenWriteBarrier((void**)(&___DigestedData_46), (void*)value); } inline static int32_t get_offset_of_EncryptedData_47() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___EncryptedData_47)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_EncryptedData_47() const { return ___EncryptedData_47; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_EncryptedData_47() { return &___EncryptedData_47; } inline void set_EncryptedData_47(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___EncryptedData_47 = value; Il2CppCodeGenWriteBarrier((void**)(&___EncryptedData_47), (void*)value); } inline static int32_t get_offset_of_Pkcs9AtEmailAddress_49() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___Pkcs9AtEmailAddress_49)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Pkcs9AtEmailAddress_49() const { return ___Pkcs9AtEmailAddress_49; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Pkcs9AtEmailAddress_49() { return &___Pkcs9AtEmailAddress_49; } inline void set_Pkcs9AtEmailAddress_49(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Pkcs9AtEmailAddress_49 = value; Il2CppCodeGenWriteBarrier((void**)(&___Pkcs9AtEmailAddress_49), (void*)value); } inline static int32_t get_offset_of_Pkcs9AtUnstructuredName_50() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___Pkcs9AtUnstructuredName_50)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Pkcs9AtUnstructuredName_50() const { return ___Pkcs9AtUnstructuredName_50; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Pkcs9AtUnstructuredName_50() { return &___Pkcs9AtUnstructuredName_50; } inline void set_Pkcs9AtUnstructuredName_50(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Pkcs9AtUnstructuredName_50 = value; Il2CppCodeGenWriteBarrier((void**)(&___Pkcs9AtUnstructuredName_50), (void*)value); } inline static int32_t get_offset_of_Pkcs9AtContentType_51() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___Pkcs9AtContentType_51)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Pkcs9AtContentType_51() const { return ___Pkcs9AtContentType_51; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Pkcs9AtContentType_51() { return &___Pkcs9AtContentType_51; } inline void set_Pkcs9AtContentType_51(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Pkcs9AtContentType_51 = value; Il2CppCodeGenWriteBarrier((void**)(&___Pkcs9AtContentType_51), (void*)value); } inline static int32_t get_offset_of_Pkcs9AtMessageDigest_52() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___Pkcs9AtMessageDigest_52)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Pkcs9AtMessageDigest_52() const { return ___Pkcs9AtMessageDigest_52; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Pkcs9AtMessageDigest_52() { return &___Pkcs9AtMessageDigest_52; } inline void set_Pkcs9AtMessageDigest_52(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Pkcs9AtMessageDigest_52 = value; Il2CppCodeGenWriteBarrier((void**)(&___Pkcs9AtMessageDigest_52), (void*)value); } inline static int32_t get_offset_of_Pkcs9AtSigningTime_53() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___Pkcs9AtSigningTime_53)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Pkcs9AtSigningTime_53() const { return ___Pkcs9AtSigningTime_53; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Pkcs9AtSigningTime_53() { return &___Pkcs9AtSigningTime_53; } inline void set_Pkcs9AtSigningTime_53(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Pkcs9AtSigningTime_53 = value; Il2CppCodeGenWriteBarrier((void**)(&___Pkcs9AtSigningTime_53), (void*)value); } inline static int32_t get_offset_of_Pkcs9AtCounterSignature_54() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___Pkcs9AtCounterSignature_54)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Pkcs9AtCounterSignature_54() const { return ___Pkcs9AtCounterSignature_54; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Pkcs9AtCounterSignature_54() { return &___Pkcs9AtCounterSignature_54; } inline void set_Pkcs9AtCounterSignature_54(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Pkcs9AtCounterSignature_54 = value; Il2CppCodeGenWriteBarrier((void**)(&___Pkcs9AtCounterSignature_54), (void*)value); } inline static int32_t get_offset_of_Pkcs9AtChallengePassword_55() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___Pkcs9AtChallengePassword_55)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Pkcs9AtChallengePassword_55() const { return ___Pkcs9AtChallengePassword_55; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Pkcs9AtChallengePassword_55() { return &___Pkcs9AtChallengePassword_55; } inline void set_Pkcs9AtChallengePassword_55(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Pkcs9AtChallengePassword_55 = value; Il2CppCodeGenWriteBarrier((void**)(&___Pkcs9AtChallengePassword_55), (void*)value); } inline static int32_t get_offset_of_Pkcs9AtUnstructuredAddress_56() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___Pkcs9AtUnstructuredAddress_56)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Pkcs9AtUnstructuredAddress_56() const { return ___Pkcs9AtUnstructuredAddress_56; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Pkcs9AtUnstructuredAddress_56() { return &___Pkcs9AtUnstructuredAddress_56; } inline void set_Pkcs9AtUnstructuredAddress_56(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Pkcs9AtUnstructuredAddress_56 = value; Il2CppCodeGenWriteBarrier((void**)(&___Pkcs9AtUnstructuredAddress_56), (void*)value); } inline static int32_t get_offset_of_Pkcs9AtExtendedCertificateAttributes_57() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___Pkcs9AtExtendedCertificateAttributes_57)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Pkcs9AtExtendedCertificateAttributes_57() const { return ___Pkcs9AtExtendedCertificateAttributes_57; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Pkcs9AtExtendedCertificateAttributes_57() { return &___Pkcs9AtExtendedCertificateAttributes_57; } inline void set_Pkcs9AtExtendedCertificateAttributes_57(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Pkcs9AtExtendedCertificateAttributes_57 = value; Il2CppCodeGenWriteBarrier((void**)(&___Pkcs9AtExtendedCertificateAttributes_57), (void*)value); } inline static int32_t get_offset_of_Pkcs9AtSigningDescription_58() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___Pkcs9AtSigningDescription_58)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Pkcs9AtSigningDescription_58() const { return ___Pkcs9AtSigningDescription_58; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Pkcs9AtSigningDescription_58() { return &___Pkcs9AtSigningDescription_58; } inline void set_Pkcs9AtSigningDescription_58(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Pkcs9AtSigningDescription_58 = value; Il2CppCodeGenWriteBarrier((void**)(&___Pkcs9AtSigningDescription_58), (void*)value); } inline static int32_t get_offset_of_Pkcs9AtExtensionRequest_59() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___Pkcs9AtExtensionRequest_59)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Pkcs9AtExtensionRequest_59() const { return ___Pkcs9AtExtensionRequest_59; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Pkcs9AtExtensionRequest_59() { return &___Pkcs9AtExtensionRequest_59; } inline void set_Pkcs9AtExtensionRequest_59(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Pkcs9AtExtensionRequest_59 = value; Il2CppCodeGenWriteBarrier((void**)(&___Pkcs9AtExtensionRequest_59), (void*)value); } inline static int32_t get_offset_of_Pkcs9AtSmimeCapabilities_60() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___Pkcs9AtSmimeCapabilities_60)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Pkcs9AtSmimeCapabilities_60() const { return ___Pkcs9AtSmimeCapabilities_60; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Pkcs9AtSmimeCapabilities_60() { return &___Pkcs9AtSmimeCapabilities_60; } inline void set_Pkcs9AtSmimeCapabilities_60(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Pkcs9AtSmimeCapabilities_60 = value; Il2CppCodeGenWriteBarrier((void**)(&___Pkcs9AtSmimeCapabilities_60), (void*)value); } inline static int32_t get_offset_of_IdSmime_61() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdSmime_61)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdSmime_61() const { return ___IdSmime_61; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdSmime_61() { return &___IdSmime_61; } inline void set_IdSmime_61(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdSmime_61 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdSmime_61), (void*)value); } inline static int32_t get_offset_of_Pkcs9AtFriendlyName_62() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___Pkcs9AtFriendlyName_62)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Pkcs9AtFriendlyName_62() const { return ___Pkcs9AtFriendlyName_62; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Pkcs9AtFriendlyName_62() { return &___Pkcs9AtFriendlyName_62; } inline void set_Pkcs9AtFriendlyName_62(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Pkcs9AtFriendlyName_62 = value; Il2CppCodeGenWriteBarrier((void**)(&___Pkcs9AtFriendlyName_62), (void*)value); } inline static int32_t get_offset_of_Pkcs9AtLocalKeyID_63() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___Pkcs9AtLocalKeyID_63)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Pkcs9AtLocalKeyID_63() const { return ___Pkcs9AtLocalKeyID_63; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Pkcs9AtLocalKeyID_63() { return &___Pkcs9AtLocalKeyID_63; } inline void set_Pkcs9AtLocalKeyID_63(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Pkcs9AtLocalKeyID_63 = value; Il2CppCodeGenWriteBarrier((void**)(&___Pkcs9AtLocalKeyID_63), (void*)value); } inline static int32_t get_offset_of_X509CertType_64() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___X509CertType_64)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_X509CertType_64() const { return ___X509CertType_64; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_X509CertType_64() { return &___X509CertType_64; } inline void set_X509CertType_64(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___X509CertType_64 = value; Il2CppCodeGenWriteBarrier((void**)(&___X509CertType_64), (void*)value); } inline static int32_t get_offset_of_X509Certificate_66() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___X509Certificate_66)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_X509Certificate_66() const { return ___X509Certificate_66; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_X509Certificate_66() { return &___X509Certificate_66; } inline void set_X509Certificate_66(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___X509Certificate_66 = value; Il2CppCodeGenWriteBarrier((void**)(&___X509Certificate_66), (void*)value); } inline static int32_t get_offset_of_SdsiCertificate_67() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___SdsiCertificate_67)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_SdsiCertificate_67() const { return ___SdsiCertificate_67; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_SdsiCertificate_67() { return &___SdsiCertificate_67; } inline void set_SdsiCertificate_67(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___SdsiCertificate_67 = value; Il2CppCodeGenWriteBarrier((void**)(&___SdsiCertificate_67), (void*)value); } inline static int32_t get_offset_of_X509Crl_69() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___X509Crl_69)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_X509Crl_69() const { return ___X509Crl_69; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_X509Crl_69() { return &___X509Crl_69; } inline void set_X509Crl_69(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___X509Crl_69 = value; Il2CppCodeGenWriteBarrier((void**)(&___X509Crl_69), (void*)value); } inline static int32_t get_offset_of_IdAlg_70() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAlg_70)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAlg_70() const { return ___IdAlg_70; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAlg_70() { return &___IdAlg_70; } inline void set_IdAlg_70(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAlg_70 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAlg_70), (void*)value); } inline static int32_t get_offset_of_IdAlgEsdh_71() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAlgEsdh_71)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAlgEsdh_71() const { return ___IdAlgEsdh_71; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAlgEsdh_71() { return &___IdAlgEsdh_71; } inline void set_IdAlgEsdh_71(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAlgEsdh_71 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAlgEsdh_71), (void*)value); } inline static int32_t get_offset_of_IdAlgCms3DesWrap_72() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAlgCms3DesWrap_72)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAlgCms3DesWrap_72() const { return ___IdAlgCms3DesWrap_72; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAlgCms3DesWrap_72() { return &___IdAlgCms3DesWrap_72; } inline void set_IdAlgCms3DesWrap_72(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAlgCms3DesWrap_72 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAlgCms3DesWrap_72), (void*)value); } inline static int32_t get_offset_of_IdAlgCmsRC2Wrap_73() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAlgCmsRC2Wrap_73)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAlgCmsRC2Wrap_73() const { return ___IdAlgCmsRC2Wrap_73; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAlgCmsRC2Wrap_73() { return &___IdAlgCmsRC2Wrap_73; } inline void set_IdAlgCmsRC2Wrap_73(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAlgCmsRC2Wrap_73 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAlgCmsRC2Wrap_73), (void*)value); } inline static int32_t get_offset_of_IdAlgPwriKek_74() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAlgPwriKek_74)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAlgPwriKek_74() const { return ___IdAlgPwriKek_74; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAlgPwriKek_74() { return &___IdAlgPwriKek_74; } inline void set_IdAlgPwriKek_74(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAlgPwriKek_74 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAlgPwriKek_74), (void*)value); } inline static int32_t get_offset_of_IdAlgSsdh_75() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAlgSsdh_75)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAlgSsdh_75() const { return ___IdAlgSsdh_75; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAlgSsdh_75() { return &___IdAlgSsdh_75; } inline void set_IdAlgSsdh_75(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAlgSsdh_75 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAlgSsdh_75), (void*)value); } inline static int32_t get_offset_of_IdRsaKem_76() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdRsaKem_76)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdRsaKem_76() const { return ___IdRsaKem_76; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdRsaKem_76() { return &___IdRsaKem_76; } inline void set_IdRsaKem_76(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdRsaKem_76 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdRsaKem_76), (void*)value); } inline static int32_t get_offset_of_PreferSignedData_77() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___PreferSignedData_77)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_PreferSignedData_77() const { return ___PreferSignedData_77; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_PreferSignedData_77() { return &___PreferSignedData_77; } inline void set_PreferSignedData_77(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___PreferSignedData_77 = value; Il2CppCodeGenWriteBarrier((void**)(&___PreferSignedData_77), (void*)value); } inline static int32_t get_offset_of_CannotDecryptAny_78() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___CannotDecryptAny_78)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_CannotDecryptAny_78() const { return ___CannotDecryptAny_78; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_CannotDecryptAny_78() { return &___CannotDecryptAny_78; } inline void set_CannotDecryptAny_78(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___CannotDecryptAny_78 = value; Il2CppCodeGenWriteBarrier((void**)(&___CannotDecryptAny_78), (void*)value); } inline static int32_t get_offset_of_SmimeCapabilitiesVersions_79() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___SmimeCapabilitiesVersions_79)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_SmimeCapabilitiesVersions_79() const { return ___SmimeCapabilitiesVersions_79; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_SmimeCapabilitiesVersions_79() { return &___SmimeCapabilitiesVersions_79; } inline void set_SmimeCapabilitiesVersions_79(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___SmimeCapabilitiesVersions_79 = value; Il2CppCodeGenWriteBarrier((void**)(&___SmimeCapabilitiesVersions_79), (void*)value); } inline static int32_t get_offset_of_IdAAReceiptRequest_80() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAAReceiptRequest_80)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAAReceiptRequest_80() const { return ___IdAAReceiptRequest_80; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAAReceiptRequest_80() { return &___IdAAReceiptRequest_80; } inline void set_IdAAReceiptRequest_80(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAAReceiptRequest_80 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAAReceiptRequest_80), (void*)value); } inline static int32_t get_offset_of_IdCTAuthData_82() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdCTAuthData_82)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdCTAuthData_82() const { return ___IdCTAuthData_82; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdCTAuthData_82() { return &___IdCTAuthData_82; } inline void set_IdCTAuthData_82(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdCTAuthData_82 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdCTAuthData_82), (void*)value); } inline static int32_t get_offset_of_IdCTTstInfo_83() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdCTTstInfo_83)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdCTTstInfo_83() const { return ___IdCTTstInfo_83; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdCTTstInfo_83() { return &___IdCTTstInfo_83; } inline void set_IdCTTstInfo_83(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdCTTstInfo_83 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdCTTstInfo_83), (void*)value); } inline static int32_t get_offset_of_IdCTCompressedData_84() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdCTCompressedData_84)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdCTCompressedData_84() const { return ___IdCTCompressedData_84; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdCTCompressedData_84() { return &___IdCTCompressedData_84; } inline void set_IdCTCompressedData_84(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdCTCompressedData_84 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdCTCompressedData_84), (void*)value); } inline static int32_t get_offset_of_IdCTAuthEnvelopedData_85() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdCTAuthEnvelopedData_85)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdCTAuthEnvelopedData_85() const { return ___IdCTAuthEnvelopedData_85; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdCTAuthEnvelopedData_85() { return &___IdCTAuthEnvelopedData_85; } inline void set_IdCTAuthEnvelopedData_85(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdCTAuthEnvelopedData_85 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdCTAuthEnvelopedData_85), (void*)value); } inline static int32_t get_offset_of_IdCTTimestampedData_86() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdCTTimestampedData_86)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdCTTimestampedData_86() const { return ___IdCTTimestampedData_86; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdCTTimestampedData_86() { return &___IdCTTimestampedData_86; } inline void set_IdCTTimestampedData_86(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdCTTimestampedData_86 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdCTTimestampedData_86), (void*)value); } inline static int32_t get_offset_of_IdCtiEtsProofOfOrigin_88() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdCtiEtsProofOfOrigin_88)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdCtiEtsProofOfOrigin_88() const { return ___IdCtiEtsProofOfOrigin_88; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdCtiEtsProofOfOrigin_88() { return &___IdCtiEtsProofOfOrigin_88; } inline void set_IdCtiEtsProofOfOrigin_88(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdCtiEtsProofOfOrigin_88 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdCtiEtsProofOfOrigin_88), (void*)value); } inline static int32_t get_offset_of_IdCtiEtsProofOfReceipt_89() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdCtiEtsProofOfReceipt_89)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdCtiEtsProofOfReceipt_89() const { return ___IdCtiEtsProofOfReceipt_89; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdCtiEtsProofOfReceipt_89() { return &___IdCtiEtsProofOfReceipt_89; } inline void set_IdCtiEtsProofOfReceipt_89(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdCtiEtsProofOfReceipt_89 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdCtiEtsProofOfReceipt_89), (void*)value); } inline static int32_t get_offset_of_IdCtiEtsProofOfDelivery_90() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdCtiEtsProofOfDelivery_90)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdCtiEtsProofOfDelivery_90() const { return ___IdCtiEtsProofOfDelivery_90; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdCtiEtsProofOfDelivery_90() { return &___IdCtiEtsProofOfDelivery_90; } inline void set_IdCtiEtsProofOfDelivery_90(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdCtiEtsProofOfDelivery_90 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdCtiEtsProofOfDelivery_90), (void*)value); } inline static int32_t get_offset_of_IdCtiEtsProofOfSender_91() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdCtiEtsProofOfSender_91)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdCtiEtsProofOfSender_91() const { return ___IdCtiEtsProofOfSender_91; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdCtiEtsProofOfSender_91() { return &___IdCtiEtsProofOfSender_91; } inline void set_IdCtiEtsProofOfSender_91(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdCtiEtsProofOfSender_91 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdCtiEtsProofOfSender_91), (void*)value); } inline static int32_t get_offset_of_IdCtiEtsProofOfApproval_92() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdCtiEtsProofOfApproval_92)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdCtiEtsProofOfApproval_92() const { return ___IdCtiEtsProofOfApproval_92; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdCtiEtsProofOfApproval_92() { return &___IdCtiEtsProofOfApproval_92; } inline void set_IdCtiEtsProofOfApproval_92(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdCtiEtsProofOfApproval_92 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdCtiEtsProofOfApproval_92), (void*)value); } inline static int32_t get_offset_of_IdCtiEtsProofOfCreation_93() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdCtiEtsProofOfCreation_93)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdCtiEtsProofOfCreation_93() const { return ___IdCtiEtsProofOfCreation_93; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdCtiEtsProofOfCreation_93() { return &___IdCtiEtsProofOfCreation_93; } inline void set_IdCtiEtsProofOfCreation_93(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdCtiEtsProofOfCreation_93 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdCtiEtsProofOfCreation_93), (void*)value); } inline static int32_t get_offset_of_IdAAOid_95() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAAOid_95)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAAOid_95() const { return ___IdAAOid_95; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAAOid_95() { return &___IdAAOid_95; } inline void set_IdAAOid_95(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAAOid_95 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAAOid_95), (void*)value); } inline static int32_t get_offset_of_IdAAContentHint_96() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAAContentHint_96)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAAContentHint_96() const { return ___IdAAContentHint_96; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAAContentHint_96() { return &___IdAAContentHint_96; } inline void set_IdAAContentHint_96(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAAContentHint_96 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAAContentHint_96), (void*)value); } inline static int32_t get_offset_of_IdAAMsgSigDigest_97() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAAMsgSigDigest_97)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAAMsgSigDigest_97() const { return ___IdAAMsgSigDigest_97; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAAMsgSigDigest_97() { return &___IdAAMsgSigDigest_97; } inline void set_IdAAMsgSigDigest_97(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAAMsgSigDigest_97 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAAMsgSigDigest_97), (void*)value); } inline static int32_t get_offset_of_IdAAContentReference_98() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAAContentReference_98)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAAContentReference_98() const { return ___IdAAContentReference_98; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAAContentReference_98() { return &___IdAAContentReference_98; } inline void set_IdAAContentReference_98(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAAContentReference_98 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAAContentReference_98), (void*)value); } inline static int32_t get_offset_of_IdAAEncrypKeyPref_99() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAAEncrypKeyPref_99)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAAEncrypKeyPref_99() const { return ___IdAAEncrypKeyPref_99; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAAEncrypKeyPref_99() { return &___IdAAEncrypKeyPref_99; } inline void set_IdAAEncrypKeyPref_99(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAAEncrypKeyPref_99 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAAEncrypKeyPref_99), (void*)value); } inline static int32_t get_offset_of_IdAASigningCertificate_100() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAASigningCertificate_100)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAASigningCertificate_100() const { return ___IdAASigningCertificate_100; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAASigningCertificate_100() { return &___IdAASigningCertificate_100; } inline void set_IdAASigningCertificate_100(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAASigningCertificate_100 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAASigningCertificate_100), (void*)value); } inline static int32_t get_offset_of_IdAASigningCertificateV2_101() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAASigningCertificateV2_101)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAASigningCertificateV2_101() const { return ___IdAASigningCertificateV2_101; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAASigningCertificateV2_101() { return &___IdAASigningCertificateV2_101; } inline void set_IdAASigningCertificateV2_101(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAASigningCertificateV2_101 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAASigningCertificateV2_101), (void*)value); } inline static int32_t get_offset_of_IdAAContentIdentifier_102() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAAContentIdentifier_102)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAAContentIdentifier_102() const { return ___IdAAContentIdentifier_102; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAAContentIdentifier_102() { return &___IdAAContentIdentifier_102; } inline void set_IdAAContentIdentifier_102(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAAContentIdentifier_102 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAAContentIdentifier_102), (void*)value); } inline static int32_t get_offset_of_IdAASignatureTimeStampToken_103() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAASignatureTimeStampToken_103)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAASignatureTimeStampToken_103() const { return ___IdAASignatureTimeStampToken_103; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAASignatureTimeStampToken_103() { return &___IdAASignatureTimeStampToken_103; } inline void set_IdAASignatureTimeStampToken_103(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAASignatureTimeStampToken_103 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAASignatureTimeStampToken_103), (void*)value); } inline static int32_t get_offset_of_IdAAEtsSigPolicyID_104() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAAEtsSigPolicyID_104)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAAEtsSigPolicyID_104() const { return ___IdAAEtsSigPolicyID_104; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAAEtsSigPolicyID_104() { return &___IdAAEtsSigPolicyID_104; } inline void set_IdAAEtsSigPolicyID_104(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAAEtsSigPolicyID_104 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAAEtsSigPolicyID_104), (void*)value); } inline static int32_t get_offset_of_IdAAEtsCommitmentType_105() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAAEtsCommitmentType_105)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAAEtsCommitmentType_105() const { return ___IdAAEtsCommitmentType_105; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAAEtsCommitmentType_105() { return &___IdAAEtsCommitmentType_105; } inline void set_IdAAEtsCommitmentType_105(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAAEtsCommitmentType_105 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAAEtsCommitmentType_105), (void*)value); } inline static int32_t get_offset_of_IdAAEtsSignerLocation_106() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAAEtsSignerLocation_106)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAAEtsSignerLocation_106() const { return ___IdAAEtsSignerLocation_106; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAAEtsSignerLocation_106() { return &___IdAAEtsSignerLocation_106; } inline void set_IdAAEtsSignerLocation_106(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAAEtsSignerLocation_106 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAAEtsSignerLocation_106), (void*)value); } inline static int32_t get_offset_of_IdAAEtsSignerAttr_107() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAAEtsSignerAttr_107)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAAEtsSignerAttr_107() const { return ___IdAAEtsSignerAttr_107; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAAEtsSignerAttr_107() { return &___IdAAEtsSignerAttr_107; } inline void set_IdAAEtsSignerAttr_107(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAAEtsSignerAttr_107 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAAEtsSignerAttr_107), (void*)value); } inline static int32_t get_offset_of_IdAAEtsOtherSigCert_108() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAAEtsOtherSigCert_108)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAAEtsOtherSigCert_108() const { return ___IdAAEtsOtherSigCert_108; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAAEtsOtherSigCert_108() { return &___IdAAEtsOtherSigCert_108; } inline void set_IdAAEtsOtherSigCert_108(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAAEtsOtherSigCert_108 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAAEtsOtherSigCert_108), (void*)value); } inline static int32_t get_offset_of_IdAAEtsContentTimestamp_109() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAAEtsContentTimestamp_109)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAAEtsContentTimestamp_109() const { return ___IdAAEtsContentTimestamp_109; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAAEtsContentTimestamp_109() { return &___IdAAEtsContentTimestamp_109; } inline void set_IdAAEtsContentTimestamp_109(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAAEtsContentTimestamp_109 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAAEtsContentTimestamp_109), (void*)value); } inline static int32_t get_offset_of_IdAAEtsCertificateRefs_110() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAAEtsCertificateRefs_110)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAAEtsCertificateRefs_110() const { return ___IdAAEtsCertificateRefs_110; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAAEtsCertificateRefs_110() { return &___IdAAEtsCertificateRefs_110; } inline void set_IdAAEtsCertificateRefs_110(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAAEtsCertificateRefs_110 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAAEtsCertificateRefs_110), (void*)value); } inline static int32_t get_offset_of_IdAAEtsRevocationRefs_111() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAAEtsRevocationRefs_111)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAAEtsRevocationRefs_111() const { return ___IdAAEtsRevocationRefs_111; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAAEtsRevocationRefs_111() { return &___IdAAEtsRevocationRefs_111; } inline void set_IdAAEtsRevocationRefs_111(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAAEtsRevocationRefs_111 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAAEtsRevocationRefs_111), (void*)value); } inline static int32_t get_offset_of_IdAAEtsCertValues_112() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAAEtsCertValues_112)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAAEtsCertValues_112() const { return ___IdAAEtsCertValues_112; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAAEtsCertValues_112() { return &___IdAAEtsCertValues_112; } inline void set_IdAAEtsCertValues_112(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAAEtsCertValues_112 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAAEtsCertValues_112), (void*)value); } inline static int32_t get_offset_of_IdAAEtsRevocationValues_113() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAAEtsRevocationValues_113)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAAEtsRevocationValues_113() const { return ___IdAAEtsRevocationValues_113; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAAEtsRevocationValues_113() { return &___IdAAEtsRevocationValues_113; } inline void set_IdAAEtsRevocationValues_113(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAAEtsRevocationValues_113 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAAEtsRevocationValues_113), (void*)value); } inline static int32_t get_offset_of_IdAAEtsEscTimeStamp_114() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAAEtsEscTimeStamp_114)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAAEtsEscTimeStamp_114() const { return ___IdAAEtsEscTimeStamp_114; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAAEtsEscTimeStamp_114() { return &___IdAAEtsEscTimeStamp_114; } inline void set_IdAAEtsEscTimeStamp_114(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAAEtsEscTimeStamp_114 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAAEtsEscTimeStamp_114), (void*)value); } inline static int32_t get_offset_of_IdAAEtsCertCrlTimestamp_115() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAAEtsCertCrlTimestamp_115)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAAEtsCertCrlTimestamp_115() const { return ___IdAAEtsCertCrlTimestamp_115; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAAEtsCertCrlTimestamp_115() { return &___IdAAEtsCertCrlTimestamp_115; } inline void set_IdAAEtsCertCrlTimestamp_115(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAAEtsCertCrlTimestamp_115 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAAEtsCertCrlTimestamp_115), (void*)value); } inline static int32_t get_offset_of_IdAAEtsArchiveTimestamp_116() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAAEtsArchiveTimestamp_116)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAAEtsArchiveTimestamp_116() const { return ___IdAAEtsArchiveTimestamp_116; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAAEtsArchiveTimestamp_116() { return &___IdAAEtsArchiveTimestamp_116; } inline void set_IdAAEtsArchiveTimestamp_116(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAAEtsArchiveTimestamp_116 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAAEtsArchiveTimestamp_116), (void*)value); } inline static int32_t get_offset_of_IdAADecryptKeyID_117() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAADecryptKeyID_117)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAADecryptKeyID_117() const { return ___IdAADecryptKeyID_117; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAADecryptKeyID_117() { return &___IdAADecryptKeyID_117; } inline void set_IdAADecryptKeyID_117(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAADecryptKeyID_117 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAADecryptKeyID_117), (void*)value); } inline static int32_t get_offset_of_IdAAImplCryptoAlgs_118() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAAImplCryptoAlgs_118)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAAImplCryptoAlgs_118() const { return ___IdAAImplCryptoAlgs_118; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAAImplCryptoAlgs_118() { return &___IdAAImplCryptoAlgs_118; } inline void set_IdAAImplCryptoAlgs_118(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAAImplCryptoAlgs_118 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAAImplCryptoAlgs_118), (void*)value); } inline static int32_t get_offset_of_IdAAAsymmDecryptKeyID_119() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAAAsymmDecryptKeyID_119)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAAAsymmDecryptKeyID_119() const { return ___IdAAAsymmDecryptKeyID_119; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAAAsymmDecryptKeyID_119() { return &___IdAAAsymmDecryptKeyID_119; } inline void set_IdAAAsymmDecryptKeyID_119(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAAAsymmDecryptKeyID_119 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAAAsymmDecryptKeyID_119), (void*)value); } inline static int32_t get_offset_of_IdAAImplCompressAlgs_120() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAAImplCompressAlgs_120)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAAImplCompressAlgs_120() const { return ___IdAAImplCompressAlgs_120; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAAImplCompressAlgs_120() { return &___IdAAImplCompressAlgs_120; } inline void set_IdAAImplCompressAlgs_120(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAAImplCompressAlgs_120 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAAImplCompressAlgs_120), (void*)value); } inline static int32_t get_offset_of_IdAACommunityIdentifiers_121() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAACommunityIdentifiers_121)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAACommunityIdentifiers_121() const { return ___IdAACommunityIdentifiers_121; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAACommunityIdentifiers_121() { return &___IdAACommunityIdentifiers_121; } inline void set_IdAACommunityIdentifiers_121(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAACommunityIdentifiers_121 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAACommunityIdentifiers_121), (void*)value); } inline static int32_t get_offset_of_IdAASigPolicyID_122() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAASigPolicyID_122)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAASigPolicyID_122() const { return ___IdAASigPolicyID_122; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAASigPolicyID_122() { return &___IdAASigPolicyID_122; } inline void set_IdAASigPolicyID_122(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAASigPolicyID_122 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAASigPolicyID_122), (void*)value); } inline static int32_t get_offset_of_IdAACommitmentType_123() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAACommitmentType_123)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAACommitmentType_123() const { return ___IdAACommitmentType_123; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAACommitmentType_123() { return &___IdAACommitmentType_123; } inline void set_IdAACommitmentType_123(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAACommitmentType_123 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAACommitmentType_123), (void*)value); } inline static int32_t get_offset_of_IdAASignerLocation_124() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAASignerLocation_124)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAASignerLocation_124() const { return ___IdAASignerLocation_124; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAASignerLocation_124() { return &___IdAASignerLocation_124; } inline void set_IdAASignerLocation_124(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAASignerLocation_124 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAASignerLocation_124), (void*)value); } inline static int32_t get_offset_of_IdAAOtherSigCert_125() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdAAOtherSigCert_125)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAAOtherSigCert_125() const { return ___IdAAOtherSigCert_125; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAAOtherSigCert_125() { return &___IdAAOtherSigCert_125; } inline void set_IdAAOtherSigCert_125(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAAOtherSigCert_125 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAAOtherSigCert_125), (void*)value); } inline static int32_t get_offset_of_IdSpqEtsUri_127() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdSpqEtsUri_127)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdSpqEtsUri_127() const { return ___IdSpqEtsUri_127; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdSpqEtsUri_127() { return &___IdSpqEtsUri_127; } inline void set_IdSpqEtsUri_127(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdSpqEtsUri_127 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdSpqEtsUri_127), (void*)value); } inline static int32_t get_offset_of_IdSpqEtsUNotice_128() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___IdSpqEtsUNotice_128)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdSpqEtsUNotice_128() const { return ___IdSpqEtsUNotice_128; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdSpqEtsUNotice_128() { return &___IdSpqEtsUNotice_128; } inline void set_IdSpqEtsUNotice_128(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdSpqEtsUNotice_128 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdSpqEtsUNotice_128), (void*)value); } inline static int32_t get_offset_of_KeyBag_131() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___KeyBag_131)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_KeyBag_131() const { return ___KeyBag_131; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_KeyBag_131() { return &___KeyBag_131; } inline void set_KeyBag_131(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___KeyBag_131 = value; Il2CppCodeGenWriteBarrier((void**)(&___KeyBag_131), (void*)value); } inline static int32_t get_offset_of_Pkcs8ShroudedKeyBag_132() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___Pkcs8ShroudedKeyBag_132)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Pkcs8ShroudedKeyBag_132() const { return ___Pkcs8ShroudedKeyBag_132; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Pkcs8ShroudedKeyBag_132() { return &___Pkcs8ShroudedKeyBag_132; } inline void set_Pkcs8ShroudedKeyBag_132(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Pkcs8ShroudedKeyBag_132 = value; Il2CppCodeGenWriteBarrier((void**)(&___Pkcs8ShroudedKeyBag_132), (void*)value); } inline static int32_t get_offset_of_CertBag_133() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___CertBag_133)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_CertBag_133() const { return ___CertBag_133; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_CertBag_133() { return &___CertBag_133; } inline void set_CertBag_133(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___CertBag_133 = value; Il2CppCodeGenWriteBarrier((void**)(&___CertBag_133), (void*)value); } inline static int32_t get_offset_of_CrlBag_134() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___CrlBag_134)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_CrlBag_134() const { return ___CrlBag_134; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_CrlBag_134() { return &___CrlBag_134; } inline void set_CrlBag_134(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___CrlBag_134 = value; Il2CppCodeGenWriteBarrier((void**)(&___CrlBag_134), (void*)value); } inline static int32_t get_offset_of_SecretBag_135() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___SecretBag_135)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_SecretBag_135() const { return ___SecretBag_135; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_SecretBag_135() { return &___SecretBag_135; } inline void set_SecretBag_135(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___SecretBag_135 = value; Il2CppCodeGenWriteBarrier((void**)(&___SecretBag_135), (void*)value); } inline static int32_t get_offset_of_SafeContentsBag_136() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___SafeContentsBag_136)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_SafeContentsBag_136() const { return ___SafeContentsBag_136; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_SafeContentsBag_136() { return &___SafeContentsBag_136; } inline void set_SafeContentsBag_136(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___SafeContentsBag_136 = value; Il2CppCodeGenWriteBarrier((void**)(&___SafeContentsBag_136), (void*)value); } inline static int32_t get_offset_of_PbeWithShaAnd128BitRC4_138() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___PbeWithShaAnd128BitRC4_138)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_PbeWithShaAnd128BitRC4_138() const { return ___PbeWithShaAnd128BitRC4_138; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_PbeWithShaAnd128BitRC4_138() { return &___PbeWithShaAnd128BitRC4_138; } inline void set_PbeWithShaAnd128BitRC4_138(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___PbeWithShaAnd128BitRC4_138 = value; Il2CppCodeGenWriteBarrier((void**)(&___PbeWithShaAnd128BitRC4_138), (void*)value); } inline static int32_t get_offset_of_PbeWithShaAnd40BitRC4_139() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___PbeWithShaAnd40BitRC4_139)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_PbeWithShaAnd40BitRC4_139() const { return ___PbeWithShaAnd40BitRC4_139; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_PbeWithShaAnd40BitRC4_139() { return &___PbeWithShaAnd40BitRC4_139; } inline void set_PbeWithShaAnd40BitRC4_139(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___PbeWithShaAnd40BitRC4_139 = value; Il2CppCodeGenWriteBarrier((void**)(&___PbeWithShaAnd40BitRC4_139), (void*)value); } inline static int32_t get_offset_of_PbeWithShaAnd3KeyTripleDesCbc_140() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___PbeWithShaAnd3KeyTripleDesCbc_140)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_PbeWithShaAnd3KeyTripleDesCbc_140() const { return ___PbeWithShaAnd3KeyTripleDesCbc_140; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_PbeWithShaAnd3KeyTripleDesCbc_140() { return &___PbeWithShaAnd3KeyTripleDesCbc_140; } inline void set_PbeWithShaAnd3KeyTripleDesCbc_140(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___PbeWithShaAnd3KeyTripleDesCbc_140 = value; Il2CppCodeGenWriteBarrier((void**)(&___PbeWithShaAnd3KeyTripleDesCbc_140), (void*)value); } inline static int32_t get_offset_of_PbeWithShaAnd2KeyTripleDesCbc_141() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___PbeWithShaAnd2KeyTripleDesCbc_141)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_PbeWithShaAnd2KeyTripleDesCbc_141() const { return ___PbeWithShaAnd2KeyTripleDesCbc_141; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_PbeWithShaAnd2KeyTripleDesCbc_141() { return &___PbeWithShaAnd2KeyTripleDesCbc_141; } inline void set_PbeWithShaAnd2KeyTripleDesCbc_141(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___PbeWithShaAnd2KeyTripleDesCbc_141 = value; Il2CppCodeGenWriteBarrier((void**)(&___PbeWithShaAnd2KeyTripleDesCbc_141), (void*)value); } inline static int32_t get_offset_of_PbeWithShaAnd128BitRC2Cbc_142() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___PbeWithShaAnd128BitRC2Cbc_142)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_PbeWithShaAnd128BitRC2Cbc_142() const { return ___PbeWithShaAnd128BitRC2Cbc_142; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_PbeWithShaAnd128BitRC2Cbc_142() { return &___PbeWithShaAnd128BitRC2Cbc_142; } inline void set_PbeWithShaAnd128BitRC2Cbc_142(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___PbeWithShaAnd128BitRC2Cbc_142 = value; Il2CppCodeGenWriteBarrier((void**)(&___PbeWithShaAnd128BitRC2Cbc_142), (void*)value); } inline static int32_t get_offset_of_PbewithShaAnd40BitRC2Cbc_143() { return static_cast(offsetof(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields, ___PbewithShaAnd40BitRC2Cbc_143)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_PbewithShaAnd40BitRC2Cbc_143() const { return ___PbewithShaAnd40BitRC2Cbc_143; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_PbewithShaAnd40BitRC2Cbc_143() { return &___PbewithShaAnd40BitRC2Cbc_143; } inline void set_PbewithShaAnd40BitRC2Cbc_143(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___PbewithShaAnd40BitRC2Cbc_143 = value; Il2CppCodeGenWriteBarrier((void**)(&___PbewithShaAnd40BitRC2Cbc_143), (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); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Engines.Salsa20Engine struct Salsa20Engine_t661640C461D9868FAA0FE0F7765F0380147FEC66 : public RuntimeObject { public: // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Engines.Salsa20Engine::rounds int32_t ___rounds_5; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Engines.Salsa20Engine::index int32_t ___index_6; // System.UInt32[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Engines.Salsa20Engine::engineState UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* ___engineState_7; // System.UInt32[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Engines.Salsa20Engine::x UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* ___x_8; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Engines.Salsa20Engine::keyStream ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___keyStream_9; // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Engines.Salsa20Engine::initialised bool ___initialised_10; // System.UInt32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Engines.Salsa20Engine::cW0 uint32_t ___cW0_11; // System.UInt32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Engines.Salsa20Engine::cW1 uint32_t ___cW1_12; // System.UInt32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Engines.Salsa20Engine::cW2 uint32_t ___cW2_13; public: inline static int32_t get_offset_of_rounds_5() { return static_cast(offsetof(Salsa20Engine_t661640C461D9868FAA0FE0F7765F0380147FEC66, ___rounds_5)); } inline int32_t get_rounds_5() const { return ___rounds_5; } inline int32_t* get_address_of_rounds_5() { return &___rounds_5; } inline void set_rounds_5(int32_t value) { ___rounds_5 = value; } inline static int32_t get_offset_of_index_6() { return static_cast(offsetof(Salsa20Engine_t661640C461D9868FAA0FE0F7765F0380147FEC66, ___index_6)); } inline int32_t get_index_6() const { return ___index_6; } inline int32_t* get_address_of_index_6() { return &___index_6; } inline void set_index_6(int32_t value) { ___index_6 = value; } inline static int32_t get_offset_of_engineState_7() { return static_cast(offsetof(Salsa20Engine_t661640C461D9868FAA0FE0F7765F0380147FEC66, ___engineState_7)); } inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* get_engineState_7() const { return ___engineState_7; } inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF** get_address_of_engineState_7() { return &___engineState_7; } inline void set_engineState_7(UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* value) { ___engineState_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___engineState_7), (void*)value); } inline static int32_t get_offset_of_x_8() { return static_cast(offsetof(Salsa20Engine_t661640C461D9868FAA0FE0F7765F0380147FEC66, ___x_8)); } inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* get_x_8() const { return ___x_8; } inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF** get_address_of_x_8() { return &___x_8; } inline void set_x_8(UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* value) { ___x_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___x_8), (void*)value); } inline static int32_t get_offset_of_keyStream_9() { return static_cast(offsetof(Salsa20Engine_t661640C461D9868FAA0FE0F7765F0380147FEC66, ___keyStream_9)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_keyStream_9() const { return ___keyStream_9; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_keyStream_9() { return &___keyStream_9; } inline void set_keyStream_9(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___keyStream_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___keyStream_9), (void*)value); } inline static int32_t get_offset_of_initialised_10() { return static_cast(offsetof(Salsa20Engine_t661640C461D9868FAA0FE0F7765F0380147FEC66, ___initialised_10)); } inline bool get_initialised_10() const { return ___initialised_10; } inline bool* get_address_of_initialised_10() { return &___initialised_10; } inline void set_initialised_10(bool value) { ___initialised_10 = value; } inline static int32_t get_offset_of_cW0_11() { return static_cast(offsetof(Salsa20Engine_t661640C461D9868FAA0FE0F7765F0380147FEC66, ___cW0_11)); } inline uint32_t get_cW0_11() const { return ___cW0_11; } inline uint32_t* get_address_of_cW0_11() { return &___cW0_11; } inline void set_cW0_11(uint32_t value) { ___cW0_11 = value; } inline static int32_t get_offset_of_cW1_12() { return static_cast(offsetof(Salsa20Engine_t661640C461D9868FAA0FE0F7765F0380147FEC66, ___cW1_12)); } inline uint32_t get_cW1_12() const { return ___cW1_12; } inline uint32_t* get_address_of_cW1_12() { return &___cW1_12; } inline void set_cW1_12(uint32_t value) { ___cW1_12 = value; } inline static int32_t get_offset_of_cW2_13() { return static_cast(offsetof(Salsa20Engine_t661640C461D9868FAA0FE0F7765F0380147FEC66, ___cW2_13)); } inline uint32_t get_cW2_13() const { return ___cW2_13; } inline uint32_t* get_address_of_cW2_13() { return &___cW2_13; } inline void set_cW2_13(uint32_t value) { ___cW2_13 = value; } }; struct Salsa20Engine_t661640C461D9868FAA0FE0F7765F0380147FEC66_StaticFields { public: // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Engines.Salsa20Engine::DEFAULT_ROUNDS int32_t ___DEFAULT_ROUNDS_0; // System.UInt32[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Engines.Salsa20Engine::TAU_SIGMA UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* ___TAU_SIGMA_2; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Engines.Salsa20Engine::sigma ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___sigma_3; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Engines.Salsa20Engine::tau ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___tau_4; public: inline static int32_t get_offset_of_DEFAULT_ROUNDS_0() { return static_cast(offsetof(Salsa20Engine_t661640C461D9868FAA0FE0F7765F0380147FEC66_StaticFields, ___DEFAULT_ROUNDS_0)); } inline int32_t get_DEFAULT_ROUNDS_0() const { return ___DEFAULT_ROUNDS_0; } inline int32_t* get_address_of_DEFAULT_ROUNDS_0() { return &___DEFAULT_ROUNDS_0; } inline void set_DEFAULT_ROUNDS_0(int32_t value) { ___DEFAULT_ROUNDS_0 = value; } inline static int32_t get_offset_of_TAU_SIGMA_2() { return static_cast(offsetof(Salsa20Engine_t661640C461D9868FAA0FE0F7765F0380147FEC66_StaticFields, ___TAU_SIGMA_2)); } inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* get_TAU_SIGMA_2() const { return ___TAU_SIGMA_2; } inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF** get_address_of_TAU_SIGMA_2() { return &___TAU_SIGMA_2; } inline void set_TAU_SIGMA_2(UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* value) { ___TAU_SIGMA_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___TAU_SIGMA_2), (void*)value); } inline static int32_t get_offset_of_sigma_3() { return static_cast(offsetof(Salsa20Engine_t661640C461D9868FAA0FE0F7765F0380147FEC66_StaticFields, ___sigma_3)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_sigma_3() const { return ___sigma_3; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_sigma_3() { return &___sigma_3; } inline void set_sigma_3(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___sigma_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___sigma_3), (void*)value); } inline static int32_t get_offset_of_tau_4() { return static_cast(offsetof(Salsa20Engine_t661640C461D9868FAA0FE0F7765F0380147FEC66_StaticFields, ___tau_4)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_tau_4() const { return ___tau_4; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_tau_4() { return &___tau_4; } inline void set_tau_4(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___tau_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___tau_4), (void*)value); } }; // BestHTTP.Decompression.Zlib.StaticTree struct StaticTree_t2695AB91EBA8322FADCB4C06A07B8ACAA5374809 : public RuntimeObject { public: // System.Int16[] BestHTTP.Decompression.Zlib.StaticTree::treeCodes Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* ___treeCodes_5; // System.Int32[] BestHTTP.Decompression.Zlib.StaticTree::extraBits Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___extraBits_6; // System.Int32 BestHTTP.Decompression.Zlib.StaticTree::extraBase int32_t ___extraBase_7; // System.Int32 BestHTTP.Decompression.Zlib.StaticTree::elems int32_t ___elems_8; // System.Int32 BestHTTP.Decompression.Zlib.StaticTree::maxLength int32_t ___maxLength_9; public: inline static int32_t get_offset_of_treeCodes_5() { return static_cast(offsetof(StaticTree_t2695AB91EBA8322FADCB4C06A07B8ACAA5374809, ___treeCodes_5)); } inline Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* get_treeCodes_5() const { return ___treeCodes_5; } inline Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD** get_address_of_treeCodes_5() { return &___treeCodes_5; } inline void set_treeCodes_5(Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* value) { ___treeCodes_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___treeCodes_5), (void*)value); } inline static int32_t get_offset_of_extraBits_6() { return static_cast(offsetof(StaticTree_t2695AB91EBA8322FADCB4C06A07B8ACAA5374809, ___extraBits_6)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_extraBits_6() const { return ___extraBits_6; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_extraBits_6() { return &___extraBits_6; } inline void set_extraBits_6(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___extraBits_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___extraBits_6), (void*)value); } inline static int32_t get_offset_of_extraBase_7() { return static_cast(offsetof(StaticTree_t2695AB91EBA8322FADCB4C06A07B8ACAA5374809, ___extraBase_7)); } inline int32_t get_extraBase_7() const { return ___extraBase_7; } inline int32_t* get_address_of_extraBase_7() { return &___extraBase_7; } inline void set_extraBase_7(int32_t value) { ___extraBase_7 = value; } inline static int32_t get_offset_of_elems_8() { return static_cast(offsetof(StaticTree_t2695AB91EBA8322FADCB4C06A07B8ACAA5374809, ___elems_8)); } inline int32_t get_elems_8() const { return ___elems_8; } inline int32_t* get_address_of_elems_8() { return &___elems_8; } inline void set_elems_8(int32_t value) { ___elems_8 = value; } inline static int32_t get_offset_of_maxLength_9() { return static_cast(offsetof(StaticTree_t2695AB91EBA8322FADCB4C06A07B8ACAA5374809, ___maxLength_9)); } inline int32_t get_maxLength_9() const { return ___maxLength_9; } inline int32_t* get_address_of_maxLength_9() { return &___maxLength_9; } inline void set_maxLength_9(int32_t value) { ___maxLength_9 = value; } }; struct StaticTree_t2695AB91EBA8322FADCB4C06A07B8ACAA5374809_StaticFields { public: // System.Int16[] BestHTTP.Decompression.Zlib.StaticTree::lengthAndLiteralsTreeCodes Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* ___lengthAndLiteralsTreeCodes_0; // System.Int16[] BestHTTP.Decompression.Zlib.StaticTree::distTreeCodes Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* ___distTreeCodes_1; // BestHTTP.Decompression.Zlib.StaticTree BestHTTP.Decompression.Zlib.StaticTree::Literals StaticTree_t2695AB91EBA8322FADCB4C06A07B8ACAA5374809 * ___Literals_2; // BestHTTP.Decompression.Zlib.StaticTree BestHTTP.Decompression.Zlib.StaticTree::Distances StaticTree_t2695AB91EBA8322FADCB4C06A07B8ACAA5374809 * ___Distances_3; // BestHTTP.Decompression.Zlib.StaticTree BestHTTP.Decompression.Zlib.StaticTree::BitLengths StaticTree_t2695AB91EBA8322FADCB4C06A07B8ACAA5374809 * ___BitLengths_4; public: inline static int32_t get_offset_of_lengthAndLiteralsTreeCodes_0() { return static_cast(offsetof(StaticTree_t2695AB91EBA8322FADCB4C06A07B8ACAA5374809_StaticFields, ___lengthAndLiteralsTreeCodes_0)); } inline Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* get_lengthAndLiteralsTreeCodes_0() const { return ___lengthAndLiteralsTreeCodes_0; } inline Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD** get_address_of_lengthAndLiteralsTreeCodes_0() { return &___lengthAndLiteralsTreeCodes_0; } inline void set_lengthAndLiteralsTreeCodes_0(Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* value) { ___lengthAndLiteralsTreeCodes_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___lengthAndLiteralsTreeCodes_0), (void*)value); } inline static int32_t get_offset_of_distTreeCodes_1() { return static_cast(offsetof(StaticTree_t2695AB91EBA8322FADCB4C06A07B8ACAA5374809_StaticFields, ___distTreeCodes_1)); } inline Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* get_distTreeCodes_1() const { return ___distTreeCodes_1; } inline Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD** get_address_of_distTreeCodes_1() { return &___distTreeCodes_1; } inline void set_distTreeCodes_1(Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* value) { ___distTreeCodes_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___distTreeCodes_1), (void*)value); } inline static int32_t get_offset_of_Literals_2() { return static_cast(offsetof(StaticTree_t2695AB91EBA8322FADCB4C06A07B8ACAA5374809_StaticFields, ___Literals_2)); } inline StaticTree_t2695AB91EBA8322FADCB4C06A07B8ACAA5374809 * get_Literals_2() const { return ___Literals_2; } inline StaticTree_t2695AB91EBA8322FADCB4C06A07B8ACAA5374809 ** get_address_of_Literals_2() { return &___Literals_2; } inline void set_Literals_2(StaticTree_t2695AB91EBA8322FADCB4C06A07B8ACAA5374809 * value) { ___Literals_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___Literals_2), (void*)value); } inline static int32_t get_offset_of_Distances_3() { return static_cast(offsetof(StaticTree_t2695AB91EBA8322FADCB4C06A07B8ACAA5374809_StaticFields, ___Distances_3)); } inline StaticTree_t2695AB91EBA8322FADCB4C06A07B8ACAA5374809 * get_Distances_3() const { return ___Distances_3; } inline StaticTree_t2695AB91EBA8322FADCB4C06A07B8ACAA5374809 ** get_address_of_Distances_3() { return &___Distances_3; } inline void set_Distances_3(StaticTree_t2695AB91EBA8322FADCB4C06A07B8ACAA5374809 * value) { ___Distances_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___Distances_3), (void*)value); } inline static int32_t get_offset_of_BitLengths_4() { return static_cast(offsetof(StaticTree_t2695AB91EBA8322FADCB4C06A07B8ACAA5374809_StaticFields, ___BitLengths_4)); } inline StaticTree_t2695AB91EBA8322FADCB4C06A07B8ACAA5374809 * get_BitLengths_4() const { return ___BitLengths_4; } inline StaticTree_t2695AB91EBA8322FADCB4C06A07B8ACAA5374809 ** get_address_of_BitLengths_4() { return &___BitLengths_4; } inline void set_BitLengths_4(StaticTree_t2695AB91EBA8322FADCB4C06A07B8ACAA5374809 * value) { ___BitLengths_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___BitLengths_4), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.StaticTree struct StaticTree_tFAE01A2B378F804F70FD3C06C5F18BEF8E31CFE5 : public RuntimeObject { public: // System.Int16[] BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.StaticTree::static_tree Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* ___static_tree_12; // System.Int32[] BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.StaticTree::extra_bits Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___extra_bits_13; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.StaticTree::extra_base int32_t ___extra_base_14; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.StaticTree::elems int32_t ___elems_15; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.StaticTree::max_length int32_t ___max_length_16; public: inline static int32_t get_offset_of_static_tree_12() { return static_cast(offsetof(StaticTree_tFAE01A2B378F804F70FD3C06C5F18BEF8E31CFE5, ___static_tree_12)); } inline Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* get_static_tree_12() const { return ___static_tree_12; } inline Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD** get_address_of_static_tree_12() { return &___static_tree_12; } inline void set_static_tree_12(Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* value) { ___static_tree_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___static_tree_12), (void*)value); } inline static int32_t get_offset_of_extra_bits_13() { return static_cast(offsetof(StaticTree_tFAE01A2B378F804F70FD3C06C5F18BEF8E31CFE5, ___extra_bits_13)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_extra_bits_13() const { return ___extra_bits_13; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_extra_bits_13() { return &___extra_bits_13; } inline void set_extra_bits_13(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___extra_bits_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___extra_bits_13), (void*)value); } inline static int32_t get_offset_of_extra_base_14() { return static_cast(offsetof(StaticTree_tFAE01A2B378F804F70FD3C06C5F18BEF8E31CFE5, ___extra_base_14)); } inline int32_t get_extra_base_14() const { return ___extra_base_14; } inline int32_t* get_address_of_extra_base_14() { return &___extra_base_14; } inline void set_extra_base_14(int32_t value) { ___extra_base_14 = value; } inline static int32_t get_offset_of_elems_15() { return static_cast(offsetof(StaticTree_tFAE01A2B378F804F70FD3C06C5F18BEF8E31CFE5, ___elems_15)); } inline int32_t get_elems_15() const { return ___elems_15; } inline int32_t* get_address_of_elems_15() { return &___elems_15; } inline void set_elems_15(int32_t value) { ___elems_15 = value; } inline static int32_t get_offset_of_max_length_16() { return static_cast(offsetof(StaticTree_tFAE01A2B378F804F70FD3C06C5F18BEF8E31CFE5, ___max_length_16)); } inline int32_t get_max_length_16() const { return ___max_length_16; } inline int32_t* get_address_of_max_length_16() { return &___max_length_16; } inline void set_max_length_16(int32_t value) { ___max_length_16 = value; } }; struct StaticTree_tFAE01A2B378F804F70FD3C06C5F18BEF8E31CFE5_StaticFields { public: // System.Int16[] BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.StaticTree::static_ltree Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* ___static_ltree_7; // System.Int16[] BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.StaticTree::static_dtree Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* ___static_dtree_8; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.StaticTree BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.StaticTree::static_l_desc StaticTree_tFAE01A2B378F804F70FD3C06C5F18BEF8E31CFE5 * ___static_l_desc_9; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.StaticTree BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.StaticTree::static_d_desc StaticTree_tFAE01A2B378F804F70FD3C06C5F18BEF8E31CFE5 * ___static_d_desc_10; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.StaticTree BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.StaticTree::static_bl_desc StaticTree_tFAE01A2B378F804F70FD3C06C5F18BEF8E31CFE5 * ___static_bl_desc_11; public: inline static int32_t get_offset_of_static_ltree_7() { return static_cast(offsetof(StaticTree_tFAE01A2B378F804F70FD3C06C5F18BEF8E31CFE5_StaticFields, ___static_ltree_7)); } inline Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* get_static_ltree_7() const { return ___static_ltree_7; } inline Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD** get_address_of_static_ltree_7() { return &___static_ltree_7; } inline void set_static_ltree_7(Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* value) { ___static_ltree_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___static_ltree_7), (void*)value); } inline static int32_t get_offset_of_static_dtree_8() { return static_cast(offsetof(StaticTree_tFAE01A2B378F804F70FD3C06C5F18BEF8E31CFE5_StaticFields, ___static_dtree_8)); } inline Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* get_static_dtree_8() const { return ___static_dtree_8; } inline Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD** get_address_of_static_dtree_8() { return &___static_dtree_8; } inline void set_static_dtree_8(Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* value) { ___static_dtree_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___static_dtree_8), (void*)value); } inline static int32_t get_offset_of_static_l_desc_9() { return static_cast(offsetof(StaticTree_tFAE01A2B378F804F70FD3C06C5F18BEF8E31CFE5_StaticFields, ___static_l_desc_9)); } inline StaticTree_tFAE01A2B378F804F70FD3C06C5F18BEF8E31CFE5 * get_static_l_desc_9() const { return ___static_l_desc_9; } inline StaticTree_tFAE01A2B378F804F70FD3C06C5F18BEF8E31CFE5 ** get_address_of_static_l_desc_9() { return &___static_l_desc_9; } inline void set_static_l_desc_9(StaticTree_tFAE01A2B378F804F70FD3C06C5F18BEF8E31CFE5 * value) { ___static_l_desc_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___static_l_desc_9), (void*)value); } inline static int32_t get_offset_of_static_d_desc_10() { return static_cast(offsetof(StaticTree_tFAE01A2B378F804F70FD3C06C5F18BEF8E31CFE5_StaticFields, ___static_d_desc_10)); } inline StaticTree_tFAE01A2B378F804F70FD3C06C5F18BEF8E31CFE5 * get_static_d_desc_10() const { return ___static_d_desc_10; } inline StaticTree_tFAE01A2B378F804F70FD3C06C5F18BEF8E31CFE5 ** get_address_of_static_d_desc_10() { return &___static_d_desc_10; } inline void set_static_d_desc_10(StaticTree_tFAE01A2B378F804F70FD3C06C5F18BEF8E31CFE5 * value) { ___static_d_desc_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___static_d_desc_10), (void*)value); } inline static int32_t get_offset_of_static_bl_desc_11() { return static_cast(offsetof(StaticTree_tFAE01A2B378F804F70FD3C06C5F18BEF8E31CFE5_StaticFields, ___static_bl_desc_11)); } inline StaticTree_tFAE01A2B378F804F70FD3C06C5F18BEF8E31CFE5 * get_static_bl_desc_11() const { return ___static_bl_desc_11; } inline StaticTree_tFAE01A2B378F804F70FD3C06C5F18BEF8E31CFE5 ** get_address_of_static_bl_desc_11() { return &___static_bl_desc_11; } inline void set_static_bl_desc_11(StaticTree_tFAE01A2B378F804F70FD3C06C5F18BEF8E31CFE5 * value) { ___static_bl_desc_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___static_bl_desc_11), (void*)value); } }; // StoneRecorder struct StoneRecorder_tBA3376B07C34D8BDC00CAC5B96BDC69A6EC4DB4D : public RuntimeObject { public: // System.Object StoneRecorder::locker RuntimeObject * ___locker_0; // System.Single StoneRecorder::stoneX float ___stoneX_1; // System.Single StoneRecorder::stoneZ float ___stoneZ_2; public: inline static int32_t get_offset_of_locker_0() { return static_cast(offsetof(StoneRecorder_tBA3376B07C34D8BDC00CAC5B96BDC69A6EC4DB4D, ___locker_0)); } inline RuntimeObject * get_locker_0() const { return ___locker_0; } inline RuntimeObject ** get_address_of_locker_0() { return &___locker_0; } inline void set_locker_0(RuntimeObject * value) { ___locker_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___locker_0), (void*)value); } inline static int32_t get_offset_of_stoneX_1() { return static_cast(offsetof(StoneRecorder_tBA3376B07C34D8BDC00CAC5B96BDC69A6EC4DB4D, ___stoneX_1)); } inline float get_stoneX_1() const { return ___stoneX_1; } inline float* get_address_of_stoneX_1() { return &___stoneX_1; } inline void set_stoneX_1(float value) { ___stoneX_1 = value; } inline static int32_t get_offset_of_stoneZ_2() { return static_cast(offsetof(StoneRecorder_tBA3376B07C34D8BDC00CAC5B96BDC69A6EC4DB4D, ___stoneZ_2)); } inline float get_stoneZ_2() const { return ___stoneZ_2; } inline float* get_address_of_stoneZ_2() { return &___stoneZ_2; } inline void set_stoneZ_2(float value) { ___stoneZ_2 = 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); } }; // System.Text.StringBuilder struct StringBuilder_t : public RuntimeObject { public: // System.Char[] System.Text.StringBuilder::m_ChunkChars CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___m_ChunkChars_0; // System.Text.StringBuilder System.Text.StringBuilder::m_ChunkPrevious StringBuilder_t * ___m_ChunkPrevious_1; // System.Int32 System.Text.StringBuilder::m_ChunkLength int32_t ___m_ChunkLength_2; // System.Int32 System.Text.StringBuilder::m_ChunkOffset int32_t ___m_ChunkOffset_3; // System.Int32 System.Text.StringBuilder::m_MaxCapacity int32_t ___m_MaxCapacity_4; public: inline static int32_t get_offset_of_m_ChunkChars_0() { return static_cast(offsetof(StringBuilder_t, ___m_ChunkChars_0)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_m_ChunkChars_0() const { return ___m_ChunkChars_0; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_m_ChunkChars_0() { return &___m_ChunkChars_0; } inline void set_m_ChunkChars_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___m_ChunkChars_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ChunkChars_0), (void*)value); } inline static int32_t get_offset_of_m_ChunkPrevious_1() { return static_cast(offsetof(StringBuilder_t, ___m_ChunkPrevious_1)); } inline StringBuilder_t * get_m_ChunkPrevious_1() const { return ___m_ChunkPrevious_1; } inline StringBuilder_t ** get_address_of_m_ChunkPrevious_1() { return &___m_ChunkPrevious_1; } inline void set_m_ChunkPrevious_1(StringBuilder_t * value) { ___m_ChunkPrevious_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ChunkPrevious_1), (void*)value); } inline static int32_t get_offset_of_m_ChunkLength_2() { return static_cast(offsetof(StringBuilder_t, ___m_ChunkLength_2)); } inline int32_t get_m_ChunkLength_2() const { return ___m_ChunkLength_2; } inline int32_t* get_address_of_m_ChunkLength_2() { return &___m_ChunkLength_2; } inline void set_m_ChunkLength_2(int32_t value) { ___m_ChunkLength_2 = value; } inline static int32_t get_offset_of_m_ChunkOffset_3() { return static_cast(offsetof(StringBuilder_t, ___m_ChunkOffset_3)); } inline int32_t get_m_ChunkOffset_3() const { return ___m_ChunkOffset_3; } inline int32_t* get_address_of_m_ChunkOffset_3() { return &___m_ChunkOffset_3; } inline void set_m_ChunkOffset_3(int32_t value) { ___m_ChunkOffset_3 = value; } inline static int32_t get_offset_of_m_MaxCapacity_4() { return static_cast(offsetof(StringBuilder_t, ___m_MaxCapacity_4)); } inline int32_t get_m_MaxCapacity_4() const { return ___m_MaxCapacity_4; } inline int32_t* get_address_of_m_MaxCapacity_4() { return &___m_MaxCapacity_4; } inline void set_m_MaxCapacity_4(int32_t value) { ___m_MaxCapacity_4 = value; } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers struct TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E : public RuntimeObject { public: public: }; struct TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::TeleTrusTAlgorithm DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___TeleTrusTAlgorithm_0; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::RipeMD160 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___RipeMD160_1; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::RipeMD128 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___RipeMD128_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::RipeMD256 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___RipeMD256_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::TeleTrusTRsaSignatureAlgorithm DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___TeleTrusTRsaSignatureAlgorithm_4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::RsaSignatureWithRipeMD160 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___RsaSignatureWithRipeMD160_5; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::RsaSignatureWithRipeMD128 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___RsaSignatureWithRipeMD128_6; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::RsaSignatureWithRipeMD256 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___RsaSignatureWithRipeMD256_7; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::ECSign DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___ECSign_8; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::ECSignWithSha1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___ECSignWithSha1_9; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::ECSignWithRipeMD160 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___ECSignWithRipeMD160_10; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::EccBrainpool DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___EccBrainpool_11; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::EllipticCurve DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___EllipticCurve_12; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::VersionOne DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___VersionOne_13; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::BrainpoolP160R1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___BrainpoolP160R1_14; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::BrainpoolP160T1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___BrainpoolP160T1_15; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::BrainpoolP192R1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___BrainpoolP192R1_16; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::BrainpoolP192T1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___BrainpoolP192T1_17; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::BrainpoolP224R1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___BrainpoolP224R1_18; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::BrainpoolP224T1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___BrainpoolP224T1_19; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::BrainpoolP256R1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___BrainpoolP256R1_20; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::BrainpoolP256T1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___BrainpoolP256T1_21; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::BrainpoolP320R1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___BrainpoolP320R1_22; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::BrainpoolP320T1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___BrainpoolP320T1_23; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::BrainpoolP384R1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___BrainpoolP384R1_24; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::BrainpoolP384T1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___BrainpoolP384T1_25; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::BrainpoolP512R1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___BrainpoolP512R1_26; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::BrainpoolP512T1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___BrainpoolP512T1_27; public: inline static int32_t get_offset_of_TeleTrusTAlgorithm_0() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___TeleTrusTAlgorithm_0)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_TeleTrusTAlgorithm_0() const { return ___TeleTrusTAlgorithm_0; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_TeleTrusTAlgorithm_0() { return &___TeleTrusTAlgorithm_0; } inline void set_TeleTrusTAlgorithm_0(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___TeleTrusTAlgorithm_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___TeleTrusTAlgorithm_0), (void*)value); } inline static int32_t get_offset_of_RipeMD160_1() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___RipeMD160_1)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_RipeMD160_1() const { return ___RipeMD160_1; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_RipeMD160_1() { return &___RipeMD160_1; } inline void set_RipeMD160_1(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___RipeMD160_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___RipeMD160_1), (void*)value); } inline static int32_t get_offset_of_RipeMD128_2() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___RipeMD128_2)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_RipeMD128_2() const { return ___RipeMD128_2; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_RipeMD128_2() { return &___RipeMD128_2; } inline void set_RipeMD128_2(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___RipeMD128_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___RipeMD128_2), (void*)value); } inline static int32_t get_offset_of_RipeMD256_3() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___RipeMD256_3)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_RipeMD256_3() const { return ___RipeMD256_3; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_RipeMD256_3() { return &___RipeMD256_3; } inline void set_RipeMD256_3(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___RipeMD256_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___RipeMD256_3), (void*)value); } inline static int32_t get_offset_of_TeleTrusTRsaSignatureAlgorithm_4() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___TeleTrusTRsaSignatureAlgorithm_4)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_TeleTrusTRsaSignatureAlgorithm_4() const { return ___TeleTrusTRsaSignatureAlgorithm_4; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_TeleTrusTRsaSignatureAlgorithm_4() { return &___TeleTrusTRsaSignatureAlgorithm_4; } inline void set_TeleTrusTRsaSignatureAlgorithm_4(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___TeleTrusTRsaSignatureAlgorithm_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___TeleTrusTRsaSignatureAlgorithm_4), (void*)value); } inline static int32_t get_offset_of_RsaSignatureWithRipeMD160_5() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___RsaSignatureWithRipeMD160_5)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_RsaSignatureWithRipeMD160_5() const { return ___RsaSignatureWithRipeMD160_5; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_RsaSignatureWithRipeMD160_5() { return &___RsaSignatureWithRipeMD160_5; } inline void set_RsaSignatureWithRipeMD160_5(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___RsaSignatureWithRipeMD160_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___RsaSignatureWithRipeMD160_5), (void*)value); } inline static int32_t get_offset_of_RsaSignatureWithRipeMD128_6() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___RsaSignatureWithRipeMD128_6)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_RsaSignatureWithRipeMD128_6() const { return ___RsaSignatureWithRipeMD128_6; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_RsaSignatureWithRipeMD128_6() { return &___RsaSignatureWithRipeMD128_6; } inline void set_RsaSignatureWithRipeMD128_6(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___RsaSignatureWithRipeMD128_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___RsaSignatureWithRipeMD128_6), (void*)value); } inline static int32_t get_offset_of_RsaSignatureWithRipeMD256_7() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___RsaSignatureWithRipeMD256_7)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_RsaSignatureWithRipeMD256_7() const { return ___RsaSignatureWithRipeMD256_7; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_RsaSignatureWithRipeMD256_7() { return &___RsaSignatureWithRipeMD256_7; } inline void set_RsaSignatureWithRipeMD256_7(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___RsaSignatureWithRipeMD256_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___RsaSignatureWithRipeMD256_7), (void*)value); } inline static int32_t get_offset_of_ECSign_8() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___ECSign_8)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_ECSign_8() const { return ___ECSign_8; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_ECSign_8() { return &___ECSign_8; } inline void set_ECSign_8(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___ECSign_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___ECSign_8), (void*)value); } inline static int32_t get_offset_of_ECSignWithSha1_9() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___ECSignWithSha1_9)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_ECSignWithSha1_9() const { return ___ECSignWithSha1_9; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_ECSignWithSha1_9() { return &___ECSignWithSha1_9; } inline void set_ECSignWithSha1_9(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___ECSignWithSha1_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___ECSignWithSha1_9), (void*)value); } inline static int32_t get_offset_of_ECSignWithRipeMD160_10() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___ECSignWithRipeMD160_10)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_ECSignWithRipeMD160_10() const { return ___ECSignWithRipeMD160_10; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_ECSignWithRipeMD160_10() { return &___ECSignWithRipeMD160_10; } inline void set_ECSignWithRipeMD160_10(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___ECSignWithRipeMD160_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___ECSignWithRipeMD160_10), (void*)value); } inline static int32_t get_offset_of_EccBrainpool_11() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___EccBrainpool_11)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_EccBrainpool_11() const { return ___EccBrainpool_11; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_EccBrainpool_11() { return &___EccBrainpool_11; } inline void set_EccBrainpool_11(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___EccBrainpool_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___EccBrainpool_11), (void*)value); } inline static int32_t get_offset_of_EllipticCurve_12() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___EllipticCurve_12)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_EllipticCurve_12() const { return ___EllipticCurve_12; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_EllipticCurve_12() { return &___EllipticCurve_12; } inline void set_EllipticCurve_12(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___EllipticCurve_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___EllipticCurve_12), (void*)value); } inline static int32_t get_offset_of_VersionOne_13() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___VersionOne_13)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_VersionOne_13() const { return ___VersionOne_13; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_VersionOne_13() { return &___VersionOne_13; } inline void set_VersionOne_13(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___VersionOne_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___VersionOne_13), (void*)value); } inline static int32_t get_offset_of_BrainpoolP160R1_14() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___BrainpoolP160R1_14)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_BrainpoolP160R1_14() const { return ___BrainpoolP160R1_14; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_BrainpoolP160R1_14() { return &___BrainpoolP160R1_14; } inline void set_BrainpoolP160R1_14(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___BrainpoolP160R1_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___BrainpoolP160R1_14), (void*)value); } inline static int32_t get_offset_of_BrainpoolP160T1_15() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___BrainpoolP160T1_15)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_BrainpoolP160T1_15() const { return ___BrainpoolP160T1_15; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_BrainpoolP160T1_15() { return &___BrainpoolP160T1_15; } inline void set_BrainpoolP160T1_15(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___BrainpoolP160T1_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___BrainpoolP160T1_15), (void*)value); } inline static int32_t get_offset_of_BrainpoolP192R1_16() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___BrainpoolP192R1_16)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_BrainpoolP192R1_16() const { return ___BrainpoolP192R1_16; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_BrainpoolP192R1_16() { return &___BrainpoolP192R1_16; } inline void set_BrainpoolP192R1_16(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___BrainpoolP192R1_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___BrainpoolP192R1_16), (void*)value); } inline static int32_t get_offset_of_BrainpoolP192T1_17() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___BrainpoolP192T1_17)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_BrainpoolP192T1_17() const { return ___BrainpoolP192T1_17; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_BrainpoolP192T1_17() { return &___BrainpoolP192T1_17; } inline void set_BrainpoolP192T1_17(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___BrainpoolP192T1_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___BrainpoolP192T1_17), (void*)value); } inline static int32_t get_offset_of_BrainpoolP224R1_18() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___BrainpoolP224R1_18)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_BrainpoolP224R1_18() const { return ___BrainpoolP224R1_18; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_BrainpoolP224R1_18() { return &___BrainpoolP224R1_18; } inline void set_BrainpoolP224R1_18(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___BrainpoolP224R1_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___BrainpoolP224R1_18), (void*)value); } inline static int32_t get_offset_of_BrainpoolP224T1_19() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___BrainpoolP224T1_19)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_BrainpoolP224T1_19() const { return ___BrainpoolP224T1_19; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_BrainpoolP224T1_19() { return &___BrainpoolP224T1_19; } inline void set_BrainpoolP224T1_19(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___BrainpoolP224T1_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___BrainpoolP224T1_19), (void*)value); } inline static int32_t get_offset_of_BrainpoolP256R1_20() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___BrainpoolP256R1_20)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_BrainpoolP256R1_20() const { return ___BrainpoolP256R1_20; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_BrainpoolP256R1_20() { return &___BrainpoolP256R1_20; } inline void set_BrainpoolP256R1_20(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___BrainpoolP256R1_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___BrainpoolP256R1_20), (void*)value); } inline static int32_t get_offset_of_BrainpoolP256T1_21() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___BrainpoolP256T1_21)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_BrainpoolP256T1_21() const { return ___BrainpoolP256T1_21; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_BrainpoolP256T1_21() { return &___BrainpoolP256T1_21; } inline void set_BrainpoolP256T1_21(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___BrainpoolP256T1_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___BrainpoolP256T1_21), (void*)value); } inline static int32_t get_offset_of_BrainpoolP320R1_22() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___BrainpoolP320R1_22)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_BrainpoolP320R1_22() const { return ___BrainpoolP320R1_22; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_BrainpoolP320R1_22() { return &___BrainpoolP320R1_22; } inline void set_BrainpoolP320R1_22(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___BrainpoolP320R1_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___BrainpoolP320R1_22), (void*)value); } inline static int32_t get_offset_of_BrainpoolP320T1_23() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___BrainpoolP320T1_23)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_BrainpoolP320T1_23() const { return ___BrainpoolP320T1_23; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_BrainpoolP320T1_23() { return &___BrainpoolP320T1_23; } inline void set_BrainpoolP320T1_23(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___BrainpoolP320T1_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___BrainpoolP320T1_23), (void*)value); } inline static int32_t get_offset_of_BrainpoolP384R1_24() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___BrainpoolP384R1_24)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_BrainpoolP384R1_24() const { return ___BrainpoolP384R1_24; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_BrainpoolP384R1_24() { return &___BrainpoolP384R1_24; } inline void set_BrainpoolP384R1_24(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___BrainpoolP384R1_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___BrainpoolP384R1_24), (void*)value); } inline static int32_t get_offset_of_BrainpoolP384T1_25() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___BrainpoolP384T1_25)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_BrainpoolP384T1_25() const { return ___BrainpoolP384T1_25; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_BrainpoolP384T1_25() { return &___BrainpoolP384T1_25; } inline void set_BrainpoolP384T1_25(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___BrainpoolP384T1_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___BrainpoolP384T1_25), (void*)value); } inline static int32_t get_offset_of_BrainpoolP512R1_26() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___BrainpoolP512R1_26)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_BrainpoolP512R1_26() const { return ___BrainpoolP512R1_26; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_BrainpoolP512R1_26() { return &___BrainpoolP512R1_26; } inline void set_BrainpoolP512R1_26(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___BrainpoolP512R1_26 = value; Il2CppCodeGenWriteBarrier((void**)(&___BrainpoolP512R1_26), (void*)value); } inline static int32_t get_offset_of_BrainpoolP512T1_27() { return static_cast(offsetof(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields, ___BrainpoolP512T1_27)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_BrainpoolP512T1_27() const { return ___BrainpoolP512T1_27; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_BrainpoolP512T1_27() { return &___BrainpoolP512T1_27; } inline void set_BrainpoolP512T1_27(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___BrainpoolP512T1_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___BrainpoolP512T1_27), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V1TbsCertificateGenerator struct V1TbsCertificateGenerator_t0C696954AC2E290683DA1581EA144E4EBB8D2D10 : public RuntimeObject { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerTaggedObject BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V1TbsCertificateGenerator::version DerTaggedObject_t88BB573E2BED5C1D2971741E012BB29FB0EB0C5E * ___version_0; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V1TbsCertificateGenerator::serialNumber DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * ___serialNumber_1; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V1TbsCertificateGenerator::signature AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___signature_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V1TbsCertificateGenerator::issuer X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * ___issuer_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.Time BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V1TbsCertificateGenerator::startDate Time_tD684B1785E755395701D46F89A97609911CD6DDE * ___startDate_4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.Time BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V1TbsCertificateGenerator::endDate Time_tD684B1785E755395701D46F89A97609911CD6DDE * ___endDate_5; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V1TbsCertificateGenerator::subject X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * ___subject_6; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V1TbsCertificateGenerator::subjectPublicKeyInfo SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB * ___subjectPublicKeyInfo_7; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(V1TbsCertificateGenerator_t0C696954AC2E290683DA1581EA144E4EBB8D2D10, ___version_0)); } inline DerTaggedObject_t88BB573E2BED5C1D2971741E012BB29FB0EB0C5E * get_version_0() const { return ___version_0; } inline DerTaggedObject_t88BB573E2BED5C1D2971741E012BB29FB0EB0C5E ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(DerTaggedObject_t88BB573E2BED5C1D2971741E012BB29FB0EB0C5E * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } inline static int32_t get_offset_of_serialNumber_1() { return static_cast(offsetof(V1TbsCertificateGenerator_t0C696954AC2E290683DA1581EA144E4EBB8D2D10, ___serialNumber_1)); } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * get_serialNumber_1() const { return ___serialNumber_1; } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 ** get_address_of_serialNumber_1() { return &___serialNumber_1; } inline void set_serialNumber_1(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * value) { ___serialNumber_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___serialNumber_1), (void*)value); } inline static int32_t get_offset_of_signature_2() { return static_cast(offsetof(V1TbsCertificateGenerator_t0C696954AC2E290683DA1581EA144E4EBB8D2D10, ___signature_2)); } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * get_signature_2() const { return ___signature_2; } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 ** get_address_of_signature_2() { return &___signature_2; } inline void set_signature_2(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * value) { ___signature_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___signature_2), (void*)value); } inline static int32_t get_offset_of_issuer_3() { return static_cast(offsetof(V1TbsCertificateGenerator_t0C696954AC2E290683DA1581EA144E4EBB8D2D10, ___issuer_3)); } inline X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * get_issuer_3() const { return ___issuer_3; } inline X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 ** get_address_of_issuer_3() { return &___issuer_3; } inline void set_issuer_3(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * value) { ___issuer_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___issuer_3), (void*)value); } inline static int32_t get_offset_of_startDate_4() { return static_cast(offsetof(V1TbsCertificateGenerator_t0C696954AC2E290683DA1581EA144E4EBB8D2D10, ___startDate_4)); } inline Time_tD684B1785E755395701D46F89A97609911CD6DDE * get_startDate_4() const { return ___startDate_4; } inline Time_tD684B1785E755395701D46F89A97609911CD6DDE ** get_address_of_startDate_4() { return &___startDate_4; } inline void set_startDate_4(Time_tD684B1785E755395701D46F89A97609911CD6DDE * value) { ___startDate_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___startDate_4), (void*)value); } inline static int32_t get_offset_of_endDate_5() { return static_cast(offsetof(V1TbsCertificateGenerator_t0C696954AC2E290683DA1581EA144E4EBB8D2D10, ___endDate_5)); } inline Time_tD684B1785E755395701D46F89A97609911CD6DDE * get_endDate_5() const { return ___endDate_5; } inline Time_tD684B1785E755395701D46F89A97609911CD6DDE ** get_address_of_endDate_5() { return &___endDate_5; } inline void set_endDate_5(Time_tD684B1785E755395701D46F89A97609911CD6DDE * value) { ___endDate_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___endDate_5), (void*)value); } inline static int32_t get_offset_of_subject_6() { return static_cast(offsetof(V1TbsCertificateGenerator_t0C696954AC2E290683DA1581EA144E4EBB8D2D10, ___subject_6)); } inline X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * get_subject_6() const { return ___subject_6; } inline X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 ** get_address_of_subject_6() { return &___subject_6; } inline void set_subject_6(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * value) { ___subject_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___subject_6), (void*)value); } inline static int32_t get_offset_of_subjectPublicKeyInfo_7() { return static_cast(offsetof(V1TbsCertificateGenerator_t0C696954AC2E290683DA1581EA144E4EBB8D2D10, ___subjectPublicKeyInfo_7)); } inline SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB * get_subjectPublicKeyInfo_7() const { return ___subjectPublicKeyInfo_7; } inline SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB ** get_address_of_subjectPublicKeyInfo_7() { return &___subjectPublicKeyInfo_7; } inline void set_subjectPublicKeyInfo_7(SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB * value) { ___subjectPublicKeyInfo_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___subjectPublicKeyInfo_7), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V2AttributeCertificateInfoGenerator struct V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036 : public RuntimeObject { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V2AttributeCertificateInfoGenerator::version DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * ___version_0; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.Holder BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V2AttributeCertificateInfoGenerator::holder Holder_t64C922905238378DD56C273DE16BA7D09529E22A * ___holder_1; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttCertIssuer BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V2AttributeCertificateInfoGenerator::issuer AttCertIssuer_tC2A63BCB19A64F1F5B6335B241ED80E5AAC1562A * ___issuer_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V2AttributeCertificateInfoGenerator::signature AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___signature_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V2AttributeCertificateInfoGenerator::serialNumber DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * ___serialNumber_4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1EncodableVector BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V2AttributeCertificateInfoGenerator::attributes Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 * ___attributes_5; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V2AttributeCertificateInfoGenerator::issuerUniqueID DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * ___issuerUniqueID_6; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V2AttributeCertificateInfoGenerator::extensions X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F * ___extensions_7; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerGeneralizedTime BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V2AttributeCertificateInfoGenerator::startDate DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 * ___startDate_8; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerGeneralizedTime BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V2AttributeCertificateInfoGenerator::endDate DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 * ___endDate_9; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036, ___version_0)); } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * get_version_0() const { return ___version_0; } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } inline static int32_t get_offset_of_holder_1() { return static_cast(offsetof(V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036, ___holder_1)); } inline Holder_t64C922905238378DD56C273DE16BA7D09529E22A * get_holder_1() const { return ___holder_1; } inline Holder_t64C922905238378DD56C273DE16BA7D09529E22A ** get_address_of_holder_1() { return &___holder_1; } inline void set_holder_1(Holder_t64C922905238378DD56C273DE16BA7D09529E22A * value) { ___holder_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___holder_1), (void*)value); } inline static int32_t get_offset_of_issuer_2() { return static_cast(offsetof(V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036, ___issuer_2)); } inline AttCertIssuer_tC2A63BCB19A64F1F5B6335B241ED80E5AAC1562A * get_issuer_2() const { return ___issuer_2; } inline AttCertIssuer_tC2A63BCB19A64F1F5B6335B241ED80E5AAC1562A ** get_address_of_issuer_2() { return &___issuer_2; } inline void set_issuer_2(AttCertIssuer_tC2A63BCB19A64F1F5B6335B241ED80E5AAC1562A * value) { ___issuer_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___issuer_2), (void*)value); } inline static int32_t get_offset_of_signature_3() { return static_cast(offsetof(V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036, ___signature_3)); } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * get_signature_3() const { return ___signature_3; } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 ** get_address_of_signature_3() { return &___signature_3; } inline void set_signature_3(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * value) { ___signature_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___signature_3), (void*)value); } inline static int32_t get_offset_of_serialNumber_4() { return static_cast(offsetof(V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036, ___serialNumber_4)); } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * get_serialNumber_4() const { return ___serialNumber_4; } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 ** get_address_of_serialNumber_4() { return &___serialNumber_4; } inline void set_serialNumber_4(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * value) { ___serialNumber_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___serialNumber_4), (void*)value); } inline static int32_t get_offset_of_attributes_5() { return static_cast(offsetof(V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036, ___attributes_5)); } inline Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 * get_attributes_5() const { return ___attributes_5; } inline Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 ** get_address_of_attributes_5() { return &___attributes_5; } inline void set_attributes_5(Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 * value) { ___attributes_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___attributes_5), (void*)value); } inline static int32_t get_offset_of_issuerUniqueID_6() { return static_cast(offsetof(V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036, ___issuerUniqueID_6)); } inline DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * get_issuerUniqueID_6() const { return ___issuerUniqueID_6; } inline DerBitString_t305465793A47445626D3541AB8CEDE347D874524 ** get_address_of_issuerUniqueID_6() { return &___issuerUniqueID_6; } inline void set_issuerUniqueID_6(DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * value) { ___issuerUniqueID_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___issuerUniqueID_6), (void*)value); } inline static int32_t get_offset_of_extensions_7() { return static_cast(offsetof(V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036, ___extensions_7)); } inline X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F * get_extensions_7() const { return ___extensions_7; } inline X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F ** get_address_of_extensions_7() { return &___extensions_7; } inline void set_extensions_7(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F * value) { ___extensions_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___extensions_7), (void*)value); } inline static int32_t get_offset_of_startDate_8() { return static_cast(offsetof(V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036, ___startDate_8)); } inline DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 * get_startDate_8() const { return ___startDate_8; } inline DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 ** get_address_of_startDate_8() { return &___startDate_8; } inline void set_startDate_8(DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 * value) { ___startDate_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___startDate_8), (void*)value); } inline static int32_t get_offset_of_endDate_9() { return static_cast(offsetof(V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036, ___endDate_9)); } inline DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 * get_endDate_9() const { return ___endDate_9; } inline DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 ** get_address_of_endDate_9() { return &___endDate_9; } inline void set_endDate_9(DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 * value) { ___endDate_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___endDate_9), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V2TbsCertListGenerator struct V2TbsCertListGenerator_tC7920E9D2AE505500F0D2338C49267713D9D76E3 : public RuntimeObject { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V2TbsCertListGenerator::version DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * ___version_0; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V2TbsCertListGenerator::signature AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___signature_1; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V2TbsCertListGenerator::issuer X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * ___issuer_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.Time BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V2TbsCertListGenerator::thisUpdate Time_tD684B1785E755395701D46F89A97609911CD6DDE * ___thisUpdate_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.Time BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V2TbsCertListGenerator::nextUpdate Time_tD684B1785E755395701D46F89A97609911CD6DDE * ___nextUpdate_4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V2TbsCertListGenerator::extensions X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F * ___extensions_5; // System.Collections.IList BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V2TbsCertListGenerator::crlEntries RuntimeObject* ___crlEntries_6; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(V2TbsCertListGenerator_tC7920E9D2AE505500F0D2338C49267713D9D76E3, ___version_0)); } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * get_version_0() const { return ___version_0; } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } inline static int32_t get_offset_of_signature_1() { return static_cast(offsetof(V2TbsCertListGenerator_tC7920E9D2AE505500F0D2338C49267713D9D76E3, ___signature_1)); } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * get_signature_1() const { return ___signature_1; } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 ** get_address_of_signature_1() { return &___signature_1; } inline void set_signature_1(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * value) { ___signature_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___signature_1), (void*)value); } inline static int32_t get_offset_of_issuer_2() { return static_cast(offsetof(V2TbsCertListGenerator_tC7920E9D2AE505500F0D2338C49267713D9D76E3, ___issuer_2)); } inline X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * get_issuer_2() const { return ___issuer_2; } inline X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 ** get_address_of_issuer_2() { return &___issuer_2; } inline void set_issuer_2(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * value) { ___issuer_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___issuer_2), (void*)value); } inline static int32_t get_offset_of_thisUpdate_3() { return static_cast(offsetof(V2TbsCertListGenerator_tC7920E9D2AE505500F0D2338C49267713D9D76E3, ___thisUpdate_3)); } inline Time_tD684B1785E755395701D46F89A97609911CD6DDE * get_thisUpdate_3() const { return ___thisUpdate_3; } inline Time_tD684B1785E755395701D46F89A97609911CD6DDE ** get_address_of_thisUpdate_3() { return &___thisUpdate_3; } inline void set_thisUpdate_3(Time_tD684B1785E755395701D46F89A97609911CD6DDE * value) { ___thisUpdate_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___thisUpdate_3), (void*)value); } inline static int32_t get_offset_of_nextUpdate_4() { return static_cast(offsetof(V2TbsCertListGenerator_tC7920E9D2AE505500F0D2338C49267713D9D76E3, ___nextUpdate_4)); } inline Time_tD684B1785E755395701D46F89A97609911CD6DDE * get_nextUpdate_4() const { return ___nextUpdate_4; } inline Time_tD684B1785E755395701D46F89A97609911CD6DDE ** get_address_of_nextUpdate_4() { return &___nextUpdate_4; } inline void set_nextUpdate_4(Time_tD684B1785E755395701D46F89A97609911CD6DDE * value) { ___nextUpdate_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___nextUpdate_4), (void*)value); } inline static int32_t get_offset_of_extensions_5() { return static_cast(offsetof(V2TbsCertListGenerator_tC7920E9D2AE505500F0D2338C49267713D9D76E3, ___extensions_5)); } inline X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F * get_extensions_5() const { return ___extensions_5; } inline X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F ** get_address_of_extensions_5() { return &___extensions_5; } inline void set_extensions_5(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F * value) { ___extensions_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___extensions_5), (void*)value); } inline static int32_t get_offset_of_crlEntries_6() { return static_cast(offsetof(V2TbsCertListGenerator_tC7920E9D2AE505500F0D2338C49267713D9D76E3, ___crlEntries_6)); } inline RuntimeObject* get_crlEntries_6() const { return ___crlEntries_6; } inline RuntimeObject** get_address_of_crlEntries_6() { return &___crlEntries_6; } inline void set_crlEntries_6(RuntimeObject* value) { ___crlEntries_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___crlEntries_6), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V3TbsCertificateGenerator struct V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3 : public RuntimeObject { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerTaggedObject BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V3TbsCertificateGenerator::version DerTaggedObject_t88BB573E2BED5C1D2971741E012BB29FB0EB0C5E * ___version_0; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V3TbsCertificateGenerator::serialNumber DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * ___serialNumber_1; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V3TbsCertificateGenerator::signature AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___signature_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V3TbsCertificateGenerator::issuer X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * ___issuer_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.Time BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V3TbsCertificateGenerator::startDate Time_tD684B1785E755395701D46F89A97609911CD6DDE * ___startDate_4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.Time BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V3TbsCertificateGenerator::endDate Time_tD684B1785E755395701D46F89A97609911CD6DDE * ___endDate_5; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V3TbsCertificateGenerator::subject X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * ___subject_6; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V3TbsCertificateGenerator::subjectPublicKeyInfo SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB * ___subjectPublicKeyInfo_7; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V3TbsCertificateGenerator::extensions X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F * ___extensions_8; // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V3TbsCertificateGenerator::altNamePresentAndCritical bool ___altNamePresentAndCritical_9; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V3TbsCertificateGenerator::issuerUniqueID DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * ___issuerUniqueID_10; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V3TbsCertificateGenerator::subjectUniqueID DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * ___subjectUniqueID_11; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3, ___version_0)); } inline DerTaggedObject_t88BB573E2BED5C1D2971741E012BB29FB0EB0C5E * get_version_0() const { return ___version_0; } inline DerTaggedObject_t88BB573E2BED5C1D2971741E012BB29FB0EB0C5E ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(DerTaggedObject_t88BB573E2BED5C1D2971741E012BB29FB0EB0C5E * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } inline static int32_t get_offset_of_serialNumber_1() { return static_cast(offsetof(V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3, ___serialNumber_1)); } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * get_serialNumber_1() const { return ___serialNumber_1; } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 ** get_address_of_serialNumber_1() { return &___serialNumber_1; } inline void set_serialNumber_1(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * value) { ___serialNumber_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___serialNumber_1), (void*)value); } inline static int32_t get_offset_of_signature_2() { return static_cast(offsetof(V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3, ___signature_2)); } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * get_signature_2() const { return ___signature_2; } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 ** get_address_of_signature_2() { return &___signature_2; } inline void set_signature_2(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * value) { ___signature_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___signature_2), (void*)value); } inline static int32_t get_offset_of_issuer_3() { return static_cast(offsetof(V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3, ___issuer_3)); } inline X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * get_issuer_3() const { return ___issuer_3; } inline X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 ** get_address_of_issuer_3() { return &___issuer_3; } inline void set_issuer_3(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * value) { ___issuer_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___issuer_3), (void*)value); } inline static int32_t get_offset_of_startDate_4() { return static_cast(offsetof(V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3, ___startDate_4)); } inline Time_tD684B1785E755395701D46F89A97609911CD6DDE * get_startDate_4() const { return ___startDate_4; } inline Time_tD684B1785E755395701D46F89A97609911CD6DDE ** get_address_of_startDate_4() { return &___startDate_4; } inline void set_startDate_4(Time_tD684B1785E755395701D46F89A97609911CD6DDE * value) { ___startDate_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___startDate_4), (void*)value); } inline static int32_t get_offset_of_endDate_5() { return static_cast(offsetof(V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3, ___endDate_5)); } inline Time_tD684B1785E755395701D46F89A97609911CD6DDE * get_endDate_5() const { return ___endDate_5; } inline Time_tD684B1785E755395701D46F89A97609911CD6DDE ** get_address_of_endDate_5() { return &___endDate_5; } inline void set_endDate_5(Time_tD684B1785E755395701D46F89A97609911CD6DDE * value) { ___endDate_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___endDate_5), (void*)value); } inline static int32_t get_offset_of_subject_6() { return static_cast(offsetof(V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3, ___subject_6)); } inline X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * get_subject_6() const { return ___subject_6; } inline X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 ** get_address_of_subject_6() { return &___subject_6; } inline void set_subject_6(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * value) { ___subject_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___subject_6), (void*)value); } inline static int32_t get_offset_of_subjectPublicKeyInfo_7() { return static_cast(offsetof(V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3, ___subjectPublicKeyInfo_7)); } inline SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB * get_subjectPublicKeyInfo_7() const { return ___subjectPublicKeyInfo_7; } inline SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB ** get_address_of_subjectPublicKeyInfo_7() { return &___subjectPublicKeyInfo_7; } inline void set_subjectPublicKeyInfo_7(SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB * value) { ___subjectPublicKeyInfo_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___subjectPublicKeyInfo_7), (void*)value); } inline static int32_t get_offset_of_extensions_8() { return static_cast(offsetof(V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3, ___extensions_8)); } inline X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F * get_extensions_8() const { return ___extensions_8; } inline X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F ** get_address_of_extensions_8() { return &___extensions_8; } inline void set_extensions_8(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F * value) { ___extensions_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___extensions_8), (void*)value); } inline static int32_t get_offset_of_altNamePresentAndCritical_9() { return static_cast(offsetof(V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3, ___altNamePresentAndCritical_9)); } inline bool get_altNamePresentAndCritical_9() const { return ___altNamePresentAndCritical_9; } inline bool* get_address_of_altNamePresentAndCritical_9() { return &___altNamePresentAndCritical_9; } inline void set_altNamePresentAndCritical_9(bool value) { ___altNamePresentAndCritical_9 = value; } inline static int32_t get_offset_of_issuerUniqueID_10() { return static_cast(offsetof(V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3, ___issuerUniqueID_10)); } inline DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * get_issuerUniqueID_10() const { return ___issuerUniqueID_10; } inline DerBitString_t305465793A47445626D3541AB8CEDE347D874524 ** get_address_of_issuerUniqueID_10() { return &___issuerUniqueID_10; } inline void set_issuerUniqueID_10(DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * value) { ___issuerUniqueID_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___issuerUniqueID_10), (void*)value); } inline static int32_t get_offset_of_subjectUniqueID_11() { return static_cast(offsetof(V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3, ___subjectUniqueID_11)); } inline DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * get_subjectUniqueID_11() const { return ___subjectUniqueID_11; } inline DerBitString_t305465793A47445626D3541AB8CEDE347D874524 ** get_address_of_subjectUniqueID_11() { return &___subjectUniqueID_11; } inline void set_subjectUniqueID_11(DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * value) { ___subjectUniqueID_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___subjectUniqueID_11), (void*)value); } }; // 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 { }; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.Store.X509CollectionStore struct X509CollectionStore_tC725C67FA9A701B4A60D34656D36A0A5FBCC6805 : public RuntimeObject { public: // System.Collections.ICollection BestHTTP.SecureProtocol.Org.BouncyCastle.X509.Store.X509CollectionStore::_local RuntimeObject* ____local_0; public: inline static int32_t get_offset_of__local_0() { return static_cast(offsetof(X509CollectionStore_tC725C67FA9A701B4A60D34656D36A0A5FBCC6805, ____local_0)); } inline RuntimeObject* get__local_0() const { return ____local_0; } inline RuntimeObject** get_address_of__local_0() { return &____local_0; } inline void set__local_0(RuntimeObject* value) { ____local_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____local_0), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.Store.X509CollectionStoreParameters struct X509CollectionStoreParameters_t9AC6D285ADBA3F814F6985940388A9C944D26401 : public RuntimeObject { public: // System.Collections.IList BestHTTP.SecureProtocol.Org.BouncyCastle.X509.Store.X509CollectionStoreParameters::collection RuntimeObject* ___collection_0; public: inline static int32_t get_offset_of_collection_0() { return static_cast(offsetof(X509CollectionStoreParameters_t9AC6D285ADBA3F814F6985940388A9C944D26401, ___collection_0)); } inline RuntimeObject* get_collection_0() const { return ___collection_0; } inline RuntimeObject** get_address_of_collection_0() { return &___collection_0; } inline void set_collection_0(RuntimeObject* value) { ___collection_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___collection_0), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509ExtensionBase struct X509ExtensionBase_t91B691B9E834F516C9CE847F2B900B019A37CCE7 : public RuntimeObject { public: public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509ExtensionsGenerator struct X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017 : public RuntimeObject { public: // System.Collections.IDictionary BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509ExtensionsGenerator::extensions RuntimeObject* ___extensions_0; // System.Collections.IList BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509ExtensionsGenerator::extOrdering RuntimeObject* ___extOrdering_1; public: inline static int32_t get_offset_of_extensions_0() { return static_cast(offsetof(X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017, ___extensions_0)); } inline RuntimeObject* get_extensions_0() const { return ___extensions_0; } inline RuntimeObject** get_address_of_extensions_0() { return &___extensions_0; } inline void set_extensions_0(RuntimeObject* value) { ___extensions_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___extensions_0), (void*)value); } inline static int32_t get_offset_of_extOrdering_1() { return static_cast(offsetof(X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017, ___extOrdering_1)); } inline RuntimeObject* get_extOrdering_1() const { return ___extOrdering_1; } inline RuntimeObject** get_address_of_extOrdering_1() { return &___extOrdering_1; } inline void set_extOrdering_1(RuntimeObject* value) { ___extOrdering_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___extOrdering_1), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509NameEntryConverter struct X509NameEntryConverter_tB7E7BD9119CAFF57159A4641EEF350B6A5111351 : public RuntimeObject { public: public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509NameTokenizer struct X509NameTokenizer_tDAF307295F6A85ECEF068F02DFE878693672ECEC : public RuntimeObject { public: // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509NameTokenizer::value String_t* ___value_0; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509NameTokenizer::index int32_t ___index_1; // System.Char BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509NameTokenizer::separator Il2CppChar ___separator_2; // System.Text.StringBuilder BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509NameTokenizer::buffer StringBuilder_t * ___buffer_3; public: inline static int32_t get_offset_of_value_0() { return static_cast(offsetof(X509NameTokenizer_tDAF307295F6A85ECEF068F02DFE878693672ECEC, ___value_0)); } inline String_t* get_value_0() const { return ___value_0; } inline String_t** get_address_of_value_0() { return &___value_0; } inline void set_value_0(String_t* value) { ___value_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___value_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast(offsetof(X509NameTokenizer_tDAF307295F6A85ECEF068F02DFE878693672ECEC, ___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_separator_2() { return static_cast(offsetof(X509NameTokenizer_tDAF307295F6A85ECEF068F02DFE878693672ECEC, ___separator_2)); } inline Il2CppChar get_separator_2() const { return ___separator_2; } inline Il2CppChar* get_address_of_separator_2() { return &___separator_2; } inline void set_separator_2(Il2CppChar value) { ___separator_2 = value; } inline static int32_t get_offset_of_buffer_3() { return static_cast(offsetof(X509NameTokenizer_tDAF307295F6A85ECEF068F02DFE878693672ECEC, ___buffer_3)); } inline StringBuilder_t * get_buffer_3() const { return ___buffer_3; } inline StringBuilder_t ** get_address_of_buffer_3() { return &___buffer_3; } inline void set_buffer_3(StringBuilder_t * value) { ___buffer_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___buffer_3), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers struct X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543 : public RuntimeObject { public: public: }; struct X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::CommonName DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___CommonName_1; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::CountryName DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___CountryName_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::LocalityName DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___LocalityName_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::StateOrProvinceName DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___StateOrProvinceName_4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::Organization DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Organization_5; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::OrganizationalUnitName DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___OrganizationalUnitName_6; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::id_at_telephoneNumber DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___id_at_telephoneNumber_7; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::id_at_name DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___id_at_name_8; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::id_at_organizationIdentifier DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___id_at_organizationIdentifier_9; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::IdSha1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdSha1_10; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::RipeMD160 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___RipeMD160_11; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::RipeMD160WithRsaEncryption DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___RipeMD160WithRsaEncryption_12; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::IdEARsa DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdEARsa_13; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::IdPkix DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdPkix_14; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::IdPE DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdPE_15; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::IdAD DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdAD_16; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::IdADCAIssuers DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdADCAIssuers_17; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::IdADOcsp DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdADOcsp_18; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::OcspAccessMethod DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___OcspAccessMethod_19; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::CrlAccessMethod DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___CrlAccessMethod_20; public: inline static int32_t get_offset_of_CommonName_1() { return static_cast(offsetof(X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_StaticFields, ___CommonName_1)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_CommonName_1() const { return ___CommonName_1; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_CommonName_1() { return &___CommonName_1; } inline void set_CommonName_1(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___CommonName_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___CommonName_1), (void*)value); } inline static int32_t get_offset_of_CountryName_2() { return static_cast(offsetof(X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_StaticFields, ___CountryName_2)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_CountryName_2() const { return ___CountryName_2; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_CountryName_2() { return &___CountryName_2; } inline void set_CountryName_2(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___CountryName_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___CountryName_2), (void*)value); } inline static int32_t get_offset_of_LocalityName_3() { return static_cast(offsetof(X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_StaticFields, ___LocalityName_3)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_LocalityName_3() const { return ___LocalityName_3; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_LocalityName_3() { return &___LocalityName_3; } inline void set_LocalityName_3(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___LocalityName_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___LocalityName_3), (void*)value); } inline static int32_t get_offset_of_StateOrProvinceName_4() { return static_cast(offsetof(X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_StaticFields, ___StateOrProvinceName_4)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_StateOrProvinceName_4() const { return ___StateOrProvinceName_4; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_StateOrProvinceName_4() { return &___StateOrProvinceName_4; } inline void set_StateOrProvinceName_4(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___StateOrProvinceName_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___StateOrProvinceName_4), (void*)value); } inline static int32_t get_offset_of_Organization_5() { return static_cast(offsetof(X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_StaticFields, ___Organization_5)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Organization_5() const { return ___Organization_5; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Organization_5() { return &___Organization_5; } inline void set_Organization_5(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Organization_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___Organization_5), (void*)value); } inline static int32_t get_offset_of_OrganizationalUnitName_6() { return static_cast(offsetof(X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_StaticFields, ___OrganizationalUnitName_6)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_OrganizationalUnitName_6() const { return ___OrganizationalUnitName_6; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_OrganizationalUnitName_6() { return &___OrganizationalUnitName_6; } inline void set_OrganizationalUnitName_6(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___OrganizationalUnitName_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___OrganizationalUnitName_6), (void*)value); } inline static int32_t get_offset_of_id_at_telephoneNumber_7() { return static_cast(offsetof(X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_StaticFields, ___id_at_telephoneNumber_7)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_id_at_telephoneNumber_7() const { return ___id_at_telephoneNumber_7; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_id_at_telephoneNumber_7() { return &___id_at_telephoneNumber_7; } inline void set_id_at_telephoneNumber_7(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___id_at_telephoneNumber_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___id_at_telephoneNumber_7), (void*)value); } inline static int32_t get_offset_of_id_at_name_8() { return static_cast(offsetof(X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_StaticFields, ___id_at_name_8)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_id_at_name_8() const { return ___id_at_name_8; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_id_at_name_8() { return &___id_at_name_8; } inline void set_id_at_name_8(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___id_at_name_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___id_at_name_8), (void*)value); } inline static int32_t get_offset_of_id_at_organizationIdentifier_9() { return static_cast(offsetof(X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_StaticFields, ___id_at_organizationIdentifier_9)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_id_at_organizationIdentifier_9() const { return ___id_at_organizationIdentifier_9; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_id_at_organizationIdentifier_9() { return &___id_at_organizationIdentifier_9; } inline void set_id_at_organizationIdentifier_9(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___id_at_organizationIdentifier_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___id_at_organizationIdentifier_9), (void*)value); } inline static int32_t get_offset_of_IdSha1_10() { return static_cast(offsetof(X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_StaticFields, ___IdSha1_10)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdSha1_10() const { return ___IdSha1_10; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdSha1_10() { return &___IdSha1_10; } inline void set_IdSha1_10(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdSha1_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdSha1_10), (void*)value); } inline static int32_t get_offset_of_RipeMD160_11() { return static_cast(offsetof(X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_StaticFields, ___RipeMD160_11)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_RipeMD160_11() const { return ___RipeMD160_11; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_RipeMD160_11() { return &___RipeMD160_11; } inline void set_RipeMD160_11(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___RipeMD160_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___RipeMD160_11), (void*)value); } inline static int32_t get_offset_of_RipeMD160WithRsaEncryption_12() { return static_cast(offsetof(X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_StaticFields, ___RipeMD160WithRsaEncryption_12)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_RipeMD160WithRsaEncryption_12() const { return ___RipeMD160WithRsaEncryption_12; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_RipeMD160WithRsaEncryption_12() { return &___RipeMD160WithRsaEncryption_12; } inline void set_RipeMD160WithRsaEncryption_12(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___RipeMD160WithRsaEncryption_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___RipeMD160WithRsaEncryption_12), (void*)value); } inline static int32_t get_offset_of_IdEARsa_13() { return static_cast(offsetof(X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_StaticFields, ___IdEARsa_13)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdEARsa_13() const { return ___IdEARsa_13; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdEARsa_13() { return &___IdEARsa_13; } inline void set_IdEARsa_13(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdEARsa_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdEARsa_13), (void*)value); } inline static int32_t get_offset_of_IdPkix_14() { return static_cast(offsetof(X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_StaticFields, ___IdPkix_14)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdPkix_14() const { return ___IdPkix_14; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdPkix_14() { return &___IdPkix_14; } inline void set_IdPkix_14(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdPkix_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdPkix_14), (void*)value); } inline static int32_t get_offset_of_IdPE_15() { return static_cast(offsetof(X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_StaticFields, ___IdPE_15)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdPE_15() const { return ___IdPE_15; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdPE_15() { return &___IdPE_15; } inline void set_IdPE_15(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdPE_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdPE_15), (void*)value); } inline static int32_t get_offset_of_IdAD_16() { return static_cast(offsetof(X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_StaticFields, ___IdAD_16)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdAD_16() const { return ___IdAD_16; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdAD_16() { return &___IdAD_16; } inline void set_IdAD_16(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdAD_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdAD_16), (void*)value); } inline static int32_t get_offset_of_IdADCAIssuers_17() { return static_cast(offsetof(X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_StaticFields, ___IdADCAIssuers_17)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdADCAIssuers_17() const { return ___IdADCAIssuers_17; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdADCAIssuers_17() { return &___IdADCAIssuers_17; } inline void set_IdADCAIssuers_17(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdADCAIssuers_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdADCAIssuers_17), (void*)value); } inline static int32_t get_offset_of_IdADOcsp_18() { return static_cast(offsetof(X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_StaticFields, ___IdADOcsp_18)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdADOcsp_18() const { return ___IdADOcsp_18; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdADOcsp_18() { return &___IdADOcsp_18; } inline void set_IdADOcsp_18(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdADOcsp_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdADOcsp_18), (void*)value); } inline static int32_t get_offset_of_OcspAccessMethod_19() { return static_cast(offsetof(X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_StaticFields, ___OcspAccessMethod_19)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_OcspAccessMethod_19() const { return ___OcspAccessMethod_19; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_OcspAccessMethod_19() { return &___OcspAccessMethod_19; } inline void set_OcspAccessMethod_19(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___OcspAccessMethod_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___OcspAccessMethod_19), (void*)value); } inline static int32_t get_offset_of_CrlAccessMethod_20() { return static_cast(offsetof(X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_StaticFields, ___CrlAccessMethod_20)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_CrlAccessMethod_20() const { return ___CrlAccessMethod_20; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_CrlAccessMethod_20() { return &___CrlAccessMethod_20; } inline void set_CrlAccessMethod_20(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___CrlAccessMethod_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___CrlAccessMethod_20), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509SignatureUtilities struct X509SignatureUtilities_t8501EA8FD0BAA2A5981CC285626A3BBA6990A9D9 : public RuntimeObject { public: public: }; struct X509SignatureUtilities_t8501EA8FD0BAA2A5981CC285626A3BBA6990A9D9_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Null BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509SignatureUtilities::derNull Asn1Null_t5D40C5C3674510061A0C219CEB9849A5EF6492BC * ___derNull_0; public: inline static int32_t get_offset_of_derNull_0() { return static_cast(offsetof(X509SignatureUtilities_t8501EA8FD0BAA2A5981CC285626A3BBA6990A9D9_StaticFields, ___derNull_0)); } inline Asn1Null_t5D40C5C3674510061A0C219CEB9849A5EF6492BC * get_derNull_0() const { return ___derNull_0; } inline Asn1Null_t5D40C5C3674510061A0C219CEB9849A5EF6492BC ** get_address_of_derNull_0() { return &___derNull_0; } inline void set_derNull_0(Asn1Null_t5D40C5C3674510061A0C219CEB9849A5EF6492BC * value) { ___derNull_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___derNull_0), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.Store.X509StoreFactory struct X509StoreFactory_t60AFFB876F20A291ED4E862C50E10128DBFA623B : public RuntimeObject { public: public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Operators.X509Utilities struct X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4 : public RuntimeObject { public: public: }; struct X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Null BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Operators.X509Utilities::derNull Asn1Null_t5D40C5C3674510061A0C219CEB9849A5EF6492BC * ___derNull_0; // System.Collections.IDictionary BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Operators.X509Utilities::algorithms RuntimeObject* ___algorithms_1; // System.Collections.IDictionary BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Operators.X509Utilities::exParams RuntimeObject* ___exParams_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections.ISet BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Operators.X509Utilities::noParams RuntimeObject* ___noParams_3; public: inline static int32_t get_offset_of_derNull_0() { return static_cast(offsetof(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields, ___derNull_0)); } inline Asn1Null_t5D40C5C3674510061A0C219CEB9849A5EF6492BC * get_derNull_0() const { return ___derNull_0; } inline Asn1Null_t5D40C5C3674510061A0C219CEB9849A5EF6492BC ** get_address_of_derNull_0() { return &___derNull_0; } inline void set_derNull_0(Asn1Null_t5D40C5C3674510061A0C219CEB9849A5EF6492BC * value) { ___derNull_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___derNull_0), (void*)value); } inline static int32_t get_offset_of_algorithms_1() { return static_cast(offsetof(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields, ___algorithms_1)); } inline RuntimeObject* get_algorithms_1() const { return ___algorithms_1; } inline RuntimeObject** get_address_of_algorithms_1() { return &___algorithms_1; } inline void set_algorithms_1(RuntimeObject* value) { ___algorithms_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___algorithms_1), (void*)value); } inline static int32_t get_offset_of_exParams_2() { return static_cast(offsetof(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields, ___exParams_2)); } inline RuntimeObject* get_exParams_2() const { return ___exParams_2; } inline RuntimeObject** get_address_of_exParams_2() { return &___exParams_2; } inline void set_exParams_2(RuntimeObject* value) { ___exParams_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___exParams_2), (void*)value); } inline static int32_t get_offset_of_noParams_3() { return static_cast(offsetof(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields, ___noParams_3)); } inline RuntimeObject* get_noParams_3() const { return ___noParams_3; } inline RuntimeObject** get_address_of_noParams_3() { return &___noParams_3; } inline void set_noParams_3(RuntimeObject* value) { ___noParams_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___noParams_3), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Utilities struct X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9 : public RuntimeObject { public: public: }; struct X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields { public: // System.Collections.IDictionary BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Utilities::algorithms RuntimeObject* ___algorithms_0; // System.Collections.IDictionary BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Utilities::exParams RuntimeObject* ___exParams_1; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections.ISet BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Utilities::noParams RuntimeObject* ___noParams_2; public: inline static int32_t get_offset_of_algorithms_0() { return static_cast(offsetof(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields, ___algorithms_0)); } inline RuntimeObject* get_algorithms_0() const { return ___algorithms_0; } inline RuntimeObject** get_address_of_algorithms_0() { return &___algorithms_0; } inline void set_algorithms_0(RuntimeObject* value) { ___algorithms_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___algorithms_0), (void*)value); } inline static int32_t get_offset_of_exParams_1() { return static_cast(offsetof(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields, ___exParams_1)); } inline RuntimeObject* get_exParams_1() const { return ___exParams_1; } inline RuntimeObject** get_address_of_exParams_1() { return &___exParams_1; } inline void set_exParams_1(RuntimeObject* value) { ___exParams_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___exParams_1), (void*)value); } inline static int32_t get_offset_of_noParams_2() { return static_cast(offsetof(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields, ___noParams_2)); } inline RuntimeObject* get_noParams_2() const { return ___noParams_2; } inline RuntimeObject** get_address_of_noParams_2() { return &___noParams_2; } inline void set_noParams_2(RuntimeObject* value) { ___noParams_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___noParams_2), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V1CertificateGenerator struct X509V1CertificateGenerator_t010F8B11CD3F1A8AC4E596141AD1AFA3C02E9EE9 : public RuntimeObject { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V1TbsCertificateGenerator BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V1CertificateGenerator::tbsGen V1TbsCertificateGenerator_t0C696954AC2E290683DA1581EA144E4EBB8D2D10 * ___tbsGen_0; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V1CertificateGenerator::sigOID DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___sigOID_1; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V1CertificateGenerator::sigAlgId AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___sigAlgId_2; // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V1CertificateGenerator::signatureAlgorithm String_t* ___signatureAlgorithm_3; public: inline static int32_t get_offset_of_tbsGen_0() { return static_cast(offsetof(X509V1CertificateGenerator_t010F8B11CD3F1A8AC4E596141AD1AFA3C02E9EE9, ___tbsGen_0)); } inline V1TbsCertificateGenerator_t0C696954AC2E290683DA1581EA144E4EBB8D2D10 * get_tbsGen_0() const { return ___tbsGen_0; } inline V1TbsCertificateGenerator_t0C696954AC2E290683DA1581EA144E4EBB8D2D10 ** get_address_of_tbsGen_0() { return &___tbsGen_0; } inline void set_tbsGen_0(V1TbsCertificateGenerator_t0C696954AC2E290683DA1581EA144E4EBB8D2D10 * value) { ___tbsGen_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___tbsGen_0), (void*)value); } inline static int32_t get_offset_of_sigOID_1() { return static_cast(offsetof(X509V1CertificateGenerator_t010F8B11CD3F1A8AC4E596141AD1AFA3C02E9EE9, ___sigOID_1)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_sigOID_1() const { return ___sigOID_1; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_sigOID_1() { return &___sigOID_1; } inline void set_sigOID_1(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___sigOID_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___sigOID_1), (void*)value); } inline static int32_t get_offset_of_sigAlgId_2() { return static_cast(offsetof(X509V1CertificateGenerator_t010F8B11CD3F1A8AC4E596141AD1AFA3C02E9EE9, ___sigAlgId_2)); } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * get_sigAlgId_2() const { return ___sigAlgId_2; } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 ** get_address_of_sigAlgId_2() { return &___sigAlgId_2; } inline void set_sigAlgId_2(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * value) { ___sigAlgId_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___sigAlgId_2), (void*)value); } inline static int32_t get_offset_of_signatureAlgorithm_3() { return static_cast(offsetof(X509V1CertificateGenerator_t010F8B11CD3F1A8AC4E596141AD1AFA3C02E9EE9, ___signatureAlgorithm_3)); } inline String_t* get_signatureAlgorithm_3() const { return ___signatureAlgorithm_3; } inline String_t** get_address_of_signatureAlgorithm_3() { return &___signatureAlgorithm_3; } inline void set_signatureAlgorithm_3(String_t* value) { ___signatureAlgorithm_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___signatureAlgorithm_3), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificateGenerator struct X509V2AttributeCertificateGenerator_t1D1AA3B97DC5936015611DA35A8759A26D6FF775 : public RuntimeObject { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509ExtensionsGenerator BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificateGenerator::extGenerator X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017 * ___extGenerator_0; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V2AttributeCertificateInfoGenerator BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificateGenerator::acInfoGen V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036 * ___acInfoGen_1; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificateGenerator::sigOID DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___sigOID_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificateGenerator::sigAlgId AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___sigAlgId_3; // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificateGenerator::signatureAlgorithm String_t* ___signatureAlgorithm_4; public: inline static int32_t get_offset_of_extGenerator_0() { return static_cast(offsetof(X509V2AttributeCertificateGenerator_t1D1AA3B97DC5936015611DA35A8759A26D6FF775, ___extGenerator_0)); } inline X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017 * get_extGenerator_0() const { return ___extGenerator_0; } inline X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017 ** get_address_of_extGenerator_0() { return &___extGenerator_0; } inline void set_extGenerator_0(X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017 * value) { ___extGenerator_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___extGenerator_0), (void*)value); } inline static int32_t get_offset_of_acInfoGen_1() { return static_cast(offsetof(X509V2AttributeCertificateGenerator_t1D1AA3B97DC5936015611DA35A8759A26D6FF775, ___acInfoGen_1)); } inline V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036 * get_acInfoGen_1() const { return ___acInfoGen_1; } inline V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036 ** get_address_of_acInfoGen_1() { return &___acInfoGen_1; } inline void set_acInfoGen_1(V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036 * value) { ___acInfoGen_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___acInfoGen_1), (void*)value); } inline static int32_t get_offset_of_sigOID_2() { return static_cast(offsetof(X509V2AttributeCertificateGenerator_t1D1AA3B97DC5936015611DA35A8759A26D6FF775, ___sigOID_2)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_sigOID_2() const { return ___sigOID_2; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_sigOID_2() { return &___sigOID_2; } inline void set_sigOID_2(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___sigOID_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___sigOID_2), (void*)value); } inline static int32_t get_offset_of_sigAlgId_3() { return static_cast(offsetof(X509V2AttributeCertificateGenerator_t1D1AA3B97DC5936015611DA35A8759A26D6FF775, ___sigAlgId_3)); } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * get_sigAlgId_3() const { return ___sigAlgId_3; } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 ** get_address_of_sigAlgId_3() { return &___sigAlgId_3; } inline void set_sigAlgId_3(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * value) { ___sigAlgId_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___sigAlgId_3), (void*)value); } inline static int32_t get_offset_of_signatureAlgorithm_4() { return static_cast(offsetof(X509V2AttributeCertificateGenerator_t1D1AA3B97DC5936015611DA35A8759A26D6FF775, ___signatureAlgorithm_4)); } inline String_t* get_signatureAlgorithm_4() const { return ___signatureAlgorithm_4; } inline String_t** get_address_of_signatureAlgorithm_4() { return &___signatureAlgorithm_4; } inline void set_signatureAlgorithm_4(String_t* value) { ___signatureAlgorithm_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___signatureAlgorithm_4), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2CrlGenerator struct X509V2CrlGenerator_tE24775033089328401498B8DB1FB8176B95EA09D : public RuntimeObject { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509ExtensionsGenerator BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2CrlGenerator::extGenerator X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017 * ___extGenerator_0; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V2TbsCertListGenerator BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2CrlGenerator::tbsGen V2TbsCertListGenerator_tC7920E9D2AE505500F0D2338C49267713D9D76E3 * ___tbsGen_1; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2CrlGenerator::sigOID DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___sigOID_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2CrlGenerator::sigAlgId AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___sigAlgId_3; // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2CrlGenerator::signatureAlgorithm String_t* ___signatureAlgorithm_4; public: inline static int32_t get_offset_of_extGenerator_0() { return static_cast(offsetof(X509V2CrlGenerator_tE24775033089328401498B8DB1FB8176B95EA09D, ___extGenerator_0)); } inline X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017 * get_extGenerator_0() const { return ___extGenerator_0; } inline X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017 ** get_address_of_extGenerator_0() { return &___extGenerator_0; } inline void set_extGenerator_0(X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017 * value) { ___extGenerator_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___extGenerator_0), (void*)value); } inline static int32_t get_offset_of_tbsGen_1() { return static_cast(offsetof(X509V2CrlGenerator_tE24775033089328401498B8DB1FB8176B95EA09D, ___tbsGen_1)); } inline V2TbsCertListGenerator_tC7920E9D2AE505500F0D2338C49267713D9D76E3 * get_tbsGen_1() const { return ___tbsGen_1; } inline V2TbsCertListGenerator_tC7920E9D2AE505500F0D2338C49267713D9D76E3 ** get_address_of_tbsGen_1() { return &___tbsGen_1; } inline void set_tbsGen_1(V2TbsCertListGenerator_tC7920E9D2AE505500F0D2338C49267713D9D76E3 * value) { ___tbsGen_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___tbsGen_1), (void*)value); } inline static int32_t get_offset_of_sigOID_2() { return static_cast(offsetof(X509V2CrlGenerator_tE24775033089328401498B8DB1FB8176B95EA09D, ___sigOID_2)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_sigOID_2() const { return ___sigOID_2; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_sigOID_2() { return &___sigOID_2; } inline void set_sigOID_2(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___sigOID_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___sigOID_2), (void*)value); } inline static int32_t get_offset_of_sigAlgId_3() { return static_cast(offsetof(X509V2CrlGenerator_tE24775033089328401498B8DB1FB8176B95EA09D, ___sigAlgId_3)); } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * get_sigAlgId_3() const { return ___sigAlgId_3; } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 ** get_address_of_sigAlgId_3() { return &___sigAlgId_3; } inline void set_sigAlgId_3(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * value) { ___sigAlgId_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___sigAlgId_3), (void*)value); } inline static int32_t get_offset_of_signatureAlgorithm_4() { return static_cast(offsetof(X509V2CrlGenerator_tE24775033089328401498B8DB1FB8176B95EA09D, ___signatureAlgorithm_4)); } inline String_t* get_signatureAlgorithm_4() const { return ___signatureAlgorithm_4; } inline String_t** get_address_of_signatureAlgorithm_4() { return &___signatureAlgorithm_4; } inline void set_signatureAlgorithm_4(String_t* value) { ___signatureAlgorithm_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___signatureAlgorithm_4), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V3CertificateGenerator struct X509V3CertificateGenerator_tB58451ED00FF86B307032EF7908726B9D601664E : public RuntimeObject { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509ExtensionsGenerator BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V3CertificateGenerator::extGenerator X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017 * ___extGenerator_0; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V3TbsCertificateGenerator BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V3CertificateGenerator::tbsGen V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3 * ___tbsGen_1; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V3CertificateGenerator::sigOid DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___sigOid_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V3CertificateGenerator::sigAlgId AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___sigAlgId_3; // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V3CertificateGenerator::signatureAlgorithm String_t* ___signatureAlgorithm_4; public: inline static int32_t get_offset_of_extGenerator_0() { return static_cast(offsetof(X509V3CertificateGenerator_tB58451ED00FF86B307032EF7908726B9D601664E, ___extGenerator_0)); } inline X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017 * get_extGenerator_0() const { return ___extGenerator_0; } inline X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017 ** get_address_of_extGenerator_0() { return &___extGenerator_0; } inline void set_extGenerator_0(X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017 * value) { ___extGenerator_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___extGenerator_0), (void*)value); } inline static int32_t get_offset_of_tbsGen_1() { return static_cast(offsetof(X509V3CertificateGenerator_tB58451ED00FF86B307032EF7908726B9D601664E, ___tbsGen_1)); } inline V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3 * get_tbsGen_1() const { return ___tbsGen_1; } inline V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3 ** get_address_of_tbsGen_1() { return &___tbsGen_1; } inline void set_tbsGen_1(V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3 * value) { ___tbsGen_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___tbsGen_1), (void*)value); } inline static int32_t get_offset_of_sigOid_2() { return static_cast(offsetof(X509V3CertificateGenerator_tB58451ED00FF86B307032EF7908726B9D601664E, ___sigOid_2)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_sigOid_2() const { return ___sigOid_2; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_sigOid_2() { return &___sigOid_2; } inline void set_sigOid_2(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___sigOid_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___sigOid_2), (void*)value); } inline static int32_t get_offset_of_sigAlgId_3() { return static_cast(offsetof(X509V3CertificateGenerator_tB58451ED00FF86B307032EF7908726B9D601664E, ___sigAlgId_3)); } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * get_sigAlgId_3() const { return ___sigAlgId_3; } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 ** get_address_of_sigAlgId_3() { return &___sigAlgId_3; } inline void set_sigAlgId_3(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * value) { ___sigAlgId_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___sigAlgId_3), (void*)value); } inline static int32_t get_offset_of_signatureAlgorithm_4() { return static_cast(offsetof(X509V3CertificateGenerator_tB58451ED00FF86B307032EF7908726B9D601664E, ___signatureAlgorithm_4)); } inline String_t* get_signatureAlgorithm_4() const { return ___signatureAlgorithm_4; } inline String_t** get_address_of_signatureAlgorithm_4() { return &___signatureAlgorithm_4; } inline void set_signatureAlgorithm_4(String_t* value) { ___signatureAlgorithm_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___signatureAlgorithm_4), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Paddings.X923Padding struct X923Padding_t1226C4D23EC385127EA29971778309857A87FA0C : public RuntimeObject { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Paddings.X923Padding::random SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * ___random_0; public: inline static int32_t get_offset_of_random_0() { return static_cast(offsetof(X923Padding_t1226C4D23EC385127EA29971778309857A87FA0C, ___random_0)); } inline SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * get_random_0() const { return ___random_0; } inline SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 ** get_address_of_random_0() { return &___random_0; } inline void set_random_0(SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * value) { ___random_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___random_0), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.X931Rng struct X931Rng_t7B9242C1A220EC8F7036A04EB335B10EE7E26800 : public RuntimeObject { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.X931Rng::mEngine RuntimeObject* ___mEngine_4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IEntropySource BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.X931Rng::mEntropySource RuntimeObject* ___mEntropySource_5; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.X931Rng::mDT ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___mDT_6; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.X931Rng::mI ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___mI_7; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.X931Rng::mR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___mR_8; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.X931Rng::mV ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___mV_9; // System.Int64 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.X931Rng::mReseedCounter int64_t ___mReseedCounter_10; public: inline static int32_t get_offset_of_mEngine_4() { return static_cast(offsetof(X931Rng_t7B9242C1A220EC8F7036A04EB335B10EE7E26800, ___mEngine_4)); } inline RuntimeObject* get_mEngine_4() const { return ___mEngine_4; } inline RuntimeObject** get_address_of_mEngine_4() { return &___mEngine_4; } inline void set_mEngine_4(RuntimeObject* value) { ___mEngine_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___mEngine_4), (void*)value); } inline static int32_t get_offset_of_mEntropySource_5() { return static_cast(offsetof(X931Rng_t7B9242C1A220EC8F7036A04EB335B10EE7E26800, ___mEntropySource_5)); } inline RuntimeObject* get_mEntropySource_5() const { return ___mEntropySource_5; } inline RuntimeObject** get_address_of_mEntropySource_5() { return &___mEntropySource_5; } inline void set_mEntropySource_5(RuntimeObject* value) { ___mEntropySource_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___mEntropySource_5), (void*)value); } inline static int32_t get_offset_of_mDT_6() { return static_cast(offsetof(X931Rng_t7B9242C1A220EC8F7036A04EB335B10EE7E26800, ___mDT_6)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_mDT_6() const { return ___mDT_6; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_mDT_6() { return &___mDT_6; } inline void set_mDT_6(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___mDT_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___mDT_6), (void*)value); } inline static int32_t get_offset_of_mI_7() { return static_cast(offsetof(X931Rng_t7B9242C1A220EC8F7036A04EB335B10EE7E26800, ___mI_7)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_mI_7() const { return ___mI_7; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_mI_7() { return &___mI_7; } inline void set_mI_7(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___mI_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___mI_7), (void*)value); } inline static int32_t get_offset_of_mR_8() { return static_cast(offsetof(X931Rng_t7B9242C1A220EC8F7036A04EB335B10EE7E26800, ___mR_8)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_mR_8() const { return ___mR_8; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_mR_8() { return &___mR_8; } inline void set_mR_8(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___mR_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___mR_8), (void*)value); } inline static int32_t get_offset_of_mV_9() { return static_cast(offsetof(X931Rng_t7B9242C1A220EC8F7036A04EB335B10EE7E26800, ___mV_9)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_mV_9() const { return ___mV_9; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_mV_9() { return &___mV_9; } inline void set_mV_9(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___mV_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___mV_9), (void*)value); } inline static int32_t get_offset_of_mReseedCounter_10() { return static_cast(offsetof(X931Rng_t7B9242C1A220EC8F7036A04EB335B10EE7E26800, ___mReseedCounter_10)); } inline int64_t get_mReseedCounter_10() const { return ___mReseedCounter_10; } inline int64_t* get_address_of_mReseedCounter_10() { return &___mReseedCounter_10; } inline void set_mReseedCounter_10(int64_t value) { ___mReseedCounter_10 = value; } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.X931SecureRandomBuilder struct X931SecureRandomBuilder_tF2FF9454E4C0A76A4297D2D1E0A3F1E48A85E5A7 : public RuntimeObject { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.X931SecureRandomBuilder::mRandom SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * ___mRandom_0; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IEntropySourceProvider BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.X931SecureRandomBuilder::mEntropySourceProvider RuntimeObject* ___mEntropySourceProvider_1; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.X931SecureRandomBuilder::mDateTimeVector ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___mDateTimeVector_2; public: inline static int32_t get_offset_of_mRandom_0() { return static_cast(offsetof(X931SecureRandomBuilder_tF2FF9454E4C0A76A4297D2D1E0A3F1E48A85E5A7, ___mRandom_0)); } inline SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * get_mRandom_0() const { return ___mRandom_0; } inline SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 ** get_address_of_mRandom_0() { return &___mRandom_0; } inline void set_mRandom_0(SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * value) { ___mRandom_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___mRandom_0), (void*)value); } inline static int32_t get_offset_of_mEntropySourceProvider_1() { return static_cast(offsetof(X931SecureRandomBuilder_tF2FF9454E4C0A76A4297D2D1E0A3F1E48A85E5A7, ___mEntropySourceProvider_1)); } inline RuntimeObject* get_mEntropySourceProvider_1() const { return ___mEntropySourceProvider_1; } inline RuntimeObject** get_address_of_mEntropySourceProvider_1() { return &___mEntropySourceProvider_1; } inline void set_mEntropySourceProvider_1(RuntimeObject* value) { ___mEntropySourceProvider_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___mEntropySourceProvider_1), (void*)value); } inline static int32_t get_offset_of_mDateTimeVector_2() { return static_cast(offsetof(X931SecureRandomBuilder_tF2FF9454E4C0A76A4297D2D1E0A3F1E48A85E5A7, ___mDateTimeVector_2)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_mDateTimeVector_2() const { return ___mDateTimeVector_2; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_mDateTimeVector_2() { return &___mDateTimeVector_2; } inline void set_mDateTimeVector_2(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___mDateTimeVector_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___mDateTimeVector_2), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Signers.X931Signer struct X931Signer_t0C97B2C6A01B4D8F252321BA5CD572D7D1FF2D6B : public RuntimeObject { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IDigest BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Signers.X931Signer::digest RuntimeObject* ___digest_9; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IAsymmetricBlockCipher BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Signers.X931Signer::cipher RuntimeObject* ___cipher_10; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Signers.X931Signer::kParam RsaKeyParameters_t5CEAA6F9B92D2B6F1225DFF7C089B43146012801 * ___kParam_11; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Signers.X931Signer::trailer int32_t ___trailer_12; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Signers.X931Signer::keyBits int32_t ___keyBits_13; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Signers.X931Signer::block ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___block_14; public: inline static int32_t get_offset_of_digest_9() { return static_cast(offsetof(X931Signer_t0C97B2C6A01B4D8F252321BA5CD572D7D1FF2D6B, ___digest_9)); } inline RuntimeObject* get_digest_9() const { return ___digest_9; } inline RuntimeObject** get_address_of_digest_9() { return &___digest_9; } inline void set_digest_9(RuntimeObject* value) { ___digest_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___digest_9), (void*)value); } inline static int32_t get_offset_of_cipher_10() { return static_cast(offsetof(X931Signer_t0C97B2C6A01B4D8F252321BA5CD572D7D1FF2D6B, ___cipher_10)); } inline RuntimeObject* get_cipher_10() const { return ___cipher_10; } inline RuntimeObject** get_address_of_cipher_10() { return &___cipher_10; } inline void set_cipher_10(RuntimeObject* value) { ___cipher_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___cipher_10), (void*)value); } inline static int32_t get_offset_of_kParam_11() { return static_cast(offsetof(X931Signer_t0C97B2C6A01B4D8F252321BA5CD572D7D1FF2D6B, ___kParam_11)); } inline RsaKeyParameters_t5CEAA6F9B92D2B6F1225DFF7C089B43146012801 * get_kParam_11() const { return ___kParam_11; } inline RsaKeyParameters_t5CEAA6F9B92D2B6F1225DFF7C089B43146012801 ** get_address_of_kParam_11() { return &___kParam_11; } inline void set_kParam_11(RsaKeyParameters_t5CEAA6F9B92D2B6F1225DFF7C089B43146012801 * value) { ___kParam_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___kParam_11), (void*)value); } inline static int32_t get_offset_of_trailer_12() { return static_cast(offsetof(X931Signer_t0C97B2C6A01B4D8F252321BA5CD572D7D1FF2D6B, ___trailer_12)); } inline int32_t get_trailer_12() const { return ___trailer_12; } inline int32_t* get_address_of_trailer_12() { return &___trailer_12; } inline void set_trailer_12(int32_t value) { ___trailer_12 = value; } inline static int32_t get_offset_of_keyBits_13() { return static_cast(offsetof(X931Signer_t0C97B2C6A01B4D8F252321BA5CD572D7D1FF2D6B, ___keyBits_13)); } inline int32_t get_keyBits_13() const { return ___keyBits_13; } inline int32_t* get_address_of_keyBits_13() { return &___keyBits_13; } inline void set_keyBits_13(int32_t value) { ___keyBits_13 = value; } inline static int32_t get_offset_of_block_14() { return static_cast(offsetof(X931Signer_t0C97B2C6A01B4D8F252321BA5CD572D7D1FF2D6B, ___block_14)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_block_14() const { return ___block_14; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_block_14() { return &___block_14; } inline void set_block_14(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___block_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___block_14), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves struct X962NamedCurves_tBB2BFD74E2BCFB26E51F7D9F5BD8F9AF6C4E610C : public RuntimeObject { public: public: }; struct X962NamedCurves_tBB2BFD74E2BCFB26E51F7D9F5BD8F9AF6C4E610C_StaticFields { public: // System.Collections.IDictionary BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves::objIds RuntimeObject* ___objIds_0; // System.Collections.IDictionary BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves::curves RuntimeObject* ___curves_1; // System.Collections.IDictionary BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves::names RuntimeObject* ___names_2; public: inline static int32_t get_offset_of_objIds_0() { return static_cast(offsetof(X962NamedCurves_tBB2BFD74E2BCFB26E51F7D9F5BD8F9AF6C4E610C_StaticFields, ___objIds_0)); } inline RuntimeObject* get_objIds_0() const { return ___objIds_0; } inline RuntimeObject** get_address_of_objIds_0() { return &___objIds_0; } inline void set_objIds_0(RuntimeObject* value) { ___objIds_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___objIds_0), (void*)value); } inline static int32_t get_offset_of_curves_1() { return static_cast(offsetof(X962NamedCurves_tBB2BFD74E2BCFB26E51F7D9F5BD8F9AF6C4E610C_StaticFields, ___curves_1)); } inline RuntimeObject* get_curves_1() const { return ___curves_1; } inline RuntimeObject** get_address_of_curves_1() { return &___curves_1; } inline void set_curves_1(RuntimeObject* value) { ___curves_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___curves_1), (void*)value); } inline static int32_t get_offset_of_names_2() { return static_cast(offsetof(X962NamedCurves_tBB2BFD74E2BCFB26E51F7D9F5BD8F9AF6C4E610C_StaticFields, ___names_2)); } inline RuntimeObject* get_names_2() const { return ___names_2; } inline RuntimeObject** get_address_of_names_2() { return &___names_2; } inline void set_names_2(RuntimeObject* value) { ___names_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___names_2), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParametersHolder struct X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC : public RuntimeObject { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParameters BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParametersHolder::parameters X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639 * ___parameters_0; public: inline static int32_t get_offset_of_parameters_0() { return static_cast(offsetof(X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC, ___parameters_0)); } inline X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639 * get_parameters_0() const { return ___parameters_0; } inline X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639 ** get_address_of_parameters_0() { return &___parameters_0; } inline void set_parameters_0(X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639 * value) { ___parameters_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___parameters_0), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9IntegerConverter struct X9IntegerConverter_t809A7A8949520D9F6EA5F8C7AC94BE04E9496C7E : public RuntimeObject { public: public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers struct X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E : public RuntimeObject { public: public: }; struct X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::ansi_X9_62 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___ansi_X9_62_1; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::IdFieldType DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdFieldType_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::PrimeField DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___PrimeField_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::CharacteristicTwoField DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___CharacteristicTwoField_4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::GNBasis DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___GNBasis_5; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::TPBasis DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___TPBasis_6; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::PPBasis DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___PPBasis_7; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::id_ecSigType DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___id_ecSigType_9; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::ECDsaWithSha1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___ECDsaWithSha1_10; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::id_publicKeyType DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___id_publicKeyType_12; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::IdECPublicKey DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdECPublicKey_13; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::ECDsaWithSha2 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___ECDsaWithSha2_14; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::ECDsaWithSha224 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___ECDsaWithSha224_15; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::ECDsaWithSha256 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___ECDsaWithSha256_16; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::ECDsaWithSha384 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___ECDsaWithSha384_17; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::ECDsaWithSha512 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___ECDsaWithSha512_18; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::EllipticCurve DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___EllipticCurve_19; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::CTwoCurve DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___CTwoCurve_20; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Pnb163v1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___C2Pnb163v1_21; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Pnb163v2 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___C2Pnb163v2_22; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Pnb163v3 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___C2Pnb163v3_23; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Pnb176w1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___C2Pnb176w1_24; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Tnb191v1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___C2Tnb191v1_25; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Tnb191v2 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___C2Tnb191v2_26; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Tnb191v3 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___C2Tnb191v3_27; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Onb191v4 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___C2Onb191v4_28; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Onb191v5 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___C2Onb191v5_29; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Pnb208w1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___C2Pnb208w1_30; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Tnb239v1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___C2Tnb239v1_31; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Tnb239v2 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___C2Tnb239v2_32; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Tnb239v3 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___C2Tnb239v3_33; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Onb239v4 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___C2Onb239v4_34; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Onb239v5 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___C2Onb239v5_35; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Pnb272w1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___C2Pnb272w1_36; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Pnb304w1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___C2Pnb304w1_37; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Tnb359v1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___C2Tnb359v1_38; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Pnb368w1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___C2Pnb368w1_39; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Tnb431r1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___C2Tnb431r1_40; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::PrimeCurve DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___PrimeCurve_41; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::Prime192v1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Prime192v1_42; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::Prime192v2 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Prime192v2_43; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::Prime192v3 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Prime192v3_44; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::Prime239v1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Prime239v1_45; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::Prime239v2 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Prime239v2_46; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::Prime239v3 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Prime239v3_47; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::Prime256v1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Prime256v1_48; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::IdDsa DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdDsa_49; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::IdDsaWithSha1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IdDsaWithSha1_50; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::X9x63Scheme DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___X9x63Scheme_51; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::DHSinglePassStdDHSha1KdfScheme DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DHSinglePassStdDHSha1KdfScheme_52; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::DHSinglePassCofactorDHSha1KdfScheme DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DHSinglePassCofactorDHSha1KdfScheme_53; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::MqvSinglePassSha1KdfScheme DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___MqvSinglePassSha1KdfScheme_54; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::ansi_x9_42 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___ansi_x9_42_55; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::DHPublicNumber DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DHPublicNumber_56; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::X9x42Schemes DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___X9x42Schemes_57; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::DHStatic DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DHStatic_58; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::DHEphem DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DHEphem_59; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::DHOneFlow DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DHOneFlow_60; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::DHHybrid1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DHHybrid1_61; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::DHHybrid2 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DHHybrid2_62; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::DHHybridOneFlow DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DHHybridOneFlow_63; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::Mqv2 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Mqv2_64; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::Mqv1 DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Mqv1_65; public: inline static int32_t get_offset_of_ansi_X9_62_1() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___ansi_X9_62_1)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_ansi_X9_62_1() const { return ___ansi_X9_62_1; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_ansi_X9_62_1() { return &___ansi_X9_62_1; } inline void set_ansi_X9_62_1(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___ansi_X9_62_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___ansi_X9_62_1), (void*)value); } inline static int32_t get_offset_of_IdFieldType_2() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___IdFieldType_2)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdFieldType_2() const { return ___IdFieldType_2; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdFieldType_2() { return &___IdFieldType_2; } inline void set_IdFieldType_2(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdFieldType_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdFieldType_2), (void*)value); } inline static int32_t get_offset_of_PrimeField_3() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___PrimeField_3)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_PrimeField_3() const { return ___PrimeField_3; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_PrimeField_3() { return &___PrimeField_3; } inline void set_PrimeField_3(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___PrimeField_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___PrimeField_3), (void*)value); } inline static int32_t get_offset_of_CharacteristicTwoField_4() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___CharacteristicTwoField_4)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_CharacteristicTwoField_4() const { return ___CharacteristicTwoField_4; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_CharacteristicTwoField_4() { return &___CharacteristicTwoField_4; } inline void set_CharacteristicTwoField_4(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___CharacteristicTwoField_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___CharacteristicTwoField_4), (void*)value); } inline static int32_t get_offset_of_GNBasis_5() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___GNBasis_5)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_GNBasis_5() const { return ___GNBasis_5; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_GNBasis_5() { return &___GNBasis_5; } inline void set_GNBasis_5(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___GNBasis_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___GNBasis_5), (void*)value); } inline static int32_t get_offset_of_TPBasis_6() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___TPBasis_6)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_TPBasis_6() const { return ___TPBasis_6; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_TPBasis_6() { return &___TPBasis_6; } inline void set_TPBasis_6(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___TPBasis_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___TPBasis_6), (void*)value); } inline static int32_t get_offset_of_PPBasis_7() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___PPBasis_7)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_PPBasis_7() const { return ___PPBasis_7; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_PPBasis_7() { return &___PPBasis_7; } inline void set_PPBasis_7(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___PPBasis_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___PPBasis_7), (void*)value); } inline static int32_t get_offset_of_id_ecSigType_9() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___id_ecSigType_9)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_id_ecSigType_9() const { return ___id_ecSigType_9; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_id_ecSigType_9() { return &___id_ecSigType_9; } inline void set_id_ecSigType_9(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___id_ecSigType_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___id_ecSigType_9), (void*)value); } inline static int32_t get_offset_of_ECDsaWithSha1_10() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___ECDsaWithSha1_10)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_ECDsaWithSha1_10() const { return ___ECDsaWithSha1_10; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_ECDsaWithSha1_10() { return &___ECDsaWithSha1_10; } inline void set_ECDsaWithSha1_10(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___ECDsaWithSha1_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___ECDsaWithSha1_10), (void*)value); } inline static int32_t get_offset_of_id_publicKeyType_12() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___id_publicKeyType_12)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_id_publicKeyType_12() const { return ___id_publicKeyType_12; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_id_publicKeyType_12() { return &___id_publicKeyType_12; } inline void set_id_publicKeyType_12(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___id_publicKeyType_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___id_publicKeyType_12), (void*)value); } inline static int32_t get_offset_of_IdECPublicKey_13() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___IdECPublicKey_13)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdECPublicKey_13() const { return ___IdECPublicKey_13; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdECPublicKey_13() { return &___IdECPublicKey_13; } inline void set_IdECPublicKey_13(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdECPublicKey_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdECPublicKey_13), (void*)value); } inline static int32_t get_offset_of_ECDsaWithSha2_14() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___ECDsaWithSha2_14)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_ECDsaWithSha2_14() const { return ___ECDsaWithSha2_14; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_ECDsaWithSha2_14() { return &___ECDsaWithSha2_14; } inline void set_ECDsaWithSha2_14(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___ECDsaWithSha2_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___ECDsaWithSha2_14), (void*)value); } inline static int32_t get_offset_of_ECDsaWithSha224_15() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___ECDsaWithSha224_15)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_ECDsaWithSha224_15() const { return ___ECDsaWithSha224_15; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_ECDsaWithSha224_15() { return &___ECDsaWithSha224_15; } inline void set_ECDsaWithSha224_15(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___ECDsaWithSha224_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___ECDsaWithSha224_15), (void*)value); } inline static int32_t get_offset_of_ECDsaWithSha256_16() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___ECDsaWithSha256_16)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_ECDsaWithSha256_16() const { return ___ECDsaWithSha256_16; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_ECDsaWithSha256_16() { return &___ECDsaWithSha256_16; } inline void set_ECDsaWithSha256_16(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___ECDsaWithSha256_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___ECDsaWithSha256_16), (void*)value); } inline static int32_t get_offset_of_ECDsaWithSha384_17() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___ECDsaWithSha384_17)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_ECDsaWithSha384_17() const { return ___ECDsaWithSha384_17; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_ECDsaWithSha384_17() { return &___ECDsaWithSha384_17; } inline void set_ECDsaWithSha384_17(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___ECDsaWithSha384_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___ECDsaWithSha384_17), (void*)value); } inline static int32_t get_offset_of_ECDsaWithSha512_18() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___ECDsaWithSha512_18)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_ECDsaWithSha512_18() const { return ___ECDsaWithSha512_18; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_ECDsaWithSha512_18() { return &___ECDsaWithSha512_18; } inline void set_ECDsaWithSha512_18(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___ECDsaWithSha512_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___ECDsaWithSha512_18), (void*)value); } inline static int32_t get_offset_of_EllipticCurve_19() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___EllipticCurve_19)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_EllipticCurve_19() const { return ___EllipticCurve_19; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_EllipticCurve_19() { return &___EllipticCurve_19; } inline void set_EllipticCurve_19(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___EllipticCurve_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___EllipticCurve_19), (void*)value); } inline static int32_t get_offset_of_CTwoCurve_20() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___CTwoCurve_20)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_CTwoCurve_20() const { return ___CTwoCurve_20; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_CTwoCurve_20() { return &___CTwoCurve_20; } inline void set_CTwoCurve_20(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___CTwoCurve_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___CTwoCurve_20), (void*)value); } inline static int32_t get_offset_of_C2Pnb163v1_21() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___C2Pnb163v1_21)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_C2Pnb163v1_21() const { return ___C2Pnb163v1_21; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_C2Pnb163v1_21() { return &___C2Pnb163v1_21; } inline void set_C2Pnb163v1_21(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___C2Pnb163v1_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___C2Pnb163v1_21), (void*)value); } inline static int32_t get_offset_of_C2Pnb163v2_22() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___C2Pnb163v2_22)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_C2Pnb163v2_22() const { return ___C2Pnb163v2_22; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_C2Pnb163v2_22() { return &___C2Pnb163v2_22; } inline void set_C2Pnb163v2_22(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___C2Pnb163v2_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___C2Pnb163v2_22), (void*)value); } inline static int32_t get_offset_of_C2Pnb163v3_23() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___C2Pnb163v3_23)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_C2Pnb163v3_23() const { return ___C2Pnb163v3_23; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_C2Pnb163v3_23() { return &___C2Pnb163v3_23; } inline void set_C2Pnb163v3_23(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___C2Pnb163v3_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___C2Pnb163v3_23), (void*)value); } inline static int32_t get_offset_of_C2Pnb176w1_24() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___C2Pnb176w1_24)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_C2Pnb176w1_24() const { return ___C2Pnb176w1_24; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_C2Pnb176w1_24() { return &___C2Pnb176w1_24; } inline void set_C2Pnb176w1_24(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___C2Pnb176w1_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___C2Pnb176w1_24), (void*)value); } inline static int32_t get_offset_of_C2Tnb191v1_25() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___C2Tnb191v1_25)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_C2Tnb191v1_25() const { return ___C2Tnb191v1_25; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_C2Tnb191v1_25() { return &___C2Tnb191v1_25; } inline void set_C2Tnb191v1_25(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___C2Tnb191v1_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___C2Tnb191v1_25), (void*)value); } inline static int32_t get_offset_of_C2Tnb191v2_26() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___C2Tnb191v2_26)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_C2Tnb191v2_26() const { return ___C2Tnb191v2_26; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_C2Tnb191v2_26() { return &___C2Tnb191v2_26; } inline void set_C2Tnb191v2_26(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___C2Tnb191v2_26 = value; Il2CppCodeGenWriteBarrier((void**)(&___C2Tnb191v2_26), (void*)value); } inline static int32_t get_offset_of_C2Tnb191v3_27() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___C2Tnb191v3_27)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_C2Tnb191v3_27() const { return ___C2Tnb191v3_27; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_C2Tnb191v3_27() { return &___C2Tnb191v3_27; } inline void set_C2Tnb191v3_27(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___C2Tnb191v3_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___C2Tnb191v3_27), (void*)value); } inline static int32_t get_offset_of_C2Onb191v4_28() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___C2Onb191v4_28)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_C2Onb191v4_28() const { return ___C2Onb191v4_28; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_C2Onb191v4_28() { return &___C2Onb191v4_28; } inline void set_C2Onb191v4_28(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___C2Onb191v4_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___C2Onb191v4_28), (void*)value); } inline static int32_t get_offset_of_C2Onb191v5_29() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___C2Onb191v5_29)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_C2Onb191v5_29() const { return ___C2Onb191v5_29; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_C2Onb191v5_29() { return &___C2Onb191v5_29; } inline void set_C2Onb191v5_29(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___C2Onb191v5_29 = value; Il2CppCodeGenWriteBarrier((void**)(&___C2Onb191v5_29), (void*)value); } inline static int32_t get_offset_of_C2Pnb208w1_30() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___C2Pnb208w1_30)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_C2Pnb208w1_30() const { return ___C2Pnb208w1_30; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_C2Pnb208w1_30() { return &___C2Pnb208w1_30; } inline void set_C2Pnb208w1_30(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___C2Pnb208w1_30 = value; Il2CppCodeGenWriteBarrier((void**)(&___C2Pnb208w1_30), (void*)value); } inline static int32_t get_offset_of_C2Tnb239v1_31() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___C2Tnb239v1_31)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_C2Tnb239v1_31() const { return ___C2Tnb239v1_31; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_C2Tnb239v1_31() { return &___C2Tnb239v1_31; } inline void set_C2Tnb239v1_31(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___C2Tnb239v1_31 = value; Il2CppCodeGenWriteBarrier((void**)(&___C2Tnb239v1_31), (void*)value); } inline static int32_t get_offset_of_C2Tnb239v2_32() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___C2Tnb239v2_32)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_C2Tnb239v2_32() const { return ___C2Tnb239v2_32; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_C2Tnb239v2_32() { return &___C2Tnb239v2_32; } inline void set_C2Tnb239v2_32(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___C2Tnb239v2_32 = value; Il2CppCodeGenWriteBarrier((void**)(&___C2Tnb239v2_32), (void*)value); } inline static int32_t get_offset_of_C2Tnb239v3_33() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___C2Tnb239v3_33)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_C2Tnb239v3_33() const { return ___C2Tnb239v3_33; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_C2Tnb239v3_33() { return &___C2Tnb239v3_33; } inline void set_C2Tnb239v3_33(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___C2Tnb239v3_33 = value; Il2CppCodeGenWriteBarrier((void**)(&___C2Tnb239v3_33), (void*)value); } inline static int32_t get_offset_of_C2Onb239v4_34() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___C2Onb239v4_34)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_C2Onb239v4_34() const { return ___C2Onb239v4_34; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_C2Onb239v4_34() { return &___C2Onb239v4_34; } inline void set_C2Onb239v4_34(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___C2Onb239v4_34 = value; Il2CppCodeGenWriteBarrier((void**)(&___C2Onb239v4_34), (void*)value); } inline static int32_t get_offset_of_C2Onb239v5_35() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___C2Onb239v5_35)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_C2Onb239v5_35() const { return ___C2Onb239v5_35; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_C2Onb239v5_35() { return &___C2Onb239v5_35; } inline void set_C2Onb239v5_35(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___C2Onb239v5_35 = value; Il2CppCodeGenWriteBarrier((void**)(&___C2Onb239v5_35), (void*)value); } inline static int32_t get_offset_of_C2Pnb272w1_36() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___C2Pnb272w1_36)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_C2Pnb272w1_36() const { return ___C2Pnb272w1_36; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_C2Pnb272w1_36() { return &___C2Pnb272w1_36; } inline void set_C2Pnb272w1_36(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___C2Pnb272w1_36 = value; Il2CppCodeGenWriteBarrier((void**)(&___C2Pnb272w1_36), (void*)value); } inline static int32_t get_offset_of_C2Pnb304w1_37() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___C2Pnb304w1_37)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_C2Pnb304w1_37() const { return ___C2Pnb304w1_37; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_C2Pnb304w1_37() { return &___C2Pnb304w1_37; } inline void set_C2Pnb304w1_37(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___C2Pnb304w1_37 = value; Il2CppCodeGenWriteBarrier((void**)(&___C2Pnb304w1_37), (void*)value); } inline static int32_t get_offset_of_C2Tnb359v1_38() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___C2Tnb359v1_38)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_C2Tnb359v1_38() const { return ___C2Tnb359v1_38; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_C2Tnb359v1_38() { return &___C2Tnb359v1_38; } inline void set_C2Tnb359v1_38(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___C2Tnb359v1_38 = value; Il2CppCodeGenWriteBarrier((void**)(&___C2Tnb359v1_38), (void*)value); } inline static int32_t get_offset_of_C2Pnb368w1_39() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___C2Pnb368w1_39)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_C2Pnb368w1_39() const { return ___C2Pnb368w1_39; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_C2Pnb368w1_39() { return &___C2Pnb368w1_39; } inline void set_C2Pnb368w1_39(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___C2Pnb368w1_39 = value; Il2CppCodeGenWriteBarrier((void**)(&___C2Pnb368w1_39), (void*)value); } inline static int32_t get_offset_of_C2Tnb431r1_40() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___C2Tnb431r1_40)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_C2Tnb431r1_40() const { return ___C2Tnb431r1_40; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_C2Tnb431r1_40() { return &___C2Tnb431r1_40; } inline void set_C2Tnb431r1_40(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___C2Tnb431r1_40 = value; Il2CppCodeGenWriteBarrier((void**)(&___C2Tnb431r1_40), (void*)value); } inline static int32_t get_offset_of_PrimeCurve_41() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___PrimeCurve_41)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_PrimeCurve_41() const { return ___PrimeCurve_41; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_PrimeCurve_41() { return &___PrimeCurve_41; } inline void set_PrimeCurve_41(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___PrimeCurve_41 = value; Il2CppCodeGenWriteBarrier((void**)(&___PrimeCurve_41), (void*)value); } inline static int32_t get_offset_of_Prime192v1_42() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___Prime192v1_42)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Prime192v1_42() const { return ___Prime192v1_42; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Prime192v1_42() { return &___Prime192v1_42; } inline void set_Prime192v1_42(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Prime192v1_42 = value; Il2CppCodeGenWriteBarrier((void**)(&___Prime192v1_42), (void*)value); } inline static int32_t get_offset_of_Prime192v2_43() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___Prime192v2_43)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Prime192v2_43() const { return ___Prime192v2_43; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Prime192v2_43() { return &___Prime192v2_43; } inline void set_Prime192v2_43(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Prime192v2_43 = value; Il2CppCodeGenWriteBarrier((void**)(&___Prime192v2_43), (void*)value); } inline static int32_t get_offset_of_Prime192v3_44() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___Prime192v3_44)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Prime192v3_44() const { return ___Prime192v3_44; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Prime192v3_44() { return &___Prime192v3_44; } inline void set_Prime192v3_44(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Prime192v3_44 = value; Il2CppCodeGenWriteBarrier((void**)(&___Prime192v3_44), (void*)value); } inline static int32_t get_offset_of_Prime239v1_45() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___Prime239v1_45)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Prime239v1_45() const { return ___Prime239v1_45; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Prime239v1_45() { return &___Prime239v1_45; } inline void set_Prime239v1_45(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Prime239v1_45 = value; Il2CppCodeGenWriteBarrier((void**)(&___Prime239v1_45), (void*)value); } inline static int32_t get_offset_of_Prime239v2_46() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___Prime239v2_46)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Prime239v2_46() const { return ___Prime239v2_46; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Prime239v2_46() { return &___Prime239v2_46; } inline void set_Prime239v2_46(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Prime239v2_46 = value; Il2CppCodeGenWriteBarrier((void**)(&___Prime239v2_46), (void*)value); } inline static int32_t get_offset_of_Prime239v3_47() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___Prime239v3_47)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Prime239v3_47() const { return ___Prime239v3_47; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Prime239v3_47() { return &___Prime239v3_47; } inline void set_Prime239v3_47(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Prime239v3_47 = value; Il2CppCodeGenWriteBarrier((void**)(&___Prime239v3_47), (void*)value); } inline static int32_t get_offset_of_Prime256v1_48() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___Prime256v1_48)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Prime256v1_48() const { return ___Prime256v1_48; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Prime256v1_48() { return &___Prime256v1_48; } inline void set_Prime256v1_48(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Prime256v1_48 = value; Il2CppCodeGenWriteBarrier((void**)(&___Prime256v1_48), (void*)value); } inline static int32_t get_offset_of_IdDsa_49() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___IdDsa_49)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdDsa_49() const { return ___IdDsa_49; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdDsa_49() { return &___IdDsa_49; } inline void set_IdDsa_49(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdDsa_49 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdDsa_49), (void*)value); } inline static int32_t get_offset_of_IdDsaWithSha1_50() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___IdDsaWithSha1_50)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IdDsaWithSha1_50() const { return ___IdDsaWithSha1_50; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IdDsaWithSha1_50() { return &___IdDsaWithSha1_50; } inline void set_IdDsaWithSha1_50(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IdDsaWithSha1_50 = value; Il2CppCodeGenWriteBarrier((void**)(&___IdDsaWithSha1_50), (void*)value); } inline static int32_t get_offset_of_X9x63Scheme_51() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___X9x63Scheme_51)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_X9x63Scheme_51() const { return ___X9x63Scheme_51; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_X9x63Scheme_51() { return &___X9x63Scheme_51; } inline void set_X9x63Scheme_51(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___X9x63Scheme_51 = value; Il2CppCodeGenWriteBarrier((void**)(&___X9x63Scheme_51), (void*)value); } inline static int32_t get_offset_of_DHSinglePassStdDHSha1KdfScheme_52() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___DHSinglePassStdDHSha1KdfScheme_52)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DHSinglePassStdDHSha1KdfScheme_52() const { return ___DHSinglePassStdDHSha1KdfScheme_52; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DHSinglePassStdDHSha1KdfScheme_52() { return &___DHSinglePassStdDHSha1KdfScheme_52; } inline void set_DHSinglePassStdDHSha1KdfScheme_52(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DHSinglePassStdDHSha1KdfScheme_52 = value; Il2CppCodeGenWriteBarrier((void**)(&___DHSinglePassStdDHSha1KdfScheme_52), (void*)value); } inline static int32_t get_offset_of_DHSinglePassCofactorDHSha1KdfScheme_53() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___DHSinglePassCofactorDHSha1KdfScheme_53)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DHSinglePassCofactorDHSha1KdfScheme_53() const { return ___DHSinglePassCofactorDHSha1KdfScheme_53; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DHSinglePassCofactorDHSha1KdfScheme_53() { return &___DHSinglePassCofactorDHSha1KdfScheme_53; } inline void set_DHSinglePassCofactorDHSha1KdfScheme_53(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DHSinglePassCofactorDHSha1KdfScheme_53 = value; Il2CppCodeGenWriteBarrier((void**)(&___DHSinglePassCofactorDHSha1KdfScheme_53), (void*)value); } inline static int32_t get_offset_of_MqvSinglePassSha1KdfScheme_54() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___MqvSinglePassSha1KdfScheme_54)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_MqvSinglePassSha1KdfScheme_54() const { return ___MqvSinglePassSha1KdfScheme_54; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_MqvSinglePassSha1KdfScheme_54() { return &___MqvSinglePassSha1KdfScheme_54; } inline void set_MqvSinglePassSha1KdfScheme_54(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___MqvSinglePassSha1KdfScheme_54 = value; Il2CppCodeGenWriteBarrier((void**)(&___MqvSinglePassSha1KdfScheme_54), (void*)value); } inline static int32_t get_offset_of_ansi_x9_42_55() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___ansi_x9_42_55)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_ansi_x9_42_55() const { return ___ansi_x9_42_55; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_ansi_x9_42_55() { return &___ansi_x9_42_55; } inline void set_ansi_x9_42_55(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___ansi_x9_42_55 = value; Il2CppCodeGenWriteBarrier((void**)(&___ansi_x9_42_55), (void*)value); } inline static int32_t get_offset_of_DHPublicNumber_56() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___DHPublicNumber_56)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DHPublicNumber_56() const { return ___DHPublicNumber_56; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DHPublicNumber_56() { return &___DHPublicNumber_56; } inline void set_DHPublicNumber_56(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DHPublicNumber_56 = value; Il2CppCodeGenWriteBarrier((void**)(&___DHPublicNumber_56), (void*)value); } inline static int32_t get_offset_of_X9x42Schemes_57() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___X9x42Schemes_57)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_X9x42Schemes_57() const { return ___X9x42Schemes_57; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_X9x42Schemes_57() { return &___X9x42Schemes_57; } inline void set_X9x42Schemes_57(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___X9x42Schemes_57 = value; Il2CppCodeGenWriteBarrier((void**)(&___X9x42Schemes_57), (void*)value); } inline static int32_t get_offset_of_DHStatic_58() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___DHStatic_58)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DHStatic_58() const { return ___DHStatic_58; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DHStatic_58() { return &___DHStatic_58; } inline void set_DHStatic_58(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DHStatic_58 = value; Il2CppCodeGenWriteBarrier((void**)(&___DHStatic_58), (void*)value); } inline static int32_t get_offset_of_DHEphem_59() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___DHEphem_59)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DHEphem_59() const { return ___DHEphem_59; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DHEphem_59() { return &___DHEphem_59; } inline void set_DHEphem_59(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DHEphem_59 = value; Il2CppCodeGenWriteBarrier((void**)(&___DHEphem_59), (void*)value); } inline static int32_t get_offset_of_DHOneFlow_60() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___DHOneFlow_60)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DHOneFlow_60() const { return ___DHOneFlow_60; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DHOneFlow_60() { return &___DHOneFlow_60; } inline void set_DHOneFlow_60(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DHOneFlow_60 = value; Il2CppCodeGenWriteBarrier((void**)(&___DHOneFlow_60), (void*)value); } inline static int32_t get_offset_of_DHHybrid1_61() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___DHHybrid1_61)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DHHybrid1_61() const { return ___DHHybrid1_61; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DHHybrid1_61() { return &___DHHybrid1_61; } inline void set_DHHybrid1_61(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DHHybrid1_61 = value; Il2CppCodeGenWriteBarrier((void**)(&___DHHybrid1_61), (void*)value); } inline static int32_t get_offset_of_DHHybrid2_62() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___DHHybrid2_62)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DHHybrid2_62() const { return ___DHHybrid2_62; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DHHybrid2_62() { return &___DHHybrid2_62; } inline void set_DHHybrid2_62(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DHHybrid2_62 = value; Il2CppCodeGenWriteBarrier((void**)(&___DHHybrid2_62), (void*)value); } inline static int32_t get_offset_of_DHHybridOneFlow_63() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___DHHybridOneFlow_63)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DHHybridOneFlow_63() const { return ___DHHybridOneFlow_63; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DHHybridOneFlow_63() { return &___DHHybridOneFlow_63; } inline void set_DHHybridOneFlow_63(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DHHybridOneFlow_63 = value; Il2CppCodeGenWriteBarrier((void**)(&___DHHybridOneFlow_63), (void*)value); } inline static int32_t get_offset_of_Mqv2_64() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___Mqv2_64)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Mqv2_64() const { return ___Mqv2_64; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Mqv2_64() { return &___Mqv2_64; } inline void set_Mqv2_64(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Mqv2_64 = value; Il2CppCodeGenWriteBarrier((void**)(&___Mqv2_64), (void*)value); } inline static int32_t get_offset_of_Mqv1_65() { return static_cast(offsetof(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields, ___Mqv1_65)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Mqv1_65() const { return ___Mqv1_65; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Mqv1_65() { return &___Mqv1_65; } inline void set_Mqv1_65(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Mqv1_65 = value; Il2CppCodeGenWriteBarrier((void**)(&___Mqv1_65), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Engines.XteaEngine struct XteaEngine_t1B9C763912FA90CC6C1F877687C08C15F3E2C6DE : public RuntimeObject { public: // System.UInt32[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Engines.XteaEngine::_S UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* ____S_3; // System.UInt32[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Engines.XteaEngine::_sum0 UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* ____sum0_4; // System.UInt32[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Engines.XteaEngine::_sum1 UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* ____sum1_5; // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Engines.XteaEngine::_initialised bool ____initialised_6; // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Engines.XteaEngine::_forEncryption bool ____forEncryption_7; public: inline static int32_t get_offset_of__S_3() { return static_cast(offsetof(XteaEngine_t1B9C763912FA90CC6C1F877687C08C15F3E2C6DE, ____S_3)); } inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* get__S_3() const { return ____S_3; } inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF** get_address_of__S_3() { return &____S_3; } inline void set__S_3(UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* value) { ____S_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____S_3), (void*)value); } inline static int32_t get_offset_of__sum0_4() { return static_cast(offsetof(XteaEngine_t1B9C763912FA90CC6C1F877687C08C15F3E2C6DE, ____sum0_4)); } inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* get__sum0_4() const { return ____sum0_4; } inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF** get_address_of__sum0_4() { return &____sum0_4; } inline void set__sum0_4(UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* value) { ____sum0_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____sum0_4), (void*)value); } inline static int32_t get_offset_of__sum1_5() { return static_cast(offsetof(XteaEngine_t1B9C763912FA90CC6C1F877687C08C15F3E2C6DE, ____sum1_5)); } inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* get__sum1_5() const { return ____sum1_5; } inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF** get_address_of__sum1_5() { return &____sum1_5; } inline void set__sum1_5(UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* value) { ____sum1_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____sum1_5), (void*)value); } inline static int32_t get_offset_of__initialised_6() { return static_cast(offsetof(XteaEngine_t1B9C763912FA90CC6C1F877687C08C15F3E2C6DE, ____initialised_6)); } inline bool get__initialised_6() const { return ____initialised_6; } inline bool* get_address_of__initialised_6() { return &____initialised_6; } inline void set__initialised_6(bool value) { ____initialised_6 = value; } inline static int32_t get_offset_of__forEncryption_7() { return static_cast(offsetof(XteaEngine_t1B9C763912FA90CC6C1F877687C08C15F3E2C6DE, ____forEncryption_7)); } inline bool get__forEncryption_7() const { return ____forEncryption_7; } inline bool* get_address_of__forEncryption_7() { return &____forEncryption_7; } inline void set__forEncryption_7(bool value) { ____forEncryption_7 = value; } }; // YejiSyncData struct YejiSyncData_t4FF903A600E64371DFF4510B3D1C308A95B38BA8 : public RuntimeObject { public: // System.Int32 YejiSyncData::id int32_t ___id_0; // System.Single YejiSyncData::rx float ___rx_1; // System.Single YejiSyncData::ry float ___ry_2; // System.Single YejiSyncData::rz float ___rz_3; // System.Single YejiSyncData::rw float ___rw_4; // System.Single YejiSyncData::px float ___px_5; // System.Single YejiSyncData::py float ___py_6; // System.Single YejiSyncData::pz float ___pz_7; // System.Int32 YejiSyncData::ms int32_t ___ms_8; // System.Int32 YejiSyncData::ii int32_t ___ii_9; // System.Int32 YejiSyncData::di int32_t ___di_10; // System.Single YejiSyncData::asp float ___asp_11; public: inline static int32_t get_offset_of_id_0() { return static_cast(offsetof(YejiSyncData_t4FF903A600E64371DFF4510B3D1C308A95B38BA8, ___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_rx_1() { return static_cast(offsetof(YejiSyncData_t4FF903A600E64371DFF4510B3D1C308A95B38BA8, ___rx_1)); } inline float get_rx_1() const { return ___rx_1; } inline float* get_address_of_rx_1() { return &___rx_1; } inline void set_rx_1(float value) { ___rx_1 = value; } inline static int32_t get_offset_of_ry_2() { return static_cast(offsetof(YejiSyncData_t4FF903A600E64371DFF4510B3D1C308A95B38BA8, ___ry_2)); } inline float get_ry_2() const { return ___ry_2; } inline float* get_address_of_ry_2() { return &___ry_2; } inline void set_ry_2(float value) { ___ry_2 = value; } inline static int32_t get_offset_of_rz_3() { return static_cast(offsetof(YejiSyncData_t4FF903A600E64371DFF4510B3D1C308A95B38BA8, ___rz_3)); } inline float get_rz_3() const { return ___rz_3; } inline float* get_address_of_rz_3() { return &___rz_3; } inline void set_rz_3(float value) { ___rz_3 = value; } inline static int32_t get_offset_of_rw_4() { return static_cast(offsetof(YejiSyncData_t4FF903A600E64371DFF4510B3D1C308A95B38BA8, ___rw_4)); } inline float get_rw_4() const { return ___rw_4; } inline float* get_address_of_rw_4() { return &___rw_4; } inline void set_rw_4(float value) { ___rw_4 = value; } inline static int32_t get_offset_of_px_5() { return static_cast(offsetof(YejiSyncData_t4FF903A600E64371DFF4510B3D1C308A95B38BA8, ___px_5)); } inline float get_px_5() const { return ___px_5; } inline float* get_address_of_px_5() { return &___px_5; } inline void set_px_5(float value) { ___px_5 = value; } inline static int32_t get_offset_of_py_6() { return static_cast(offsetof(YejiSyncData_t4FF903A600E64371DFF4510B3D1C308A95B38BA8, ___py_6)); } inline float get_py_6() const { return ___py_6; } inline float* get_address_of_py_6() { return &___py_6; } inline void set_py_6(float value) { ___py_6 = value; } inline static int32_t get_offset_of_pz_7() { return static_cast(offsetof(YejiSyncData_t4FF903A600E64371DFF4510B3D1C308A95B38BA8, ___pz_7)); } inline float get_pz_7() const { return ___pz_7; } inline float* get_address_of_pz_7() { return &___pz_7; } inline void set_pz_7(float value) { ___pz_7 = value; } inline static int32_t get_offset_of_ms_8() { return static_cast(offsetof(YejiSyncData_t4FF903A600E64371DFF4510B3D1C308A95B38BA8, ___ms_8)); } inline int32_t get_ms_8() const { return ___ms_8; } inline int32_t* get_address_of_ms_8() { return &___ms_8; } inline void set_ms_8(int32_t value) { ___ms_8 = value; } inline static int32_t get_offset_of_ii_9() { return static_cast(offsetof(YejiSyncData_t4FF903A600E64371DFF4510B3D1C308A95B38BA8, ___ii_9)); } inline int32_t get_ii_9() const { return ___ii_9; } inline int32_t* get_address_of_ii_9() { return &___ii_9; } inline void set_ii_9(int32_t value) { ___ii_9 = value; } inline static int32_t get_offset_of_di_10() { return static_cast(offsetof(YejiSyncData_t4FF903A600E64371DFF4510B3D1C308A95B38BA8, ___di_10)); } inline int32_t get_di_10() const { return ___di_10; } inline int32_t* get_address_of_di_10() { return &___di_10; } inline void set_di_10(int32_t value) { ___di_10 = value; } inline static int32_t get_offset_of_asp_11() { return static_cast(offsetof(YejiSyncData_t4FF903A600E64371DFF4510B3D1C308A95B38BA8, ___asp_11)); } inline float get_asp_11() const { return ___asp_11; } inline float* get_address_of_asp_11() { return &___asp_11; } inline void set_asp_11(float value) { ___asp_11 = value; } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream struct ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C : public RuntimeObject { public: // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream::next_in ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___next_in_17; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream::next_in_index int32_t ___next_in_index_18; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream::avail_in int32_t ___avail_in_19; // System.Int64 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream::total_in int64_t ___total_in_20; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream::next_out ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___next_out_21; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream::next_out_index int32_t ___next_out_index_22; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream::avail_out int32_t ___avail_out_23; // System.Int64 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream::total_out int64_t ___total_out_24; // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream::msg String_t* ___msg_25; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream::dstate Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * ___dstate_26; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Inflate BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream::istate Inflate_tA57633237054BCAD6EDC8DBC06F34D50C1680638 * ___istate_27; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream::data_type int32_t ___data_type_28; // System.Int64 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream::adler int64_t ___adler_29; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Adler32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream::_adler Adler32_tA7FF29BBF4C9B4738DDE9CA1F7F5B6457DDF5EC2 * ____adler_30; public: inline static int32_t get_offset_of_next_in_17() { return static_cast(offsetof(ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C, ___next_in_17)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_next_in_17() const { return ___next_in_17; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_next_in_17() { return &___next_in_17; } inline void set_next_in_17(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___next_in_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___next_in_17), (void*)value); } inline static int32_t get_offset_of_next_in_index_18() { return static_cast(offsetof(ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C, ___next_in_index_18)); } inline int32_t get_next_in_index_18() const { return ___next_in_index_18; } inline int32_t* get_address_of_next_in_index_18() { return &___next_in_index_18; } inline void set_next_in_index_18(int32_t value) { ___next_in_index_18 = value; } inline static int32_t get_offset_of_avail_in_19() { return static_cast(offsetof(ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C, ___avail_in_19)); } inline int32_t get_avail_in_19() const { return ___avail_in_19; } inline int32_t* get_address_of_avail_in_19() { return &___avail_in_19; } inline void set_avail_in_19(int32_t value) { ___avail_in_19 = value; } inline static int32_t get_offset_of_total_in_20() { return static_cast(offsetof(ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C, ___total_in_20)); } inline int64_t get_total_in_20() const { return ___total_in_20; } inline int64_t* get_address_of_total_in_20() { return &___total_in_20; } inline void set_total_in_20(int64_t value) { ___total_in_20 = value; } inline static int32_t get_offset_of_next_out_21() { return static_cast(offsetof(ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C, ___next_out_21)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_next_out_21() const { return ___next_out_21; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_next_out_21() { return &___next_out_21; } inline void set_next_out_21(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___next_out_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___next_out_21), (void*)value); } inline static int32_t get_offset_of_next_out_index_22() { return static_cast(offsetof(ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C, ___next_out_index_22)); } inline int32_t get_next_out_index_22() const { return ___next_out_index_22; } inline int32_t* get_address_of_next_out_index_22() { return &___next_out_index_22; } inline void set_next_out_index_22(int32_t value) { ___next_out_index_22 = value; } inline static int32_t get_offset_of_avail_out_23() { return static_cast(offsetof(ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C, ___avail_out_23)); } inline int32_t get_avail_out_23() const { return ___avail_out_23; } inline int32_t* get_address_of_avail_out_23() { return &___avail_out_23; } inline void set_avail_out_23(int32_t value) { ___avail_out_23 = value; } inline static int32_t get_offset_of_total_out_24() { return static_cast(offsetof(ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C, ___total_out_24)); } inline int64_t get_total_out_24() const { return ___total_out_24; } inline int64_t* get_address_of_total_out_24() { return &___total_out_24; } inline void set_total_out_24(int64_t value) { ___total_out_24 = value; } inline static int32_t get_offset_of_msg_25() { return static_cast(offsetof(ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C, ___msg_25)); } inline String_t* get_msg_25() const { return ___msg_25; } inline String_t** get_address_of_msg_25() { return &___msg_25; } inline void set_msg_25(String_t* value) { ___msg_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___msg_25), (void*)value); } inline static int32_t get_offset_of_dstate_26() { return static_cast(offsetof(ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C, ___dstate_26)); } inline Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * get_dstate_26() const { return ___dstate_26; } inline Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 ** get_address_of_dstate_26() { return &___dstate_26; } inline void set_dstate_26(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * value) { ___dstate_26 = value; Il2CppCodeGenWriteBarrier((void**)(&___dstate_26), (void*)value); } inline static int32_t get_offset_of_istate_27() { return static_cast(offsetof(ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C, ___istate_27)); } inline Inflate_tA57633237054BCAD6EDC8DBC06F34D50C1680638 * get_istate_27() const { return ___istate_27; } inline Inflate_tA57633237054BCAD6EDC8DBC06F34D50C1680638 ** get_address_of_istate_27() { return &___istate_27; } inline void set_istate_27(Inflate_tA57633237054BCAD6EDC8DBC06F34D50C1680638 * value) { ___istate_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___istate_27), (void*)value); } inline static int32_t get_offset_of_data_type_28() { return static_cast(offsetof(ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C, ___data_type_28)); } inline int32_t get_data_type_28() const { return ___data_type_28; } inline int32_t* get_address_of_data_type_28() { return &___data_type_28; } inline void set_data_type_28(int32_t value) { ___data_type_28 = value; } inline static int32_t get_offset_of_adler_29() { return static_cast(offsetof(ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C, ___adler_29)); } inline int64_t get_adler_29() const { return ___adler_29; } inline int64_t* get_address_of_adler_29() { return &___adler_29; } inline void set_adler_29(int64_t value) { ___adler_29 = value; } inline static int32_t get_offset_of__adler_30() { return static_cast(offsetof(ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C, ____adler_30)); } inline Adler32_tA7FF29BBF4C9B4738DDE9CA1F7F5B6457DDF5EC2 * get__adler_30() const { return ____adler_30; } inline Adler32_tA7FF29BBF4C9B4738DDE9CA1F7F5B6457DDF5EC2 ** get_address_of__adler_30() { return &____adler_30; } inline void set__adler_30(Adler32_tA7FF29BBF4C9B4738DDE9CA1F7F5B6457DDF5EC2 * value) { ____adler_30 = value; Il2CppCodeGenWriteBarrier((void**)(&____adler_30), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.Abc.ZTauElement struct ZTauElement_t30903D25EED314C82D8D5182265B2BAAEF7CDD1C : public RuntimeObject { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.Abc.ZTauElement::u BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___u_0; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.Abc.ZTauElement::v BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___v_1; public: inline static int32_t get_offset_of_u_0() { return static_cast(offsetof(ZTauElement_t30903D25EED314C82D8D5182265B2BAAEF7CDD1C, ___u_0)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_u_0() const { return ___u_0; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_u_0() { return &___u_0; } inline void set_u_0(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___u_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___u_0), (void*)value); } inline static int32_t get_offset_of_v_1() { return static_cast(offsetof(ZTauElement_t30903D25EED314C82D8D5182265B2BAAEF7CDD1C, ___v_1)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_v_1() const { return ___v_1; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_v_1() { return &___v_1; } inline void set_v_1(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___v_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___v_1), (void*)value); } }; // BestHTTP.Decompression.Zlib.ZTree struct ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF : public RuntimeObject { public: // System.Int16[] BestHTTP.Decompression.Zlib.ZTree::dyn_tree Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* ___dyn_tree_10; // System.Int32 BestHTTP.Decompression.Zlib.ZTree::max_code int32_t ___max_code_11; // BestHTTP.Decompression.Zlib.StaticTree BestHTTP.Decompression.Zlib.ZTree::staticTree StaticTree_t2695AB91EBA8322FADCB4C06A07B8ACAA5374809 * ___staticTree_12; public: inline static int32_t get_offset_of_dyn_tree_10() { return static_cast(offsetof(ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF, ___dyn_tree_10)); } inline Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* get_dyn_tree_10() const { return ___dyn_tree_10; } inline Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD** get_address_of_dyn_tree_10() { return &___dyn_tree_10; } inline void set_dyn_tree_10(Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* value) { ___dyn_tree_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___dyn_tree_10), (void*)value); } inline static int32_t get_offset_of_max_code_11() { return static_cast(offsetof(ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF, ___max_code_11)); } inline int32_t get_max_code_11() const { return ___max_code_11; } inline int32_t* get_address_of_max_code_11() { return &___max_code_11; } inline void set_max_code_11(int32_t value) { ___max_code_11 = value; } inline static int32_t get_offset_of_staticTree_12() { return static_cast(offsetof(ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF, ___staticTree_12)); } inline StaticTree_t2695AB91EBA8322FADCB4C06A07B8ACAA5374809 * get_staticTree_12() const { return ___staticTree_12; } inline StaticTree_t2695AB91EBA8322FADCB4C06A07B8ACAA5374809 ** get_address_of_staticTree_12() { return &___staticTree_12; } inline void set_staticTree_12(StaticTree_t2695AB91EBA8322FADCB4C06A07B8ACAA5374809 * value) { ___staticTree_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___staticTree_12), (void*)value); } }; struct ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF_StaticFields { public: // System.Int32 BestHTTP.Decompression.Zlib.ZTree::HEAP_SIZE int32_t ___HEAP_SIZE_0; // System.Int32[] BestHTTP.Decompression.Zlib.ZTree::ExtraLengthBits Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___ExtraLengthBits_1; // System.Int32[] BestHTTP.Decompression.Zlib.ZTree::ExtraDistanceBits Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___ExtraDistanceBits_2; // System.Int32[] BestHTTP.Decompression.Zlib.ZTree::extra_blbits Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___extra_blbits_3; // System.SByte[] BestHTTP.Decompression.Zlib.ZTree::bl_order SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7* ___bl_order_4; // System.SByte[] BestHTTP.Decompression.Zlib.ZTree::_dist_code SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7* ____dist_code_6; // System.SByte[] BestHTTP.Decompression.Zlib.ZTree::LengthCode SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7* ___LengthCode_7; // System.Int32[] BestHTTP.Decompression.Zlib.ZTree::LengthBase Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___LengthBase_8; // System.Int32[] BestHTTP.Decompression.Zlib.ZTree::DistanceBase Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___DistanceBase_9; public: inline static int32_t get_offset_of_HEAP_SIZE_0() { return static_cast(offsetof(ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF_StaticFields, ___HEAP_SIZE_0)); } inline int32_t get_HEAP_SIZE_0() const { return ___HEAP_SIZE_0; } inline int32_t* get_address_of_HEAP_SIZE_0() { return &___HEAP_SIZE_0; } inline void set_HEAP_SIZE_0(int32_t value) { ___HEAP_SIZE_0 = value; } inline static int32_t get_offset_of_ExtraLengthBits_1() { return static_cast(offsetof(ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF_StaticFields, ___ExtraLengthBits_1)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_ExtraLengthBits_1() const { return ___ExtraLengthBits_1; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_ExtraLengthBits_1() { return &___ExtraLengthBits_1; } inline void set_ExtraLengthBits_1(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___ExtraLengthBits_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___ExtraLengthBits_1), (void*)value); } inline static int32_t get_offset_of_ExtraDistanceBits_2() { return static_cast(offsetof(ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF_StaticFields, ___ExtraDistanceBits_2)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_ExtraDistanceBits_2() const { return ___ExtraDistanceBits_2; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_ExtraDistanceBits_2() { return &___ExtraDistanceBits_2; } inline void set_ExtraDistanceBits_2(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___ExtraDistanceBits_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___ExtraDistanceBits_2), (void*)value); } inline static int32_t get_offset_of_extra_blbits_3() { return static_cast(offsetof(ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF_StaticFields, ___extra_blbits_3)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_extra_blbits_3() const { return ___extra_blbits_3; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_extra_blbits_3() { return &___extra_blbits_3; } inline void set_extra_blbits_3(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___extra_blbits_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___extra_blbits_3), (void*)value); } inline static int32_t get_offset_of_bl_order_4() { return static_cast(offsetof(ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF_StaticFields, ___bl_order_4)); } inline SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7* get_bl_order_4() const { return ___bl_order_4; } inline SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7** get_address_of_bl_order_4() { return &___bl_order_4; } inline void set_bl_order_4(SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7* value) { ___bl_order_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___bl_order_4), (void*)value); } inline static int32_t get_offset_of__dist_code_6() { return static_cast(offsetof(ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF_StaticFields, ____dist_code_6)); } inline SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7* get__dist_code_6() const { return ____dist_code_6; } inline SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7** get_address_of__dist_code_6() { return &____dist_code_6; } inline void set__dist_code_6(SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7* value) { ____dist_code_6 = value; Il2CppCodeGenWriteBarrier((void**)(&____dist_code_6), (void*)value); } inline static int32_t get_offset_of_LengthCode_7() { return static_cast(offsetof(ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF_StaticFields, ___LengthCode_7)); } inline SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7* get_LengthCode_7() const { return ___LengthCode_7; } inline SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7** get_address_of_LengthCode_7() { return &___LengthCode_7; } inline void set_LengthCode_7(SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7* value) { ___LengthCode_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___LengthCode_7), (void*)value); } inline static int32_t get_offset_of_LengthBase_8() { return static_cast(offsetof(ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF_StaticFields, ___LengthBase_8)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_LengthBase_8() const { return ___LengthBase_8; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_LengthBase_8() { return &___LengthBase_8; } inline void set_LengthBase_8(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___LengthBase_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___LengthBase_8), (void*)value); } inline static int32_t get_offset_of_DistanceBase_9() { return static_cast(offsetof(ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF_StaticFields, ___DistanceBase_9)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_DistanceBase_9() const { return ___DistanceBase_9; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_DistanceBase_9() { return &___DistanceBase_9; } inline void set_DistanceBase_9(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___DistanceBase_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___DistanceBase_9), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZTree struct ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC : public RuntimeObject { public: // System.Int16[] BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZTree::dyn_tree Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* ___dyn_tree_22; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZTree::max_code int32_t ___max_code_23; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.StaticTree BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZTree::stat_desc StaticTree_tFAE01A2B378F804F70FD3C06C5F18BEF8E31CFE5 * ___stat_desc_24; public: inline static int32_t get_offset_of_dyn_tree_22() { return static_cast(offsetof(ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC, ___dyn_tree_22)); } inline Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* get_dyn_tree_22() const { return ___dyn_tree_22; } inline Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD** get_address_of_dyn_tree_22() { return &___dyn_tree_22; } inline void set_dyn_tree_22(Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* value) { ___dyn_tree_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___dyn_tree_22), (void*)value); } inline static int32_t get_offset_of_max_code_23() { return static_cast(offsetof(ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC, ___max_code_23)); } inline int32_t get_max_code_23() const { return ___max_code_23; } inline int32_t* get_address_of_max_code_23() { return &___max_code_23; } inline void set_max_code_23(int32_t value) { ___max_code_23 = value; } inline static int32_t get_offset_of_stat_desc_24() { return static_cast(offsetof(ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC, ___stat_desc_24)); } inline StaticTree_tFAE01A2B378F804F70FD3C06C5F18BEF8E31CFE5 * get_stat_desc_24() const { return ___stat_desc_24; } inline StaticTree_tFAE01A2B378F804F70FD3C06C5F18BEF8E31CFE5 ** get_address_of_stat_desc_24() { return &___stat_desc_24; } inline void set_stat_desc_24(StaticTree_tFAE01A2B378F804F70FD3C06C5F18BEF8E31CFE5 * value) { ___stat_desc_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___stat_desc_24), (void*)value); } }; struct ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC_StaticFields { public: // System.Int32[] BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZTree::extra_lbits Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___extra_lbits_12; // System.Int32[] BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZTree::extra_dbits Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___extra_dbits_13; // System.Int32[] BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZTree::extra_blbits Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___extra_blbits_14; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZTree::bl_order ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___bl_order_15; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZTree::_dist_code ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ____dist_code_18; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZTree::_length_code ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ____length_code_19; // System.Int32[] BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZTree::base_length Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___base_length_20; // System.Int32[] BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZTree::base_dist Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___base_dist_21; public: inline static int32_t get_offset_of_extra_lbits_12() { return static_cast(offsetof(ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC_StaticFields, ___extra_lbits_12)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_extra_lbits_12() const { return ___extra_lbits_12; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_extra_lbits_12() { return &___extra_lbits_12; } inline void set_extra_lbits_12(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___extra_lbits_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___extra_lbits_12), (void*)value); } inline static int32_t get_offset_of_extra_dbits_13() { return static_cast(offsetof(ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC_StaticFields, ___extra_dbits_13)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_extra_dbits_13() const { return ___extra_dbits_13; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_extra_dbits_13() { return &___extra_dbits_13; } inline void set_extra_dbits_13(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___extra_dbits_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___extra_dbits_13), (void*)value); } inline static int32_t get_offset_of_extra_blbits_14() { return static_cast(offsetof(ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC_StaticFields, ___extra_blbits_14)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_extra_blbits_14() const { return ___extra_blbits_14; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_extra_blbits_14() { return &___extra_blbits_14; } inline void set_extra_blbits_14(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___extra_blbits_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___extra_blbits_14), (void*)value); } inline static int32_t get_offset_of_bl_order_15() { return static_cast(offsetof(ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC_StaticFields, ___bl_order_15)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_bl_order_15() const { return ___bl_order_15; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_bl_order_15() { return &___bl_order_15; } inline void set_bl_order_15(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___bl_order_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___bl_order_15), (void*)value); } inline static int32_t get_offset_of__dist_code_18() { return static_cast(offsetof(ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC_StaticFields, ____dist_code_18)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get__dist_code_18() const { return ____dist_code_18; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of__dist_code_18() { return &____dist_code_18; } inline void set__dist_code_18(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ____dist_code_18 = value; Il2CppCodeGenWriteBarrier((void**)(&____dist_code_18), (void*)value); } inline static int32_t get_offset_of__length_code_19() { return static_cast(offsetof(ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC_StaticFields, ____length_code_19)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get__length_code_19() const { return ____length_code_19; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of__length_code_19() { return &____length_code_19; } inline void set__length_code_19(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ____length_code_19 = value; Il2CppCodeGenWriteBarrier((void**)(&____length_code_19), (void*)value); } inline static int32_t get_offset_of_base_length_20() { return static_cast(offsetof(ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC_StaticFields, ___base_length_20)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_base_length_20() const { return ___base_length_20; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_base_length_20() { return &___base_length_20; } inline void set_base_length_20(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___base_length_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___base_length_20), (void*)value); } inline static int32_t get_offset_of_base_dist_21() { return static_cast(offsetof(ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC_StaticFields, ___base_dist_21)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_base_dist_21() const { return ___base_dist_21; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_base_dist_21() { return &___base_dist_21; } inline void set_base_dist_21(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___base_dist_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___base_dist_21), (void*)value); } }; // Yeji/ComparerAreaInfosByDistance struct ComparerAreaInfosByDistance_t9EA8762959531B367A90185F6213B51755EEBD68 : public RuntimeObject { public: public: }; // Yeji/State struct State_t908756508036982A4DF72593F6016F3C51C610B7 : public RuntimeObject { public: // System.Boolean Yeji/State::standing bool ___standing_0; // System.Boolean Yeji/State::_flyStaying bool ____flyStaying_1; // System.Boolean Yeji/State::_dead bool ____dead_2; // System.Boolean Yeji/State::_down bool ____down_3; // System.Boolean Yeji/State::_landing bool ____landing_4; // System.Boolean Yeji/State::_up bool ____up_5; // System.Boolean Yeji/State::_flying bool ____flying_6; // Yeji Yeji/State::animal Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * ___animal_7; public: inline static int32_t get_offset_of_standing_0() { return static_cast(offsetof(State_t908756508036982A4DF72593F6016F3C51C610B7, ___standing_0)); } inline bool get_standing_0() const { return ___standing_0; } inline bool* get_address_of_standing_0() { return &___standing_0; } inline void set_standing_0(bool value) { ___standing_0 = value; } inline static int32_t get_offset_of__flyStaying_1() { return static_cast(offsetof(State_t908756508036982A4DF72593F6016F3C51C610B7, ____flyStaying_1)); } inline bool get__flyStaying_1() const { return ____flyStaying_1; } inline bool* get_address_of__flyStaying_1() { return &____flyStaying_1; } inline void set__flyStaying_1(bool value) { ____flyStaying_1 = value; } inline static int32_t get_offset_of__dead_2() { return static_cast(offsetof(State_t908756508036982A4DF72593F6016F3C51C610B7, ____dead_2)); } inline bool get__dead_2() const { return ____dead_2; } inline bool* get_address_of__dead_2() { return &____dead_2; } inline void set__dead_2(bool value) { ____dead_2 = value; } inline static int32_t get_offset_of__down_3() { return static_cast(offsetof(State_t908756508036982A4DF72593F6016F3C51C610B7, ____down_3)); } inline bool get__down_3() const { return ____down_3; } inline bool* get_address_of__down_3() { return &____down_3; } inline void set__down_3(bool value) { ____down_3 = value; } inline static int32_t get_offset_of__landing_4() { return static_cast(offsetof(State_t908756508036982A4DF72593F6016F3C51C610B7, ____landing_4)); } inline bool get__landing_4() const { return ____landing_4; } inline bool* get_address_of__landing_4() { return &____landing_4; } inline void set__landing_4(bool value) { ____landing_4 = value; } inline static int32_t get_offset_of__up_5() { return static_cast(offsetof(State_t908756508036982A4DF72593F6016F3C51C610B7, ____up_5)); } inline bool get__up_5() const { return ____up_5; } inline bool* get_address_of__up_5() { return &____up_5; } inline void set__up_5(bool value) { ____up_5 = value; } inline static int32_t get_offset_of__flying_6() { return static_cast(offsetof(State_t908756508036982A4DF72593F6016F3C51C610B7, ____flying_6)); } inline bool get__flying_6() const { return ____flying_6; } inline bool* get_address_of__flying_6() { return &____flying_6; } inline void set__flying_6(bool value) { ____flying_6 = value; } inline static int32_t get_offset_of_animal_7() { return static_cast(offsetof(State_t908756508036982A4DF72593F6016F3C51C610B7, ___animal_7)); } inline Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * get_animal_7() const { return ___animal_7; } inline Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 ** get_address_of_animal_7() { return &___animal_7; } inline void set_animal_7(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * value) { ___animal_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___animal_7), (void*)value); } }; // System.Collections.Generic.HashSet`1/Enumerator struct Enumerator_t2430E2854B4328060EB6096AD1E4851E8DC45C3A { public: // System.Collections.Generic.HashSet`1 System.Collections.Generic.HashSet`1/Enumerator::_set HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B * ____set_0; // System.Int32 System.Collections.Generic.HashSet`1/Enumerator::_index int32_t ____index_1; // System.Int32 System.Collections.Generic.HashSet`1/Enumerator::_version int32_t ____version_2; // T System.Collections.Generic.HashSet`1/Enumerator::_current RuntimeObject * ____current_3; public: inline static int32_t get_offset_of__set_0() { return static_cast(offsetof(Enumerator_t2430E2854B4328060EB6096AD1E4851E8DC45C3A, ____set_0)); } inline HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B * get__set_0() const { return ____set_0; } inline HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B ** get_address_of__set_0() { return &____set_0; } inline void set__set_0(HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B * value) { ____set_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____set_0), (void*)value); } inline static int32_t get_offset_of__index_1() { return static_cast(offsetof(Enumerator_t2430E2854B4328060EB6096AD1E4851E8DC45C3A, ____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_t2430E2854B4328060EB6096AD1E4851E8DC45C3A, ____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_t2430E2854B4328060EB6096AD1E4851E8DC45C3A, ____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.HashSet`1/Enumerator struct Enumerator_t56EDF8026DFAAE04A48416483FAB75F1CAF73061 { public: // System.Collections.Generic.HashSet`1 System.Collections.Generic.HashSet`1/Enumerator::_set HashSet_1_t47ED9A0606C5D93A2045DE3AACBA2CD73C930023 * ____set_0; // System.Int32 System.Collections.Generic.HashSet`1/Enumerator::_index int32_t ____index_1; // System.Int32 System.Collections.Generic.HashSet`1/Enumerator::_version int32_t ____version_2; // T System.Collections.Generic.HashSet`1/Enumerator::_current Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * ____current_3; public: inline static int32_t get_offset_of__set_0() { return static_cast(offsetof(Enumerator_t56EDF8026DFAAE04A48416483FAB75F1CAF73061, ____set_0)); } inline HashSet_1_t47ED9A0606C5D93A2045DE3AACBA2CD73C930023 * get__set_0() const { return ____set_0; } inline HashSet_1_t47ED9A0606C5D93A2045DE3AACBA2CD73C930023 ** get_address_of__set_0() { return &____set_0; } inline void set__set_0(HashSet_1_t47ED9A0606C5D93A2045DE3AACBA2CD73C930023 * value) { ____set_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____set_0), (void*)value); } inline static int32_t get_offset_of__index_1() { return static_cast(offsetof(Enumerator_t56EDF8026DFAAE04A48416483FAB75F1CAF73061, ____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_t56EDF8026DFAAE04A48416483FAB75F1CAF73061, ____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_t56EDF8026DFAAE04A48416483FAB75F1CAF73061, ____current_3)); } inline Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * get__current_3() const { return ____current_3; } inline Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 ** get_address_of__current_3() { return &____current_3; } inline void set__current_3(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * value) { ____current_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____current_3), (void*)value); } }; // System.ValueTuple`2 struct ValueTuple_2_t8A744F446B0F7B478AD1F3F16A38F910E3329FC8 { public: // T1 System.ValueTuple`2::Item1 float ___Item1_0; // T2 System.ValueTuple`2::Item2 float ___Item2_1; public: inline static int32_t get_offset_of_Item1_0() { return static_cast(offsetof(ValueTuple_2_t8A744F446B0F7B478AD1F3F16A38F910E3329FC8, ___Item1_0)); } inline float get_Item1_0() const { return ___Item1_0; } inline float* get_address_of_Item1_0() { return &___Item1_0; } inline void set_Item1_0(float value) { ___Item1_0 = value; } inline static int32_t get_offset_of_Item2_1() { return static_cast(offsetof(ValueTuple_2_t8A744F446B0F7B478AD1F3F16A38F910E3329FC8, ___Item2_1)); } inline float get_Item2_1() const { return ___Item2_1; } inline float* get_address_of_Item2_1() { return &___Item2_1; } inline void set_Item2_1(float value) { ___Item2_1 = value; } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.AbstractF2mCurve struct AbstractF2mCurve_tDE72296FD23D8B8C899FBB99BAD91F3D1C9BBCCE : public ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger[] BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.AbstractF2mCurve::si BigIntegerU5BU5D_tE8B77B5B8A588D40881DE1C7EE373965BF9E33ED* ___si_16; public: inline static int32_t get_offset_of_si_16() { return static_cast(offsetof(AbstractF2mCurve_tDE72296FD23D8B8C899FBB99BAD91F3D1C9BBCCE, ___si_16)); } inline BigIntegerU5BU5D_tE8B77B5B8A588D40881DE1C7EE373965BF9E33ED* get_si_16() const { return ___si_16; } inline BigIntegerU5BU5D_tE8B77B5B8A588D40881DE1C7EE373965BF9E33ED** get_address_of_si_16() { return &___si_16; } inline void set_si_16(BigIntegerU5BU5D_tE8B77B5B8A588D40881DE1C7EE373965BF9E33ED* value) { ___si_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___si_16), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.AbstractF2mFieldElement struct AbstractF2mFieldElement_tFE8B594FAC65E3901869DD8752F30A2A5AA26677 : public ECFieldElement_t5B3E4EB355D81F73F6FAC09A042BE908A9631117 { public: public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.AbstractFpCurve struct AbstractFpCurve_tE0B6ADB825360C35FC7DFFBCC3473DCA2198D5EF : public ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 { public: public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.AbstractFpFieldElement struct AbstractFpFieldElement_tD2C80C5CF9EBE12D131C5D8D967229FF84510820 : public ECFieldElement_t5B3E4EB355D81F73F6FAC09A042BE908A9631117 { public: public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier struct AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier::algorithm DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___algorithm_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier::parameters Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * ___parameters_3; public: inline static int32_t get_offset_of_algorithm_2() { return static_cast(offsetof(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9, ___algorithm_2)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_algorithm_2() const { return ___algorithm_2; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_algorithm_2() { return &___algorithm_2; } inline void set_algorithm_2(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___algorithm_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___algorithm_2), (void*)value); } inline static int32_t get_offset_of_parameters_3() { return static_cast(offsetof(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9, ___parameters_3)); } inline Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * get_parameters_3() const { return ___parameters_3; } inline Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC ** get_address_of_parameters_3() { return &___parameters_3; } inline void set_parameters_3(Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * value) { ___parameters_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___parameters_3), (void*)value); } }; // UnityEngine.AnimatorStateInfo struct AnimatorStateInfo_t052E146D2DB1EC155950ECA45734BF57134258AA { public: // System.Int32 UnityEngine.AnimatorStateInfo::m_Name int32_t ___m_Name_0; // System.Int32 UnityEngine.AnimatorStateInfo::m_Path int32_t ___m_Path_1; // System.Int32 UnityEngine.AnimatorStateInfo::m_FullPath int32_t ___m_FullPath_2; // System.Single UnityEngine.AnimatorStateInfo::m_NormalizedTime float ___m_NormalizedTime_3; // System.Single UnityEngine.AnimatorStateInfo::m_Length float ___m_Length_4; // System.Single UnityEngine.AnimatorStateInfo::m_Speed float ___m_Speed_5; // System.Single UnityEngine.AnimatorStateInfo::m_SpeedMultiplier float ___m_SpeedMultiplier_6; // System.Int32 UnityEngine.AnimatorStateInfo::m_Tag int32_t ___m_Tag_7; // System.Int32 UnityEngine.AnimatorStateInfo::m_Loop int32_t ___m_Loop_8; public: inline static int32_t get_offset_of_m_Name_0() { return static_cast(offsetof(AnimatorStateInfo_t052E146D2DB1EC155950ECA45734BF57134258AA, ___m_Name_0)); } inline int32_t get_m_Name_0() const { return ___m_Name_0; } inline int32_t* get_address_of_m_Name_0() { return &___m_Name_0; } inline void set_m_Name_0(int32_t value) { ___m_Name_0 = value; } inline static int32_t get_offset_of_m_Path_1() { return static_cast(offsetof(AnimatorStateInfo_t052E146D2DB1EC155950ECA45734BF57134258AA, ___m_Path_1)); } inline int32_t get_m_Path_1() const { return ___m_Path_1; } inline int32_t* get_address_of_m_Path_1() { return &___m_Path_1; } inline void set_m_Path_1(int32_t value) { ___m_Path_1 = value; } inline static int32_t get_offset_of_m_FullPath_2() { return static_cast(offsetof(AnimatorStateInfo_t052E146D2DB1EC155950ECA45734BF57134258AA, ___m_FullPath_2)); } inline int32_t get_m_FullPath_2() const { return ___m_FullPath_2; } inline int32_t* get_address_of_m_FullPath_2() { return &___m_FullPath_2; } inline void set_m_FullPath_2(int32_t value) { ___m_FullPath_2 = value; } inline static int32_t get_offset_of_m_NormalizedTime_3() { return static_cast(offsetof(AnimatorStateInfo_t052E146D2DB1EC155950ECA45734BF57134258AA, ___m_NormalizedTime_3)); } inline float get_m_NormalizedTime_3() const { return ___m_NormalizedTime_3; } inline float* get_address_of_m_NormalizedTime_3() { return &___m_NormalizedTime_3; } inline void set_m_NormalizedTime_3(float value) { ___m_NormalizedTime_3 = value; } inline static int32_t get_offset_of_m_Length_4() { return static_cast(offsetof(AnimatorStateInfo_t052E146D2DB1EC155950ECA45734BF57134258AA, ___m_Length_4)); } inline float get_m_Length_4() const { return ___m_Length_4; } inline float* get_address_of_m_Length_4() { return &___m_Length_4; } inline void set_m_Length_4(float value) { ___m_Length_4 = value; } inline static int32_t get_offset_of_m_Speed_5() { return static_cast(offsetof(AnimatorStateInfo_t052E146D2DB1EC155950ECA45734BF57134258AA, ___m_Speed_5)); } inline float get_m_Speed_5() const { return ___m_Speed_5; } inline float* get_address_of_m_Speed_5() { return &___m_Speed_5; } inline void set_m_Speed_5(float value) { ___m_Speed_5 = value; } inline static int32_t get_offset_of_m_SpeedMultiplier_6() { return static_cast(offsetof(AnimatorStateInfo_t052E146D2DB1EC155950ECA45734BF57134258AA, ___m_SpeedMultiplier_6)); } inline float get_m_SpeedMultiplier_6() const { return ___m_SpeedMultiplier_6; } inline float* get_address_of_m_SpeedMultiplier_6() { return &___m_SpeedMultiplier_6; } inline void set_m_SpeedMultiplier_6(float value) { ___m_SpeedMultiplier_6 = value; } inline static int32_t get_offset_of_m_Tag_7() { return static_cast(offsetof(AnimatorStateInfo_t052E146D2DB1EC155950ECA45734BF57134258AA, ___m_Tag_7)); } inline int32_t get_m_Tag_7() const { return ___m_Tag_7; } inline int32_t* get_address_of_m_Tag_7() { return &___m_Tag_7; } inline void set_m_Tag_7(int32_t value) { ___m_Tag_7 = value; } inline static int32_t get_offset_of_m_Loop_8() { return static_cast(offsetof(AnimatorStateInfo_t052E146D2DB1EC155950ECA45734BF57134258AA, ___m_Loop_8)); } inline int32_t get_m_Loop_8() const { return ___m_Loop_8; } inline int32_t* get_address_of_m_Loop_8() { return &___m_Loop_8; } inline void set_m_Loop_8(int32_t value) { ___m_Loop_8 = value; } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Object struct Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttCertIssuer struct AttCertIssuer_tC2A63BCB19A64F1F5B6335B241ED80E5AAC1562A : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttCertIssuer::obj Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * ___obj_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Object BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttCertIssuer::choiceObj Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * ___choiceObj_3; public: inline static int32_t get_offset_of_obj_2() { return static_cast(offsetof(AttCertIssuer_tC2A63BCB19A64F1F5B6335B241ED80E5AAC1562A, ___obj_2)); } inline Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * get_obj_2() const { return ___obj_2; } inline Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC ** get_address_of_obj_2() { return &___obj_2; } inline void set_obj_2(Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * value) { ___obj_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___obj_2), (void*)value); } inline static int32_t get_offset_of_choiceObj_3() { return static_cast(offsetof(AttCertIssuer_tC2A63BCB19A64F1F5B6335B241ED80E5AAC1562A, ___choiceObj_3)); } inline Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * get_choiceObj_3() const { return ___choiceObj_3; } inline Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC ** get_address_of_choiceObj_3() { return &___choiceObj_3; } inline void set_choiceObj_3(Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * value) { ___choiceObj_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___choiceObj_3), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttCertValidityPeriod struct AttCertValidityPeriod_t02A425D4B6DBD563E99E6448C58680741D22B4EA : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerGeneralizedTime BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttCertValidityPeriod::notBeforeTime DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 * ___notBeforeTime_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerGeneralizedTime BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttCertValidityPeriod::notAfterTime DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 * ___notAfterTime_3; public: inline static int32_t get_offset_of_notBeforeTime_2() { return static_cast(offsetof(AttCertValidityPeriod_t02A425D4B6DBD563E99E6448C58680741D22B4EA, ___notBeforeTime_2)); } inline DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 * get_notBeforeTime_2() const { return ___notBeforeTime_2; } inline DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 ** get_address_of_notBeforeTime_2() { return &___notBeforeTime_2; } inline void set_notBeforeTime_2(DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 * value) { ___notBeforeTime_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___notBeforeTime_2), (void*)value); } inline static int32_t get_offset_of_notAfterTime_3() { return static_cast(offsetof(AttCertValidityPeriod_t02A425D4B6DBD563E99E6448C58680741D22B4EA, ___notAfterTime_3)); } inline DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 * get_notAfterTime_3() const { return ___notAfterTime_3; } inline DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 ** get_address_of_notAfterTime_3() { return &___notAfterTime_3; } inline void set_notAfterTime_3(DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 * value) { ___notAfterTime_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___notAfterTime_3), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeCertificate struct AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeCertificateInfo BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeCertificate::acinfo AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00 * ___acinfo_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeCertificate::signatureAlgorithm AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___signatureAlgorithm_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeCertificate::signatureValue DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * ___signatureValue_4; public: inline static int32_t get_offset_of_acinfo_2() { return static_cast(offsetof(AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31, ___acinfo_2)); } inline AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00 * get_acinfo_2() const { return ___acinfo_2; } inline AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00 ** get_address_of_acinfo_2() { return &___acinfo_2; } inline void set_acinfo_2(AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00 * value) { ___acinfo_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___acinfo_2), (void*)value); } inline static int32_t get_offset_of_signatureAlgorithm_3() { return static_cast(offsetof(AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31, ___signatureAlgorithm_3)); } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * get_signatureAlgorithm_3() const { return ___signatureAlgorithm_3; } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 ** get_address_of_signatureAlgorithm_3() { return &___signatureAlgorithm_3; } inline void set_signatureAlgorithm_3(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * value) { ___signatureAlgorithm_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___signatureAlgorithm_3), (void*)value); } inline static int32_t get_offset_of_signatureValue_4() { return static_cast(offsetof(AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31, ___signatureValue_4)); } inline DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * get_signatureValue_4() const { return ___signatureValue_4; } inline DerBitString_t305465793A47445626D3541AB8CEDE347D874524 ** get_address_of_signatureValue_4() { return &___signatureValue_4; } inline void set_signatureValue_4(DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * value) { ___signatureValue_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___signatureValue_4), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeCertificateInfo struct AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeCertificateInfo::version DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * ___version_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.Holder BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeCertificateInfo::holder Holder_t64C922905238378DD56C273DE16BA7D09529E22A * ___holder_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttCertIssuer BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeCertificateInfo::issuer AttCertIssuer_tC2A63BCB19A64F1F5B6335B241ED80E5AAC1562A * ___issuer_4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeCertificateInfo::signature AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___signature_5; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeCertificateInfo::serialNumber DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * ___serialNumber_6; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttCertValidityPeriod BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeCertificateInfo::attrCertValidityPeriod AttCertValidityPeriod_t02A425D4B6DBD563E99E6448C58680741D22B4EA * ___attrCertValidityPeriod_7; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeCertificateInfo::attributes Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * ___attributes_8; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeCertificateInfo::issuerUniqueID DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * ___issuerUniqueID_9; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeCertificateInfo::extensions X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F * ___extensions_10; public: inline static int32_t get_offset_of_version_2() { return static_cast(offsetof(AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00, ___version_2)); } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * get_version_2() const { return ___version_2; } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 ** get_address_of_version_2() { return &___version_2; } inline void set_version_2(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * value) { ___version_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_2), (void*)value); } inline static int32_t get_offset_of_holder_3() { return static_cast(offsetof(AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00, ___holder_3)); } inline Holder_t64C922905238378DD56C273DE16BA7D09529E22A * get_holder_3() const { return ___holder_3; } inline Holder_t64C922905238378DD56C273DE16BA7D09529E22A ** get_address_of_holder_3() { return &___holder_3; } inline void set_holder_3(Holder_t64C922905238378DD56C273DE16BA7D09529E22A * value) { ___holder_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___holder_3), (void*)value); } inline static int32_t get_offset_of_issuer_4() { return static_cast(offsetof(AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00, ___issuer_4)); } inline AttCertIssuer_tC2A63BCB19A64F1F5B6335B241ED80E5AAC1562A * get_issuer_4() const { return ___issuer_4; } inline AttCertIssuer_tC2A63BCB19A64F1F5B6335B241ED80E5AAC1562A ** get_address_of_issuer_4() { return &___issuer_4; } inline void set_issuer_4(AttCertIssuer_tC2A63BCB19A64F1F5B6335B241ED80E5AAC1562A * value) { ___issuer_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___issuer_4), (void*)value); } inline static int32_t get_offset_of_signature_5() { return static_cast(offsetof(AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00, ___signature_5)); } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * get_signature_5() const { return ___signature_5; } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 ** get_address_of_signature_5() { return &___signature_5; } inline void set_signature_5(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * value) { ___signature_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___signature_5), (void*)value); } inline static int32_t get_offset_of_serialNumber_6() { return static_cast(offsetof(AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00, ___serialNumber_6)); } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * get_serialNumber_6() const { return ___serialNumber_6; } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 ** get_address_of_serialNumber_6() { return &___serialNumber_6; } inline void set_serialNumber_6(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * value) { ___serialNumber_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___serialNumber_6), (void*)value); } inline static int32_t get_offset_of_attrCertValidityPeriod_7() { return static_cast(offsetof(AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00, ___attrCertValidityPeriod_7)); } inline AttCertValidityPeriod_t02A425D4B6DBD563E99E6448C58680741D22B4EA * get_attrCertValidityPeriod_7() const { return ___attrCertValidityPeriod_7; } inline AttCertValidityPeriod_t02A425D4B6DBD563E99E6448C58680741D22B4EA ** get_address_of_attrCertValidityPeriod_7() { return &___attrCertValidityPeriod_7; } inline void set_attrCertValidityPeriod_7(AttCertValidityPeriod_t02A425D4B6DBD563E99E6448C58680741D22B4EA * value) { ___attrCertValidityPeriod_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___attrCertValidityPeriod_7), (void*)value); } inline static int32_t get_offset_of_attributes_8() { return static_cast(offsetof(AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00, ___attributes_8)); } inline Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * get_attributes_8() const { return ___attributes_8; } inline Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 ** get_address_of_attributes_8() { return &___attributes_8; } inline void set_attributes_8(Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * value) { ___attributes_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___attributes_8), (void*)value); } inline static int32_t get_offset_of_issuerUniqueID_9() { return static_cast(offsetof(AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00, ___issuerUniqueID_9)); } inline DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * get_issuerUniqueID_9() const { return ___issuerUniqueID_9; } inline DerBitString_t305465793A47445626D3541AB8CEDE347D874524 ** get_address_of_issuerUniqueID_9() { return &___issuerUniqueID_9; } inline void set_issuerUniqueID_9(DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * value) { ___issuerUniqueID_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___issuerUniqueID_9), (void*)value); } inline static int32_t get_offset_of_extensions_10() { return static_cast(offsetof(AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00, ___extensions_10)); } inline X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F * get_extensions_10() const { return ___extensions_10; } inline X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F ** get_address_of_extensions_10() { return &___extensions_10; } inline void set_extensions_10(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F * value) { ___extensions_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___extensions_10), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeX509 struct AttributeX509_t63A4C9CCBF6EE24C795D436E493F4C56327185EA : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeX509::attrType DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___attrType_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Set BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeX509::attrValues Asn1Set_t9EBB628AB5FBF1FCC866DC7AEA45C59A72698F49 * ___attrValues_3; public: inline static int32_t get_offset_of_attrType_2() { return static_cast(offsetof(AttributeX509_t63A4C9CCBF6EE24C795D436E493F4C56327185EA, ___attrType_2)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_attrType_2() const { return ___attrType_2; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_attrType_2() { return &___attrType_2; } inline void set_attrType_2(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___attrType_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___attrType_2), (void*)value); } inline static int32_t get_offset_of_attrValues_3() { return static_cast(offsetof(AttributeX509_t63A4C9CCBF6EE24C795D436E493F4C56327185EA, ___attrValues_3)); } inline Asn1Set_t9EBB628AB5FBF1FCC866DC7AEA45C59A72698F49 * get_attrValues_3() const { return ___attrValues_3; } inline Asn1Set_t9EBB628AB5FBF1FCC866DC7AEA45C59A72698F49 ** get_address_of_attrValues_3() { return &___attrValues_3; } inline void set_attrValues_3(Asn1Set_t9EBB628AB5FBF1FCC866DC7AEA45C59A72698F49 * value) { ___attrValues_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___attrValues_3), (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; } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.CertificateList struct CertificateList_tC023E9119F567E5589711845D4A07A59F9F26B34 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateList BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.CertificateList::tbsCertList TbsCertificateList_t1C345B12531EFE2A414CE6CF55DCEAF23B1A44B0 * ___tbsCertList_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.CertificateList::sigAlgID AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___sigAlgID_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.CertificateList::sig DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * ___sig_4; public: inline static int32_t get_offset_of_tbsCertList_2() { return static_cast(offsetof(CertificateList_tC023E9119F567E5589711845D4A07A59F9F26B34, ___tbsCertList_2)); } inline TbsCertificateList_t1C345B12531EFE2A414CE6CF55DCEAF23B1A44B0 * get_tbsCertList_2() const { return ___tbsCertList_2; } inline TbsCertificateList_t1C345B12531EFE2A414CE6CF55DCEAF23B1A44B0 ** get_address_of_tbsCertList_2() { return &___tbsCertList_2; } inline void set_tbsCertList_2(TbsCertificateList_t1C345B12531EFE2A414CE6CF55DCEAF23B1A44B0 * value) { ___tbsCertList_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___tbsCertList_2), (void*)value); } inline static int32_t get_offset_of_sigAlgID_3() { return static_cast(offsetof(CertificateList_tC023E9119F567E5589711845D4A07A59F9F26B34, ___sigAlgID_3)); } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * get_sigAlgID_3() const { return ___sigAlgID_3; } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 ** get_address_of_sigAlgID_3() { return &___sigAlgID_3; } inline void set_sigAlgID_3(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * value) { ___sigAlgID_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___sigAlgID_3), (void*)value); } inline static int32_t get_offset_of_sig_4() { return static_cast(offsetof(CertificateList_tC023E9119F567E5589711845D4A07A59F9F26B34, ___sig_4)); } inline DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * get_sig_4() const { return ___sig_4; } inline DerBitString_t305465793A47445626D3541AB8CEDE347D874524 ** get_address_of_sig_4() { return &___sig_4; } inline void set_sig_4(DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * value) { ___sig_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___sig_4), (void*)value); } }; // ChallengeGameMode struct ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B : public GameMode_t3635427B8DF6A50F9EAE8955955887AD0D098C82 { public: // System.Int32 ChallengeGameMode::animalTypeID int32_t ___animalTypeID_2; // UnityEngine.GameObject ChallengeGameMode::animalPrefab GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___animalPrefab_3; // UnityEngine.Transform ChallengeGameMode::hunterT Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___hunterT_4; // UnityEngine.Transform ChallengeGameMode::animalsBaseT Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___animalsBaseT_5; // System.Collections.Generic.HashSet`1 ChallengeGameMode::animalSet HashSet_1_tBBDF351960AC909F90DBEEF112FAB92D79FAB089 * ___animalSet_6; // System.Int32 ChallengeGameMode::maxAnimalCountAtTheSameTime int32_t ___maxAnimalCountAtTheSameTime_7; // System.Int32 ChallengeGameMode::animalCount int32_t ___animalCount_8; // System.Int32 ChallengeGameMode::animalCountMax int32_t ___animalCountMax_9; // System.Int32 ChallengeGameMode::arrowCount int32_t ___arrowCount_10; // System.Int32 ChallengeGameMode::arrowCountMax int32_t ___arrowCountMax_11; // System.Single ChallengeGameMode::time float ___time_12; // System.Int32 ChallengeGameMode::currentlevel int32_t ___currentlevel_13; // System.String ChallengeGameMode::nextLevel String_t* ___nextLevel_15; // System.Boolean ChallengeGameMode::banOnBowArrowShootOut bool ___banOnBowArrowShootOut_16; public: inline static int32_t get_offset_of_animalTypeID_2() { return static_cast(offsetof(ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B, ___animalTypeID_2)); } inline int32_t get_animalTypeID_2() const { return ___animalTypeID_2; } inline int32_t* get_address_of_animalTypeID_2() { return &___animalTypeID_2; } inline void set_animalTypeID_2(int32_t value) { ___animalTypeID_2 = value; } inline static int32_t get_offset_of_animalPrefab_3() { return static_cast(offsetof(ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B, ___animalPrefab_3)); } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_animalPrefab_3() const { return ___animalPrefab_3; } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_animalPrefab_3() { return &___animalPrefab_3; } inline void set_animalPrefab_3(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value) { ___animalPrefab_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___animalPrefab_3), (void*)value); } inline static int32_t get_offset_of_hunterT_4() { return static_cast(offsetof(ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B, ___hunterT_4)); } inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * get_hunterT_4() const { return ___hunterT_4; } inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 ** get_address_of_hunterT_4() { return &___hunterT_4; } inline void set_hunterT_4(Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * value) { ___hunterT_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___hunterT_4), (void*)value); } inline static int32_t get_offset_of_animalsBaseT_5() { return static_cast(offsetof(ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B, ___animalsBaseT_5)); } inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * get_animalsBaseT_5() const { return ___animalsBaseT_5; } inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 ** get_address_of_animalsBaseT_5() { return &___animalsBaseT_5; } inline void set_animalsBaseT_5(Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * value) { ___animalsBaseT_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___animalsBaseT_5), (void*)value); } inline static int32_t get_offset_of_animalSet_6() { return static_cast(offsetof(ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B, ___animalSet_6)); } inline HashSet_1_tBBDF351960AC909F90DBEEF112FAB92D79FAB089 * get_animalSet_6() const { return ___animalSet_6; } inline HashSet_1_tBBDF351960AC909F90DBEEF112FAB92D79FAB089 ** get_address_of_animalSet_6() { return &___animalSet_6; } inline void set_animalSet_6(HashSet_1_tBBDF351960AC909F90DBEEF112FAB92D79FAB089 * value) { ___animalSet_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___animalSet_6), (void*)value); } inline static int32_t get_offset_of_maxAnimalCountAtTheSameTime_7() { return static_cast(offsetof(ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B, ___maxAnimalCountAtTheSameTime_7)); } inline int32_t get_maxAnimalCountAtTheSameTime_7() const { return ___maxAnimalCountAtTheSameTime_7; } inline int32_t* get_address_of_maxAnimalCountAtTheSameTime_7() { return &___maxAnimalCountAtTheSameTime_7; } inline void set_maxAnimalCountAtTheSameTime_7(int32_t value) { ___maxAnimalCountAtTheSameTime_7 = value; } inline static int32_t get_offset_of_animalCount_8() { return static_cast(offsetof(ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B, ___animalCount_8)); } inline int32_t get_animalCount_8() const { return ___animalCount_8; } inline int32_t* get_address_of_animalCount_8() { return &___animalCount_8; } inline void set_animalCount_8(int32_t value) { ___animalCount_8 = value; } inline static int32_t get_offset_of_animalCountMax_9() { return static_cast(offsetof(ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B, ___animalCountMax_9)); } inline int32_t get_animalCountMax_9() const { return ___animalCountMax_9; } inline int32_t* get_address_of_animalCountMax_9() { return &___animalCountMax_9; } inline void set_animalCountMax_9(int32_t value) { ___animalCountMax_9 = value; } inline static int32_t get_offset_of_arrowCount_10() { return static_cast(offsetof(ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B, ___arrowCount_10)); } inline int32_t get_arrowCount_10() const { return ___arrowCount_10; } inline int32_t* get_address_of_arrowCount_10() { return &___arrowCount_10; } inline void set_arrowCount_10(int32_t value) { ___arrowCount_10 = value; } inline static int32_t get_offset_of_arrowCountMax_11() { return static_cast(offsetof(ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B, ___arrowCountMax_11)); } inline int32_t get_arrowCountMax_11() const { return ___arrowCountMax_11; } inline int32_t* get_address_of_arrowCountMax_11() { return &___arrowCountMax_11; } inline void set_arrowCountMax_11(int32_t value) { ___arrowCountMax_11 = value; } inline static int32_t get_offset_of_time_12() { return static_cast(offsetof(ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B, ___time_12)); } inline float get_time_12() const { return ___time_12; } inline float* get_address_of_time_12() { return &___time_12; } inline void set_time_12(float value) { ___time_12 = value; } inline static int32_t get_offset_of_currentlevel_13() { return static_cast(offsetof(ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B, ___currentlevel_13)); } inline int32_t get_currentlevel_13() const { return ___currentlevel_13; } inline int32_t* get_address_of_currentlevel_13() { return &___currentlevel_13; } inline void set_currentlevel_13(int32_t value) { ___currentlevel_13 = value; } inline static int32_t get_offset_of_nextLevel_15() { return static_cast(offsetof(ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B, ___nextLevel_15)); } inline String_t* get_nextLevel_15() const { return ___nextLevel_15; } inline String_t** get_address_of_nextLevel_15() { return &___nextLevel_15; } inline void set_nextLevel_15(String_t* value) { ___nextLevel_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___nextLevel_15), (void*)value); } inline static int32_t get_offset_of_banOnBowArrowShootOut_16() { return static_cast(offsetof(ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B, ___banOnBowArrowShootOut_16)); } inline bool get_banOnBowArrowShootOut_16() const { return ___banOnBowArrowShootOut_16; } inline bool* get_address_of_banOnBowArrowShootOut_16() { return &___banOnBowArrowShootOut_16; } inline void set_banOnBowArrowShootOut_16(bool value) { ___banOnBowArrowShootOut_16 = value; } }; struct ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B_StaticFields { public: // System.String ChallengeGameMode::enterNextLevel String_t* ___enterNextLevel_14; public: inline static int32_t get_offset_of_enterNextLevel_14() { return static_cast(offsetof(ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B_StaticFields, ___enterNextLevel_14)); } inline String_t* get_enterNextLevel_14() const { return ___enterNextLevel_14; } inline String_t** get_address_of_enterNextLevel_14() { return &___enterNextLevel_14; } inline void set_enterNextLevel_14(String_t* value) { ___enterNextLevel_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___enterNextLevel_14), (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); } }; // 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.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.SecureProtocol.Org.BouncyCastle.Asn1.X509.Holder struct Holder_t64C922905238378DD56C273DE16BA7D09529E22A : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.IssuerSerial BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.Holder::baseCertificateID IssuerSerial_t7368EB3A12EDEEEFCB87BE6B748D2FD5B54BAE37 * ___baseCertificateID_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.GeneralNames BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.Holder::entityName GeneralNames_tFF74584199F5CAD145B6DA73D7552D4B4FD101E5 * ___entityName_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.ObjectDigestInfo BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.Holder::objectDigestInfo ObjectDigestInfo_t997F1CBD0115B95F608FDDBEFEF91C880640A005 * ___objectDigestInfo_4; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.Holder::version int32_t ___version_5; public: inline static int32_t get_offset_of_baseCertificateID_2() { return static_cast(offsetof(Holder_t64C922905238378DD56C273DE16BA7D09529E22A, ___baseCertificateID_2)); } inline IssuerSerial_t7368EB3A12EDEEEFCB87BE6B748D2FD5B54BAE37 * get_baseCertificateID_2() const { return ___baseCertificateID_2; } inline IssuerSerial_t7368EB3A12EDEEEFCB87BE6B748D2FD5B54BAE37 ** get_address_of_baseCertificateID_2() { return &___baseCertificateID_2; } inline void set_baseCertificateID_2(IssuerSerial_t7368EB3A12EDEEEFCB87BE6B748D2FD5B54BAE37 * value) { ___baseCertificateID_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___baseCertificateID_2), (void*)value); } inline static int32_t get_offset_of_entityName_3() { return static_cast(offsetof(Holder_t64C922905238378DD56C273DE16BA7D09529E22A, ___entityName_3)); } inline GeneralNames_tFF74584199F5CAD145B6DA73D7552D4B4FD101E5 * get_entityName_3() const { return ___entityName_3; } inline GeneralNames_tFF74584199F5CAD145B6DA73D7552D4B4FD101E5 ** get_address_of_entityName_3() { return &___entityName_3; } inline void set_entityName_3(GeneralNames_tFF74584199F5CAD145B6DA73D7552D4B4FD101E5 * value) { ___entityName_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___entityName_3), (void*)value); } inline static int32_t get_offset_of_objectDigestInfo_4() { return static_cast(offsetof(Holder_t64C922905238378DD56C273DE16BA7D09529E22A, ___objectDigestInfo_4)); } inline ObjectDigestInfo_t997F1CBD0115B95F608FDDBEFEF91C880640A005 * get_objectDigestInfo_4() const { return ___objectDigestInfo_4; } inline ObjectDigestInfo_t997F1CBD0115B95F608FDDBEFEF91C880640A005 ** get_address_of_objectDigestInfo_4() { return &___objectDigestInfo_4; } inline void set_objectDigestInfo_4(ObjectDigestInfo_t997F1CBD0115B95F608FDDBEFEF91C880640A005 * value) { ___objectDigestInfo_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___objectDigestInfo_4), (void*)value); } inline static int32_t get_offset_of_version_5() { return static_cast(offsetof(Holder_t64C922905238378DD56C273DE16BA7D09529E22A, ___version_5)); } inline int32_t get_version_5() const { return ___version_5; } inline int32_t* get_address_of_version_5() { return &___version_5; } inline void set_version_5(int32_t value) { ___version_5 = value; } }; // System.Int16 struct Int16_tD0F031114106263BB459DA1F099FF9F42691295A { public: // System.Int16 System.Int16::m_value int16_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Int16_tD0F031114106263BB459DA1F099FF9F42691295A, ___m_value_0)); } inline int16_t get_m_value_0() const { return ___m_value_0; } inline int16_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int16_t value) { ___m_value_0 = 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; } }; // 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.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters struct RsaKeyParameters_t5CEAA6F9B92D2B6F1225DFF7C089B43146012801 : public AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters::modulus BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___modulus_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters::exponent BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___exponent_3; public: inline static int32_t get_offset_of_modulus_2() { return static_cast(offsetof(RsaKeyParameters_t5CEAA6F9B92D2B6F1225DFF7C089B43146012801, ___modulus_2)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_modulus_2() const { return ___modulus_2; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_modulus_2() { return &___modulus_2; } inline void set_modulus_2(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___modulus_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___modulus_2), (void*)value); } inline static int32_t get_offset_of_exponent_3() { return static_cast(offsetof(RsaKeyParameters_t5CEAA6F9B92D2B6F1225DFF7C089B43146012801, ___exponent_3)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_exponent_3() const { return ___exponent_3; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_exponent_3() { return &___exponent_3; } inline void set_exponent_3(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___exponent_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___exponent_3), (void*)value); } }; struct RsaKeyParameters_t5CEAA6F9B92D2B6F1225DFF7C089B43146012801_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters::SmallPrimesProduct BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___SmallPrimesProduct_1; public: inline static int32_t get_offset_of_SmallPrimesProduct_1() { return static_cast(offsetof(RsaKeyParameters_t5CEAA6F9B92D2B6F1225DFF7C089B43146012801_StaticFields, ___SmallPrimesProduct_1)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_SmallPrimesProduct_1() const { return ___SmallPrimesProduct_1; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_SmallPrimesProduct_1() { return &___SmallPrimesProduct_1; } inline void set_SmallPrimesProduct_1(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___SmallPrimesProduct_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___SmallPrimesProduct_1), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters struct RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters::hashAlgorithm AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___hashAlgorithm_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters::maskGenAlgorithm AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___maskGenAlgorithm_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters::saltLength DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * ___saltLength_4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters::trailerField DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * ___trailerField_5; public: inline static int32_t get_offset_of_hashAlgorithm_2() { return static_cast(offsetof(RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69, ___hashAlgorithm_2)); } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * get_hashAlgorithm_2() const { return ___hashAlgorithm_2; } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 ** get_address_of_hashAlgorithm_2() { return &___hashAlgorithm_2; } inline void set_hashAlgorithm_2(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * value) { ___hashAlgorithm_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___hashAlgorithm_2), (void*)value); } inline static int32_t get_offset_of_maskGenAlgorithm_3() { return static_cast(offsetof(RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69, ___maskGenAlgorithm_3)); } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * get_maskGenAlgorithm_3() const { return ___maskGenAlgorithm_3; } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 ** get_address_of_maskGenAlgorithm_3() { return &___maskGenAlgorithm_3; } inline void set_maskGenAlgorithm_3(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * value) { ___maskGenAlgorithm_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___maskGenAlgorithm_3), (void*)value); } inline static int32_t get_offset_of_saltLength_4() { return static_cast(offsetof(RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69, ___saltLength_4)); } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * get_saltLength_4() const { return ___saltLength_4; } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 ** get_address_of_saltLength_4() { return &___saltLength_4; } inline void set_saltLength_4(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * value) { ___saltLength_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___saltLength_4), (void*)value); } inline static int32_t get_offset_of_trailerField_5() { return static_cast(offsetof(RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69, ___trailerField_5)); } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * get_trailerField_5() const { return ___trailerField_5; } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 ** get_address_of_trailerField_5() { return &___trailerField_5; } inline void set_trailerField_5(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * value) { ___trailerField_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___trailerField_5), (void*)value); } }; struct RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters::DefaultHashAlgorithm AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___DefaultHashAlgorithm_6; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters::DefaultMaskGenFunction AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___DefaultMaskGenFunction_7; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters::DefaultSaltLength DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * ___DefaultSaltLength_8; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters::DefaultTrailerField DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * ___DefaultTrailerField_9; public: inline static int32_t get_offset_of_DefaultHashAlgorithm_6() { return static_cast(offsetof(RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69_StaticFields, ___DefaultHashAlgorithm_6)); } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * get_DefaultHashAlgorithm_6() const { return ___DefaultHashAlgorithm_6; } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 ** get_address_of_DefaultHashAlgorithm_6() { return &___DefaultHashAlgorithm_6; } inline void set_DefaultHashAlgorithm_6(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * value) { ___DefaultHashAlgorithm_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___DefaultHashAlgorithm_6), (void*)value); } inline static int32_t get_offset_of_DefaultMaskGenFunction_7() { return static_cast(offsetof(RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69_StaticFields, ___DefaultMaskGenFunction_7)); } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * get_DefaultMaskGenFunction_7() const { return ___DefaultMaskGenFunction_7; } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 ** get_address_of_DefaultMaskGenFunction_7() { return &___DefaultMaskGenFunction_7; } inline void set_DefaultMaskGenFunction_7(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * value) { ___DefaultMaskGenFunction_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___DefaultMaskGenFunction_7), (void*)value); } inline static int32_t get_offset_of_DefaultSaltLength_8() { return static_cast(offsetof(RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69_StaticFields, ___DefaultSaltLength_8)); } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * get_DefaultSaltLength_8() const { return ___DefaultSaltLength_8; } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 ** get_address_of_DefaultSaltLength_8() { return &___DefaultSaltLength_8; } inline void set_DefaultSaltLength_8(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * value) { ___DefaultSaltLength_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___DefaultSaltLength_8), (void*)value); } inline static int32_t get_offset_of_DefaultTrailerField_9() { return static_cast(offsetof(RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69_StaticFields, ___DefaultTrailerField_9)); } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * get_DefaultTrailerField_9() const { return ___DefaultTrailerField_9; } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 ** get_address_of_DefaultTrailerField_9() { return &___DefaultTrailerField_9; } inline void set_DefaultTrailerField_9(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * value) { ___DefaultTrailerField_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___DefaultTrailerField_9), (void*)value); } }; // System.SByte struct SByte_t928712DD662DC29BA4FAAE8CE2230AFB23447F0B { public: // System.SByte System.SByte::m_value int8_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(SByte_t928712DD662DC29BA4FAAE8CE2230AFB23447F0B, ___m_value_0)); } inline int8_t get_m_value_0() const { return ___m_value_0; } inline int8_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int8_t value) { ___m_value_0 = 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; } }; // 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); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo struct SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo::algID AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___algID_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo::keyData DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * ___keyData_3; public: inline static int32_t get_offset_of_algID_2() { return static_cast(offsetof(SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB, ___algID_2)); } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * get_algID_2() const { return ___algID_2; } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 ** get_address_of_algID_2() { return &___algID_2; } inline void set_algID_2(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * value) { ___algID_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___algID_2), (void*)value); } inline static int32_t get_offset_of_keyData_3() { return static_cast(offsetof(SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB, ___keyData_3)); } inline DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * get_keyData_3() const { return ___keyData_3; } inline DerBitString_t305465793A47445626D3541AB8CEDE347D874524 ** get_address_of_keyData_3() { return &___keyData_3; } inline void set_keyData_3(DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * value) { ___keyData_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___keyData_3), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateList struct TbsCertificateList_t1C345B12531EFE2A414CE6CF55DCEAF23B1A44B0 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateList::seq Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * ___seq_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateList::version DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * ___version_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateList::signature AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___signature_4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateList::issuer X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * ___issuer_5; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.Time BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateList::thisUpdate Time_tD684B1785E755395701D46F89A97609911CD6DDE * ___thisUpdate_6; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.Time BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateList::nextUpdate Time_tD684B1785E755395701D46F89A97609911CD6DDE * ___nextUpdate_7; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateList::revokedCertificates Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * ___revokedCertificates_8; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateList::crlExtensions X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F * ___crlExtensions_9; public: inline static int32_t get_offset_of_seq_2() { return static_cast(offsetof(TbsCertificateList_t1C345B12531EFE2A414CE6CF55DCEAF23B1A44B0, ___seq_2)); } inline Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * get_seq_2() const { return ___seq_2; } inline Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 ** get_address_of_seq_2() { return &___seq_2; } inline void set_seq_2(Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * value) { ___seq_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___seq_2), (void*)value); } inline static int32_t get_offset_of_version_3() { return static_cast(offsetof(TbsCertificateList_t1C345B12531EFE2A414CE6CF55DCEAF23B1A44B0, ___version_3)); } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * get_version_3() const { return ___version_3; } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 ** get_address_of_version_3() { return &___version_3; } inline void set_version_3(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * value) { ___version_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_3), (void*)value); } inline static int32_t get_offset_of_signature_4() { return static_cast(offsetof(TbsCertificateList_t1C345B12531EFE2A414CE6CF55DCEAF23B1A44B0, ___signature_4)); } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * get_signature_4() const { return ___signature_4; } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 ** get_address_of_signature_4() { return &___signature_4; } inline void set_signature_4(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * value) { ___signature_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___signature_4), (void*)value); } inline static int32_t get_offset_of_issuer_5() { return static_cast(offsetof(TbsCertificateList_t1C345B12531EFE2A414CE6CF55DCEAF23B1A44B0, ___issuer_5)); } inline X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * get_issuer_5() const { return ___issuer_5; } inline X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 ** get_address_of_issuer_5() { return &___issuer_5; } inline void set_issuer_5(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * value) { ___issuer_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___issuer_5), (void*)value); } inline static int32_t get_offset_of_thisUpdate_6() { return static_cast(offsetof(TbsCertificateList_t1C345B12531EFE2A414CE6CF55DCEAF23B1A44B0, ___thisUpdate_6)); } inline Time_tD684B1785E755395701D46F89A97609911CD6DDE * get_thisUpdate_6() const { return ___thisUpdate_6; } inline Time_tD684B1785E755395701D46F89A97609911CD6DDE ** get_address_of_thisUpdate_6() { return &___thisUpdate_6; } inline void set_thisUpdate_6(Time_tD684B1785E755395701D46F89A97609911CD6DDE * value) { ___thisUpdate_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___thisUpdate_6), (void*)value); } inline static int32_t get_offset_of_nextUpdate_7() { return static_cast(offsetof(TbsCertificateList_t1C345B12531EFE2A414CE6CF55DCEAF23B1A44B0, ___nextUpdate_7)); } inline Time_tD684B1785E755395701D46F89A97609911CD6DDE * get_nextUpdate_7() const { return ___nextUpdate_7; } inline Time_tD684B1785E755395701D46F89A97609911CD6DDE ** get_address_of_nextUpdate_7() { return &___nextUpdate_7; } inline void set_nextUpdate_7(Time_tD684B1785E755395701D46F89A97609911CD6DDE * value) { ___nextUpdate_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___nextUpdate_7), (void*)value); } inline static int32_t get_offset_of_revokedCertificates_8() { return static_cast(offsetof(TbsCertificateList_t1C345B12531EFE2A414CE6CF55DCEAF23B1A44B0, ___revokedCertificates_8)); } inline Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * get_revokedCertificates_8() const { return ___revokedCertificates_8; } inline Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 ** get_address_of_revokedCertificates_8() { return &___revokedCertificates_8; } inline void set_revokedCertificates_8(Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * value) { ___revokedCertificates_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___revokedCertificates_8), (void*)value); } inline static int32_t get_offset_of_crlExtensions_9() { return static_cast(offsetof(TbsCertificateList_t1C345B12531EFE2A414CE6CF55DCEAF23B1A44B0, ___crlExtensions_9)); } inline X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F * get_crlExtensions_9() const { return ___crlExtensions_9; } inline X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F ** get_address_of_crlExtensions_9() { return &___crlExtensions_9; } inline void set_crlExtensions_9(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F * value) { ___crlExtensions_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___crlExtensions_9), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateStructure struct TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateStructure::seq Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * ___seq_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateStructure::version DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * ___version_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateStructure::serialNumber DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * ___serialNumber_4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateStructure::signature AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___signature_5; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateStructure::issuer X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * ___issuer_6; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.Time BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateStructure::startDate Time_tD684B1785E755395701D46F89A97609911CD6DDE * ___startDate_7; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.Time BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateStructure::endDate Time_tD684B1785E755395701D46F89A97609911CD6DDE * ___endDate_8; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateStructure::subject X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * ___subject_9; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateStructure::subjectPublicKeyInfo SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB * ___subjectPublicKeyInfo_10; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateStructure::issuerUniqueID DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * ___issuerUniqueID_11; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateStructure::subjectUniqueID DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * ___subjectUniqueID_12; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateStructure::extensions X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F * ___extensions_13; public: inline static int32_t get_offset_of_seq_2() { return static_cast(offsetof(TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3, ___seq_2)); } inline Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * get_seq_2() const { return ___seq_2; } inline Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 ** get_address_of_seq_2() { return &___seq_2; } inline void set_seq_2(Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * value) { ___seq_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___seq_2), (void*)value); } inline static int32_t get_offset_of_version_3() { return static_cast(offsetof(TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3, ___version_3)); } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * get_version_3() const { return ___version_3; } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 ** get_address_of_version_3() { return &___version_3; } inline void set_version_3(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * value) { ___version_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_3), (void*)value); } inline static int32_t get_offset_of_serialNumber_4() { return static_cast(offsetof(TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3, ___serialNumber_4)); } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * get_serialNumber_4() const { return ___serialNumber_4; } inline DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 ** get_address_of_serialNumber_4() { return &___serialNumber_4; } inline void set_serialNumber_4(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * value) { ___serialNumber_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___serialNumber_4), (void*)value); } inline static int32_t get_offset_of_signature_5() { return static_cast(offsetof(TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3, ___signature_5)); } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * get_signature_5() const { return ___signature_5; } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 ** get_address_of_signature_5() { return &___signature_5; } inline void set_signature_5(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * value) { ___signature_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___signature_5), (void*)value); } inline static int32_t get_offset_of_issuer_6() { return static_cast(offsetof(TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3, ___issuer_6)); } inline X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * get_issuer_6() const { return ___issuer_6; } inline X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 ** get_address_of_issuer_6() { return &___issuer_6; } inline void set_issuer_6(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * value) { ___issuer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___issuer_6), (void*)value); } inline static int32_t get_offset_of_startDate_7() { return static_cast(offsetof(TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3, ___startDate_7)); } inline Time_tD684B1785E755395701D46F89A97609911CD6DDE * get_startDate_7() const { return ___startDate_7; } inline Time_tD684B1785E755395701D46F89A97609911CD6DDE ** get_address_of_startDate_7() { return &___startDate_7; } inline void set_startDate_7(Time_tD684B1785E755395701D46F89A97609911CD6DDE * value) { ___startDate_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___startDate_7), (void*)value); } inline static int32_t get_offset_of_endDate_8() { return static_cast(offsetof(TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3, ___endDate_8)); } inline Time_tD684B1785E755395701D46F89A97609911CD6DDE * get_endDate_8() const { return ___endDate_8; } inline Time_tD684B1785E755395701D46F89A97609911CD6DDE ** get_address_of_endDate_8() { return &___endDate_8; } inline void set_endDate_8(Time_tD684B1785E755395701D46F89A97609911CD6DDE * value) { ___endDate_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___endDate_8), (void*)value); } inline static int32_t get_offset_of_subject_9() { return static_cast(offsetof(TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3, ___subject_9)); } inline X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * get_subject_9() const { return ___subject_9; } inline X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 ** get_address_of_subject_9() { return &___subject_9; } inline void set_subject_9(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * value) { ___subject_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___subject_9), (void*)value); } inline static int32_t get_offset_of_subjectPublicKeyInfo_10() { return static_cast(offsetof(TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3, ___subjectPublicKeyInfo_10)); } inline SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB * get_subjectPublicKeyInfo_10() const { return ___subjectPublicKeyInfo_10; } inline SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB ** get_address_of_subjectPublicKeyInfo_10() { return &___subjectPublicKeyInfo_10; } inline void set_subjectPublicKeyInfo_10(SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB * value) { ___subjectPublicKeyInfo_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___subjectPublicKeyInfo_10), (void*)value); } inline static int32_t get_offset_of_issuerUniqueID_11() { return static_cast(offsetof(TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3, ___issuerUniqueID_11)); } inline DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * get_issuerUniqueID_11() const { return ___issuerUniqueID_11; } inline DerBitString_t305465793A47445626D3541AB8CEDE347D874524 ** get_address_of_issuerUniqueID_11() { return &___issuerUniqueID_11; } inline void set_issuerUniqueID_11(DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * value) { ___issuerUniqueID_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___issuerUniqueID_11), (void*)value); } inline static int32_t get_offset_of_subjectUniqueID_12() { return static_cast(offsetof(TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3, ___subjectUniqueID_12)); } inline DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * get_subjectUniqueID_12() const { return ___subjectUniqueID_12; } inline DerBitString_t305465793A47445626D3541AB8CEDE347D874524 ** get_address_of_subjectUniqueID_12() { return &___subjectUniqueID_12; } inline void set_subjectUniqueID_12(DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * value) { ___subjectUniqueID_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___subjectUniqueID_12), (void*)value); } inline static int32_t get_offset_of_extensions_13() { return static_cast(offsetof(TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3, ___extensions_13)); } inline X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F * get_extensions_13() const { return ___extensions_13; } inline X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F ** get_address_of_extensions_13() { return &___extensions_13; } inline void set_extensions_13(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F * value) { ___extensions_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___extensions_13), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.Time struct Time_tD684B1785E755395701D46F89A97609911CD6DDE : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Object BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.Time::time Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * ___time_2; public: inline static int32_t get_offset_of_time_2() { return static_cast(offsetof(Time_tD684B1785E755395701D46F89A97609911CD6DDE, ___time_2)); } inline Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * get_time_2() const { return ___time_2; } inline Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC ** get_address_of_time_2() { return &___time_2; } inline void set_time_2(Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * value) { ___time_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___time_2), (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.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; } }; // System.Void struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5 { public: union { struct { }; uint8_t Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5__padding[1]; }; public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Attribute struct X509Attribute_t81BD5B9B96782764FF136486088938EC85B61559 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeX509 BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Attribute::attr AttributeX509_t63A4C9CCBF6EE24C795D436E493F4C56327185EA * ___attr_2; public: inline static int32_t get_offset_of_attr_2() { return static_cast(offsetof(X509Attribute_t81BD5B9B96782764FF136486088938EC85B61559, ___attr_2)); } inline AttributeX509_t63A4C9CCBF6EE24C795D436E493F4C56327185EA * get_attr_2() const { return ___attr_2; } inline AttributeX509_t63A4C9CCBF6EE24C795D436E493F4C56327185EA ** get_address_of_attr_2() { return &___attr_2; } inline void set_attr_2(AttributeX509_t63A4C9CCBF6EE24C795D436E493F4C56327185EA * value) { ___attr_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___attr_2), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Certificate struct X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06 : public X509ExtensionBase_t91B691B9E834F516C9CE847F2B900B019A37CCE7 { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509CertificateStructure BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Certificate::c X509CertificateStructure_tD48237F907D1001604C98590613EFD6D720BEDE1 * ___c_0; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.BasicConstraints BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Certificate::basicConstraints BasicConstraints_t726ADB92F5098B7B4A50C44450B9A219DD48AA7C * ___basicConstraints_1; // System.Boolean[] BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Certificate::keyUsage BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* ___keyUsage_2; // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Certificate::hashValueSet bool ___hashValueSet_3; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Certificate::hashValue int32_t ___hashValue_4; public: inline static int32_t get_offset_of_c_0() { return static_cast(offsetof(X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06, ___c_0)); } inline X509CertificateStructure_tD48237F907D1001604C98590613EFD6D720BEDE1 * get_c_0() const { return ___c_0; } inline X509CertificateStructure_tD48237F907D1001604C98590613EFD6D720BEDE1 ** get_address_of_c_0() { return &___c_0; } inline void set_c_0(X509CertificateStructure_tD48237F907D1001604C98590613EFD6D720BEDE1 * value) { ___c_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_0), (void*)value); } inline static int32_t get_offset_of_basicConstraints_1() { return static_cast(offsetof(X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06, ___basicConstraints_1)); } inline BasicConstraints_t726ADB92F5098B7B4A50C44450B9A219DD48AA7C * get_basicConstraints_1() const { return ___basicConstraints_1; } inline BasicConstraints_t726ADB92F5098B7B4A50C44450B9A219DD48AA7C ** get_address_of_basicConstraints_1() { return &___basicConstraints_1; } inline void set_basicConstraints_1(BasicConstraints_t726ADB92F5098B7B4A50C44450B9A219DD48AA7C * value) { ___basicConstraints_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___basicConstraints_1), (void*)value); } inline static int32_t get_offset_of_keyUsage_2() { return static_cast(offsetof(X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06, ___keyUsage_2)); } inline BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* get_keyUsage_2() const { return ___keyUsage_2; } inline BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C** get_address_of_keyUsage_2() { return &___keyUsage_2; } inline void set_keyUsage_2(BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* value) { ___keyUsage_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___keyUsage_2), (void*)value); } inline static int32_t get_offset_of_hashValueSet_3() { return static_cast(offsetof(X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06, ___hashValueSet_3)); } inline bool get_hashValueSet_3() const { return ___hashValueSet_3; } inline bool* get_address_of_hashValueSet_3() { return &___hashValueSet_3; } inline void set_hashValueSet_3(bool value) { ___hashValueSet_3 = value; } inline static int32_t get_offset_of_hashValue_4() { return static_cast(offsetof(X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06, ___hashValue_4)); } inline int32_t get_hashValue_4() const { return ___hashValue_4; } inline int32_t* get_address_of_hashValue_4() { return &___hashValue_4; } inline void set_hashValue_4(int32_t value) { ___hashValue_4 = value; } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509CertificateStructure struct X509CertificateStructure_tD48237F907D1001604C98590613EFD6D720BEDE1 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateStructure BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509CertificateStructure::tbsCert TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3 * ___tbsCert_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509CertificateStructure::sigAlgID AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___sigAlgID_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509CertificateStructure::sig DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * ___sig_4; public: inline static int32_t get_offset_of_tbsCert_2() { return static_cast(offsetof(X509CertificateStructure_tD48237F907D1001604C98590613EFD6D720BEDE1, ___tbsCert_2)); } inline TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3 * get_tbsCert_2() const { return ___tbsCert_2; } inline TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3 ** get_address_of_tbsCert_2() { return &___tbsCert_2; } inline void set_tbsCert_2(TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3 * value) { ___tbsCert_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___tbsCert_2), (void*)value); } inline static int32_t get_offset_of_sigAlgID_3() { return static_cast(offsetof(X509CertificateStructure_tD48237F907D1001604C98590613EFD6D720BEDE1, ___sigAlgID_3)); } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * get_sigAlgID_3() const { return ___sigAlgID_3; } inline AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 ** get_address_of_sigAlgID_3() { return &___sigAlgID_3; } inline void set_sigAlgID_3(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * value) { ___sigAlgID_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___sigAlgID_3), (void*)value); } inline static int32_t get_offset_of_sig_4() { return static_cast(offsetof(X509CertificateStructure_tD48237F907D1001604C98590613EFD6D720BEDE1, ___sig_4)); } inline DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * get_sig_4() const { return ___sig_4; } inline DerBitString_t305465793A47445626D3541AB8CEDE347D874524 ** get_address_of_sig_4() { return &___sig_4; } inline void set_sig_4(DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * value) { ___sig_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___sig_4), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Crl struct X509Crl_t963C99FFAA5E9B3E8AE0BBB6F74D45D52C7BBB04 : public X509ExtensionBase_t91B691B9E834F516C9CE847F2B900B019A37CCE7 { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.CertificateList BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Crl::c CertificateList_tC023E9119F567E5589711845D4A07A59F9F26B34 * ___c_0; // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Crl::sigAlgName String_t* ___sigAlgName_1; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Crl::sigAlgParams ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___sigAlgParams_2; // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Crl::isIndirect bool ___isIndirect_3; public: inline static int32_t get_offset_of_c_0() { return static_cast(offsetof(X509Crl_t963C99FFAA5E9B3E8AE0BBB6F74D45D52C7BBB04, ___c_0)); } inline CertificateList_tC023E9119F567E5589711845D4A07A59F9F26B34 * get_c_0() const { return ___c_0; } inline CertificateList_tC023E9119F567E5589711845D4A07A59F9F26B34 ** get_address_of_c_0() { return &___c_0; } inline void set_c_0(CertificateList_tC023E9119F567E5589711845D4A07A59F9F26B34 * value) { ___c_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_0), (void*)value); } inline static int32_t get_offset_of_sigAlgName_1() { return static_cast(offsetof(X509Crl_t963C99FFAA5E9B3E8AE0BBB6F74D45D52C7BBB04, ___sigAlgName_1)); } inline String_t* get_sigAlgName_1() const { return ___sigAlgName_1; } inline String_t** get_address_of_sigAlgName_1() { return &___sigAlgName_1; } inline void set_sigAlgName_1(String_t* value) { ___sigAlgName_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___sigAlgName_1), (void*)value); } inline static int32_t get_offset_of_sigAlgParams_2() { return static_cast(offsetof(X509Crl_t963C99FFAA5E9B3E8AE0BBB6F74D45D52C7BBB04, ___sigAlgParams_2)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_sigAlgParams_2() const { return ___sigAlgParams_2; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_sigAlgParams_2() { return &___sigAlgParams_2; } inline void set_sigAlgParams_2(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___sigAlgParams_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___sigAlgParams_2), (void*)value); } inline static int32_t get_offset_of_isIndirect_3() { return static_cast(offsetof(X509Crl_t963C99FFAA5E9B3E8AE0BBB6F74D45D52C7BBB04, ___isIndirect_3)); } inline bool get_isIndirect_3() const { return ___isIndirect_3; } inline bool* get_address_of_isIndirect_3() { return &___isIndirect_3; } inline void set_isIndirect_3(bool value) { ___isIndirect_3 = value; } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509CrlEntry struct X509CrlEntry_tFFC049C5DB24BF9B445A5E04A1B87F6A25FC844C : public X509ExtensionBase_t91B691B9E834F516C9CE847F2B900B019A37CCE7 { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.CrlEntry BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509CrlEntry::c CrlEntry_t0100B5D8633443D3DAFC86741D49F1D2D0123227 * ___c_0; // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509CrlEntry::isIndirect bool ___isIndirect_1; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509CrlEntry::previousCertificateIssuer X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * ___previousCertificateIssuer_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509CrlEntry::certificateIssuer X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * ___certificateIssuer_3; public: inline static int32_t get_offset_of_c_0() { return static_cast(offsetof(X509CrlEntry_tFFC049C5DB24BF9B445A5E04A1B87F6A25FC844C, ___c_0)); } inline CrlEntry_t0100B5D8633443D3DAFC86741D49F1D2D0123227 * get_c_0() const { return ___c_0; } inline CrlEntry_t0100B5D8633443D3DAFC86741D49F1D2D0123227 ** get_address_of_c_0() { return &___c_0; } inline void set_c_0(CrlEntry_t0100B5D8633443D3DAFC86741D49F1D2D0123227 * value) { ___c_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_0), (void*)value); } inline static int32_t get_offset_of_isIndirect_1() { return static_cast(offsetof(X509CrlEntry_tFFC049C5DB24BF9B445A5E04A1B87F6A25FC844C, ___isIndirect_1)); } inline bool get_isIndirect_1() const { return ___isIndirect_1; } inline bool* get_address_of_isIndirect_1() { return &___isIndirect_1; } inline void set_isIndirect_1(bool value) { ___isIndirect_1 = value; } inline static int32_t get_offset_of_previousCertificateIssuer_2() { return static_cast(offsetof(X509CrlEntry_tFFC049C5DB24BF9B445A5E04A1B87F6A25FC844C, ___previousCertificateIssuer_2)); } inline X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * get_previousCertificateIssuer_2() const { return ___previousCertificateIssuer_2; } inline X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 ** get_address_of_previousCertificateIssuer_2() { return &___previousCertificateIssuer_2; } inline void set_previousCertificateIssuer_2(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * value) { ___previousCertificateIssuer_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___previousCertificateIssuer_2), (void*)value); } inline static int32_t get_offset_of_certificateIssuer_3() { return static_cast(offsetof(X509CrlEntry_tFFC049C5DB24BF9B445A5E04A1B87F6A25FC844C, ___certificateIssuer_3)); } inline X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * get_certificateIssuer_3() const { return ___certificateIssuer_3; } inline X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 ** get_address_of_certificateIssuer_3() { return &___certificateIssuer_3; } inline void set_certificateIssuer_3(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * value) { ___certificateIssuer_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___certificateIssuer_3), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions struct X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // System.Collections.IDictionary BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::extensions RuntimeObject* ___extensions_34; // System.Collections.IList BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::ordering RuntimeObject* ___ordering_35; public: inline static int32_t get_offset_of_extensions_34() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F, ___extensions_34)); } inline RuntimeObject* get_extensions_34() const { return ___extensions_34; } inline RuntimeObject** get_address_of_extensions_34() { return &___extensions_34; } inline void set_extensions_34(RuntimeObject* value) { ___extensions_34 = value; Il2CppCodeGenWriteBarrier((void**)(&___extensions_34), (void*)value); } inline static int32_t get_offset_of_ordering_35() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F, ___ordering_35)); } inline RuntimeObject* get_ordering_35() const { return ___ordering_35; } inline RuntimeObject** get_address_of_ordering_35() { return &___ordering_35; } inline void set_ordering_35(RuntimeObject* value) { ___ordering_35 = value; Il2CppCodeGenWriteBarrier((void**)(&___ordering_35), (void*)value); } }; struct X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::SubjectDirectoryAttributes DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___SubjectDirectoryAttributes_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::SubjectKeyIdentifier DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___SubjectKeyIdentifier_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::KeyUsage DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___KeyUsage_4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::PrivateKeyUsagePeriod DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___PrivateKeyUsagePeriod_5; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::SubjectAlternativeName DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___SubjectAlternativeName_6; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::IssuerAlternativeName DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IssuerAlternativeName_7; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::BasicConstraints DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___BasicConstraints_8; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::CrlNumber DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___CrlNumber_9; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::ReasonCode DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___ReasonCode_10; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::InstructionCode DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___InstructionCode_11; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::InvalidityDate DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___InvalidityDate_12; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::DeltaCrlIndicator DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DeltaCrlIndicator_13; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::IssuingDistributionPoint DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___IssuingDistributionPoint_14; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::CertificateIssuer DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___CertificateIssuer_15; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::NameConstraints DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___NameConstraints_16; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::CrlDistributionPoints DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___CrlDistributionPoints_17; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::CertificatePolicies DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___CertificatePolicies_18; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::PolicyMappings DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___PolicyMappings_19; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::AuthorityKeyIdentifier DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___AuthorityKeyIdentifier_20; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::PolicyConstraints DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___PolicyConstraints_21; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::ExtendedKeyUsage DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___ExtendedKeyUsage_22; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::FreshestCrl DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___FreshestCrl_23; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::InhibitAnyPolicy DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___InhibitAnyPolicy_24; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::AuthorityInfoAccess DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___AuthorityInfoAccess_25; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::SubjectInfoAccess DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___SubjectInfoAccess_26; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::LogoType DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___LogoType_27; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::BiometricInfo DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___BiometricInfo_28; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::QCStatements DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___QCStatements_29; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::AuditIdentity DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___AuditIdentity_30; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::NoRevAvail DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___NoRevAvail_31; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::TargetInformation DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___TargetInformation_32; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions::ExpiredCertsOnCrl DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___ExpiredCertsOnCrl_33; public: inline static int32_t get_offset_of_SubjectDirectoryAttributes_2() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___SubjectDirectoryAttributes_2)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_SubjectDirectoryAttributes_2() const { return ___SubjectDirectoryAttributes_2; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_SubjectDirectoryAttributes_2() { return &___SubjectDirectoryAttributes_2; } inline void set_SubjectDirectoryAttributes_2(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___SubjectDirectoryAttributes_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___SubjectDirectoryAttributes_2), (void*)value); } inline static int32_t get_offset_of_SubjectKeyIdentifier_3() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___SubjectKeyIdentifier_3)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_SubjectKeyIdentifier_3() const { return ___SubjectKeyIdentifier_3; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_SubjectKeyIdentifier_3() { return &___SubjectKeyIdentifier_3; } inline void set_SubjectKeyIdentifier_3(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___SubjectKeyIdentifier_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___SubjectKeyIdentifier_3), (void*)value); } inline static int32_t get_offset_of_KeyUsage_4() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___KeyUsage_4)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_KeyUsage_4() const { return ___KeyUsage_4; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_KeyUsage_4() { return &___KeyUsage_4; } inline void set_KeyUsage_4(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___KeyUsage_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___KeyUsage_4), (void*)value); } inline static int32_t get_offset_of_PrivateKeyUsagePeriod_5() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___PrivateKeyUsagePeriod_5)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_PrivateKeyUsagePeriod_5() const { return ___PrivateKeyUsagePeriod_5; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_PrivateKeyUsagePeriod_5() { return &___PrivateKeyUsagePeriod_5; } inline void set_PrivateKeyUsagePeriod_5(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___PrivateKeyUsagePeriod_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___PrivateKeyUsagePeriod_5), (void*)value); } inline static int32_t get_offset_of_SubjectAlternativeName_6() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___SubjectAlternativeName_6)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_SubjectAlternativeName_6() const { return ___SubjectAlternativeName_6; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_SubjectAlternativeName_6() { return &___SubjectAlternativeName_6; } inline void set_SubjectAlternativeName_6(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___SubjectAlternativeName_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___SubjectAlternativeName_6), (void*)value); } inline static int32_t get_offset_of_IssuerAlternativeName_7() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___IssuerAlternativeName_7)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IssuerAlternativeName_7() const { return ___IssuerAlternativeName_7; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IssuerAlternativeName_7() { return &___IssuerAlternativeName_7; } inline void set_IssuerAlternativeName_7(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IssuerAlternativeName_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___IssuerAlternativeName_7), (void*)value); } inline static int32_t get_offset_of_BasicConstraints_8() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___BasicConstraints_8)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_BasicConstraints_8() const { return ___BasicConstraints_8; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_BasicConstraints_8() { return &___BasicConstraints_8; } inline void set_BasicConstraints_8(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___BasicConstraints_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___BasicConstraints_8), (void*)value); } inline static int32_t get_offset_of_CrlNumber_9() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___CrlNumber_9)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_CrlNumber_9() const { return ___CrlNumber_9; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_CrlNumber_9() { return &___CrlNumber_9; } inline void set_CrlNumber_9(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___CrlNumber_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___CrlNumber_9), (void*)value); } inline static int32_t get_offset_of_ReasonCode_10() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___ReasonCode_10)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_ReasonCode_10() const { return ___ReasonCode_10; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_ReasonCode_10() { return &___ReasonCode_10; } inline void set_ReasonCode_10(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___ReasonCode_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___ReasonCode_10), (void*)value); } inline static int32_t get_offset_of_InstructionCode_11() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___InstructionCode_11)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_InstructionCode_11() const { return ___InstructionCode_11; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_InstructionCode_11() { return &___InstructionCode_11; } inline void set_InstructionCode_11(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___InstructionCode_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___InstructionCode_11), (void*)value); } inline static int32_t get_offset_of_InvalidityDate_12() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___InvalidityDate_12)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_InvalidityDate_12() const { return ___InvalidityDate_12; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_InvalidityDate_12() { return &___InvalidityDate_12; } inline void set_InvalidityDate_12(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___InvalidityDate_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___InvalidityDate_12), (void*)value); } inline static int32_t get_offset_of_DeltaCrlIndicator_13() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___DeltaCrlIndicator_13)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DeltaCrlIndicator_13() const { return ___DeltaCrlIndicator_13; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DeltaCrlIndicator_13() { return &___DeltaCrlIndicator_13; } inline void set_DeltaCrlIndicator_13(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DeltaCrlIndicator_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___DeltaCrlIndicator_13), (void*)value); } inline static int32_t get_offset_of_IssuingDistributionPoint_14() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___IssuingDistributionPoint_14)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_IssuingDistributionPoint_14() const { return ___IssuingDistributionPoint_14; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_IssuingDistributionPoint_14() { return &___IssuingDistributionPoint_14; } inline void set_IssuingDistributionPoint_14(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___IssuingDistributionPoint_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___IssuingDistributionPoint_14), (void*)value); } inline static int32_t get_offset_of_CertificateIssuer_15() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___CertificateIssuer_15)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_CertificateIssuer_15() const { return ___CertificateIssuer_15; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_CertificateIssuer_15() { return &___CertificateIssuer_15; } inline void set_CertificateIssuer_15(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___CertificateIssuer_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___CertificateIssuer_15), (void*)value); } inline static int32_t get_offset_of_NameConstraints_16() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___NameConstraints_16)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_NameConstraints_16() const { return ___NameConstraints_16; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_NameConstraints_16() { return &___NameConstraints_16; } inline void set_NameConstraints_16(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___NameConstraints_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___NameConstraints_16), (void*)value); } inline static int32_t get_offset_of_CrlDistributionPoints_17() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___CrlDistributionPoints_17)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_CrlDistributionPoints_17() const { return ___CrlDistributionPoints_17; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_CrlDistributionPoints_17() { return &___CrlDistributionPoints_17; } inline void set_CrlDistributionPoints_17(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___CrlDistributionPoints_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___CrlDistributionPoints_17), (void*)value); } inline static int32_t get_offset_of_CertificatePolicies_18() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___CertificatePolicies_18)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_CertificatePolicies_18() const { return ___CertificatePolicies_18; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_CertificatePolicies_18() { return &___CertificatePolicies_18; } inline void set_CertificatePolicies_18(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___CertificatePolicies_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___CertificatePolicies_18), (void*)value); } inline static int32_t get_offset_of_PolicyMappings_19() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___PolicyMappings_19)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_PolicyMappings_19() const { return ___PolicyMappings_19; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_PolicyMappings_19() { return &___PolicyMappings_19; } inline void set_PolicyMappings_19(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___PolicyMappings_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___PolicyMappings_19), (void*)value); } inline static int32_t get_offset_of_AuthorityKeyIdentifier_20() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___AuthorityKeyIdentifier_20)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_AuthorityKeyIdentifier_20() const { return ___AuthorityKeyIdentifier_20; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_AuthorityKeyIdentifier_20() { return &___AuthorityKeyIdentifier_20; } inline void set_AuthorityKeyIdentifier_20(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___AuthorityKeyIdentifier_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___AuthorityKeyIdentifier_20), (void*)value); } inline static int32_t get_offset_of_PolicyConstraints_21() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___PolicyConstraints_21)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_PolicyConstraints_21() const { return ___PolicyConstraints_21; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_PolicyConstraints_21() { return &___PolicyConstraints_21; } inline void set_PolicyConstraints_21(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___PolicyConstraints_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___PolicyConstraints_21), (void*)value); } inline static int32_t get_offset_of_ExtendedKeyUsage_22() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___ExtendedKeyUsage_22)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_ExtendedKeyUsage_22() const { return ___ExtendedKeyUsage_22; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_ExtendedKeyUsage_22() { return &___ExtendedKeyUsage_22; } inline void set_ExtendedKeyUsage_22(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___ExtendedKeyUsage_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___ExtendedKeyUsage_22), (void*)value); } inline static int32_t get_offset_of_FreshestCrl_23() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___FreshestCrl_23)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_FreshestCrl_23() const { return ___FreshestCrl_23; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_FreshestCrl_23() { return &___FreshestCrl_23; } inline void set_FreshestCrl_23(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___FreshestCrl_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___FreshestCrl_23), (void*)value); } inline static int32_t get_offset_of_InhibitAnyPolicy_24() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___InhibitAnyPolicy_24)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_InhibitAnyPolicy_24() const { return ___InhibitAnyPolicy_24; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_InhibitAnyPolicy_24() { return &___InhibitAnyPolicy_24; } inline void set_InhibitAnyPolicy_24(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___InhibitAnyPolicy_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___InhibitAnyPolicy_24), (void*)value); } inline static int32_t get_offset_of_AuthorityInfoAccess_25() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___AuthorityInfoAccess_25)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_AuthorityInfoAccess_25() const { return ___AuthorityInfoAccess_25; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_AuthorityInfoAccess_25() { return &___AuthorityInfoAccess_25; } inline void set_AuthorityInfoAccess_25(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___AuthorityInfoAccess_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___AuthorityInfoAccess_25), (void*)value); } inline static int32_t get_offset_of_SubjectInfoAccess_26() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___SubjectInfoAccess_26)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_SubjectInfoAccess_26() const { return ___SubjectInfoAccess_26; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_SubjectInfoAccess_26() { return &___SubjectInfoAccess_26; } inline void set_SubjectInfoAccess_26(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___SubjectInfoAccess_26 = value; Il2CppCodeGenWriteBarrier((void**)(&___SubjectInfoAccess_26), (void*)value); } inline static int32_t get_offset_of_LogoType_27() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___LogoType_27)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_LogoType_27() const { return ___LogoType_27; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_LogoType_27() { return &___LogoType_27; } inline void set_LogoType_27(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___LogoType_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___LogoType_27), (void*)value); } inline static int32_t get_offset_of_BiometricInfo_28() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___BiometricInfo_28)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_BiometricInfo_28() const { return ___BiometricInfo_28; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_BiometricInfo_28() { return &___BiometricInfo_28; } inline void set_BiometricInfo_28(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___BiometricInfo_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___BiometricInfo_28), (void*)value); } inline static int32_t get_offset_of_QCStatements_29() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___QCStatements_29)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_QCStatements_29() const { return ___QCStatements_29; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_QCStatements_29() { return &___QCStatements_29; } inline void set_QCStatements_29(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___QCStatements_29 = value; Il2CppCodeGenWriteBarrier((void**)(&___QCStatements_29), (void*)value); } inline static int32_t get_offset_of_AuditIdentity_30() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___AuditIdentity_30)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_AuditIdentity_30() const { return ___AuditIdentity_30; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_AuditIdentity_30() { return &___AuditIdentity_30; } inline void set_AuditIdentity_30(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___AuditIdentity_30 = value; Il2CppCodeGenWriteBarrier((void**)(&___AuditIdentity_30), (void*)value); } inline static int32_t get_offset_of_NoRevAvail_31() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___NoRevAvail_31)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_NoRevAvail_31() const { return ___NoRevAvail_31; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_NoRevAvail_31() { return &___NoRevAvail_31; } inline void set_NoRevAvail_31(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___NoRevAvail_31 = value; Il2CppCodeGenWriteBarrier((void**)(&___NoRevAvail_31), (void*)value); } inline static int32_t get_offset_of_TargetInformation_32() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___TargetInformation_32)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_TargetInformation_32() const { return ___TargetInformation_32; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_TargetInformation_32() { return &___TargetInformation_32; } inline void set_TargetInformation_32(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___TargetInformation_32 = value; Il2CppCodeGenWriteBarrier((void**)(&___TargetInformation_32), (void*)value); } inline static int32_t get_offset_of_ExpiredCertsOnCrl_33() { return static_cast(offsetof(X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F_StaticFields, ___ExpiredCertsOnCrl_33)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_ExpiredCertsOnCrl_33() const { return ___ExpiredCertsOnCrl_33; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_ExpiredCertsOnCrl_33() { return &___ExpiredCertsOnCrl_33; } inline void set_ExpiredCertsOnCrl_33(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___ExpiredCertsOnCrl_33 = value; Il2CppCodeGenWriteBarrier((void**)(&___ExpiredCertsOnCrl_33), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name struct X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // System.Collections.IList BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::ordering RuntimeObject* ___ordering_42; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509NameEntryConverter BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::converter X509NameEntryConverter_tB7E7BD9119CAFF57159A4641EEF350B6A5111351 * ___converter_43; // System.Collections.IList BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::values RuntimeObject* ___values_44; // System.Collections.IList BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::added RuntimeObject* ___added_45; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::seq Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * ___seq_46; public: inline static int32_t get_offset_of_ordering_42() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630, ___ordering_42)); } inline RuntimeObject* get_ordering_42() const { return ___ordering_42; } inline RuntimeObject** get_address_of_ordering_42() { return &___ordering_42; } inline void set_ordering_42(RuntimeObject* value) { ___ordering_42 = value; Il2CppCodeGenWriteBarrier((void**)(&___ordering_42), (void*)value); } inline static int32_t get_offset_of_converter_43() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630, ___converter_43)); } inline X509NameEntryConverter_tB7E7BD9119CAFF57159A4641EEF350B6A5111351 * get_converter_43() const { return ___converter_43; } inline X509NameEntryConverter_tB7E7BD9119CAFF57159A4641EEF350B6A5111351 ** get_address_of_converter_43() { return &___converter_43; } inline void set_converter_43(X509NameEntryConverter_tB7E7BD9119CAFF57159A4641EEF350B6A5111351 * value) { ___converter_43 = value; Il2CppCodeGenWriteBarrier((void**)(&___converter_43), (void*)value); } inline static int32_t get_offset_of_values_44() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630, ___values_44)); } inline RuntimeObject* get_values_44() const { return ___values_44; } inline RuntimeObject** get_address_of_values_44() { return &___values_44; } inline void set_values_44(RuntimeObject* value) { ___values_44 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_44), (void*)value); } inline static int32_t get_offset_of_added_45() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630, ___added_45)); } inline RuntimeObject* get_added_45() const { return ___added_45; } inline RuntimeObject** get_address_of_added_45() { return &___added_45; } inline void set_added_45(RuntimeObject* value) { ___added_45 = value; Il2CppCodeGenWriteBarrier((void**)(&___added_45), (void*)value); } inline static int32_t get_offset_of_seq_46() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630, ___seq_46)); } inline Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * get_seq_46() const { return ___seq_46; } inline Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 ** get_address_of_seq_46() { return &___seq_46; } inline void set_seq_46(Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * value) { ___seq_46 = value; Il2CppCodeGenWriteBarrier((void**)(&___seq_46), (void*)value); } }; struct X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::C DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___C_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::O DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___O_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::OU DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___OU_4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::T DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___T_5; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::CN DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___CN_6; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::Street DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Street_7; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::SerialNumber DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___SerialNumber_8; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::L DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___L_9; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::ST DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___ST_10; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::Surname DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Surname_11; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::GivenName DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___GivenName_12; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::Initials DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Initials_13; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::Generation DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Generation_14; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::UniqueIdentifier DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___UniqueIdentifier_15; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::BusinessCategory DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___BusinessCategory_16; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::PostalCode DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___PostalCode_17; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::DnQualifier DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DnQualifier_18; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::Pseudonym DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Pseudonym_19; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::DateOfBirth DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DateOfBirth_20; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::PlaceOfBirth DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___PlaceOfBirth_21; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::Gender DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Gender_22; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::CountryOfCitizenship DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___CountryOfCitizenship_23; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::CountryOfResidence DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___CountryOfResidence_24; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::NameAtBirth DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___NameAtBirth_25; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::PostalAddress DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___PostalAddress_26; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::DmdName DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DmdName_27; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::TelephoneNumber DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___TelephoneNumber_28; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::OrganizationIdentifier DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___OrganizationIdentifier_29; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::Name DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___Name_30; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::EmailAddress DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___EmailAddress_31; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::UnstructuredName DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___UnstructuredName_32; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::UnstructuredAddress DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___UnstructuredAddress_33; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::E DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___E_34; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::DC DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___DC_35; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::UID DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___UID_36; // System.Boolean[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::defaultReverse BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* ___defaultReverse_37; // System.Collections.Hashtable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::DefaultSymbols Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___DefaultSymbols_38; // System.Collections.Hashtable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::RFC2253Symbols Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___RFC2253Symbols_39; // System.Collections.Hashtable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::RFC1779Symbols Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___RFC1779Symbols_40; // System.Collections.Hashtable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name::DefaultLookup Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___DefaultLookup_41; public: inline static int32_t get_offset_of_C_2() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___C_2)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_C_2() const { return ___C_2; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_C_2() { return &___C_2; } inline void set_C_2(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___C_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___C_2), (void*)value); } inline static int32_t get_offset_of_O_3() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___O_3)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_O_3() const { return ___O_3; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_O_3() { return &___O_3; } inline void set_O_3(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___O_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___O_3), (void*)value); } inline static int32_t get_offset_of_OU_4() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___OU_4)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_OU_4() const { return ___OU_4; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_OU_4() { return &___OU_4; } inline void set_OU_4(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___OU_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___OU_4), (void*)value); } inline static int32_t get_offset_of_T_5() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___T_5)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_T_5() const { return ___T_5; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_T_5() { return &___T_5; } inline void set_T_5(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___T_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___T_5), (void*)value); } inline static int32_t get_offset_of_CN_6() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___CN_6)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_CN_6() const { return ___CN_6; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_CN_6() { return &___CN_6; } inline void set_CN_6(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___CN_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___CN_6), (void*)value); } inline static int32_t get_offset_of_Street_7() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___Street_7)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Street_7() const { return ___Street_7; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Street_7() { return &___Street_7; } inline void set_Street_7(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Street_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___Street_7), (void*)value); } inline static int32_t get_offset_of_SerialNumber_8() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___SerialNumber_8)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_SerialNumber_8() const { return ___SerialNumber_8; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_SerialNumber_8() { return &___SerialNumber_8; } inline void set_SerialNumber_8(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___SerialNumber_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___SerialNumber_8), (void*)value); } inline static int32_t get_offset_of_L_9() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___L_9)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_L_9() const { return ___L_9; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_L_9() { return &___L_9; } inline void set_L_9(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___L_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___L_9), (void*)value); } inline static int32_t get_offset_of_ST_10() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___ST_10)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_ST_10() const { return ___ST_10; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_ST_10() { return &___ST_10; } inline void set_ST_10(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___ST_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___ST_10), (void*)value); } inline static int32_t get_offset_of_Surname_11() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___Surname_11)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Surname_11() const { return ___Surname_11; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Surname_11() { return &___Surname_11; } inline void set_Surname_11(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Surname_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___Surname_11), (void*)value); } inline static int32_t get_offset_of_GivenName_12() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___GivenName_12)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_GivenName_12() const { return ___GivenName_12; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_GivenName_12() { return &___GivenName_12; } inline void set_GivenName_12(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___GivenName_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___GivenName_12), (void*)value); } inline static int32_t get_offset_of_Initials_13() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___Initials_13)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Initials_13() const { return ___Initials_13; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Initials_13() { return &___Initials_13; } inline void set_Initials_13(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Initials_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___Initials_13), (void*)value); } inline static int32_t get_offset_of_Generation_14() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___Generation_14)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Generation_14() const { return ___Generation_14; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Generation_14() { return &___Generation_14; } inline void set_Generation_14(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Generation_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___Generation_14), (void*)value); } inline static int32_t get_offset_of_UniqueIdentifier_15() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___UniqueIdentifier_15)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_UniqueIdentifier_15() const { return ___UniqueIdentifier_15; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_UniqueIdentifier_15() { return &___UniqueIdentifier_15; } inline void set_UniqueIdentifier_15(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___UniqueIdentifier_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___UniqueIdentifier_15), (void*)value); } inline static int32_t get_offset_of_BusinessCategory_16() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___BusinessCategory_16)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_BusinessCategory_16() const { return ___BusinessCategory_16; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_BusinessCategory_16() { return &___BusinessCategory_16; } inline void set_BusinessCategory_16(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___BusinessCategory_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___BusinessCategory_16), (void*)value); } inline static int32_t get_offset_of_PostalCode_17() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___PostalCode_17)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_PostalCode_17() const { return ___PostalCode_17; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_PostalCode_17() { return &___PostalCode_17; } inline void set_PostalCode_17(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___PostalCode_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___PostalCode_17), (void*)value); } inline static int32_t get_offset_of_DnQualifier_18() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___DnQualifier_18)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DnQualifier_18() const { return ___DnQualifier_18; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DnQualifier_18() { return &___DnQualifier_18; } inline void set_DnQualifier_18(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DnQualifier_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___DnQualifier_18), (void*)value); } inline static int32_t get_offset_of_Pseudonym_19() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___Pseudonym_19)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Pseudonym_19() const { return ___Pseudonym_19; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Pseudonym_19() { return &___Pseudonym_19; } inline void set_Pseudonym_19(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Pseudonym_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___Pseudonym_19), (void*)value); } inline static int32_t get_offset_of_DateOfBirth_20() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___DateOfBirth_20)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DateOfBirth_20() const { return ___DateOfBirth_20; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DateOfBirth_20() { return &___DateOfBirth_20; } inline void set_DateOfBirth_20(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DateOfBirth_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___DateOfBirth_20), (void*)value); } inline static int32_t get_offset_of_PlaceOfBirth_21() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___PlaceOfBirth_21)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_PlaceOfBirth_21() const { return ___PlaceOfBirth_21; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_PlaceOfBirth_21() { return &___PlaceOfBirth_21; } inline void set_PlaceOfBirth_21(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___PlaceOfBirth_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___PlaceOfBirth_21), (void*)value); } inline static int32_t get_offset_of_Gender_22() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___Gender_22)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Gender_22() const { return ___Gender_22; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Gender_22() { return &___Gender_22; } inline void set_Gender_22(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Gender_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___Gender_22), (void*)value); } inline static int32_t get_offset_of_CountryOfCitizenship_23() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___CountryOfCitizenship_23)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_CountryOfCitizenship_23() const { return ___CountryOfCitizenship_23; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_CountryOfCitizenship_23() { return &___CountryOfCitizenship_23; } inline void set_CountryOfCitizenship_23(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___CountryOfCitizenship_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___CountryOfCitizenship_23), (void*)value); } inline static int32_t get_offset_of_CountryOfResidence_24() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___CountryOfResidence_24)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_CountryOfResidence_24() const { return ___CountryOfResidence_24; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_CountryOfResidence_24() { return &___CountryOfResidence_24; } inline void set_CountryOfResidence_24(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___CountryOfResidence_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___CountryOfResidence_24), (void*)value); } inline static int32_t get_offset_of_NameAtBirth_25() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___NameAtBirth_25)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_NameAtBirth_25() const { return ___NameAtBirth_25; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_NameAtBirth_25() { return &___NameAtBirth_25; } inline void set_NameAtBirth_25(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___NameAtBirth_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___NameAtBirth_25), (void*)value); } inline static int32_t get_offset_of_PostalAddress_26() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___PostalAddress_26)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_PostalAddress_26() const { return ___PostalAddress_26; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_PostalAddress_26() { return &___PostalAddress_26; } inline void set_PostalAddress_26(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___PostalAddress_26 = value; Il2CppCodeGenWriteBarrier((void**)(&___PostalAddress_26), (void*)value); } inline static int32_t get_offset_of_DmdName_27() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___DmdName_27)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DmdName_27() const { return ___DmdName_27; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DmdName_27() { return &___DmdName_27; } inline void set_DmdName_27(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DmdName_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___DmdName_27), (void*)value); } inline static int32_t get_offset_of_TelephoneNumber_28() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___TelephoneNumber_28)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_TelephoneNumber_28() const { return ___TelephoneNumber_28; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_TelephoneNumber_28() { return &___TelephoneNumber_28; } inline void set_TelephoneNumber_28(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___TelephoneNumber_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___TelephoneNumber_28), (void*)value); } inline static int32_t get_offset_of_OrganizationIdentifier_29() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___OrganizationIdentifier_29)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_OrganizationIdentifier_29() const { return ___OrganizationIdentifier_29; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_OrganizationIdentifier_29() { return &___OrganizationIdentifier_29; } inline void set_OrganizationIdentifier_29(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___OrganizationIdentifier_29 = value; Il2CppCodeGenWriteBarrier((void**)(&___OrganizationIdentifier_29), (void*)value); } inline static int32_t get_offset_of_Name_30() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___Name_30)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_Name_30() const { return ___Name_30; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_Name_30() { return &___Name_30; } inline void set_Name_30(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___Name_30 = value; Il2CppCodeGenWriteBarrier((void**)(&___Name_30), (void*)value); } inline static int32_t get_offset_of_EmailAddress_31() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___EmailAddress_31)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_EmailAddress_31() const { return ___EmailAddress_31; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_EmailAddress_31() { return &___EmailAddress_31; } inline void set_EmailAddress_31(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___EmailAddress_31 = value; Il2CppCodeGenWriteBarrier((void**)(&___EmailAddress_31), (void*)value); } inline static int32_t get_offset_of_UnstructuredName_32() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___UnstructuredName_32)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_UnstructuredName_32() const { return ___UnstructuredName_32; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_UnstructuredName_32() { return &___UnstructuredName_32; } inline void set_UnstructuredName_32(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___UnstructuredName_32 = value; Il2CppCodeGenWriteBarrier((void**)(&___UnstructuredName_32), (void*)value); } inline static int32_t get_offset_of_UnstructuredAddress_33() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___UnstructuredAddress_33)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_UnstructuredAddress_33() const { return ___UnstructuredAddress_33; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_UnstructuredAddress_33() { return &___UnstructuredAddress_33; } inline void set_UnstructuredAddress_33(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___UnstructuredAddress_33 = value; Il2CppCodeGenWriteBarrier((void**)(&___UnstructuredAddress_33), (void*)value); } inline static int32_t get_offset_of_E_34() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___E_34)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_E_34() const { return ___E_34; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_E_34() { return &___E_34; } inline void set_E_34(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___E_34 = value; Il2CppCodeGenWriteBarrier((void**)(&___E_34), (void*)value); } inline static int32_t get_offset_of_DC_35() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___DC_35)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_DC_35() const { return ___DC_35; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_DC_35() { return &___DC_35; } inline void set_DC_35(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___DC_35 = value; Il2CppCodeGenWriteBarrier((void**)(&___DC_35), (void*)value); } inline static int32_t get_offset_of_UID_36() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___UID_36)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_UID_36() const { return ___UID_36; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_UID_36() { return &___UID_36; } inline void set_UID_36(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___UID_36 = value; Il2CppCodeGenWriteBarrier((void**)(&___UID_36), (void*)value); } inline static int32_t get_offset_of_defaultReverse_37() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___defaultReverse_37)); } inline BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* get_defaultReverse_37() const { return ___defaultReverse_37; } inline BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C** get_address_of_defaultReverse_37() { return &___defaultReverse_37; } inline void set_defaultReverse_37(BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* value) { ___defaultReverse_37 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultReverse_37), (void*)value); } inline static int32_t get_offset_of_DefaultSymbols_38() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___DefaultSymbols_38)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_DefaultSymbols_38() const { return ___DefaultSymbols_38; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_DefaultSymbols_38() { return &___DefaultSymbols_38; } inline void set_DefaultSymbols_38(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ___DefaultSymbols_38 = value; Il2CppCodeGenWriteBarrier((void**)(&___DefaultSymbols_38), (void*)value); } inline static int32_t get_offset_of_RFC2253Symbols_39() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___RFC2253Symbols_39)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_RFC2253Symbols_39() const { return ___RFC2253Symbols_39; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_RFC2253Symbols_39() { return &___RFC2253Symbols_39; } inline void set_RFC2253Symbols_39(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ___RFC2253Symbols_39 = value; Il2CppCodeGenWriteBarrier((void**)(&___RFC2253Symbols_39), (void*)value); } inline static int32_t get_offset_of_RFC1779Symbols_40() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___RFC1779Symbols_40)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_RFC1779Symbols_40() const { return ___RFC1779Symbols_40; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_RFC1779Symbols_40() { return &___RFC1779Symbols_40; } inline void set_RFC1779Symbols_40(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ___RFC1779Symbols_40 = value; Il2CppCodeGenWriteBarrier((void**)(&___RFC1779Symbols_40), (void*)value); } inline static int32_t get_offset_of_DefaultLookup_41() { return static_cast(offsetof(X509Name_t201376CBB74D033CD213122565CA7469C5FC8630_StaticFields, ___DefaultLookup_41)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_DefaultLookup_41() const { return ___DefaultLookup_41; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_DefaultLookup_41() { return &___DefaultLookup_41; } inline void set_DefaultLookup_41(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ___DefaultLookup_41 = value; Il2CppCodeGenWriteBarrier((void**)(&___DefaultLookup_41), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962Parameters struct X962Parameters_t4E41A769BDB21B21ECE217D5D99FA9DBBFFAE7E4 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Object BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962Parameters::_params Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * ____params_2; public: inline static int32_t get_offset_of__params_2() { return static_cast(offsetof(X962Parameters_t4E41A769BDB21B21ECE217D5D99FA9DBBFFAE7E4, ____params_2)); } inline Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * get__params_2() const { return ____params_2; } inline Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC ** get_address_of__params_2() { return &____params_2; } inline void set__params_2(Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * value) { ____params_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____params_2), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9Curve struct X9Curve_tE05684E0E4B3A1C4AC7B6DD81F6D6D20973C3AC9 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECCurve BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9Curve::curve ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * ___curve_2; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9Curve::seed ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___seed_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9Curve::fieldIdentifier DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___fieldIdentifier_4; public: inline static int32_t get_offset_of_curve_2() { return static_cast(offsetof(X9Curve_tE05684E0E4B3A1C4AC7B6DD81F6D6D20973C3AC9, ___curve_2)); } inline ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * get_curve_2() const { return ___curve_2; } inline ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 ** get_address_of_curve_2() { return &___curve_2; } inline void set_curve_2(ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * value) { ___curve_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___curve_2), (void*)value); } inline static int32_t get_offset_of_seed_3() { return static_cast(offsetof(X9Curve_tE05684E0E4B3A1C4AC7B6DD81F6D6D20973C3AC9, ___seed_3)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_seed_3() const { return ___seed_3; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_seed_3() { return &___seed_3; } inline void set_seed_3(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___seed_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___seed_3), (void*)value); } inline static int32_t get_offset_of_fieldIdentifier_4() { return static_cast(offsetof(X9Curve_tE05684E0E4B3A1C4AC7B6DD81F6D6D20973C3AC9, ___fieldIdentifier_4)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_fieldIdentifier_4() const { return ___fieldIdentifier_4; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_fieldIdentifier_4() { return &___fieldIdentifier_4; } inline void set_fieldIdentifier_4(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___fieldIdentifier_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___fieldIdentifier_4), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParameters struct X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9FieldID BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParameters::fieldID X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8 * ___fieldID_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECCurve BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParameters::curve ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * ___curve_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECPoint BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParameters::g X9ECPoint_t06D47967D73B459616A01610E0E5D88AB08BDF71 * ___g_4; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParameters::n BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___n_5; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParameters::h BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___h_6; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParameters::seed ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___seed_7; public: inline static int32_t get_offset_of_fieldID_2() { return static_cast(offsetof(X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639, ___fieldID_2)); } inline X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8 * get_fieldID_2() const { return ___fieldID_2; } inline X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8 ** get_address_of_fieldID_2() { return &___fieldID_2; } inline void set_fieldID_2(X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8 * value) { ___fieldID_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___fieldID_2), (void*)value); } inline static int32_t get_offset_of_curve_3() { return static_cast(offsetof(X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639, ___curve_3)); } inline ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * get_curve_3() const { return ___curve_3; } inline ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 ** get_address_of_curve_3() { return &___curve_3; } inline void set_curve_3(ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * value) { ___curve_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___curve_3), (void*)value); } inline static int32_t get_offset_of_g_4() { return static_cast(offsetof(X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639, ___g_4)); } inline X9ECPoint_t06D47967D73B459616A01610E0E5D88AB08BDF71 * get_g_4() const { return ___g_4; } inline X9ECPoint_t06D47967D73B459616A01610E0E5D88AB08BDF71 ** get_address_of_g_4() { return &___g_4; } inline void set_g_4(X9ECPoint_t06D47967D73B459616A01610E0E5D88AB08BDF71 * value) { ___g_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___g_4), (void*)value); } inline static int32_t get_offset_of_n_5() { return static_cast(offsetof(X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639, ___n_5)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_n_5() const { return ___n_5; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_n_5() { return &___n_5; } inline void set_n_5(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___n_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___n_5), (void*)value); } inline static int32_t get_offset_of_h_6() { return static_cast(offsetof(X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639, ___h_6)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_h_6() const { return ___h_6; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_h_6() { return &___h_6; } inline void set_h_6(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___h_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___h_6), (void*)value); } inline static int32_t get_offset_of_seed_7() { return static_cast(offsetof(X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639, ___seed_7)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_seed_7() const { return ___seed_7; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_seed_7() { return &___seed_7; } inline void set_seed_7(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___seed_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___seed_7), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECPoint struct X9ECPoint_t06D47967D73B459616A01610E0E5D88AB08BDF71 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECPoint::encoding Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * ___encoding_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECCurve BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECPoint::c ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * ___c_3; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECPoint::p ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * ___p_4; public: inline static int32_t get_offset_of_encoding_2() { return static_cast(offsetof(X9ECPoint_t06D47967D73B459616A01610E0E5D88AB08BDF71, ___encoding_2)); } inline Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * get_encoding_2() const { return ___encoding_2; } inline Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 ** get_address_of_encoding_2() { return &___encoding_2; } inline void set_encoding_2(Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * value) { ___encoding_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___encoding_2), (void*)value); } inline static int32_t get_offset_of_c_3() { return static_cast(offsetof(X9ECPoint_t06D47967D73B459616A01610E0E5D88AB08BDF71, ___c_3)); } inline ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * get_c_3() const { return ___c_3; } inline ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 ** get_address_of_c_3() { return &___c_3; } inline void set_c_3(ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * value) { ___c_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___c_3), (void*)value); } inline static int32_t get_offset_of_p_4() { return static_cast(offsetof(X9ECPoint_t06D47967D73B459616A01610E0E5D88AB08BDF71, ___p_4)); } inline ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * get_p_4() const { return ___p_4; } inline ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA ** get_address_of_p_4() { return &___p_4; } inline void set_p_4(ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * value) { ___p_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___p_4), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9FieldElement struct X9FieldElement_t153792155C814A48E98DBBBF3BF3B5055CC18EA2 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECFieldElement BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9FieldElement::f ECFieldElement_t5B3E4EB355D81F73F6FAC09A042BE908A9631117 * ___f_2; public: inline static int32_t get_offset_of_f_2() { return static_cast(offsetof(X9FieldElement_t153792155C814A48E98DBBBF3BF3B5055CC18EA2, ___f_2)); } inline ECFieldElement_t5B3E4EB355D81F73F6FAC09A042BE908A9631117 * get_f_2() const { return ___f_2; } inline ECFieldElement_t5B3E4EB355D81F73F6FAC09A042BE908A9631117 ** get_address_of_f_2() { return &___f_2; } inline void set_f_2(ECFieldElement_t5B3E4EB355D81F73F6FAC09A042BE908A9631117 * value) { ___f_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___f_2), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9FieldID struct X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8 : public Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9FieldID::id DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___id_2; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Object BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9FieldID::parameters Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * ___parameters_3; public: inline static int32_t get_offset_of_id_2() { return static_cast(offsetof(X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8, ___id_2)); } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * get_id_2() const { return ___id_2; } inline DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 ** get_address_of_id_2() { return &___id_2; } inline void set_id_2(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * value) { ___id_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___id_2), (void*)value); } inline static int32_t get_offset_of_parameters_3() { return static_cast(offsetof(X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8, ___parameters_3)); } inline Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * get_parameters_3() const { return ___parameters_3; } inline Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC ** get_address_of_parameters_3() { return &___parameters_3; } inline void set_parameters_3(Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * value) { ___parameters_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___parameters_3), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Engines.XSalsa20Engine struct XSalsa20Engine_tC0EFC0018B12DF0F89158A81A2358AF6E14C6678 : public Salsa20Engine_t661640C461D9868FAA0FE0F7765F0380147FEC66 { public: public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.Multiplier.ZSignedDigitL2RMultiplier struct ZSignedDigitL2RMultiplier_t8B0E2D2F725F6F74BCC0CF7BF6882FAC95DFBBF1 : public AbstractECMultiplier_t54253743E31DE46FD22E58679B9792D44DA770B5 { public: public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.Multiplier.ZSignedDigitR2LMultiplier struct ZSignedDigitR2LMultiplier_t2CD05C5CD8FDC0C2DAC5C41591EC942B321A0B1C : public AbstractECMultiplier_t54253743E31DE46FD22E58679B9792D44DA770B5 { public: public: }; // /__StaticArrayInitTypeSize=1024 struct __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665__padding[1024]; }; public: }; // /__StaticArrayInitTypeSize=112 struct __StaticArrayInitTypeSizeU3D112_t366701DE02350ED8C8A65F92A137F54409B95542 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D112_t366701DE02350ED8C8A65F92A137F54409B95542__padding[112]; }; public: }; // /__StaticArrayInitTypeSize=1152 struct __StaticArrayInitTypeSizeU3D1152_t2104B5740ABD2FB36896B62E02098A1B196E493F { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D1152_t2104B5740ABD2FB36896B62E02098A1B196E493F__padding[1152]; }; public: }; // /__StaticArrayInitTypeSize=116 struct __StaticArrayInitTypeSizeU3D116_t9020B92E8453BBAFE2519A469C0893F630E8D2C9 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D116_t9020B92E8453BBAFE2519A469C0893F630E8D2C9__padding[116]; }; public: }; // /__StaticArrayInitTypeSize=12 struct __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794__padding[12]; }; public: }; // /__StaticArrayInitTypeSize=120 struct __StaticArrayInitTypeSizeU3D120_tD78937C26C99B5FDF514E7F2EB4F8F2367B4C05A { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D120_tD78937C26C99B5FDF514E7F2EB4F8F2367B4C05A__padding[120]; }; public: }; // /__StaticArrayInitTypeSize=124 struct __StaticArrayInitTypeSizeU3D124_t4DC490DCE9056B4FDAA27442CBBA7F0F499B0451 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D124_t4DC490DCE9056B4FDAA27442CBBA7F0F499B0451__padding[124]; }; public: }; // /__StaticArrayInitTypeSize=128 struct __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C__padding[128]; }; public: }; // /__StaticArrayInitTypeSize=16 struct __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66__padding[16]; }; public: }; // /__StaticArrayInitTypeSize=160 struct __StaticArrayInitTypeSizeU3D160_t01D8A735071F3884433FD17606956ED602F11B27 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D160_t01D8A735071F3884433FD17606956ED602F11B27__padding[160]; }; public: }; // /__StaticArrayInitTypeSize=19 struct __StaticArrayInitTypeSizeU3D19_t6F47B190498106B49FE59B8EC484EB7D61D348D4 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D19_t6F47B190498106B49FE59B8EC484EB7D61D348D4__padding[19]; }; public: }; // /__StaticArrayInitTypeSize=192 struct __StaticArrayInitTypeSizeU3D192_tC7D23024B2AD7A4D301599706A49B8C87DAA353D { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D192_tC7D23024B2AD7A4D301599706A49B8C87DAA353D__padding[192]; }; public: }; // /__StaticArrayInitTypeSize=20 struct __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598__padding[20]; }; public: }; // /__StaticArrayInitTypeSize=2048 struct __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E__padding[2048]; }; public: }; // /__StaticArrayInitTypeSize=24 struct __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2__padding[24]; }; public: }; // /__StaticArrayInitTypeSize=256 struct __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449__padding[256]; }; public: }; // /__StaticArrayInitTypeSize=28 struct __StaticArrayInitTypeSizeU3D28_tB9DE54DF41ABC27805509271A10177513906BF30 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D28_tB9DE54DF41ABC27805509271A10177513906BF30__padding[28]; }; public: }; // /__StaticArrayInitTypeSize=3 struct __StaticArrayInitTypeSizeU3D3_t4D94CFD4A1D337F535123BB0BD49F9DDB4392C7F { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D3_t4D94CFD4A1D337F535123BB0BD49F9DDB4392C7F__padding[3]; }; public: }; // /__StaticArrayInitTypeSize=30 struct __StaticArrayInitTypeSizeU3D30_tD08FD0996F882530B072EF52BF88556C13AF0306 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D30_tD08FD0996F882530B072EF52BF88556C13AF0306__padding[30]; }; public: }; // /__StaticArrayInitTypeSize=32 struct __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F__padding[32]; }; public: }; // /__StaticArrayInitTypeSize=36 struct __StaticArrayInitTypeSizeU3D36_t5A0F5FAC8609C11AC407745154F17247010BD4A1 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D36_t5A0F5FAC8609C11AC407745154F17247010BD4A1__padding[36]; }; public: }; // /__StaticArrayInitTypeSize=38 struct __StaticArrayInitTypeSizeU3D38_tA06FFB58ABD95EAC48139C4ABFED36B1C69D0B92 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D38_tA06FFB58ABD95EAC48139C4ABFED36B1C69D0B92__padding[38]; }; public: }; // /__StaticArrayInitTypeSize=384 struct __StaticArrayInitTypeSizeU3D384_t46003A58CA4B346F0AB7AB5EE6A64AA08241F97E { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D384_t46003A58CA4B346F0AB7AB5EE6A64AA08241F97E__padding[384]; }; public: }; // /__StaticArrayInitTypeSize=40 struct __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F__padding[40]; }; public: }; // /__StaticArrayInitTypeSize=404 struct __StaticArrayInitTypeSizeU3D404_t02BA5FC25140F7864B3B45D3DD9D4D8B9E93A333 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D404_t02BA5FC25140F7864B3B45D3DD9D4D8B9E93A333__padding[404]; }; public: }; // /__StaticArrayInitTypeSize=4096 struct __StaticArrayInitTypeSizeU3D4096_t194B799136AD31D58B9179637D7756F00A1E35D5 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D4096_t194B799136AD31D58B9179637D7756F00A1E35D5__padding[4096]; }; public: }; // /__StaticArrayInitTypeSize=44 struct __StaticArrayInitTypeSizeU3D44_tB4E85CA0F7D90D00E66285BECB46250AA72356B5 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D44_tB4E85CA0F7D90D00E66285BECB46250AA72356B5__padding[44]; }; public: }; // /__StaticArrayInitTypeSize=48 struct __StaticArrayInitTypeSizeU3D48_tFD8B246DD801288DF862F996D7F0915222433AD7 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D48_tFD8B246DD801288DF862F996D7F0915222433AD7__padding[48]; }; public: }; // /__StaticArrayInitTypeSize=5 struct __StaticArrayInitTypeSizeU3D5_t4860E7B6EA3ACC966F04D8598CE9F606264B9EE9 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D5_t4860E7B6EA3ACC966F04D8598CE9F606264B9EE9__padding[5]; }; public: }; // /__StaticArrayInitTypeSize=511 struct __StaticArrayInitTypeSizeU3D511_t740CF3C9FEBB9CC89BA68C0F8EC83A7BB47394C3 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D511_t740CF3C9FEBB9CC89BA68C0F8EC83A7BB47394C3__padding[511]; }; public: }; // /__StaticArrayInitTypeSize=512 struct __StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE__padding[512]; }; public: }; // /__StaticArrayInitTypeSize=56 struct __StaticArrayInitTypeSizeU3D56_tEBF9CCD8C2A1E8B12AE6EDE1B31598793DD01186 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D56_tEBF9CCD8C2A1E8B12AE6EDE1B31598793DD01186__padding[56]; }; public: }; // /__StaticArrayInitTypeSize=6 struct __StaticArrayInitTypeSizeU3D6_tDD3535E2AB0E3D46629D397042D7A7D5F52F2E77 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D6_tDD3535E2AB0E3D46629D397042D7A7D5F52F2E77__padding[6]; }; public: }; // /__StaticArrayInitTypeSize=6144 struct __StaticArrayInitTypeSizeU3D6144_tC7D0B4030CC1B8F5E770AE916BB72D42FCBE5DBD { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D6144_tC7D0B4030CC1B8F5E770AE916BB72D42FCBE5DBD__padding[6144]; }; public: }; // /__StaticArrayInitTypeSize=64 struct __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C__padding[64]; }; public: }; // /__StaticArrayInitTypeSize=640 struct __StaticArrayInitTypeSizeU3D640_tBB1E788DFDEFA4D1C43D13F2427E9BEECC2CE517 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D640_tBB1E788DFDEFA4D1C43D13F2427E9BEECC2CE517__padding[640]; }; public: }; // /__StaticArrayInitTypeSize=68 struct __StaticArrayInitTypeSizeU3D68_tE431405C001EFCAA99F9D46276BFEAF7F5AF4E0F { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D68_tE431405C001EFCAA99F9D46276BFEAF7F5AF4E0F__padding[68]; }; public: }; // /__StaticArrayInitTypeSize=72 struct __StaticArrayInitTypeSizeU3D72_t2005207C3F6F7C1227A5084885E3320B238A2489 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D72_t2005207C3F6F7C1227A5084885E3320B238A2489__padding[72]; }; public: }; // /__StaticArrayInitTypeSize=76 struct __StaticArrayInitTypeSizeU3D76_t6572A863E37652A3D016260FBD2285807BDD3823 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D76_t6572A863E37652A3D016260FBD2285807BDD3823__padding[76]; }; public: }; // /__StaticArrayInitTypeSize=96 struct __StaticArrayInitTypeSizeU3D96_tADB23F3DA94DC89452F2BC0884B51C90615CDCD5 { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D96_tADB23F3DA94DC89452F2BC0884B51C90615CDCD5__padding[96]; }; public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb163v1Holder struct C2pnb163v1Holder_t14404B5C4F247A6FC55F523428FEAE71BD17356E : public X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC { public: public: }; struct C2pnb163v1Holder_t14404B5C4F247A6FC55F523428FEAE71BD17356E_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParametersHolder BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb163v1Holder::Instance X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * ___Instance_1; public: inline static int32_t get_offset_of_Instance_1() { return static_cast(offsetof(C2pnb163v1Holder_t14404B5C4F247A6FC55F523428FEAE71BD17356E_StaticFields, ___Instance_1)); } inline X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * get_Instance_1() const { return ___Instance_1; } inline X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC ** get_address_of_Instance_1() { return &___Instance_1; } inline void set_Instance_1(X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * value) { ___Instance_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Instance_1), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb163v2Holder struct C2pnb163v2Holder_t4024F93EAAA6797CB7971874C3317CB2A1D30B51 : public X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC { public: public: }; struct C2pnb163v2Holder_t4024F93EAAA6797CB7971874C3317CB2A1D30B51_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParametersHolder BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb163v2Holder::Instance X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * ___Instance_1; public: inline static int32_t get_offset_of_Instance_1() { return static_cast(offsetof(C2pnb163v2Holder_t4024F93EAAA6797CB7971874C3317CB2A1D30B51_StaticFields, ___Instance_1)); } inline X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * get_Instance_1() const { return ___Instance_1; } inline X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC ** get_address_of_Instance_1() { return &___Instance_1; } inline void set_Instance_1(X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * value) { ___Instance_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Instance_1), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb163v3Holder struct C2pnb163v3Holder_t1C07A36DEFFB5AB9856D1F4FF36DD90BFFF98D2D : public X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC { public: public: }; struct C2pnb163v3Holder_t1C07A36DEFFB5AB9856D1F4FF36DD90BFFF98D2D_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParametersHolder BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb163v3Holder::Instance X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * ___Instance_1; public: inline static int32_t get_offset_of_Instance_1() { return static_cast(offsetof(C2pnb163v3Holder_t1C07A36DEFFB5AB9856D1F4FF36DD90BFFF98D2D_StaticFields, ___Instance_1)); } inline X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * get_Instance_1() const { return ___Instance_1; } inline X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC ** get_address_of_Instance_1() { return &___Instance_1; } inline void set_Instance_1(X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * value) { ___Instance_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Instance_1), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb176w1Holder struct C2pnb176w1Holder_tBEF5160BAD0DB37BA6D68F7652D63D100BCB0FA9 : public X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC { public: public: }; struct C2pnb176w1Holder_tBEF5160BAD0DB37BA6D68F7652D63D100BCB0FA9_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParametersHolder BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb176w1Holder::Instance X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * ___Instance_1; public: inline static int32_t get_offset_of_Instance_1() { return static_cast(offsetof(C2pnb176w1Holder_tBEF5160BAD0DB37BA6D68F7652D63D100BCB0FA9_StaticFields, ___Instance_1)); } inline X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * get_Instance_1() const { return ___Instance_1; } inline X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC ** get_address_of_Instance_1() { return &___Instance_1; } inline void set_Instance_1(X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * value) { ___Instance_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Instance_1), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb208w1Holder struct C2pnb208w1Holder_tE2F80B7558866023258E8CBC01B139962E8255F8 : public X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC { public: public: }; struct C2pnb208w1Holder_tE2F80B7558866023258E8CBC01B139962E8255F8_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParametersHolder BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb208w1Holder::Instance X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * ___Instance_1; public: inline static int32_t get_offset_of_Instance_1() { return static_cast(offsetof(C2pnb208w1Holder_tE2F80B7558866023258E8CBC01B139962E8255F8_StaticFields, ___Instance_1)); } inline X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * get_Instance_1() const { return ___Instance_1; } inline X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC ** get_address_of_Instance_1() { return &___Instance_1; } inline void set_Instance_1(X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * value) { ___Instance_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Instance_1), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb272w1Holder struct C2pnb272w1Holder_tCD74D325AAA8916FFECBC5948276D3A64BF83B7E : public X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC { public: public: }; struct C2pnb272w1Holder_tCD74D325AAA8916FFECBC5948276D3A64BF83B7E_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParametersHolder BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb272w1Holder::Instance X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * ___Instance_1; public: inline static int32_t get_offset_of_Instance_1() { return static_cast(offsetof(C2pnb272w1Holder_tCD74D325AAA8916FFECBC5948276D3A64BF83B7E_StaticFields, ___Instance_1)); } inline X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * get_Instance_1() const { return ___Instance_1; } inline X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC ** get_address_of_Instance_1() { return &___Instance_1; } inline void set_Instance_1(X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * value) { ___Instance_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Instance_1), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb304w1Holder struct C2pnb304w1Holder_t27D27503DAB760C2417A929CFF0D295E8B4C21AC : public X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC { public: public: }; struct C2pnb304w1Holder_t27D27503DAB760C2417A929CFF0D295E8B4C21AC_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParametersHolder BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb304w1Holder::Instance X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * ___Instance_1; public: inline static int32_t get_offset_of_Instance_1() { return static_cast(offsetof(C2pnb304w1Holder_t27D27503DAB760C2417A929CFF0D295E8B4C21AC_StaticFields, ___Instance_1)); } inline X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * get_Instance_1() const { return ___Instance_1; } inline X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC ** get_address_of_Instance_1() { return &___Instance_1; } inline void set_Instance_1(X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * value) { ___Instance_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Instance_1), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb368w1Holder struct C2pnb368w1Holder_tCFEE7AD795ADDE9FA7099095984035BF603EF526 : public X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC { public: public: }; struct C2pnb368w1Holder_tCFEE7AD795ADDE9FA7099095984035BF603EF526_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParametersHolder BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb368w1Holder::Instance X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * ___Instance_1; public: inline static int32_t get_offset_of_Instance_1() { return static_cast(offsetof(C2pnb368w1Holder_tCFEE7AD795ADDE9FA7099095984035BF603EF526_StaticFields, ___Instance_1)); } inline X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * get_Instance_1() const { return ___Instance_1; } inline X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC ** get_address_of_Instance_1() { return &___Instance_1; } inline void set_Instance_1(X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * value) { ___Instance_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Instance_1), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb191v1Holder struct C2tnb191v1Holder_tDC5C03DB24B41228D59938EB78416A87ECD6F282 : public X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC { public: public: }; struct C2tnb191v1Holder_tDC5C03DB24B41228D59938EB78416A87ECD6F282_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParametersHolder BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb191v1Holder::Instance X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * ___Instance_1; public: inline static int32_t get_offset_of_Instance_1() { return static_cast(offsetof(C2tnb191v1Holder_tDC5C03DB24B41228D59938EB78416A87ECD6F282_StaticFields, ___Instance_1)); } inline X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * get_Instance_1() const { return ___Instance_1; } inline X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC ** get_address_of_Instance_1() { return &___Instance_1; } inline void set_Instance_1(X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * value) { ___Instance_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Instance_1), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb191v2Holder struct C2tnb191v2Holder_tAB6EC306E891B275CB0C71D3EDA6BA346904E674 : public X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC { public: public: }; struct C2tnb191v2Holder_tAB6EC306E891B275CB0C71D3EDA6BA346904E674_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParametersHolder BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb191v2Holder::Instance X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * ___Instance_1; public: inline static int32_t get_offset_of_Instance_1() { return static_cast(offsetof(C2tnb191v2Holder_tAB6EC306E891B275CB0C71D3EDA6BA346904E674_StaticFields, ___Instance_1)); } inline X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * get_Instance_1() const { return ___Instance_1; } inline X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC ** get_address_of_Instance_1() { return &___Instance_1; } inline void set_Instance_1(X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * value) { ___Instance_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Instance_1), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb191v3Holder struct C2tnb191v3Holder_tE37AA2BE610F1E5FC1335A58B06C407C0F891584 : public X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC { public: public: }; struct C2tnb191v3Holder_tE37AA2BE610F1E5FC1335A58B06C407C0F891584_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParametersHolder BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb191v3Holder::Instance X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * ___Instance_1; public: inline static int32_t get_offset_of_Instance_1() { return static_cast(offsetof(C2tnb191v3Holder_tE37AA2BE610F1E5FC1335A58B06C407C0F891584_StaticFields, ___Instance_1)); } inline X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * get_Instance_1() const { return ___Instance_1; } inline X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC ** get_address_of_Instance_1() { return &___Instance_1; } inline void set_Instance_1(X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * value) { ___Instance_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Instance_1), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb239v1Holder struct C2tnb239v1Holder_t8B4686F28C4A8771FE0CBA85A8A3EC9E30FD499A : public X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC { public: public: }; struct C2tnb239v1Holder_t8B4686F28C4A8771FE0CBA85A8A3EC9E30FD499A_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParametersHolder BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb239v1Holder::Instance X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * ___Instance_1; public: inline static int32_t get_offset_of_Instance_1() { return static_cast(offsetof(C2tnb239v1Holder_t8B4686F28C4A8771FE0CBA85A8A3EC9E30FD499A_StaticFields, ___Instance_1)); } inline X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * get_Instance_1() const { return ___Instance_1; } inline X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC ** get_address_of_Instance_1() { return &___Instance_1; } inline void set_Instance_1(X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * value) { ___Instance_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Instance_1), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb239v2Holder struct C2tnb239v2Holder_tA4E988012BF3EA5F2CD89187D47B2908DDB47EAD : public X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC { public: public: }; struct C2tnb239v2Holder_tA4E988012BF3EA5F2CD89187D47B2908DDB47EAD_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParametersHolder BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb239v2Holder::Instance X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * ___Instance_1; public: inline static int32_t get_offset_of_Instance_1() { return static_cast(offsetof(C2tnb239v2Holder_tA4E988012BF3EA5F2CD89187D47B2908DDB47EAD_StaticFields, ___Instance_1)); } inline X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * get_Instance_1() const { return ___Instance_1; } inline X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC ** get_address_of_Instance_1() { return &___Instance_1; } inline void set_Instance_1(X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * value) { ___Instance_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Instance_1), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb239v3Holder struct C2tnb239v3Holder_t4B94D7A891E3046E3690DA34860C17C40B947604 : public X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC { public: public: }; struct C2tnb239v3Holder_t4B94D7A891E3046E3690DA34860C17C40B947604_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParametersHolder BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb239v3Holder::Instance X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * ___Instance_1; public: inline static int32_t get_offset_of_Instance_1() { return static_cast(offsetof(C2tnb239v3Holder_t4B94D7A891E3046E3690DA34860C17C40B947604_StaticFields, ___Instance_1)); } inline X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * get_Instance_1() const { return ___Instance_1; } inline X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC ** get_address_of_Instance_1() { return &___Instance_1; } inline void set_Instance_1(X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * value) { ___Instance_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Instance_1), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb359v1Holder struct C2tnb359v1Holder_tDAF3A97122802D04EC904C5416B7E02C267FD2A6 : public X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC { public: public: }; struct C2tnb359v1Holder_tDAF3A97122802D04EC904C5416B7E02C267FD2A6_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParametersHolder BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb359v1Holder::Instance X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * ___Instance_1; public: inline static int32_t get_offset_of_Instance_1() { return static_cast(offsetof(C2tnb359v1Holder_tDAF3A97122802D04EC904C5416B7E02C267FD2A6_StaticFields, ___Instance_1)); } inline X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * get_Instance_1() const { return ___Instance_1; } inline X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC ** get_address_of_Instance_1() { return &___Instance_1; } inline void set_Instance_1(X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * value) { ___Instance_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Instance_1), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb431r1Holder struct C2tnb431r1Holder_tE2F8B784758E3C2B77A17A464C69D212F357A2CA : public X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC { public: public: }; struct C2tnb431r1Holder_tE2F8B784758E3C2B77A17A464C69D212F357A2CA_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParametersHolder BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb431r1Holder::Instance X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * ___Instance_1; public: inline static int32_t get_offset_of_Instance_1() { return static_cast(offsetof(C2tnb431r1Holder_tE2F8B784758E3C2B77A17A464C69D212F357A2CA_StaticFields, ___Instance_1)); } inline X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * get_Instance_1() const { return ___Instance_1; } inline X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC ** get_address_of_Instance_1() { return &___Instance_1; } inline void set_Instance_1(X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * value) { ___Instance_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Instance_1), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves/Prime192v1Holder struct Prime192v1Holder_t43C50E88A5EF475977296B3AE5F66499ADADADF0 : public X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC { public: public: }; struct Prime192v1Holder_t43C50E88A5EF475977296B3AE5F66499ADADADF0_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParametersHolder BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves/Prime192v1Holder::Instance X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * ___Instance_1; public: inline static int32_t get_offset_of_Instance_1() { return static_cast(offsetof(Prime192v1Holder_t43C50E88A5EF475977296B3AE5F66499ADADADF0_StaticFields, ___Instance_1)); } inline X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * get_Instance_1() const { return ___Instance_1; } inline X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC ** get_address_of_Instance_1() { return &___Instance_1; } inline void set_Instance_1(X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * value) { ___Instance_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Instance_1), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves/Prime192v2Holder struct Prime192v2Holder_tE9D04436BCAC89FF0ECCBCD0FCADA8933DADDC30 : public X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC { public: public: }; struct Prime192v2Holder_tE9D04436BCAC89FF0ECCBCD0FCADA8933DADDC30_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParametersHolder BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves/Prime192v2Holder::Instance X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * ___Instance_1; public: inline static int32_t get_offset_of_Instance_1() { return static_cast(offsetof(Prime192v2Holder_tE9D04436BCAC89FF0ECCBCD0FCADA8933DADDC30_StaticFields, ___Instance_1)); } inline X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * get_Instance_1() const { return ___Instance_1; } inline X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC ** get_address_of_Instance_1() { return &___Instance_1; } inline void set_Instance_1(X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * value) { ___Instance_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Instance_1), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves/Prime192v3Holder struct Prime192v3Holder_t28351D53441067C55ABCAD0C8243164988CB226D : public X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC { public: public: }; struct Prime192v3Holder_t28351D53441067C55ABCAD0C8243164988CB226D_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParametersHolder BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves/Prime192v3Holder::Instance X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * ___Instance_1; public: inline static int32_t get_offset_of_Instance_1() { return static_cast(offsetof(Prime192v3Holder_t28351D53441067C55ABCAD0C8243164988CB226D_StaticFields, ___Instance_1)); } inline X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * get_Instance_1() const { return ___Instance_1; } inline X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC ** get_address_of_Instance_1() { return &___Instance_1; } inline void set_Instance_1(X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * value) { ___Instance_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Instance_1), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves/Prime239v1Holder struct Prime239v1Holder_t105BAABEE61136A694461EB7BF72FCEE62E72A4E : public X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC { public: public: }; struct Prime239v1Holder_t105BAABEE61136A694461EB7BF72FCEE62E72A4E_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParametersHolder BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves/Prime239v1Holder::Instance X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * ___Instance_1; public: inline static int32_t get_offset_of_Instance_1() { return static_cast(offsetof(Prime239v1Holder_t105BAABEE61136A694461EB7BF72FCEE62E72A4E_StaticFields, ___Instance_1)); } inline X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * get_Instance_1() const { return ___Instance_1; } inline X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC ** get_address_of_Instance_1() { return &___Instance_1; } inline void set_Instance_1(X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * value) { ___Instance_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Instance_1), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves/Prime239v2Holder struct Prime239v2Holder_tB1B1A0EF22267E909203936B1964E4458F7FDAE8 : public X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC { public: public: }; struct Prime239v2Holder_tB1B1A0EF22267E909203936B1964E4458F7FDAE8_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParametersHolder BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves/Prime239v2Holder::Instance X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * ___Instance_1; public: inline static int32_t get_offset_of_Instance_1() { return static_cast(offsetof(Prime239v2Holder_tB1B1A0EF22267E909203936B1964E4458F7FDAE8_StaticFields, ___Instance_1)); } inline X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * get_Instance_1() const { return ___Instance_1; } inline X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC ** get_address_of_Instance_1() { return &___Instance_1; } inline void set_Instance_1(X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * value) { ___Instance_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Instance_1), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves/Prime239v3Holder struct Prime239v3Holder_t16E1A407861C84C0A7F7ECCB571B84D5B6AFA1F7 : public X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC { public: public: }; struct Prime239v3Holder_t16E1A407861C84C0A7F7ECCB571B84D5B6AFA1F7_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParametersHolder BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves/Prime239v3Holder::Instance X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * ___Instance_1; public: inline static int32_t get_offset_of_Instance_1() { return static_cast(offsetof(Prime239v3Holder_t16E1A407861C84C0A7F7ECCB571B84D5B6AFA1F7_StaticFields, ___Instance_1)); } inline X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * get_Instance_1() const { return ___Instance_1; } inline X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC ** get_address_of_Instance_1() { return &___Instance_1; } inline void set_Instance_1(X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * value) { ___Instance_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Instance_1), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves/Prime256v1Holder struct Prime256v1Holder_tDC56A4ECD9A19F80AA476CA23F85B69C29E2D57E : public X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC { public: public: }; struct Prime256v1Holder_tDC56A4ECD9A19F80AA476CA23F85B69C29E2D57E_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParametersHolder BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves/Prime256v1Holder::Instance X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * ___Instance_1; public: inline static int32_t get_offset_of_Instance_1() { return static_cast(offsetof(Prime256v1Holder_tDC56A4ECD9A19F80AA476CA23F85B69C29E2D57E_StaticFields, ___Instance_1)); } inline X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * get_Instance_1() const { return ___Instance_1; } inline X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC ** get_address_of_Instance_1() { return &___Instance_1; } inline void set_Instance_1(X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * value) { ___Instance_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Instance_1), (void*)value); } }; // struct U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528 : public RuntimeObject { public: public: }; struct U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields { public: // /__StaticArrayInitTypeSize=20 ::02D050046D7A21C15C1A6D6755439B5EDAD147FABD9152C932359BA3A4E82039 __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 ___02D050046D7A21C15C1A6D6755439B5EDAD147FABD9152C932359BA3A4E82039_0; // /__StaticArrayInitTypeSize=1024 ::037BE04C4468BC2A186CC905D1F673CDFAAC254CEBEB545465B53F83A97830C5 __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___037BE04C4468BC2A186CC905D1F673CDFAAC254CEBEB545465B53F83A97830C5_1; // /__StaticArrayInitTypeSize=3 ::039058C6F2C0CB492C533B0A4D14EF77CC0F78ABCCCED5287D84A1A2011CFB81 __StaticArrayInitTypeSizeU3D3_t4D94CFD4A1D337F535123BB0BD49F9DDB4392C7F ___039058C6F2C0CB492C533B0A4D14EF77CC0F78ABCCCED5287D84A1A2011CFB81_2; // /__StaticArrayInitTypeSize=128 ::04801C5DAE2B089F05A4334CFE18CCBD987A6EDE98113B9499E8D7054DC38252 __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C ___04801C5DAE2B089F05A4334CFE18CCBD987A6EDE98113B9499E8D7054DC38252_3; // /__StaticArrayInitTypeSize=160 ::064CACC4978353DFD6979BF0975E06366B0F3E9C5631CFFF32EC2184BCF492E5 __StaticArrayInitTypeSizeU3D160_t01D8A735071F3884433FD17606956ED602F11B27 ___064CACC4978353DFD6979BF0975E06366B0F3E9C5631CFFF32EC2184BCF492E5_4; // /__StaticArrayInitTypeSize=68 ::07F8694A8F96DEE5EE4007B7B9102D4969129F0FB6FF3731434ED8CAF3C32D00 __StaticArrayInitTypeSizeU3D68_tE431405C001EFCAA99F9D46276BFEAF7F5AF4E0F ___07F8694A8F96DEE5EE4007B7B9102D4969129F0FB6FF3731434ED8CAF3C32D00_5; // /__StaticArrayInitTypeSize=56 ::07FA6E88C946B2528C09C16C2FB8E9CDA49AFFAFC601774C437FD9F2DF3ECE01 __StaticArrayInitTypeSizeU3D56_tEBF9CCD8C2A1E8B12AE6EDE1B31598793DD01186 ___07FA6E88C946B2528C09C16C2FB8E9CDA49AFFAFC601774C437FD9F2DF3ECE01_6; // /__StaticArrayInitTypeSize=5 ::08BB5E5D6EAAC1049EDE0893D30ED022B1A4D9B5B48DB414871F51C9CB35283D __StaticArrayInitTypeSizeU3D5_t4860E7B6EA3ACC966F04D8598CE9F606264B9EE9 ___08BB5E5D6EAAC1049EDE0893D30ED022B1A4D9B5B48DB414871F51C9CB35283D_7; // /__StaticArrayInitTypeSize=20 ::0A1413707CFE8C78578CA0BB50414B63B0BF76D33A73C9AADCEED38BB8CD28A8 __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 ___0A1413707CFE8C78578CA0BB50414B63B0BF76D33A73C9AADCEED38BB8CD28A8_8; // /__StaticArrayInitTypeSize=6 ::0A29D64AE97E7FBAAE0678A4F4F9364668E9827F23F305D51DF55D902CF19C4D __StaticArrayInitTypeSizeU3D6_tDD3535E2AB0E3D46629D397042D7A7D5F52F2E77 ___0A29D64AE97E7FBAAE0678A4F4F9364668E9827F23F305D51DF55D902CF19C4D_9; // /__StaticArrayInitTypeSize=72 ::0A4E21484641E9782ED1A1B3410F9F2DDC54F0F6D8807BF52C299807D9C4DF5C __StaticArrayInitTypeSizeU3D72_t2005207C3F6F7C1227A5084885E3320B238A2489 ___0A4E21484641E9782ED1A1B3410F9F2DDC54F0F6D8807BF52C299807D9C4DF5C_10; // /__StaticArrayInitTypeSize=56 ::0AEC099C87E7062A57D1C79734EDDD28A07A1684746EE8640132BB252E6BF5A1 __StaticArrayInitTypeSizeU3D56_tEBF9CCD8C2A1E8B12AE6EDE1B31598793DD01186 ___0AEC099C87E7062A57D1C79734EDDD28A07A1684746EE8640132BB252E6BF5A1_11; // /__StaticArrayInitTypeSize=256 ::0AFCFE448EEBA81468EDE42DD0B9A0C17F1A006F43E0BE503CA27E8FBA2F05DC __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___0AFCFE448EEBA81468EDE42DD0B9A0C17F1A006F43E0BE503CA27E8FBA2F05DC_12; // /__StaticArrayInitTypeSize=1024 ::0C9B53D0417CF5539EA98A771F400E930B4B4F55363A296A9E5A5F941AB71C86 __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___0C9B53D0417CF5539EA98A771F400E930B4B4F55363A296A9E5A5F941AB71C86_13; // /__StaticArrayInitTypeSize=256 ::0CF9F5E38BA692F10436AAC17AC6DCB62396F9AFC9CA013B3D640C1C95E31A39 __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___0CF9F5E38BA692F10436AAC17AC6DCB62396F9AFC9CA013B3D640C1C95E31A39_14; // /__StaticArrayInitTypeSize=128 ::10D88DF8B06E47788DBE42F876B642A928A3AD8EEFFE352C59F031CCFFECD49D __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C ___10D88DF8B06E47788DBE42F876B642A928A3AD8EEFFE352C59F031CCFFECD49D_15; // /__StaticArrayInitTypeSize=19 ::111B15B20E0428A22EEAA1E54B0D3B008A7A3E79C8F7F4E783710F569E9CEF15 __StaticArrayInitTypeSizeU3D19_t6F47B190498106B49FE59B8EC484EB7D61D348D4 ___111B15B20E0428A22EEAA1E54B0D3B008A7A3E79C8F7F4E783710F569E9CEF15_16; // /__StaticArrayInitTypeSize=64 ::120918433B634757ADE589703127976B7C5C2009E8DB37632123F45FA2B87F2E __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___120918433B634757ADE589703127976B7C5C2009E8DB37632123F45FA2B87F2E_17; // /__StaticArrayInitTypeSize=640 ::125CF2084D7EEC18DC9795BE4BAA221655C0EABAB89E90A74FB0370378A60293 __StaticArrayInitTypeSizeU3D640_tBB1E788DFDEFA4D1C43D13F2427E9BEECC2CE517 ___125CF2084D7EEC18DC9795BE4BAA221655C0EABAB89E90A74FB0370378A60293_18; // /__StaticArrayInitTypeSize=12 ::12F486CDF1F8927BF7289003288EFE6D3B6C674279639905EEEE24D0B6EA9688 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___12F486CDF1F8927BF7289003288EFE6D3B6C674279639905EEEE24D0B6EA9688_19; // /__StaticArrayInitTypeSize=12 ::1313B2EF301CE83F294FFD8C012777CAA44B3F5F35B6CC5232786F43AEE29084 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___1313B2EF301CE83F294FFD8C012777CAA44B3F5F35B6CC5232786F43AEE29084_20; // /__StaticArrayInitTypeSize=2048 ::13F3BEDA950D7627802C21F7681A2553BBC40FDD07FCA3F52FAB662EE65B6F90 __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E ___13F3BEDA950D7627802C21F7681A2553BBC40FDD07FCA3F52FAB662EE65B6F90_21; // /__StaticArrayInitTypeSize=12 ::141785EC78A7C41133C5B71ACBF4AA8735D3C599E0EA82B1AFA2C71A46FAD265 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___141785EC78A7C41133C5B71ACBF4AA8735D3C599E0EA82B1AFA2C71A46FAD265_22; // /__StaticArrayInitTypeSize=32 ::14A03AA4516FE146356EF9D4F549B8662F9C50A467974D3BFAC45B474D65B864 __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F ___14A03AA4516FE146356EF9D4F549B8662F9C50A467974D3BFAC45B474D65B864_23; // /__StaticArrayInitTypeSize=256 ::14A5D850C255623F9472E3C650ABCE0C78D32F0276B315B3A276A0462D97A1AC __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___14A5D850C255623F9472E3C650ABCE0C78D32F0276B315B3A276A0462D97A1AC_24; // /__StaticArrayInitTypeSize=56 ::16599A4F9A12ECCBFC361B547840304B9E48CBC431F387243C6859C475427D16 __StaticArrayInitTypeSizeU3D56_tEBF9CCD8C2A1E8B12AE6EDE1B31598793DD01186 ___16599A4F9A12ECCBFC361B547840304B9E48CBC431F387243C6859C475427D16_25; // /__StaticArrayInitTypeSize=256 ::1674D0631A2E37B60EC748BC3899FEE1550C108AF30B85CE96A70C5CA4682D03 __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___1674D0631A2E37B60EC748BC3899FEE1550C108AF30B85CE96A70C5CA4682D03_26; // /__StaticArrayInitTypeSize=1024 ::1A0C6D8588AD2BCC8FE37D32AAD70981DD42ECA259D570799BEB531448D25ECE __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___1A0C6D8588AD2BCC8FE37D32AAD70981DD42ECA259D570799BEB531448D25ECE_27; // /__StaticArrayInitTypeSize=64 ::1B3C6BD02D7D3A67EDF7C2E78CB65DA169834118F6971D8912211D3032BC4D18 __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___1B3C6BD02D7D3A67EDF7C2E78CB65DA169834118F6971D8912211D3032BC4D18_28; // /__StaticArrayInitTypeSize=16 ::1B897DDDD4C151E2A2E6E3E91B7EA0F7FC4FD5ED00EF1C9669E8566393A02586 __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 ___1B897DDDD4C151E2A2E6E3E91B7EA0F7FC4FD5ED00EF1C9669E8566393A02586_29; // /__StaticArrayInitTypeSize=1024 ::1B993D34192A33EB10CEE61C1093A6FE7D3D4B41F751F550CF8515DC4A215207 __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___1B993D34192A33EB10CEE61C1093A6FE7D3D4B41F751F550CF8515DC4A215207_30; // /__StaticArrayInitTypeSize=32 ::1BF78E8BF7F2EF0965437D77FD7CA3B2C80F27F8ABE4123F2207CB112D516AC4 __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F ___1BF78E8BF7F2EF0965437D77FD7CA3B2C80F27F8ABE4123F2207CB112D516AC4_31; // /__StaticArrayInitTypeSize=12 ::1C200EEC7E0EAFD19F23190A1ED9B95D60EDE114EDE39BD917D1565839CB48DC __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___1C200EEC7E0EAFD19F23190A1ED9B95D60EDE114EDE39BD917D1565839CB48DC_32; // /__StaticArrayInitTypeSize=12 ::1C3EF802E30F355C14A57C8AFAF6BFC22F3E40631D30059D87C30496D784EC9B __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___1C3EF802E30F355C14A57C8AFAF6BFC22F3E40631D30059D87C30496D784EC9B_33; // /__StaticArrayInitTypeSize=16 ::20EC21674E2CB9D3BA7B2F74AA5874381BAD58B7EDF526BDE000F175D1C5E5F1 __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 ___20EC21674E2CB9D3BA7B2F74AA5874381BAD58B7EDF526BDE000F175D1C5E5F1_34; // System.Int32 ::21B0817029E06E75D6C5BE22BC57089FD89B468AA7C549604EB9483F978CAD5B int32_t ___21B0817029E06E75D6C5BE22BC57089FD89B468AA7C549604EB9483F978CAD5B_35; // /__StaticArrayInitTypeSize=128 ::2338F1330733829B7EA276F350452E34DC02E35AEA142145F1294F417A412FE5 __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C ___2338F1330733829B7EA276F350452E34DC02E35AEA142145F1294F417A412FE5_36; // /__StaticArrayInitTypeSize=1024 ::23DB15B6CAC9F0BF9102DAD4E3569A3208841F38E80BB37F8A0D9D70B77779F6 __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___23DB15B6CAC9F0BF9102DAD4E3569A3208841F38E80BB37F8A0D9D70B77779F6_37; // /__StaticArrayInitTypeSize=12 ::241460699808ED5F8D48C6B09EED448CDAE597EBF52B010901CD6F75A767B047 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___241460699808ED5F8D48C6B09EED448CDAE597EBF52B010901CD6F75A767B047_38; // System.Int64 ::24B7E3A490F64223F93EC177ED5A641984B68F0783A289AC1F2C94D1D92DA684 int64_t ___24B7E3A490F64223F93EC177ED5A641984B68F0783A289AC1F2C94D1D92DA684_39; // /__StaticArrayInitTypeSize=16 ::24CB9F17C8326D8BB8EC908716519DF7F265AE825F0DD13BB04E03A90B07D90E __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 ___24CB9F17C8326D8BB8EC908716519DF7F265AE825F0DD13BB04E03A90B07D90E_40; // /__StaticArrayInitTypeSize=256 ::252A0A8312BC1F5202CB599BCF172BEFA6F2A40195E72E2410AF5D81AC8B69D5 __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___252A0A8312BC1F5202CB599BCF172BEFA6F2A40195E72E2410AF5D81AC8B69D5_41; // /__StaticArrayInitTypeSize=40 ::265DD563A3E754D1DA09E056E784DF1550AD6EFA252EDC9A8B6F2F537C4D98A9 __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F ___265DD563A3E754D1DA09E056E784DF1550AD6EFA252EDC9A8B6F2F537C4D98A9_42; // /__StaticArrayInitTypeSize=72 ::27EB8EA2323F674F4BFE35F3C75FA0609EB3D887842FFDC2B776F7FED82D7EA8 __StaticArrayInitTypeSizeU3D72_t2005207C3F6F7C1227A5084885E3320B238A2489 ___27EB8EA2323F674F4BFE35F3C75FA0609EB3D887842FFDC2B776F7FED82D7EA8_43; // /__StaticArrayInitTypeSize=1024 ::2A1FE1596DB0F5D1893C1AF50592965E1C09B1EE1E35A8A87C181A9EB2F391F5 __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___2A1FE1596DB0F5D1893C1AF50592965E1C09B1EE1E35A8A87C181A9EB2F391F5_44; // /__StaticArrayInitTypeSize=2048 ::2B371DA34C2A942BAF37EBEF498C2EE84813B4AB0266066695C4152B6E3FF082 __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E ___2B371DA34C2A942BAF37EBEF498C2EE84813B4AB0266066695C4152B6E3FF082_45; // /__StaticArrayInitTypeSize=64 ::2C9D6B105EC78E8E02279FB1266932E3468A575B0EB9818985DBE9468B991CCE __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___2C9D6B105EC78E8E02279FB1266932E3468A575B0EB9818985DBE9468B991CCE_46; // /__StaticArrayInitTypeSize=16 ::2DE8C8D0A909D9D152B7752E0C1650FB43AFEBF9F20DF52091B69C394BD9F0FB __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 ___2DE8C8D0A909D9D152B7752E0C1650FB43AFEBF9F20DF52091B69C394BD9F0FB_47; // /__StaticArrayInitTypeSize=64 ::2DEB754CF447D0DE35ACB7F4311F9AAB1D4CFC0638E101CCAA8A0A4948AB3600 __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___2DEB754CF447D0DE35ACB7F4311F9AAB1D4CFC0638E101CCAA8A0A4948AB3600_48; // /__StaticArrayInitTypeSize=68 ::2EE1A8E6F4E2FE0BB69872A9C314399B1B0FDEE75772244F204ABF4D6DEC2F97 __StaticArrayInitTypeSizeU3D68_tE431405C001EFCAA99F9D46276BFEAF7F5AF4E0F ___2EE1A8E6F4E2FE0BB69872A9C314399B1B0FDEE75772244F204ABF4D6DEC2F97_49; // /__StaticArrayInitTypeSize=32 ::2EF83B43314F8CD03190EEE30ECCF048DA37791237F27C62A579F23EACE9FD70 __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F ___2EF83B43314F8CD03190EEE30ECCF048DA37791237F27C62A579F23EACE9FD70_50; // /__StaticArrayInitTypeSize=32 ::2F2C71B5B311BF139FD4B797EF2308F928EFE5092D7E11DC070CF41038A079B9 __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F ___2F2C71B5B311BF139FD4B797EF2308F928EFE5092D7E11DC070CF41038A079B9_51; // /__StaticArrayInitTypeSize=64 ::301841C47353B7791BE25BC1F60F93D0EB2090AB5714FA5CA3939E8DFF75D218 __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___301841C47353B7791BE25BC1F60F93D0EB2090AB5714FA5CA3939E8DFF75D218_52; // /__StaticArrayInitTypeSize=1024 ::304E6CE4B8A999F5B114DD940B655029F8F60AFE4EE0731B111996B6B59BC3A9 __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___304E6CE4B8A999F5B114DD940B655029F8F60AFE4EE0731B111996B6B59BC3A9_53; // /__StaticArrayInitTypeSize=128 ::3106DB6422088B231F12C749BC9CC57B08BBDE65695641C166393B42EFF14871 __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C ___3106DB6422088B231F12C749BC9CC57B08BBDE65695641C166393B42EFF14871_54; // /__StaticArrayInitTypeSize=1024 ::31A50A6B8C571138DD6EA37B040389216B779C1ED712CB7980DD199E3BEBEFEC __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___31A50A6B8C571138DD6EA37B040389216B779C1ED712CB7980DD199E3BEBEFEC_55; // /__StaticArrayInitTypeSize=256 ::325BFEE33A593E28E54E20F8520E5DFEE122F719EF08FFE096A2AD31C4DC316F __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___325BFEE33A593E28E54E20F8520E5DFEE122F719EF08FFE096A2AD31C4DC316F_56; // /__StaticArrayInitTypeSize=48 ::343E404502DABEA303159A8C37BB2A4405B20A9B230D1C3BA9D496F05879019E __StaticArrayInitTypeSizeU3D48_tFD8B246DD801288DF862F996D7F0915222433AD7 ___343E404502DABEA303159A8C37BB2A4405B20A9B230D1C3BA9D496F05879019E_57; // /__StaticArrayInitTypeSize=12 ::356608BFA95B39A5AA624D4852D37A19FCFB1302C897E1A4B7EA5EFD1A20120E __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___356608BFA95B39A5AA624D4852D37A19FCFB1302C897E1A4B7EA5EFD1A20120E_58; // /__StaticArrayInitTypeSize=12 ::36003BEAAFC125A5D50EBAE8C98A6971BE6134DD89E286DD699E012687422A22 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___36003BEAAFC125A5D50EBAE8C98A6971BE6134DD89E286DD699E012687422A22_59; // /__StaticArrayInitTypeSize=511 ::360294D82A77697405846183BBB96E548B586D0710C5E2322E2CEF23E88C4122 __StaticArrayInitTypeSizeU3D511_t740CF3C9FEBB9CC89BA68C0F8EC83A7BB47394C3 ___360294D82A77697405846183BBB96E548B586D0710C5E2322E2CEF23E88C4122_60; // /__StaticArrayInitTypeSize=1152 ::36B8FDA0BFB1D93A07326EE7CAC8EB99FF1AF237D234FFA3210F64D3EB774C38 __StaticArrayInitTypeSizeU3D1152_t2104B5740ABD2FB36896B62E02098A1B196E493F ___36B8FDA0BFB1D93A07326EE7CAC8EB99FF1AF237D234FFA3210F64D3EB774C38_61; // /__StaticArrayInitTypeSize=12 ::3936FEF22F74028ACFB35A545386FE1C4F4A2C8CE55E88B5DF4FF605D474D8B4 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___3936FEF22F74028ACFB35A545386FE1C4F4A2C8CE55E88B5DF4FF605D474D8B4_62; // /__StaticArrayInitTypeSize=24 ::394D174022AB9D27D329C8DE3DADB69831311870F91A3896EFFB406411F7472C __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 ___394D174022AB9D27D329C8DE3DADB69831311870F91A3896EFFB406411F7472C_63; // /__StaticArrayInitTypeSize=40 ::3AF2ACD8D2D27336879BC958CFB6B4271FA89EC7C3EC62B7AD1E0E20B7AF303D __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F ___3AF2ACD8D2D27336879BC958CFB6B4271FA89EC7C3EC62B7AD1E0E20B7AF303D_64; // /__StaticArrayInitTypeSize=28 ::3B520286F14349D61645FDE2088337584857AF213F1E9694D9DA4F5C489E6A0E __StaticArrayInitTypeSizeU3D28_tB9DE54DF41ABC27805509271A10177513906BF30 ___3B520286F14349D61645FDE2088337584857AF213F1E9694D9DA4F5C489E6A0E_65; // /__StaticArrayInitTypeSize=64 ::3B721FB05904288533A0C3F44162AA4631530BCFEBD22C3E57DBC4994E38F83D __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___3B721FB05904288533A0C3F44162AA4631530BCFEBD22C3E57DBC4994E38F83D_66; // /__StaticArrayInitTypeSize=512 ::3BC7BBAE9618E2066112B9F16B3CDBB856ADE0020C732ED2D56FD0D0E38E1FC3 __StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE ___3BC7BBAE9618E2066112B9F16B3CDBB856ADE0020C732ED2D56FD0D0E38E1FC3_67; // /__StaticArrayInitTypeSize=2048 ::3CA024F96B6FA0D283063E7C2B60A83C2B07F26AE1788CDFAEEB231C7725ED92 __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E ___3CA024F96B6FA0D283063E7C2B60A83C2B07F26AE1788CDFAEEB231C7725ED92_68; // /__StaticArrayInitTypeSize=512 ::3E4FB5FE52BF269D6EE955711016291D6D327A4AAC39B2464C53C6BD0D73242A __StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE ___3E4FB5FE52BF269D6EE955711016291D6D327A4AAC39B2464C53C6BD0D73242A_69; // /__StaticArrayInitTypeSize=1024 ::3EAA30E2BB2D4FF7221734E2CFBD2A94F0A3D8EB435634724DBF207AFE0DE24B __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___3EAA30E2BB2D4FF7221734E2CFBD2A94F0A3D8EB435634724DBF207AFE0DE24B_70; // /__StaticArrayInitTypeSize=16 ::3F580014EE7F27F024FC40AE120394FAC1A8E4CD1B40FD0F0089E89856152138 __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 ___3F580014EE7F27F024FC40AE120394FAC1A8E4CD1B40FD0F0089E89856152138_71; // /__StaticArrayInitTypeSize=44 ::405634CB2F08D8E4A65CF85762D7BE4356E6DE1C0C941DA950F3034F3F8C6ED0 __StaticArrayInitTypeSizeU3D44_tB4E85CA0F7D90D00E66285BECB46250AA72356B5 ___405634CB2F08D8E4A65CF85762D7BE4356E6DE1C0C941DA950F3034F3F8C6ED0_72; // /__StaticArrayInitTypeSize=256 ::40866F3E76BC07D89281D2593C42AD252FB2D84E0A91FA3C78CA3C1FCC17643D __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___40866F3E76BC07D89281D2593C42AD252FB2D84E0A91FA3C78CA3C1FCC17643D_73; // /__StaticArrayInitTypeSize=1024 ::427C844BAD080C6008BDA87BD6ACA4F6F342F6FCA9472A6D63C31B69F6F85054 __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___427C844BAD080C6008BDA87BD6ACA4F6F342F6FCA9472A6D63C31B69F6F85054_74; // /__StaticArrayInitTypeSize=256 ::42E57F5A26F7D53A24B69FF9F56FA7550A23B8BAB2F5993357E4C53EA06141E9 __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___42E57F5A26F7D53A24B69FF9F56FA7550A23B8BAB2F5993357E4C53EA06141E9_75; // /__StaticArrayInitTypeSize=128 ::439231575950B2ADCDE8DC0E470192ADA8DDC05EB55836596636563B6403A6B5 __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C ___439231575950B2ADCDE8DC0E470192ADA8DDC05EB55836596636563B6403A6B5_76; // /__StaticArrayInitTypeSize=12 ::43B9A42341477A51FB3329FA943298FB43910D3EDCAB69BFB04D0E68D84C0247 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___43B9A42341477A51FB3329FA943298FB43910D3EDCAB69BFB04D0E68D84C0247_77; // /__StaticArrayInitTypeSize=24 ::43C8B8D4786B6331EFC85B21E235E3E39940C427680D2C6B73ABF19738EF5186 __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 ___43C8B8D4786B6331EFC85B21E235E3E39940C427680D2C6B73ABF19738EF5186_78; // /__StaticArrayInitTypeSize=1024 ::463BE4A1C16EB914C411F194E1F87BEF5A9081C49888860A682E8543D4B35F58 __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___463BE4A1C16EB914C411F194E1F87BEF5A9081C49888860A682E8543D4B35F58_79; // /__StaticArrayInitTypeSize=24 ::4654FB5A717A0EB7C9078754B15F325C2F156519CFF821AAA495495741FF153A __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 ___4654FB5A717A0EB7C9078754B15F325C2F156519CFF821AAA495495741FF153A_80; // /__StaticArrayInitTypeSize=256 ::4867A63842B7AFBF7A120C1310940F29048D0B73EF1747E15AD67A3AA0D9AF9D __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___4867A63842B7AFBF7A120C1310940F29048D0B73EF1747E15AD67A3AA0D9AF9D_81; // /__StaticArrayInitTypeSize=64 ::490FE1E40F08589851422F9DAF5012280352D005653B5D2CE872268A1A743ACF __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___490FE1E40F08589851422F9DAF5012280352D005653B5D2CE872268A1A743ACF_82; // /__StaticArrayInitTypeSize=12 ::4993FAA5B9060FAAFC80E9F6CE26AF291965C0B1E8F5BBDC87C6CE9AEF6FFA24 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___4993FAA5B9060FAAFC80E9F6CE26AF291965C0B1E8F5BBDC87C6CE9AEF6FFA24_83; // /__StaticArrayInitTypeSize=12 ::49D826830B5D920448F74BBBEDB361F17C9DD461E0DC3DED114E6E13E0173981 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___49D826830B5D920448F74BBBEDB361F17C9DD461E0DC3DED114E6E13E0173981_84; // /__StaticArrayInitTypeSize=12 ::49FC72E2BC139CDC89193D013C3CBAD8CB75E78CA254B8466A03D26581D08BE4 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___49FC72E2BC139CDC89193D013C3CBAD8CB75E78CA254B8466A03D26581D08BE4_85; // /__StaticArrayInitTypeSize=32 ::4ADFA71AB9AF20C1C372C92FF8D26609A11DA05E167BBA62C0ABFD18F4C1EAF8 __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F ___4ADFA71AB9AF20C1C372C92FF8D26609A11DA05E167BBA62C0ABFD18F4C1EAF8_86; // /__StaticArrayInitTypeSize=24 ::4D30B965ABF4D17A678F232D7C2491E37B61B203A6E807BB9E09C4BA2614F72D __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 ___4D30B965ABF4D17A678F232D7C2491E37B61B203A6E807BB9E09C4BA2614F72D_87; // /__StaticArrayInitTypeSize=256 ::4D487DD66D80886D292C3C7B64CC41FEBA1E313A26A9D05333B42E895741FF81 __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___4D487DD66D80886D292C3C7B64CC41FEBA1E313A26A9D05333B42E895741FF81_88; // /__StaticArrayInitTypeSize=12 ::4D7CAD3DEBDBD349390304F3A59AD3F66B4A1FB02F88749C4E393FF3A1EDD411 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___4D7CAD3DEBDBD349390304F3A59AD3F66B4A1FB02F88749C4E393FF3A1EDD411_89; // /__StaticArrayInitTypeSize=256 ::4F1B8E1CB953EA2DC9E5B3B1A88872BD0BF97BD1091B00456F43F1DFE4A0C976 __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___4F1B8E1CB953EA2DC9E5B3B1A88872BD0BF97BD1091B00456F43F1DFE4A0C976_90; // /__StaticArrayInitTypeSize=12 ::4FDCD793D71BE141D8E85C48B61B68F00848ACEF69905D47D935786C44D07D92 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___4FDCD793D71BE141D8E85C48B61B68F00848ACEF69905D47D935786C44D07D92_91; // /__StaticArrayInitTypeSize=16 ::507B1EFA9C696556B36957CBA8E6B8517AC8CD457424F04C7EF34363FC3B7F8F __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 ___507B1EFA9C696556B36957CBA8E6B8517AC8CD457424F04C7EF34363FC3B7F8F_92; // /__StaticArrayInitTypeSize=20 ::513BA924C2DC996CAF3DC690D42BEB815316271C0CDAC0812BC0F2C2ED45DEA4 __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 ___513BA924C2DC996CAF3DC690D42BEB815316271C0CDAC0812BC0F2C2ED45DEA4_93; // /__StaticArrayInitTypeSize=12 ::5218271C2AB140CF1F8F18D070924F6EA8F08F5FB59C9E4F05AF36C0740D172A __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___5218271C2AB140CF1F8F18D070924F6EA8F08F5FB59C9E4F05AF36C0740D172A_94; // /__StaticArrayInitTypeSize=2048 ::542A4AD813E0CA853A400A4DC81182DB6803BEC6EA63ED0D54E0E90660DFDC2B __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E ___542A4AD813E0CA853A400A4DC81182DB6803BEC6EA63ED0D54E0E90660DFDC2B_95; // /__StaticArrayInitTypeSize=256 ::55D0BF716B334D123E0088CFB3F8E2FEA17AF5025BB527F95EEB09BA978EA329 __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___55D0BF716B334D123E0088CFB3F8E2FEA17AF5025BB527F95EEB09BA978EA329_96; // /__StaticArrayInitTypeSize=12 ::55D90ED526CE6FF4309EE00834C4060B1A37CB6D5E65BAA01366C72FB2A68CB4 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___55D90ED526CE6FF4309EE00834C4060B1A37CB6D5E65BAA01366C72FB2A68CB4_97; // /__StaticArrayInitTypeSize=1024 ::5686DFA3DBAE1C40758CFEA05B267DAC2FAF6CCDFADBC08A75D81088B777C751 __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___5686DFA3DBAE1C40758CFEA05B267DAC2FAF6CCDFADBC08A75D81088B777C751_98; // /__StaticArrayInitTypeSize=256 ::58693A8E9871A51CE017A5CCB2219B320C7893E49E1761EF867DEB94E0466F4D __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___58693A8E9871A51CE017A5CCB2219B320C7893E49E1761EF867DEB94E0466F4D_99; // /__StaticArrayInitTypeSize=2048 ::586CB2936F35105D4A71FF1186E81528F1980A2E5BB1E2719E0D86809CB1080A __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E ___586CB2936F35105D4A71FF1186E81528F1980A2E5BB1E2719E0D86809CB1080A_100; // /__StaticArrayInitTypeSize=120 ::5961BF1FCF83803CE7775E15E9DB8D21AF741539B85CCFDD643F9E22CC7820D6 __StaticArrayInitTypeSizeU3D120_tD78937C26C99B5FDF514E7F2EB4F8F2367B4C05A ___5961BF1FCF83803CE7775E15E9DB8D21AF741539B85CCFDD643F9E22CC7820D6_101; // /__StaticArrayInitTypeSize=12 ::59B7E757844D3BF9299877BD1C17451611BFBAB493374D6B18D973FDE534151A __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___59B7E757844D3BF9299877BD1C17451611BFBAB493374D6B18D973FDE534151A_102; // /__StaticArrayInitTypeSize=32 ::5A33FCFEC23C49D91BCF58CE2472DC9F3662CD086BD29FC44AF2E14567238A30 __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F ___5A33FCFEC23C49D91BCF58CE2472DC9F3662CD086BD29FC44AF2E14567238A30_103; // /__StaticArrayInitTypeSize=12 ::5B979F69B96A61586A09DD4ED26F20534C629B08732AE32FA34B6F8A0049ACDD __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___5B979F69B96A61586A09DD4ED26F20534C629B08732AE32FA34B6F8A0049ACDD_104; // /__StaticArrayInitTypeSize=40 ::5BBB9265FCB4E834C68440328645B1A187F68D3275881FC46B21564B11326DA5 __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F ___5BBB9265FCB4E834C68440328645B1A187F68D3275881FC46B21564B11326DA5_105; // /__StaticArrayInitTypeSize=1024 ::5D2BCB56850200B2EDECD280A83B6F489E2DE5771E609FABA8A5C4816206CB7A __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___5D2BCB56850200B2EDECD280A83B6F489E2DE5771E609FABA8A5C4816206CB7A_106; // /__StaticArrayInitTypeSize=384 ::5D34088B4ABB1F3FE88DCF84DD5C145EFD5EA01DF1B05BB8FEAD12305B0979B7 __StaticArrayInitTypeSizeU3D384_t46003A58CA4B346F0AB7AB5EE6A64AA08241F97E ___5D34088B4ABB1F3FE88DCF84DD5C145EFD5EA01DF1B05BB8FEAD12305B0979B7_107; // /__StaticArrayInitTypeSize=124 ::5D6878AD6E68B2CCB04A7CD7942BE07C15F947CCA8824203021DD465D90712AD __StaticArrayInitTypeSizeU3D124_t4DC490DCE9056B4FDAA27442CBBA7F0F499B0451 ___5D6878AD6E68B2CCB04A7CD7942BE07C15F947CCA8824203021DD465D90712AD_108; // /__StaticArrayInitTypeSize=36 ::5DCC8698D4E5400BC54B6A6E36FB1F5E060B2CE6A676F4FC474015F9A0FC7CB0 __StaticArrayInitTypeSizeU3D36_t5A0F5FAC8609C11AC407745154F17247010BD4A1 ___5DCC8698D4E5400BC54B6A6E36FB1F5E060B2CE6A676F4FC474015F9A0FC7CB0_109; // /__StaticArrayInitTypeSize=32 ::5DF5DA3512C124C2BB3C3676FFEDA4E6CC5E902C2A6027D37EB4B5AB64ED4382 __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F ___5DF5DA3512C124C2BB3C3676FFEDA4E6CC5E902C2A6027D37EB4B5AB64ED4382_110; // /__StaticArrayInitTypeSize=28 ::5F2BD6104C620DE24A78538B659D1218F81A8DC50ED6645B5A040194E0CDC663 __StaticArrayInitTypeSizeU3D28_tB9DE54DF41ABC27805509271A10177513906BF30 ___5F2BD6104C620DE24A78538B659D1218F81A8DC50ED6645B5A040194E0CDC663_111; // /__StaticArrayInitTypeSize=124 ::61358F81002F15B87F2746D4CD7FE28FD2CB45B8F0840B807B18C5A23F791CB1 __StaticArrayInitTypeSizeU3D124_t4DC490DCE9056B4FDAA27442CBBA7F0F499B0451 ___61358F81002F15B87F2746D4CD7FE28FD2CB45B8F0840B807B18C5A23F791CB1_112; // /__StaticArrayInitTypeSize=48 ::6164463B7C304A53288FDCF4DD2136E0E9A441D9930215FB691E3D2F692C3993 __StaticArrayInitTypeSizeU3D48_tFD8B246DD801288DF862F996D7F0915222433AD7 ___6164463B7C304A53288FDCF4DD2136E0E9A441D9930215FB691E3D2F692C3993_113; // /__StaticArrayInitTypeSize=1024 ::624B1BC8BE6B6F8CF39572731AD0E5BDF2AAB137D0AB4A0F473B3D00666D766B __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___624B1BC8BE6B6F8CF39572731AD0E5BDF2AAB137D0AB4A0F473B3D00666D766B_114; // /__StaticArrayInitTypeSize=64 ::62A191EC74B0F281659DD81132751B7656F065A2AD5A8E892CAE1A8E4DBFD0B5 __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___62A191EC74B0F281659DD81132751B7656F065A2AD5A8E892CAE1A8E4DBFD0B5_115; // /__StaticArrayInitTypeSize=64 ::663A2D6435FFB6C16D9382D8E22490E109514E59C03574E825F6B491AD8C8AAC __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___663A2D6435FFB6C16D9382D8E22490E109514E59C03574E825F6B491AD8C8AAC_116; // /__StaticArrayInitTypeSize=48 ::6708B572BDBE5D5E79701DBB9744AF74B50FED7608218F2D7BF1B5D87E5A53ED __StaticArrayInitTypeSizeU3D48_tFD8B246DD801288DF862F996D7F0915222433AD7 ___6708B572BDBE5D5E79701DBB9744AF74B50FED7608218F2D7BF1B5D87E5A53ED_117; // /__StaticArrayInitTypeSize=12 ::684F74091FEFCDCDE9B282E317592631CA48B75F46340A11B95A474700E656D4 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___684F74091FEFCDCDE9B282E317592631CA48B75F46340A11B95A474700E656D4_118; // /__StaticArrayInitTypeSize=32 ::6965AC9D48CA477E9A17658D33A217051648138AD7024514DE014D8001B533C3 __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F ___6965AC9D48CA477E9A17658D33A217051648138AD7024514DE014D8001B533C3_119; // /__StaticArrayInitTypeSize=40 ::6A5953C1A0D67EA77DC8A5D34D0055B3D6A7A3C4CA3F6FE599471C40B9B017FC __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F ___6A5953C1A0D67EA77DC8A5D34D0055B3D6A7A3C4CA3F6FE599471C40B9B017FC_120; // /__StaticArrayInitTypeSize=64 ::6A5EAF956411330E0B28CAD097D9698CBF4098D268AD1C0E04FE294F0607E53D __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___6A5EAF956411330E0B28CAD097D9698CBF4098D268AD1C0E04FE294F0607E53D_121; // /__StaticArrayInitTypeSize=24 ::6C99A25F0D00AE5BC45EE7F62CFC963F5DFC8FE4F7CE82ACEB0B5A1CDB51E3AB __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 ___6C99A25F0D00AE5BC45EE7F62CFC963F5DFC8FE4F7CE82ACEB0B5A1CDB51E3AB_122; // /__StaticArrayInitTypeSize=12 ::6CB004567F6DA8572C921962EDECA8ABB063258E4B378E85E52017698A655056 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___6CB004567F6DA8572C921962EDECA8ABB063258E4B378E85E52017698A655056_123; // /__StaticArrayInitTypeSize=64 ::6D4410134564FFF8B73800035CA093523750DF325139D004701C67D97488B8D5 __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___6D4410134564FFF8B73800035CA093523750DF325139D004701C67D97488B8D5_124; // /__StaticArrayInitTypeSize=16 ::6DDD174356763393334AE30B2B3860AEBC30900BEA96E515EF3174C1DBF9E395 __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 ___6DDD174356763393334AE30B2B3860AEBC30900BEA96E515EF3174C1DBF9E395_125; // /__StaticArrayInitTypeSize=28 ::6F055E07140AF36F1C17E348B39AB7ACB0647B788E869F4236E285C89C2C89EF __StaticArrayInitTypeSizeU3D28_tB9DE54DF41ABC27805509271A10177513906BF30 ___6F055E07140AF36F1C17E348B39AB7ACB0647B788E869F4236E285C89C2C89EF_126; // /__StaticArrayInitTypeSize=12 ::7017794F4FA285E1AA4C6FF9994A3DC0EDC472CB13D08BCA7B5CC287C51E0E3E __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___7017794F4FA285E1AA4C6FF9994A3DC0EDC472CB13D08BCA7B5CC287C51E0E3E_127; // /__StaticArrayInitTypeSize=16 ::712618256BB5287925AAF70FA8EA2EBFFB72DF72B5D29A339CC9B8DB464EFC14 __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 ___712618256BB5287925AAF70FA8EA2EBFFB72DF72B5D29A339CC9B8DB464EFC14_128; // /__StaticArrayInitTypeSize=256 ::715F5EB09E6B0F8E87AD50BDAB729CF129E723B95990CE21DF233461DC29304E __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___715F5EB09E6B0F8E87AD50BDAB729CF129E723B95990CE21DF233461DC29304E_129; // System.Int32 ::72B8B8D3A6D4A8C2F9364B2F944B36201C7D8A2B43DBF558D1A09883E969D74D int32_t ___72B8B8D3A6D4A8C2F9364B2F944B36201C7D8A2B43DBF558D1A09883E969D74D_130; // /__StaticArrayInitTypeSize=256 ::74EF7306E7452D6859B6463CE496B8DF30925F69E1B2969E1F3F34BBC9C6AF04 __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___74EF7306E7452D6859B6463CE496B8DF30925F69E1B2969E1F3F34BBC9C6AF04_131; // /__StaticArrayInitTypeSize=64 ::7543B37FA53FDE2C84F07FD39F368555966AA1C0EB2F2FD26B294D79966E290E __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___7543B37FA53FDE2C84F07FD39F368555966AA1C0EB2F2FD26B294D79966E290E_132; // /__StaticArrayInitTypeSize=12 ::76387D5ADFE12720EE7A21E3C30296DE8356BE159BD422D9900C8146F914CADE __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___76387D5ADFE12720EE7A21E3C30296DE8356BE159BD422D9900C8146F914CADE_133; // /__StaticArrayInitTypeSize=12 ::7650DB5F7D0AD39E75A5BB512A98F9763E302328E120F06230159AC1AD1C6B5D __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___7650DB5F7D0AD39E75A5BB512A98F9763E302328E120F06230159AC1AD1C6B5D_134; // /__StaticArrayInitTypeSize=12 ::7854BA783A61F0B4D74198AF22A2D285EF70C526BDE4BE78FEDF180436FB621D __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___7854BA783A61F0B4D74198AF22A2D285EF70C526BDE4BE78FEDF180436FB621D_135; // /__StaticArrayInitTypeSize=12 ::78A70FA0E21C85F13BDFA3D7B70E095EC5B61E51F34D2C1D531142B0634B30E5 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___78A70FA0E21C85F13BDFA3D7B70E095EC5B61E51F34D2C1D531142B0634B30E5_136; // /__StaticArrayInitTypeSize=24 ::78F6DA256B470C65DC4A98A23DC5F1FBF7ED3CCDE0E93EA0D97363328810055D __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 ___78F6DA256B470C65DC4A98A23DC5F1FBF7ED3CCDE0E93EA0D97363328810055D_137; // /__StaticArrayInitTypeSize=512 ::7919EF601386C08FC5EFB981B4A1E478D8413596173FC159B15739E87EE1BA50 __StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE ___7919EF601386C08FC5EFB981B4A1E478D8413596173FC159B15739E87EE1BA50_138; // /__StaticArrayInitTypeSize=68 ::79478AF14CB42EC0951669D5D1D864E43C211CBA631D8FFE7F6CD79FF60756C6 __StaticArrayInitTypeSizeU3D68_tE431405C001EFCAA99F9D46276BFEAF7F5AF4E0F ___79478AF14CB42EC0951669D5D1D864E43C211CBA631D8FFE7F6CD79FF60756C6_139; // /__StaticArrayInitTypeSize=12 ::7A36979350F6A229EB7206BEE580F51563EE52B71CD2132680B0AC33B3C31E27 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___7A36979350F6A229EB7206BEE580F51563EE52B71CD2132680B0AC33B3C31E27_140; // /__StaticArrayInitTypeSize=16 ::7BDD3F08BE488F1D6DCBF05D01C69BA80DF49A9E9E415F0205D575B4B5F32A34 __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 ___7BDD3F08BE488F1D6DCBF05D01C69BA80DF49A9E9E415F0205D575B4B5F32A34_141; // /__StaticArrayInitTypeSize=64 ::7C8975E1E60A5C8337F28EDF8C33C3B180360B7279644A9BC1AF3C51E6220BF5 __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___7C8975E1E60A5C8337F28EDF8C33C3B180360B7279644A9BC1AF3C51E6220BF5_142; // /__StaticArrayInitTypeSize=30 ::7C97C06F982D2F598F71BCF85A27244685EC039BC414EB391EC3EC449A619F37 __StaticArrayInitTypeSizeU3D30_tD08FD0996F882530B072EF52BF88556C13AF0306 ___7C97C06F982D2F598F71BCF85A27244685EC039BC414EB391EC3EC449A619F37_143; // /__StaticArrayInitTypeSize=116 ::7DDF88204E7E265240211841F0AB290A5E77EE4F9223EB2E39F9B89C30C41B9D __StaticArrayInitTypeSizeU3D116_t9020B92E8453BBAFE2519A469C0893F630E8D2C9 ___7DDF88204E7E265240211841F0AB290A5E77EE4F9223EB2E39F9B89C30C41B9D_144; // /__StaticArrayInitTypeSize=64 ::7F034CF9D8AC0293D0C9535AF26B5452C6E916CE62FBBF765077BD958E69B7B9 __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___7F034CF9D8AC0293D0C9535AF26B5452C6E916CE62FBBF765077BD958E69B7B9_145; // System.Int32 ::7FBDBBC598B2DE18BB5191FF9D66727F552A54412C9314CA5782824A150B3CD3 int32_t ___7FBDBBC598B2DE18BB5191FF9D66727F552A54412C9314CA5782824A150B3CD3_146; // /__StaticArrayInitTypeSize=12 ::7FCA397EF25DB53B2C58A05F9BBFA4E8E0685FDBC8AAF39536123447056895C0 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___7FCA397EF25DB53B2C58A05F9BBFA4E8E0685FDBC8AAF39536123447056895C0_147; // /__StaticArrayInitTypeSize=20 ::81C0F0D213E5735AED08C328CC9CC2E61B3AB83C9BF016A666B4144F8BF64457 __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 ___81C0F0D213E5735AED08C328CC9CC2E61B3AB83C9BF016A666B4144F8BF64457_148; // /__StaticArrayInitTypeSize=512 ::8271B98A74E2ED3AC4E690289279C25841A5617BE3D992BED6CB7486F95060D9 __StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE ___8271B98A74E2ED3AC4E690289279C25841A5617BE3D992BED6CB7486F95060D9_149; // /__StaticArrayInitTypeSize=32 ::83E8FA01EECEC207D12DA40AEFC466B15F6412FFE2C30DBEF0C65B9B7FF01672 __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F ___83E8FA01EECEC207D12DA40AEFC466B15F6412FFE2C30DBEF0C65B9B7FF01672_150; // /__StaticArrayInitTypeSize=512 ::84EBACB335F7FB2D4C6AF94256B2DD565EFFE552C9A1CB725C5B5C338914412D __StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE ___84EBACB335F7FB2D4C6AF94256B2DD565EFFE552C9A1CB725C5B5C338914412D_151; // /__StaticArrayInitTypeSize=1024 ::85332E00AFFFDBE44E7421AA4236274F9495AC6C2204C59B9ADFC872D4215E12 __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___85332E00AFFFDBE44E7421AA4236274F9495AC6C2204C59B9ADFC872D4215E12_152; // /__StaticArrayInitTypeSize=12 ::8688D249E9D047B4FC2FB89CE05AFE9EC89252FFCCDD969DE6EEF260DD7FFB21 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___8688D249E9D047B4FC2FB89CE05AFE9EC89252FFCCDD969DE6EEF260DD7FFB21_153; // /__StaticArrayInitTypeSize=48 ::86ECB4ABD964707BAF5ABF589057FBB2ED63DB1D7F0115A7DA45921043B6A96F __StaticArrayInitTypeSizeU3D48_tFD8B246DD801288DF862F996D7F0915222433AD7 ___86ECB4ABD964707BAF5ABF589057FBB2ED63DB1D7F0115A7DA45921043B6A96F_154; // /__StaticArrayInitTypeSize=16 ::874805F2B76BD7887959F02FE0B2A8C07C1E1D41F41AAD4D2AA1D0AB21A1780F __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 ___874805F2B76BD7887959F02FE0B2A8C07C1E1D41F41AAD4D2AA1D0AB21A1780F_155; // /__StaticArrayInitTypeSize=12 ::88362588448C0D67AC6A928BB97FBFA93C92ED574E09AEAED174B8EFFB876F86 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___88362588448C0D67AC6A928BB97FBFA93C92ED574E09AEAED174B8EFFB876F86_156; // /__StaticArrayInitTypeSize=128 ::896FB86C1BE3DBE6C3CC4FBE122562D75A4EBC6616D3393CF1AFE12377908B95 __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C ___896FB86C1BE3DBE6C3CC4FBE122562D75A4EBC6616D3393CF1AFE12377908B95_157; // /__StaticArrayInitTypeSize=6144 ::8AE83CF30C3CEAC5F4B9F025200D65EFAEC851DE0098817DB69F0E547407C095 __StaticArrayInitTypeSizeU3D6144_tC7D0B4030CC1B8F5E770AE916BB72D42FCBE5DBD ___8AE83CF30C3CEAC5F4B9F025200D65EFAEC851DE0098817DB69F0E547407C095_158; // /__StaticArrayInitTypeSize=1024 ::8B3E4AD98E68D077C6A580E0CE5B8BEA476668CC2303A9845D8EC347A4035FB8 __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___8B3E4AD98E68D077C6A580E0CE5B8BEA476668CC2303A9845D8EC347A4035FB8_159; // /__StaticArrayInitTypeSize=12 ::8CB850AC259DD215242199AD8F1B0BC74C182B564124B84C0D56BDB7A8FF7286 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___8CB850AC259DD215242199AD8F1B0BC74C182B564124B84C0D56BDB7A8FF7286_160; // /__StaticArrayInitTypeSize=256 ::8CC38DAE7E1F854FB74E0A2910E4781DABC17BFB28C0E2759599F647024FB680 __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___8CC38DAE7E1F854FB74E0A2910E4781DABC17BFB28C0E2759599F647024FB680_161; // System.Int32 ::8DE58994BA1BCCA412DBAD0B7F71CC1C77CFA1303F3224FA5371B5BE8A27AB5E int32_t ___8DE58994BA1BCCA412DBAD0B7F71CC1C77CFA1303F3224FA5371B5BE8A27AB5E_162; // /__StaticArrayInitTypeSize=12 ::8E508E3CF36A04D2980525060B4220A361C941343EDDD8B43A28CF8001D0CA40 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___8E508E3CF36A04D2980525060B4220A361C941343EDDD8B43A28CF8001D0CA40_163; // /__StaticArrayInitTypeSize=76 ::8FC498A953A183E1FE81A183AE59047435BB9B33D657C625FAB03D38BE19F92E __StaticArrayInitTypeSizeU3D76_t6572A863E37652A3D016260FBD2285807BDD3823 ___8FC498A953A183E1FE81A183AE59047435BB9B33D657C625FAB03D38BE19F92E_164; // /__StaticArrayInitTypeSize=1024 ::910514B7D874CD3C180F8F1F94486233CCF5BB70A7C24F815644F5CD5A02F3AB __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___910514B7D874CD3C180F8F1F94486233CCF5BB70A7C24F815644F5CD5A02F3AB_165; // /__StaticArrayInitTypeSize=256 ::93631B0726F6FE6629DAA743EE51B49F4477ED07391B68EEEA0672A4A90018AA __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___93631B0726F6FE6629DAA743EE51B49F4477ED07391B68EEEA0672A4A90018AA_166; // /__StaticArrayInitTypeSize=120 ::9476220840D3CE82203B4A722E278773B1DA458A22F49FCB9FC45B851DF7D503 __StaticArrayInitTypeSizeU3D120_tD78937C26C99B5FDF514E7F2EB4F8F2367B4C05A ___9476220840D3CE82203B4A722E278773B1DA458A22F49FCB9FC45B851DF7D503_167; // /__StaticArrayInitTypeSize=12 ::960F02F165C0EF9AC4C160FC98BE9273C245853BA32663BB1B6F1588077F95F4 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___960F02F165C0EF9AC4C160FC98BE9273C245853BA32663BB1B6F1588077F95F4_168; // /__StaticArrayInitTypeSize=20 ::9642574237E8981F70B1583D403A33EB8B583E5EA5DD61B9468AD47874A90296 __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 ___9642574237E8981F70B1583D403A33EB8B583E5EA5DD61B9468AD47874A90296_169; // /__StaticArrayInitTypeSize=40 ::96883F56416393F42C830BCD6033BE079690C482BC73119EBBE5DC98834BACBF __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F ___96883F56416393F42C830BCD6033BE079690C482BC73119EBBE5DC98834BACBF_170; // /__StaticArrayInitTypeSize=20 ::96CC5BD90B96CA8BCD838F7ABD590F9979E8C636016554F8431A696204812853 __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 ___96CC5BD90B96CA8BCD838F7ABD590F9979E8C636016554F8431A696204812853_171; // /__StaticArrayInitTypeSize=64 ::971488BE36A194DB27CE385237DEA12A31333F2FBD2BB3B60701BE542B27AAE2 __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___971488BE36A194DB27CE385237DEA12A31333F2FBD2BB3B60701BE542B27AAE2_172; // /__StaticArrayInitTypeSize=12 ::97467041703B2DF5571DCACC6A702C0C6DE68CE9A9470AA240F57D69C09AF7D3 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___97467041703B2DF5571DCACC6A702C0C6DE68CE9A9470AA240F57D69C09AF7D3_173; // /__StaticArrayInitTypeSize=1024 ::97C49ABA628782D4FE08840F38539E305C52D0A9C0E0882E77C23DECAB6BDBA6 __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___97C49ABA628782D4FE08840F38539E305C52D0A9C0E0882E77C23DECAB6BDBA6_174; // /__StaticArrayInitTypeSize=40 ::97CAAC7D5BE7722352C1AB556BFE01D3F3CCA0F50B5A648195D6415006620C8F __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F ___97CAAC7D5BE7722352C1AB556BFE01D3F3CCA0F50B5A648195D6415006620C8F_175; // /__StaticArrayInitTypeSize=256 ::9829726FEA4FBE8836ADA2143950510D3C214E70A13B9BF48009D97CD8485670 __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___9829726FEA4FBE8836ADA2143950510D3C214E70A13B9BF48009D97CD8485670_176; // /__StaticArrayInitTypeSize=1024 ::99010FBF800B50867080A66CB97A60E8D7B61251655C9E945DC0505EEB70AC95 __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___99010FBF800B50867080A66CB97A60E8D7B61251655C9E945DC0505EEB70AC95_177; // /__StaticArrayInitTypeSize=256 ::99FD541BFD4CF8DD3C18069CA1D5F4B622333DDBA412F00D5A6B642626034EDF __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___99FD541BFD4CF8DD3C18069CA1D5F4B622333DDBA412F00D5A6B642626034EDF_178; // /__StaticArrayInitTypeSize=512 ::9AC0C32A73444A448170AE1EFE7F69A0D3A7F6E1335FA0E112D9F96EB7EE3CC7 __StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE ___9AC0C32A73444A448170AE1EFE7F69A0D3A7F6E1335FA0E112D9F96EB7EE3CC7_179; // /__StaticArrayInitTypeSize=32 ::9B29692916637801E748ABDF9CE9D3A8AED3F375C84C7346C11C2BB150BD720B __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F ___9B29692916637801E748ABDF9CE9D3A8AED3F375C84C7346C11C2BB150BD720B_180; // /__StaticArrayInitTypeSize=1024 ::9C28EF1A620E00413BBFC7E6ED40092033A3C250583DD7FAD355D2A306A7427B __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___9C28EF1A620E00413BBFC7E6ED40092033A3C250583DD7FAD355D2A306A7427B_181; // /__StaticArrayInitTypeSize=32 ::9CB8BF99E695FF4E0E3E01770F3E96060FC79466F1325C60B375349C591ADF02 __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F ___9CB8BF99E695FF4E0E3E01770F3E96060FC79466F1325C60B375349C591ADF02_182; // /__StaticArrayInitTypeSize=48 ::9CCC11CED0AD12118416B3C3C73453E6480B671C0EF2F753B6900DA2060F5B44 __StaticArrayInitTypeSizeU3D48_tFD8B246DD801288DF862F996D7F0915222433AD7 ___9CCC11CED0AD12118416B3C3C73453E6480B671C0EF2F753B6900DA2060F5B44_183; // /__StaticArrayInitTypeSize=12 ::9CFF23020B5A7E24467474237978D4CB52A601FBC0B3E504B9ABC64C062A499C __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___9CFF23020B5A7E24467474237978D4CB52A601FBC0B3E504B9ABC64C062A499C_184; // /__StaticArrayInitTypeSize=256 ::9DA5D1DADE776A467199AC96E9412AD7A5CA1E62BCDAC527079912B1185A5C63 __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___9DA5D1DADE776A467199AC96E9412AD7A5CA1E62BCDAC527079912B1185A5C63_185; // /__StaticArrayInitTypeSize=12 ::9DA6DC3BEB35D0E411A5D1E407E011542CC032FD6BD76CFFEB5EF327331840FD __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___9DA6DC3BEB35D0E411A5D1E407E011542CC032FD6BD76CFFEB5EF327331840FD_186; // /__StaticArrayInitTypeSize=28 ::9DC840E2F2B5B0E9B3B12C6585295C61986721911DA7AE18C9B18EFF2F01ABE5 __StaticArrayInitTypeSizeU3D28_tB9DE54DF41ABC27805509271A10177513906BF30 ___9DC840E2F2B5B0E9B3B12C6585295C61986721911DA7AE18C9B18EFF2F01ABE5_187; // /__StaticArrayInitTypeSize=12 ::9DDE3528C5CCCCD4D7C730403ABE54766C6645E371ED7ACB70584C320D87F670 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___9DDE3528C5CCCCD4D7C730403ABE54766C6645E371ED7ACB70584C320D87F670_188; // /__StaticArrayInitTypeSize=32 ::9EF35AA995725D55C515A807B1D2BE31B36269235146245330CFB2683FA9A840 __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F ___9EF35AA995725D55C515A807B1D2BE31B36269235146245330CFB2683FA9A840_189; // /__StaticArrayInitTypeSize=16 ::9F9F5111F7B27A781F1F1DDDE5EBC2DD2B796BFC7365C9C28B548E564176929F __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 ___9F9F5111F7B27A781F1F1DDDE5EBC2DD2B796BFC7365C9C28B548E564176929F_190; // /__StaticArrayInitTypeSize=32 ::A08110AAECF4B88CA5A7F070B68E448ED895A5DE752B84C57651DA54D9BB5814 __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F ___A08110AAECF4B88CA5A7F070B68E448ED895A5DE752B84C57651DA54D9BB5814_191; // /__StaticArrayInitTypeSize=64 ::A1486177999A77F2FD76EAB02D2517803BFF5B0C5A01CFB95B3F1DA7B7D6DCE8 __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___A1486177999A77F2FD76EAB02D2517803BFF5B0C5A01CFB95B3F1DA7B7D6DCE8_192; // /__StaticArrayInitTypeSize=64 ::A39EF033189E647DDABF6324B79FCD143D3FD7DFF7B247086B02EC33B9E3B15E __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___A39EF033189E647DDABF6324B79FCD143D3FD7DFF7B247086B02EC33B9E3B15E_193; // /__StaticArrayInitTypeSize=12 ::A4241EDCB474331DF94C96B4F24A3A8773452488FD0458F8C0C30F7C24B89E07 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___A4241EDCB474331DF94C96B4F24A3A8773452488FD0458F8C0C30F7C24B89E07_194; // /__StaticArrayInitTypeSize=38 ::A45AA8042E89D23F821D2E22C9EBAFCEC4D3B1291072EA6A49D9D8A490839689 __StaticArrayInitTypeSizeU3D38_tA06FFB58ABD95EAC48139C4ABFED36B1C69D0B92 ___A45AA8042E89D23F821D2E22C9EBAFCEC4D3B1291072EA6A49D9D8A490839689_195; // /__StaticArrayInitTypeSize=128 ::A589B8F1C215FA773BA2724EB825E8B2D1792FB955349574454E18C63537F2A6 __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C ___A589B8F1C215FA773BA2724EB825E8B2D1792FB955349574454E18C63537F2A6_196; // /__StaticArrayInitTypeSize=64 ::A5A95A17B27BD47489B7BEB4A8AA145D08C838C183CD5A77A1A5EFD96AA3AB99 __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___A5A95A17B27BD47489B7BEB4A8AA145D08C838C183CD5A77A1A5EFD96AA3AB99_197; // /__StaticArrayInitTypeSize=12 ::A719D1E9DB9C1628AF05DD49B4AA5D095CF0AD06D01C396B1777588A04D9D13E __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___A719D1E9DB9C1628AF05DD49B4AA5D095CF0AD06D01C396B1777588A04D9D13E_198; // /__StaticArrayInitTypeSize=16 ::A80010A555E14F5B5B3D967E0F1621742AC2048F40EBF73EB76AD8991448EE21 __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 ___A80010A555E14F5B5B3D967E0F1621742AC2048F40EBF73EB76AD8991448EE21_199; // /__StaticArrayInitTypeSize=12 ::A935391692FCA9A4CF6CE823B9DBED3DB708352BB4ACEDDA9EADCA78ADD23DB7 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___A935391692FCA9A4CF6CE823B9DBED3DB708352BB4ACEDDA9EADCA78ADD23DB7_200; // System.Int32 ::A9DD1527A5845A7B2E82F3427251AD622D570D0B8CDA4A0AF9644EB34E69B2FC int32_t ___A9DD1527A5845A7B2E82F3427251AD622D570D0B8CDA4A0AF9644EB34E69B2FC_201; // /__StaticArrayInitTypeSize=1024 ::AA5D3053E53FEC67956EC1D2AA6F57CC52342FFEA91E9B7BEAF9ED8E6FCEEC23 __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___AA5D3053E53FEC67956EC1D2AA6F57CC52342FFEA91E9B7BEAF9ED8E6FCEEC23_202; // /__StaticArrayInitTypeSize=56 ::AB3F6EE9927AC1C89E7F3D250F8DAC9A070249930D4A758B98F4D5B9A8E202B3 __StaticArrayInitTypeSizeU3D56_tEBF9CCD8C2A1E8B12AE6EDE1B31598793DD01186 ___AB3F6EE9927AC1C89E7F3D250F8DAC9A070249930D4A758B98F4D5B9A8E202B3_203; // /__StaticArrayInitTypeSize=1024 ::AB60EEBC1B8BF85AD5AF219745EEA4317E0C780D22675F7A33A0929A34D17DE5 __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___AB60EEBC1B8BF85AD5AF219745EEA4317E0C780D22675F7A33A0929A34D17DE5_204; // /__StaticArrayInitTypeSize=2048 ::AC7FC16C704375F0F1DB433E70C6C2B90B1D797B17806DD74E7664CAD8BFA778 __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E ___AC7FC16C704375F0F1DB433E70C6C2B90B1D797B17806DD74E7664CAD8BFA778_205; // /__StaticArrayInitTypeSize=12 ::AD220A499D7A196B0FE1E8BCDAA020369A8BA1C4CF21B15A3E21935ED7B09D54 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___AD220A499D7A196B0FE1E8BCDAA020369A8BA1C4CF21B15A3E21935ED7B09D54_206; // /__StaticArrayInitTypeSize=24 ::ADA8FCF87AF641D309489525EC896153F79D2AFEA9622C0BDCEDB7F8EAADD77F __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 ___ADA8FCF87AF641D309489525EC896153F79D2AFEA9622C0BDCEDB7F8EAADD77F_207; // /__StaticArrayInitTypeSize=32 ::AF0312129020B258B5B582D3F8EA8A3DAB35467AE93C8C6DBE5D6681CCD7D489 __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F ___AF0312129020B258B5B582D3F8EA8A3DAB35467AE93C8C6DBE5D6681CCD7D489_208; // /__StaticArrayInitTypeSize=40 ::B09C22565E577648AD57A0C5D1F44C38D4C01E2BF7727269A1E20A3717CC77D0 __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F ___B09C22565E577648AD57A0C5D1F44C38D4C01E2BF7727269A1E20A3717CC77D0_209; // /__StaticArrayInitTypeSize=12 ::B17AF625BB8EA7C85766DBFB60A73BAE2A82560C68B4F03D08B576CD43E911DA __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___B17AF625BB8EA7C85766DBFB60A73BAE2A82560C68B4F03D08B576CD43E911DA_210; // /__StaticArrayInitTypeSize=16 ::B1FFCD775449513A059F2F3A2DF44C39E6542C6474D6BAE3DC3FA1BC256255F0 __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 ___B1FFCD775449513A059F2F3A2DF44C39E6542C6474D6BAE3DC3FA1BC256255F0_211; // /__StaticArrayInitTypeSize=120 ::B23D510F520CB4BA8AFA847F8A40E757C40CB6A55B237EFA1AC6D3984911B114 __StaticArrayInitTypeSizeU3D120_tD78937C26C99B5FDF514E7F2EB4F8F2367B4C05A ___B23D510F520CB4BA8AFA847F8A40E757C40CB6A55B237EFA1AC6D3984911B114_212; // /__StaticArrayInitTypeSize=12 ::B257E85A5D3CAB5E738D5A0FD1A7AE96624BFE92CB7915726CBBE1518C3225CF __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___B257E85A5D3CAB5E738D5A0FD1A7AE96624BFE92CB7915726CBBE1518C3225CF_213; // /__StaticArrayInitTypeSize=12 ::B2A10F44FFEE5755DDFA6587F62D7F83F24AF24429D3ACA46E56F3F295251DEB __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___B2A10F44FFEE5755DDFA6587F62D7F83F24AF24429D3ACA46E56F3F295251DEB_214; // /__StaticArrayInitTypeSize=64 ::B3985439AEF8A4DF51A3369D7C0211EEF12CB0E510F6630E110C6DCC10B11A8E __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___B3985439AEF8A4DF51A3369D7C0211EEF12CB0E510F6630E110C6DCC10B11A8E_215; // /__StaticArrayInitTypeSize=12 ::B48C3FCBDCCF3473EF494DC9D3E37B24CF9202AB511EEEB8FCBB48B626340059 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___B48C3FCBDCCF3473EF494DC9D3E37B24CF9202AB511EEEB8FCBB48B626340059_216; // /__StaticArrayInitTypeSize=24 ::B57A705E01AAAEA098AD619DAA1A7220B6AB16C81F633CD5F40116160334CD05 __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 ___B57A705E01AAAEA098AD619DAA1A7220B6AB16C81F633CD5F40116160334CD05_217; // /__StaticArrayInitTypeSize=20 ::B6338EE68F3FD438E03D596B6D76554714958953358DF7320F5073C3CB779758 __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 ___B6338EE68F3FD438E03D596B6D76554714958953358DF7320F5073C3CB779758_218; // /__StaticArrayInitTypeSize=256 ::B67F32BB12BAA41BEAF505F53EECD4F1409EF3E782F8CD077B511553999CE297 __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___B67F32BB12BAA41BEAF505F53EECD4F1409EF3E782F8CD077B511553999CE297_219; // /__StaticArrayInitTypeSize=12 ::B68ACFAD2A3D93FE2B8963E29978E6D3FADFFF5E7FE6C13590E8888CCA7AD7DD __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___B68ACFAD2A3D93FE2B8963E29978E6D3FADFFF5E7FE6C13590E8888CCA7AD7DD_220; // /__StaticArrayInitTypeSize=36 ::B698262446F5CFFF6CD492B8DBB1298BC61F0135EEE69366BD94E81ADE1D5C5A __StaticArrayInitTypeSizeU3D36_t5A0F5FAC8609C11AC407745154F17247010BD4A1 ___B698262446F5CFFF6CD492B8DBB1298BC61F0135EEE69366BD94E81ADE1D5C5A_221; // /__StaticArrayInitTypeSize=36 ::B6FF5DB8C0FA699CD97E8EDF68219F0D1D9E509B4911710791D74AD7DF2DA1AD __StaticArrayInitTypeSizeU3D36_t5A0F5FAC8609C11AC407745154F17247010BD4A1 ___B6FF5DB8C0FA699CD97E8EDF68219F0D1D9E509B4911710791D74AD7DF2DA1AD_222; // /__StaticArrayInitTypeSize=16 ::B77E3D4019880A0C0F03E4214418983FD00C0107BB2632899FE6C3230F97B82C __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 ___B77E3D4019880A0C0F03E4214418983FD00C0107BB2632899FE6C3230F97B82C_223; // /__StaticArrayInitTypeSize=12 ::B7A918F6F138CA8137025633559198B529D28CCEC5A51B005376CC69A5B83D85 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___B7A918F6F138CA8137025633559198B529D28CCEC5A51B005376CC69A5B83D85_224; // System.Int32 ::B8A899AEBE8BCC739D363C17DD8CA885653263A59843BF7B7C85DE4DB10A9C92 int32_t ___B8A899AEBE8BCC739D363C17DD8CA885653263A59843BF7B7C85DE4DB10A9C92_225; // /__StaticArrayInitTypeSize=64 ::B93B37392B6BF36325C2B8E6047E7EF31B87C67E59B16D30A60CAF2E18D9C73C __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___B93B37392B6BF36325C2B8E6047E7EF31B87C67E59B16D30A60CAF2E18D9C73C_226; // /__StaticArrayInitTypeSize=256 ::B9D4AF390AFC6A0F149B843D651CFEBC1C4EC496A0263B72207836F9C525E1C4 __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___B9D4AF390AFC6A0F149B843D651CFEBC1C4EC496A0263B72207836F9C525E1C4_227; // /__StaticArrayInitTypeSize=40 ::BABB01CD1E2AD140F7D2AF35515DA38E8936F0BA0298BCF0245EB5692A3F69CC __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F ___BABB01CD1E2AD140F7D2AF35515DA38E8936F0BA0298BCF0245EB5692A3F69CC_228; // /__StaticArrayInitTypeSize=1024 ::BB288FA00D4BBE2546E0D29F7D8BC6AF483CD4275D692B451B2E39A404E33EBF __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___BB288FA00D4BBE2546E0D29F7D8BC6AF483CD4275D692B451B2E39A404E33EBF_229; // /__StaticArrayInitTypeSize=12 ::BD01644841E6B289961C01E9D8319807BB25F791DB6A990F60D44DA36533D5AD __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___BD01644841E6B289961C01E9D8319807BB25F791DB6A990F60D44DA36533D5AD_230; // /__StaticArrayInitTypeSize=32 ::BD6174A7C16E1AF07272966A9C071C8A3CF16B2726C50D672A09F60636B08901 __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F ___BD6174A7C16E1AF07272966A9C071C8A3CF16B2726C50D672A09F60636B08901_231; // System.Int32 ::BDB11C99D6418180156EEA47B9EB755F8736055603C19E57F9DFB4CDFFCF8C3A int32_t ___BDB11C99D6418180156EEA47B9EB755F8736055603C19E57F9DFB4CDFFCF8C3A_232; // /__StaticArrayInitTypeSize=96 ::BDB6BB299E50984399E0FD8F6BA60FC85EF8CAF6AD5154D53E6DAC34E2E0B381 __StaticArrayInitTypeSizeU3D96_tADB23F3DA94DC89452F2BC0884B51C90615CDCD5 ___BDB6BB299E50984399E0FD8F6BA60FC85EF8CAF6AD5154D53E6DAC34E2E0B381_233; // /__StaticArrayInitTypeSize=1024 ::BDBC02F2D0A2A74757905F71BEC91DE96906C2FB70018166887D85BEB84B7957 __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___BDBC02F2D0A2A74757905F71BEC91DE96906C2FB70018166887D85BEB84B7957_234; // /__StaticArrayInitTypeSize=12 ::BEDA989D5939125AA1831BFE35ED2E4F0F05DD63851049C646ACE173A2D0827C __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___BEDA989D5939125AA1831BFE35ED2E4F0F05DD63851049C646ACE173A2D0827C_235; // /__StaticArrayInitTypeSize=12 ::BF3DB37CB55FF90EEE410403506E7AFB17B3B6ED163AEC657F4E4F47532D1E85 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___BF3DB37CB55FF90EEE410403506E7AFB17B3B6ED163AEC657F4E4F47532D1E85_236; // /__StaticArrayInitTypeSize=192 ::C0BCAD52BB24771C2430DFC75321628F5503FDDC5A0E05E93F3DD624A60B10BD __StaticArrayInitTypeSizeU3D192_tC7D23024B2AD7A4D301599706A49B8C87DAA353D ___C0BCAD52BB24771C2430DFC75321628F5503FDDC5A0E05E93F3DD624A60B10BD_237; // /__StaticArrayInitTypeSize=20 ::C0EE00302C997F25F7963B42E53EA31C48A41E1D5D50F1DAC01F6350AE1FF443 __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 ___C0EE00302C997F25F7963B42E53EA31C48A41E1D5D50F1DAC01F6350AE1FF443_238; // /__StaticArrayInitTypeSize=76 ::C133E473E5E653C5C4AEDB8BCC1C1A3A44D384FC0B6C0FCF04672B1B325EC01B __StaticArrayInitTypeSizeU3D76_t6572A863E37652A3D016260FBD2285807BDD3823 ___C133E473E5E653C5C4AEDB8BCC1C1A3A44D384FC0B6C0FCF04672B1B325EC01B_239; // /__StaticArrayInitTypeSize=1024 ::C199D37D9A06A0F4C75F70A8ABD3D0C2FAEB17B255174C5E67392D81CF5FF0EC __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___C199D37D9A06A0F4C75F70A8ABD3D0C2FAEB17B255174C5E67392D81CF5FF0EC_240; // /__StaticArrayInitTypeSize=256 ::C2D8E5EED6CBEBD8625FC18F81486A7733C04F9B0129FFBE974C68B90308B4F2 __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___C2D8E5EED6CBEBD8625FC18F81486A7733C04F9B0129FFBE974C68B90308B4F2_241; // /__StaticArrayInitTypeSize=1024 ::C4A6802D24BD0B4979A486C462DA989CD54F8816365BC0635A8A499FF421201C __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___C4A6802D24BD0B4979A486C462DA989CD54F8816365BC0635A8A499FF421201C_242; // /__StaticArrayInitTypeSize=2048 ::C4E613C844059E36B3D4EE786C4236B8E641E7D49F520B003540BB274F7E12F7 __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E ___C4E613C844059E36B3D4EE786C4236B8E641E7D49F520B003540BB274F7E12F7_243; // /__StaticArrayInitTypeSize=32 ::C51FEE572495EE6ED75353FC262F765FF558EED94FCB9EE64987AEE6C8548E12 __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F ___C51FEE572495EE6ED75353FC262F765FF558EED94FCB9EE64987AEE6C8548E12_244; // /__StaticArrayInitTypeSize=12 ::C65D6ACE28C7ABEB56A3809EBDF84987B4FD0B0EB2C34FEA90394A0A5E10DC55 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___C65D6ACE28C7ABEB56A3809EBDF84987B4FD0B0EB2C34FEA90394A0A5E10DC55_245; // System.Int32 ::C71C8ED7041ABE0B7FD161D726857C18705285A9F1B478A006310909B4A6D900 int32_t ___C71C8ED7041ABE0B7FD161D726857C18705285A9F1B478A006310909B4A6D900_246; // /__StaticArrayInitTypeSize=12 ::C7B696E5CE2020FEC8F611D5047339850FECC787C3DBC5D36589354D8ADF98C1 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___C7B696E5CE2020FEC8F611D5047339850FECC787C3DBC5D36589354D8ADF98C1_247; // /__StaticArrayInitTypeSize=112 ::C84227140A8A7787B30DFF8BD5693C19AA5A430C4E89FFD0256D7F77B3FEAD82 __StaticArrayInitTypeSizeU3D112_t366701DE02350ED8C8A65F92A137F54409B95542 ___C84227140A8A7787B30DFF8BD5693C19AA5A430C4E89FFD0256D7F77B3FEAD82_248; // /__StaticArrayInitTypeSize=1024 ::C854B091EA9394BFC39C4324F63BF827E324ABA5F68693B00E4DB8B247ED2023 __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___C854B091EA9394BFC39C4324F63BF827E324ABA5F68693B00E4DB8B247ED2023_249; // /__StaticArrayInitTypeSize=64 ::C90D4186D61A339F3078D8C7A6CBB1F005BFF5039C44C37F526BDCE2E00200BE __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___C90D4186D61A339F3078D8C7A6CBB1F005BFF5039C44C37F526BDCE2E00200BE_250; // /__StaticArrayInitTypeSize=32 ::C9E595B3F656D2DCA3D18330FD3EB05010FD9D445BE304E4FA5F4AB7B335494D __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F ___C9E595B3F656D2DCA3D18330FD3EB05010FD9D445BE304E4FA5F4AB7B335494D_251; // /__StaticArrayInitTypeSize=96 ::CB11E26FF20D3318A5A76F5FC0E725883F81ED29DAD7E32947BA8779AA3DE37F __StaticArrayInitTypeSizeU3D96_tADB23F3DA94DC89452F2BC0884B51C90615CDCD5 ___CB11E26FF20D3318A5A76F5FC0E725883F81ED29DAD7E32947BA8779AA3DE37F_252; // /__StaticArrayInitTypeSize=512 ::CB6DED39AE0C25F0748B553A13DCA00F6B77780B9F34B0B0F4C56BB7BF768C82 __StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE ___CB6DED39AE0C25F0748B553A13DCA00F6B77780B9F34B0B0F4C56BB7BF768C82_253; // /__StaticArrayInitTypeSize=12 ::CC9BD9D64572985ECFB6E2A723B6DD347BB34F5AFECDBFB98444028D2DF4844D __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___CC9BD9D64572985ECFB6E2A723B6DD347BB34F5AFECDBFB98444028D2DF4844D_254; // /__StaticArrayInitTypeSize=2048 ::CCD83CF06E3CE2D4A938C42BAEA101B30335EAF483F59E5EDCB41DF7C4807E1B __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E ___CCD83CF06E3CE2D4A938C42BAEA101B30335EAF483F59E5EDCB41DF7C4807E1B_255; // /__StaticArrayInitTypeSize=32 ::CDAEE7E50DA05783C75D649650C5CDC6ABB06447D6A9CFBB2E7212421547E53B __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F ___CDAEE7E50DA05783C75D649650C5CDC6ABB06447D6A9CFBB2E7212421547E53B_256; // /__StaticArrayInitTypeSize=68 ::CF64D219C0BA56CECE4E41E0C8BF3AF538F4510FA9A2B00F38DA09E548270E5C __StaticArrayInitTypeSizeU3D68_tE431405C001EFCAA99F9D46276BFEAF7F5AF4E0F ___CF64D219C0BA56CECE4E41E0C8BF3AF538F4510FA9A2B00F38DA09E548270E5C_257; // /__StaticArrayInitTypeSize=32 ::D15388770BF0AB6F544906F0A1A3375BE05BB7FEB2B215CED8A8E41C42972549 __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F ___D15388770BF0AB6F544906F0A1A3375BE05BB7FEB2B215CED8A8E41C42972549_258; // /__StaticArrayInitTypeSize=12 ::D1FAE5443A715D6F96387473C649F557670B8A92E175272491DFC646754F4A9D __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___D1FAE5443A715D6F96387473C649F557670B8A92E175272491DFC646754F4A9D_259; // /__StaticArrayInitTypeSize=2048 ::D38868B99B6C1AB9F2E65E75D07BA90CAF6DA7F4D74F9142A44413647473B362 __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E ___D38868B99B6C1AB9F2E65E75D07BA90CAF6DA7F4D74F9142A44413647473B362_260; // /__StaticArrayInitTypeSize=12 ::D3ADE9315DD51AE00C4C2D80ED119F3D1B1743E64ADC7FDDDE505286274C877D __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___D3ADE9315DD51AE00C4C2D80ED119F3D1B1743E64ADC7FDDDE505286274C877D_261; // /__StaticArrayInitTypeSize=40 ::D6380FB2FF2DD88C9290D88B81E78BCA13AAAB4BE827B103062AFBB1085B0793 __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F ___D6380FB2FF2DD88C9290D88B81E78BCA13AAAB4BE827B103062AFBB1085B0793_262; // /__StaticArrayInitTypeSize=12 ::D916EBA7A5A5D84BB85D26EE65A08CC18219FACEB615519209ABB469C0B35D32 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___D916EBA7A5A5D84BB85D26EE65A08CC18219FACEB615519209ABB469C0B35D32_263; // /__StaticArrayInitTypeSize=56 ::D9388FECE7A168D1EFFA85FA9C8DA1AEED48DDCE2E3799E07F41A9B60E389722 __StaticArrayInitTypeSizeU3D56_tEBF9CCD8C2A1E8B12AE6EDE1B31598793DD01186 ___D9388FECE7A168D1EFFA85FA9C8DA1AEED48DDCE2E3799E07F41A9B60E389722_264; // /__StaticArrayInitTypeSize=12 ::DB1CCE19AFD5123D31DCDAC6656A6DB5AF929CA39192511B8C042DD0513E7497 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___DB1CCE19AFD5123D31DCDAC6656A6DB5AF929CA39192511B8C042DD0513E7497_265; // /__StaticArrayInitTypeSize=64 ::DC196B5ACC67550E50DDC963D9192AEB816537E6A74CFB7DFE3A0453E5F4FB82 __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___DC196B5ACC67550E50DDC963D9192AEB816537E6A74CFB7DFE3A0453E5F4FB82_266; // /__StaticArrayInitTypeSize=24 ::DC1CDED6204DF70AC5C64ED2C9958FE75479400FE1E1A80F77C3A5BC6FFAF0A5 __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 ___DC1CDED6204DF70AC5C64ED2C9958FE75479400FE1E1A80F77C3A5BC6FFAF0A5_267; // /__StaticArrayInitTypeSize=64 ::DD2B2ACED61DA9A12AEE4F581C0D33D6D76A9722CDC6355B23FB5DF6B2032B18 __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___DD2B2ACED61DA9A12AEE4F581C0D33D6D76A9722CDC6355B23FB5DF6B2032B18_268; // /__StaticArrayInitTypeSize=12 ::DDA4EDB734C11C20B2D8A7BE67E2BB03E2F67B7928B0DAEB15EBF2EDD9A5150B __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___DDA4EDB734C11C20B2D8A7BE67E2BB03E2F67B7928B0DAEB15EBF2EDD9A5150B_269; // System.Int32 ::DE422551A0E0EF2710E43824DEFE8B2204F5FB76F83D7A496BA3F8D7D66569EB int32_t ___DE422551A0E0EF2710E43824DEFE8B2204F5FB76F83D7A496BA3F8D7D66569EB_270; // /__StaticArrayInitTypeSize=64 ::DE56C9263420A7B28A6286EB62AFBE2C1D5164698C518792FD8CEAAF2CB2CD03 __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___DE56C9263420A7B28A6286EB62AFBE2C1D5164698C518792FD8CEAAF2CB2CD03_271; // /__StaticArrayInitTypeSize=128 ::DE65050FB26A30C376E77EC7E5BE136721540CCE3760EAA1E14854746CADF7E8 __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C ___DE65050FB26A30C376E77EC7E5BE136721540CCE3760EAA1E14854746CADF7E8_272; // /__StaticArrayInitTypeSize=12 ::DE9FD94010C5C932FEB066B288CE65EBEB81EDE0E87B31B900BF855BFA2A2B5D __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___DE9FD94010C5C932FEB066B288CE65EBEB81EDE0E87B31B900BF855BFA2A2B5D_273; // /__StaticArrayInitTypeSize=4096 ::E0750D3E8FE41BBC5838F6D34CF434A4C764652CDC4BDC7DE6CE8393DE3C53A8 __StaticArrayInitTypeSizeU3D4096_t194B799136AD31D58B9179637D7756F00A1E35D5 ___E0750D3E8FE41BBC5838F6D34CF434A4C764652CDC4BDC7DE6CE8393DE3C53A8_274; // /__StaticArrayInitTypeSize=12 ::E09120C0E7B92A532558D22D44D52452DFE460D6205D1009963B69AABD0F8185 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___E09120C0E7B92A532558D22D44D52452DFE460D6205D1009963B69AABD0F8185_275; // System.Int64 ::E0E3CF58E8EBD3158219B64F434304727B1C71307D99BC27D059966A854CB749 int64_t ___E0E3CF58E8EBD3158219B64F434304727B1C71307D99BC27D059966A854CB749_276; // /__StaticArrayInitTypeSize=64 ::E27F6E9719BC23F7138A27009F35243C6F94F6530A37FC26DE498AB64784DDDA __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___E27F6E9719BC23F7138A27009F35243C6F94F6530A37FC26DE498AB64784DDDA_277; // /__StaticArrayInitTypeSize=16 ::E2D43ACAA664F37C9C7876F34F62AAC2D9B43D18817E629D34861AAB1B13388A __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 ___E2D43ACAA664F37C9C7876F34F62AAC2D9B43D18817E629D34861AAB1B13388A_278; // /__StaticArrayInitTypeSize=12 ::E3668879E09A70694ED6FEE919E303D7EA1266D783955D4DEEDC99CCC5AA6A8D __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___E3668879E09A70694ED6FEE919E303D7EA1266D783955D4DEEDC99CCC5AA6A8D_279; // /__StaticArrayInitTypeSize=64 ::E3B4E767F318263A8E7A64E1D61F6D3368A3B59AF34CBB94E657E7FCC58F5BA5 __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___E3B4E767F318263A8E7A64E1D61F6D3368A3B59AF34CBB94E657E7FCC58F5BA5_280; // /__StaticArrayInitTypeSize=2048 ::E45C3F86EC68FBD407D74FAEC9A50DFBAA5589A6FB63CCC5F7AA901D2ACA48B6 __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E ___E45C3F86EC68FBD407D74FAEC9A50DFBAA5589A6FB63CCC5F7AA901D2ACA48B6_281; // /__StaticArrayInitTypeSize=2048 ::E5325952F9FF2214CCE24E320F2BCD6A71C6EB4127F6069352CE065883AE80D0 __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E ___E5325952F9FF2214CCE24E320F2BCD6A71C6EB4127F6069352CE065883AE80D0_282; // /__StaticArrayInitTypeSize=256 ::E75B7154F674F25D54E89CB7D91F35CC111C8A67EE585938E07D12CB4761637F __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___E75B7154F674F25D54E89CB7D91F35CC111C8A67EE585938E07D12CB4761637F_283; // /__StaticArrayInitTypeSize=28 ::E7C6C4296C6C2B00D1062AA69054CAB58A57C3ACCE5ECFA4084E7E94CF805F87 __StaticArrayInitTypeSizeU3D28_tB9DE54DF41ABC27805509271A10177513906BF30 ___E7C6C4296C6C2B00D1062AA69054CAB58A57C3ACCE5ECFA4084E7E94CF805F87_284; // /__StaticArrayInitTypeSize=12 ::E87A3B2C4C5D7247B7E149126C3503D3AE2878A02155EA6153E057FE35D9656C __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___E87A3B2C4C5D7247B7E149126C3503D3AE2878A02155EA6153E057FE35D9656C_285; // /__StaticArrayInitTypeSize=5 ::E8A5F21A65A81B3BA202AE5DC3791797B0E7271A4923BCD6B124CA062D886C5A __StaticArrayInitTypeSizeU3D5_t4860E7B6EA3ACC966F04D8598CE9F606264B9EE9 ___E8A5F21A65A81B3BA202AE5DC3791797B0E7271A4923BCD6B124CA062D886C5A_286; // /__StaticArrayInitTypeSize=1024 ::E8D46701532BBEB9F3FF8A63C0D74D8C417C782DEE2C085A6D940A8B5B38DA18 __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___E8D46701532BBEB9F3FF8A63C0D74D8C417C782DEE2C085A6D940A8B5B38DA18_287; // /__StaticArrayInitTypeSize=12 ::EA648521F3A332BAB2FB6494AA2262B4C66E9EC54FBC6380D1BEADFBA8F7D9CD __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___EA648521F3A332BAB2FB6494AA2262B4C66E9EC54FBC6380D1BEADFBA8F7D9CD_288; // System.Int32 ::EB6B70CC36DAA15B37C45E6D0AE3CB7E8A9B1BA69E6BC44762F886192C725A5A int32_t ___EB6B70CC36DAA15B37C45E6D0AE3CB7E8A9B1BA69E6BC44762F886192C725A5A_289; // /__StaticArrayInitTypeSize=1024 ::EC103A6146A987638687685583404F2C172DE3138C47B820021673AD5DA00660 __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___EC103A6146A987638687685583404F2C172DE3138C47B820021673AD5DA00660_290; // /__StaticArrayInitTypeSize=40 ::ECA151F23D399F9FE976255B143D0691D0BE043E033B0E2814C0A547336D6545 __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F ___ECA151F23D399F9FE976255B143D0691D0BE043E033B0E2814C0A547336D6545_291; // /__StaticArrayInitTypeSize=1024 ::EE83363C7267157642FFDAC294D9028B3BCD964F62596706A5A94C92C8FCDE6C __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 ___EE83363C7267157642FFDAC294D9028B3BCD964F62596706A5A94C92C8FCDE6C_292; // /__StaticArrayInitTypeSize=256 ::EF39C5A882F9477B2A250BA257247825CEB07FC53C3C984385F2C2E5F8222431 __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___EF39C5A882F9477B2A250BA257247825CEB07FC53C3C984385F2C2E5F8222431_293; // /__StaticArrayInitTypeSize=16 ::EF7F3D1F9F5FC7985E4AE3D48BF986867BA544C1D2FEA6A7745FEA4A2FCAB381 __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 ___EF7F3D1F9F5FC7985E4AE3D48BF986867BA544C1D2FEA6A7745FEA4A2FCAB381_294; // /__StaticArrayInitTypeSize=12 ::F2CD85BDEF1E84E95EA92E2B686CEEC9FC518118A4342FAB46BECECE253D71F4 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___F2CD85BDEF1E84E95EA92E2B686CEEC9FC518118A4342FAB46BECECE253D71F4_295; // /__StaticArrayInitTypeSize=404 ::F30ADE318602BE9DC38E68CA7E1FE366A1F173330197F71AFD9D555F765D47A7 __StaticArrayInitTypeSizeU3D404_t02BA5FC25140F7864B3B45D3DD9D4D8B9E93A333 ___F30ADE318602BE9DC38E68CA7E1FE366A1F173330197F71AFD9D555F765D47A7_296; // /__StaticArrayInitTypeSize=64 ::F509AE84659919EA56BFF8D829ED41E971314D3D46ED9B0F8F5670D72EB1688B __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___F509AE84659919EA56BFF8D829ED41E971314D3D46ED9B0F8F5670D72EB1688B_297; // /__StaticArrayInitTypeSize=116 ::F8D7861760C88CC514F66095AF0AED47ECBA063ADB65F47125ED07BCC2CF9842 __StaticArrayInitTypeSizeU3D116_t9020B92E8453BBAFE2519A469C0893F630E8D2C9 ___F8D7861760C88CC514F66095AF0AED47ECBA063ADB65F47125ED07BCC2CF9842_298; // /__StaticArrayInitTypeSize=192 ::F8E6964ADFFC257265537256D21E93496A17B9271DC5D64F40869EEEAAFF6FBB __StaticArrayInitTypeSizeU3D192_tC7D23024B2AD7A4D301599706A49B8C87DAA353D ___F8E6964ADFFC257265537256D21E93496A17B9271DC5D64F40869EEEAAFF6FBB_299; // /__StaticArrayInitTypeSize=256 ::F915BC5619C5EB2C4D315B5409BC531F55FA3E3A6167F57B7A4F5F7F9C5F022B __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___F915BC5619C5EB2C4D315B5409BC531F55FA3E3A6167F57B7A4F5F7F9C5F022B_300; // /__StaticArrayInitTypeSize=64 ::F93A6E9A709B14FD05706C119D157EEE96F24DE3FDFA34F6D0AFF9537DE8ACC0 __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C ___F93A6E9A709B14FD05706C119D157EEE96F24DE3FDFA34F6D0AFF9537DE8ACC0_301; // /__StaticArrayInitTypeSize=72 ::FA1AD270B23BA640E88EE7F51CC9C0C1A6C6BB1F2B9025682A7D30FB3BDA64F0 __StaticArrayInitTypeSizeU3D72_t2005207C3F6F7C1227A5084885E3320B238A2489 ___FA1AD270B23BA640E88EE7F51CC9C0C1A6C6BB1F2B9025682A7D30FB3BDA64F0_302; // /__StaticArrayInitTypeSize=12 ::FA624E5847BD2E5A00CCA1B3515D315FA5C3450C3E832077935CEBA18E9F5571 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___FA624E5847BD2E5A00CCA1B3515D315FA5C3450C3E832077935CEBA18E9F5571_303; // /__StaticArrayInitTypeSize=32 ::FA902FDBDFBCC8763875D512059F3073294FE8C37A17ED9F7AF4D83791E194BF __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F ___FA902FDBDFBCC8763875D512059F3073294FE8C37A17ED9F7AF4D83791E194BF_304; // /__StaticArrayInitTypeSize=256 ::FA9320F15F87607CD9E1033E6DD907B11EEDF491D7EBBFD29EC8D07E12A822CD __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 ___FA9320F15F87607CD9E1033E6DD907B11EEDF491D7EBBFD29EC8D07E12A822CD_305; // /__StaticArrayInitTypeSize=16 ::FAA254BE6E65E3D60D934C74D9863DEDABBBB96FD00229D46B6AE6D108392089 __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 ___FAA254BE6E65E3D60D934C74D9863DEDABBBB96FD00229D46B6AE6D108392089_306; // /__StaticArrayInitTypeSize=2048 ::FB7A6532989D730F69E4757D690D25A43E71041FCFF7355747E274F956BB03E9 __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E ___FB7A6532989D730F69E4757D690D25A43E71041FCFF7355747E274F956BB03E9_307; // /__StaticArrayInitTypeSize=12 ::FC03ECB1D62767A5B31230F548FA4D4C02F01E3DA8CA1FC66C7C332EA16BF206 __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 ___FC03ECB1D62767A5B31230F548FA4D4C02F01E3DA8CA1FC66C7C332EA16BF206_308; // /__StaticArrayInitTypeSize=120 ::FC216F5C5AE2947D800794ECD5F752EE8381073C2E5D0D095FDA040F541702F3 __StaticArrayInitTypeSizeU3D120_tD78937C26C99B5FDF514E7F2EB4F8F2367B4C05A ___FC216F5C5AE2947D800794ECD5F752EE8381073C2E5D0D095FDA040F541702F3_309; // /__StaticArrayInitTypeSize=16 ::FD85B0A9251A04B1D271AF14FD041B4606FA95DDB116F92CB14470653A62AD19 __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 ___FD85B0A9251A04B1D271AF14FD041B4606FA95DDB116F92CB14470653A62AD19_310; // /__StaticArrayInitTypeSize=32 ::FF1F6EE5D67458CFAC950F62E93042E21FCB867E2234DCC8721801231064AD40 __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F ___FF1F6EE5D67458CFAC950F62E93042E21FCB867E2234DCC8721801231064AD40_311; // /__StaticArrayInitTypeSize=128 ::FF4D5896EDB9E12991ECB7FA7807EEB0F7ACD30F57ECB63DD9943F5245752A0F __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C ___FF4D5896EDB9E12991ECB7FA7807EEB0F7ACD30F57ECB63DD9943F5245752A0F_312; // /__StaticArrayInitTypeSize=16 ::FFC55B79B9BE7817954A4672A75C8603D1D1FE85A61786D63BD3B0AA239FFA58 __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 ___FFC55B79B9BE7817954A4672A75C8603D1D1FE85A61786D63BD3B0AA239FFA58_313; public: inline static int32_t get_offset_of_U302D050046D7A21C15C1A6D6755439B5EDAD147FABD9152C932359BA3A4E82039_0() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___02D050046D7A21C15C1A6D6755439B5EDAD147FABD9152C932359BA3A4E82039_0)); } inline __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 get_U302D050046D7A21C15C1A6D6755439B5EDAD147FABD9152C932359BA3A4E82039_0() const { return ___02D050046D7A21C15C1A6D6755439B5EDAD147FABD9152C932359BA3A4E82039_0; } inline __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 * get_address_of_U302D050046D7A21C15C1A6D6755439B5EDAD147FABD9152C932359BA3A4E82039_0() { return &___02D050046D7A21C15C1A6D6755439B5EDAD147FABD9152C932359BA3A4E82039_0; } inline void set_U302D050046D7A21C15C1A6D6755439B5EDAD147FABD9152C932359BA3A4E82039_0(__StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 value) { ___02D050046D7A21C15C1A6D6755439B5EDAD147FABD9152C932359BA3A4E82039_0 = value; } inline static int32_t get_offset_of_U3037BE04C4468BC2A186CC905D1F673CDFAAC254CEBEB545465B53F83A97830C5_1() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___037BE04C4468BC2A186CC905D1F673CDFAAC254CEBEB545465B53F83A97830C5_1)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_U3037BE04C4468BC2A186CC905D1F673CDFAAC254CEBEB545465B53F83A97830C5_1() const { return ___037BE04C4468BC2A186CC905D1F673CDFAAC254CEBEB545465B53F83A97830C5_1; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_U3037BE04C4468BC2A186CC905D1F673CDFAAC254CEBEB545465B53F83A97830C5_1() { return &___037BE04C4468BC2A186CC905D1F673CDFAAC254CEBEB545465B53F83A97830C5_1; } inline void set_U3037BE04C4468BC2A186CC905D1F673CDFAAC254CEBEB545465B53F83A97830C5_1(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___037BE04C4468BC2A186CC905D1F673CDFAAC254CEBEB545465B53F83A97830C5_1 = value; } inline static int32_t get_offset_of_U3039058C6F2C0CB492C533B0A4D14EF77CC0F78ABCCCED5287D84A1A2011CFB81_2() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___039058C6F2C0CB492C533B0A4D14EF77CC0F78ABCCCED5287D84A1A2011CFB81_2)); } inline __StaticArrayInitTypeSizeU3D3_t4D94CFD4A1D337F535123BB0BD49F9DDB4392C7F get_U3039058C6F2C0CB492C533B0A4D14EF77CC0F78ABCCCED5287D84A1A2011CFB81_2() const { return ___039058C6F2C0CB492C533B0A4D14EF77CC0F78ABCCCED5287D84A1A2011CFB81_2; } inline __StaticArrayInitTypeSizeU3D3_t4D94CFD4A1D337F535123BB0BD49F9DDB4392C7F * get_address_of_U3039058C6F2C0CB492C533B0A4D14EF77CC0F78ABCCCED5287D84A1A2011CFB81_2() { return &___039058C6F2C0CB492C533B0A4D14EF77CC0F78ABCCCED5287D84A1A2011CFB81_2; } inline void set_U3039058C6F2C0CB492C533B0A4D14EF77CC0F78ABCCCED5287D84A1A2011CFB81_2(__StaticArrayInitTypeSizeU3D3_t4D94CFD4A1D337F535123BB0BD49F9DDB4392C7F value) { ___039058C6F2C0CB492C533B0A4D14EF77CC0F78ABCCCED5287D84A1A2011CFB81_2 = value; } inline static int32_t get_offset_of_U304801C5DAE2B089F05A4334CFE18CCBD987A6EDE98113B9499E8D7054DC38252_3() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___04801C5DAE2B089F05A4334CFE18CCBD987A6EDE98113B9499E8D7054DC38252_3)); } inline __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C get_U304801C5DAE2B089F05A4334CFE18CCBD987A6EDE98113B9499E8D7054DC38252_3() const { return ___04801C5DAE2B089F05A4334CFE18CCBD987A6EDE98113B9499E8D7054DC38252_3; } inline __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C * get_address_of_U304801C5DAE2B089F05A4334CFE18CCBD987A6EDE98113B9499E8D7054DC38252_3() { return &___04801C5DAE2B089F05A4334CFE18CCBD987A6EDE98113B9499E8D7054DC38252_3; } inline void set_U304801C5DAE2B089F05A4334CFE18CCBD987A6EDE98113B9499E8D7054DC38252_3(__StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C value) { ___04801C5DAE2B089F05A4334CFE18CCBD987A6EDE98113B9499E8D7054DC38252_3 = value; } inline static int32_t get_offset_of_U3064CACC4978353DFD6979BF0975E06366B0F3E9C5631CFFF32EC2184BCF492E5_4() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___064CACC4978353DFD6979BF0975E06366B0F3E9C5631CFFF32EC2184BCF492E5_4)); } inline __StaticArrayInitTypeSizeU3D160_t01D8A735071F3884433FD17606956ED602F11B27 get_U3064CACC4978353DFD6979BF0975E06366B0F3E9C5631CFFF32EC2184BCF492E5_4() const { return ___064CACC4978353DFD6979BF0975E06366B0F3E9C5631CFFF32EC2184BCF492E5_4; } inline __StaticArrayInitTypeSizeU3D160_t01D8A735071F3884433FD17606956ED602F11B27 * get_address_of_U3064CACC4978353DFD6979BF0975E06366B0F3E9C5631CFFF32EC2184BCF492E5_4() { return &___064CACC4978353DFD6979BF0975E06366B0F3E9C5631CFFF32EC2184BCF492E5_4; } inline void set_U3064CACC4978353DFD6979BF0975E06366B0F3E9C5631CFFF32EC2184BCF492E5_4(__StaticArrayInitTypeSizeU3D160_t01D8A735071F3884433FD17606956ED602F11B27 value) { ___064CACC4978353DFD6979BF0975E06366B0F3E9C5631CFFF32EC2184BCF492E5_4 = value; } inline static int32_t get_offset_of_U307F8694A8F96DEE5EE4007B7B9102D4969129F0FB6FF3731434ED8CAF3C32D00_5() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___07F8694A8F96DEE5EE4007B7B9102D4969129F0FB6FF3731434ED8CAF3C32D00_5)); } inline __StaticArrayInitTypeSizeU3D68_tE431405C001EFCAA99F9D46276BFEAF7F5AF4E0F get_U307F8694A8F96DEE5EE4007B7B9102D4969129F0FB6FF3731434ED8CAF3C32D00_5() const { return ___07F8694A8F96DEE5EE4007B7B9102D4969129F0FB6FF3731434ED8CAF3C32D00_5; } inline __StaticArrayInitTypeSizeU3D68_tE431405C001EFCAA99F9D46276BFEAF7F5AF4E0F * get_address_of_U307F8694A8F96DEE5EE4007B7B9102D4969129F0FB6FF3731434ED8CAF3C32D00_5() { return &___07F8694A8F96DEE5EE4007B7B9102D4969129F0FB6FF3731434ED8CAF3C32D00_5; } inline void set_U307F8694A8F96DEE5EE4007B7B9102D4969129F0FB6FF3731434ED8CAF3C32D00_5(__StaticArrayInitTypeSizeU3D68_tE431405C001EFCAA99F9D46276BFEAF7F5AF4E0F value) { ___07F8694A8F96DEE5EE4007B7B9102D4969129F0FB6FF3731434ED8CAF3C32D00_5 = value; } inline static int32_t get_offset_of_U307FA6E88C946B2528C09C16C2FB8E9CDA49AFFAFC601774C437FD9F2DF3ECE01_6() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___07FA6E88C946B2528C09C16C2FB8E9CDA49AFFAFC601774C437FD9F2DF3ECE01_6)); } inline __StaticArrayInitTypeSizeU3D56_tEBF9CCD8C2A1E8B12AE6EDE1B31598793DD01186 get_U307FA6E88C946B2528C09C16C2FB8E9CDA49AFFAFC601774C437FD9F2DF3ECE01_6() const { return ___07FA6E88C946B2528C09C16C2FB8E9CDA49AFFAFC601774C437FD9F2DF3ECE01_6; } inline __StaticArrayInitTypeSizeU3D56_tEBF9CCD8C2A1E8B12AE6EDE1B31598793DD01186 * get_address_of_U307FA6E88C946B2528C09C16C2FB8E9CDA49AFFAFC601774C437FD9F2DF3ECE01_6() { return &___07FA6E88C946B2528C09C16C2FB8E9CDA49AFFAFC601774C437FD9F2DF3ECE01_6; } inline void set_U307FA6E88C946B2528C09C16C2FB8E9CDA49AFFAFC601774C437FD9F2DF3ECE01_6(__StaticArrayInitTypeSizeU3D56_tEBF9CCD8C2A1E8B12AE6EDE1B31598793DD01186 value) { ___07FA6E88C946B2528C09C16C2FB8E9CDA49AFFAFC601774C437FD9F2DF3ECE01_6 = value; } inline static int32_t get_offset_of_U308BB5E5D6EAAC1049EDE0893D30ED022B1A4D9B5B48DB414871F51C9CB35283D_7() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___08BB5E5D6EAAC1049EDE0893D30ED022B1A4D9B5B48DB414871F51C9CB35283D_7)); } inline __StaticArrayInitTypeSizeU3D5_t4860E7B6EA3ACC966F04D8598CE9F606264B9EE9 get_U308BB5E5D6EAAC1049EDE0893D30ED022B1A4D9B5B48DB414871F51C9CB35283D_7() const { return ___08BB5E5D6EAAC1049EDE0893D30ED022B1A4D9B5B48DB414871F51C9CB35283D_7; } inline __StaticArrayInitTypeSizeU3D5_t4860E7B6EA3ACC966F04D8598CE9F606264B9EE9 * get_address_of_U308BB5E5D6EAAC1049EDE0893D30ED022B1A4D9B5B48DB414871F51C9CB35283D_7() { return &___08BB5E5D6EAAC1049EDE0893D30ED022B1A4D9B5B48DB414871F51C9CB35283D_7; } inline void set_U308BB5E5D6EAAC1049EDE0893D30ED022B1A4D9B5B48DB414871F51C9CB35283D_7(__StaticArrayInitTypeSizeU3D5_t4860E7B6EA3ACC966F04D8598CE9F606264B9EE9 value) { ___08BB5E5D6EAAC1049EDE0893D30ED022B1A4D9B5B48DB414871F51C9CB35283D_7 = value; } inline static int32_t get_offset_of_U30A1413707CFE8C78578CA0BB50414B63B0BF76D33A73C9AADCEED38BB8CD28A8_8() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___0A1413707CFE8C78578CA0BB50414B63B0BF76D33A73C9AADCEED38BB8CD28A8_8)); } inline __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 get_U30A1413707CFE8C78578CA0BB50414B63B0BF76D33A73C9AADCEED38BB8CD28A8_8() const { return ___0A1413707CFE8C78578CA0BB50414B63B0BF76D33A73C9AADCEED38BB8CD28A8_8; } inline __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 * get_address_of_U30A1413707CFE8C78578CA0BB50414B63B0BF76D33A73C9AADCEED38BB8CD28A8_8() { return &___0A1413707CFE8C78578CA0BB50414B63B0BF76D33A73C9AADCEED38BB8CD28A8_8; } inline void set_U30A1413707CFE8C78578CA0BB50414B63B0BF76D33A73C9AADCEED38BB8CD28A8_8(__StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 value) { ___0A1413707CFE8C78578CA0BB50414B63B0BF76D33A73C9AADCEED38BB8CD28A8_8 = value; } inline static int32_t get_offset_of_U30A29D64AE97E7FBAAE0678A4F4F9364668E9827F23F305D51DF55D902CF19C4D_9() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___0A29D64AE97E7FBAAE0678A4F4F9364668E9827F23F305D51DF55D902CF19C4D_9)); } inline __StaticArrayInitTypeSizeU3D6_tDD3535E2AB0E3D46629D397042D7A7D5F52F2E77 get_U30A29D64AE97E7FBAAE0678A4F4F9364668E9827F23F305D51DF55D902CF19C4D_9() const { return ___0A29D64AE97E7FBAAE0678A4F4F9364668E9827F23F305D51DF55D902CF19C4D_9; } inline __StaticArrayInitTypeSizeU3D6_tDD3535E2AB0E3D46629D397042D7A7D5F52F2E77 * get_address_of_U30A29D64AE97E7FBAAE0678A4F4F9364668E9827F23F305D51DF55D902CF19C4D_9() { return &___0A29D64AE97E7FBAAE0678A4F4F9364668E9827F23F305D51DF55D902CF19C4D_9; } inline void set_U30A29D64AE97E7FBAAE0678A4F4F9364668E9827F23F305D51DF55D902CF19C4D_9(__StaticArrayInitTypeSizeU3D6_tDD3535E2AB0E3D46629D397042D7A7D5F52F2E77 value) { ___0A29D64AE97E7FBAAE0678A4F4F9364668E9827F23F305D51DF55D902CF19C4D_9 = value; } inline static int32_t get_offset_of_U30A4E21484641E9782ED1A1B3410F9F2DDC54F0F6D8807BF52C299807D9C4DF5C_10() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___0A4E21484641E9782ED1A1B3410F9F2DDC54F0F6D8807BF52C299807D9C4DF5C_10)); } inline __StaticArrayInitTypeSizeU3D72_t2005207C3F6F7C1227A5084885E3320B238A2489 get_U30A4E21484641E9782ED1A1B3410F9F2DDC54F0F6D8807BF52C299807D9C4DF5C_10() const { return ___0A4E21484641E9782ED1A1B3410F9F2DDC54F0F6D8807BF52C299807D9C4DF5C_10; } inline __StaticArrayInitTypeSizeU3D72_t2005207C3F6F7C1227A5084885E3320B238A2489 * get_address_of_U30A4E21484641E9782ED1A1B3410F9F2DDC54F0F6D8807BF52C299807D9C4DF5C_10() { return &___0A4E21484641E9782ED1A1B3410F9F2DDC54F0F6D8807BF52C299807D9C4DF5C_10; } inline void set_U30A4E21484641E9782ED1A1B3410F9F2DDC54F0F6D8807BF52C299807D9C4DF5C_10(__StaticArrayInitTypeSizeU3D72_t2005207C3F6F7C1227A5084885E3320B238A2489 value) { ___0A4E21484641E9782ED1A1B3410F9F2DDC54F0F6D8807BF52C299807D9C4DF5C_10 = value; } inline static int32_t get_offset_of_U30AEC099C87E7062A57D1C79734EDDD28A07A1684746EE8640132BB252E6BF5A1_11() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___0AEC099C87E7062A57D1C79734EDDD28A07A1684746EE8640132BB252E6BF5A1_11)); } inline __StaticArrayInitTypeSizeU3D56_tEBF9CCD8C2A1E8B12AE6EDE1B31598793DD01186 get_U30AEC099C87E7062A57D1C79734EDDD28A07A1684746EE8640132BB252E6BF5A1_11() const { return ___0AEC099C87E7062A57D1C79734EDDD28A07A1684746EE8640132BB252E6BF5A1_11; } inline __StaticArrayInitTypeSizeU3D56_tEBF9CCD8C2A1E8B12AE6EDE1B31598793DD01186 * get_address_of_U30AEC099C87E7062A57D1C79734EDDD28A07A1684746EE8640132BB252E6BF5A1_11() { return &___0AEC099C87E7062A57D1C79734EDDD28A07A1684746EE8640132BB252E6BF5A1_11; } inline void set_U30AEC099C87E7062A57D1C79734EDDD28A07A1684746EE8640132BB252E6BF5A1_11(__StaticArrayInitTypeSizeU3D56_tEBF9CCD8C2A1E8B12AE6EDE1B31598793DD01186 value) { ___0AEC099C87E7062A57D1C79734EDDD28A07A1684746EE8640132BB252E6BF5A1_11 = value; } inline static int32_t get_offset_of_U30AFCFE448EEBA81468EDE42DD0B9A0C17F1A006F43E0BE503CA27E8FBA2F05DC_12() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___0AFCFE448EEBA81468EDE42DD0B9A0C17F1A006F43E0BE503CA27E8FBA2F05DC_12)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_U30AFCFE448EEBA81468EDE42DD0B9A0C17F1A006F43E0BE503CA27E8FBA2F05DC_12() const { return ___0AFCFE448EEBA81468EDE42DD0B9A0C17F1A006F43E0BE503CA27E8FBA2F05DC_12; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_U30AFCFE448EEBA81468EDE42DD0B9A0C17F1A006F43E0BE503CA27E8FBA2F05DC_12() { return &___0AFCFE448EEBA81468EDE42DD0B9A0C17F1A006F43E0BE503CA27E8FBA2F05DC_12; } inline void set_U30AFCFE448EEBA81468EDE42DD0B9A0C17F1A006F43E0BE503CA27E8FBA2F05DC_12(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___0AFCFE448EEBA81468EDE42DD0B9A0C17F1A006F43E0BE503CA27E8FBA2F05DC_12 = value; } inline static int32_t get_offset_of_U30C9B53D0417CF5539EA98A771F400E930B4B4F55363A296A9E5A5F941AB71C86_13() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___0C9B53D0417CF5539EA98A771F400E930B4B4F55363A296A9E5A5F941AB71C86_13)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_U30C9B53D0417CF5539EA98A771F400E930B4B4F55363A296A9E5A5F941AB71C86_13() const { return ___0C9B53D0417CF5539EA98A771F400E930B4B4F55363A296A9E5A5F941AB71C86_13; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_U30C9B53D0417CF5539EA98A771F400E930B4B4F55363A296A9E5A5F941AB71C86_13() { return &___0C9B53D0417CF5539EA98A771F400E930B4B4F55363A296A9E5A5F941AB71C86_13; } inline void set_U30C9B53D0417CF5539EA98A771F400E930B4B4F55363A296A9E5A5F941AB71C86_13(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___0C9B53D0417CF5539EA98A771F400E930B4B4F55363A296A9E5A5F941AB71C86_13 = value; } inline static int32_t get_offset_of_U30CF9F5E38BA692F10436AAC17AC6DCB62396F9AFC9CA013B3D640C1C95E31A39_14() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___0CF9F5E38BA692F10436AAC17AC6DCB62396F9AFC9CA013B3D640C1C95E31A39_14)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_U30CF9F5E38BA692F10436AAC17AC6DCB62396F9AFC9CA013B3D640C1C95E31A39_14() const { return ___0CF9F5E38BA692F10436AAC17AC6DCB62396F9AFC9CA013B3D640C1C95E31A39_14; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_U30CF9F5E38BA692F10436AAC17AC6DCB62396F9AFC9CA013B3D640C1C95E31A39_14() { return &___0CF9F5E38BA692F10436AAC17AC6DCB62396F9AFC9CA013B3D640C1C95E31A39_14; } inline void set_U30CF9F5E38BA692F10436AAC17AC6DCB62396F9AFC9CA013B3D640C1C95E31A39_14(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___0CF9F5E38BA692F10436AAC17AC6DCB62396F9AFC9CA013B3D640C1C95E31A39_14 = value; } inline static int32_t get_offset_of_U310D88DF8B06E47788DBE42F876B642A928A3AD8EEFFE352C59F031CCFFECD49D_15() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___10D88DF8B06E47788DBE42F876B642A928A3AD8EEFFE352C59F031CCFFECD49D_15)); } inline __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C get_U310D88DF8B06E47788DBE42F876B642A928A3AD8EEFFE352C59F031CCFFECD49D_15() const { return ___10D88DF8B06E47788DBE42F876B642A928A3AD8EEFFE352C59F031CCFFECD49D_15; } inline __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C * get_address_of_U310D88DF8B06E47788DBE42F876B642A928A3AD8EEFFE352C59F031CCFFECD49D_15() { return &___10D88DF8B06E47788DBE42F876B642A928A3AD8EEFFE352C59F031CCFFECD49D_15; } inline void set_U310D88DF8B06E47788DBE42F876B642A928A3AD8EEFFE352C59F031CCFFECD49D_15(__StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C value) { ___10D88DF8B06E47788DBE42F876B642A928A3AD8EEFFE352C59F031CCFFECD49D_15 = value; } inline static int32_t get_offset_of_U3111B15B20E0428A22EEAA1E54B0D3B008A7A3E79C8F7F4E783710F569E9CEF15_16() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___111B15B20E0428A22EEAA1E54B0D3B008A7A3E79C8F7F4E783710F569E9CEF15_16)); } inline __StaticArrayInitTypeSizeU3D19_t6F47B190498106B49FE59B8EC484EB7D61D348D4 get_U3111B15B20E0428A22EEAA1E54B0D3B008A7A3E79C8F7F4E783710F569E9CEF15_16() const { return ___111B15B20E0428A22EEAA1E54B0D3B008A7A3E79C8F7F4E783710F569E9CEF15_16; } inline __StaticArrayInitTypeSizeU3D19_t6F47B190498106B49FE59B8EC484EB7D61D348D4 * get_address_of_U3111B15B20E0428A22EEAA1E54B0D3B008A7A3E79C8F7F4E783710F569E9CEF15_16() { return &___111B15B20E0428A22EEAA1E54B0D3B008A7A3E79C8F7F4E783710F569E9CEF15_16; } inline void set_U3111B15B20E0428A22EEAA1E54B0D3B008A7A3E79C8F7F4E783710F569E9CEF15_16(__StaticArrayInitTypeSizeU3D19_t6F47B190498106B49FE59B8EC484EB7D61D348D4 value) { ___111B15B20E0428A22EEAA1E54B0D3B008A7A3E79C8F7F4E783710F569E9CEF15_16 = value; } inline static int32_t get_offset_of_U3120918433B634757ADE589703127976B7C5C2009E8DB37632123F45FA2B87F2E_17() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___120918433B634757ADE589703127976B7C5C2009E8DB37632123F45FA2B87F2E_17)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_U3120918433B634757ADE589703127976B7C5C2009E8DB37632123F45FA2B87F2E_17() const { return ___120918433B634757ADE589703127976B7C5C2009E8DB37632123F45FA2B87F2E_17; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_U3120918433B634757ADE589703127976B7C5C2009E8DB37632123F45FA2B87F2E_17() { return &___120918433B634757ADE589703127976B7C5C2009E8DB37632123F45FA2B87F2E_17; } inline void set_U3120918433B634757ADE589703127976B7C5C2009E8DB37632123F45FA2B87F2E_17(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___120918433B634757ADE589703127976B7C5C2009E8DB37632123F45FA2B87F2E_17 = value; } inline static int32_t get_offset_of_U3125CF2084D7EEC18DC9795BE4BAA221655C0EABAB89E90A74FB0370378A60293_18() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___125CF2084D7EEC18DC9795BE4BAA221655C0EABAB89E90A74FB0370378A60293_18)); } inline __StaticArrayInitTypeSizeU3D640_tBB1E788DFDEFA4D1C43D13F2427E9BEECC2CE517 get_U3125CF2084D7EEC18DC9795BE4BAA221655C0EABAB89E90A74FB0370378A60293_18() const { return ___125CF2084D7EEC18DC9795BE4BAA221655C0EABAB89E90A74FB0370378A60293_18; } inline __StaticArrayInitTypeSizeU3D640_tBB1E788DFDEFA4D1C43D13F2427E9BEECC2CE517 * get_address_of_U3125CF2084D7EEC18DC9795BE4BAA221655C0EABAB89E90A74FB0370378A60293_18() { return &___125CF2084D7EEC18DC9795BE4BAA221655C0EABAB89E90A74FB0370378A60293_18; } inline void set_U3125CF2084D7EEC18DC9795BE4BAA221655C0EABAB89E90A74FB0370378A60293_18(__StaticArrayInitTypeSizeU3D640_tBB1E788DFDEFA4D1C43D13F2427E9BEECC2CE517 value) { ___125CF2084D7EEC18DC9795BE4BAA221655C0EABAB89E90A74FB0370378A60293_18 = value; } inline static int32_t get_offset_of_U312F486CDF1F8927BF7289003288EFE6D3B6C674279639905EEEE24D0B6EA9688_19() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___12F486CDF1F8927BF7289003288EFE6D3B6C674279639905EEEE24D0B6EA9688_19)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U312F486CDF1F8927BF7289003288EFE6D3B6C674279639905EEEE24D0B6EA9688_19() const { return ___12F486CDF1F8927BF7289003288EFE6D3B6C674279639905EEEE24D0B6EA9688_19; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U312F486CDF1F8927BF7289003288EFE6D3B6C674279639905EEEE24D0B6EA9688_19() { return &___12F486CDF1F8927BF7289003288EFE6D3B6C674279639905EEEE24D0B6EA9688_19; } inline void set_U312F486CDF1F8927BF7289003288EFE6D3B6C674279639905EEEE24D0B6EA9688_19(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___12F486CDF1F8927BF7289003288EFE6D3B6C674279639905EEEE24D0B6EA9688_19 = value; } inline static int32_t get_offset_of_U31313B2EF301CE83F294FFD8C012777CAA44B3F5F35B6CC5232786F43AEE29084_20() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___1313B2EF301CE83F294FFD8C012777CAA44B3F5F35B6CC5232786F43AEE29084_20)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U31313B2EF301CE83F294FFD8C012777CAA44B3F5F35B6CC5232786F43AEE29084_20() const { return ___1313B2EF301CE83F294FFD8C012777CAA44B3F5F35B6CC5232786F43AEE29084_20; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U31313B2EF301CE83F294FFD8C012777CAA44B3F5F35B6CC5232786F43AEE29084_20() { return &___1313B2EF301CE83F294FFD8C012777CAA44B3F5F35B6CC5232786F43AEE29084_20; } inline void set_U31313B2EF301CE83F294FFD8C012777CAA44B3F5F35B6CC5232786F43AEE29084_20(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___1313B2EF301CE83F294FFD8C012777CAA44B3F5F35B6CC5232786F43AEE29084_20 = value; } inline static int32_t get_offset_of_U313F3BEDA950D7627802C21F7681A2553BBC40FDD07FCA3F52FAB662EE65B6F90_21() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___13F3BEDA950D7627802C21F7681A2553BBC40FDD07FCA3F52FAB662EE65B6F90_21)); } inline __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E get_U313F3BEDA950D7627802C21F7681A2553BBC40FDD07FCA3F52FAB662EE65B6F90_21() const { return ___13F3BEDA950D7627802C21F7681A2553BBC40FDD07FCA3F52FAB662EE65B6F90_21; } inline __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E * get_address_of_U313F3BEDA950D7627802C21F7681A2553BBC40FDD07FCA3F52FAB662EE65B6F90_21() { return &___13F3BEDA950D7627802C21F7681A2553BBC40FDD07FCA3F52FAB662EE65B6F90_21; } inline void set_U313F3BEDA950D7627802C21F7681A2553BBC40FDD07FCA3F52FAB662EE65B6F90_21(__StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E value) { ___13F3BEDA950D7627802C21F7681A2553BBC40FDD07FCA3F52FAB662EE65B6F90_21 = value; } inline static int32_t get_offset_of_U3141785EC78A7C41133C5B71ACBF4AA8735D3C599E0EA82B1AFA2C71A46FAD265_22() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___141785EC78A7C41133C5B71ACBF4AA8735D3C599E0EA82B1AFA2C71A46FAD265_22)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U3141785EC78A7C41133C5B71ACBF4AA8735D3C599E0EA82B1AFA2C71A46FAD265_22() const { return ___141785EC78A7C41133C5B71ACBF4AA8735D3C599E0EA82B1AFA2C71A46FAD265_22; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U3141785EC78A7C41133C5B71ACBF4AA8735D3C599E0EA82B1AFA2C71A46FAD265_22() { return &___141785EC78A7C41133C5B71ACBF4AA8735D3C599E0EA82B1AFA2C71A46FAD265_22; } inline void set_U3141785EC78A7C41133C5B71ACBF4AA8735D3C599E0EA82B1AFA2C71A46FAD265_22(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___141785EC78A7C41133C5B71ACBF4AA8735D3C599E0EA82B1AFA2C71A46FAD265_22 = value; } inline static int32_t get_offset_of_U314A03AA4516FE146356EF9D4F549B8662F9C50A467974D3BFAC45B474D65B864_23() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___14A03AA4516FE146356EF9D4F549B8662F9C50A467974D3BFAC45B474D65B864_23)); } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F get_U314A03AA4516FE146356EF9D4F549B8662F9C50A467974D3BFAC45B474D65B864_23() const { return ___14A03AA4516FE146356EF9D4F549B8662F9C50A467974D3BFAC45B474D65B864_23; } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F * get_address_of_U314A03AA4516FE146356EF9D4F549B8662F9C50A467974D3BFAC45B474D65B864_23() { return &___14A03AA4516FE146356EF9D4F549B8662F9C50A467974D3BFAC45B474D65B864_23; } inline void set_U314A03AA4516FE146356EF9D4F549B8662F9C50A467974D3BFAC45B474D65B864_23(__StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F value) { ___14A03AA4516FE146356EF9D4F549B8662F9C50A467974D3BFAC45B474D65B864_23 = value; } inline static int32_t get_offset_of_U314A5D850C255623F9472E3C650ABCE0C78D32F0276B315B3A276A0462D97A1AC_24() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___14A5D850C255623F9472E3C650ABCE0C78D32F0276B315B3A276A0462D97A1AC_24)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_U314A5D850C255623F9472E3C650ABCE0C78D32F0276B315B3A276A0462D97A1AC_24() const { return ___14A5D850C255623F9472E3C650ABCE0C78D32F0276B315B3A276A0462D97A1AC_24; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_U314A5D850C255623F9472E3C650ABCE0C78D32F0276B315B3A276A0462D97A1AC_24() { return &___14A5D850C255623F9472E3C650ABCE0C78D32F0276B315B3A276A0462D97A1AC_24; } inline void set_U314A5D850C255623F9472E3C650ABCE0C78D32F0276B315B3A276A0462D97A1AC_24(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___14A5D850C255623F9472E3C650ABCE0C78D32F0276B315B3A276A0462D97A1AC_24 = value; } inline static int32_t get_offset_of_U316599A4F9A12ECCBFC361B547840304B9E48CBC431F387243C6859C475427D16_25() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___16599A4F9A12ECCBFC361B547840304B9E48CBC431F387243C6859C475427D16_25)); } inline __StaticArrayInitTypeSizeU3D56_tEBF9CCD8C2A1E8B12AE6EDE1B31598793DD01186 get_U316599A4F9A12ECCBFC361B547840304B9E48CBC431F387243C6859C475427D16_25() const { return ___16599A4F9A12ECCBFC361B547840304B9E48CBC431F387243C6859C475427D16_25; } inline __StaticArrayInitTypeSizeU3D56_tEBF9CCD8C2A1E8B12AE6EDE1B31598793DD01186 * get_address_of_U316599A4F9A12ECCBFC361B547840304B9E48CBC431F387243C6859C475427D16_25() { return &___16599A4F9A12ECCBFC361B547840304B9E48CBC431F387243C6859C475427D16_25; } inline void set_U316599A4F9A12ECCBFC361B547840304B9E48CBC431F387243C6859C475427D16_25(__StaticArrayInitTypeSizeU3D56_tEBF9CCD8C2A1E8B12AE6EDE1B31598793DD01186 value) { ___16599A4F9A12ECCBFC361B547840304B9E48CBC431F387243C6859C475427D16_25 = value; } inline static int32_t get_offset_of_U31674D0631A2E37B60EC748BC3899FEE1550C108AF30B85CE96A70C5CA4682D03_26() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___1674D0631A2E37B60EC748BC3899FEE1550C108AF30B85CE96A70C5CA4682D03_26)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_U31674D0631A2E37B60EC748BC3899FEE1550C108AF30B85CE96A70C5CA4682D03_26() const { return ___1674D0631A2E37B60EC748BC3899FEE1550C108AF30B85CE96A70C5CA4682D03_26; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_U31674D0631A2E37B60EC748BC3899FEE1550C108AF30B85CE96A70C5CA4682D03_26() { return &___1674D0631A2E37B60EC748BC3899FEE1550C108AF30B85CE96A70C5CA4682D03_26; } inline void set_U31674D0631A2E37B60EC748BC3899FEE1550C108AF30B85CE96A70C5CA4682D03_26(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___1674D0631A2E37B60EC748BC3899FEE1550C108AF30B85CE96A70C5CA4682D03_26 = value; } inline static int32_t get_offset_of_U31A0C6D8588AD2BCC8FE37D32AAD70981DD42ECA259D570799BEB531448D25ECE_27() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___1A0C6D8588AD2BCC8FE37D32AAD70981DD42ECA259D570799BEB531448D25ECE_27)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_U31A0C6D8588AD2BCC8FE37D32AAD70981DD42ECA259D570799BEB531448D25ECE_27() const { return ___1A0C6D8588AD2BCC8FE37D32AAD70981DD42ECA259D570799BEB531448D25ECE_27; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_U31A0C6D8588AD2BCC8FE37D32AAD70981DD42ECA259D570799BEB531448D25ECE_27() { return &___1A0C6D8588AD2BCC8FE37D32AAD70981DD42ECA259D570799BEB531448D25ECE_27; } inline void set_U31A0C6D8588AD2BCC8FE37D32AAD70981DD42ECA259D570799BEB531448D25ECE_27(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___1A0C6D8588AD2BCC8FE37D32AAD70981DD42ECA259D570799BEB531448D25ECE_27 = value; } inline static int32_t get_offset_of_U31B3C6BD02D7D3A67EDF7C2E78CB65DA169834118F6971D8912211D3032BC4D18_28() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___1B3C6BD02D7D3A67EDF7C2E78CB65DA169834118F6971D8912211D3032BC4D18_28)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_U31B3C6BD02D7D3A67EDF7C2E78CB65DA169834118F6971D8912211D3032BC4D18_28() const { return ___1B3C6BD02D7D3A67EDF7C2E78CB65DA169834118F6971D8912211D3032BC4D18_28; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_U31B3C6BD02D7D3A67EDF7C2E78CB65DA169834118F6971D8912211D3032BC4D18_28() { return &___1B3C6BD02D7D3A67EDF7C2E78CB65DA169834118F6971D8912211D3032BC4D18_28; } inline void set_U31B3C6BD02D7D3A67EDF7C2E78CB65DA169834118F6971D8912211D3032BC4D18_28(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___1B3C6BD02D7D3A67EDF7C2E78CB65DA169834118F6971D8912211D3032BC4D18_28 = value; } inline static int32_t get_offset_of_U31B897DDDD4C151E2A2E6E3E91B7EA0F7FC4FD5ED00EF1C9669E8566393A02586_29() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___1B897DDDD4C151E2A2E6E3E91B7EA0F7FC4FD5ED00EF1C9669E8566393A02586_29)); } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 get_U31B897DDDD4C151E2A2E6E3E91B7EA0F7FC4FD5ED00EF1C9669E8566393A02586_29() const { return ___1B897DDDD4C151E2A2E6E3E91B7EA0F7FC4FD5ED00EF1C9669E8566393A02586_29; } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 * get_address_of_U31B897DDDD4C151E2A2E6E3E91B7EA0F7FC4FD5ED00EF1C9669E8566393A02586_29() { return &___1B897DDDD4C151E2A2E6E3E91B7EA0F7FC4FD5ED00EF1C9669E8566393A02586_29; } inline void set_U31B897DDDD4C151E2A2E6E3E91B7EA0F7FC4FD5ED00EF1C9669E8566393A02586_29(__StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 value) { ___1B897DDDD4C151E2A2E6E3E91B7EA0F7FC4FD5ED00EF1C9669E8566393A02586_29 = value; } inline static int32_t get_offset_of_U31B993D34192A33EB10CEE61C1093A6FE7D3D4B41F751F550CF8515DC4A215207_30() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___1B993D34192A33EB10CEE61C1093A6FE7D3D4B41F751F550CF8515DC4A215207_30)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_U31B993D34192A33EB10CEE61C1093A6FE7D3D4B41F751F550CF8515DC4A215207_30() const { return ___1B993D34192A33EB10CEE61C1093A6FE7D3D4B41F751F550CF8515DC4A215207_30; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_U31B993D34192A33EB10CEE61C1093A6FE7D3D4B41F751F550CF8515DC4A215207_30() { return &___1B993D34192A33EB10CEE61C1093A6FE7D3D4B41F751F550CF8515DC4A215207_30; } inline void set_U31B993D34192A33EB10CEE61C1093A6FE7D3D4B41F751F550CF8515DC4A215207_30(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___1B993D34192A33EB10CEE61C1093A6FE7D3D4B41F751F550CF8515DC4A215207_30 = value; } inline static int32_t get_offset_of_U31BF78E8BF7F2EF0965437D77FD7CA3B2C80F27F8ABE4123F2207CB112D516AC4_31() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___1BF78E8BF7F2EF0965437D77FD7CA3B2C80F27F8ABE4123F2207CB112D516AC4_31)); } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F get_U31BF78E8BF7F2EF0965437D77FD7CA3B2C80F27F8ABE4123F2207CB112D516AC4_31() const { return ___1BF78E8BF7F2EF0965437D77FD7CA3B2C80F27F8ABE4123F2207CB112D516AC4_31; } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F * get_address_of_U31BF78E8BF7F2EF0965437D77FD7CA3B2C80F27F8ABE4123F2207CB112D516AC4_31() { return &___1BF78E8BF7F2EF0965437D77FD7CA3B2C80F27F8ABE4123F2207CB112D516AC4_31; } inline void set_U31BF78E8BF7F2EF0965437D77FD7CA3B2C80F27F8ABE4123F2207CB112D516AC4_31(__StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F value) { ___1BF78E8BF7F2EF0965437D77FD7CA3B2C80F27F8ABE4123F2207CB112D516AC4_31 = value; } inline static int32_t get_offset_of_U31C200EEC7E0EAFD19F23190A1ED9B95D60EDE114EDE39BD917D1565839CB48DC_32() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___1C200EEC7E0EAFD19F23190A1ED9B95D60EDE114EDE39BD917D1565839CB48DC_32)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U31C200EEC7E0EAFD19F23190A1ED9B95D60EDE114EDE39BD917D1565839CB48DC_32() const { return ___1C200EEC7E0EAFD19F23190A1ED9B95D60EDE114EDE39BD917D1565839CB48DC_32; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U31C200EEC7E0EAFD19F23190A1ED9B95D60EDE114EDE39BD917D1565839CB48DC_32() { return &___1C200EEC7E0EAFD19F23190A1ED9B95D60EDE114EDE39BD917D1565839CB48DC_32; } inline void set_U31C200EEC7E0EAFD19F23190A1ED9B95D60EDE114EDE39BD917D1565839CB48DC_32(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___1C200EEC7E0EAFD19F23190A1ED9B95D60EDE114EDE39BD917D1565839CB48DC_32 = value; } inline static int32_t get_offset_of_U31C3EF802E30F355C14A57C8AFAF6BFC22F3E40631D30059D87C30496D784EC9B_33() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___1C3EF802E30F355C14A57C8AFAF6BFC22F3E40631D30059D87C30496D784EC9B_33)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U31C3EF802E30F355C14A57C8AFAF6BFC22F3E40631D30059D87C30496D784EC9B_33() const { return ___1C3EF802E30F355C14A57C8AFAF6BFC22F3E40631D30059D87C30496D784EC9B_33; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U31C3EF802E30F355C14A57C8AFAF6BFC22F3E40631D30059D87C30496D784EC9B_33() { return &___1C3EF802E30F355C14A57C8AFAF6BFC22F3E40631D30059D87C30496D784EC9B_33; } inline void set_U31C3EF802E30F355C14A57C8AFAF6BFC22F3E40631D30059D87C30496D784EC9B_33(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___1C3EF802E30F355C14A57C8AFAF6BFC22F3E40631D30059D87C30496D784EC9B_33 = value; } inline static int32_t get_offset_of_U320EC21674E2CB9D3BA7B2F74AA5874381BAD58B7EDF526BDE000F175D1C5E5F1_34() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___20EC21674E2CB9D3BA7B2F74AA5874381BAD58B7EDF526BDE000F175D1C5E5F1_34)); } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 get_U320EC21674E2CB9D3BA7B2F74AA5874381BAD58B7EDF526BDE000F175D1C5E5F1_34() const { return ___20EC21674E2CB9D3BA7B2F74AA5874381BAD58B7EDF526BDE000F175D1C5E5F1_34; } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 * get_address_of_U320EC21674E2CB9D3BA7B2F74AA5874381BAD58B7EDF526BDE000F175D1C5E5F1_34() { return &___20EC21674E2CB9D3BA7B2F74AA5874381BAD58B7EDF526BDE000F175D1C5E5F1_34; } inline void set_U320EC21674E2CB9D3BA7B2F74AA5874381BAD58B7EDF526BDE000F175D1C5E5F1_34(__StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 value) { ___20EC21674E2CB9D3BA7B2F74AA5874381BAD58B7EDF526BDE000F175D1C5E5F1_34 = value; } inline static int32_t get_offset_of_U321B0817029E06E75D6C5BE22BC57089FD89B468AA7C549604EB9483F978CAD5B_35() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___21B0817029E06E75D6C5BE22BC57089FD89B468AA7C549604EB9483F978CAD5B_35)); } inline int32_t get_U321B0817029E06E75D6C5BE22BC57089FD89B468AA7C549604EB9483F978CAD5B_35() const { return ___21B0817029E06E75D6C5BE22BC57089FD89B468AA7C549604EB9483F978CAD5B_35; } inline int32_t* get_address_of_U321B0817029E06E75D6C5BE22BC57089FD89B468AA7C549604EB9483F978CAD5B_35() { return &___21B0817029E06E75D6C5BE22BC57089FD89B468AA7C549604EB9483F978CAD5B_35; } inline void set_U321B0817029E06E75D6C5BE22BC57089FD89B468AA7C549604EB9483F978CAD5B_35(int32_t value) { ___21B0817029E06E75D6C5BE22BC57089FD89B468AA7C549604EB9483F978CAD5B_35 = value; } inline static int32_t get_offset_of_U32338F1330733829B7EA276F350452E34DC02E35AEA142145F1294F417A412FE5_36() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___2338F1330733829B7EA276F350452E34DC02E35AEA142145F1294F417A412FE5_36)); } inline __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C get_U32338F1330733829B7EA276F350452E34DC02E35AEA142145F1294F417A412FE5_36() const { return ___2338F1330733829B7EA276F350452E34DC02E35AEA142145F1294F417A412FE5_36; } inline __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C * get_address_of_U32338F1330733829B7EA276F350452E34DC02E35AEA142145F1294F417A412FE5_36() { return &___2338F1330733829B7EA276F350452E34DC02E35AEA142145F1294F417A412FE5_36; } inline void set_U32338F1330733829B7EA276F350452E34DC02E35AEA142145F1294F417A412FE5_36(__StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C value) { ___2338F1330733829B7EA276F350452E34DC02E35AEA142145F1294F417A412FE5_36 = value; } inline static int32_t get_offset_of_U323DB15B6CAC9F0BF9102DAD4E3569A3208841F38E80BB37F8A0D9D70B77779F6_37() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___23DB15B6CAC9F0BF9102DAD4E3569A3208841F38E80BB37F8A0D9D70B77779F6_37)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_U323DB15B6CAC9F0BF9102DAD4E3569A3208841F38E80BB37F8A0D9D70B77779F6_37() const { return ___23DB15B6CAC9F0BF9102DAD4E3569A3208841F38E80BB37F8A0D9D70B77779F6_37; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_U323DB15B6CAC9F0BF9102DAD4E3569A3208841F38E80BB37F8A0D9D70B77779F6_37() { return &___23DB15B6CAC9F0BF9102DAD4E3569A3208841F38E80BB37F8A0D9D70B77779F6_37; } inline void set_U323DB15B6CAC9F0BF9102DAD4E3569A3208841F38E80BB37F8A0D9D70B77779F6_37(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___23DB15B6CAC9F0BF9102DAD4E3569A3208841F38E80BB37F8A0D9D70B77779F6_37 = value; } inline static int32_t get_offset_of_U3241460699808ED5F8D48C6B09EED448CDAE597EBF52B010901CD6F75A767B047_38() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___241460699808ED5F8D48C6B09EED448CDAE597EBF52B010901CD6F75A767B047_38)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U3241460699808ED5F8D48C6B09EED448CDAE597EBF52B010901CD6F75A767B047_38() const { return ___241460699808ED5F8D48C6B09EED448CDAE597EBF52B010901CD6F75A767B047_38; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U3241460699808ED5F8D48C6B09EED448CDAE597EBF52B010901CD6F75A767B047_38() { return &___241460699808ED5F8D48C6B09EED448CDAE597EBF52B010901CD6F75A767B047_38; } inline void set_U3241460699808ED5F8D48C6B09EED448CDAE597EBF52B010901CD6F75A767B047_38(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___241460699808ED5F8D48C6B09EED448CDAE597EBF52B010901CD6F75A767B047_38 = value; } inline static int32_t get_offset_of_U324B7E3A490F64223F93EC177ED5A641984B68F0783A289AC1F2C94D1D92DA684_39() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___24B7E3A490F64223F93EC177ED5A641984B68F0783A289AC1F2C94D1D92DA684_39)); } inline int64_t get_U324B7E3A490F64223F93EC177ED5A641984B68F0783A289AC1F2C94D1D92DA684_39() const { return ___24B7E3A490F64223F93EC177ED5A641984B68F0783A289AC1F2C94D1D92DA684_39; } inline int64_t* get_address_of_U324B7E3A490F64223F93EC177ED5A641984B68F0783A289AC1F2C94D1D92DA684_39() { return &___24B7E3A490F64223F93EC177ED5A641984B68F0783A289AC1F2C94D1D92DA684_39; } inline void set_U324B7E3A490F64223F93EC177ED5A641984B68F0783A289AC1F2C94D1D92DA684_39(int64_t value) { ___24B7E3A490F64223F93EC177ED5A641984B68F0783A289AC1F2C94D1D92DA684_39 = value; } inline static int32_t get_offset_of_U324CB9F17C8326D8BB8EC908716519DF7F265AE825F0DD13BB04E03A90B07D90E_40() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___24CB9F17C8326D8BB8EC908716519DF7F265AE825F0DD13BB04E03A90B07D90E_40)); } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 get_U324CB9F17C8326D8BB8EC908716519DF7F265AE825F0DD13BB04E03A90B07D90E_40() const { return ___24CB9F17C8326D8BB8EC908716519DF7F265AE825F0DD13BB04E03A90B07D90E_40; } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 * get_address_of_U324CB9F17C8326D8BB8EC908716519DF7F265AE825F0DD13BB04E03A90B07D90E_40() { return &___24CB9F17C8326D8BB8EC908716519DF7F265AE825F0DD13BB04E03A90B07D90E_40; } inline void set_U324CB9F17C8326D8BB8EC908716519DF7F265AE825F0DD13BB04E03A90B07D90E_40(__StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 value) { ___24CB9F17C8326D8BB8EC908716519DF7F265AE825F0DD13BB04E03A90B07D90E_40 = value; } inline static int32_t get_offset_of_U3252A0A8312BC1F5202CB599BCF172BEFA6F2A40195E72E2410AF5D81AC8B69D5_41() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___252A0A8312BC1F5202CB599BCF172BEFA6F2A40195E72E2410AF5D81AC8B69D5_41)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_U3252A0A8312BC1F5202CB599BCF172BEFA6F2A40195E72E2410AF5D81AC8B69D5_41() const { return ___252A0A8312BC1F5202CB599BCF172BEFA6F2A40195E72E2410AF5D81AC8B69D5_41; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_U3252A0A8312BC1F5202CB599BCF172BEFA6F2A40195E72E2410AF5D81AC8B69D5_41() { return &___252A0A8312BC1F5202CB599BCF172BEFA6F2A40195E72E2410AF5D81AC8B69D5_41; } inline void set_U3252A0A8312BC1F5202CB599BCF172BEFA6F2A40195E72E2410AF5D81AC8B69D5_41(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___252A0A8312BC1F5202CB599BCF172BEFA6F2A40195E72E2410AF5D81AC8B69D5_41 = value; } inline static int32_t get_offset_of_U3265DD563A3E754D1DA09E056E784DF1550AD6EFA252EDC9A8B6F2F537C4D98A9_42() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___265DD563A3E754D1DA09E056E784DF1550AD6EFA252EDC9A8B6F2F537C4D98A9_42)); } inline __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F get_U3265DD563A3E754D1DA09E056E784DF1550AD6EFA252EDC9A8B6F2F537C4D98A9_42() const { return ___265DD563A3E754D1DA09E056E784DF1550AD6EFA252EDC9A8B6F2F537C4D98A9_42; } inline __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F * get_address_of_U3265DD563A3E754D1DA09E056E784DF1550AD6EFA252EDC9A8B6F2F537C4D98A9_42() { return &___265DD563A3E754D1DA09E056E784DF1550AD6EFA252EDC9A8B6F2F537C4D98A9_42; } inline void set_U3265DD563A3E754D1DA09E056E784DF1550AD6EFA252EDC9A8B6F2F537C4D98A9_42(__StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F value) { ___265DD563A3E754D1DA09E056E784DF1550AD6EFA252EDC9A8B6F2F537C4D98A9_42 = value; } inline static int32_t get_offset_of_U327EB8EA2323F674F4BFE35F3C75FA0609EB3D887842FFDC2B776F7FED82D7EA8_43() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___27EB8EA2323F674F4BFE35F3C75FA0609EB3D887842FFDC2B776F7FED82D7EA8_43)); } inline __StaticArrayInitTypeSizeU3D72_t2005207C3F6F7C1227A5084885E3320B238A2489 get_U327EB8EA2323F674F4BFE35F3C75FA0609EB3D887842FFDC2B776F7FED82D7EA8_43() const { return ___27EB8EA2323F674F4BFE35F3C75FA0609EB3D887842FFDC2B776F7FED82D7EA8_43; } inline __StaticArrayInitTypeSizeU3D72_t2005207C3F6F7C1227A5084885E3320B238A2489 * get_address_of_U327EB8EA2323F674F4BFE35F3C75FA0609EB3D887842FFDC2B776F7FED82D7EA8_43() { return &___27EB8EA2323F674F4BFE35F3C75FA0609EB3D887842FFDC2B776F7FED82D7EA8_43; } inline void set_U327EB8EA2323F674F4BFE35F3C75FA0609EB3D887842FFDC2B776F7FED82D7EA8_43(__StaticArrayInitTypeSizeU3D72_t2005207C3F6F7C1227A5084885E3320B238A2489 value) { ___27EB8EA2323F674F4BFE35F3C75FA0609EB3D887842FFDC2B776F7FED82D7EA8_43 = value; } inline static int32_t get_offset_of_U32A1FE1596DB0F5D1893C1AF50592965E1C09B1EE1E35A8A87C181A9EB2F391F5_44() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___2A1FE1596DB0F5D1893C1AF50592965E1C09B1EE1E35A8A87C181A9EB2F391F5_44)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_U32A1FE1596DB0F5D1893C1AF50592965E1C09B1EE1E35A8A87C181A9EB2F391F5_44() const { return ___2A1FE1596DB0F5D1893C1AF50592965E1C09B1EE1E35A8A87C181A9EB2F391F5_44; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_U32A1FE1596DB0F5D1893C1AF50592965E1C09B1EE1E35A8A87C181A9EB2F391F5_44() { return &___2A1FE1596DB0F5D1893C1AF50592965E1C09B1EE1E35A8A87C181A9EB2F391F5_44; } inline void set_U32A1FE1596DB0F5D1893C1AF50592965E1C09B1EE1E35A8A87C181A9EB2F391F5_44(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___2A1FE1596DB0F5D1893C1AF50592965E1C09B1EE1E35A8A87C181A9EB2F391F5_44 = value; } inline static int32_t get_offset_of_U32B371DA34C2A942BAF37EBEF498C2EE84813B4AB0266066695C4152B6E3FF082_45() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___2B371DA34C2A942BAF37EBEF498C2EE84813B4AB0266066695C4152B6E3FF082_45)); } inline __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E get_U32B371DA34C2A942BAF37EBEF498C2EE84813B4AB0266066695C4152B6E3FF082_45() const { return ___2B371DA34C2A942BAF37EBEF498C2EE84813B4AB0266066695C4152B6E3FF082_45; } inline __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E * get_address_of_U32B371DA34C2A942BAF37EBEF498C2EE84813B4AB0266066695C4152B6E3FF082_45() { return &___2B371DA34C2A942BAF37EBEF498C2EE84813B4AB0266066695C4152B6E3FF082_45; } inline void set_U32B371DA34C2A942BAF37EBEF498C2EE84813B4AB0266066695C4152B6E3FF082_45(__StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E value) { ___2B371DA34C2A942BAF37EBEF498C2EE84813B4AB0266066695C4152B6E3FF082_45 = value; } inline static int32_t get_offset_of_U32C9D6B105EC78E8E02279FB1266932E3468A575B0EB9818985DBE9468B991CCE_46() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___2C9D6B105EC78E8E02279FB1266932E3468A575B0EB9818985DBE9468B991CCE_46)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_U32C9D6B105EC78E8E02279FB1266932E3468A575B0EB9818985DBE9468B991CCE_46() const { return ___2C9D6B105EC78E8E02279FB1266932E3468A575B0EB9818985DBE9468B991CCE_46; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_U32C9D6B105EC78E8E02279FB1266932E3468A575B0EB9818985DBE9468B991CCE_46() { return &___2C9D6B105EC78E8E02279FB1266932E3468A575B0EB9818985DBE9468B991CCE_46; } inline void set_U32C9D6B105EC78E8E02279FB1266932E3468A575B0EB9818985DBE9468B991CCE_46(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___2C9D6B105EC78E8E02279FB1266932E3468A575B0EB9818985DBE9468B991CCE_46 = value; } inline static int32_t get_offset_of_U32DE8C8D0A909D9D152B7752E0C1650FB43AFEBF9F20DF52091B69C394BD9F0FB_47() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___2DE8C8D0A909D9D152B7752E0C1650FB43AFEBF9F20DF52091B69C394BD9F0FB_47)); } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 get_U32DE8C8D0A909D9D152B7752E0C1650FB43AFEBF9F20DF52091B69C394BD9F0FB_47() const { return ___2DE8C8D0A909D9D152B7752E0C1650FB43AFEBF9F20DF52091B69C394BD9F0FB_47; } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 * get_address_of_U32DE8C8D0A909D9D152B7752E0C1650FB43AFEBF9F20DF52091B69C394BD9F0FB_47() { return &___2DE8C8D0A909D9D152B7752E0C1650FB43AFEBF9F20DF52091B69C394BD9F0FB_47; } inline void set_U32DE8C8D0A909D9D152B7752E0C1650FB43AFEBF9F20DF52091B69C394BD9F0FB_47(__StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 value) { ___2DE8C8D0A909D9D152B7752E0C1650FB43AFEBF9F20DF52091B69C394BD9F0FB_47 = value; } inline static int32_t get_offset_of_U32DEB754CF447D0DE35ACB7F4311F9AAB1D4CFC0638E101CCAA8A0A4948AB3600_48() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___2DEB754CF447D0DE35ACB7F4311F9AAB1D4CFC0638E101CCAA8A0A4948AB3600_48)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_U32DEB754CF447D0DE35ACB7F4311F9AAB1D4CFC0638E101CCAA8A0A4948AB3600_48() const { return ___2DEB754CF447D0DE35ACB7F4311F9AAB1D4CFC0638E101CCAA8A0A4948AB3600_48; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_U32DEB754CF447D0DE35ACB7F4311F9AAB1D4CFC0638E101CCAA8A0A4948AB3600_48() { return &___2DEB754CF447D0DE35ACB7F4311F9AAB1D4CFC0638E101CCAA8A0A4948AB3600_48; } inline void set_U32DEB754CF447D0DE35ACB7F4311F9AAB1D4CFC0638E101CCAA8A0A4948AB3600_48(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___2DEB754CF447D0DE35ACB7F4311F9AAB1D4CFC0638E101CCAA8A0A4948AB3600_48 = value; } inline static int32_t get_offset_of_U32EE1A8E6F4E2FE0BB69872A9C314399B1B0FDEE75772244F204ABF4D6DEC2F97_49() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___2EE1A8E6F4E2FE0BB69872A9C314399B1B0FDEE75772244F204ABF4D6DEC2F97_49)); } inline __StaticArrayInitTypeSizeU3D68_tE431405C001EFCAA99F9D46276BFEAF7F5AF4E0F get_U32EE1A8E6F4E2FE0BB69872A9C314399B1B0FDEE75772244F204ABF4D6DEC2F97_49() const { return ___2EE1A8E6F4E2FE0BB69872A9C314399B1B0FDEE75772244F204ABF4D6DEC2F97_49; } inline __StaticArrayInitTypeSizeU3D68_tE431405C001EFCAA99F9D46276BFEAF7F5AF4E0F * get_address_of_U32EE1A8E6F4E2FE0BB69872A9C314399B1B0FDEE75772244F204ABF4D6DEC2F97_49() { return &___2EE1A8E6F4E2FE0BB69872A9C314399B1B0FDEE75772244F204ABF4D6DEC2F97_49; } inline void set_U32EE1A8E6F4E2FE0BB69872A9C314399B1B0FDEE75772244F204ABF4D6DEC2F97_49(__StaticArrayInitTypeSizeU3D68_tE431405C001EFCAA99F9D46276BFEAF7F5AF4E0F value) { ___2EE1A8E6F4E2FE0BB69872A9C314399B1B0FDEE75772244F204ABF4D6DEC2F97_49 = value; } inline static int32_t get_offset_of_U32EF83B43314F8CD03190EEE30ECCF048DA37791237F27C62A579F23EACE9FD70_50() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___2EF83B43314F8CD03190EEE30ECCF048DA37791237F27C62A579F23EACE9FD70_50)); } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F get_U32EF83B43314F8CD03190EEE30ECCF048DA37791237F27C62A579F23EACE9FD70_50() const { return ___2EF83B43314F8CD03190EEE30ECCF048DA37791237F27C62A579F23EACE9FD70_50; } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F * get_address_of_U32EF83B43314F8CD03190EEE30ECCF048DA37791237F27C62A579F23EACE9FD70_50() { return &___2EF83B43314F8CD03190EEE30ECCF048DA37791237F27C62A579F23EACE9FD70_50; } inline void set_U32EF83B43314F8CD03190EEE30ECCF048DA37791237F27C62A579F23EACE9FD70_50(__StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F value) { ___2EF83B43314F8CD03190EEE30ECCF048DA37791237F27C62A579F23EACE9FD70_50 = value; } inline static int32_t get_offset_of_U32F2C71B5B311BF139FD4B797EF2308F928EFE5092D7E11DC070CF41038A079B9_51() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___2F2C71B5B311BF139FD4B797EF2308F928EFE5092D7E11DC070CF41038A079B9_51)); } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F get_U32F2C71B5B311BF139FD4B797EF2308F928EFE5092D7E11DC070CF41038A079B9_51() const { return ___2F2C71B5B311BF139FD4B797EF2308F928EFE5092D7E11DC070CF41038A079B9_51; } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F * get_address_of_U32F2C71B5B311BF139FD4B797EF2308F928EFE5092D7E11DC070CF41038A079B9_51() { return &___2F2C71B5B311BF139FD4B797EF2308F928EFE5092D7E11DC070CF41038A079B9_51; } inline void set_U32F2C71B5B311BF139FD4B797EF2308F928EFE5092D7E11DC070CF41038A079B9_51(__StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F value) { ___2F2C71B5B311BF139FD4B797EF2308F928EFE5092D7E11DC070CF41038A079B9_51 = value; } inline static int32_t get_offset_of_U3301841C47353B7791BE25BC1F60F93D0EB2090AB5714FA5CA3939E8DFF75D218_52() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___301841C47353B7791BE25BC1F60F93D0EB2090AB5714FA5CA3939E8DFF75D218_52)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_U3301841C47353B7791BE25BC1F60F93D0EB2090AB5714FA5CA3939E8DFF75D218_52() const { return ___301841C47353B7791BE25BC1F60F93D0EB2090AB5714FA5CA3939E8DFF75D218_52; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_U3301841C47353B7791BE25BC1F60F93D0EB2090AB5714FA5CA3939E8DFF75D218_52() { return &___301841C47353B7791BE25BC1F60F93D0EB2090AB5714FA5CA3939E8DFF75D218_52; } inline void set_U3301841C47353B7791BE25BC1F60F93D0EB2090AB5714FA5CA3939E8DFF75D218_52(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___301841C47353B7791BE25BC1F60F93D0EB2090AB5714FA5CA3939E8DFF75D218_52 = value; } inline static int32_t get_offset_of_U3304E6CE4B8A999F5B114DD940B655029F8F60AFE4EE0731B111996B6B59BC3A9_53() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___304E6CE4B8A999F5B114DD940B655029F8F60AFE4EE0731B111996B6B59BC3A9_53)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_U3304E6CE4B8A999F5B114DD940B655029F8F60AFE4EE0731B111996B6B59BC3A9_53() const { return ___304E6CE4B8A999F5B114DD940B655029F8F60AFE4EE0731B111996B6B59BC3A9_53; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_U3304E6CE4B8A999F5B114DD940B655029F8F60AFE4EE0731B111996B6B59BC3A9_53() { return &___304E6CE4B8A999F5B114DD940B655029F8F60AFE4EE0731B111996B6B59BC3A9_53; } inline void set_U3304E6CE4B8A999F5B114DD940B655029F8F60AFE4EE0731B111996B6B59BC3A9_53(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___304E6CE4B8A999F5B114DD940B655029F8F60AFE4EE0731B111996B6B59BC3A9_53 = value; } inline static int32_t get_offset_of_U33106DB6422088B231F12C749BC9CC57B08BBDE65695641C166393B42EFF14871_54() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___3106DB6422088B231F12C749BC9CC57B08BBDE65695641C166393B42EFF14871_54)); } inline __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C get_U33106DB6422088B231F12C749BC9CC57B08BBDE65695641C166393B42EFF14871_54() const { return ___3106DB6422088B231F12C749BC9CC57B08BBDE65695641C166393B42EFF14871_54; } inline __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C * get_address_of_U33106DB6422088B231F12C749BC9CC57B08BBDE65695641C166393B42EFF14871_54() { return &___3106DB6422088B231F12C749BC9CC57B08BBDE65695641C166393B42EFF14871_54; } inline void set_U33106DB6422088B231F12C749BC9CC57B08BBDE65695641C166393B42EFF14871_54(__StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C value) { ___3106DB6422088B231F12C749BC9CC57B08BBDE65695641C166393B42EFF14871_54 = value; } inline static int32_t get_offset_of_U331A50A6B8C571138DD6EA37B040389216B779C1ED712CB7980DD199E3BEBEFEC_55() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___31A50A6B8C571138DD6EA37B040389216B779C1ED712CB7980DD199E3BEBEFEC_55)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_U331A50A6B8C571138DD6EA37B040389216B779C1ED712CB7980DD199E3BEBEFEC_55() const { return ___31A50A6B8C571138DD6EA37B040389216B779C1ED712CB7980DD199E3BEBEFEC_55; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_U331A50A6B8C571138DD6EA37B040389216B779C1ED712CB7980DD199E3BEBEFEC_55() { return &___31A50A6B8C571138DD6EA37B040389216B779C1ED712CB7980DD199E3BEBEFEC_55; } inline void set_U331A50A6B8C571138DD6EA37B040389216B779C1ED712CB7980DD199E3BEBEFEC_55(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___31A50A6B8C571138DD6EA37B040389216B779C1ED712CB7980DD199E3BEBEFEC_55 = value; } inline static int32_t get_offset_of_U3325BFEE33A593E28E54E20F8520E5DFEE122F719EF08FFE096A2AD31C4DC316F_56() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___325BFEE33A593E28E54E20F8520E5DFEE122F719EF08FFE096A2AD31C4DC316F_56)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_U3325BFEE33A593E28E54E20F8520E5DFEE122F719EF08FFE096A2AD31C4DC316F_56() const { return ___325BFEE33A593E28E54E20F8520E5DFEE122F719EF08FFE096A2AD31C4DC316F_56; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_U3325BFEE33A593E28E54E20F8520E5DFEE122F719EF08FFE096A2AD31C4DC316F_56() { return &___325BFEE33A593E28E54E20F8520E5DFEE122F719EF08FFE096A2AD31C4DC316F_56; } inline void set_U3325BFEE33A593E28E54E20F8520E5DFEE122F719EF08FFE096A2AD31C4DC316F_56(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___325BFEE33A593E28E54E20F8520E5DFEE122F719EF08FFE096A2AD31C4DC316F_56 = value; } inline static int32_t get_offset_of_U3343E404502DABEA303159A8C37BB2A4405B20A9B230D1C3BA9D496F05879019E_57() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___343E404502DABEA303159A8C37BB2A4405B20A9B230D1C3BA9D496F05879019E_57)); } inline __StaticArrayInitTypeSizeU3D48_tFD8B246DD801288DF862F996D7F0915222433AD7 get_U3343E404502DABEA303159A8C37BB2A4405B20A9B230D1C3BA9D496F05879019E_57() const { return ___343E404502DABEA303159A8C37BB2A4405B20A9B230D1C3BA9D496F05879019E_57; } inline __StaticArrayInitTypeSizeU3D48_tFD8B246DD801288DF862F996D7F0915222433AD7 * get_address_of_U3343E404502DABEA303159A8C37BB2A4405B20A9B230D1C3BA9D496F05879019E_57() { return &___343E404502DABEA303159A8C37BB2A4405B20A9B230D1C3BA9D496F05879019E_57; } inline void set_U3343E404502DABEA303159A8C37BB2A4405B20A9B230D1C3BA9D496F05879019E_57(__StaticArrayInitTypeSizeU3D48_tFD8B246DD801288DF862F996D7F0915222433AD7 value) { ___343E404502DABEA303159A8C37BB2A4405B20A9B230D1C3BA9D496F05879019E_57 = value; } inline static int32_t get_offset_of_U3356608BFA95B39A5AA624D4852D37A19FCFB1302C897E1A4B7EA5EFD1A20120E_58() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___356608BFA95B39A5AA624D4852D37A19FCFB1302C897E1A4B7EA5EFD1A20120E_58)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U3356608BFA95B39A5AA624D4852D37A19FCFB1302C897E1A4B7EA5EFD1A20120E_58() const { return ___356608BFA95B39A5AA624D4852D37A19FCFB1302C897E1A4B7EA5EFD1A20120E_58; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U3356608BFA95B39A5AA624D4852D37A19FCFB1302C897E1A4B7EA5EFD1A20120E_58() { return &___356608BFA95B39A5AA624D4852D37A19FCFB1302C897E1A4B7EA5EFD1A20120E_58; } inline void set_U3356608BFA95B39A5AA624D4852D37A19FCFB1302C897E1A4B7EA5EFD1A20120E_58(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___356608BFA95B39A5AA624D4852D37A19FCFB1302C897E1A4B7EA5EFD1A20120E_58 = value; } inline static int32_t get_offset_of_U336003BEAAFC125A5D50EBAE8C98A6971BE6134DD89E286DD699E012687422A22_59() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___36003BEAAFC125A5D50EBAE8C98A6971BE6134DD89E286DD699E012687422A22_59)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U336003BEAAFC125A5D50EBAE8C98A6971BE6134DD89E286DD699E012687422A22_59() const { return ___36003BEAAFC125A5D50EBAE8C98A6971BE6134DD89E286DD699E012687422A22_59; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U336003BEAAFC125A5D50EBAE8C98A6971BE6134DD89E286DD699E012687422A22_59() { return &___36003BEAAFC125A5D50EBAE8C98A6971BE6134DD89E286DD699E012687422A22_59; } inline void set_U336003BEAAFC125A5D50EBAE8C98A6971BE6134DD89E286DD699E012687422A22_59(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___36003BEAAFC125A5D50EBAE8C98A6971BE6134DD89E286DD699E012687422A22_59 = value; } inline static int32_t get_offset_of_U3360294D82A77697405846183BBB96E548B586D0710C5E2322E2CEF23E88C4122_60() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___360294D82A77697405846183BBB96E548B586D0710C5E2322E2CEF23E88C4122_60)); } inline __StaticArrayInitTypeSizeU3D511_t740CF3C9FEBB9CC89BA68C0F8EC83A7BB47394C3 get_U3360294D82A77697405846183BBB96E548B586D0710C5E2322E2CEF23E88C4122_60() const { return ___360294D82A77697405846183BBB96E548B586D0710C5E2322E2CEF23E88C4122_60; } inline __StaticArrayInitTypeSizeU3D511_t740CF3C9FEBB9CC89BA68C0F8EC83A7BB47394C3 * get_address_of_U3360294D82A77697405846183BBB96E548B586D0710C5E2322E2CEF23E88C4122_60() { return &___360294D82A77697405846183BBB96E548B586D0710C5E2322E2CEF23E88C4122_60; } inline void set_U3360294D82A77697405846183BBB96E548B586D0710C5E2322E2CEF23E88C4122_60(__StaticArrayInitTypeSizeU3D511_t740CF3C9FEBB9CC89BA68C0F8EC83A7BB47394C3 value) { ___360294D82A77697405846183BBB96E548B586D0710C5E2322E2CEF23E88C4122_60 = value; } inline static int32_t get_offset_of_U336B8FDA0BFB1D93A07326EE7CAC8EB99FF1AF237D234FFA3210F64D3EB774C38_61() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___36B8FDA0BFB1D93A07326EE7CAC8EB99FF1AF237D234FFA3210F64D3EB774C38_61)); } inline __StaticArrayInitTypeSizeU3D1152_t2104B5740ABD2FB36896B62E02098A1B196E493F get_U336B8FDA0BFB1D93A07326EE7CAC8EB99FF1AF237D234FFA3210F64D3EB774C38_61() const { return ___36B8FDA0BFB1D93A07326EE7CAC8EB99FF1AF237D234FFA3210F64D3EB774C38_61; } inline __StaticArrayInitTypeSizeU3D1152_t2104B5740ABD2FB36896B62E02098A1B196E493F * get_address_of_U336B8FDA0BFB1D93A07326EE7CAC8EB99FF1AF237D234FFA3210F64D3EB774C38_61() { return &___36B8FDA0BFB1D93A07326EE7CAC8EB99FF1AF237D234FFA3210F64D3EB774C38_61; } inline void set_U336B8FDA0BFB1D93A07326EE7CAC8EB99FF1AF237D234FFA3210F64D3EB774C38_61(__StaticArrayInitTypeSizeU3D1152_t2104B5740ABD2FB36896B62E02098A1B196E493F value) { ___36B8FDA0BFB1D93A07326EE7CAC8EB99FF1AF237D234FFA3210F64D3EB774C38_61 = value; } inline static int32_t get_offset_of_U33936FEF22F74028ACFB35A545386FE1C4F4A2C8CE55E88B5DF4FF605D474D8B4_62() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___3936FEF22F74028ACFB35A545386FE1C4F4A2C8CE55E88B5DF4FF605D474D8B4_62)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U33936FEF22F74028ACFB35A545386FE1C4F4A2C8CE55E88B5DF4FF605D474D8B4_62() const { return ___3936FEF22F74028ACFB35A545386FE1C4F4A2C8CE55E88B5DF4FF605D474D8B4_62; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U33936FEF22F74028ACFB35A545386FE1C4F4A2C8CE55E88B5DF4FF605D474D8B4_62() { return &___3936FEF22F74028ACFB35A545386FE1C4F4A2C8CE55E88B5DF4FF605D474D8B4_62; } inline void set_U33936FEF22F74028ACFB35A545386FE1C4F4A2C8CE55E88B5DF4FF605D474D8B4_62(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___3936FEF22F74028ACFB35A545386FE1C4F4A2C8CE55E88B5DF4FF605D474D8B4_62 = value; } inline static int32_t get_offset_of_U3394D174022AB9D27D329C8DE3DADB69831311870F91A3896EFFB406411F7472C_63() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___394D174022AB9D27D329C8DE3DADB69831311870F91A3896EFFB406411F7472C_63)); } inline __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 get_U3394D174022AB9D27D329C8DE3DADB69831311870F91A3896EFFB406411F7472C_63() const { return ___394D174022AB9D27D329C8DE3DADB69831311870F91A3896EFFB406411F7472C_63; } inline __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 * get_address_of_U3394D174022AB9D27D329C8DE3DADB69831311870F91A3896EFFB406411F7472C_63() { return &___394D174022AB9D27D329C8DE3DADB69831311870F91A3896EFFB406411F7472C_63; } inline void set_U3394D174022AB9D27D329C8DE3DADB69831311870F91A3896EFFB406411F7472C_63(__StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 value) { ___394D174022AB9D27D329C8DE3DADB69831311870F91A3896EFFB406411F7472C_63 = value; } inline static int32_t get_offset_of_U33AF2ACD8D2D27336879BC958CFB6B4271FA89EC7C3EC62B7AD1E0E20B7AF303D_64() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___3AF2ACD8D2D27336879BC958CFB6B4271FA89EC7C3EC62B7AD1E0E20B7AF303D_64)); } inline __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F get_U33AF2ACD8D2D27336879BC958CFB6B4271FA89EC7C3EC62B7AD1E0E20B7AF303D_64() const { return ___3AF2ACD8D2D27336879BC958CFB6B4271FA89EC7C3EC62B7AD1E0E20B7AF303D_64; } inline __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F * get_address_of_U33AF2ACD8D2D27336879BC958CFB6B4271FA89EC7C3EC62B7AD1E0E20B7AF303D_64() { return &___3AF2ACD8D2D27336879BC958CFB6B4271FA89EC7C3EC62B7AD1E0E20B7AF303D_64; } inline void set_U33AF2ACD8D2D27336879BC958CFB6B4271FA89EC7C3EC62B7AD1E0E20B7AF303D_64(__StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F value) { ___3AF2ACD8D2D27336879BC958CFB6B4271FA89EC7C3EC62B7AD1E0E20B7AF303D_64 = value; } inline static int32_t get_offset_of_U33B520286F14349D61645FDE2088337584857AF213F1E9694D9DA4F5C489E6A0E_65() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___3B520286F14349D61645FDE2088337584857AF213F1E9694D9DA4F5C489E6A0E_65)); } inline __StaticArrayInitTypeSizeU3D28_tB9DE54DF41ABC27805509271A10177513906BF30 get_U33B520286F14349D61645FDE2088337584857AF213F1E9694D9DA4F5C489E6A0E_65() const { return ___3B520286F14349D61645FDE2088337584857AF213F1E9694D9DA4F5C489E6A0E_65; } inline __StaticArrayInitTypeSizeU3D28_tB9DE54DF41ABC27805509271A10177513906BF30 * get_address_of_U33B520286F14349D61645FDE2088337584857AF213F1E9694D9DA4F5C489E6A0E_65() { return &___3B520286F14349D61645FDE2088337584857AF213F1E9694D9DA4F5C489E6A0E_65; } inline void set_U33B520286F14349D61645FDE2088337584857AF213F1E9694D9DA4F5C489E6A0E_65(__StaticArrayInitTypeSizeU3D28_tB9DE54DF41ABC27805509271A10177513906BF30 value) { ___3B520286F14349D61645FDE2088337584857AF213F1E9694D9DA4F5C489E6A0E_65 = value; } inline static int32_t get_offset_of_U33B721FB05904288533A0C3F44162AA4631530BCFEBD22C3E57DBC4994E38F83D_66() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___3B721FB05904288533A0C3F44162AA4631530BCFEBD22C3E57DBC4994E38F83D_66)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_U33B721FB05904288533A0C3F44162AA4631530BCFEBD22C3E57DBC4994E38F83D_66() const { return ___3B721FB05904288533A0C3F44162AA4631530BCFEBD22C3E57DBC4994E38F83D_66; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_U33B721FB05904288533A0C3F44162AA4631530BCFEBD22C3E57DBC4994E38F83D_66() { return &___3B721FB05904288533A0C3F44162AA4631530BCFEBD22C3E57DBC4994E38F83D_66; } inline void set_U33B721FB05904288533A0C3F44162AA4631530BCFEBD22C3E57DBC4994E38F83D_66(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___3B721FB05904288533A0C3F44162AA4631530BCFEBD22C3E57DBC4994E38F83D_66 = value; } inline static int32_t get_offset_of_U33BC7BBAE9618E2066112B9F16B3CDBB856ADE0020C732ED2D56FD0D0E38E1FC3_67() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___3BC7BBAE9618E2066112B9F16B3CDBB856ADE0020C732ED2D56FD0D0E38E1FC3_67)); } inline __StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE get_U33BC7BBAE9618E2066112B9F16B3CDBB856ADE0020C732ED2D56FD0D0E38E1FC3_67() const { return ___3BC7BBAE9618E2066112B9F16B3CDBB856ADE0020C732ED2D56FD0D0E38E1FC3_67; } inline __StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE * get_address_of_U33BC7BBAE9618E2066112B9F16B3CDBB856ADE0020C732ED2D56FD0D0E38E1FC3_67() { return &___3BC7BBAE9618E2066112B9F16B3CDBB856ADE0020C732ED2D56FD0D0E38E1FC3_67; } inline void set_U33BC7BBAE9618E2066112B9F16B3CDBB856ADE0020C732ED2D56FD0D0E38E1FC3_67(__StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE value) { ___3BC7BBAE9618E2066112B9F16B3CDBB856ADE0020C732ED2D56FD0D0E38E1FC3_67 = value; } inline static int32_t get_offset_of_U33CA024F96B6FA0D283063E7C2B60A83C2B07F26AE1788CDFAEEB231C7725ED92_68() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___3CA024F96B6FA0D283063E7C2B60A83C2B07F26AE1788CDFAEEB231C7725ED92_68)); } inline __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E get_U33CA024F96B6FA0D283063E7C2B60A83C2B07F26AE1788CDFAEEB231C7725ED92_68() const { return ___3CA024F96B6FA0D283063E7C2B60A83C2B07F26AE1788CDFAEEB231C7725ED92_68; } inline __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E * get_address_of_U33CA024F96B6FA0D283063E7C2B60A83C2B07F26AE1788CDFAEEB231C7725ED92_68() { return &___3CA024F96B6FA0D283063E7C2B60A83C2B07F26AE1788CDFAEEB231C7725ED92_68; } inline void set_U33CA024F96B6FA0D283063E7C2B60A83C2B07F26AE1788CDFAEEB231C7725ED92_68(__StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E value) { ___3CA024F96B6FA0D283063E7C2B60A83C2B07F26AE1788CDFAEEB231C7725ED92_68 = value; } inline static int32_t get_offset_of_U33E4FB5FE52BF269D6EE955711016291D6D327A4AAC39B2464C53C6BD0D73242A_69() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___3E4FB5FE52BF269D6EE955711016291D6D327A4AAC39B2464C53C6BD0D73242A_69)); } inline __StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE get_U33E4FB5FE52BF269D6EE955711016291D6D327A4AAC39B2464C53C6BD0D73242A_69() const { return ___3E4FB5FE52BF269D6EE955711016291D6D327A4AAC39B2464C53C6BD0D73242A_69; } inline __StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE * get_address_of_U33E4FB5FE52BF269D6EE955711016291D6D327A4AAC39B2464C53C6BD0D73242A_69() { return &___3E4FB5FE52BF269D6EE955711016291D6D327A4AAC39B2464C53C6BD0D73242A_69; } inline void set_U33E4FB5FE52BF269D6EE955711016291D6D327A4AAC39B2464C53C6BD0D73242A_69(__StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE value) { ___3E4FB5FE52BF269D6EE955711016291D6D327A4AAC39B2464C53C6BD0D73242A_69 = value; } inline static int32_t get_offset_of_U33EAA30E2BB2D4FF7221734E2CFBD2A94F0A3D8EB435634724DBF207AFE0DE24B_70() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___3EAA30E2BB2D4FF7221734E2CFBD2A94F0A3D8EB435634724DBF207AFE0DE24B_70)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_U33EAA30E2BB2D4FF7221734E2CFBD2A94F0A3D8EB435634724DBF207AFE0DE24B_70() const { return ___3EAA30E2BB2D4FF7221734E2CFBD2A94F0A3D8EB435634724DBF207AFE0DE24B_70; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_U33EAA30E2BB2D4FF7221734E2CFBD2A94F0A3D8EB435634724DBF207AFE0DE24B_70() { return &___3EAA30E2BB2D4FF7221734E2CFBD2A94F0A3D8EB435634724DBF207AFE0DE24B_70; } inline void set_U33EAA30E2BB2D4FF7221734E2CFBD2A94F0A3D8EB435634724DBF207AFE0DE24B_70(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___3EAA30E2BB2D4FF7221734E2CFBD2A94F0A3D8EB435634724DBF207AFE0DE24B_70 = value; } inline static int32_t get_offset_of_U33F580014EE7F27F024FC40AE120394FAC1A8E4CD1B40FD0F0089E89856152138_71() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___3F580014EE7F27F024FC40AE120394FAC1A8E4CD1B40FD0F0089E89856152138_71)); } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 get_U33F580014EE7F27F024FC40AE120394FAC1A8E4CD1B40FD0F0089E89856152138_71() const { return ___3F580014EE7F27F024FC40AE120394FAC1A8E4CD1B40FD0F0089E89856152138_71; } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 * get_address_of_U33F580014EE7F27F024FC40AE120394FAC1A8E4CD1B40FD0F0089E89856152138_71() { return &___3F580014EE7F27F024FC40AE120394FAC1A8E4CD1B40FD0F0089E89856152138_71; } inline void set_U33F580014EE7F27F024FC40AE120394FAC1A8E4CD1B40FD0F0089E89856152138_71(__StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 value) { ___3F580014EE7F27F024FC40AE120394FAC1A8E4CD1B40FD0F0089E89856152138_71 = value; } inline static int32_t get_offset_of_U3405634CB2F08D8E4A65CF85762D7BE4356E6DE1C0C941DA950F3034F3F8C6ED0_72() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___405634CB2F08D8E4A65CF85762D7BE4356E6DE1C0C941DA950F3034F3F8C6ED0_72)); } inline __StaticArrayInitTypeSizeU3D44_tB4E85CA0F7D90D00E66285BECB46250AA72356B5 get_U3405634CB2F08D8E4A65CF85762D7BE4356E6DE1C0C941DA950F3034F3F8C6ED0_72() const { return ___405634CB2F08D8E4A65CF85762D7BE4356E6DE1C0C941DA950F3034F3F8C6ED0_72; } inline __StaticArrayInitTypeSizeU3D44_tB4E85CA0F7D90D00E66285BECB46250AA72356B5 * get_address_of_U3405634CB2F08D8E4A65CF85762D7BE4356E6DE1C0C941DA950F3034F3F8C6ED0_72() { return &___405634CB2F08D8E4A65CF85762D7BE4356E6DE1C0C941DA950F3034F3F8C6ED0_72; } inline void set_U3405634CB2F08D8E4A65CF85762D7BE4356E6DE1C0C941DA950F3034F3F8C6ED0_72(__StaticArrayInitTypeSizeU3D44_tB4E85CA0F7D90D00E66285BECB46250AA72356B5 value) { ___405634CB2F08D8E4A65CF85762D7BE4356E6DE1C0C941DA950F3034F3F8C6ED0_72 = value; } inline static int32_t get_offset_of_U340866F3E76BC07D89281D2593C42AD252FB2D84E0A91FA3C78CA3C1FCC17643D_73() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___40866F3E76BC07D89281D2593C42AD252FB2D84E0A91FA3C78CA3C1FCC17643D_73)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_U340866F3E76BC07D89281D2593C42AD252FB2D84E0A91FA3C78CA3C1FCC17643D_73() const { return ___40866F3E76BC07D89281D2593C42AD252FB2D84E0A91FA3C78CA3C1FCC17643D_73; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_U340866F3E76BC07D89281D2593C42AD252FB2D84E0A91FA3C78CA3C1FCC17643D_73() { return &___40866F3E76BC07D89281D2593C42AD252FB2D84E0A91FA3C78CA3C1FCC17643D_73; } inline void set_U340866F3E76BC07D89281D2593C42AD252FB2D84E0A91FA3C78CA3C1FCC17643D_73(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___40866F3E76BC07D89281D2593C42AD252FB2D84E0A91FA3C78CA3C1FCC17643D_73 = value; } inline static int32_t get_offset_of_U3427C844BAD080C6008BDA87BD6ACA4F6F342F6FCA9472A6D63C31B69F6F85054_74() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___427C844BAD080C6008BDA87BD6ACA4F6F342F6FCA9472A6D63C31B69F6F85054_74)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_U3427C844BAD080C6008BDA87BD6ACA4F6F342F6FCA9472A6D63C31B69F6F85054_74() const { return ___427C844BAD080C6008BDA87BD6ACA4F6F342F6FCA9472A6D63C31B69F6F85054_74; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_U3427C844BAD080C6008BDA87BD6ACA4F6F342F6FCA9472A6D63C31B69F6F85054_74() { return &___427C844BAD080C6008BDA87BD6ACA4F6F342F6FCA9472A6D63C31B69F6F85054_74; } inline void set_U3427C844BAD080C6008BDA87BD6ACA4F6F342F6FCA9472A6D63C31B69F6F85054_74(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___427C844BAD080C6008BDA87BD6ACA4F6F342F6FCA9472A6D63C31B69F6F85054_74 = value; } inline static int32_t get_offset_of_U342E57F5A26F7D53A24B69FF9F56FA7550A23B8BAB2F5993357E4C53EA06141E9_75() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___42E57F5A26F7D53A24B69FF9F56FA7550A23B8BAB2F5993357E4C53EA06141E9_75)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_U342E57F5A26F7D53A24B69FF9F56FA7550A23B8BAB2F5993357E4C53EA06141E9_75() const { return ___42E57F5A26F7D53A24B69FF9F56FA7550A23B8BAB2F5993357E4C53EA06141E9_75; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_U342E57F5A26F7D53A24B69FF9F56FA7550A23B8BAB2F5993357E4C53EA06141E9_75() { return &___42E57F5A26F7D53A24B69FF9F56FA7550A23B8BAB2F5993357E4C53EA06141E9_75; } inline void set_U342E57F5A26F7D53A24B69FF9F56FA7550A23B8BAB2F5993357E4C53EA06141E9_75(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___42E57F5A26F7D53A24B69FF9F56FA7550A23B8BAB2F5993357E4C53EA06141E9_75 = value; } inline static int32_t get_offset_of_U3439231575950B2ADCDE8DC0E470192ADA8DDC05EB55836596636563B6403A6B5_76() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___439231575950B2ADCDE8DC0E470192ADA8DDC05EB55836596636563B6403A6B5_76)); } inline __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C get_U3439231575950B2ADCDE8DC0E470192ADA8DDC05EB55836596636563B6403A6B5_76() const { return ___439231575950B2ADCDE8DC0E470192ADA8DDC05EB55836596636563B6403A6B5_76; } inline __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C * get_address_of_U3439231575950B2ADCDE8DC0E470192ADA8DDC05EB55836596636563B6403A6B5_76() { return &___439231575950B2ADCDE8DC0E470192ADA8DDC05EB55836596636563B6403A6B5_76; } inline void set_U3439231575950B2ADCDE8DC0E470192ADA8DDC05EB55836596636563B6403A6B5_76(__StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C value) { ___439231575950B2ADCDE8DC0E470192ADA8DDC05EB55836596636563B6403A6B5_76 = value; } inline static int32_t get_offset_of_U343B9A42341477A51FB3329FA943298FB43910D3EDCAB69BFB04D0E68D84C0247_77() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___43B9A42341477A51FB3329FA943298FB43910D3EDCAB69BFB04D0E68D84C0247_77)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U343B9A42341477A51FB3329FA943298FB43910D3EDCAB69BFB04D0E68D84C0247_77() const { return ___43B9A42341477A51FB3329FA943298FB43910D3EDCAB69BFB04D0E68D84C0247_77; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U343B9A42341477A51FB3329FA943298FB43910D3EDCAB69BFB04D0E68D84C0247_77() { return &___43B9A42341477A51FB3329FA943298FB43910D3EDCAB69BFB04D0E68D84C0247_77; } inline void set_U343B9A42341477A51FB3329FA943298FB43910D3EDCAB69BFB04D0E68D84C0247_77(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___43B9A42341477A51FB3329FA943298FB43910D3EDCAB69BFB04D0E68D84C0247_77 = value; } inline static int32_t get_offset_of_U343C8B8D4786B6331EFC85B21E235E3E39940C427680D2C6B73ABF19738EF5186_78() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___43C8B8D4786B6331EFC85B21E235E3E39940C427680D2C6B73ABF19738EF5186_78)); } inline __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 get_U343C8B8D4786B6331EFC85B21E235E3E39940C427680D2C6B73ABF19738EF5186_78() const { return ___43C8B8D4786B6331EFC85B21E235E3E39940C427680D2C6B73ABF19738EF5186_78; } inline __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 * get_address_of_U343C8B8D4786B6331EFC85B21E235E3E39940C427680D2C6B73ABF19738EF5186_78() { return &___43C8B8D4786B6331EFC85B21E235E3E39940C427680D2C6B73ABF19738EF5186_78; } inline void set_U343C8B8D4786B6331EFC85B21E235E3E39940C427680D2C6B73ABF19738EF5186_78(__StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 value) { ___43C8B8D4786B6331EFC85B21E235E3E39940C427680D2C6B73ABF19738EF5186_78 = value; } inline static int32_t get_offset_of_U3463BE4A1C16EB914C411F194E1F87BEF5A9081C49888860A682E8543D4B35F58_79() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___463BE4A1C16EB914C411F194E1F87BEF5A9081C49888860A682E8543D4B35F58_79)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_U3463BE4A1C16EB914C411F194E1F87BEF5A9081C49888860A682E8543D4B35F58_79() const { return ___463BE4A1C16EB914C411F194E1F87BEF5A9081C49888860A682E8543D4B35F58_79; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_U3463BE4A1C16EB914C411F194E1F87BEF5A9081C49888860A682E8543D4B35F58_79() { return &___463BE4A1C16EB914C411F194E1F87BEF5A9081C49888860A682E8543D4B35F58_79; } inline void set_U3463BE4A1C16EB914C411F194E1F87BEF5A9081C49888860A682E8543D4B35F58_79(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___463BE4A1C16EB914C411F194E1F87BEF5A9081C49888860A682E8543D4B35F58_79 = value; } inline static int32_t get_offset_of_U34654FB5A717A0EB7C9078754B15F325C2F156519CFF821AAA495495741FF153A_80() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___4654FB5A717A0EB7C9078754B15F325C2F156519CFF821AAA495495741FF153A_80)); } inline __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 get_U34654FB5A717A0EB7C9078754B15F325C2F156519CFF821AAA495495741FF153A_80() const { return ___4654FB5A717A0EB7C9078754B15F325C2F156519CFF821AAA495495741FF153A_80; } inline __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 * get_address_of_U34654FB5A717A0EB7C9078754B15F325C2F156519CFF821AAA495495741FF153A_80() { return &___4654FB5A717A0EB7C9078754B15F325C2F156519CFF821AAA495495741FF153A_80; } inline void set_U34654FB5A717A0EB7C9078754B15F325C2F156519CFF821AAA495495741FF153A_80(__StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 value) { ___4654FB5A717A0EB7C9078754B15F325C2F156519CFF821AAA495495741FF153A_80 = value; } inline static int32_t get_offset_of_U34867A63842B7AFBF7A120C1310940F29048D0B73EF1747E15AD67A3AA0D9AF9D_81() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___4867A63842B7AFBF7A120C1310940F29048D0B73EF1747E15AD67A3AA0D9AF9D_81)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_U34867A63842B7AFBF7A120C1310940F29048D0B73EF1747E15AD67A3AA0D9AF9D_81() const { return ___4867A63842B7AFBF7A120C1310940F29048D0B73EF1747E15AD67A3AA0D9AF9D_81; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_U34867A63842B7AFBF7A120C1310940F29048D0B73EF1747E15AD67A3AA0D9AF9D_81() { return &___4867A63842B7AFBF7A120C1310940F29048D0B73EF1747E15AD67A3AA0D9AF9D_81; } inline void set_U34867A63842B7AFBF7A120C1310940F29048D0B73EF1747E15AD67A3AA0D9AF9D_81(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___4867A63842B7AFBF7A120C1310940F29048D0B73EF1747E15AD67A3AA0D9AF9D_81 = value; } inline static int32_t get_offset_of_U3490FE1E40F08589851422F9DAF5012280352D005653B5D2CE872268A1A743ACF_82() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___490FE1E40F08589851422F9DAF5012280352D005653B5D2CE872268A1A743ACF_82)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_U3490FE1E40F08589851422F9DAF5012280352D005653B5D2CE872268A1A743ACF_82() const { return ___490FE1E40F08589851422F9DAF5012280352D005653B5D2CE872268A1A743ACF_82; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_U3490FE1E40F08589851422F9DAF5012280352D005653B5D2CE872268A1A743ACF_82() { return &___490FE1E40F08589851422F9DAF5012280352D005653B5D2CE872268A1A743ACF_82; } inline void set_U3490FE1E40F08589851422F9DAF5012280352D005653B5D2CE872268A1A743ACF_82(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___490FE1E40F08589851422F9DAF5012280352D005653B5D2CE872268A1A743ACF_82 = value; } inline static int32_t get_offset_of_U34993FAA5B9060FAAFC80E9F6CE26AF291965C0B1E8F5BBDC87C6CE9AEF6FFA24_83() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___4993FAA5B9060FAAFC80E9F6CE26AF291965C0B1E8F5BBDC87C6CE9AEF6FFA24_83)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U34993FAA5B9060FAAFC80E9F6CE26AF291965C0B1E8F5BBDC87C6CE9AEF6FFA24_83() const { return ___4993FAA5B9060FAAFC80E9F6CE26AF291965C0B1E8F5BBDC87C6CE9AEF6FFA24_83; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U34993FAA5B9060FAAFC80E9F6CE26AF291965C0B1E8F5BBDC87C6CE9AEF6FFA24_83() { return &___4993FAA5B9060FAAFC80E9F6CE26AF291965C0B1E8F5BBDC87C6CE9AEF6FFA24_83; } inline void set_U34993FAA5B9060FAAFC80E9F6CE26AF291965C0B1E8F5BBDC87C6CE9AEF6FFA24_83(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___4993FAA5B9060FAAFC80E9F6CE26AF291965C0B1E8F5BBDC87C6CE9AEF6FFA24_83 = value; } inline static int32_t get_offset_of_U349D826830B5D920448F74BBBEDB361F17C9DD461E0DC3DED114E6E13E0173981_84() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___49D826830B5D920448F74BBBEDB361F17C9DD461E0DC3DED114E6E13E0173981_84)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U349D826830B5D920448F74BBBEDB361F17C9DD461E0DC3DED114E6E13E0173981_84() const { return ___49D826830B5D920448F74BBBEDB361F17C9DD461E0DC3DED114E6E13E0173981_84; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U349D826830B5D920448F74BBBEDB361F17C9DD461E0DC3DED114E6E13E0173981_84() { return &___49D826830B5D920448F74BBBEDB361F17C9DD461E0DC3DED114E6E13E0173981_84; } inline void set_U349D826830B5D920448F74BBBEDB361F17C9DD461E0DC3DED114E6E13E0173981_84(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___49D826830B5D920448F74BBBEDB361F17C9DD461E0DC3DED114E6E13E0173981_84 = value; } inline static int32_t get_offset_of_U349FC72E2BC139CDC89193D013C3CBAD8CB75E78CA254B8466A03D26581D08BE4_85() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___49FC72E2BC139CDC89193D013C3CBAD8CB75E78CA254B8466A03D26581D08BE4_85)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U349FC72E2BC139CDC89193D013C3CBAD8CB75E78CA254B8466A03D26581D08BE4_85() const { return ___49FC72E2BC139CDC89193D013C3CBAD8CB75E78CA254B8466A03D26581D08BE4_85; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U349FC72E2BC139CDC89193D013C3CBAD8CB75E78CA254B8466A03D26581D08BE4_85() { return &___49FC72E2BC139CDC89193D013C3CBAD8CB75E78CA254B8466A03D26581D08BE4_85; } inline void set_U349FC72E2BC139CDC89193D013C3CBAD8CB75E78CA254B8466A03D26581D08BE4_85(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___49FC72E2BC139CDC89193D013C3CBAD8CB75E78CA254B8466A03D26581D08BE4_85 = value; } inline static int32_t get_offset_of_U34ADFA71AB9AF20C1C372C92FF8D26609A11DA05E167BBA62C0ABFD18F4C1EAF8_86() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___4ADFA71AB9AF20C1C372C92FF8D26609A11DA05E167BBA62C0ABFD18F4C1EAF8_86)); } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F get_U34ADFA71AB9AF20C1C372C92FF8D26609A11DA05E167BBA62C0ABFD18F4C1EAF8_86() const { return ___4ADFA71AB9AF20C1C372C92FF8D26609A11DA05E167BBA62C0ABFD18F4C1EAF8_86; } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F * get_address_of_U34ADFA71AB9AF20C1C372C92FF8D26609A11DA05E167BBA62C0ABFD18F4C1EAF8_86() { return &___4ADFA71AB9AF20C1C372C92FF8D26609A11DA05E167BBA62C0ABFD18F4C1EAF8_86; } inline void set_U34ADFA71AB9AF20C1C372C92FF8D26609A11DA05E167BBA62C0ABFD18F4C1EAF8_86(__StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F value) { ___4ADFA71AB9AF20C1C372C92FF8D26609A11DA05E167BBA62C0ABFD18F4C1EAF8_86 = value; } inline static int32_t get_offset_of_U34D30B965ABF4D17A678F232D7C2491E37B61B203A6E807BB9E09C4BA2614F72D_87() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___4D30B965ABF4D17A678F232D7C2491E37B61B203A6E807BB9E09C4BA2614F72D_87)); } inline __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 get_U34D30B965ABF4D17A678F232D7C2491E37B61B203A6E807BB9E09C4BA2614F72D_87() const { return ___4D30B965ABF4D17A678F232D7C2491E37B61B203A6E807BB9E09C4BA2614F72D_87; } inline __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 * get_address_of_U34D30B965ABF4D17A678F232D7C2491E37B61B203A6E807BB9E09C4BA2614F72D_87() { return &___4D30B965ABF4D17A678F232D7C2491E37B61B203A6E807BB9E09C4BA2614F72D_87; } inline void set_U34D30B965ABF4D17A678F232D7C2491E37B61B203A6E807BB9E09C4BA2614F72D_87(__StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 value) { ___4D30B965ABF4D17A678F232D7C2491E37B61B203A6E807BB9E09C4BA2614F72D_87 = value; } inline static int32_t get_offset_of_U34D487DD66D80886D292C3C7B64CC41FEBA1E313A26A9D05333B42E895741FF81_88() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___4D487DD66D80886D292C3C7B64CC41FEBA1E313A26A9D05333B42E895741FF81_88)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_U34D487DD66D80886D292C3C7B64CC41FEBA1E313A26A9D05333B42E895741FF81_88() const { return ___4D487DD66D80886D292C3C7B64CC41FEBA1E313A26A9D05333B42E895741FF81_88; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_U34D487DD66D80886D292C3C7B64CC41FEBA1E313A26A9D05333B42E895741FF81_88() { return &___4D487DD66D80886D292C3C7B64CC41FEBA1E313A26A9D05333B42E895741FF81_88; } inline void set_U34D487DD66D80886D292C3C7B64CC41FEBA1E313A26A9D05333B42E895741FF81_88(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___4D487DD66D80886D292C3C7B64CC41FEBA1E313A26A9D05333B42E895741FF81_88 = value; } inline static int32_t get_offset_of_U34D7CAD3DEBDBD349390304F3A59AD3F66B4A1FB02F88749C4E393FF3A1EDD411_89() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___4D7CAD3DEBDBD349390304F3A59AD3F66B4A1FB02F88749C4E393FF3A1EDD411_89)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U34D7CAD3DEBDBD349390304F3A59AD3F66B4A1FB02F88749C4E393FF3A1EDD411_89() const { return ___4D7CAD3DEBDBD349390304F3A59AD3F66B4A1FB02F88749C4E393FF3A1EDD411_89; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U34D7CAD3DEBDBD349390304F3A59AD3F66B4A1FB02F88749C4E393FF3A1EDD411_89() { return &___4D7CAD3DEBDBD349390304F3A59AD3F66B4A1FB02F88749C4E393FF3A1EDD411_89; } inline void set_U34D7CAD3DEBDBD349390304F3A59AD3F66B4A1FB02F88749C4E393FF3A1EDD411_89(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___4D7CAD3DEBDBD349390304F3A59AD3F66B4A1FB02F88749C4E393FF3A1EDD411_89 = value; } inline static int32_t get_offset_of_U34F1B8E1CB953EA2DC9E5B3B1A88872BD0BF97BD1091B00456F43F1DFE4A0C976_90() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___4F1B8E1CB953EA2DC9E5B3B1A88872BD0BF97BD1091B00456F43F1DFE4A0C976_90)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_U34F1B8E1CB953EA2DC9E5B3B1A88872BD0BF97BD1091B00456F43F1DFE4A0C976_90() const { return ___4F1B8E1CB953EA2DC9E5B3B1A88872BD0BF97BD1091B00456F43F1DFE4A0C976_90; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_U34F1B8E1CB953EA2DC9E5B3B1A88872BD0BF97BD1091B00456F43F1DFE4A0C976_90() { return &___4F1B8E1CB953EA2DC9E5B3B1A88872BD0BF97BD1091B00456F43F1DFE4A0C976_90; } inline void set_U34F1B8E1CB953EA2DC9E5B3B1A88872BD0BF97BD1091B00456F43F1DFE4A0C976_90(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___4F1B8E1CB953EA2DC9E5B3B1A88872BD0BF97BD1091B00456F43F1DFE4A0C976_90 = value; } inline static int32_t get_offset_of_U34FDCD793D71BE141D8E85C48B61B68F00848ACEF69905D47D935786C44D07D92_91() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___4FDCD793D71BE141D8E85C48B61B68F00848ACEF69905D47D935786C44D07D92_91)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U34FDCD793D71BE141D8E85C48B61B68F00848ACEF69905D47D935786C44D07D92_91() const { return ___4FDCD793D71BE141D8E85C48B61B68F00848ACEF69905D47D935786C44D07D92_91; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U34FDCD793D71BE141D8E85C48B61B68F00848ACEF69905D47D935786C44D07D92_91() { return &___4FDCD793D71BE141D8E85C48B61B68F00848ACEF69905D47D935786C44D07D92_91; } inline void set_U34FDCD793D71BE141D8E85C48B61B68F00848ACEF69905D47D935786C44D07D92_91(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___4FDCD793D71BE141D8E85C48B61B68F00848ACEF69905D47D935786C44D07D92_91 = value; } inline static int32_t get_offset_of_U3507B1EFA9C696556B36957CBA8E6B8517AC8CD457424F04C7EF34363FC3B7F8F_92() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___507B1EFA9C696556B36957CBA8E6B8517AC8CD457424F04C7EF34363FC3B7F8F_92)); } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 get_U3507B1EFA9C696556B36957CBA8E6B8517AC8CD457424F04C7EF34363FC3B7F8F_92() const { return ___507B1EFA9C696556B36957CBA8E6B8517AC8CD457424F04C7EF34363FC3B7F8F_92; } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 * get_address_of_U3507B1EFA9C696556B36957CBA8E6B8517AC8CD457424F04C7EF34363FC3B7F8F_92() { return &___507B1EFA9C696556B36957CBA8E6B8517AC8CD457424F04C7EF34363FC3B7F8F_92; } inline void set_U3507B1EFA9C696556B36957CBA8E6B8517AC8CD457424F04C7EF34363FC3B7F8F_92(__StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 value) { ___507B1EFA9C696556B36957CBA8E6B8517AC8CD457424F04C7EF34363FC3B7F8F_92 = value; } inline static int32_t get_offset_of_U3513BA924C2DC996CAF3DC690D42BEB815316271C0CDAC0812BC0F2C2ED45DEA4_93() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___513BA924C2DC996CAF3DC690D42BEB815316271C0CDAC0812BC0F2C2ED45DEA4_93)); } inline __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 get_U3513BA924C2DC996CAF3DC690D42BEB815316271C0CDAC0812BC0F2C2ED45DEA4_93() const { return ___513BA924C2DC996CAF3DC690D42BEB815316271C0CDAC0812BC0F2C2ED45DEA4_93; } inline __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 * get_address_of_U3513BA924C2DC996CAF3DC690D42BEB815316271C0CDAC0812BC0F2C2ED45DEA4_93() { return &___513BA924C2DC996CAF3DC690D42BEB815316271C0CDAC0812BC0F2C2ED45DEA4_93; } inline void set_U3513BA924C2DC996CAF3DC690D42BEB815316271C0CDAC0812BC0F2C2ED45DEA4_93(__StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 value) { ___513BA924C2DC996CAF3DC690D42BEB815316271C0CDAC0812BC0F2C2ED45DEA4_93 = value; } inline static int32_t get_offset_of_U35218271C2AB140CF1F8F18D070924F6EA8F08F5FB59C9E4F05AF36C0740D172A_94() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___5218271C2AB140CF1F8F18D070924F6EA8F08F5FB59C9E4F05AF36C0740D172A_94)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U35218271C2AB140CF1F8F18D070924F6EA8F08F5FB59C9E4F05AF36C0740D172A_94() const { return ___5218271C2AB140CF1F8F18D070924F6EA8F08F5FB59C9E4F05AF36C0740D172A_94; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U35218271C2AB140CF1F8F18D070924F6EA8F08F5FB59C9E4F05AF36C0740D172A_94() { return &___5218271C2AB140CF1F8F18D070924F6EA8F08F5FB59C9E4F05AF36C0740D172A_94; } inline void set_U35218271C2AB140CF1F8F18D070924F6EA8F08F5FB59C9E4F05AF36C0740D172A_94(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___5218271C2AB140CF1F8F18D070924F6EA8F08F5FB59C9E4F05AF36C0740D172A_94 = value; } inline static int32_t get_offset_of_U3542A4AD813E0CA853A400A4DC81182DB6803BEC6EA63ED0D54E0E90660DFDC2B_95() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___542A4AD813E0CA853A400A4DC81182DB6803BEC6EA63ED0D54E0E90660DFDC2B_95)); } inline __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E get_U3542A4AD813E0CA853A400A4DC81182DB6803BEC6EA63ED0D54E0E90660DFDC2B_95() const { return ___542A4AD813E0CA853A400A4DC81182DB6803BEC6EA63ED0D54E0E90660DFDC2B_95; } inline __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E * get_address_of_U3542A4AD813E0CA853A400A4DC81182DB6803BEC6EA63ED0D54E0E90660DFDC2B_95() { return &___542A4AD813E0CA853A400A4DC81182DB6803BEC6EA63ED0D54E0E90660DFDC2B_95; } inline void set_U3542A4AD813E0CA853A400A4DC81182DB6803BEC6EA63ED0D54E0E90660DFDC2B_95(__StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E value) { ___542A4AD813E0CA853A400A4DC81182DB6803BEC6EA63ED0D54E0E90660DFDC2B_95 = value; } inline static int32_t get_offset_of_U355D0BF716B334D123E0088CFB3F8E2FEA17AF5025BB527F95EEB09BA978EA329_96() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___55D0BF716B334D123E0088CFB3F8E2FEA17AF5025BB527F95EEB09BA978EA329_96)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_U355D0BF716B334D123E0088CFB3F8E2FEA17AF5025BB527F95EEB09BA978EA329_96() const { return ___55D0BF716B334D123E0088CFB3F8E2FEA17AF5025BB527F95EEB09BA978EA329_96; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_U355D0BF716B334D123E0088CFB3F8E2FEA17AF5025BB527F95EEB09BA978EA329_96() { return &___55D0BF716B334D123E0088CFB3F8E2FEA17AF5025BB527F95EEB09BA978EA329_96; } inline void set_U355D0BF716B334D123E0088CFB3F8E2FEA17AF5025BB527F95EEB09BA978EA329_96(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___55D0BF716B334D123E0088CFB3F8E2FEA17AF5025BB527F95EEB09BA978EA329_96 = value; } inline static int32_t get_offset_of_U355D90ED526CE6FF4309EE00834C4060B1A37CB6D5E65BAA01366C72FB2A68CB4_97() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___55D90ED526CE6FF4309EE00834C4060B1A37CB6D5E65BAA01366C72FB2A68CB4_97)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U355D90ED526CE6FF4309EE00834C4060B1A37CB6D5E65BAA01366C72FB2A68CB4_97() const { return ___55D90ED526CE6FF4309EE00834C4060B1A37CB6D5E65BAA01366C72FB2A68CB4_97; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U355D90ED526CE6FF4309EE00834C4060B1A37CB6D5E65BAA01366C72FB2A68CB4_97() { return &___55D90ED526CE6FF4309EE00834C4060B1A37CB6D5E65BAA01366C72FB2A68CB4_97; } inline void set_U355D90ED526CE6FF4309EE00834C4060B1A37CB6D5E65BAA01366C72FB2A68CB4_97(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___55D90ED526CE6FF4309EE00834C4060B1A37CB6D5E65BAA01366C72FB2A68CB4_97 = value; } inline static int32_t get_offset_of_U35686DFA3DBAE1C40758CFEA05B267DAC2FAF6CCDFADBC08A75D81088B777C751_98() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___5686DFA3DBAE1C40758CFEA05B267DAC2FAF6CCDFADBC08A75D81088B777C751_98)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_U35686DFA3DBAE1C40758CFEA05B267DAC2FAF6CCDFADBC08A75D81088B777C751_98() const { return ___5686DFA3DBAE1C40758CFEA05B267DAC2FAF6CCDFADBC08A75D81088B777C751_98; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_U35686DFA3DBAE1C40758CFEA05B267DAC2FAF6CCDFADBC08A75D81088B777C751_98() { return &___5686DFA3DBAE1C40758CFEA05B267DAC2FAF6CCDFADBC08A75D81088B777C751_98; } inline void set_U35686DFA3DBAE1C40758CFEA05B267DAC2FAF6CCDFADBC08A75D81088B777C751_98(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___5686DFA3DBAE1C40758CFEA05B267DAC2FAF6CCDFADBC08A75D81088B777C751_98 = value; } inline static int32_t get_offset_of_U358693A8E9871A51CE017A5CCB2219B320C7893E49E1761EF867DEB94E0466F4D_99() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___58693A8E9871A51CE017A5CCB2219B320C7893E49E1761EF867DEB94E0466F4D_99)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_U358693A8E9871A51CE017A5CCB2219B320C7893E49E1761EF867DEB94E0466F4D_99() const { return ___58693A8E9871A51CE017A5CCB2219B320C7893E49E1761EF867DEB94E0466F4D_99; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_U358693A8E9871A51CE017A5CCB2219B320C7893E49E1761EF867DEB94E0466F4D_99() { return &___58693A8E9871A51CE017A5CCB2219B320C7893E49E1761EF867DEB94E0466F4D_99; } inline void set_U358693A8E9871A51CE017A5CCB2219B320C7893E49E1761EF867DEB94E0466F4D_99(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___58693A8E9871A51CE017A5CCB2219B320C7893E49E1761EF867DEB94E0466F4D_99 = value; } inline static int32_t get_offset_of_U3586CB2936F35105D4A71FF1186E81528F1980A2E5BB1E2719E0D86809CB1080A_100() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___586CB2936F35105D4A71FF1186E81528F1980A2E5BB1E2719E0D86809CB1080A_100)); } inline __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E get_U3586CB2936F35105D4A71FF1186E81528F1980A2E5BB1E2719E0D86809CB1080A_100() const { return ___586CB2936F35105D4A71FF1186E81528F1980A2E5BB1E2719E0D86809CB1080A_100; } inline __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E * get_address_of_U3586CB2936F35105D4A71FF1186E81528F1980A2E5BB1E2719E0D86809CB1080A_100() { return &___586CB2936F35105D4A71FF1186E81528F1980A2E5BB1E2719E0D86809CB1080A_100; } inline void set_U3586CB2936F35105D4A71FF1186E81528F1980A2E5BB1E2719E0D86809CB1080A_100(__StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E value) { ___586CB2936F35105D4A71FF1186E81528F1980A2E5BB1E2719E0D86809CB1080A_100 = value; } inline static int32_t get_offset_of_U35961BF1FCF83803CE7775E15E9DB8D21AF741539B85CCFDD643F9E22CC7820D6_101() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___5961BF1FCF83803CE7775E15E9DB8D21AF741539B85CCFDD643F9E22CC7820D6_101)); } inline __StaticArrayInitTypeSizeU3D120_tD78937C26C99B5FDF514E7F2EB4F8F2367B4C05A get_U35961BF1FCF83803CE7775E15E9DB8D21AF741539B85CCFDD643F9E22CC7820D6_101() const { return ___5961BF1FCF83803CE7775E15E9DB8D21AF741539B85CCFDD643F9E22CC7820D6_101; } inline __StaticArrayInitTypeSizeU3D120_tD78937C26C99B5FDF514E7F2EB4F8F2367B4C05A * get_address_of_U35961BF1FCF83803CE7775E15E9DB8D21AF741539B85CCFDD643F9E22CC7820D6_101() { return &___5961BF1FCF83803CE7775E15E9DB8D21AF741539B85CCFDD643F9E22CC7820D6_101; } inline void set_U35961BF1FCF83803CE7775E15E9DB8D21AF741539B85CCFDD643F9E22CC7820D6_101(__StaticArrayInitTypeSizeU3D120_tD78937C26C99B5FDF514E7F2EB4F8F2367B4C05A value) { ___5961BF1FCF83803CE7775E15E9DB8D21AF741539B85CCFDD643F9E22CC7820D6_101 = value; } inline static int32_t get_offset_of_U359B7E757844D3BF9299877BD1C17451611BFBAB493374D6B18D973FDE534151A_102() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___59B7E757844D3BF9299877BD1C17451611BFBAB493374D6B18D973FDE534151A_102)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U359B7E757844D3BF9299877BD1C17451611BFBAB493374D6B18D973FDE534151A_102() const { return ___59B7E757844D3BF9299877BD1C17451611BFBAB493374D6B18D973FDE534151A_102; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U359B7E757844D3BF9299877BD1C17451611BFBAB493374D6B18D973FDE534151A_102() { return &___59B7E757844D3BF9299877BD1C17451611BFBAB493374D6B18D973FDE534151A_102; } inline void set_U359B7E757844D3BF9299877BD1C17451611BFBAB493374D6B18D973FDE534151A_102(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___59B7E757844D3BF9299877BD1C17451611BFBAB493374D6B18D973FDE534151A_102 = value; } inline static int32_t get_offset_of_U35A33FCFEC23C49D91BCF58CE2472DC9F3662CD086BD29FC44AF2E14567238A30_103() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___5A33FCFEC23C49D91BCF58CE2472DC9F3662CD086BD29FC44AF2E14567238A30_103)); } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F get_U35A33FCFEC23C49D91BCF58CE2472DC9F3662CD086BD29FC44AF2E14567238A30_103() const { return ___5A33FCFEC23C49D91BCF58CE2472DC9F3662CD086BD29FC44AF2E14567238A30_103; } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F * get_address_of_U35A33FCFEC23C49D91BCF58CE2472DC9F3662CD086BD29FC44AF2E14567238A30_103() { return &___5A33FCFEC23C49D91BCF58CE2472DC9F3662CD086BD29FC44AF2E14567238A30_103; } inline void set_U35A33FCFEC23C49D91BCF58CE2472DC9F3662CD086BD29FC44AF2E14567238A30_103(__StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F value) { ___5A33FCFEC23C49D91BCF58CE2472DC9F3662CD086BD29FC44AF2E14567238A30_103 = value; } inline static int32_t get_offset_of_U35B979F69B96A61586A09DD4ED26F20534C629B08732AE32FA34B6F8A0049ACDD_104() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___5B979F69B96A61586A09DD4ED26F20534C629B08732AE32FA34B6F8A0049ACDD_104)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U35B979F69B96A61586A09DD4ED26F20534C629B08732AE32FA34B6F8A0049ACDD_104() const { return ___5B979F69B96A61586A09DD4ED26F20534C629B08732AE32FA34B6F8A0049ACDD_104; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U35B979F69B96A61586A09DD4ED26F20534C629B08732AE32FA34B6F8A0049ACDD_104() { return &___5B979F69B96A61586A09DD4ED26F20534C629B08732AE32FA34B6F8A0049ACDD_104; } inline void set_U35B979F69B96A61586A09DD4ED26F20534C629B08732AE32FA34B6F8A0049ACDD_104(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___5B979F69B96A61586A09DD4ED26F20534C629B08732AE32FA34B6F8A0049ACDD_104 = value; } inline static int32_t get_offset_of_U35BBB9265FCB4E834C68440328645B1A187F68D3275881FC46B21564B11326DA5_105() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___5BBB9265FCB4E834C68440328645B1A187F68D3275881FC46B21564B11326DA5_105)); } inline __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F get_U35BBB9265FCB4E834C68440328645B1A187F68D3275881FC46B21564B11326DA5_105() const { return ___5BBB9265FCB4E834C68440328645B1A187F68D3275881FC46B21564B11326DA5_105; } inline __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F * get_address_of_U35BBB9265FCB4E834C68440328645B1A187F68D3275881FC46B21564B11326DA5_105() { return &___5BBB9265FCB4E834C68440328645B1A187F68D3275881FC46B21564B11326DA5_105; } inline void set_U35BBB9265FCB4E834C68440328645B1A187F68D3275881FC46B21564B11326DA5_105(__StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F value) { ___5BBB9265FCB4E834C68440328645B1A187F68D3275881FC46B21564B11326DA5_105 = value; } inline static int32_t get_offset_of_U35D2BCB56850200B2EDECD280A83B6F489E2DE5771E609FABA8A5C4816206CB7A_106() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___5D2BCB56850200B2EDECD280A83B6F489E2DE5771E609FABA8A5C4816206CB7A_106)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_U35D2BCB56850200B2EDECD280A83B6F489E2DE5771E609FABA8A5C4816206CB7A_106() const { return ___5D2BCB56850200B2EDECD280A83B6F489E2DE5771E609FABA8A5C4816206CB7A_106; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_U35D2BCB56850200B2EDECD280A83B6F489E2DE5771E609FABA8A5C4816206CB7A_106() { return &___5D2BCB56850200B2EDECD280A83B6F489E2DE5771E609FABA8A5C4816206CB7A_106; } inline void set_U35D2BCB56850200B2EDECD280A83B6F489E2DE5771E609FABA8A5C4816206CB7A_106(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___5D2BCB56850200B2EDECD280A83B6F489E2DE5771E609FABA8A5C4816206CB7A_106 = value; } inline static int32_t get_offset_of_U35D34088B4ABB1F3FE88DCF84DD5C145EFD5EA01DF1B05BB8FEAD12305B0979B7_107() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___5D34088B4ABB1F3FE88DCF84DD5C145EFD5EA01DF1B05BB8FEAD12305B0979B7_107)); } inline __StaticArrayInitTypeSizeU3D384_t46003A58CA4B346F0AB7AB5EE6A64AA08241F97E get_U35D34088B4ABB1F3FE88DCF84DD5C145EFD5EA01DF1B05BB8FEAD12305B0979B7_107() const { return ___5D34088B4ABB1F3FE88DCF84DD5C145EFD5EA01DF1B05BB8FEAD12305B0979B7_107; } inline __StaticArrayInitTypeSizeU3D384_t46003A58CA4B346F0AB7AB5EE6A64AA08241F97E * get_address_of_U35D34088B4ABB1F3FE88DCF84DD5C145EFD5EA01DF1B05BB8FEAD12305B0979B7_107() { return &___5D34088B4ABB1F3FE88DCF84DD5C145EFD5EA01DF1B05BB8FEAD12305B0979B7_107; } inline void set_U35D34088B4ABB1F3FE88DCF84DD5C145EFD5EA01DF1B05BB8FEAD12305B0979B7_107(__StaticArrayInitTypeSizeU3D384_t46003A58CA4B346F0AB7AB5EE6A64AA08241F97E value) { ___5D34088B4ABB1F3FE88DCF84DD5C145EFD5EA01DF1B05BB8FEAD12305B0979B7_107 = value; } inline static int32_t get_offset_of_U35D6878AD6E68B2CCB04A7CD7942BE07C15F947CCA8824203021DD465D90712AD_108() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___5D6878AD6E68B2CCB04A7CD7942BE07C15F947CCA8824203021DD465D90712AD_108)); } inline __StaticArrayInitTypeSizeU3D124_t4DC490DCE9056B4FDAA27442CBBA7F0F499B0451 get_U35D6878AD6E68B2CCB04A7CD7942BE07C15F947CCA8824203021DD465D90712AD_108() const { return ___5D6878AD6E68B2CCB04A7CD7942BE07C15F947CCA8824203021DD465D90712AD_108; } inline __StaticArrayInitTypeSizeU3D124_t4DC490DCE9056B4FDAA27442CBBA7F0F499B0451 * get_address_of_U35D6878AD6E68B2CCB04A7CD7942BE07C15F947CCA8824203021DD465D90712AD_108() { return &___5D6878AD6E68B2CCB04A7CD7942BE07C15F947CCA8824203021DD465D90712AD_108; } inline void set_U35D6878AD6E68B2CCB04A7CD7942BE07C15F947CCA8824203021DD465D90712AD_108(__StaticArrayInitTypeSizeU3D124_t4DC490DCE9056B4FDAA27442CBBA7F0F499B0451 value) { ___5D6878AD6E68B2CCB04A7CD7942BE07C15F947CCA8824203021DD465D90712AD_108 = value; } inline static int32_t get_offset_of_U35DCC8698D4E5400BC54B6A6E36FB1F5E060B2CE6A676F4FC474015F9A0FC7CB0_109() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___5DCC8698D4E5400BC54B6A6E36FB1F5E060B2CE6A676F4FC474015F9A0FC7CB0_109)); } inline __StaticArrayInitTypeSizeU3D36_t5A0F5FAC8609C11AC407745154F17247010BD4A1 get_U35DCC8698D4E5400BC54B6A6E36FB1F5E060B2CE6A676F4FC474015F9A0FC7CB0_109() const { return ___5DCC8698D4E5400BC54B6A6E36FB1F5E060B2CE6A676F4FC474015F9A0FC7CB0_109; } inline __StaticArrayInitTypeSizeU3D36_t5A0F5FAC8609C11AC407745154F17247010BD4A1 * get_address_of_U35DCC8698D4E5400BC54B6A6E36FB1F5E060B2CE6A676F4FC474015F9A0FC7CB0_109() { return &___5DCC8698D4E5400BC54B6A6E36FB1F5E060B2CE6A676F4FC474015F9A0FC7CB0_109; } inline void set_U35DCC8698D4E5400BC54B6A6E36FB1F5E060B2CE6A676F4FC474015F9A0FC7CB0_109(__StaticArrayInitTypeSizeU3D36_t5A0F5FAC8609C11AC407745154F17247010BD4A1 value) { ___5DCC8698D4E5400BC54B6A6E36FB1F5E060B2CE6A676F4FC474015F9A0FC7CB0_109 = value; } inline static int32_t get_offset_of_U35DF5DA3512C124C2BB3C3676FFEDA4E6CC5E902C2A6027D37EB4B5AB64ED4382_110() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___5DF5DA3512C124C2BB3C3676FFEDA4E6CC5E902C2A6027D37EB4B5AB64ED4382_110)); } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F get_U35DF5DA3512C124C2BB3C3676FFEDA4E6CC5E902C2A6027D37EB4B5AB64ED4382_110() const { return ___5DF5DA3512C124C2BB3C3676FFEDA4E6CC5E902C2A6027D37EB4B5AB64ED4382_110; } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F * get_address_of_U35DF5DA3512C124C2BB3C3676FFEDA4E6CC5E902C2A6027D37EB4B5AB64ED4382_110() { return &___5DF5DA3512C124C2BB3C3676FFEDA4E6CC5E902C2A6027D37EB4B5AB64ED4382_110; } inline void set_U35DF5DA3512C124C2BB3C3676FFEDA4E6CC5E902C2A6027D37EB4B5AB64ED4382_110(__StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F value) { ___5DF5DA3512C124C2BB3C3676FFEDA4E6CC5E902C2A6027D37EB4B5AB64ED4382_110 = value; } inline static int32_t get_offset_of_U35F2BD6104C620DE24A78538B659D1218F81A8DC50ED6645B5A040194E0CDC663_111() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___5F2BD6104C620DE24A78538B659D1218F81A8DC50ED6645B5A040194E0CDC663_111)); } inline __StaticArrayInitTypeSizeU3D28_tB9DE54DF41ABC27805509271A10177513906BF30 get_U35F2BD6104C620DE24A78538B659D1218F81A8DC50ED6645B5A040194E0CDC663_111() const { return ___5F2BD6104C620DE24A78538B659D1218F81A8DC50ED6645B5A040194E0CDC663_111; } inline __StaticArrayInitTypeSizeU3D28_tB9DE54DF41ABC27805509271A10177513906BF30 * get_address_of_U35F2BD6104C620DE24A78538B659D1218F81A8DC50ED6645B5A040194E0CDC663_111() { return &___5F2BD6104C620DE24A78538B659D1218F81A8DC50ED6645B5A040194E0CDC663_111; } inline void set_U35F2BD6104C620DE24A78538B659D1218F81A8DC50ED6645B5A040194E0CDC663_111(__StaticArrayInitTypeSizeU3D28_tB9DE54DF41ABC27805509271A10177513906BF30 value) { ___5F2BD6104C620DE24A78538B659D1218F81A8DC50ED6645B5A040194E0CDC663_111 = value; } inline static int32_t get_offset_of_U361358F81002F15B87F2746D4CD7FE28FD2CB45B8F0840B807B18C5A23F791CB1_112() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___61358F81002F15B87F2746D4CD7FE28FD2CB45B8F0840B807B18C5A23F791CB1_112)); } inline __StaticArrayInitTypeSizeU3D124_t4DC490DCE9056B4FDAA27442CBBA7F0F499B0451 get_U361358F81002F15B87F2746D4CD7FE28FD2CB45B8F0840B807B18C5A23F791CB1_112() const { return ___61358F81002F15B87F2746D4CD7FE28FD2CB45B8F0840B807B18C5A23F791CB1_112; } inline __StaticArrayInitTypeSizeU3D124_t4DC490DCE9056B4FDAA27442CBBA7F0F499B0451 * get_address_of_U361358F81002F15B87F2746D4CD7FE28FD2CB45B8F0840B807B18C5A23F791CB1_112() { return &___61358F81002F15B87F2746D4CD7FE28FD2CB45B8F0840B807B18C5A23F791CB1_112; } inline void set_U361358F81002F15B87F2746D4CD7FE28FD2CB45B8F0840B807B18C5A23F791CB1_112(__StaticArrayInitTypeSizeU3D124_t4DC490DCE9056B4FDAA27442CBBA7F0F499B0451 value) { ___61358F81002F15B87F2746D4CD7FE28FD2CB45B8F0840B807B18C5A23F791CB1_112 = value; } inline static int32_t get_offset_of_U36164463B7C304A53288FDCF4DD2136E0E9A441D9930215FB691E3D2F692C3993_113() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___6164463B7C304A53288FDCF4DD2136E0E9A441D9930215FB691E3D2F692C3993_113)); } inline __StaticArrayInitTypeSizeU3D48_tFD8B246DD801288DF862F996D7F0915222433AD7 get_U36164463B7C304A53288FDCF4DD2136E0E9A441D9930215FB691E3D2F692C3993_113() const { return ___6164463B7C304A53288FDCF4DD2136E0E9A441D9930215FB691E3D2F692C3993_113; } inline __StaticArrayInitTypeSizeU3D48_tFD8B246DD801288DF862F996D7F0915222433AD7 * get_address_of_U36164463B7C304A53288FDCF4DD2136E0E9A441D9930215FB691E3D2F692C3993_113() { return &___6164463B7C304A53288FDCF4DD2136E0E9A441D9930215FB691E3D2F692C3993_113; } inline void set_U36164463B7C304A53288FDCF4DD2136E0E9A441D9930215FB691E3D2F692C3993_113(__StaticArrayInitTypeSizeU3D48_tFD8B246DD801288DF862F996D7F0915222433AD7 value) { ___6164463B7C304A53288FDCF4DD2136E0E9A441D9930215FB691E3D2F692C3993_113 = value; } inline static int32_t get_offset_of_U3624B1BC8BE6B6F8CF39572731AD0E5BDF2AAB137D0AB4A0F473B3D00666D766B_114() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___624B1BC8BE6B6F8CF39572731AD0E5BDF2AAB137D0AB4A0F473B3D00666D766B_114)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_U3624B1BC8BE6B6F8CF39572731AD0E5BDF2AAB137D0AB4A0F473B3D00666D766B_114() const { return ___624B1BC8BE6B6F8CF39572731AD0E5BDF2AAB137D0AB4A0F473B3D00666D766B_114; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_U3624B1BC8BE6B6F8CF39572731AD0E5BDF2AAB137D0AB4A0F473B3D00666D766B_114() { return &___624B1BC8BE6B6F8CF39572731AD0E5BDF2AAB137D0AB4A0F473B3D00666D766B_114; } inline void set_U3624B1BC8BE6B6F8CF39572731AD0E5BDF2AAB137D0AB4A0F473B3D00666D766B_114(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___624B1BC8BE6B6F8CF39572731AD0E5BDF2AAB137D0AB4A0F473B3D00666D766B_114 = value; } inline static int32_t get_offset_of_U362A191EC74B0F281659DD81132751B7656F065A2AD5A8E892CAE1A8E4DBFD0B5_115() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___62A191EC74B0F281659DD81132751B7656F065A2AD5A8E892CAE1A8E4DBFD0B5_115)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_U362A191EC74B0F281659DD81132751B7656F065A2AD5A8E892CAE1A8E4DBFD0B5_115() const { return ___62A191EC74B0F281659DD81132751B7656F065A2AD5A8E892CAE1A8E4DBFD0B5_115; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_U362A191EC74B0F281659DD81132751B7656F065A2AD5A8E892CAE1A8E4DBFD0B5_115() { return &___62A191EC74B0F281659DD81132751B7656F065A2AD5A8E892CAE1A8E4DBFD0B5_115; } inline void set_U362A191EC74B0F281659DD81132751B7656F065A2AD5A8E892CAE1A8E4DBFD0B5_115(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___62A191EC74B0F281659DD81132751B7656F065A2AD5A8E892CAE1A8E4DBFD0B5_115 = value; } inline static int32_t get_offset_of_U3663A2D6435FFB6C16D9382D8E22490E109514E59C03574E825F6B491AD8C8AAC_116() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___663A2D6435FFB6C16D9382D8E22490E109514E59C03574E825F6B491AD8C8AAC_116)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_U3663A2D6435FFB6C16D9382D8E22490E109514E59C03574E825F6B491AD8C8AAC_116() const { return ___663A2D6435FFB6C16D9382D8E22490E109514E59C03574E825F6B491AD8C8AAC_116; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_U3663A2D6435FFB6C16D9382D8E22490E109514E59C03574E825F6B491AD8C8AAC_116() { return &___663A2D6435FFB6C16D9382D8E22490E109514E59C03574E825F6B491AD8C8AAC_116; } inline void set_U3663A2D6435FFB6C16D9382D8E22490E109514E59C03574E825F6B491AD8C8AAC_116(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___663A2D6435FFB6C16D9382D8E22490E109514E59C03574E825F6B491AD8C8AAC_116 = value; } inline static int32_t get_offset_of_U36708B572BDBE5D5E79701DBB9744AF74B50FED7608218F2D7BF1B5D87E5A53ED_117() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___6708B572BDBE5D5E79701DBB9744AF74B50FED7608218F2D7BF1B5D87E5A53ED_117)); } inline __StaticArrayInitTypeSizeU3D48_tFD8B246DD801288DF862F996D7F0915222433AD7 get_U36708B572BDBE5D5E79701DBB9744AF74B50FED7608218F2D7BF1B5D87E5A53ED_117() const { return ___6708B572BDBE5D5E79701DBB9744AF74B50FED7608218F2D7BF1B5D87E5A53ED_117; } inline __StaticArrayInitTypeSizeU3D48_tFD8B246DD801288DF862F996D7F0915222433AD7 * get_address_of_U36708B572BDBE5D5E79701DBB9744AF74B50FED7608218F2D7BF1B5D87E5A53ED_117() { return &___6708B572BDBE5D5E79701DBB9744AF74B50FED7608218F2D7BF1B5D87E5A53ED_117; } inline void set_U36708B572BDBE5D5E79701DBB9744AF74B50FED7608218F2D7BF1B5D87E5A53ED_117(__StaticArrayInitTypeSizeU3D48_tFD8B246DD801288DF862F996D7F0915222433AD7 value) { ___6708B572BDBE5D5E79701DBB9744AF74B50FED7608218F2D7BF1B5D87E5A53ED_117 = value; } inline static int32_t get_offset_of_U3684F74091FEFCDCDE9B282E317592631CA48B75F46340A11B95A474700E656D4_118() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___684F74091FEFCDCDE9B282E317592631CA48B75F46340A11B95A474700E656D4_118)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U3684F74091FEFCDCDE9B282E317592631CA48B75F46340A11B95A474700E656D4_118() const { return ___684F74091FEFCDCDE9B282E317592631CA48B75F46340A11B95A474700E656D4_118; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U3684F74091FEFCDCDE9B282E317592631CA48B75F46340A11B95A474700E656D4_118() { return &___684F74091FEFCDCDE9B282E317592631CA48B75F46340A11B95A474700E656D4_118; } inline void set_U3684F74091FEFCDCDE9B282E317592631CA48B75F46340A11B95A474700E656D4_118(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___684F74091FEFCDCDE9B282E317592631CA48B75F46340A11B95A474700E656D4_118 = value; } inline static int32_t get_offset_of_U36965AC9D48CA477E9A17658D33A217051648138AD7024514DE014D8001B533C3_119() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___6965AC9D48CA477E9A17658D33A217051648138AD7024514DE014D8001B533C3_119)); } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F get_U36965AC9D48CA477E9A17658D33A217051648138AD7024514DE014D8001B533C3_119() const { return ___6965AC9D48CA477E9A17658D33A217051648138AD7024514DE014D8001B533C3_119; } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F * get_address_of_U36965AC9D48CA477E9A17658D33A217051648138AD7024514DE014D8001B533C3_119() { return &___6965AC9D48CA477E9A17658D33A217051648138AD7024514DE014D8001B533C3_119; } inline void set_U36965AC9D48CA477E9A17658D33A217051648138AD7024514DE014D8001B533C3_119(__StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F value) { ___6965AC9D48CA477E9A17658D33A217051648138AD7024514DE014D8001B533C3_119 = value; } inline static int32_t get_offset_of_U36A5953C1A0D67EA77DC8A5D34D0055B3D6A7A3C4CA3F6FE599471C40B9B017FC_120() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___6A5953C1A0D67EA77DC8A5D34D0055B3D6A7A3C4CA3F6FE599471C40B9B017FC_120)); } inline __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F get_U36A5953C1A0D67EA77DC8A5D34D0055B3D6A7A3C4CA3F6FE599471C40B9B017FC_120() const { return ___6A5953C1A0D67EA77DC8A5D34D0055B3D6A7A3C4CA3F6FE599471C40B9B017FC_120; } inline __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F * get_address_of_U36A5953C1A0D67EA77DC8A5D34D0055B3D6A7A3C4CA3F6FE599471C40B9B017FC_120() { return &___6A5953C1A0D67EA77DC8A5D34D0055B3D6A7A3C4CA3F6FE599471C40B9B017FC_120; } inline void set_U36A5953C1A0D67EA77DC8A5D34D0055B3D6A7A3C4CA3F6FE599471C40B9B017FC_120(__StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F value) { ___6A5953C1A0D67EA77DC8A5D34D0055B3D6A7A3C4CA3F6FE599471C40B9B017FC_120 = value; } inline static int32_t get_offset_of_U36A5EAF956411330E0B28CAD097D9698CBF4098D268AD1C0E04FE294F0607E53D_121() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___6A5EAF956411330E0B28CAD097D9698CBF4098D268AD1C0E04FE294F0607E53D_121)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_U36A5EAF956411330E0B28CAD097D9698CBF4098D268AD1C0E04FE294F0607E53D_121() const { return ___6A5EAF956411330E0B28CAD097D9698CBF4098D268AD1C0E04FE294F0607E53D_121; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_U36A5EAF956411330E0B28CAD097D9698CBF4098D268AD1C0E04FE294F0607E53D_121() { return &___6A5EAF956411330E0B28CAD097D9698CBF4098D268AD1C0E04FE294F0607E53D_121; } inline void set_U36A5EAF956411330E0B28CAD097D9698CBF4098D268AD1C0E04FE294F0607E53D_121(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___6A5EAF956411330E0B28CAD097D9698CBF4098D268AD1C0E04FE294F0607E53D_121 = value; } inline static int32_t get_offset_of_U36C99A25F0D00AE5BC45EE7F62CFC963F5DFC8FE4F7CE82ACEB0B5A1CDB51E3AB_122() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___6C99A25F0D00AE5BC45EE7F62CFC963F5DFC8FE4F7CE82ACEB0B5A1CDB51E3AB_122)); } inline __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 get_U36C99A25F0D00AE5BC45EE7F62CFC963F5DFC8FE4F7CE82ACEB0B5A1CDB51E3AB_122() const { return ___6C99A25F0D00AE5BC45EE7F62CFC963F5DFC8FE4F7CE82ACEB0B5A1CDB51E3AB_122; } inline __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 * get_address_of_U36C99A25F0D00AE5BC45EE7F62CFC963F5DFC8FE4F7CE82ACEB0B5A1CDB51E3AB_122() { return &___6C99A25F0D00AE5BC45EE7F62CFC963F5DFC8FE4F7CE82ACEB0B5A1CDB51E3AB_122; } inline void set_U36C99A25F0D00AE5BC45EE7F62CFC963F5DFC8FE4F7CE82ACEB0B5A1CDB51E3AB_122(__StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 value) { ___6C99A25F0D00AE5BC45EE7F62CFC963F5DFC8FE4F7CE82ACEB0B5A1CDB51E3AB_122 = value; } inline static int32_t get_offset_of_U36CB004567F6DA8572C921962EDECA8ABB063258E4B378E85E52017698A655056_123() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___6CB004567F6DA8572C921962EDECA8ABB063258E4B378E85E52017698A655056_123)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U36CB004567F6DA8572C921962EDECA8ABB063258E4B378E85E52017698A655056_123() const { return ___6CB004567F6DA8572C921962EDECA8ABB063258E4B378E85E52017698A655056_123; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U36CB004567F6DA8572C921962EDECA8ABB063258E4B378E85E52017698A655056_123() { return &___6CB004567F6DA8572C921962EDECA8ABB063258E4B378E85E52017698A655056_123; } inline void set_U36CB004567F6DA8572C921962EDECA8ABB063258E4B378E85E52017698A655056_123(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___6CB004567F6DA8572C921962EDECA8ABB063258E4B378E85E52017698A655056_123 = value; } inline static int32_t get_offset_of_U36D4410134564FFF8B73800035CA093523750DF325139D004701C67D97488B8D5_124() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___6D4410134564FFF8B73800035CA093523750DF325139D004701C67D97488B8D5_124)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_U36D4410134564FFF8B73800035CA093523750DF325139D004701C67D97488B8D5_124() const { return ___6D4410134564FFF8B73800035CA093523750DF325139D004701C67D97488B8D5_124; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_U36D4410134564FFF8B73800035CA093523750DF325139D004701C67D97488B8D5_124() { return &___6D4410134564FFF8B73800035CA093523750DF325139D004701C67D97488B8D5_124; } inline void set_U36D4410134564FFF8B73800035CA093523750DF325139D004701C67D97488B8D5_124(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___6D4410134564FFF8B73800035CA093523750DF325139D004701C67D97488B8D5_124 = value; } inline static int32_t get_offset_of_U36DDD174356763393334AE30B2B3860AEBC30900BEA96E515EF3174C1DBF9E395_125() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___6DDD174356763393334AE30B2B3860AEBC30900BEA96E515EF3174C1DBF9E395_125)); } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 get_U36DDD174356763393334AE30B2B3860AEBC30900BEA96E515EF3174C1DBF9E395_125() const { return ___6DDD174356763393334AE30B2B3860AEBC30900BEA96E515EF3174C1DBF9E395_125; } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 * get_address_of_U36DDD174356763393334AE30B2B3860AEBC30900BEA96E515EF3174C1DBF9E395_125() { return &___6DDD174356763393334AE30B2B3860AEBC30900BEA96E515EF3174C1DBF9E395_125; } inline void set_U36DDD174356763393334AE30B2B3860AEBC30900BEA96E515EF3174C1DBF9E395_125(__StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 value) { ___6DDD174356763393334AE30B2B3860AEBC30900BEA96E515EF3174C1DBF9E395_125 = value; } inline static int32_t get_offset_of_U36F055E07140AF36F1C17E348B39AB7ACB0647B788E869F4236E285C89C2C89EF_126() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___6F055E07140AF36F1C17E348B39AB7ACB0647B788E869F4236E285C89C2C89EF_126)); } inline __StaticArrayInitTypeSizeU3D28_tB9DE54DF41ABC27805509271A10177513906BF30 get_U36F055E07140AF36F1C17E348B39AB7ACB0647B788E869F4236E285C89C2C89EF_126() const { return ___6F055E07140AF36F1C17E348B39AB7ACB0647B788E869F4236E285C89C2C89EF_126; } inline __StaticArrayInitTypeSizeU3D28_tB9DE54DF41ABC27805509271A10177513906BF30 * get_address_of_U36F055E07140AF36F1C17E348B39AB7ACB0647B788E869F4236E285C89C2C89EF_126() { return &___6F055E07140AF36F1C17E348B39AB7ACB0647B788E869F4236E285C89C2C89EF_126; } inline void set_U36F055E07140AF36F1C17E348B39AB7ACB0647B788E869F4236E285C89C2C89EF_126(__StaticArrayInitTypeSizeU3D28_tB9DE54DF41ABC27805509271A10177513906BF30 value) { ___6F055E07140AF36F1C17E348B39AB7ACB0647B788E869F4236E285C89C2C89EF_126 = value; } inline static int32_t get_offset_of_U37017794F4FA285E1AA4C6FF9994A3DC0EDC472CB13D08BCA7B5CC287C51E0E3E_127() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___7017794F4FA285E1AA4C6FF9994A3DC0EDC472CB13D08BCA7B5CC287C51E0E3E_127)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U37017794F4FA285E1AA4C6FF9994A3DC0EDC472CB13D08BCA7B5CC287C51E0E3E_127() const { return ___7017794F4FA285E1AA4C6FF9994A3DC0EDC472CB13D08BCA7B5CC287C51E0E3E_127; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U37017794F4FA285E1AA4C6FF9994A3DC0EDC472CB13D08BCA7B5CC287C51E0E3E_127() { return &___7017794F4FA285E1AA4C6FF9994A3DC0EDC472CB13D08BCA7B5CC287C51E0E3E_127; } inline void set_U37017794F4FA285E1AA4C6FF9994A3DC0EDC472CB13D08BCA7B5CC287C51E0E3E_127(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___7017794F4FA285E1AA4C6FF9994A3DC0EDC472CB13D08BCA7B5CC287C51E0E3E_127 = value; } inline static int32_t get_offset_of_U3712618256BB5287925AAF70FA8EA2EBFFB72DF72B5D29A339CC9B8DB464EFC14_128() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___712618256BB5287925AAF70FA8EA2EBFFB72DF72B5D29A339CC9B8DB464EFC14_128)); } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 get_U3712618256BB5287925AAF70FA8EA2EBFFB72DF72B5D29A339CC9B8DB464EFC14_128() const { return ___712618256BB5287925AAF70FA8EA2EBFFB72DF72B5D29A339CC9B8DB464EFC14_128; } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 * get_address_of_U3712618256BB5287925AAF70FA8EA2EBFFB72DF72B5D29A339CC9B8DB464EFC14_128() { return &___712618256BB5287925AAF70FA8EA2EBFFB72DF72B5D29A339CC9B8DB464EFC14_128; } inline void set_U3712618256BB5287925AAF70FA8EA2EBFFB72DF72B5D29A339CC9B8DB464EFC14_128(__StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 value) { ___712618256BB5287925AAF70FA8EA2EBFFB72DF72B5D29A339CC9B8DB464EFC14_128 = value; } inline static int32_t get_offset_of_U3715F5EB09E6B0F8E87AD50BDAB729CF129E723B95990CE21DF233461DC29304E_129() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___715F5EB09E6B0F8E87AD50BDAB729CF129E723B95990CE21DF233461DC29304E_129)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_U3715F5EB09E6B0F8E87AD50BDAB729CF129E723B95990CE21DF233461DC29304E_129() const { return ___715F5EB09E6B0F8E87AD50BDAB729CF129E723B95990CE21DF233461DC29304E_129; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_U3715F5EB09E6B0F8E87AD50BDAB729CF129E723B95990CE21DF233461DC29304E_129() { return &___715F5EB09E6B0F8E87AD50BDAB729CF129E723B95990CE21DF233461DC29304E_129; } inline void set_U3715F5EB09E6B0F8E87AD50BDAB729CF129E723B95990CE21DF233461DC29304E_129(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___715F5EB09E6B0F8E87AD50BDAB729CF129E723B95990CE21DF233461DC29304E_129 = value; } inline static int32_t get_offset_of_U372B8B8D3A6D4A8C2F9364B2F944B36201C7D8A2B43DBF558D1A09883E969D74D_130() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___72B8B8D3A6D4A8C2F9364B2F944B36201C7D8A2B43DBF558D1A09883E969D74D_130)); } inline int32_t get_U372B8B8D3A6D4A8C2F9364B2F944B36201C7D8A2B43DBF558D1A09883E969D74D_130() const { return ___72B8B8D3A6D4A8C2F9364B2F944B36201C7D8A2B43DBF558D1A09883E969D74D_130; } inline int32_t* get_address_of_U372B8B8D3A6D4A8C2F9364B2F944B36201C7D8A2B43DBF558D1A09883E969D74D_130() { return &___72B8B8D3A6D4A8C2F9364B2F944B36201C7D8A2B43DBF558D1A09883E969D74D_130; } inline void set_U372B8B8D3A6D4A8C2F9364B2F944B36201C7D8A2B43DBF558D1A09883E969D74D_130(int32_t value) { ___72B8B8D3A6D4A8C2F9364B2F944B36201C7D8A2B43DBF558D1A09883E969D74D_130 = value; } inline static int32_t get_offset_of_U374EF7306E7452D6859B6463CE496B8DF30925F69E1B2969E1F3F34BBC9C6AF04_131() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___74EF7306E7452D6859B6463CE496B8DF30925F69E1B2969E1F3F34BBC9C6AF04_131)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_U374EF7306E7452D6859B6463CE496B8DF30925F69E1B2969E1F3F34BBC9C6AF04_131() const { return ___74EF7306E7452D6859B6463CE496B8DF30925F69E1B2969E1F3F34BBC9C6AF04_131; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_U374EF7306E7452D6859B6463CE496B8DF30925F69E1B2969E1F3F34BBC9C6AF04_131() { return &___74EF7306E7452D6859B6463CE496B8DF30925F69E1B2969E1F3F34BBC9C6AF04_131; } inline void set_U374EF7306E7452D6859B6463CE496B8DF30925F69E1B2969E1F3F34BBC9C6AF04_131(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___74EF7306E7452D6859B6463CE496B8DF30925F69E1B2969E1F3F34BBC9C6AF04_131 = value; } inline static int32_t get_offset_of_U37543B37FA53FDE2C84F07FD39F368555966AA1C0EB2F2FD26B294D79966E290E_132() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___7543B37FA53FDE2C84F07FD39F368555966AA1C0EB2F2FD26B294D79966E290E_132)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_U37543B37FA53FDE2C84F07FD39F368555966AA1C0EB2F2FD26B294D79966E290E_132() const { return ___7543B37FA53FDE2C84F07FD39F368555966AA1C0EB2F2FD26B294D79966E290E_132; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_U37543B37FA53FDE2C84F07FD39F368555966AA1C0EB2F2FD26B294D79966E290E_132() { return &___7543B37FA53FDE2C84F07FD39F368555966AA1C0EB2F2FD26B294D79966E290E_132; } inline void set_U37543B37FA53FDE2C84F07FD39F368555966AA1C0EB2F2FD26B294D79966E290E_132(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___7543B37FA53FDE2C84F07FD39F368555966AA1C0EB2F2FD26B294D79966E290E_132 = value; } inline static int32_t get_offset_of_U376387D5ADFE12720EE7A21E3C30296DE8356BE159BD422D9900C8146F914CADE_133() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___76387D5ADFE12720EE7A21E3C30296DE8356BE159BD422D9900C8146F914CADE_133)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U376387D5ADFE12720EE7A21E3C30296DE8356BE159BD422D9900C8146F914CADE_133() const { return ___76387D5ADFE12720EE7A21E3C30296DE8356BE159BD422D9900C8146F914CADE_133; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U376387D5ADFE12720EE7A21E3C30296DE8356BE159BD422D9900C8146F914CADE_133() { return &___76387D5ADFE12720EE7A21E3C30296DE8356BE159BD422D9900C8146F914CADE_133; } inline void set_U376387D5ADFE12720EE7A21E3C30296DE8356BE159BD422D9900C8146F914CADE_133(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___76387D5ADFE12720EE7A21E3C30296DE8356BE159BD422D9900C8146F914CADE_133 = value; } inline static int32_t get_offset_of_U37650DB5F7D0AD39E75A5BB512A98F9763E302328E120F06230159AC1AD1C6B5D_134() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___7650DB5F7D0AD39E75A5BB512A98F9763E302328E120F06230159AC1AD1C6B5D_134)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U37650DB5F7D0AD39E75A5BB512A98F9763E302328E120F06230159AC1AD1C6B5D_134() const { return ___7650DB5F7D0AD39E75A5BB512A98F9763E302328E120F06230159AC1AD1C6B5D_134; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U37650DB5F7D0AD39E75A5BB512A98F9763E302328E120F06230159AC1AD1C6B5D_134() { return &___7650DB5F7D0AD39E75A5BB512A98F9763E302328E120F06230159AC1AD1C6B5D_134; } inline void set_U37650DB5F7D0AD39E75A5BB512A98F9763E302328E120F06230159AC1AD1C6B5D_134(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___7650DB5F7D0AD39E75A5BB512A98F9763E302328E120F06230159AC1AD1C6B5D_134 = value; } inline static int32_t get_offset_of_U37854BA783A61F0B4D74198AF22A2D285EF70C526BDE4BE78FEDF180436FB621D_135() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___7854BA783A61F0B4D74198AF22A2D285EF70C526BDE4BE78FEDF180436FB621D_135)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U37854BA783A61F0B4D74198AF22A2D285EF70C526BDE4BE78FEDF180436FB621D_135() const { return ___7854BA783A61F0B4D74198AF22A2D285EF70C526BDE4BE78FEDF180436FB621D_135; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U37854BA783A61F0B4D74198AF22A2D285EF70C526BDE4BE78FEDF180436FB621D_135() { return &___7854BA783A61F0B4D74198AF22A2D285EF70C526BDE4BE78FEDF180436FB621D_135; } inline void set_U37854BA783A61F0B4D74198AF22A2D285EF70C526BDE4BE78FEDF180436FB621D_135(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___7854BA783A61F0B4D74198AF22A2D285EF70C526BDE4BE78FEDF180436FB621D_135 = value; } inline static int32_t get_offset_of_U378A70FA0E21C85F13BDFA3D7B70E095EC5B61E51F34D2C1D531142B0634B30E5_136() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___78A70FA0E21C85F13BDFA3D7B70E095EC5B61E51F34D2C1D531142B0634B30E5_136)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U378A70FA0E21C85F13BDFA3D7B70E095EC5B61E51F34D2C1D531142B0634B30E5_136() const { return ___78A70FA0E21C85F13BDFA3D7B70E095EC5B61E51F34D2C1D531142B0634B30E5_136; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U378A70FA0E21C85F13BDFA3D7B70E095EC5B61E51F34D2C1D531142B0634B30E5_136() { return &___78A70FA0E21C85F13BDFA3D7B70E095EC5B61E51F34D2C1D531142B0634B30E5_136; } inline void set_U378A70FA0E21C85F13BDFA3D7B70E095EC5B61E51F34D2C1D531142B0634B30E5_136(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___78A70FA0E21C85F13BDFA3D7B70E095EC5B61E51F34D2C1D531142B0634B30E5_136 = value; } inline static int32_t get_offset_of_U378F6DA256B470C65DC4A98A23DC5F1FBF7ED3CCDE0E93EA0D97363328810055D_137() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___78F6DA256B470C65DC4A98A23DC5F1FBF7ED3CCDE0E93EA0D97363328810055D_137)); } inline __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 get_U378F6DA256B470C65DC4A98A23DC5F1FBF7ED3CCDE0E93EA0D97363328810055D_137() const { return ___78F6DA256B470C65DC4A98A23DC5F1FBF7ED3CCDE0E93EA0D97363328810055D_137; } inline __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 * get_address_of_U378F6DA256B470C65DC4A98A23DC5F1FBF7ED3CCDE0E93EA0D97363328810055D_137() { return &___78F6DA256B470C65DC4A98A23DC5F1FBF7ED3CCDE0E93EA0D97363328810055D_137; } inline void set_U378F6DA256B470C65DC4A98A23DC5F1FBF7ED3CCDE0E93EA0D97363328810055D_137(__StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 value) { ___78F6DA256B470C65DC4A98A23DC5F1FBF7ED3CCDE0E93EA0D97363328810055D_137 = value; } inline static int32_t get_offset_of_U37919EF601386C08FC5EFB981B4A1E478D8413596173FC159B15739E87EE1BA50_138() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___7919EF601386C08FC5EFB981B4A1E478D8413596173FC159B15739E87EE1BA50_138)); } inline __StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE get_U37919EF601386C08FC5EFB981B4A1E478D8413596173FC159B15739E87EE1BA50_138() const { return ___7919EF601386C08FC5EFB981B4A1E478D8413596173FC159B15739E87EE1BA50_138; } inline __StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE * get_address_of_U37919EF601386C08FC5EFB981B4A1E478D8413596173FC159B15739E87EE1BA50_138() { return &___7919EF601386C08FC5EFB981B4A1E478D8413596173FC159B15739E87EE1BA50_138; } inline void set_U37919EF601386C08FC5EFB981B4A1E478D8413596173FC159B15739E87EE1BA50_138(__StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE value) { ___7919EF601386C08FC5EFB981B4A1E478D8413596173FC159B15739E87EE1BA50_138 = value; } inline static int32_t get_offset_of_U379478AF14CB42EC0951669D5D1D864E43C211CBA631D8FFE7F6CD79FF60756C6_139() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___79478AF14CB42EC0951669D5D1D864E43C211CBA631D8FFE7F6CD79FF60756C6_139)); } inline __StaticArrayInitTypeSizeU3D68_tE431405C001EFCAA99F9D46276BFEAF7F5AF4E0F get_U379478AF14CB42EC0951669D5D1D864E43C211CBA631D8FFE7F6CD79FF60756C6_139() const { return ___79478AF14CB42EC0951669D5D1D864E43C211CBA631D8FFE7F6CD79FF60756C6_139; } inline __StaticArrayInitTypeSizeU3D68_tE431405C001EFCAA99F9D46276BFEAF7F5AF4E0F * get_address_of_U379478AF14CB42EC0951669D5D1D864E43C211CBA631D8FFE7F6CD79FF60756C6_139() { return &___79478AF14CB42EC0951669D5D1D864E43C211CBA631D8FFE7F6CD79FF60756C6_139; } inline void set_U379478AF14CB42EC0951669D5D1D864E43C211CBA631D8FFE7F6CD79FF60756C6_139(__StaticArrayInitTypeSizeU3D68_tE431405C001EFCAA99F9D46276BFEAF7F5AF4E0F value) { ___79478AF14CB42EC0951669D5D1D864E43C211CBA631D8FFE7F6CD79FF60756C6_139 = value; } inline static int32_t get_offset_of_U37A36979350F6A229EB7206BEE580F51563EE52B71CD2132680B0AC33B3C31E27_140() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___7A36979350F6A229EB7206BEE580F51563EE52B71CD2132680B0AC33B3C31E27_140)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U37A36979350F6A229EB7206BEE580F51563EE52B71CD2132680B0AC33B3C31E27_140() const { return ___7A36979350F6A229EB7206BEE580F51563EE52B71CD2132680B0AC33B3C31E27_140; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U37A36979350F6A229EB7206BEE580F51563EE52B71CD2132680B0AC33B3C31E27_140() { return &___7A36979350F6A229EB7206BEE580F51563EE52B71CD2132680B0AC33B3C31E27_140; } inline void set_U37A36979350F6A229EB7206BEE580F51563EE52B71CD2132680B0AC33B3C31E27_140(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___7A36979350F6A229EB7206BEE580F51563EE52B71CD2132680B0AC33B3C31E27_140 = value; } inline static int32_t get_offset_of_U37BDD3F08BE488F1D6DCBF05D01C69BA80DF49A9E9E415F0205D575B4B5F32A34_141() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___7BDD3F08BE488F1D6DCBF05D01C69BA80DF49A9E9E415F0205D575B4B5F32A34_141)); } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 get_U37BDD3F08BE488F1D6DCBF05D01C69BA80DF49A9E9E415F0205D575B4B5F32A34_141() const { return ___7BDD3F08BE488F1D6DCBF05D01C69BA80DF49A9E9E415F0205D575B4B5F32A34_141; } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 * get_address_of_U37BDD3F08BE488F1D6DCBF05D01C69BA80DF49A9E9E415F0205D575B4B5F32A34_141() { return &___7BDD3F08BE488F1D6DCBF05D01C69BA80DF49A9E9E415F0205D575B4B5F32A34_141; } inline void set_U37BDD3F08BE488F1D6DCBF05D01C69BA80DF49A9E9E415F0205D575B4B5F32A34_141(__StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 value) { ___7BDD3F08BE488F1D6DCBF05D01C69BA80DF49A9E9E415F0205D575B4B5F32A34_141 = value; } inline static int32_t get_offset_of_U37C8975E1E60A5C8337F28EDF8C33C3B180360B7279644A9BC1AF3C51E6220BF5_142() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___7C8975E1E60A5C8337F28EDF8C33C3B180360B7279644A9BC1AF3C51E6220BF5_142)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_U37C8975E1E60A5C8337F28EDF8C33C3B180360B7279644A9BC1AF3C51E6220BF5_142() const { return ___7C8975E1E60A5C8337F28EDF8C33C3B180360B7279644A9BC1AF3C51E6220BF5_142; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_U37C8975E1E60A5C8337F28EDF8C33C3B180360B7279644A9BC1AF3C51E6220BF5_142() { return &___7C8975E1E60A5C8337F28EDF8C33C3B180360B7279644A9BC1AF3C51E6220BF5_142; } inline void set_U37C8975E1E60A5C8337F28EDF8C33C3B180360B7279644A9BC1AF3C51E6220BF5_142(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___7C8975E1E60A5C8337F28EDF8C33C3B180360B7279644A9BC1AF3C51E6220BF5_142 = value; } inline static int32_t get_offset_of_U37C97C06F982D2F598F71BCF85A27244685EC039BC414EB391EC3EC449A619F37_143() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___7C97C06F982D2F598F71BCF85A27244685EC039BC414EB391EC3EC449A619F37_143)); } inline __StaticArrayInitTypeSizeU3D30_tD08FD0996F882530B072EF52BF88556C13AF0306 get_U37C97C06F982D2F598F71BCF85A27244685EC039BC414EB391EC3EC449A619F37_143() const { return ___7C97C06F982D2F598F71BCF85A27244685EC039BC414EB391EC3EC449A619F37_143; } inline __StaticArrayInitTypeSizeU3D30_tD08FD0996F882530B072EF52BF88556C13AF0306 * get_address_of_U37C97C06F982D2F598F71BCF85A27244685EC039BC414EB391EC3EC449A619F37_143() { return &___7C97C06F982D2F598F71BCF85A27244685EC039BC414EB391EC3EC449A619F37_143; } inline void set_U37C97C06F982D2F598F71BCF85A27244685EC039BC414EB391EC3EC449A619F37_143(__StaticArrayInitTypeSizeU3D30_tD08FD0996F882530B072EF52BF88556C13AF0306 value) { ___7C97C06F982D2F598F71BCF85A27244685EC039BC414EB391EC3EC449A619F37_143 = value; } inline static int32_t get_offset_of_U37DDF88204E7E265240211841F0AB290A5E77EE4F9223EB2E39F9B89C30C41B9D_144() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___7DDF88204E7E265240211841F0AB290A5E77EE4F9223EB2E39F9B89C30C41B9D_144)); } inline __StaticArrayInitTypeSizeU3D116_t9020B92E8453BBAFE2519A469C0893F630E8D2C9 get_U37DDF88204E7E265240211841F0AB290A5E77EE4F9223EB2E39F9B89C30C41B9D_144() const { return ___7DDF88204E7E265240211841F0AB290A5E77EE4F9223EB2E39F9B89C30C41B9D_144; } inline __StaticArrayInitTypeSizeU3D116_t9020B92E8453BBAFE2519A469C0893F630E8D2C9 * get_address_of_U37DDF88204E7E265240211841F0AB290A5E77EE4F9223EB2E39F9B89C30C41B9D_144() { return &___7DDF88204E7E265240211841F0AB290A5E77EE4F9223EB2E39F9B89C30C41B9D_144; } inline void set_U37DDF88204E7E265240211841F0AB290A5E77EE4F9223EB2E39F9B89C30C41B9D_144(__StaticArrayInitTypeSizeU3D116_t9020B92E8453BBAFE2519A469C0893F630E8D2C9 value) { ___7DDF88204E7E265240211841F0AB290A5E77EE4F9223EB2E39F9B89C30C41B9D_144 = value; } inline static int32_t get_offset_of_U37F034CF9D8AC0293D0C9535AF26B5452C6E916CE62FBBF765077BD958E69B7B9_145() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___7F034CF9D8AC0293D0C9535AF26B5452C6E916CE62FBBF765077BD958E69B7B9_145)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_U37F034CF9D8AC0293D0C9535AF26B5452C6E916CE62FBBF765077BD958E69B7B9_145() const { return ___7F034CF9D8AC0293D0C9535AF26B5452C6E916CE62FBBF765077BD958E69B7B9_145; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_U37F034CF9D8AC0293D0C9535AF26B5452C6E916CE62FBBF765077BD958E69B7B9_145() { return &___7F034CF9D8AC0293D0C9535AF26B5452C6E916CE62FBBF765077BD958E69B7B9_145; } inline void set_U37F034CF9D8AC0293D0C9535AF26B5452C6E916CE62FBBF765077BD958E69B7B9_145(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___7F034CF9D8AC0293D0C9535AF26B5452C6E916CE62FBBF765077BD958E69B7B9_145 = value; } inline static int32_t get_offset_of_U37FBDBBC598B2DE18BB5191FF9D66727F552A54412C9314CA5782824A150B3CD3_146() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___7FBDBBC598B2DE18BB5191FF9D66727F552A54412C9314CA5782824A150B3CD3_146)); } inline int32_t get_U37FBDBBC598B2DE18BB5191FF9D66727F552A54412C9314CA5782824A150B3CD3_146() const { return ___7FBDBBC598B2DE18BB5191FF9D66727F552A54412C9314CA5782824A150B3CD3_146; } inline int32_t* get_address_of_U37FBDBBC598B2DE18BB5191FF9D66727F552A54412C9314CA5782824A150B3CD3_146() { return &___7FBDBBC598B2DE18BB5191FF9D66727F552A54412C9314CA5782824A150B3CD3_146; } inline void set_U37FBDBBC598B2DE18BB5191FF9D66727F552A54412C9314CA5782824A150B3CD3_146(int32_t value) { ___7FBDBBC598B2DE18BB5191FF9D66727F552A54412C9314CA5782824A150B3CD3_146 = value; } inline static int32_t get_offset_of_U37FCA397EF25DB53B2C58A05F9BBFA4E8E0685FDBC8AAF39536123447056895C0_147() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___7FCA397EF25DB53B2C58A05F9BBFA4E8E0685FDBC8AAF39536123447056895C0_147)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U37FCA397EF25DB53B2C58A05F9BBFA4E8E0685FDBC8AAF39536123447056895C0_147() const { return ___7FCA397EF25DB53B2C58A05F9BBFA4E8E0685FDBC8AAF39536123447056895C0_147; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U37FCA397EF25DB53B2C58A05F9BBFA4E8E0685FDBC8AAF39536123447056895C0_147() { return &___7FCA397EF25DB53B2C58A05F9BBFA4E8E0685FDBC8AAF39536123447056895C0_147; } inline void set_U37FCA397EF25DB53B2C58A05F9BBFA4E8E0685FDBC8AAF39536123447056895C0_147(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___7FCA397EF25DB53B2C58A05F9BBFA4E8E0685FDBC8AAF39536123447056895C0_147 = value; } inline static int32_t get_offset_of_U381C0F0D213E5735AED08C328CC9CC2E61B3AB83C9BF016A666B4144F8BF64457_148() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___81C0F0D213E5735AED08C328CC9CC2E61B3AB83C9BF016A666B4144F8BF64457_148)); } inline __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 get_U381C0F0D213E5735AED08C328CC9CC2E61B3AB83C9BF016A666B4144F8BF64457_148() const { return ___81C0F0D213E5735AED08C328CC9CC2E61B3AB83C9BF016A666B4144F8BF64457_148; } inline __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 * get_address_of_U381C0F0D213E5735AED08C328CC9CC2E61B3AB83C9BF016A666B4144F8BF64457_148() { return &___81C0F0D213E5735AED08C328CC9CC2E61B3AB83C9BF016A666B4144F8BF64457_148; } inline void set_U381C0F0D213E5735AED08C328CC9CC2E61B3AB83C9BF016A666B4144F8BF64457_148(__StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 value) { ___81C0F0D213E5735AED08C328CC9CC2E61B3AB83C9BF016A666B4144F8BF64457_148 = value; } inline static int32_t get_offset_of_U38271B98A74E2ED3AC4E690289279C25841A5617BE3D992BED6CB7486F95060D9_149() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___8271B98A74E2ED3AC4E690289279C25841A5617BE3D992BED6CB7486F95060D9_149)); } inline __StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE get_U38271B98A74E2ED3AC4E690289279C25841A5617BE3D992BED6CB7486F95060D9_149() const { return ___8271B98A74E2ED3AC4E690289279C25841A5617BE3D992BED6CB7486F95060D9_149; } inline __StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE * get_address_of_U38271B98A74E2ED3AC4E690289279C25841A5617BE3D992BED6CB7486F95060D9_149() { return &___8271B98A74E2ED3AC4E690289279C25841A5617BE3D992BED6CB7486F95060D9_149; } inline void set_U38271B98A74E2ED3AC4E690289279C25841A5617BE3D992BED6CB7486F95060D9_149(__StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE value) { ___8271B98A74E2ED3AC4E690289279C25841A5617BE3D992BED6CB7486F95060D9_149 = value; } inline static int32_t get_offset_of_U383E8FA01EECEC207D12DA40AEFC466B15F6412FFE2C30DBEF0C65B9B7FF01672_150() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___83E8FA01EECEC207D12DA40AEFC466B15F6412FFE2C30DBEF0C65B9B7FF01672_150)); } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F get_U383E8FA01EECEC207D12DA40AEFC466B15F6412FFE2C30DBEF0C65B9B7FF01672_150() const { return ___83E8FA01EECEC207D12DA40AEFC466B15F6412FFE2C30DBEF0C65B9B7FF01672_150; } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F * get_address_of_U383E8FA01EECEC207D12DA40AEFC466B15F6412FFE2C30DBEF0C65B9B7FF01672_150() { return &___83E8FA01EECEC207D12DA40AEFC466B15F6412FFE2C30DBEF0C65B9B7FF01672_150; } inline void set_U383E8FA01EECEC207D12DA40AEFC466B15F6412FFE2C30DBEF0C65B9B7FF01672_150(__StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F value) { ___83E8FA01EECEC207D12DA40AEFC466B15F6412FFE2C30DBEF0C65B9B7FF01672_150 = value; } inline static int32_t get_offset_of_U384EBACB335F7FB2D4C6AF94256B2DD565EFFE552C9A1CB725C5B5C338914412D_151() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___84EBACB335F7FB2D4C6AF94256B2DD565EFFE552C9A1CB725C5B5C338914412D_151)); } inline __StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE get_U384EBACB335F7FB2D4C6AF94256B2DD565EFFE552C9A1CB725C5B5C338914412D_151() const { return ___84EBACB335F7FB2D4C6AF94256B2DD565EFFE552C9A1CB725C5B5C338914412D_151; } inline __StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE * get_address_of_U384EBACB335F7FB2D4C6AF94256B2DD565EFFE552C9A1CB725C5B5C338914412D_151() { return &___84EBACB335F7FB2D4C6AF94256B2DD565EFFE552C9A1CB725C5B5C338914412D_151; } inline void set_U384EBACB335F7FB2D4C6AF94256B2DD565EFFE552C9A1CB725C5B5C338914412D_151(__StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE value) { ___84EBACB335F7FB2D4C6AF94256B2DD565EFFE552C9A1CB725C5B5C338914412D_151 = value; } inline static int32_t get_offset_of_U385332E00AFFFDBE44E7421AA4236274F9495AC6C2204C59B9ADFC872D4215E12_152() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___85332E00AFFFDBE44E7421AA4236274F9495AC6C2204C59B9ADFC872D4215E12_152)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_U385332E00AFFFDBE44E7421AA4236274F9495AC6C2204C59B9ADFC872D4215E12_152() const { return ___85332E00AFFFDBE44E7421AA4236274F9495AC6C2204C59B9ADFC872D4215E12_152; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_U385332E00AFFFDBE44E7421AA4236274F9495AC6C2204C59B9ADFC872D4215E12_152() { return &___85332E00AFFFDBE44E7421AA4236274F9495AC6C2204C59B9ADFC872D4215E12_152; } inline void set_U385332E00AFFFDBE44E7421AA4236274F9495AC6C2204C59B9ADFC872D4215E12_152(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___85332E00AFFFDBE44E7421AA4236274F9495AC6C2204C59B9ADFC872D4215E12_152 = value; } inline static int32_t get_offset_of_U38688D249E9D047B4FC2FB89CE05AFE9EC89252FFCCDD969DE6EEF260DD7FFB21_153() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___8688D249E9D047B4FC2FB89CE05AFE9EC89252FFCCDD969DE6EEF260DD7FFB21_153)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U38688D249E9D047B4FC2FB89CE05AFE9EC89252FFCCDD969DE6EEF260DD7FFB21_153() const { return ___8688D249E9D047B4FC2FB89CE05AFE9EC89252FFCCDD969DE6EEF260DD7FFB21_153; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U38688D249E9D047B4FC2FB89CE05AFE9EC89252FFCCDD969DE6EEF260DD7FFB21_153() { return &___8688D249E9D047B4FC2FB89CE05AFE9EC89252FFCCDD969DE6EEF260DD7FFB21_153; } inline void set_U38688D249E9D047B4FC2FB89CE05AFE9EC89252FFCCDD969DE6EEF260DD7FFB21_153(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___8688D249E9D047B4FC2FB89CE05AFE9EC89252FFCCDD969DE6EEF260DD7FFB21_153 = value; } inline static int32_t get_offset_of_U386ECB4ABD964707BAF5ABF589057FBB2ED63DB1D7F0115A7DA45921043B6A96F_154() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___86ECB4ABD964707BAF5ABF589057FBB2ED63DB1D7F0115A7DA45921043B6A96F_154)); } inline __StaticArrayInitTypeSizeU3D48_tFD8B246DD801288DF862F996D7F0915222433AD7 get_U386ECB4ABD964707BAF5ABF589057FBB2ED63DB1D7F0115A7DA45921043B6A96F_154() const { return ___86ECB4ABD964707BAF5ABF589057FBB2ED63DB1D7F0115A7DA45921043B6A96F_154; } inline __StaticArrayInitTypeSizeU3D48_tFD8B246DD801288DF862F996D7F0915222433AD7 * get_address_of_U386ECB4ABD964707BAF5ABF589057FBB2ED63DB1D7F0115A7DA45921043B6A96F_154() { return &___86ECB4ABD964707BAF5ABF589057FBB2ED63DB1D7F0115A7DA45921043B6A96F_154; } inline void set_U386ECB4ABD964707BAF5ABF589057FBB2ED63DB1D7F0115A7DA45921043B6A96F_154(__StaticArrayInitTypeSizeU3D48_tFD8B246DD801288DF862F996D7F0915222433AD7 value) { ___86ECB4ABD964707BAF5ABF589057FBB2ED63DB1D7F0115A7DA45921043B6A96F_154 = value; } inline static int32_t get_offset_of_U3874805F2B76BD7887959F02FE0B2A8C07C1E1D41F41AAD4D2AA1D0AB21A1780F_155() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___874805F2B76BD7887959F02FE0B2A8C07C1E1D41F41AAD4D2AA1D0AB21A1780F_155)); } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 get_U3874805F2B76BD7887959F02FE0B2A8C07C1E1D41F41AAD4D2AA1D0AB21A1780F_155() const { return ___874805F2B76BD7887959F02FE0B2A8C07C1E1D41F41AAD4D2AA1D0AB21A1780F_155; } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 * get_address_of_U3874805F2B76BD7887959F02FE0B2A8C07C1E1D41F41AAD4D2AA1D0AB21A1780F_155() { return &___874805F2B76BD7887959F02FE0B2A8C07C1E1D41F41AAD4D2AA1D0AB21A1780F_155; } inline void set_U3874805F2B76BD7887959F02FE0B2A8C07C1E1D41F41AAD4D2AA1D0AB21A1780F_155(__StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 value) { ___874805F2B76BD7887959F02FE0B2A8C07C1E1D41F41AAD4D2AA1D0AB21A1780F_155 = value; } inline static int32_t get_offset_of_U388362588448C0D67AC6A928BB97FBFA93C92ED574E09AEAED174B8EFFB876F86_156() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___88362588448C0D67AC6A928BB97FBFA93C92ED574E09AEAED174B8EFFB876F86_156)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U388362588448C0D67AC6A928BB97FBFA93C92ED574E09AEAED174B8EFFB876F86_156() const { return ___88362588448C0D67AC6A928BB97FBFA93C92ED574E09AEAED174B8EFFB876F86_156; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U388362588448C0D67AC6A928BB97FBFA93C92ED574E09AEAED174B8EFFB876F86_156() { return &___88362588448C0D67AC6A928BB97FBFA93C92ED574E09AEAED174B8EFFB876F86_156; } inline void set_U388362588448C0D67AC6A928BB97FBFA93C92ED574E09AEAED174B8EFFB876F86_156(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___88362588448C0D67AC6A928BB97FBFA93C92ED574E09AEAED174B8EFFB876F86_156 = value; } inline static int32_t get_offset_of_U3896FB86C1BE3DBE6C3CC4FBE122562D75A4EBC6616D3393CF1AFE12377908B95_157() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___896FB86C1BE3DBE6C3CC4FBE122562D75A4EBC6616D3393CF1AFE12377908B95_157)); } inline __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C get_U3896FB86C1BE3DBE6C3CC4FBE122562D75A4EBC6616D3393CF1AFE12377908B95_157() const { return ___896FB86C1BE3DBE6C3CC4FBE122562D75A4EBC6616D3393CF1AFE12377908B95_157; } inline __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C * get_address_of_U3896FB86C1BE3DBE6C3CC4FBE122562D75A4EBC6616D3393CF1AFE12377908B95_157() { return &___896FB86C1BE3DBE6C3CC4FBE122562D75A4EBC6616D3393CF1AFE12377908B95_157; } inline void set_U3896FB86C1BE3DBE6C3CC4FBE122562D75A4EBC6616D3393CF1AFE12377908B95_157(__StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C value) { ___896FB86C1BE3DBE6C3CC4FBE122562D75A4EBC6616D3393CF1AFE12377908B95_157 = value; } inline static int32_t get_offset_of_U38AE83CF30C3CEAC5F4B9F025200D65EFAEC851DE0098817DB69F0E547407C095_158() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___8AE83CF30C3CEAC5F4B9F025200D65EFAEC851DE0098817DB69F0E547407C095_158)); } inline __StaticArrayInitTypeSizeU3D6144_tC7D0B4030CC1B8F5E770AE916BB72D42FCBE5DBD get_U38AE83CF30C3CEAC5F4B9F025200D65EFAEC851DE0098817DB69F0E547407C095_158() const { return ___8AE83CF30C3CEAC5F4B9F025200D65EFAEC851DE0098817DB69F0E547407C095_158; } inline __StaticArrayInitTypeSizeU3D6144_tC7D0B4030CC1B8F5E770AE916BB72D42FCBE5DBD * get_address_of_U38AE83CF30C3CEAC5F4B9F025200D65EFAEC851DE0098817DB69F0E547407C095_158() { return &___8AE83CF30C3CEAC5F4B9F025200D65EFAEC851DE0098817DB69F0E547407C095_158; } inline void set_U38AE83CF30C3CEAC5F4B9F025200D65EFAEC851DE0098817DB69F0E547407C095_158(__StaticArrayInitTypeSizeU3D6144_tC7D0B4030CC1B8F5E770AE916BB72D42FCBE5DBD value) { ___8AE83CF30C3CEAC5F4B9F025200D65EFAEC851DE0098817DB69F0E547407C095_158 = value; } inline static int32_t get_offset_of_U38B3E4AD98E68D077C6A580E0CE5B8BEA476668CC2303A9845D8EC347A4035FB8_159() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___8B3E4AD98E68D077C6A580E0CE5B8BEA476668CC2303A9845D8EC347A4035FB8_159)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_U38B3E4AD98E68D077C6A580E0CE5B8BEA476668CC2303A9845D8EC347A4035FB8_159() const { return ___8B3E4AD98E68D077C6A580E0CE5B8BEA476668CC2303A9845D8EC347A4035FB8_159; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_U38B3E4AD98E68D077C6A580E0CE5B8BEA476668CC2303A9845D8EC347A4035FB8_159() { return &___8B3E4AD98E68D077C6A580E0CE5B8BEA476668CC2303A9845D8EC347A4035FB8_159; } inline void set_U38B3E4AD98E68D077C6A580E0CE5B8BEA476668CC2303A9845D8EC347A4035FB8_159(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___8B3E4AD98E68D077C6A580E0CE5B8BEA476668CC2303A9845D8EC347A4035FB8_159 = value; } inline static int32_t get_offset_of_U38CB850AC259DD215242199AD8F1B0BC74C182B564124B84C0D56BDB7A8FF7286_160() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___8CB850AC259DD215242199AD8F1B0BC74C182B564124B84C0D56BDB7A8FF7286_160)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U38CB850AC259DD215242199AD8F1B0BC74C182B564124B84C0D56BDB7A8FF7286_160() const { return ___8CB850AC259DD215242199AD8F1B0BC74C182B564124B84C0D56BDB7A8FF7286_160; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U38CB850AC259DD215242199AD8F1B0BC74C182B564124B84C0D56BDB7A8FF7286_160() { return &___8CB850AC259DD215242199AD8F1B0BC74C182B564124B84C0D56BDB7A8FF7286_160; } inline void set_U38CB850AC259DD215242199AD8F1B0BC74C182B564124B84C0D56BDB7A8FF7286_160(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___8CB850AC259DD215242199AD8F1B0BC74C182B564124B84C0D56BDB7A8FF7286_160 = value; } inline static int32_t get_offset_of_U38CC38DAE7E1F854FB74E0A2910E4781DABC17BFB28C0E2759599F647024FB680_161() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___8CC38DAE7E1F854FB74E0A2910E4781DABC17BFB28C0E2759599F647024FB680_161)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_U38CC38DAE7E1F854FB74E0A2910E4781DABC17BFB28C0E2759599F647024FB680_161() const { return ___8CC38DAE7E1F854FB74E0A2910E4781DABC17BFB28C0E2759599F647024FB680_161; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_U38CC38DAE7E1F854FB74E0A2910E4781DABC17BFB28C0E2759599F647024FB680_161() { return &___8CC38DAE7E1F854FB74E0A2910E4781DABC17BFB28C0E2759599F647024FB680_161; } inline void set_U38CC38DAE7E1F854FB74E0A2910E4781DABC17BFB28C0E2759599F647024FB680_161(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___8CC38DAE7E1F854FB74E0A2910E4781DABC17BFB28C0E2759599F647024FB680_161 = value; } inline static int32_t get_offset_of_U38DE58994BA1BCCA412DBAD0B7F71CC1C77CFA1303F3224FA5371B5BE8A27AB5E_162() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___8DE58994BA1BCCA412DBAD0B7F71CC1C77CFA1303F3224FA5371B5BE8A27AB5E_162)); } inline int32_t get_U38DE58994BA1BCCA412DBAD0B7F71CC1C77CFA1303F3224FA5371B5BE8A27AB5E_162() const { return ___8DE58994BA1BCCA412DBAD0B7F71CC1C77CFA1303F3224FA5371B5BE8A27AB5E_162; } inline int32_t* get_address_of_U38DE58994BA1BCCA412DBAD0B7F71CC1C77CFA1303F3224FA5371B5BE8A27AB5E_162() { return &___8DE58994BA1BCCA412DBAD0B7F71CC1C77CFA1303F3224FA5371B5BE8A27AB5E_162; } inline void set_U38DE58994BA1BCCA412DBAD0B7F71CC1C77CFA1303F3224FA5371B5BE8A27AB5E_162(int32_t value) { ___8DE58994BA1BCCA412DBAD0B7F71CC1C77CFA1303F3224FA5371B5BE8A27AB5E_162 = value; } inline static int32_t get_offset_of_U38E508E3CF36A04D2980525060B4220A361C941343EDDD8B43A28CF8001D0CA40_163() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___8E508E3CF36A04D2980525060B4220A361C941343EDDD8B43A28CF8001D0CA40_163)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U38E508E3CF36A04D2980525060B4220A361C941343EDDD8B43A28CF8001D0CA40_163() const { return ___8E508E3CF36A04D2980525060B4220A361C941343EDDD8B43A28CF8001D0CA40_163; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U38E508E3CF36A04D2980525060B4220A361C941343EDDD8B43A28CF8001D0CA40_163() { return &___8E508E3CF36A04D2980525060B4220A361C941343EDDD8B43A28CF8001D0CA40_163; } inline void set_U38E508E3CF36A04D2980525060B4220A361C941343EDDD8B43A28CF8001D0CA40_163(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___8E508E3CF36A04D2980525060B4220A361C941343EDDD8B43A28CF8001D0CA40_163 = value; } inline static int32_t get_offset_of_U38FC498A953A183E1FE81A183AE59047435BB9B33D657C625FAB03D38BE19F92E_164() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___8FC498A953A183E1FE81A183AE59047435BB9B33D657C625FAB03D38BE19F92E_164)); } inline __StaticArrayInitTypeSizeU3D76_t6572A863E37652A3D016260FBD2285807BDD3823 get_U38FC498A953A183E1FE81A183AE59047435BB9B33D657C625FAB03D38BE19F92E_164() const { return ___8FC498A953A183E1FE81A183AE59047435BB9B33D657C625FAB03D38BE19F92E_164; } inline __StaticArrayInitTypeSizeU3D76_t6572A863E37652A3D016260FBD2285807BDD3823 * get_address_of_U38FC498A953A183E1FE81A183AE59047435BB9B33D657C625FAB03D38BE19F92E_164() { return &___8FC498A953A183E1FE81A183AE59047435BB9B33D657C625FAB03D38BE19F92E_164; } inline void set_U38FC498A953A183E1FE81A183AE59047435BB9B33D657C625FAB03D38BE19F92E_164(__StaticArrayInitTypeSizeU3D76_t6572A863E37652A3D016260FBD2285807BDD3823 value) { ___8FC498A953A183E1FE81A183AE59047435BB9B33D657C625FAB03D38BE19F92E_164 = value; } inline static int32_t get_offset_of_U3910514B7D874CD3C180F8F1F94486233CCF5BB70A7C24F815644F5CD5A02F3AB_165() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___910514B7D874CD3C180F8F1F94486233CCF5BB70A7C24F815644F5CD5A02F3AB_165)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_U3910514B7D874CD3C180F8F1F94486233CCF5BB70A7C24F815644F5CD5A02F3AB_165() const { return ___910514B7D874CD3C180F8F1F94486233CCF5BB70A7C24F815644F5CD5A02F3AB_165; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_U3910514B7D874CD3C180F8F1F94486233CCF5BB70A7C24F815644F5CD5A02F3AB_165() { return &___910514B7D874CD3C180F8F1F94486233CCF5BB70A7C24F815644F5CD5A02F3AB_165; } inline void set_U3910514B7D874CD3C180F8F1F94486233CCF5BB70A7C24F815644F5CD5A02F3AB_165(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___910514B7D874CD3C180F8F1F94486233CCF5BB70A7C24F815644F5CD5A02F3AB_165 = value; } inline static int32_t get_offset_of_U393631B0726F6FE6629DAA743EE51B49F4477ED07391B68EEEA0672A4A90018AA_166() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___93631B0726F6FE6629DAA743EE51B49F4477ED07391B68EEEA0672A4A90018AA_166)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_U393631B0726F6FE6629DAA743EE51B49F4477ED07391B68EEEA0672A4A90018AA_166() const { return ___93631B0726F6FE6629DAA743EE51B49F4477ED07391B68EEEA0672A4A90018AA_166; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_U393631B0726F6FE6629DAA743EE51B49F4477ED07391B68EEEA0672A4A90018AA_166() { return &___93631B0726F6FE6629DAA743EE51B49F4477ED07391B68EEEA0672A4A90018AA_166; } inline void set_U393631B0726F6FE6629DAA743EE51B49F4477ED07391B68EEEA0672A4A90018AA_166(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___93631B0726F6FE6629DAA743EE51B49F4477ED07391B68EEEA0672A4A90018AA_166 = value; } inline static int32_t get_offset_of_U39476220840D3CE82203B4A722E278773B1DA458A22F49FCB9FC45B851DF7D503_167() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___9476220840D3CE82203B4A722E278773B1DA458A22F49FCB9FC45B851DF7D503_167)); } inline __StaticArrayInitTypeSizeU3D120_tD78937C26C99B5FDF514E7F2EB4F8F2367B4C05A get_U39476220840D3CE82203B4A722E278773B1DA458A22F49FCB9FC45B851DF7D503_167() const { return ___9476220840D3CE82203B4A722E278773B1DA458A22F49FCB9FC45B851DF7D503_167; } inline __StaticArrayInitTypeSizeU3D120_tD78937C26C99B5FDF514E7F2EB4F8F2367B4C05A * get_address_of_U39476220840D3CE82203B4A722E278773B1DA458A22F49FCB9FC45B851DF7D503_167() { return &___9476220840D3CE82203B4A722E278773B1DA458A22F49FCB9FC45B851DF7D503_167; } inline void set_U39476220840D3CE82203B4A722E278773B1DA458A22F49FCB9FC45B851DF7D503_167(__StaticArrayInitTypeSizeU3D120_tD78937C26C99B5FDF514E7F2EB4F8F2367B4C05A value) { ___9476220840D3CE82203B4A722E278773B1DA458A22F49FCB9FC45B851DF7D503_167 = value; } inline static int32_t get_offset_of_U3960F02F165C0EF9AC4C160FC98BE9273C245853BA32663BB1B6F1588077F95F4_168() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___960F02F165C0EF9AC4C160FC98BE9273C245853BA32663BB1B6F1588077F95F4_168)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U3960F02F165C0EF9AC4C160FC98BE9273C245853BA32663BB1B6F1588077F95F4_168() const { return ___960F02F165C0EF9AC4C160FC98BE9273C245853BA32663BB1B6F1588077F95F4_168; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U3960F02F165C0EF9AC4C160FC98BE9273C245853BA32663BB1B6F1588077F95F4_168() { return &___960F02F165C0EF9AC4C160FC98BE9273C245853BA32663BB1B6F1588077F95F4_168; } inline void set_U3960F02F165C0EF9AC4C160FC98BE9273C245853BA32663BB1B6F1588077F95F4_168(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___960F02F165C0EF9AC4C160FC98BE9273C245853BA32663BB1B6F1588077F95F4_168 = value; } inline static int32_t get_offset_of_U39642574237E8981F70B1583D403A33EB8B583E5EA5DD61B9468AD47874A90296_169() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___9642574237E8981F70B1583D403A33EB8B583E5EA5DD61B9468AD47874A90296_169)); } inline __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 get_U39642574237E8981F70B1583D403A33EB8B583E5EA5DD61B9468AD47874A90296_169() const { return ___9642574237E8981F70B1583D403A33EB8B583E5EA5DD61B9468AD47874A90296_169; } inline __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 * get_address_of_U39642574237E8981F70B1583D403A33EB8B583E5EA5DD61B9468AD47874A90296_169() { return &___9642574237E8981F70B1583D403A33EB8B583E5EA5DD61B9468AD47874A90296_169; } inline void set_U39642574237E8981F70B1583D403A33EB8B583E5EA5DD61B9468AD47874A90296_169(__StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 value) { ___9642574237E8981F70B1583D403A33EB8B583E5EA5DD61B9468AD47874A90296_169 = value; } inline static int32_t get_offset_of_U396883F56416393F42C830BCD6033BE079690C482BC73119EBBE5DC98834BACBF_170() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___96883F56416393F42C830BCD6033BE079690C482BC73119EBBE5DC98834BACBF_170)); } inline __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F get_U396883F56416393F42C830BCD6033BE079690C482BC73119EBBE5DC98834BACBF_170() const { return ___96883F56416393F42C830BCD6033BE079690C482BC73119EBBE5DC98834BACBF_170; } inline __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F * get_address_of_U396883F56416393F42C830BCD6033BE079690C482BC73119EBBE5DC98834BACBF_170() { return &___96883F56416393F42C830BCD6033BE079690C482BC73119EBBE5DC98834BACBF_170; } inline void set_U396883F56416393F42C830BCD6033BE079690C482BC73119EBBE5DC98834BACBF_170(__StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F value) { ___96883F56416393F42C830BCD6033BE079690C482BC73119EBBE5DC98834BACBF_170 = value; } inline static int32_t get_offset_of_U396CC5BD90B96CA8BCD838F7ABD590F9979E8C636016554F8431A696204812853_171() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___96CC5BD90B96CA8BCD838F7ABD590F9979E8C636016554F8431A696204812853_171)); } inline __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 get_U396CC5BD90B96CA8BCD838F7ABD590F9979E8C636016554F8431A696204812853_171() const { return ___96CC5BD90B96CA8BCD838F7ABD590F9979E8C636016554F8431A696204812853_171; } inline __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 * get_address_of_U396CC5BD90B96CA8BCD838F7ABD590F9979E8C636016554F8431A696204812853_171() { return &___96CC5BD90B96CA8BCD838F7ABD590F9979E8C636016554F8431A696204812853_171; } inline void set_U396CC5BD90B96CA8BCD838F7ABD590F9979E8C636016554F8431A696204812853_171(__StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 value) { ___96CC5BD90B96CA8BCD838F7ABD590F9979E8C636016554F8431A696204812853_171 = value; } inline static int32_t get_offset_of_U3971488BE36A194DB27CE385237DEA12A31333F2FBD2BB3B60701BE542B27AAE2_172() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___971488BE36A194DB27CE385237DEA12A31333F2FBD2BB3B60701BE542B27AAE2_172)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_U3971488BE36A194DB27CE385237DEA12A31333F2FBD2BB3B60701BE542B27AAE2_172() const { return ___971488BE36A194DB27CE385237DEA12A31333F2FBD2BB3B60701BE542B27AAE2_172; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_U3971488BE36A194DB27CE385237DEA12A31333F2FBD2BB3B60701BE542B27AAE2_172() { return &___971488BE36A194DB27CE385237DEA12A31333F2FBD2BB3B60701BE542B27AAE2_172; } inline void set_U3971488BE36A194DB27CE385237DEA12A31333F2FBD2BB3B60701BE542B27AAE2_172(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___971488BE36A194DB27CE385237DEA12A31333F2FBD2BB3B60701BE542B27AAE2_172 = value; } inline static int32_t get_offset_of_U397467041703B2DF5571DCACC6A702C0C6DE68CE9A9470AA240F57D69C09AF7D3_173() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___97467041703B2DF5571DCACC6A702C0C6DE68CE9A9470AA240F57D69C09AF7D3_173)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U397467041703B2DF5571DCACC6A702C0C6DE68CE9A9470AA240F57D69C09AF7D3_173() const { return ___97467041703B2DF5571DCACC6A702C0C6DE68CE9A9470AA240F57D69C09AF7D3_173; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U397467041703B2DF5571DCACC6A702C0C6DE68CE9A9470AA240F57D69C09AF7D3_173() { return &___97467041703B2DF5571DCACC6A702C0C6DE68CE9A9470AA240F57D69C09AF7D3_173; } inline void set_U397467041703B2DF5571DCACC6A702C0C6DE68CE9A9470AA240F57D69C09AF7D3_173(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___97467041703B2DF5571DCACC6A702C0C6DE68CE9A9470AA240F57D69C09AF7D3_173 = value; } inline static int32_t get_offset_of_U397C49ABA628782D4FE08840F38539E305C52D0A9C0E0882E77C23DECAB6BDBA6_174() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___97C49ABA628782D4FE08840F38539E305C52D0A9C0E0882E77C23DECAB6BDBA6_174)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_U397C49ABA628782D4FE08840F38539E305C52D0A9C0E0882E77C23DECAB6BDBA6_174() const { return ___97C49ABA628782D4FE08840F38539E305C52D0A9C0E0882E77C23DECAB6BDBA6_174; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_U397C49ABA628782D4FE08840F38539E305C52D0A9C0E0882E77C23DECAB6BDBA6_174() { return &___97C49ABA628782D4FE08840F38539E305C52D0A9C0E0882E77C23DECAB6BDBA6_174; } inline void set_U397C49ABA628782D4FE08840F38539E305C52D0A9C0E0882E77C23DECAB6BDBA6_174(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___97C49ABA628782D4FE08840F38539E305C52D0A9C0E0882E77C23DECAB6BDBA6_174 = value; } inline static int32_t get_offset_of_U397CAAC7D5BE7722352C1AB556BFE01D3F3CCA0F50B5A648195D6415006620C8F_175() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___97CAAC7D5BE7722352C1AB556BFE01D3F3CCA0F50B5A648195D6415006620C8F_175)); } inline __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F get_U397CAAC7D5BE7722352C1AB556BFE01D3F3CCA0F50B5A648195D6415006620C8F_175() const { return ___97CAAC7D5BE7722352C1AB556BFE01D3F3CCA0F50B5A648195D6415006620C8F_175; } inline __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F * get_address_of_U397CAAC7D5BE7722352C1AB556BFE01D3F3CCA0F50B5A648195D6415006620C8F_175() { return &___97CAAC7D5BE7722352C1AB556BFE01D3F3CCA0F50B5A648195D6415006620C8F_175; } inline void set_U397CAAC7D5BE7722352C1AB556BFE01D3F3CCA0F50B5A648195D6415006620C8F_175(__StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F value) { ___97CAAC7D5BE7722352C1AB556BFE01D3F3CCA0F50B5A648195D6415006620C8F_175 = value; } inline static int32_t get_offset_of_U39829726FEA4FBE8836ADA2143950510D3C214E70A13B9BF48009D97CD8485670_176() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___9829726FEA4FBE8836ADA2143950510D3C214E70A13B9BF48009D97CD8485670_176)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_U39829726FEA4FBE8836ADA2143950510D3C214E70A13B9BF48009D97CD8485670_176() const { return ___9829726FEA4FBE8836ADA2143950510D3C214E70A13B9BF48009D97CD8485670_176; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_U39829726FEA4FBE8836ADA2143950510D3C214E70A13B9BF48009D97CD8485670_176() { return &___9829726FEA4FBE8836ADA2143950510D3C214E70A13B9BF48009D97CD8485670_176; } inline void set_U39829726FEA4FBE8836ADA2143950510D3C214E70A13B9BF48009D97CD8485670_176(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___9829726FEA4FBE8836ADA2143950510D3C214E70A13B9BF48009D97CD8485670_176 = value; } inline static int32_t get_offset_of_U399010FBF800B50867080A66CB97A60E8D7B61251655C9E945DC0505EEB70AC95_177() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___99010FBF800B50867080A66CB97A60E8D7B61251655C9E945DC0505EEB70AC95_177)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_U399010FBF800B50867080A66CB97A60E8D7B61251655C9E945DC0505EEB70AC95_177() const { return ___99010FBF800B50867080A66CB97A60E8D7B61251655C9E945DC0505EEB70AC95_177; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_U399010FBF800B50867080A66CB97A60E8D7B61251655C9E945DC0505EEB70AC95_177() { return &___99010FBF800B50867080A66CB97A60E8D7B61251655C9E945DC0505EEB70AC95_177; } inline void set_U399010FBF800B50867080A66CB97A60E8D7B61251655C9E945DC0505EEB70AC95_177(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___99010FBF800B50867080A66CB97A60E8D7B61251655C9E945DC0505EEB70AC95_177 = value; } inline static int32_t get_offset_of_U399FD541BFD4CF8DD3C18069CA1D5F4B622333DDBA412F00D5A6B642626034EDF_178() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___99FD541BFD4CF8DD3C18069CA1D5F4B622333DDBA412F00D5A6B642626034EDF_178)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_U399FD541BFD4CF8DD3C18069CA1D5F4B622333DDBA412F00D5A6B642626034EDF_178() const { return ___99FD541BFD4CF8DD3C18069CA1D5F4B622333DDBA412F00D5A6B642626034EDF_178; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_U399FD541BFD4CF8DD3C18069CA1D5F4B622333DDBA412F00D5A6B642626034EDF_178() { return &___99FD541BFD4CF8DD3C18069CA1D5F4B622333DDBA412F00D5A6B642626034EDF_178; } inline void set_U399FD541BFD4CF8DD3C18069CA1D5F4B622333DDBA412F00D5A6B642626034EDF_178(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___99FD541BFD4CF8DD3C18069CA1D5F4B622333DDBA412F00D5A6B642626034EDF_178 = value; } inline static int32_t get_offset_of_U39AC0C32A73444A448170AE1EFE7F69A0D3A7F6E1335FA0E112D9F96EB7EE3CC7_179() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___9AC0C32A73444A448170AE1EFE7F69A0D3A7F6E1335FA0E112D9F96EB7EE3CC7_179)); } inline __StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE get_U39AC0C32A73444A448170AE1EFE7F69A0D3A7F6E1335FA0E112D9F96EB7EE3CC7_179() const { return ___9AC0C32A73444A448170AE1EFE7F69A0D3A7F6E1335FA0E112D9F96EB7EE3CC7_179; } inline __StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE * get_address_of_U39AC0C32A73444A448170AE1EFE7F69A0D3A7F6E1335FA0E112D9F96EB7EE3CC7_179() { return &___9AC0C32A73444A448170AE1EFE7F69A0D3A7F6E1335FA0E112D9F96EB7EE3CC7_179; } inline void set_U39AC0C32A73444A448170AE1EFE7F69A0D3A7F6E1335FA0E112D9F96EB7EE3CC7_179(__StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE value) { ___9AC0C32A73444A448170AE1EFE7F69A0D3A7F6E1335FA0E112D9F96EB7EE3CC7_179 = value; } inline static int32_t get_offset_of_U39B29692916637801E748ABDF9CE9D3A8AED3F375C84C7346C11C2BB150BD720B_180() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___9B29692916637801E748ABDF9CE9D3A8AED3F375C84C7346C11C2BB150BD720B_180)); } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F get_U39B29692916637801E748ABDF9CE9D3A8AED3F375C84C7346C11C2BB150BD720B_180() const { return ___9B29692916637801E748ABDF9CE9D3A8AED3F375C84C7346C11C2BB150BD720B_180; } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F * get_address_of_U39B29692916637801E748ABDF9CE9D3A8AED3F375C84C7346C11C2BB150BD720B_180() { return &___9B29692916637801E748ABDF9CE9D3A8AED3F375C84C7346C11C2BB150BD720B_180; } inline void set_U39B29692916637801E748ABDF9CE9D3A8AED3F375C84C7346C11C2BB150BD720B_180(__StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F value) { ___9B29692916637801E748ABDF9CE9D3A8AED3F375C84C7346C11C2BB150BD720B_180 = value; } inline static int32_t get_offset_of_U39C28EF1A620E00413BBFC7E6ED40092033A3C250583DD7FAD355D2A306A7427B_181() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___9C28EF1A620E00413BBFC7E6ED40092033A3C250583DD7FAD355D2A306A7427B_181)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_U39C28EF1A620E00413BBFC7E6ED40092033A3C250583DD7FAD355D2A306A7427B_181() const { return ___9C28EF1A620E00413BBFC7E6ED40092033A3C250583DD7FAD355D2A306A7427B_181; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_U39C28EF1A620E00413BBFC7E6ED40092033A3C250583DD7FAD355D2A306A7427B_181() { return &___9C28EF1A620E00413BBFC7E6ED40092033A3C250583DD7FAD355D2A306A7427B_181; } inline void set_U39C28EF1A620E00413BBFC7E6ED40092033A3C250583DD7FAD355D2A306A7427B_181(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___9C28EF1A620E00413BBFC7E6ED40092033A3C250583DD7FAD355D2A306A7427B_181 = value; } inline static int32_t get_offset_of_U39CB8BF99E695FF4E0E3E01770F3E96060FC79466F1325C60B375349C591ADF02_182() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___9CB8BF99E695FF4E0E3E01770F3E96060FC79466F1325C60B375349C591ADF02_182)); } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F get_U39CB8BF99E695FF4E0E3E01770F3E96060FC79466F1325C60B375349C591ADF02_182() const { return ___9CB8BF99E695FF4E0E3E01770F3E96060FC79466F1325C60B375349C591ADF02_182; } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F * get_address_of_U39CB8BF99E695FF4E0E3E01770F3E96060FC79466F1325C60B375349C591ADF02_182() { return &___9CB8BF99E695FF4E0E3E01770F3E96060FC79466F1325C60B375349C591ADF02_182; } inline void set_U39CB8BF99E695FF4E0E3E01770F3E96060FC79466F1325C60B375349C591ADF02_182(__StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F value) { ___9CB8BF99E695FF4E0E3E01770F3E96060FC79466F1325C60B375349C591ADF02_182 = value; } inline static int32_t get_offset_of_U39CCC11CED0AD12118416B3C3C73453E6480B671C0EF2F753B6900DA2060F5B44_183() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___9CCC11CED0AD12118416B3C3C73453E6480B671C0EF2F753B6900DA2060F5B44_183)); } inline __StaticArrayInitTypeSizeU3D48_tFD8B246DD801288DF862F996D7F0915222433AD7 get_U39CCC11CED0AD12118416B3C3C73453E6480B671C0EF2F753B6900DA2060F5B44_183() const { return ___9CCC11CED0AD12118416B3C3C73453E6480B671C0EF2F753B6900DA2060F5B44_183; } inline __StaticArrayInitTypeSizeU3D48_tFD8B246DD801288DF862F996D7F0915222433AD7 * get_address_of_U39CCC11CED0AD12118416B3C3C73453E6480B671C0EF2F753B6900DA2060F5B44_183() { return &___9CCC11CED0AD12118416B3C3C73453E6480B671C0EF2F753B6900DA2060F5B44_183; } inline void set_U39CCC11CED0AD12118416B3C3C73453E6480B671C0EF2F753B6900DA2060F5B44_183(__StaticArrayInitTypeSizeU3D48_tFD8B246DD801288DF862F996D7F0915222433AD7 value) { ___9CCC11CED0AD12118416B3C3C73453E6480B671C0EF2F753B6900DA2060F5B44_183 = value; } inline static int32_t get_offset_of_U39CFF23020B5A7E24467474237978D4CB52A601FBC0B3E504B9ABC64C062A499C_184() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___9CFF23020B5A7E24467474237978D4CB52A601FBC0B3E504B9ABC64C062A499C_184)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U39CFF23020B5A7E24467474237978D4CB52A601FBC0B3E504B9ABC64C062A499C_184() const { return ___9CFF23020B5A7E24467474237978D4CB52A601FBC0B3E504B9ABC64C062A499C_184; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U39CFF23020B5A7E24467474237978D4CB52A601FBC0B3E504B9ABC64C062A499C_184() { return &___9CFF23020B5A7E24467474237978D4CB52A601FBC0B3E504B9ABC64C062A499C_184; } inline void set_U39CFF23020B5A7E24467474237978D4CB52A601FBC0B3E504B9ABC64C062A499C_184(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___9CFF23020B5A7E24467474237978D4CB52A601FBC0B3E504B9ABC64C062A499C_184 = value; } inline static int32_t get_offset_of_U39DA5D1DADE776A467199AC96E9412AD7A5CA1E62BCDAC527079912B1185A5C63_185() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___9DA5D1DADE776A467199AC96E9412AD7A5CA1E62BCDAC527079912B1185A5C63_185)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_U39DA5D1DADE776A467199AC96E9412AD7A5CA1E62BCDAC527079912B1185A5C63_185() const { return ___9DA5D1DADE776A467199AC96E9412AD7A5CA1E62BCDAC527079912B1185A5C63_185; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_U39DA5D1DADE776A467199AC96E9412AD7A5CA1E62BCDAC527079912B1185A5C63_185() { return &___9DA5D1DADE776A467199AC96E9412AD7A5CA1E62BCDAC527079912B1185A5C63_185; } inline void set_U39DA5D1DADE776A467199AC96E9412AD7A5CA1E62BCDAC527079912B1185A5C63_185(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___9DA5D1DADE776A467199AC96E9412AD7A5CA1E62BCDAC527079912B1185A5C63_185 = value; } inline static int32_t get_offset_of_U39DA6DC3BEB35D0E411A5D1E407E011542CC032FD6BD76CFFEB5EF327331840FD_186() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___9DA6DC3BEB35D0E411A5D1E407E011542CC032FD6BD76CFFEB5EF327331840FD_186)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U39DA6DC3BEB35D0E411A5D1E407E011542CC032FD6BD76CFFEB5EF327331840FD_186() const { return ___9DA6DC3BEB35D0E411A5D1E407E011542CC032FD6BD76CFFEB5EF327331840FD_186; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U39DA6DC3BEB35D0E411A5D1E407E011542CC032FD6BD76CFFEB5EF327331840FD_186() { return &___9DA6DC3BEB35D0E411A5D1E407E011542CC032FD6BD76CFFEB5EF327331840FD_186; } inline void set_U39DA6DC3BEB35D0E411A5D1E407E011542CC032FD6BD76CFFEB5EF327331840FD_186(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___9DA6DC3BEB35D0E411A5D1E407E011542CC032FD6BD76CFFEB5EF327331840FD_186 = value; } inline static int32_t get_offset_of_U39DC840E2F2B5B0E9B3B12C6585295C61986721911DA7AE18C9B18EFF2F01ABE5_187() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___9DC840E2F2B5B0E9B3B12C6585295C61986721911DA7AE18C9B18EFF2F01ABE5_187)); } inline __StaticArrayInitTypeSizeU3D28_tB9DE54DF41ABC27805509271A10177513906BF30 get_U39DC840E2F2B5B0E9B3B12C6585295C61986721911DA7AE18C9B18EFF2F01ABE5_187() const { return ___9DC840E2F2B5B0E9B3B12C6585295C61986721911DA7AE18C9B18EFF2F01ABE5_187; } inline __StaticArrayInitTypeSizeU3D28_tB9DE54DF41ABC27805509271A10177513906BF30 * get_address_of_U39DC840E2F2B5B0E9B3B12C6585295C61986721911DA7AE18C9B18EFF2F01ABE5_187() { return &___9DC840E2F2B5B0E9B3B12C6585295C61986721911DA7AE18C9B18EFF2F01ABE5_187; } inline void set_U39DC840E2F2B5B0E9B3B12C6585295C61986721911DA7AE18C9B18EFF2F01ABE5_187(__StaticArrayInitTypeSizeU3D28_tB9DE54DF41ABC27805509271A10177513906BF30 value) { ___9DC840E2F2B5B0E9B3B12C6585295C61986721911DA7AE18C9B18EFF2F01ABE5_187 = value; } inline static int32_t get_offset_of_U39DDE3528C5CCCCD4D7C730403ABE54766C6645E371ED7ACB70584C320D87F670_188() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___9DDE3528C5CCCCD4D7C730403ABE54766C6645E371ED7ACB70584C320D87F670_188)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_U39DDE3528C5CCCCD4D7C730403ABE54766C6645E371ED7ACB70584C320D87F670_188() const { return ___9DDE3528C5CCCCD4D7C730403ABE54766C6645E371ED7ACB70584C320D87F670_188; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_U39DDE3528C5CCCCD4D7C730403ABE54766C6645E371ED7ACB70584C320D87F670_188() { return &___9DDE3528C5CCCCD4D7C730403ABE54766C6645E371ED7ACB70584C320D87F670_188; } inline void set_U39DDE3528C5CCCCD4D7C730403ABE54766C6645E371ED7ACB70584C320D87F670_188(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___9DDE3528C5CCCCD4D7C730403ABE54766C6645E371ED7ACB70584C320D87F670_188 = value; } inline static int32_t get_offset_of_U39EF35AA995725D55C515A807B1D2BE31B36269235146245330CFB2683FA9A840_189() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___9EF35AA995725D55C515A807B1D2BE31B36269235146245330CFB2683FA9A840_189)); } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F get_U39EF35AA995725D55C515A807B1D2BE31B36269235146245330CFB2683FA9A840_189() const { return ___9EF35AA995725D55C515A807B1D2BE31B36269235146245330CFB2683FA9A840_189; } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F * get_address_of_U39EF35AA995725D55C515A807B1D2BE31B36269235146245330CFB2683FA9A840_189() { return &___9EF35AA995725D55C515A807B1D2BE31B36269235146245330CFB2683FA9A840_189; } inline void set_U39EF35AA995725D55C515A807B1D2BE31B36269235146245330CFB2683FA9A840_189(__StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F value) { ___9EF35AA995725D55C515A807B1D2BE31B36269235146245330CFB2683FA9A840_189 = value; } inline static int32_t get_offset_of_U39F9F5111F7B27A781F1F1DDDE5EBC2DD2B796BFC7365C9C28B548E564176929F_190() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___9F9F5111F7B27A781F1F1DDDE5EBC2DD2B796BFC7365C9C28B548E564176929F_190)); } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 get_U39F9F5111F7B27A781F1F1DDDE5EBC2DD2B796BFC7365C9C28B548E564176929F_190() const { return ___9F9F5111F7B27A781F1F1DDDE5EBC2DD2B796BFC7365C9C28B548E564176929F_190; } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 * get_address_of_U39F9F5111F7B27A781F1F1DDDE5EBC2DD2B796BFC7365C9C28B548E564176929F_190() { return &___9F9F5111F7B27A781F1F1DDDE5EBC2DD2B796BFC7365C9C28B548E564176929F_190; } inline void set_U39F9F5111F7B27A781F1F1DDDE5EBC2DD2B796BFC7365C9C28B548E564176929F_190(__StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 value) { ___9F9F5111F7B27A781F1F1DDDE5EBC2DD2B796BFC7365C9C28B548E564176929F_190 = value; } inline static int32_t get_offset_of_A08110AAECF4B88CA5A7F070B68E448ED895A5DE752B84C57651DA54D9BB5814_191() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___A08110AAECF4B88CA5A7F070B68E448ED895A5DE752B84C57651DA54D9BB5814_191)); } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F get_A08110AAECF4B88CA5A7F070B68E448ED895A5DE752B84C57651DA54D9BB5814_191() const { return ___A08110AAECF4B88CA5A7F070B68E448ED895A5DE752B84C57651DA54D9BB5814_191; } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F * get_address_of_A08110AAECF4B88CA5A7F070B68E448ED895A5DE752B84C57651DA54D9BB5814_191() { return &___A08110AAECF4B88CA5A7F070B68E448ED895A5DE752B84C57651DA54D9BB5814_191; } inline void set_A08110AAECF4B88CA5A7F070B68E448ED895A5DE752B84C57651DA54D9BB5814_191(__StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F value) { ___A08110AAECF4B88CA5A7F070B68E448ED895A5DE752B84C57651DA54D9BB5814_191 = value; } inline static int32_t get_offset_of_A1486177999A77F2FD76EAB02D2517803BFF5B0C5A01CFB95B3F1DA7B7D6DCE8_192() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___A1486177999A77F2FD76EAB02D2517803BFF5B0C5A01CFB95B3F1DA7B7D6DCE8_192)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_A1486177999A77F2FD76EAB02D2517803BFF5B0C5A01CFB95B3F1DA7B7D6DCE8_192() const { return ___A1486177999A77F2FD76EAB02D2517803BFF5B0C5A01CFB95B3F1DA7B7D6DCE8_192; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_A1486177999A77F2FD76EAB02D2517803BFF5B0C5A01CFB95B3F1DA7B7D6DCE8_192() { return &___A1486177999A77F2FD76EAB02D2517803BFF5B0C5A01CFB95B3F1DA7B7D6DCE8_192; } inline void set_A1486177999A77F2FD76EAB02D2517803BFF5B0C5A01CFB95B3F1DA7B7D6DCE8_192(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___A1486177999A77F2FD76EAB02D2517803BFF5B0C5A01CFB95B3F1DA7B7D6DCE8_192 = value; } inline static int32_t get_offset_of_A39EF033189E647DDABF6324B79FCD143D3FD7DFF7B247086B02EC33B9E3B15E_193() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___A39EF033189E647DDABF6324B79FCD143D3FD7DFF7B247086B02EC33B9E3B15E_193)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_A39EF033189E647DDABF6324B79FCD143D3FD7DFF7B247086B02EC33B9E3B15E_193() const { return ___A39EF033189E647DDABF6324B79FCD143D3FD7DFF7B247086B02EC33B9E3B15E_193; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_A39EF033189E647DDABF6324B79FCD143D3FD7DFF7B247086B02EC33B9E3B15E_193() { return &___A39EF033189E647DDABF6324B79FCD143D3FD7DFF7B247086B02EC33B9E3B15E_193; } inline void set_A39EF033189E647DDABF6324B79FCD143D3FD7DFF7B247086B02EC33B9E3B15E_193(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___A39EF033189E647DDABF6324B79FCD143D3FD7DFF7B247086B02EC33B9E3B15E_193 = value; } inline static int32_t get_offset_of_A4241EDCB474331DF94C96B4F24A3A8773452488FD0458F8C0C30F7C24B89E07_194() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___A4241EDCB474331DF94C96B4F24A3A8773452488FD0458F8C0C30F7C24B89E07_194)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_A4241EDCB474331DF94C96B4F24A3A8773452488FD0458F8C0C30F7C24B89E07_194() const { return ___A4241EDCB474331DF94C96B4F24A3A8773452488FD0458F8C0C30F7C24B89E07_194; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_A4241EDCB474331DF94C96B4F24A3A8773452488FD0458F8C0C30F7C24B89E07_194() { return &___A4241EDCB474331DF94C96B4F24A3A8773452488FD0458F8C0C30F7C24B89E07_194; } inline void set_A4241EDCB474331DF94C96B4F24A3A8773452488FD0458F8C0C30F7C24B89E07_194(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___A4241EDCB474331DF94C96B4F24A3A8773452488FD0458F8C0C30F7C24B89E07_194 = value; } inline static int32_t get_offset_of_A45AA8042E89D23F821D2E22C9EBAFCEC4D3B1291072EA6A49D9D8A490839689_195() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___A45AA8042E89D23F821D2E22C9EBAFCEC4D3B1291072EA6A49D9D8A490839689_195)); } inline __StaticArrayInitTypeSizeU3D38_tA06FFB58ABD95EAC48139C4ABFED36B1C69D0B92 get_A45AA8042E89D23F821D2E22C9EBAFCEC4D3B1291072EA6A49D9D8A490839689_195() const { return ___A45AA8042E89D23F821D2E22C9EBAFCEC4D3B1291072EA6A49D9D8A490839689_195; } inline __StaticArrayInitTypeSizeU3D38_tA06FFB58ABD95EAC48139C4ABFED36B1C69D0B92 * get_address_of_A45AA8042E89D23F821D2E22C9EBAFCEC4D3B1291072EA6A49D9D8A490839689_195() { return &___A45AA8042E89D23F821D2E22C9EBAFCEC4D3B1291072EA6A49D9D8A490839689_195; } inline void set_A45AA8042E89D23F821D2E22C9EBAFCEC4D3B1291072EA6A49D9D8A490839689_195(__StaticArrayInitTypeSizeU3D38_tA06FFB58ABD95EAC48139C4ABFED36B1C69D0B92 value) { ___A45AA8042E89D23F821D2E22C9EBAFCEC4D3B1291072EA6A49D9D8A490839689_195 = value; } inline static int32_t get_offset_of_A589B8F1C215FA773BA2724EB825E8B2D1792FB955349574454E18C63537F2A6_196() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___A589B8F1C215FA773BA2724EB825E8B2D1792FB955349574454E18C63537F2A6_196)); } inline __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C get_A589B8F1C215FA773BA2724EB825E8B2D1792FB955349574454E18C63537F2A6_196() const { return ___A589B8F1C215FA773BA2724EB825E8B2D1792FB955349574454E18C63537F2A6_196; } inline __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C * get_address_of_A589B8F1C215FA773BA2724EB825E8B2D1792FB955349574454E18C63537F2A6_196() { return &___A589B8F1C215FA773BA2724EB825E8B2D1792FB955349574454E18C63537F2A6_196; } inline void set_A589B8F1C215FA773BA2724EB825E8B2D1792FB955349574454E18C63537F2A6_196(__StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C value) { ___A589B8F1C215FA773BA2724EB825E8B2D1792FB955349574454E18C63537F2A6_196 = value; } inline static int32_t get_offset_of_A5A95A17B27BD47489B7BEB4A8AA145D08C838C183CD5A77A1A5EFD96AA3AB99_197() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___A5A95A17B27BD47489B7BEB4A8AA145D08C838C183CD5A77A1A5EFD96AA3AB99_197)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_A5A95A17B27BD47489B7BEB4A8AA145D08C838C183CD5A77A1A5EFD96AA3AB99_197() const { return ___A5A95A17B27BD47489B7BEB4A8AA145D08C838C183CD5A77A1A5EFD96AA3AB99_197; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_A5A95A17B27BD47489B7BEB4A8AA145D08C838C183CD5A77A1A5EFD96AA3AB99_197() { return &___A5A95A17B27BD47489B7BEB4A8AA145D08C838C183CD5A77A1A5EFD96AA3AB99_197; } inline void set_A5A95A17B27BD47489B7BEB4A8AA145D08C838C183CD5A77A1A5EFD96AA3AB99_197(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___A5A95A17B27BD47489B7BEB4A8AA145D08C838C183CD5A77A1A5EFD96AA3AB99_197 = value; } inline static int32_t get_offset_of_A719D1E9DB9C1628AF05DD49B4AA5D095CF0AD06D01C396B1777588A04D9D13E_198() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___A719D1E9DB9C1628AF05DD49B4AA5D095CF0AD06D01C396B1777588A04D9D13E_198)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_A719D1E9DB9C1628AF05DD49B4AA5D095CF0AD06D01C396B1777588A04D9D13E_198() const { return ___A719D1E9DB9C1628AF05DD49B4AA5D095CF0AD06D01C396B1777588A04D9D13E_198; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_A719D1E9DB9C1628AF05DD49B4AA5D095CF0AD06D01C396B1777588A04D9D13E_198() { return &___A719D1E9DB9C1628AF05DD49B4AA5D095CF0AD06D01C396B1777588A04D9D13E_198; } inline void set_A719D1E9DB9C1628AF05DD49B4AA5D095CF0AD06D01C396B1777588A04D9D13E_198(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___A719D1E9DB9C1628AF05DD49B4AA5D095CF0AD06D01C396B1777588A04D9D13E_198 = value; } inline static int32_t get_offset_of_A80010A555E14F5B5B3D967E0F1621742AC2048F40EBF73EB76AD8991448EE21_199() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___A80010A555E14F5B5B3D967E0F1621742AC2048F40EBF73EB76AD8991448EE21_199)); } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 get_A80010A555E14F5B5B3D967E0F1621742AC2048F40EBF73EB76AD8991448EE21_199() const { return ___A80010A555E14F5B5B3D967E0F1621742AC2048F40EBF73EB76AD8991448EE21_199; } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 * get_address_of_A80010A555E14F5B5B3D967E0F1621742AC2048F40EBF73EB76AD8991448EE21_199() { return &___A80010A555E14F5B5B3D967E0F1621742AC2048F40EBF73EB76AD8991448EE21_199; } inline void set_A80010A555E14F5B5B3D967E0F1621742AC2048F40EBF73EB76AD8991448EE21_199(__StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 value) { ___A80010A555E14F5B5B3D967E0F1621742AC2048F40EBF73EB76AD8991448EE21_199 = value; } inline static int32_t get_offset_of_A935391692FCA9A4CF6CE823B9DBED3DB708352BB4ACEDDA9EADCA78ADD23DB7_200() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___A935391692FCA9A4CF6CE823B9DBED3DB708352BB4ACEDDA9EADCA78ADD23DB7_200)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_A935391692FCA9A4CF6CE823B9DBED3DB708352BB4ACEDDA9EADCA78ADD23DB7_200() const { return ___A935391692FCA9A4CF6CE823B9DBED3DB708352BB4ACEDDA9EADCA78ADD23DB7_200; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_A935391692FCA9A4CF6CE823B9DBED3DB708352BB4ACEDDA9EADCA78ADD23DB7_200() { return &___A935391692FCA9A4CF6CE823B9DBED3DB708352BB4ACEDDA9EADCA78ADD23DB7_200; } inline void set_A935391692FCA9A4CF6CE823B9DBED3DB708352BB4ACEDDA9EADCA78ADD23DB7_200(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___A935391692FCA9A4CF6CE823B9DBED3DB708352BB4ACEDDA9EADCA78ADD23DB7_200 = value; } inline static int32_t get_offset_of_A9DD1527A5845A7B2E82F3427251AD622D570D0B8CDA4A0AF9644EB34E69B2FC_201() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___A9DD1527A5845A7B2E82F3427251AD622D570D0B8CDA4A0AF9644EB34E69B2FC_201)); } inline int32_t get_A9DD1527A5845A7B2E82F3427251AD622D570D0B8CDA4A0AF9644EB34E69B2FC_201() const { return ___A9DD1527A5845A7B2E82F3427251AD622D570D0B8CDA4A0AF9644EB34E69B2FC_201; } inline int32_t* get_address_of_A9DD1527A5845A7B2E82F3427251AD622D570D0B8CDA4A0AF9644EB34E69B2FC_201() { return &___A9DD1527A5845A7B2E82F3427251AD622D570D0B8CDA4A0AF9644EB34E69B2FC_201; } inline void set_A9DD1527A5845A7B2E82F3427251AD622D570D0B8CDA4A0AF9644EB34E69B2FC_201(int32_t value) { ___A9DD1527A5845A7B2E82F3427251AD622D570D0B8CDA4A0AF9644EB34E69B2FC_201 = value; } inline static int32_t get_offset_of_AA5D3053E53FEC67956EC1D2AA6F57CC52342FFEA91E9B7BEAF9ED8E6FCEEC23_202() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___AA5D3053E53FEC67956EC1D2AA6F57CC52342FFEA91E9B7BEAF9ED8E6FCEEC23_202)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_AA5D3053E53FEC67956EC1D2AA6F57CC52342FFEA91E9B7BEAF9ED8E6FCEEC23_202() const { return ___AA5D3053E53FEC67956EC1D2AA6F57CC52342FFEA91E9B7BEAF9ED8E6FCEEC23_202; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_AA5D3053E53FEC67956EC1D2AA6F57CC52342FFEA91E9B7BEAF9ED8E6FCEEC23_202() { return &___AA5D3053E53FEC67956EC1D2AA6F57CC52342FFEA91E9B7BEAF9ED8E6FCEEC23_202; } inline void set_AA5D3053E53FEC67956EC1D2AA6F57CC52342FFEA91E9B7BEAF9ED8E6FCEEC23_202(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___AA5D3053E53FEC67956EC1D2AA6F57CC52342FFEA91E9B7BEAF9ED8E6FCEEC23_202 = value; } inline static int32_t get_offset_of_AB3F6EE9927AC1C89E7F3D250F8DAC9A070249930D4A758B98F4D5B9A8E202B3_203() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___AB3F6EE9927AC1C89E7F3D250F8DAC9A070249930D4A758B98F4D5B9A8E202B3_203)); } inline __StaticArrayInitTypeSizeU3D56_tEBF9CCD8C2A1E8B12AE6EDE1B31598793DD01186 get_AB3F6EE9927AC1C89E7F3D250F8DAC9A070249930D4A758B98F4D5B9A8E202B3_203() const { return ___AB3F6EE9927AC1C89E7F3D250F8DAC9A070249930D4A758B98F4D5B9A8E202B3_203; } inline __StaticArrayInitTypeSizeU3D56_tEBF9CCD8C2A1E8B12AE6EDE1B31598793DD01186 * get_address_of_AB3F6EE9927AC1C89E7F3D250F8DAC9A070249930D4A758B98F4D5B9A8E202B3_203() { return &___AB3F6EE9927AC1C89E7F3D250F8DAC9A070249930D4A758B98F4D5B9A8E202B3_203; } inline void set_AB3F6EE9927AC1C89E7F3D250F8DAC9A070249930D4A758B98F4D5B9A8E202B3_203(__StaticArrayInitTypeSizeU3D56_tEBF9CCD8C2A1E8B12AE6EDE1B31598793DD01186 value) { ___AB3F6EE9927AC1C89E7F3D250F8DAC9A070249930D4A758B98F4D5B9A8E202B3_203 = value; } inline static int32_t get_offset_of_AB60EEBC1B8BF85AD5AF219745EEA4317E0C780D22675F7A33A0929A34D17DE5_204() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___AB60EEBC1B8BF85AD5AF219745EEA4317E0C780D22675F7A33A0929A34D17DE5_204)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_AB60EEBC1B8BF85AD5AF219745EEA4317E0C780D22675F7A33A0929A34D17DE5_204() const { return ___AB60EEBC1B8BF85AD5AF219745EEA4317E0C780D22675F7A33A0929A34D17DE5_204; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_AB60EEBC1B8BF85AD5AF219745EEA4317E0C780D22675F7A33A0929A34D17DE5_204() { return &___AB60EEBC1B8BF85AD5AF219745EEA4317E0C780D22675F7A33A0929A34D17DE5_204; } inline void set_AB60EEBC1B8BF85AD5AF219745EEA4317E0C780D22675F7A33A0929A34D17DE5_204(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___AB60EEBC1B8BF85AD5AF219745EEA4317E0C780D22675F7A33A0929A34D17DE5_204 = value; } inline static int32_t get_offset_of_AC7FC16C704375F0F1DB433E70C6C2B90B1D797B17806DD74E7664CAD8BFA778_205() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___AC7FC16C704375F0F1DB433E70C6C2B90B1D797B17806DD74E7664CAD8BFA778_205)); } inline __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E get_AC7FC16C704375F0F1DB433E70C6C2B90B1D797B17806DD74E7664CAD8BFA778_205() const { return ___AC7FC16C704375F0F1DB433E70C6C2B90B1D797B17806DD74E7664CAD8BFA778_205; } inline __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E * get_address_of_AC7FC16C704375F0F1DB433E70C6C2B90B1D797B17806DD74E7664CAD8BFA778_205() { return &___AC7FC16C704375F0F1DB433E70C6C2B90B1D797B17806DD74E7664CAD8BFA778_205; } inline void set_AC7FC16C704375F0F1DB433E70C6C2B90B1D797B17806DD74E7664CAD8BFA778_205(__StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E value) { ___AC7FC16C704375F0F1DB433E70C6C2B90B1D797B17806DD74E7664CAD8BFA778_205 = value; } inline static int32_t get_offset_of_AD220A499D7A196B0FE1E8BCDAA020369A8BA1C4CF21B15A3E21935ED7B09D54_206() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___AD220A499D7A196B0FE1E8BCDAA020369A8BA1C4CF21B15A3E21935ED7B09D54_206)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_AD220A499D7A196B0FE1E8BCDAA020369A8BA1C4CF21B15A3E21935ED7B09D54_206() const { return ___AD220A499D7A196B0FE1E8BCDAA020369A8BA1C4CF21B15A3E21935ED7B09D54_206; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_AD220A499D7A196B0FE1E8BCDAA020369A8BA1C4CF21B15A3E21935ED7B09D54_206() { return &___AD220A499D7A196B0FE1E8BCDAA020369A8BA1C4CF21B15A3E21935ED7B09D54_206; } inline void set_AD220A499D7A196B0FE1E8BCDAA020369A8BA1C4CF21B15A3E21935ED7B09D54_206(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___AD220A499D7A196B0FE1E8BCDAA020369A8BA1C4CF21B15A3E21935ED7B09D54_206 = value; } inline static int32_t get_offset_of_ADA8FCF87AF641D309489525EC896153F79D2AFEA9622C0BDCEDB7F8EAADD77F_207() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___ADA8FCF87AF641D309489525EC896153F79D2AFEA9622C0BDCEDB7F8EAADD77F_207)); } inline __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 get_ADA8FCF87AF641D309489525EC896153F79D2AFEA9622C0BDCEDB7F8EAADD77F_207() const { return ___ADA8FCF87AF641D309489525EC896153F79D2AFEA9622C0BDCEDB7F8EAADD77F_207; } inline __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 * get_address_of_ADA8FCF87AF641D309489525EC896153F79D2AFEA9622C0BDCEDB7F8EAADD77F_207() { return &___ADA8FCF87AF641D309489525EC896153F79D2AFEA9622C0BDCEDB7F8EAADD77F_207; } inline void set_ADA8FCF87AF641D309489525EC896153F79D2AFEA9622C0BDCEDB7F8EAADD77F_207(__StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 value) { ___ADA8FCF87AF641D309489525EC896153F79D2AFEA9622C0BDCEDB7F8EAADD77F_207 = value; } inline static int32_t get_offset_of_AF0312129020B258B5B582D3F8EA8A3DAB35467AE93C8C6DBE5D6681CCD7D489_208() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___AF0312129020B258B5B582D3F8EA8A3DAB35467AE93C8C6DBE5D6681CCD7D489_208)); } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F get_AF0312129020B258B5B582D3F8EA8A3DAB35467AE93C8C6DBE5D6681CCD7D489_208() const { return ___AF0312129020B258B5B582D3F8EA8A3DAB35467AE93C8C6DBE5D6681CCD7D489_208; } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F * get_address_of_AF0312129020B258B5B582D3F8EA8A3DAB35467AE93C8C6DBE5D6681CCD7D489_208() { return &___AF0312129020B258B5B582D3F8EA8A3DAB35467AE93C8C6DBE5D6681CCD7D489_208; } inline void set_AF0312129020B258B5B582D3F8EA8A3DAB35467AE93C8C6DBE5D6681CCD7D489_208(__StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F value) { ___AF0312129020B258B5B582D3F8EA8A3DAB35467AE93C8C6DBE5D6681CCD7D489_208 = value; } inline static int32_t get_offset_of_B09C22565E577648AD57A0C5D1F44C38D4C01E2BF7727269A1E20A3717CC77D0_209() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___B09C22565E577648AD57A0C5D1F44C38D4C01E2BF7727269A1E20A3717CC77D0_209)); } inline __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F get_B09C22565E577648AD57A0C5D1F44C38D4C01E2BF7727269A1E20A3717CC77D0_209() const { return ___B09C22565E577648AD57A0C5D1F44C38D4C01E2BF7727269A1E20A3717CC77D0_209; } inline __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F * get_address_of_B09C22565E577648AD57A0C5D1F44C38D4C01E2BF7727269A1E20A3717CC77D0_209() { return &___B09C22565E577648AD57A0C5D1F44C38D4C01E2BF7727269A1E20A3717CC77D0_209; } inline void set_B09C22565E577648AD57A0C5D1F44C38D4C01E2BF7727269A1E20A3717CC77D0_209(__StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F value) { ___B09C22565E577648AD57A0C5D1F44C38D4C01E2BF7727269A1E20A3717CC77D0_209 = value; } inline static int32_t get_offset_of_B17AF625BB8EA7C85766DBFB60A73BAE2A82560C68B4F03D08B576CD43E911DA_210() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___B17AF625BB8EA7C85766DBFB60A73BAE2A82560C68B4F03D08B576CD43E911DA_210)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_B17AF625BB8EA7C85766DBFB60A73BAE2A82560C68B4F03D08B576CD43E911DA_210() const { return ___B17AF625BB8EA7C85766DBFB60A73BAE2A82560C68B4F03D08B576CD43E911DA_210; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_B17AF625BB8EA7C85766DBFB60A73BAE2A82560C68B4F03D08B576CD43E911DA_210() { return &___B17AF625BB8EA7C85766DBFB60A73BAE2A82560C68B4F03D08B576CD43E911DA_210; } inline void set_B17AF625BB8EA7C85766DBFB60A73BAE2A82560C68B4F03D08B576CD43E911DA_210(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___B17AF625BB8EA7C85766DBFB60A73BAE2A82560C68B4F03D08B576CD43E911DA_210 = value; } inline static int32_t get_offset_of_B1FFCD775449513A059F2F3A2DF44C39E6542C6474D6BAE3DC3FA1BC256255F0_211() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___B1FFCD775449513A059F2F3A2DF44C39E6542C6474D6BAE3DC3FA1BC256255F0_211)); } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 get_B1FFCD775449513A059F2F3A2DF44C39E6542C6474D6BAE3DC3FA1BC256255F0_211() const { return ___B1FFCD775449513A059F2F3A2DF44C39E6542C6474D6BAE3DC3FA1BC256255F0_211; } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 * get_address_of_B1FFCD775449513A059F2F3A2DF44C39E6542C6474D6BAE3DC3FA1BC256255F0_211() { return &___B1FFCD775449513A059F2F3A2DF44C39E6542C6474D6BAE3DC3FA1BC256255F0_211; } inline void set_B1FFCD775449513A059F2F3A2DF44C39E6542C6474D6BAE3DC3FA1BC256255F0_211(__StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 value) { ___B1FFCD775449513A059F2F3A2DF44C39E6542C6474D6BAE3DC3FA1BC256255F0_211 = value; } inline static int32_t get_offset_of_B23D510F520CB4BA8AFA847F8A40E757C40CB6A55B237EFA1AC6D3984911B114_212() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___B23D510F520CB4BA8AFA847F8A40E757C40CB6A55B237EFA1AC6D3984911B114_212)); } inline __StaticArrayInitTypeSizeU3D120_tD78937C26C99B5FDF514E7F2EB4F8F2367B4C05A get_B23D510F520CB4BA8AFA847F8A40E757C40CB6A55B237EFA1AC6D3984911B114_212() const { return ___B23D510F520CB4BA8AFA847F8A40E757C40CB6A55B237EFA1AC6D3984911B114_212; } inline __StaticArrayInitTypeSizeU3D120_tD78937C26C99B5FDF514E7F2EB4F8F2367B4C05A * get_address_of_B23D510F520CB4BA8AFA847F8A40E757C40CB6A55B237EFA1AC6D3984911B114_212() { return &___B23D510F520CB4BA8AFA847F8A40E757C40CB6A55B237EFA1AC6D3984911B114_212; } inline void set_B23D510F520CB4BA8AFA847F8A40E757C40CB6A55B237EFA1AC6D3984911B114_212(__StaticArrayInitTypeSizeU3D120_tD78937C26C99B5FDF514E7F2EB4F8F2367B4C05A value) { ___B23D510F520CB4BA8AFA847F8A40E757C40CB6A55B237EFA1AC6D3984911B114_212 = value; } inline static int32_t get_offset_of_B257E85A5D3CAB5E738D5A0FD1A7AE96624BFE92CB7915726CBBE1518C3225CF_213() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___B257E85A5D3CAB5E738D5A0FD1A7AE96624BFE92CB7915726CBBE1518C3225CF_213)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_B257E85A5D3CAB5E738D5A0FD1A7AE96624BFE92CB7915726CBBE1518C3225CF_213() const { return ___B257E85A5D3CAB5E738D5A0FD1A7AE96624BFE92CB7915726CBBE1518C3225CF_213; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_B257E85A5D3CAB5E738D5A0FD1A7AE96624BFE92CB7915726CBBE1518C3225CF_213() { return &___B257E85A5D3CAB5E738D5A0FD1A7AE96624BFE92CB7915726CBBE1518C3225CF_213; } inline void set_B257E85A5D3CAB5E738D5A0FD1A7AE96624BFE92CB7915726CBBE1518C3225CF_213(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___B257E85A5D3CAB5E738D5A0FD1A7AE96624BFE92CB7915726CBBE1518C3225CF_213 = value; } inline static int32_t get_offset_of_B2A10F44FFEE5755DDFA6587F62D7F83F24AF24429D3ACA46E56F3F295251DEB_214() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___B2A10F44FFEE5755DDFA6587F62D7F83F24AF24429D3ACA46E56F3F295251DEB_214)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_B2A10F44FFEE5755DDFA6587F62D7F83F24AF24429D3ACA46E56F3F295251DEB_214() const { return ___B2A10F44FFEE5755DDFA6587F62D7F83F24AF24429D3ACA46E56F3F295251DEB_214; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_B2A10F44FFEE5755DDFA6587F62D7F83F24AF24429D3ACA46E56F3F295251DEB_214() { return &___B2A10F44FFEE5755DDFA6587F62D7F83F24AF24429D3ACA46E56F3F295251DEB_214; } inline void set_B2A10F44FFEE5755DDFA6587F62D7F83F24AF24429D3ACA46E56F3F295251DEB_214(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___B2A10F44FFEE5755DDFA6587F62D7F83F24AF24429D3ACA46E56F3F295251DEB_214 = value; } inline static int32_t get_offset_of_B3985439AEF8A4DF51A3369D7C0211EEF12CB0E510F6630E110C6DCC10B11A8E_215() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___B3985439AEF8A4DF51A3369D7C0211EEF12CB0E510F6630E110C6DCC10B11A8E_215)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_B3985439AEF8A4DF51A3369D7C0211EEF12CB0E510F6630E110C6DCC10B11A8E_215() const { return ___B3985439AEF8A4DF51A3369D7C0211EEF12CB0E510F6630E110C6DCC10B11A8E_215; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_B3985439AEF8A4DF51A3369D7C0211EEF12CB0E510F6630E110C6DCC10B11A8E_215() { return &___B3985439AEF8A4DF51A3369D7C0211EEF12CB0E510F6630E110C6DCC10B11A8E_215; } inline void set_B3985439AEF8A4DF51A3369D7C0211EEF12CB0E510F6630E110C6DCC10B11A8E_215(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___B3985439AEF8A4DF51A3369D7C0211EEF12CB0E510F6630E110C6DCC10B11A8E_215 = value; } inline static int32_t get_offset_of_B48C3FCBDCCF3473EF494DC9D3E37B24CF9202AB511EEEB8FCBB48B626340059_216() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___B48C3FCBDCCF3473EF494DC9D3E37B24CF9202AB511EEEB8FCBB48B626340059_216)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_B48C3FCBDCCF3473EF494DC9D3E37B24CF9202AB511EEEB8FCBB48B626340059_216() const { return ___B48C3FCBDCCF3473EF494DC9D3E37B24CF9202AB511EEEB8FCBB48B626340059_216; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_B48C3FCBDCCF3473EF494DC9D3E37B24CF9202AB511EEEB8FCBB48B626340059_216() { return &___B48C3FCBDCCF3473EF494DC9D3E37B24CF9202AB511EEEB8FCBB48B626340059_216; } inline void set_B48C3FCBDCCF3473EF494DC9D3E37B24CF9202AB511EEEB8FCBB48B626340059_216(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___B48C3FCBDCCF3473EF494DC9D3E37B24CF9202AB511EEEB8FCBB48B626340059_216 = value; } inline static int32_t get_offset_of_B57A705E01AAAEA098AD619DAA1A7220B6AB16C81F633CD5F40116160334CD05_217() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___B57A705E01AAAEA098AD619DAA1A7220B6AB16C81F633CD5F40116160334CD05_217)); } inline __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 get_B57A705E01AAAEA098AD619DAA1A7220B6AB16C81F633CD5F40116160334CD05_217() const { return ___B57A705E01AAAEA098AD619DAA1A7220B6AB16C81F633CD5F40116160334CD05_217; } inline __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 * get_address_of_B57A705E01AAAEA098AD619DAA1A7220B6AB16C81F633CD5F40116160334CD05_217() { return &___B57A705E01AAAEA098AD619DAA1A7220B6AB16C81F633CD5F40116160334CD05_217; } inline void set_B57A705E01AAAEA098AD619DAA1A7220B6AB16C81F633CD5F40116160334CD05_217(__StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 value) { ___B57A705E01AAAEA098AD619DAA1A7220B6AB16C81F633CD5F40116160334CD05_217 = value; } inline static int32_t get_offset_of_B6338EE68F3FD438E03D596B6D76554714958953358DF7320F5073C3CB779758_218() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___B6338EE68F3FD438E03D596B6D76554714958953358DF7320F5073C3CB779758_218)); } inline __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 get_B6338EE68F3FD438E03D596B6D76554714958953358DF7320F5073C3CB779758_218() const { return ___B6338EE68F3FD438E03D596B6D76554714958953358DF7320F5073C3CB779758_218; } inline __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 * get_address_of_B6338EE68F3FD438E03D596B6D76554714958953358DF7320F5073C3CB779758_218() { return &___B6338EE68F3FD438E03D596B6D76554714958953358DF7320F5073C3CB779758_218; } inline void set_B6338EE68F3FD438E03D596B6D76554714958953358DF7320F5073C3CB779758_218(__StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 value) { ___B6338EE68F3FD438E03D596B6D76554714958953358DF7320F5073C3CB779758_218 = value; } inline static int32_t get_offset_of_B67F32BB12BAA41BEAF505F53EECD4F1409EF3E782F8CD077B511553999CE297_219() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___B67F32BB12BAA41BEAF505F53EECD4F1409EF3E782F8CD077B511553999CE297_219)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_B67F32BB12BAA41BEAF505F53EECD4F1409EF3E782F8CD077B511553999CE297_219() const { return ___B67F32BB12BAA41BEAF505F53EECD4F1409EF3E782F8CD077B511553999CE297_219; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_B67F32BB12BAA41BEAF505F53EECD4F1409EF3E782F8CD077B511553999CE297_219() { return &___B67F32BB12BAA41BEAF505F53EECD4F1409EF3E782F8CD077B511553999CE297_219; } inline void set_B67F32BB12BAA41BEAF505F53EECD4F1409EF3E782F8CD077B511553999CE297_219(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___B67F32BB12BAA41BEAF505F53EECD4F1409EF3E782F8CD077B511553999CE297_219 = value; } inline static int32_t get_offset_of_B68ACFAD2A3D93FE2B8963E29978E6D3FADFFF5E7FE6C13590E8888CCA7AD7DD_220() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___B68ACFAD2A3D93FE2B8963E29978E6D3FADFFF5E7FE6C13590E8888CCA7AD7DD_220)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_B68ACFAD2A3D93FE2B8963E29978E6D3FADFFF5E7FE6C13590E8888CCA7AD7DD_220() const { return ___B68ACFAD2A3D93FE2B8963E29978E6D3FADFFF5E7FE6C13590E8888CCA7AD7DD_220; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_B68ACFAD2A3D93FE2B8963E29978E6D3FADFFF5E7FE6C13590E8888CCA7AD7DD_220() { return &___B68ACFAD2A3D93FE2B8963E29978E6D3FADFFF5E7FE6C13590E8888CCA7AD7DD_220; } inline void set_B68ACFAD2A3D93FE2B8963E29978E6D3FADFFF5E7FE6C13590E8888CCA7AD7DD_220(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___B68ACFAD2A3D93FE2B8963E29978E6D3FADFFF5E7FE6C13590E8888CCA7AD7DD_220 = value; } inline static int32_t get_offset_of_B698262446F5CFFF6CD492B8DBB1298BC61F0135EEE69366BD94E81ADE1D5C5A_221() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___B698262446F5CFFF6CD492B8DBB1298BC61F0135EEE69366BD94E81ADE1D5C5A_221)); } inline __StaticArrayInitTypeSizeU3D36_t5A0F5FAC8609C11AC407745154F17247010BD4A1 get_B698262446F5CFFF6CD492B8DBB1298BC61F0135EEE69366BD94E81ADE1D5C5A_221() const { return ___B698262446F5CFFF6CD492B8DBB1298BC61F0135EEE69366BD94E81ADE1D5C5A_221; } inline __StaticArrayInitTypeSizeU3D36_t5A0F5FAC8609C11AC407745154F17247010BD4A1 * get_address_of_B698262446F5CFFF6CD492B8DBB1298BC61F0135EEE69366BD94E81ADE1D5C5A_221() { return &___B698262446F5CFFF6CD492B8DBB1298BC61F0135EEE69366BD94E81ADE1D5C5A_221; } inline void set_B698262446F5CFFF6CD492B8DBB1298BC61F0135EEE69366BD94E81ADE1D5C5A_221(__StaticArrayInitTypeSizeU3D36_t5A0F5FAC8609C11AC407745154F17247010BD4A1 value) { ___B698262446F5CFFF6CD492B8DBB1298BC61F0135EEE69366BD94E81ADE1D5C5A_221 = value; } inline static int32_t get_offset_of_B6FF5DB8C0FA699CD97E8EDF68219F0D1D9E509B4911710791D74AD7DF2DA1AD_222() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___B6FF5DB8C0FA699CD97E8EDF68219F0D1D9E509B4911710791D74AD7DF2DA1AD_222)); } inline __StaticArrayInitTypeSizeU3D36_t5A0F5FAC8609C11AC407745154F17247010BD4A1 get_B6FF5DB8C0FA699CD97E8EDF68219F0D1D9E509B4911710791D74AD7DF2DA1AD_222() const { return ___B6FF5DB8C0FA699CD97E8EDF68219F0D1D9E509B4911710791D74AD7DF2DA1AD_222; } inline __StaticArrayInitTypeSizeU3D36_t5A0F5FAC8609C11AC407745154F17247010BD4A1 * get_address_of_B6FF5DB8C0FA699CD97E8EDF68219F0D1D9E509B4911710791D74AD7DF2DA1AD_222() { return &___B6FF5DB8C0FA699CD97E8EDF68219F0D1D9E509B4911710791D74AD7DF2DA1AD_222; } inline void set_B6FF5DB8C0FA699CD97E8EDF68219F0D1D9E509B4911710791D74AD7DF2DA1AD_222(__StaticArrayInitTypeSizeU3D36_t5A0F5FAC8609C11AC407745154F17247010BD4A1 value) { ___B6FF5DB8C0FA699CD97E8EDF68219F0D1D9E509B4911710791D74AD7DF2DA1AD_222 = value; } inline static int32_t get_offset_of_B77E3D4019880A0C0F03E4214418983FD00C0107BB2632899FE6C3230F97B82C_223() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___B77E3D4019880A0C0F03E4214418983FD00C0107BB2632899FE6C3230F97B82C_223)); } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 get_B77E3D4019880A0C0F03E4214418983FD00C0107BB2632899FE6C3230F97B82C_223() const { return ___B77E3D4019880A0C0F03E4214418983FD00C0107BB2632899FE6C3230F97B82C_223; } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 * get_address_of_B77E3D4019880A0C0F03E4214418983FD00C0107BB2632899FE6C3230F97B82C_223() { return &___B77E3D4019880A0C0F03E4214418983FD00C0107BB2632899FE6C3230F97B82C_223; } inline void set_B77E3D4019880A0C0F03E4214418983FD00C0107BB2632899FE6C3230F97B82C_223(__StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 value) { ___B77E3D4019880A0C0F03E4214418983FD00C0107BB2632899FE6C3230F97B82C_223 = value; } inline static int32_t get_offset_of_B7A918F6F138CA8137025633559198B529D28CCEC5A51B005376CC69A5B83D85_224() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___B7A918F6F138CA8137025633559198B529D28CCEC5A51B005376CC69A5B83D85_224)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_B7A918F6F138CA8137025633559198B529D28CCEC5A51B005376CC69A5B83D85_224() const { return ___B7A918F6F138CA8137025633559198B529D28CCEC5A51B005376CC69A5B83D85_224; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_B7A918F6F138CA8137025633559198B529D28CCEC5A51B005376CC69A5B83D85_224() { return &___B7A918F6F138CA8137025633559198B529D28CCEC5A51B005376CC69A5B83D85_224; } inline void set_B7A918F6F138CA8137025633559198B529D28CCEC5A51B005376CC69A5B83D85_224(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___B7A918F6F138CA8137025633559198B529D28CCEC5A51B005376CC69A5B83D85_224 = value; } inline static int32_t get_offset_of_B8A899AEBE8BCC739D363C17DD8CA885653263A59843BF7B7C85DE4DB10A9C92_225() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___B8A899AEBE8BCC739D363C17DD8CA885653263A59843BF7B7C85DE4DB10A9C92_225)); } inline int32_t get_B8A899AEBE8BCC739D363C17DD8CA885653263A59843BF7B7C85DE4DB10A9C92_225() const { return ___B8A899AEBE8BCC739D363C17DD8CA885653263A59843BF7B7C85DE4DB10A9C92_225; } inline int32_t* get_address_of_B8A899AEBE8BCC739D363C17DD8CA885653263A59843BF7B7C85DE4DB10A9C92_225() { return &___B8A899AEBE8BCC739D363C17DD8CA885653263A59843BF7B7C85DE4DB10A9C92_225; } inline void set_B8A899AEBE8BCC739D363C17DD8CA885653263A59843BF7B7C85DE4DB10A9C92_225(int32_t value) { ___B8A899AEBE8BCC739D363C17DD8CA885653263A59843BF7B7C85DE4DB10A9C92_225 = value; } inline static int32_t get_offset_of_B93B37392B6BF36325C2B8E6047E7EF31B87C67E59B16D30A60CAF2E18D9C73C_226() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___B93B37392B6BF36325C2B8E6047E7EF31B87C67E59B16D30A60CAF2E18D9C73C_226)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_B93B37392B6BF36325C2B8E6047E7EF31B87C67E59B16D30A60CAF2E18D9C73C_226() const { return ___B93B37392B6BF36325C2B8E6047E7EF31B87C67E59B16D30A60CAF2E18D9C73C_226; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_B93B37392B6BF36325C2B8E6047E7EF31B87C67E59B16D30A60CAF2E18D9C73C_226() { return &___B93B37392B6BF36325C2B8E6047E7EF31B87C67E59B16D30A60CAF2E18D9C73C_226; } inline void set_B93B37392B6BF36325C2B8E6047E7EF31B87C67E59B16D30A60CAF2E18D9C73C_226(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___B93B37392B6BF36325C2B8E6047E7EF31B87C67E59B16D30A60CAF2E18D9C73C_226 = value; } inline static int32_t get_offset_of_B9D4AF390AFC6A0F149B843D651CFEBC1C4EC496A0263B72207836F9C525E1C4_227() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___B9D4AF390AFC6A0F149B843D651CFEBC1C4EC496A0263B72207836F9C525E1C4_227)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_B9D4AF390AFC6A0F149B843D651CFEBC1C4EC496A0263B72207836F9C525E1C4_227() const { return ___B9D4AF390AFC6A0F149B843D651CFEBC1C4EC496A0263B72207836F9C525E1C4_227; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_B9D4AF390AFC6A0F149B843D651CFEBC1C4EC496A0263B72207836F9C525E1C4_227() { return &___B9D4AF390AFC6A0F149B843D651CFEBC1C4EC496A0263B72207836F9C525E1C4_227; } inline void set_B9D4AF390AFC6A0F149B843D651CFEBC1C4EC496A0263B72207836F9C525E1C4_227(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___B9D4AF390AFC6A0F149B843D651CFEBC1C4EC496A0263B72207836F9C525E1C4_227 = value; } inline static int32_t get_offset_of_BABB01CD1E2AD140F7D2AF35515DA38E8936F0BA0298BCF0245EB5692A3F69CC_228() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___BABB01CD1E2AD140F7D2AF35515DA38E8936F0BA0298BCF0245EB5692A3F69CC_228)); } inline __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F get_BABB01CD1E2AD140F7D2AF35515DA38E8936F0BA0298BCF0245EB5692A3F69CC_228() const { return ___BABB01CD1E2AD140F7D2AF35515DA38E8936F0BA0298BCF0245EB5692A3F69CC_228; } inline __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F * get_address_of_BABB01CD1E2AD140F7D2AF35515DA38E8936F0BA0298BCF0245EB5692A3F69CC_228() { return &___BABB01CD1E2AD140F7D2AF35515DA38E8936F0BA0298BCF0245EB5692A3F69CC_228; } inline void set_BABB01CD1E2AD140F7D2AF35515DA38E8936F0BA0298BCF0245EB5692A3F69CC_228(__StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F value) { ___BABB01CD1E2AD140F7D2AF35515DA38E8936F0BA0298BCF0245EB5692A3F69CC_228 = value; } inline static int32_t get_offset_of_BB288FA00D4BBE2546E0D29F7D8BC6AF483CD4275D692B451B2E39A404E33EBF_229() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___BB288FA00D4BBE2546E0D29F7D8BC6AF483CD4275D692B451B2E39A404E33EBF_229)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_BB288FA00D4BBE2546E0D29F7D8BC6AF483CD4275D692B451B2E39A404E33EBF_229() const { return ___BB288FA00D4BBE2546E0D29F7D8BC6AF483CD4275D692B451B2E39A404E33EBF_229; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_BB288FA00D4BBE2546E0D29F7D8BC6AF483CD4275D692B451B2E39A404E33EBF_229() { return &___BB288FA00D4BBE2546E0D29F7D8BC6AF483CD4275D692B451B2E39A404E33EBF_229; } inline void set_BB288FA00D4BBE2546E0D29F7D8BC6AF483CD4275D692B451B2E39A404E33EBF_229(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___BB288FA00D4BBE2546E0D29F7D8BC6AF483CD4275D692B451B2E39A404E33EBF_229 = value; } inline static int32_t get_offset_of_BD01644841E6B289961C01E9D8319807BB25F791DB6A990F60D44DA36533D5AD_230() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___BD01644841E6B289961C01E9D8319807BB25F791DB6A990F60D44DA36533D5AD_230)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_BD01644841E6B289961C01E9D8319807BB25F791DB6A990F60D44DA36533D5AD_230() const { return ___BD01644841E6B289961C01E9D8319807BB25F791DB6A990F60D44DA36533D5AD_230; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_BD01644841E6B289961C01E9D8319807BB25F791DB6A990F60D44DA36533D5AD_230() { return &___BD01644841E6B289961C01E9D8319807BB25F791DB6A990F60D44DA36533D5AD_230; } inline void set_BD01644841E6B289961C01E9D8319807BB25F791DB6A990F60D44DA36533D5AD_230(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___BD01644841E6B289961C01E9D8319807BB25F791DB6A990F60D44DA36533D5AD_230 = value; } inline static int32_t get_offset_of_BD6174A7C16E1AF07272966A9C071C8A3CF16B2726C50D672A09F60636B08901_231() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___BD6174A7C16E1AF07272966A9C071C8A3CF16B2726C50D672A09F60636B08901_231)); } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F get_BD6174A7C16E1AF07272966A9C071C8A3CF16B2726C50D672A09F60636B08901_231() const { return ___BD6174A7C16E1AF07272966A9C071C8A3CF16B2726C50D672A09F60636B08901_231; } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F * get_address_of_BD6174A7C16E1AF07272966A9C071C8A3CF16B2726C50D672A09F60636B08901_231() { return &___BD6174A7C16E1AF07272966A9C071C8A3CF16B2726C50D672A09F60636B08901_231; } inline void set_BD6174A7C16E1AF07272966A9C071C8A3CF16B2726C50D672A09F60636B08901_231(__StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F value) { ___BD6174A7C16E1AF07272966A9C071C8A3CF16B2726C50D672A09F60636B08901_231 = value; } inline static int32_t get_offset_of_BDB11C99D6418180156EEA47B9EB755F8736055603C19E57F9DFB4CDFFCF8C3A_232() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___BDB11C99D6418180156EEA47B9EB755F8736055603C19E57F9DFB4CDFFCF8C3A_232)); } inline int32_t get_BDB11C99D6418180156EEA47B9EB755F8736055603C19E57F9DFB4CDFFCF8C3A_232() const { return ___BDB11C99D6418180156EEA47B9EB755F8736055603C19E57F9DFB4CDFFCF8C3A_232; } inline int32_t* get_address_of_BDB11C99D6418180156EEA47B9EB755F8736055603C19E57F9DFB4CDFFCF8C3A_232() { return &___BDB11C99D6418180156EEA47B9EB755F8736055603C19E57F9DFB4CDFFCF8C3A_232; } inline void set_BDB11C99D6418180156EEA47B9EB755F8736055603C19E57F9DFB4CDFFCF8C3A_232(int32_t value) { ___BDB11C99D6418180156EEA47B9EB755F8736055603C19E57F9DFB4CDFFCF8C3A_232 = value; } inline static int32_t get_offset_of_BDB6BB299E50984399E0FD8F6BA60FC85EF8CAF6AD5154D53E6DAC34E2E0B381_233() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___BDB6BB299E50984399E0FD8F6BA60FC85EF8CAF6AD5154D53E6DAC34E2E0B381_233)); } inline __StaticArrayInitTypeSizeU3D96_tADB23F3DA94DC89452F2BC0884B51C90615CDCD5 get_BDB6BB299E50984399E0FD8F6BA60FC85EF8CAF6AD5154D53E6DAC34E2E0B381_233() const { return ___BDB6BB299E50984399E0FD8F6BA60FC85EF8CAF6AD5154D53E6DAC34E2E0B381_233; } inline __StaticArrayInitTypeSizeU3D96_tADB23F3DA94DC89452F2BC0884B51C90615CDCD5 * get_address_of_BDB6BB299E50984399E0FD8F6BA60FC85EF8CAF6AD5154D53E6DAC34E2E0B381_233() { return &___BDB6BB299E50984399E0FD8F6BA60FC85EF8CAF6AD5154D53E6DAC34E2E0B381_233; } inline void set_BDB6BB299E50984399E0FD8F6BA60FC85EF8CAF6AD5154D53E6DAC34E2E0B381_233(__StaticArrayInitTypeSizeU3D96_tADB23F3DA94DC89452F2BC0884B51C90615CDCD5 value) { ___BDB6BB299E50984399E0FD8F6BA60FC85EF8CAF6AD5154D53E6DAC34E2E0B381_233 = value; } inline static int32_t get_offset_of_BDBC02F2D0A2A74757905F71BEC91DE96906C2FB70018166887D85BEB84B7957_234() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___BDBC02F2D0A2A74757905F71BEC91DE96906C2FB70018166887D85BEB84B7957_234)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_BDBC02F2D0A2A74757905F71BEC91DE96906C2FB70018166887D85BEB84B7957_234() const { return ___BDBC02F2D0A2A74757905F71BEC91DE96906C2FB70018166887D85BEB84B7957_234; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_BDBC02F2D0A2A74757905F71BEC91DE96906C2FB70018166887D85BEB84B7957_234() { return &___BDBC02F2D0A2A74757905F71BEC91DE96906C2FB70018166887D85BEB84B7957_234; } inline void set_BDBC02F2D0A2A74757905F71BEC91DE96906C2FB70018166887D85BEB84B7957_234(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___BDBC02F2D0A2A74757905F71BEC91DE96906C2FB70018166887D85BEB84B7957_234 = value; } inline static int32_t get_offset_of_BEDA989D5939125AA1831BFE35ED2E4F0F05DD63851049C646ACE173A2D0827C_235() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___BEDA989D5939125AA1831BFE35ED2E4F0F05DD63851049C646ACE173A2D0827C_235)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_BEDA989D5939125AA1831BFE35ED2E4F0F05DD63851049C646ACE173A2D0827C_235() const { return ___BEDA989D5939125AA1831BFE35ED2E4F0F05DD63851049C646ACE173A2D0827C_235; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_BEDA989D5939125AA1831BFE35ED2E4F0F05DD63851049C646ACE173A2D0827C_235() { return &___BEDA989D5939125AA1831BFE35ED2E4F0F05DD63851049C646ACE173A2D0827C_235; } inline void set_BEDA989D5939125AA1831BFE35ED2E4F0F05DD63851049C646ACE173A2D0827C_235(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___BEDA989D5939125AA1831BFE35ED2E4F0F05DD63851049C646ACE173A2D0827C_235 = value; } inline static int32_t get_offset_of_BF3DB37CB55FF90EEE410403506E7AFB17B3B6ED163AEC657F4E4F47532D1E85_236() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___BF3DB37CB55FF90EEE410403506E7AFB17B3B6ED163AEC657F4E4F47532D1E85_236)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_BF3DB37CB55FF90EEE410403506E7AFB17B3B6ED163AEC657F4E4F47532D1E85_236() const { return ___BF3DB37CB55FF90EEE410403506E7AFB17B3B6ED163AEC657F4E4F47532D1E85_236; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_BF3DB37CB55FF90EEE410403506E7AFB17B3B6ED163AEC657F4E4F47532D1E85_236() { return &___BF3DB37CB55FF90EEE410403506E7AFB17B3B6ED163AEC657F4E4F47532D1E85_236; } inline void set_BF3DB37CB55FF90EEE410403506E7AFB17B3B6ED163AEC657F4E4F47532D1E85_236(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___BF3DB37CB55FF90EEE410403506E7AFB17B3B6ED163AEC657F4E4F47532D1E85_236 = value; } inline static int32_t get_offset_of_C0BCAD52BB24771C2430DFC75321628F5503FDDC5A0E05E93F3DD624A60B10BD_237() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___C0BCAD52BB24771C2430DFC75321628F5503FDDC5A0E05E93F3DD624A60B10BD_237)); } inline __StaticArrayInitTypeSizeU3D192_tC7D23024B2AD7A4D301599706A49B8C87DAA353D get_C0BCAD52BB24771C2430DFC75321628F5503FDDC5A0E05E93F3DD624A60B10BD_237() const { return ___C0BCAD52BB24771C2430DFC75321628F5503FDDC5A0E05E93F3DD624A60B10BD_237; } inline __StaticArrayInitTypeSizeU3D192_tC7D23024B2AD7A4D301599706A49B8C87DAA353D * get_address_of_C0BCAD52BB24771C2430DFC75321628F5503FDDC5A0E05E93F3DD624A60B10BD_237() { return &___C0BCAD52BB24771C2430DFC75321628F5503FDDC5A0E05E93F3DD624A60B10BD_237; } inline void set_C0BCAD52BB24771C2430DFC75321628F5503FDDC5A0E05E93F3DD624A60B10BD_237(__StaticArrayInitTypeSizeU3D192_tC7D23024B2AD7A4D301599706A49B8C87DAA353D value) { ___C0BCAD52BB24771C2430DFC75321628F5503FDDC5A0E05E93F3DD624A60B10BD_237 = value; } inline static int32_t get_offset_of_C0EE00302C997F25F7963B42E53EA31C48A41E1D5D50F1DAC01F6350AE1FF443_238() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___C0EE00302C997F25F7963B42E53EA31C48A41E1D5D50F1DAC01F6350AE1FF443_238)); } inline __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 get_C0EE00302C997F25F7963B42E53EA31C48A41E1D5D50F1DAC01F6350AE1FF443_238() const { return ___C0EE00302C997F25F7963B42E53EA31C48A41E1D5D50F1DAC01F6350AE1FF443_238; } inline __StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 * get_address_of_C0EE00302C997F25F7963B42E53EA31C48A41E1D5D50F1DAC01F6350AE1FF443_238() { return &___C0EE00302C997F25F7963B42E53EA31C48A41E1D5D50F1DAC01F6350AE1FF443_238; } inline void set_C0EE00302C997F25F7963B42E53EA31C48A41E1D5D50F1DAC01F6350AE1FF443_238(__StaticArrayInitTypeSizeU3D20_tA7878E15E0E5AC780F6ED4F6E87AD8233A152598 value) { ___C0EE00302C997F25F7963B42E53EA31C48A41E1D5D50F1DAC01F6350AE1FF443_238 = value; } inline static int32_t get_offset_of_C133E473E5E653C5C4AEDB8BCC1C1A3A44D384FC0B6C0FCF04672B1B325EC01B_239() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___C133E473E5E653C5C4AEDB8BCC1C1A3A44D384FC0B6C0FCF04672B1B325EC01B_239)); } inline __StaticArrayInitTypeSizeU3D76_t6572A863E37652A3D016260FBD2285807BDD3823 get_C133E473E5E653C5C4AEDB8BCC1C1A3A44D384FC0B6C0FCF04672B1B325EC01B_239() const { return ___C133E473E5E653C5C4AEDB8BCC1C1A3A44D384FC0B6C0FCF04672B1B325EC01B_239; } inline __StaticArrayInitTypeSizeU3D76_t6572A863E37652A3D016260FBD2285807BDD3823 * get_address_of_C133E473E5E653C5C4AEDB8BCC1C1A3A44D384FC0B6C0FCF04672B1B325EC01B_239() { return &___C133E473E5E653C5C4AEDB8BCC1C1A3A44D384FC0B6C0FCF04672B1B325EC01B_239; } inline void set_C133E473E5E653C5C4AEDB8BCC1C1A3A44D384FC0B6C0FCF04672B1B325EC01B_239(__StaticArrayInitTypeSizeU3D76_t6572A863E37652A3D016260FBD2285807BDD3823 value) { ___C133E473E5E653C5C4AEDB8BCC1C1A3A44D384FC0B6C0FCF04672B1B325EC01B_239 = value; } inline static int32_t get_offset_of_C199D37D9A06A0F4C75F70A8ABD3D0C2FAEB17B255174C5E67392D81CF5FF0EC_240() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___C199D37D9A06A0F4C75F70A8ABD3D0C2FAEB17B255174C5E67392D81CF5FF0EC_240)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_C199D37D9A06A0F4C75F70A8ABD3D0C2FAEB17B255174C5E67392D81CF5FF0EC_240() const { return ___C199D37D9A06A0F4C75F70A8ABD3D0C2FAEB17B255174C5E67392D81CF5FF0EC_240; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_C199D37D9A06A0F4C75F70A8ABD3D0C2FAEB17B255174C5E67392D81CF5FF0EC_240() { return &___C199D37D9A06A0F4C75F70A8ABD3D0C2FAEB17B255174C5E67392D81CF5FF0EC_240; } inline void set_C199D37D9A06A0F4C75F70A8ABD3D0C2FAEB17B255174C5E67392D81CF5FF0EC_240(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___C199D37D9A06A0F4C75F70A8ABD3D0C2FAEB17B255174C5E67392D81CF5FF0EC_240 = value; } inline static int32_t get_offset_of_C2D8E5EED6CBEBD8625FC18F81486A7733C04F9B0129FFBE974C68B90308B4F2_241() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___C2D8E5EED6CBEBD8625FC18F81486A7733C04F9B0129FFBE974C68B90308B4F2_241)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_C2D8E5EED6CBEBD8625FC18F81486A7733C04F9B0129FFBE974C68B90308B4F2_241() const { return ___C2D8E5EED6CBEBD8625FC18F81486A7733C04F9B0129FFBE974C68B90308B4F2_241; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_C2D8E5EED6CBEBD8625FC18F81486A7733C04F9B0129FFBE974C68B90308B4F2_241() { return &___C2D8E5EED6CBEBD8625FC18F81486A7733C04F9B0129FFBE974C68B90308B4F2_241; } inline void set_C2D8E5EED6CBEBD8625FC18F81486A7733C04F9B0129FFBE974C68B90308B4F2_241(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___C2D8E5EED6CBEBD8625FC18F81486A7733C04F9B0129FFBE974C68B90308B4F2_241 = value; } inline static int32_t get_offset_of_C4A6802D24BD0B4979A486C462DA989CD54F8816365BC0635A8A499FF421201C_242() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___C4A6802D24BD0B4979A486C462DA989CD54F8816365BC0635A8A499FF421201C_242)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_C4A6802D24BD0B4979A486C462DA989CD54F8816365BC0635A8A499FF421201C_242() const { return ___C4A6802D24BD0B4979A486C462DA989CD54F8816365BC0635A8A499FF421201C_242; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_C4A6802D24BD0B4979A486C462DA989CD54F8816365BC0635A8A499FF421201C_242() { return &___C4A6802D24BD0B4979A486C462DA989CD54F8816365BC0635A8A499FF421201C_242; } inline void set_C4A6802D24BD0B4979A486C462DA989CD54F8816365BC0635A8A499FF421201C_242(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___C4A6802D24BD0B4979A486C462DA989CD54F8816365BC0635A8A499FF421201C_242 = value; } inline static int32_t get_offset_of_C4E613C844059E36B3D4EE786C4236B8E641E7D49F520B003540BB274F7E12F7_243() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___C4E613C844059E36B3D4EE786C4236B8E641E7D49F520B003540BB274F7E12F7_243)); } inline __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E get_C4E613C844059E36B3D4EE786C4236B8E641E7D49F520B003540BB274F7E12F7_243() const { return ___C4E613C844059E36B3D4EE786C4236B8E641E7D49F520B003540BB274F7E12F7_243; } inline __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E * get_address_of_C4E613C844059E36B3D4EE786C4236B8E641E7D49F520B003540BB274F7E12F7_243() { return &___C4E613C844059E36B3D4EE786C4236B8E641E7D49F520B003540BB274F7E12F7_243; } inline void set_C4E613C844059E36B3D4EE786C4236B8E641E7D49F520B003540BB274F7E12F7_243(__StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E value) { ___C4E613C844059E36B3D4EE786C4236B8E641E7D49F520B003540BB274F7E12F7_243 = value; } inline static int32_t get_offset_of_C51FEE572495EE6ED75353FC262F765FF558EED94FCB9EE64987AEE6C8548E12_244() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___C51FEE572495EE6ED75353FC262F765FF558EED94FCB9EE64987AEE6C8548E12_244)); } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F get_C51FEE572495EE6ED75353FC262F765FF558EED94FCB9EE64987AEE6C8548E12_244() const { return ___C51FEE572495EE6ED75353FC262F765FF558EED94FCB9EE64987AEE6C8548E12_244; } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F * get_address_of_C51FEE572495EE6ED75353FC262F765FF558EED94FCB9EE64987AEE6C8548E12_244() { return &___C51FEE572495EE6ED75353FC262F765FF558EED94FCB9EE64987AEE6C8548E12_244; } inline void set_C51FEE572495EE6ED75353FC262F765FF558EED94FCB9EE64987AEE6C8548E12_244(__StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F value) { ___C51FEE572495EE6ED75353FC262F765FF558EED94FCB9EE64987AEE6C8548E12_244 = value; } inline static int32_t get_offset_of_C65D6ACE28C7ABEB56A3809EBDF84987B4FD0B0EB2C34FEA90394A0A5E10DC55_245() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___C65D6ACE28C7ABEB56A3809EBDF84987B4FD0B0EB2C34FEA90394A0A5E10DC55_245)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_C65D6ACE28C7ABEB56A3809EBDF84987B4FD0B0EB2C34FEA90394A0A5E10DC55_245() const { return ___C65D6ACE28C7ABEB56A3809EBDF84987B4FD0B0EB2C34FEA90394A0A5E10DC55_245; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_C65D6ACE28C7ABEB56A3809EBDF84987B4FD0B0EB2C34FEA90394A0A5E10DC55_245() { return &___C65D6ACE28C7ABEB56A3809EBDF84987B4FD0B0EB2C34FEA90394A0A5E10DC55_245; } inline void set_C65D6ACE28C7ABEB56A3809EBDF84987B4FD0B0EB2C34FEA90394A0A5E10DC55_245(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___C65D6ACE28C7ABEB56A3809EBDF84987B4FD0B0EB2C34FEA90394A0A5E10DC55_245 = value; } inline static int32_t get_offset_of_C71C8ED7041ABE0B7FD161D726857C18705285A9F1B478A006310909B4A6D900_246() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___C71C8ED7041ABE0B7FD161D726857C18705285A9F1B478A006310909B4A6D900_246)); } inline int32_t get_C71C8ED7041ABE0B7FD161D726857C18705285A9F1B478A006310909B4A6D900_246() const { return ___C71C8ED7041ABE0B7FD161D726857C18705285A9F1B478A006310909B4A6D900_246; } inline int32_t* get_address_of_C71C8ED7041ABE0B7FD161D726857C18705285A9F1B478A006310909B4A6D900_246() { return &___C71C8ED7041ABE0B7FD161D726857C18705285A9F1B478A006310909B4A6D900_246; } inline void set_C71C8ED7041ABE0B7FD161D726857C18705285A9F1B478A006310909B4A6D900_246(int32_t value) { ___C71C8ED7041ABE0B7FD161D726857C18705285A9F1B478A006310909B4A6D900_246 = value; } inline static int32_t get_offset_of_C7B696E5CE2020FEC8F611D5047339850FECC787C3DBC5D36589354D8ADF98C1_247() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___C7B696E5CE2020FEC8F611D5047339850FECC787C3DBC5D36589354D8ADF98C1_247)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_C7B696E5CE2020FEC8F611D5047339850FECC787C3DBC5D36589354D8ADF98C1_247() const { return ___C7B696E5CE2020FEC8F611D5047339850FECC787C3DBC5D36589354D8ADF98C1_247; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_C7B696E5CE2020FEC8F611D5047339850FECC787C3DBC5D36589354D8ADF98C1_247() { return &___C7B696E5CE2020FEC8F611D5047339850FECC787C3DBC5D36589354D8ADF98C1_247; } inline void set_C7B696E5CE2020FEC8F611D5047339850FECC787C3DBC5D36589354D8ADF98C1_247(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___C7B696E5CE2020FEC8F611D5047339850FECC787C3DBC5D36589354D8ADF98C1_247 = value; } inline static int32_t get_offset_of_C84227140A8A7787B30DFF8BD5693C19AA5A430C4E89FFD0256D7F77B3FEAD82_248() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___C84227140A8A7787B30DFF8BD5693C19AA5A430C4E89FFD0256D7F77B3FEAD82_248)); } inline __StaticArrayInitTypeSizeU3D112_t366701DE02350ED8C8A65F92A137F54409B95542 get_C84227140A8A7787B30DFF8BD5693C19AA5A430C4E89FFD0256D7F77B3FEAD82_248() const { return ___C84227140A8A7787B30DFF8BD5693C19AA5A430C4E89FFD0256D7F77B3FEAD82_248; } inline __StaticArrayInitTypeSizeU3D112_t366701DE02350ED8C8A65F92A137F54409B95542 * get_address_of_C84227140A8A7787B30DFF8BD5693C19AA5A430C4E89FFD0256D7F77B3FEAD82_248() { return &___C84227140A8A7787B30DFF8BD5693C19AA5A430C4E89FFD0256D7F77B3FEAD82_248; } inline void set_C84227140A8A7787B30DFF8BD5693C19AA5A430C4E89FFD0256D7F77B3FEAD82_248(__StaticArrayInitTypeSizeU3D112_t366701DE02350ED8C8A65F92A137F54409B95542 value) { ___C84227140A8A7787B30DFF8BD5693C19AA5A430C4E89FFD0256D7F77B3FEAD82_248 = value; } inline static int32_t get_offset_of_C854B091EA9394BFC39C4324F63BF827E324ABA5F68693B00E4DB8B247ED2023_249() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___C854B091EA9394BFC39C4324F63BF827E324ABA5F68693B00E4DB8B247ED2023_249)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_C854B091EA9394BFC39C4324F63BF827E324ABA5F68693B00E4DB8B247ED2023_249() const { return ___C854B091EA9394BFC39C4324F63BF827E324ABA5F68693B00E4DB8B247ED2023_249; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_C854B091EA9394BFC39C4324F63BF827E324ABA5F68693B00E4DB8B247ED2023_249() { return &___C854B091EA9394BFC39C4324F63BF827E324ABA5F68693B00E4DB8B247ED2023_249; } inline void set_C854B091EA9394BFC39C4324F63BF827E324ABA5F68693B00E4DB8B247ED2023_249(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___C854B091EA9394BFC39C4324F63BF827E324ABA5F68693B00E4DB8B247ED2023_249 = value; } inline static int32_t get_offset_of_C90D4186D61A339F3078D8C7A6CBB1F005BFF5039C44C37F526BDCE2E00200BE_250() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___C90D4186D61A339F3078D8C7A6CBB1F005BFF5039C44C37F526BDCE2E00200BE_250)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_C90D4186D61A339F3078D8C7A6CBB1F005BFF5039C44C37F526BDCE2E00200BE_250() const { return ___C90D4186D61A339F3078D8C7A6CBB1F005BFF5039C44C37F526BDCE2E00200BE_250; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_C90D4186D61A339F3078D8C7A6CBB1F005BFF5039C44C37F526BDCE2E00200BE_250() { return &___C90D4186D61A339F3078D8C7A6CBB1F005BFF5039C44C37F526BDCE2E00200BE_250; } inline void set_C90D4186D61A339F3078D8C7A6CBB1F005BFF5039C44C37F526BDCE2E00200BE_250(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___C90D4186D61A339F3078D8C7A6CBB1F005BFF5039C44C37F526BDCE2E00200BE_250 = value; } inline static int32_t get_offset_of_C9E595B3F656D2DCA3D18330FD3EB05010FD9D445BE304E4FA5F4AB7B335494D_251() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___C9E595B3F656D2DCA3D18330FD3EB05010FD9D445BE304E4FA5F4AB7B335494D_251)); } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F get_C9E595B3F656D2DCA3D18330FD3EB05010FD9D445BE304E4FA5F4AB7B335494D_251() const { return ___C9E595B3F656D2DCA3D18330FD3EB05010FD9D445BE304E4FA5F4AB7B335494D_251; } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F * get_address_of_C9E595B3F656D2DCA3D18330FD3EB05010FD9D445BE304E4FA5F4AB7B335494D_251() { return &___C9E595B3F656D2DCA3D18330FD3EB05010FD9D445BE304E4FA5F4AB7B335494D_251; } inline void set_C9E595B3F656D2DCA3D18330FD3EB05010FD9D445BE304E4FA5F4AB7B335494D_251(__StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F value) { ___C9E595B3F656D2DCA3D18330FD3EB05010FD9D445BE304E4FA5F4AB7B335494D_251 = value; } inline static int32_t get_offset_of_CB11E26FF20D3318A5A76F5FC0E725883F81ED29DAD7E32947BA8779AA3DE37F_252() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___CB11E26FF20D3318A5A76F5FC0E725883F81ED29DAD7E32947BA8779AA3DE37F_252)); } inline __StaticArrayInitTypeSizeU3D96_tADB23F3DA94DC89452F2BC0884B51C90615CDCD5 get_CB11E26FF20D3318A5A76F5FC0E725883F81ED29DAD7E32947BA8779AA3DE37F_252() const { return ___CB11E26FF20D3318A5A76F5FC0E725883F81ED29DAD7E32947BA8779AA3DE37F_252; } inline __StaticArrayInitTypeSizeU3D96_tADB23F3DA94DC89452F2BC0884B51C90615CDCD5 * get_address_of_CB11E26FF20D3318A5A76F5FC0E725883F81ED29DAD7E32947BA8779AA3DE37F_252() { return &___CB11E26FF20D3318A5A76F5FC0E725883F81ED29DAD7E32947BA8779AA3DE37F_252; } inline void set_CB11E26FF20D3318A5A76F5FC0E725883F81ED29DAD7E32947BA8779AA3DE37F_252(__StaticArrayInitTypeSizeU3D96_tADB23F3DA94DC89452F2BC0884B51C90615CDCD5 value) { ___CB11E26FF20D3318A5A76F5FC0E725883F81ED29DAD7E32947BA8779AA3DE37F_252 = value; } inline static int32_t get_offset_of_CB6DED39AE0C25F0748B553A13DCA00F6B77780B9F34B0B0F4C56BB7BF768C82_253() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___CB6DED39AE0C25F0748B553A13DCA00F6B77780B9F34B0B0F4C56BB7BF768C82_253)); } inline __StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE get_CB6DED39AE0C25F0748B553A13DCA00F6B77780B9F34B0B0F4C56BB7BF768C82_253() const { return ___CB6DED39AE0C25F0748B553A13DCA00F6B77780B9F34B0B0F4C56BB7BF768C82_253; } inline __StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE * get_address_of_CB6DED39AE0C25F0748B553A13DCA00F6B77780B9F34B0B0F4C56BB7BF768C82_253() { return &___CB6DED39AE0C25F0748B553A13DCA00F6B77780B9F34B0B0F4C56BB7BF768C82_253; } inline void set_CB6DED39AE0C25F0748B553A13DCA00F6B77780B9F34B0B0F4C56BB7BF768C82_253(__StaticArrayInitTypeSizeU3D512_t0F967F8361DD05C875A7A3DB3A402E55F957AAFE value) { ___CB6DED39AE0C25F0748B553A13DCA00F6B77780B9F34B0B0F4C56BB7BF768C82_253 = value; } inline static int32_t get_offset_of_CC9BD9D64572985ECFB6E2A723B6DD347BB34F5AFECDBFB98444028D2DF4844D_254() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___CC9BD9D64572985ECFB6E2A723B6DD347BB34F5AFECDBFB98444028D2DF4844D_254)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_CC9BD9D64572985ECFB6E2A723B6DD347BB34F5AFECDBFB98444028D2DF4844D_254() const { return ___CC9BD9D64572985ECFB6E2A723B6DD347BB34F5AFECDBFB98444028D2DF4844D_254; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_CC9BD9D64572985ECFB6E2A723B6DD347BB34F5AFECDBFB98444028D2DF4844D_254() { return &___CC9BD9D64572985ECFB6E2A723B6DD347BB34F5AFECDBFB98444028D2DF4844D_254; } inline void set_CC9BD9D64572985ECFB6E2A723B6DD347BB34F5AFECDBFB98444028D2DF4844D_254(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___CC9BD9D64572985ECFB6E2A723B6DD347BB34F5AFECDBFB98444028D2DF4844D_254 = value; } inline static int32_t get_offset_of_CCD83CF06E3CE2D4A938C42BAEA101B30335EAF483F59E5EDCB41DF7C4807E1B_255() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___CCD83CF06E3CE2D4A938C42BAEA101B30335EAF483F59E5EDCB41DF7C4807E1B_255)); } inline __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E get_CCD83CF06E3CE2D4A938C42BAEA101B30335EAF483F59E5EDCB41DF7C4807E1B_255() const { return ___CCD83CF06E3CE2D4A938C42BAEA101B30335EAF483F59E5EDCB41DF7C4807E1B_255; } inline __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E * get_address_of_CCD83CF06E3CE2D4A938C42BAEA101B30335EAF483F59E5EDCB41DF7C4807E1B_255() { return &___CCD83CF06E3CE2D4A938C42BAEA101B30335EAF483F59E5EDCB41DF7C4807E1B_255; } inline void set_CCD83CF06E3CE2D4A938C42BAEA101B30335EAF483F59E5EDCB41DF7C4807E1B_255(__StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E value) { ___CCD83CF06E3CE2D4A938C42BAEA101B30335EAF483F59E5EDCB41DF7C4807E1B_255 = value; } inline static int32_t get_offset_of_CDAEE7E50DA05783C75D649650C5CDC6ABB06447D6A9CFBB2E7212421547E53B_256() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___CDAEE7E50DA05783C75D649650C5CDC6ABB06447D6A9CFBB2E7212421547E53B_256)); } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F get_CDAEE7E50DA05783C75D649650C5CDC6ABB06447D6A9CFBB2E7212421547E53B_256() const { return ___CDAEE7E50DA05783C75D649650C5CDC6ABB06447D6A9CFBB2E7212421547E53B_256; } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F * get_address_of_CDAEE7E50DA05783C75D649650C5CDC6ABB06447D6A9CFBB2E7212421547E53B_256() { return &___CDAEE7E50DA05783C75D649650C5CDC6ABB06447D6A9CFBB2E7212421547E53B_256; } inline void set_CDAEE7E50DA05783C75D649650C5CDC6ABB06447D6A9CFBB2E7212421547E53B_256(__StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F value) { ___CDAEE7E50DA05783C75D649650C5CDC6ABB06447D6A9CFBB2E7212421547E53B_256 = value; } inline static int32_t get_offset_of_CF64D219C0BA56CECE4E41E0C8BF3AF538F4510FA9A2B00F38DA09E548270E5C_257() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___CF64D219C0BA56CECE4E41E0C8BF3AF538F4510FA9A2B00F38DA09E548270E5C_257)); } inline __StaticArrayInitTypeSizeU3D68_tE431405C001EFCAA99F9D46276BFEAF7F5AF4E0F get_CF64D219C0BA56CECE4E41E0C8BF3AF538F4510FA9A2B00F38DA09E548270E5C_257() const { return ___CF64D219C0BA56CECE4E41E0C8BF3AF538F4510FA9A2B00F38DA09E548270E5C_257; } inline __StaticArrayInitTypeSizeU3D68_tE431405C001EFCAA99F9D46276BFEAF7F5AF4E0F * get_address_of_CF64D219C0BA56CECE4E41E0C8BF3AF538F4510FA9A2B00F38DA09E548270E5C_257() { return &___CF64D219C0BA56CECE4E41E0C8BF3AF538F4510FA9A2B00F38DA09E548270E5C_257; } inline void set_CF64D219C0BA56CECE4E41E0C8BF3AF538F4510FA9A2B00F38DA09E548270E5C_257(__StaticArrayInitTypeSizeU3D68_tE431405C001EFCAA99F9D46276BFEAF7F5AF4E0F value) { ___CF64D219C0BA56CECE4E41E0C8BF3AF538F4510FA9A2B00F38DA09E548270E5C_257 = value; } inline static int32_t get_offset_of_D15388770BF0AB6F544906F0A1A3375BE05BB7FEB2B215CED8A8E41C42972549_258() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___D15388770BF0AB6F544906F0A1A3375BE05BB7FEB2B215CED8A8E41C42972549_258)); } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F get_D15388770BF0AB6F544906F0A1A3375BE05BB7FEB2B215CED8A8E41C42972549_258() const { return ___D15388770BF0AB6F544906F0A1A3375BE05BB7FEB2B215CED8A8E41C42972549_258; } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F * get_address_of_D15388770BF0AB6F544906F0A1A3375BE05BB7FEB2B215CED8A8E41C42972549_258() { return &___D15388770BF0AB6F544906F0A1A3375BE05BB7FEB2B215CED8A8E41C42972549_258; } inline void set_D15388770BF0AB6F544906F0A1A3375BE05BB7FEB2B215CED8A8E41C42972549_258(__StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F value) { ___D15388770BF0AB6F544906F0A1A3375BE05BB7FEB2B215CED8A8E41C42972549_258 = value; } inline static int32_t get_offset_of_D1FAE5443A715D6F96387473C649F557670B8A92E175272491DFC646754F4A9D_259() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___D1FAE5443A715D6F96387473C649F557670B8A92E175272491DFC646754F4A9D_259)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_D1FAE5443A715D6F96387473C649F557670B8A92E175272491DFC646754F4A9D_259() const { return ___D1FAE5443A715D6F96387473C649F557670B8A92E175272491DFC646754F4A9D_259; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_D1FAE5443A715D6F96387473C649F557670B8A92E175272491DFC646754F4A9D_259() { return &___D1FAE5443A715D6F96387473C649F557670B8A92E175272491DFC646754F4A9D_259; } inline void set_D1FAE5443A715D6F96387473C649F557670B8A92E175272491DFC646754F4A9D_259(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___D1FAE5443A715D6F96387473C649F557670B8A92E175272491DFC646754F4A9D_259 = value; } inline static int32_t get_offset_of_D38868B99B6C1AB9F2E65E75D07BA90CAF6DA7F4D74F9142A44413647473B362_260() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___D38868B99B6C1AB9F2E65E75D07BA90CAF6DA7F4D74F9142A44413647473B362_260)); } inline __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E get_D38868B99B6C1AB9F2E65E75D07BA90CAF6DA7F4D74F9142A44413647473B362_260() const { return ___D38868B99B6C1AB9F2E65E75D07BA90CAF6DA7F4D74F9142A44413647473B362_260; } inline __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E * get_address_of_D38868B99B6C1AB9F2E65E75D07BA90CAF6DA7F4D74F9142A44413647473B362_260() { return &___D38868B99B6C1AB9F2E65E75D07BA90CAF6DA7F4D74F9142A44413647473B362_260; } inline void set_D38868B99B6C1AB9F2E65E75D07BA90CAF6DA7F4D74F9142A44413647473B362_260(__StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E value) { ___D38868B99B6C1AB9F2E65E75D07BA90CAF6DA7F4D74F9142A44413647473B362_260 = value; } inline static int32_t get_offset_of_D3ADE9315DD51AE00C4C2D80ED119F3D1B1743E64ADC7FDDDE505286274C877D_261() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___D3ADE9315DD51AE00C4C2D80ED119F3D1B1743E64ADC7FDDDE505286274C877D_261)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_D3ADE9315DD51AE00C4C2D80ED119F3D1B1743E64ADC7FDDDE505286274C877D_261() const { return ___D3ADE9315DD51AE00C4C2D80ED119F3D1B1743E64ADC7FDDDE505286274C877D_261; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_D3ADE9315DD51AE00C4C2D80ED119F3D1B1743E64ADC7FDDDE505286274C877D_261() { return &___D3ADE9315DD51AE00C4C2D80ED119F3D1B1743E64ADC7FDDDE505286274C877D_261; } inline void set_D3ADE9315DD51AE00C4C2D80ED119F3D1B1743E64ADC7FDDDE505286274C877D_261(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___D3ADE9315DD51AE00C4C2D80ED119F3D1B1743E64ADC7FDDDE505286274C877D_261 = value; } inline static int32_t get_offset_of_D6380FB2FF2DD88C9290D88B81E78BCA13AAAB4BE827B103062AFBB1085B0793_262() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___D6380FB2FF2DD88C9290D88B81E78BCA13AAAB4BE827B103062AFBB1085B0793_262)); } inline __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F get_D6380FB2FF2DD88C9290D88B81E78BCA13AAAB4BE827B103062AFBB1085B0793_262() const { return ___D6380FB2FF2DD88C9290D88B81E78BCA13AAAB4BE827B103062AFBB1085B0793_262; } inline __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F * get_address_of_D6380FB2FF2DD88C9290D88B81E78BCA13AAAB4BE827B103062AFBB1085B0793_262() { return &___D6380FB2FF2DD88C9290D88B81E78BCA13AAAB4BE827B103062AFBB1085B0793_262; } inline void set_D6380FB2FF2DD88C9290D88B81E78BCA13AAAB4BE827B103062AFBB1085B0793_262(__StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F value) { ___D6380FB2FF2DD88C9290D88B81E78BCA13AAAB4BE827B103062AFBB1085B0793_262 = value; } inline static int32_t get_offset_of_D916EBA7A5A5D84BB85D26EE65A08CC18219FACEB615519209ABB469C0B35D32_263() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___D916EBA7A5A5D84BB85D26EE65A08CC18219FACEB615519209ABB469C0B35D32_263)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_D916EBA7A5A5D84BB85D26EE65A08CC18219FACEB615519209ABB469C0B35D32_263() const { return ___D916EBA7A5A5D84BB85D26EE65A08CC18219FACEB615519209ABB469C0B35D32_263; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_D916EBA7A5A5D84BB85D26EE65A08CC18219FACEB615519209ABB469C0B35D32_263() { return &___D916EBA7A5A5D84BB85D26EE65A08CC18219FACEB615519209ABB469C0B35D32_263; } inline void set_D916EBA7A5A5D84BB85D26EE65A08CC18219FACEB615519209ABB469C0B35D32_263(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___D916EBA7A5A5D84BB85D26EE65A08CC18219FACEB615519209ABB469C0B35D32_263 = value; } inline static int32_t get_offset_of_D9388FECE7A168D1EFFA85FA9C8DA1AEED48DDCE2E3799E07F41A9B60E389722_264() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___D9388FECE7A168D1EFFA85FA9C8DA1AEED48DDCE2E3799E07F41A9B60E389722_264)); } inline __StaticArrayInitTypeSizeU3D56_tEBF9CCD8C2A1E8B12AE6EDE1B31598793DD01186 get_D9388FECE7A168D1EFFA85FA9C8DA1AEED48DDCE2E3799E07F41A9B60E389722_264() const { return ___D9388FECE7A168D1EFFA85FA9C8DA1AEED48DDCE2E3799E07F41A9B60E389722_264; } inline __StaticArrayInitTypeSizeU3D56_tEBF9CCD8C2A1E8B12AE6EDE1B31598793DD01186 * get_address_of_D9388FECE7A168D1EFFA85FA9C8DA1AEED48DDCE2E3799E07F41A9B60E389722_264() { return &___D9388FECE7A168D1EFFA85FA9C8DA1AEED48DDCE2E3799E07F41A9B60E389722_264; } inline void set_D9388FECE7A168D1EFFA85FA9C8DA1AEED48DDCE2E3799E07F41A9B60E389722_264(__StaticArrayInitTypeSizeU3D56_tEBF9CCD8C2A1E8B12AE6EDE1B31598793DD01186 value) { ___D9388FECE7A168D1EFFA85FA9C8DA1AEED48DDCE2E3799E07F41A9B60E389722_264 = value; } inline static int32_t get_offset_of_DB1CCE19AFD5123D31DCDAC6656A6DB5AF929CA39192511B8C042DD0513E7497_265() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___DB1CCE19AFD5123D31DCDAC6656A6DB5AF929CA39192511B8C042DD0513E7497_265)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_DB1CCE19AFD5123D31DCDAC6656A6DB5AF929CA39192511B8C042DD0513E7497_265() const { return ___DB1CCE19AFD5123D31DCDAC6656A6DB5AF929CA39192511B8C042DD0513E7497_265; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_DB1CCE19AFD5123D31DCDAC6656A6DB5AF929CA39192511B8C042DD0513E7497_265() { return &___DB1CCE19AFD5123D31DCDAC6656A6DB5AF929CA39192511B8C042DD0513E7497_265; } inline void set_DB1CCE19AFD5123D31DCDAC6656A6DB5AF929CA39192511B8C042DD0513E7497_265(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___DB1CCE19AFD5123D31DCDAC6656A6DB5AF929CA39192511B8C042DD0513E7497_265 = value; } inline static int32_t get_offset_of_DC196B5ACC67550E50DDC963D9192AEB816537E6A74CFB7DFE3A0453E5F4FB82_266() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___DC196B5ACC67550E50DDC963D9192AEB816537E6A74CFB7DFE3A0453E5F4FB82_266)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_DC196B5ACC67550E50DDC963D9192AEB816537E6A74CFB7DFE3A0453E5F4FB82_266() const { return ___DC196B5ACC67550E50DDC963D9192AEB816537E6A74CFB7DFE3A0453E5F4FB82_266; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_DC196B5ACC67550E50DDC963D9192AEB816537E6A74CFB7DFE3A0453E5F4FB82_266() { return &___DC196B5ACC67550E50DDC963D9192AEB816537E6A74CFB7DFE3A0453E5F4FB82_266; } inline void set_DC196B5ACC67550E50DDC963D9192AEB816537E6A74CFB7DFE3A0453E5F4FB82_266(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___DC196B5ACC67550E50DDC963D9192AEB816537E6A74CFB7DFE3A0453E5F4FB82_266 = value; } inline static int32_t get_offset_of_DC1CDED6204DF70AC5C64ED2C9958FE75479400FE1E1A80F77C3A5BC6FFAF0A5_267() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___DC1CDED6204DF70AC5C64ED2C9958FE75479400FE1E1A80F77C3A5BC6FFAF0A5_267)); } inline __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 get_DC1CDED6204DF70AC5C64ED2C9958FE75479400FE1E1A80F77C3A5BC6FFAF0A5_267() const { return ___DC1CDED6204DF70AC5C64ED2C9958FE75479400FE1E1A80F77C3A5BC6FFAF0A5_267; } inline __StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 * get_address_of_DC1CDED6204DF70AC5C64ED2C9958FE75479400FE1E1A80F77C3A5BC6FFAF0A5_267() { return &___DC1CDED6204DF70AC5C64ED2C9958FE75479400FE1E1A80F77C3A5BC6FFAF0A5_267; } inline void set_DC1CDED6204DF70AC5C64ED2C9958FE75479400FE1E1A80F77C3A5BC6FFAF0A5_267(__StaticArrayInitTypeSizeU3D24_t2F23740D8943FC7C06AD3DD80B71D65744F140F2 value) { ___DC1CDED6204DF70AC5C64ED2C9958FE75479400FE1E1A80F77C3A5BC6FFAF0A5_267 = value; } inline static int32_t get_offset_of_DD2B2ACED61DA9A12AEE4F581C0D33D6D76A9722CDC6355B23FB5DF6B2032B18_268() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___DD2B2ACED61DA9A12AEE4F581C0D33D6D76A9722CDC6355B23FB5DF6B2032B18_268)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_DD2B2ACED61DA9A12AEE4F581C0D33D6D76A9722CDC6355B23FB5DF6B2032B18_268() const { return ___DD2B2ACED61DA9A12AEE4F581C0D33D6D76A9722CDC6355B23FB5DF6B2032B18_268; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_DD2B2ACED61DA9A12AEE4F581C0D33D6D76A9722CDC6355B23FB5DF6B2032B18_268() { return &___DD2B2ACED61DA9A12AEE4F581C0D33D6D76A9722CDC6355B23FB5DF6B2032B18_268; } inline void set_DD2B2ACED61DA9A12AEE4F581C0D33D6D76A9722CDC6355B23FB5DF6B2032B18_268(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___DD2B2ACED61DA9A12AEE4F581C0D33D6D76A9722CDC6355B23FB5DF6B2032B18_268 = value; } inline static int32_t get_offset_of_DDA4EDB734C11C20B2D8A7BE67E2BB03E2F67B7928B0DAEB15EBF2EDD9A5150B_269() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___DDA4EDB734C11C20B2D8A7BE67E2BB03E2F67B7928B0DAEB15EBF2EDD9A5150B_269)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_DDA4EDB734C11C20B2D8A7BE67E2BB03E2F67B7928B0DAEB15EBF2EDD9A5150B_269() const { return ___DDA4EDB734C11C20B2D8A7BE67E2BB03E2F67B7928B0DAEB15EBF2EDD9A5150B_269; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_DDA4EDB734C11C20B2D8A7BE67E2BB03E2F67B7928B0DAEB15EBF2EDD9A5150B_269() { return &___DDA4EDB734C11C20B2D8A7BE67E2BB03E2F67B7928B0DAEB15EBF2EDD9A5150B_269; } inline void set_DDA4EDB734C11C20B2D8A7BE67E2BB03E2F67B7928B0DAEB15EBF2EDD9A5150B_269(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___DDA4EDB734C11C20B2D8A7BE67E2BB03E2F67B7928B0DAEB15EBF2EDD9A5150B_269 = value; } inline static int32_t get_offset_of_DE422551A0E0EF2710E43824DEFE8B2204F5FB76F83D7A496BA3F8D7D66569EB_270() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___DE422551A0E0EF2710E43824DEFE8B2204F5FB76F83D7A496BA3F8D7D66569EB_270)); } inline int32_t get_DE422551A0E0EF2710E43824DEFE8B2204F5FB76F83D7A496BA3F8D7D66569EB_270() const { return ___DE422551A0E0EF2710E43824DEFE8B2204F5FB76F83D7A496BA3F8D7D66569EB_270; } inline int32_t* get_address_of_DE422551A0E0EF2710E43824DEFE8B2204F5FB76F83D7A496BA3F8D7D66569EB_270() { return &___DE422551A0E0EF2710E43824DEFE8B2204F5FB76F83D7A496BA3F8D7D66569EB_270; } inline void set_DE422551A0E0EF2710E43824DEFE8B2204F5FB76F83D7A496BA3F8D7D66569EB_270(int32_t value) { ___DE422551A0E0EF2710E43824DEFE8B2204F5FB76F83D7A496BA3F8D7D66569EB_270 = value; } inline static int32_t get_offset_of_DE56C9263420A7B28A6286EB62AFBE2C1D5164698C518792FD8CEAAF2CB2CD03_271() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___DE56C9263420A7B28A6286EB62AFBE2C1D5164698C518792FD8CEAAF2CB2CD03_271)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_DE56C9263420A7B28A6286EB62AFBE2C1D5164698C518792FD8CEAAF2CB2CD03_271() const { return ___DE56C9263420A7B28A6286EB62AFBE2C1D5164698C518792FD8CEAAF2CB2CD03_271; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_DE56C9263420A7B28A6286EB62AFBE2C1D5164698C518792FD8CEAAF2CB2CD03_271() { return &___DE56C9263420A7B28A6286EB62AFBE2C1D5164698C518792FD8CEAAF2CB2CD03_271; } inline void set_DE56C9263420A7B28A6286EB62AFBE2C1D5164698C518792FD8CEAAF2CB2CD03_271(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___DE56C9263420A7B28A6286EB62AFBE2C1D5164698C518792FD8CEAAF2CB2CD03_271 = value; } inline static int32_t get_offset_of_DE65050FB26A30C376E77EC7E5BE136721540CCE3760EAA1E14854746CADF7E8_272() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___DE65050FB26A30C376E77EC7E5BE136721540CCE3760EAA1E14854746CADF7E8_272)); } inline __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C get_DE65050FB26A30C376E77EC7E5BE136721540CCE3760EAA1E14854746CADF7E8_272() const { return ___DE65050FB26A30C376E77EC7E5BE136721540CCE3760EAA1E14854746CADF7E8_272; } inline __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C * get_address_of_DE65050FB26A30C376E77EC7E5BE136721540CCE3760EAA1E14854746CADF7E8_272() { return &___DE65050FB26A30C376E77EC7E5BE136721540CCE3760EAA1E14854746CADF7E8_272; } inline void set_DE65050FB26A30C376E77EC7E5BE136721540CCE3760EAA1E14854746CADF7E8_272(__StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C value) { ___DE65050FB26A30C376E77EC7E5BE136721540CCE3760EAA1E14854746CADF7E8_272 = value; } inline static int32_t get_offset_of_DE9FD94010C5C932FEB066B288CE65EBEB81EDE0E87B31B900BF855BFA2A2B5D_273() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___DE9FD94010C5C932FEB066B288CE65EBEB81EDE0E87B31B900BF855BFA2A2B5D_273)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_DE9FD94010C5C932FEB066B288CE65EBEB81EDE0E87B31B900BF855BFA2A2B5D_273() const { return ___DE9FD94010C5C932FEB066B288CE65EBEB81EDE0E87B31B900BF855BFA2A2B5D_273; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_DE9FD94010C5C932FEB066B288CE65EBEB81EDE0E87B31B900BF855BFA2A2B5D_273() { return &___DE9FD94010C5C932FEB066B288CE65EBEB81EDE0E87B31B900BF855BFA2A2B5D_273; } inline void set_DE9FD94010C5C932FEB066B288CE65EBEB81EDE0E87B31B900BF855BFA2A2B5D_273(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___DE9FD94010C5C932FEB066B288CE65EBEB81EDE0E87B31B900BF855BFA2A2B5D_273 = value; } inline static int32_t get_offset_of_E0750D3E8FE41BBC5838F6D34CF434A4C764652CDC4BDC7DE6CE8393DE3C53A8_274() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___E0750D3E8FE41BBC5838F6D34CF434A4C764652CDC4BDC7DE6CE8393DE3C53A8_274)); } inline __StaticArrayInitTypeSizeU3D4096_t194B799136AD31D58B9179637D7756F00A1E35D5 get_E0750D3E8FE41BBC5838F6D34CF434A4C764652CDC4BDC7DE6CE8393DE3C53A8_274() const { return ___E0750D3E8FE41BBC5838F6D34CF434A4C764652CDC4BDC7DE6CE8393DE3C53A8_274; } inline __StaticArrayInitTypeSizeU3D4096_t194B799136AD31D58B9179637D7756F00A1E35D5 * get_address_of_E0750D3E8FE41BBC5838F6D34CF434A4C764652CDC4BDC7DE6CE8393DE3C53A8_274() { return &___E0750D3E8FE41BBC5838F6D34CF434A4C764652CDC4BDC7DE6CE8393DE3C53A8_274; } inline void set_E0750D3E8FE41BBC5838F6D34CF434A4C764652CDC4BDC7DE6CE8393DE3C53A8_274(__StaticArrayInitTypeSizeU3D4096_t194B799136AD31D58B9179637D7756F00A1E35D5 value) { ___E0750D3E8FE41BBC5838F6D34CF434A4C764652CDC4BDC7DE6CE8393DE3C53A8_274 = value; } inline static int32_t get_offset_of_E09120C0E7B92A532558D22D44D52452DFE460D6205D1009963B69AABD0F8185_275() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___E09120C0E7B92A532558D22D44D52452DFE460D6205D1009963B69AABD0F8185_275)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_E09120C0E7B92A532558D22D44D52452DFE460D6205D1009963B69AABD0F8185_275() const { return ___E09120C0E7B92A532558D22D44D52452DFE460D6205D1009963B69AABD0F8185_275; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_E09120C0E7B92A532558D22D44D52452DFE460D6205D1009963B69AABD0F8185_275() { return &___E09120C0E7B92A532558D22D44D52452DFE460D6205D1009963B69AABD0F8185_275; } inline void set_E09120C0E7B92A532558D22D44D52452DFE460D6205D1009963B69AABD0F8185_275(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___E09120C0E7B92A532558D22D44D52452DFE460D6205D1009963B69AABD0F8185_275 = value; } inline static int32_t get_offset_of_E0E3CF58E8EBD3158219B64F434304727B1C71307D99BC27D059966A854CB749_276() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___E0E3CF58E8EBD3158219B64F434304727B1C71307D99BC27D059966A854CB749_276)); } inline int64_t get_E0E3CF58E8EBD3158219B64F434304727B1C71307D99BC27D059966A854CB749_276() const { return ___E0E3CF58E8EBD3158219B64F434304727B1C71307D99BC27D059966A854CB749_276; } inline int64_t* get_address_of_E0E3CF58E8EBD3158219B64F434304727B1C71307D99BC27D059966A854CB749_276() { return &___E0E3CF58E8EBD3158219B64F434304727B1C71307D99BC27D059966A854CB749_276; } inline void set_E0E3CF58E8EBD3158219B64F434304727B1C71307D99BC27D059966A854CB749_276(int64_t value) { ___E0E3CF58E8EBD3158219B64F434304727B1C71307D99BC27D059966A854CB749_276 = value; } inline static int32_t get_offset_of_E27F6E9719BC23F7138A27009F35243C6F94F6530A37FC26DE498AB64784DDDA_277() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___E27F6E9719BC23F7138A27009F35243C6F94F6530A37FC26DE498AB64784DDDA_277)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_E27F6E9719BC23F7138A27009F35243C6F94F6530A37FC26DE498AB64784DDDA_277() const { return ___E27F6E9719BC23F7138A27009F35243C6F94F6530A37FC26DE498AB64784DDDA_277; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_E27F6E9719BC23F7138A27009F35243C6F94F6530A37FC26DE498AB64784DDDA_277() { return &___E27F6E9719BC23F7138A27009F35243C6F94F6530A37FC26DE498AB64784DDDA_277; } inline void set_E27F6E9719BC23F7138A27009F35243C6F94F6530A37FC26DE498AB64784DDDA_277(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___E27F6E9719BC23F7138A27009F35243C6F94F6530A37FC26DE498AB64784DDDA_277 = value; } inline static int32_t get_offset_of_E2D43ACAA664F37C9C7876F34F62AAC2D9B43D18817E629D34861AAB1B13388A_278() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___E2D43ACAA664F37C9C7876F34F62AAC2D9B43D18817E629D34861AAB1B13388A_278)); } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 get_E2D43ACAA664F37C9C7876F34F62AAC2D9B43D18817E629D34861AAB1B13388A_278() const { return ___E2D43ACAA664F37C9C7876F34F62AAC2D9B43D18817E629D34861AAB1B13388A_278; } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 * get_address_of_E2D43ACAA664F37C9C7876F34F62AAC2D9B43D18817E629D34861AAB1B13388A_278() { return &___E2D43ACAA664F37C9C7876F34F62AAC2D9B43D18817E629D34861AAB1B13388A_278; } inline void set_E2D43ACAA664F37C9C7876F34F62AAC2D9B43D18817E629D34861AAB1B13388A_278(__StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 value) { ___E2D43ACAA664F37C9C7876F34F62AAC2D9B43D18817E629D34861AAB1B13388A_278 = value; } inline static int32_t get_offset_of_E3668879E09A70694ED6FEE919E303D7EA1266D783955D4DEEDC99CCC5AA6A8D_279() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___E3668879E09A70694ED6FEE919E303D7EA1266D783955D4DEEDC99CCC5AA6A8D_279)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_E3668879E09A70694ED6FEE919E303D7EA1266D783955D4DEEDC99CCC5AA6A8D_279() const { return ___E3668879E09A70694ED6FEE919E303D7EA1266D783955D4DEEDC99CCC5AA6A8D_279; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_E3668879E09A70694ED6FEE919E303D7EA1266D783955D4DEEDC99CCC5AA6A8D_279() { return &___E3668879E09A70694ED6FEE919E303D7EA1266D783955D4DEEDC99CCC5AA6A8D_279; } inline void set_E3668879E09A70694ED6FEE919E303D7EA1266D783955D4DEEDC99CCC5AA6A8D_279(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___E3668879E09A70694ED6FEE919E303D7EA1266D783955D4DEEDC99CCC5AA6A8D_279 = value; } inline static int32_t get_offset_of_E3B4E767F318263A8E7A64E1D61F6D3368A3B59AF34CBB94E657E7FCC58F5BA5_280() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___E3B4E767F318263A8E7A64E1D61F6D3368A3B59AF34CBB94E657E7FCC58F5BA5_280)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_E3B4E767F318263A8E7A64E1D61F6D3368A3B59AF34CBB94E657E7FCC58F5BA5_280() const { return ___E3B4E767F318263A8E7A64E1D61F6D3368A3B59AF34CBB94E657E7FCC58F5BA5_280; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_E3B4E767F318263A8E7A64E1D61F6D3368A3B59AF34CBB94E657E7FCC58F5BA5_280() { return &___E3B4E767F318263A8E7A64E1D61F6D3368A3B59AF34CBB94E657E7FCC58F5BA5_280; } inline void set_E3B4E767F318263A8E7A64E1D61F6D3368A3B59AF34CBB94E657E7FCC58F5BA5_280(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___E3B4E767F318263A8E7A64E1D61F6D3368A3B59AF34CBB94E657E7FCC58F5BA5_280 = value; } inline static int32_t get_offset_of_E45C3F86EC68FBD407D74FAEC9A50DFBAA5589A6FB63CCC5F7AA901D2ACA48B6_281() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___E45C3F86EC68FBD407D74FAEC9A50DFBAA5589A6FB63CCC5F7AA901D2ACA48B6_281)); } inline __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E get_E45C3F86EC68FBD407D74FAEC9A50DFBAA5589A6FB63CCC5F7AA901D2ACA48B6_281() const { return ___E45C3F86EC68FBD407D74FAEC9A50DFBAA5589A6FB63CCC5F7AA901D2ACA48B6_281; } inline __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E * get_address_of_E45C3F86EC68FBD407D74FAEC9A50DFBAA5589A6FB63CCC5F7AA901D2ACA48B6_281() { return &___E45C3F86EC68FBD407D74FAEC9A50DFBAA5589A6FB63CCC5F7AA901D2ACA48B6_281; } inline void set_E45C3F86EC68FBD407D74FAEC9A50DFBAA5589A6FB63CCC5F7AA901D2ACA48B6_281(__StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E value) { ___E45C3F86EC68FBD407D74FAEC9A50DFBAA5589A6FB63CCC5F7AA901D2ACA48B6_281 = value; } inline static int32_t get_offset_of_E5325952F9FF2214CCE24E320F2BCD6A71C6EB4127F6069352CE065883AE80D0_282() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___E5325952F9FF2214CCE24E320F2BCD6A71C6EB4127F6069352CE065883AE80D0_282)); } inline __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E get_E5325952F9FF2214CCE24E320F2BCD6A71C6EB4127F6069352CE065883AE80D0_282() const { return ___E5325952F9FF2214CCE24E320F2BCD6A71C6EB4127F6069352CE065883AE80D0_282; } inline __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E * get_address_of_E5325952F9FF2214CCE24E320F2BCD6A71C6EB4127F6069352CE065883AE80D0_282() { return &___E5325952F9FF2214CCE24E320F2BCD6A71C6EB4127F6069352CE065883AE80D0_282; } inline void set_E5325952F9FF2214CCE24E320F2BCD6A71C6EB4127F6069352CE065883AE80D0_282(__StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E value) { ___E5325952F9FF2214CCE24E320F2BCD6A71C6EB4127F6069352CE065883AE80D0_282 = value; } inline static int32_t get_offset_of_E75B7154F674F25D54E89CB7D91F35CC111C8A67EE585938E07D12CB4761637F_283() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___E75B7154F674F25D54E89CB7D91F35CC111C8A67EE585938E07D12CB4761637F_283)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_E75B7154F674F25D54E89CB7D91F35CC111C8A67EE585938E07D12CB4761637F_283() const { return ___E75B7154F674F25D54E89CB7D91F35CC111C8A67EE585938E07D12CB4761637F_283; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_E75B7154F674F25D54E89CB7D91F35CC111C8A67EE585938E07D12CB4761637F_283() { return &___E75B7154F674F25D54E89CB7D91F35CC111C8A67EE585938E07D12CB4761637F_283; } inline void set_E75B7154F674F25D54E89CB7D91F35CC111C8A67EE585938E07D12CB4761637F_283(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___E75B7154F674F25D54E89CB7D91F35CC111C8A67EE585938E07D12CB4761637F_283 = value; } inline static int32_t get_offset_of_E7C6C4296C6C2B00D1062AA69054CAB58A57C3ACCE5ECFA4084E7E94CF805F87_284() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___E7C6C4296C6C2B00D1062AA69054CAB58A57C3ACCE5ECFA4084E7E94CF805F87_284)); } inline __StaticArrayInitTypeSizeU3D28_tB9DE54DF41ABC27805509271A10177513906BF30 get_E7C6C4296C6C2B00D1062AA69054CAB58A57C3ACCE5ECFA4084E7E94CF805F87_284() const { return ___E7C6C4296C6C2B00D1062AA69054CAB58A57C3ACCE5ECFA4084E7E94CF805F87_284; } inline __StaticArrayInitTypeSizeU3D28_tB9DE54DF41ABC27805509271A10177513906BF30 * get_address_of_E7C6C4296C6C2B00D1062AA69054CAB58A57C3ACCE5ECFA4084E7E94CF805F87_284() { return &___E7C6C4296C6C2B00D1062AA69054CAB58A57C3ACCE5ECFA4084E7E94CF805F87_284; } inline void set_E7C6C4296C6C2B00D1062AA69054CAB58A57C3ACCE5ECFA4084E7E94CF805F87_284(__StaticArrayInitTypeSizeU3D28_tB9DE54DF41ABC27805509271A10177513906BF30 value) { ___E7C6C4296C6C2B00D1062AA69054CAB58A57C3ACCE5ECFA4084E7E94CF805F87_284 = value; } inline static int32_t get_offset_of_E87A3B2C4C5D7247B7E149126C3503D3AE2878A02155EA6153E057FE35D9656C_285() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___E87A3B2C4C5D7247B7E149126C3503D3AE2878A02155EA6153E057FE35D9656C_285)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_E87A3B2C4C5D7247B7E149126C3503D3AE2878A02155EA6153E057FE35D9656C_285() const { return ___E87A3B2C4C5D7247B7E149126C3503D3AE2878A02155EA6153E057FE35D9656C_285; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_E87A3B2C4C5D7247B7E149126C3503D3AE2878A02155EA6153E057FE35D9656C_285() { return &___E87A3B2C4C5D7247B7E149126C3503D3AE2878A02155EA6153E057FE35D9656C_285; } inline void set_E87A3B2C4C5D7247B7E149126C3503D3AE2878A02155EA6153E057FE35D9656C_285(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___E87A3B2C4C5D7247B7E149126C3503D3AE2878A02155EA6153E057FE35D9656C_285 = value; } inline static int32_t get_offset_of_E8A5F21A65A81B3BA202AE5DC3791797B0E7271A4923BCD6B124CA062D886C5A_286() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___E8A5F21A65A81B3BA202AE5DC3791797B0E7271A4923BCD6B124CA062D886C5A_286)); } inline __StaticArrayInitTypeSizeU3D5_t4860E7B6EA3ACC966F04D8598CE9F606264B9EE9 get_E8A5F21A65A81B3BA202AE5DC3791797B0E7271A4923BCD6B124CA062D886C5A_286() const { return ___E8A5F21A65A81B3BA202AE5DC3791797B0E7271A4923BCD6B124CA062D886C5A_286; } inline __StaticArrayInitTypeSizeU3D5_t4860E7B6EA3ACC966F04D8598CE9F606264B9EE9 * get_address_of_E8A5F21A65A81B3BA202AE5DC3791797B0E7271A4923BCD6B124CA062D886C5A_286() { return &___E8A5F21A65A81B3BA202AE5DC3791797B0E7271A4923BCD6B124CA062D886C5A_286; } inline void set_E8A5F21A65A81B3BA202AE5DC3791797B0E7271A4923BCD6B124CA062D886C5A_286(__StaticArrayInitTypeSizeU3D5_t4860E7B6EA3ACC966F04D8598CE9F606264B9EE9 value) { ___E8A5F21A65A81B3BA202AE5DC3791797B0E7271A4923BCD6B124CA062D886C5A_286 = value; } inline static int32_t get_offset_of_E8D46701532BBEB9F3FF8A63C0D74D8C417C782DEE2C085A6D940A8B5B38DA18_287() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___E8D46701532BBEB9F3FF8A63C0D74D8C417C782DEE2C085A6D940A8B5B38DA18_287)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_E8D46701532BBEB9F3FF8A63C0D74D8C417C782DEE2C085A6D940A8B5B38DA18_287() const { return ___E8D46701532BBEB9F3FF8A63C0D74D8C417C782DEE2C085A6D940A8B5B38DA18_287; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_E8D46701532BBEB9F3FF8A63C0D74D8C417C782DEE2C085A6D940A8B5B38DA18_287() { return &___E8D46701532BBEB9F3FF8A63C0D74D8C417C782DEE2C085A6D940A8B5B38DA18_287; } inline void set_E8D46701532BBEB9F3FF8A63C0D74D8C417C782DEE2C085A6D940A8B5B38DA18_287(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___E8D46701532BBEB9F3FF8A63C0D74D8C417C782DEE2C085A6D940A8B5B38DA18_287 = value; } inline static int32_t get_offset_of_EA648521F3A332BAB2FB6494AA2262B4C66E9EC54FBC6380D1BEADFBA8F7D9CD_288() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___EA648521F3A332BAB2FB6494AA2262B4C66E9EC54FBC6380D1BEADFBA8F7D9CD_288)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_EA648521F3A332BAB2FB6494AA2262B4C66E9EC54FBC6380D1BEADFBA8F7D9CD_288() const { return ___EA648521F3A332BAB2FB6494AA2262B4C66E9EC54FBC6380D1BEADFBA8F7D9CD_288; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_EA648521F3A332BAB2FB6494AA2262B4C66E9EC54FBC6380D1BEADFBA8F7D9CD_288() { return &___EA648521F3A332BAB2FB6494AA2262B4C66E9EC54FBC6380D1BEADFBA8F7D9CD_288; } inline void set_EA648521F3A332BAB2FB6494AA2262B4C66E9EC54FBC6380D1BEADFBA8F7D9CD_288(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___EA648521F3A332BAB2FB6494AA2262B4C66E9EC54FBC6380D1BEADFBA8F7D9CD_288 = value; } inline static int32_t get_offset_of_EB6B70CC36DAA15B37C45E6D0AE3CB7E8A9B1BA69E6BC44762F886192C725A5A_289() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___EB6B70CC36DAA15B37C45E6D0AE3CB7E8A9B1BA69E6BC44762F886192C725A5A_289)); } inline int32_t get_EB6B70CC36DAA15B37C45E6D0AE3CB7E8A9B1BA69E6BC44762F886192C725A5A_289() const { return ___EB6B70CC36DAA15B37C45E6D0AE3CB7E8A9B1BA69E6BC44762F886192C725A5A_289; } inline int32_t* get_address_of_EB6B70CC36DAA15B37C45E6D0AE3CB7E8A9B1BA69E6BC44762F886192C725A5A_289() { return &___EB6B70CC36DAA15B37C45E6D0AE3CB7E8A9B1BA69E6BC44762F886192C725A5A_289; } inline void set_EB6B70CC36DAA15B37C45E6D0AE3CB7E8A9B1BA69E6BC44762F886192C725A5A_289(int32_t value) { ___EB6B70CC36DAA15B37C45E6D0AE3CB7E8A9B1BA69E6BC44762F886192C725A5A_289 = value; } inline static int32_t get_offset_of_EC103A6146A987638687685583404F2C172DE3138C47B820021673AD5DA00660_290() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___EC103A6146A987638687685583404F2C172DE3138C47B820021673AD5DA00660_290)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_EC103A6146A987638687685583404F2C172DE3138C47B820021673AD5DA00660_290() const { return ___EC103A6146A987638687685583404F2C172DE3138C47B820021673AD5DA00660_290; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_EC103A6146A987638687685583404F2C172DE3138C47B820021673AD5DA00660_290() { return &___EC103A6146A987638687685583404F2C172DE3138C47B820021673AD5DA00660_290; } inline void set_EC103A6146A987638687685583404F2C172DE3138C47B820021673AD5DA00660_290(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___EC103A6146A987638687685583404F2C172DE3138C47B820021673AD5DA00660_290 = value; } inline static int32_t get_offset_of_ECA151F23D399F9FE976255B143D0691D0BE043E033B0E2814C0A547336D6545_291() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___ECA151F23D399F9FE976255B143D0691D0BE043E033B0E2814C0A547336D6545_291)); } inline __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F get_ECA151F23D399F9FE976255B143D0691D0BE043E033B0E2814C0A547336D6545_291() const { return ___ECA151F23D399F9FE976255B143D0691D0BE043E033B0E2814C0A547336D6545_291; } inline __StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F * get_address_of_ECA151F23D399F9FE976255B143D0691D0BE043E033B0E2814C0A547336D6545_291() { return &___ECA151F23D399F9FE976255B143D0691D0BE043E033B0E2814C0A547336D6545_291; } inline void set_ECA151F23D399F9FE976255B143D0691D0BE043E033B0E2814C0A547336D6545_291(__StaticArrayInitTypeSizeU3D40_tEADC5D82E308542CB0A95168FC156FE53D85DB4F value) { ___ECA151F23D399F9FE976255B143D0691D0BE043E033B0E2814C0A547336D6545_291 = value; } inline static int32_t get_offset_of_EE83363C7267157642FFDAC294D9028B3BCD964F62596706A5A94C92C8FCDE6C_292() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___EE83363C7267157642FFDAC294D9028B3BCD964F62596706A5A94C92C8FCDE6C_292)); } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 get_EE83363C7267157642FFDAC294D9028B3BCD964F62596706A5A94C92C8FCDE6C_292() const { return ___EE83363C7267157642FFDAC294D9028B3BCD964F62596706A5A94C92C8FCDE6C_292; } inline __StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 * get_address_of_EE83363C7267157642FFDAC294D9028B3BCD964F62596706A5A94C92C8FCDE6C_292() { return &___EE83363C7267157642FFDAC294D9028B3BCD964F62596706A5A94C92C8FCDE6C_292; } inline void set_EE83363C7267157642FFDAC294D9028B3BCD964F62596706A5A94C92C8FCDE6C_292(__StaticArrayInitTypeSizeU3D1024_tBE4C179BB086BC42B30E7BE339E60017D8093665 value) { ___EE83363C7267157642FFDAC294D9028B3BCD964F62596706A5A94C92C8FCDE6C_292 = value; } inline static int32_t get_offset_of_EF39C5A882F9477B2A250BA257247825CEB07FC53C3C984385F2C2E5F8222431_293() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___EF39C5A882F9477B2A250BA257247825CEB07FC53C3C984385F2C2E5F8222431_293)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_EF39C5A882F9477B2A250BA257247825CEB07FC53C3C984385F2C2E5F8222431_293() const { return ___EF39C5A882F9477B2A250BA257247825CEB07FC53C3C984385F2C2E5F8222431_293; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_EF39C5A882F9477B2A250BA257247825CEB07FC53C3C984385F2C2E5F8222431_293() { return &___EF39C5A882F9477B2A250BA257247825CEB07FC53C3C984385F2C2E5F8222431_293; } inline void set_EF39C5A882F9477B2A250BA257247825CEB07FC53C3C984385F2C2E5F8222431_293(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___EF39C5A882F9477B2A250BA257247825CEB07FC53C3C984385F2C2E5F8222431_293 = value; } inline static int32_t get_offset_of_EF7F3D1F9F5FC7985E4AE3D48BF986867BA544C1D2FEA6A7745FEA4A2FCAB381_294() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___EF7F3D1F9F5FC7985E4AE3D48BF986867BA544C1D2FEA6A7745FEA4A2FCAB381_294)); } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 get_EF7F3D1F9F5FC7985E4AE3D48BF986867BA544C1D2FEA6A7745FEA4A2FCAB381_294() const { return ___EF7F3D1F9F5FC7985E4AE3D48BF986867BA544C1D2FEA6A7745FEA4A2FCAB381_294; } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 * get_address_of_EF7F3D1F9F5FC7985E4AE3D48BF986867BA544C1D2FEA6A7745FEA4A2FCAB381_294() { return &___EF7F3D1F9F5FC7985E4AE3D48BF986867BA544C1D2FEA6A7745FEA4A2FCAB381_294; } inline void set_EF7F3D1F9F5FC7985E4AE3D48BF986867BA544C1D2FEA6A7745FEA4A2FCAB381_294(__StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 value) { ___EF7F3D1F9F5FC7985E4AE3D48BF986867BA544C1D2FEA6A7745FEA4A2FCAB381_294 = value; } inline static int32_t get_offset_of_F2CD85BDEF1E84E95EA92E2B686CEEC9FC518118A4342FAB46BECECE253D71F4_295() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___F2CD85BDEF1E84E95EA92E2B686CEEC9FC518118A4342FAB46BECECE253D71F4_295)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_F2CD85BDEF1E84E95EA92E2B686CEEC9FC518118A4342FAB46BECECE253D71F4_295() const { return ___F2CD85BDEF1E84E95EA92E2B686CEEC9FC518118A4342FAB46BECECE253D71F4_295; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_F2CD85BDEF1E84E95EA92E2B686CEEC9FC518118A4342FAB46BECECE253D71F4_295() { return &___F2CD85BDEF1E84E95EA92E2B686CEEC9FC518118A4342FAB46BECECE253D71F4_295; } inline void set_F2CD85BDEF1E84E95EA92E2B686CEEC9FC518118A4342FAB46BECECE253D71F4_295(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___F2CD85BDEF1E84E95EA92E2B686CEEC9FC518118A4342FAB46BECECE253D71F4_295 = value; } inline static int32_t get_offset_of_F30ADE318602BE9DC38E68CA7E1FE366A1F173330197F71AFD9D555F765D47A7_296() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___F30ADE318602BE9DC38E68CA7E1FE366A1F173330197F71AFD9D555F765D47A7_296)); } inline __StaticArrayInitTypeSizeU3D404_t02BA5FC25140F7864B3B45D3DD9D4D8B9E93A333 get_F30ADE318602BE9DC38E68CA7E1FE366A1F173330197F71AFD9D555F765D47A7_296() const { return ___F30ADE318602BE9DC38E68CA7E1FE366A1F173330197F71AFD9D555F765D47A7_296; } inline __StaticArrayInitTypeSizeU3D404_t02BA5FC25140F7864B3B45D3DD9D4D8B9E93A333 * get_address_of_F30ADE318602BE9DC38E68CA7E1FE366A1F173330197F71AFD9D555F765D47A7_296() { return &___F30ADE318602BE9DC38E68CA7E1FE366A1F173330197F71AFD9D555F765D47A7_296; } inline void set_F30ADE318602BE9DC38E68CA7E1FE366A1F173330197F71AFD9D555F765D47A7_296(__StaticArrayInitTypeSizeU3D404_t02BA5FC25140F7864B3B45D3DD9D4D8B9E93A333 value) { ___F30ADE318602BE9DC38E68CA7E1FE366A1F173330197F71AFD9D555F765D47A7_296 = value; } inline static int32_t get_offset_of_F509AE84659919EA56BFF8D829ED41E971314D3D46ED9B0F8F5670D72EB1688B_297() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___F509AE84659919EA56BFF8D829ED41E971314D3D46ED9B0F8F5670D72EB1688B_297)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_F509AE84659919EA56BFF8D829ED41E971314D3D46ED9B0F8F5670D72EB1688B_297() const { return ___F509AE84659919EA56BFF8D829ED41E971314D3D46ED9B0F8F5670D72EB1688B_297; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_F509AE84659919EA56BFF8D829ED41E971314D3D46ED9B0F8F5670D72EB1688B_297() { return &___F509AE84659919EA56BFF8D829ED41E971314D3D46ED9B0F8F5670D72EB1688B_297; } inline void set_F509AE84659919EA56BFF8D829ED41E971314D3D46ED9B0F8F5670D72EB1688B_297(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___F509AE84659919EA56BFF8D829ED41E971314D3D46ED9B0F8F5670D72EB1688B_297 = value; } inline static int32_t get_offset_of_F8D7861760C88CC514F66095AF0AED47ECBA063ADB65F47125ED07BCC2CF9842_298() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___F8D7861760C88CC514F66095AF0AED47ECBA063ADB65F47125ED07BCC2CF9842_298)); } inline __StaticArrayInitTypeSizeU3D116_t9020B92E8453BBAFE2519A469C0893F630E8D2C9 get_F8D7861760C88CC514F66095AF0AED47ECBA063ADB65F47125ED07BCC2CF9842_298() const { return ___F8D7861760C88CC514F66095AF0AED47ECBA063ADB65F47125ED07BCC2CF9842_298; } inline __StaticArrayInitTypeSizeU3D116_t9020B92E8453BBAFE2519A469C0893F630E8D2C9 * get_address_of_F8D7861760C88CC514F66095AF0AED47ECBA063ADB65F47125ED07BCC2CF9842_298() { return &___F8D7861760C88CC514F66095AF0AED47ECBA063ADB65F47125ED07BCC2CF9842_298; } inline void set_F8D7861760C88CC514F66095AF0AED47ECBA063ADB65F47125ED07BCC2CF9842_298(__StaticArrayInitTypeSizeU3D116_t9020B92E8453BBAFE2519A469C0893F630E8D2C9 value) { ___F8D7861760C88CC514F66095AF0AED47ECBA063ADB65F47125ED07BCC2CF9842_298 = value; } inline static int32_t get_offset_of_F8E6964ADFFC257265537256D21E93496A17B9271DC5D64F40869EEEAAFF6FBB_299() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___F8E6964ADFFC257265537256D21E93496A17B9271DC5D64F40869EEEAAFF6FBB_299)); } inline __StaticArrayInitTypeSizeU3D192_tC7D23024B2AD7A4D301599706A49B8C87DAA353D get_F8E6964ADFFC257265537256D21E93496A17B9271DC5D64F40869EEEAAFF6FBB_299() const { return ___F8E6964ADFFC257265537256D21E93496A17B9271DC5D64F40869EEEAAFF6FBB_299; } inline __StaticArrayInitTypeSizeU3D192_tC7D23024B2AD7A4D301599706A49B8C87DAA353D * get_address_of_F8E6964ADFFC257265537256D21E93496A17B9271DC5D64F40869EEEAAFF6FBB_299() { return &___F8E6964ADFFC257265537256D21E93496A17B9271DC5D64F40869EEEAAFF6FBB_299; } inline void set_F8E6964ADFFC257265537256D21E93496A17B9271DC5D64F40869EEEAAFF6FBB_299(__StaticArrayInitTypeSizeU3D192_tC7D23024B2AD7A4D301599706A49B8C87DAA353D value) { ___F8E6964ADFFC257265537256D21E93496A17B9271DC5D64F40869EEEAAFF6FBB_299 = value; } inline static int32_t get_offset_of_F915BC5619C5EB2C4D315B5409BC531F55FA3E3A6167F57B7A4F5F7F9C5F022B_300() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___F915BC5619C5EB2C4D315B5409BC531F55FA3E3A6167F57B7A4F5F7F9C5F022B_300)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_F915BC5619C5EB2C4D315B5409BC531F55FA3E3A6167F57B7A4F5F7F9C5F022B_300() const { return ___F915BC5619C5EB2C4D315B5409BC531F55FA3E3A6167F57B7A4F5F7F9C5F022B_300; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_F915BC5619C5EB2C4D315B5409BC531F55FA3E3A6167F57B7A4F5F7F9C5F022B_300() { return &___F915BC5619C5EB2C4D315B5409BC531F55FA3E3A6167F57B7A4F5F7F9C5F022B_300; } inline void set_F915BC5619C5EB2C4D315B5409BC531F55FA3E3A6167F57B7A4F5F7F9C5F022B_300(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___F915BC5619C5EB2C4D315B5409BC531F55FA3E3A6167F57B7A4F5F7F9C5F022B_300 = value; } inline static int32_t get_offset_of_F93A6E9A709B14FD05706C119D157EEE96F24DE3FDFA34F6D0AFF9537DE8ACC0_301() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___F93A6E9A709B14FD05706C119D157EEE96F24DE3FDFA34F6D0AFF9537DE8ACC0_301)); } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C get_F93A6E9A709B14FD05706C119D157EEE96F24DE3FDFA34F6D0AFF9537DE8ACC0_301() const { return ___F93A6E9A709B14FD05706C119D157EEE96F24DE3FDFA34F6D0AFF9537DE8ACC0_301; } inline __StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C * get_address_of_F93A6E9A709B14FD05706C119D157EEE96F24DE3FDFA34F6D0AFF9537DE8ACC0_301() { return &___F93A6E9A709B14FD05706C119D157EEE96F24DE3FDFA34F6D0AFF9537DE8ACC0_301; } inline void set_F93A6E9A709B14FD05706C119D157EEE96F24DE3FDFA34F6D0AFF9537DE8ACC0_301(__StaticArrayInitTypeSizeU3D64_t793535D031B918C2C510207830D7BE6CAC6F369C value) { ___F93A6E9A709B14FD05706C119D157EEE96F24DE3FDFA34F6D0AFF9537DE8ACC0_301 = value; } inline static int32_t get_offset_of_FA1AD270B23BA640E88EE7F51CC9C0C1A6C6BB1F2B9025682A7D30FB3BDA64F0_302() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___FA1AD270B23BA640E88EE7F51CC9C0C1A6C6BB1F2B9025682A7D30FB3BDA64F0_302)); } inline __StaticArrayInitTypeSizeU3D72_t2005207C3F6F7C1227A5084885E3320B238A2489 get_FA1AD270B23BA640E88EE7F51CC9C0C1A6C6BB1F2B9025682A7D30FB3BDA64F0_302() const { return ___FA1AD270B23BA640E88EE7F51CC9C0C1A6C6BB1F2B9025682A7D30FB3BDA64F0_302; } inline __StaticArrayInitTypeSizeU3D72_t2005207C3F6F7C1227A5084885E3320B238A2489 * get_address_of_FA1AD270B23BA640E88EE7F51CC9C0C1A6C6BB1F2B9025682A7D30FB3BDA64F0_302() { return &___FA1AD270B23BA640E88EE7F51CC9C0C1A6C6BB1F2B9025682A7D30FB3BDA64F0_302; } inline void set_FA1AD270B23BA640E88EE7F51CC9C0C1A6C6BB1F2B9025682A7D30FB3BDA64F0_302(__StaticArrayInitTypeSizeU3D72_t2005207C3F6F7C1227A5084885E3320B238A2489 value) { ___FA1AD270B23BA640E88EE7F51CC9C0C1A6C6BB1F2B9025682A7D30FB3BDA64F0_302 = value; } inline static int32_t get_offset_of_FA624E5847BD2E5A00CCA1B3515D315FA5C3450C3E832077935CEBA18E9F5571_303() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___FA624E5847BD2E5A00CCA1B3515D315FA5C3450C3E832077935CEBA18E9F5571_303)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_FA624E5847BD2E5A00CCA1B3515D315FA5C3450C3E832077935CEBA18E9F5571_303() const { return ___FA624E5847BD2E5A00CCA1B3515D315FA5C3450C3E832077935CEBA18E9F5571_303; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_FA624E5847BD2E5A00CCA1B3515D315FA5C3450C3E832077935CEBA18E9F5571_303() { return &___FA624E5847BD2E5A00CCA1B3515D315FA5C3450C3E832077935CEBA18E9F5571_303; } inline void set_FA624E5847BD2E5A00CCA1B3515D315FA5C3450C3E832077935CEBA18E9F5571_303(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___FA624E5847BD2E5A00CCA1B3515D315FA5C3450C3E832077935CEBA18E9F5571_303 = value; } inline static int32_t get_offset_of_FA902FDBDFBCC8763875D512059F3073294FE8C37A17ED9F7AF4D83791E194BF_304() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___FA902FDBDFBCC8763875D512059F3073294FE8C37A17ED9F7AF4D83791E194BF_304)); } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F get_FA902FDBDFBCC8763875D512059F3073294FE8C37A17ED9F7AF4D83791E194BF_304() const { return ___FA902FDBDFBCC8763875D512059F3073294FE8C37A17ED9F7AF4D83791E194BF_304; } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F * get_address_of_FA902FDBDFBCC8763875D512059F3073294FE8C37A17ED9F7AF4D83791E194BF_304() { return &___FA902FDBDFBCC8763875D512059F3073294FE8C37A17ED9F7AF4D83791E194BF_304; } inline void set_FA902FDBDFBCC8763875D512059F3073294FE8C37A17ED9F7AF4D83791E194BF_304(__StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F value) { ___FA902FDBDFBCC8763875D512059F3073294FE8C37A17ED9F7AF4D83791E194BF_304 = value; } inline static int32_t get_offset_of_FA9320F15F87607CD9E1033E6DD907B11EEDF491D7EBBFD29EC8D07E12A822CD_305() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___FA9320F15F87607CD9E1033E6DD907B11EEDF491D7EBBFD29EC8D07E12A822CD_305)); } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 get_FA9320F15F87607CD9E1033E6DD907B11EEDF491D7EBBFD29EC8D07E12A822CD_305() const { return ___FA9320F15F87607CD9E1033E6DD907B11EEDF491D7EBBFD29EC8D07E12A822CD_305; } inline __StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 * get_address_of_FA9320F15F87607CD9E1033E6DD907B11EEDF491D7EBBFD29EC8D07E12A822CD_305() { return &___FA9320F15F87607CD9E1033E6DD907B11EEDF491D7EBBFD29EC8D07E12A822CD_305; } inline void set_FA9320F15F87607CD9E1033E6DD907B11EEDF491D7EBBFD29EC8D07E12A822CD_305(__StaticArrayInitTypeSizeU3D256_t54C7F26E5B56B7887AE4586ABF35C9B1633A3449 value) { ___FA9320F15F87607CD9E1033E6DD907B11EEDF491D7EBBFD29EC8D07E12A822CD_305 = value; } inline static int32_t get_offset_of_FAA254BE6E65E3D60D934C74D9863DEDABBBB96FD00229D46B6AE6D108392089_306() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___FAA254BE6E65E3D60D934C74D9863DEDABBBB96FD00229D46B6AE6D108392089_306)); } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 get_FAA254BE6E65E3D60D934C74D9863DEDABBBB96FD00229D46B6AE6D108392089_306() const { return ___FAA254BE6E65E3D60D934C74D9863DEDABBBB96FD00229D46B6AE6D108392089_306; } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 * get_address_of_FAA254BE6E65E3D60D934C74D9863DEDABBBB96FD00229D46B6AE6D108392089_306() { return &___FAA254BE6E65E3D60D934C74D9863DEDABBBB96FD00229D46B6AE6D108392089_306; } inline void set_FAA254BE6E65E3D60D934C74D9863DEDABBBB96FD00229D46B6AE6D108392089_306(__StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 value) { ___FAA254BE6E65E3D60D934C74D9863DEDABBBB96FD00229D46B6AE6D108392089_306 = value; } inline static int32_t get_offset_of_FB7A6532989D730F69E4757D690D25A43E71041FCFF7355747E274F956BB03E9_307() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___FB7A6532989D730F69E4757D690D25A43E71041FCFF7355747E274F956BB03E9_307)); } inline __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E get_FB7A6532989D730F69E4757D690D25A43E71041FCFF7355747E274F956BB03E9_307() const { return ___FB7A6532989D730F69E4757D690D25A43E71041FCFF7355747E274F956BB03E9_307; } inline __StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E * get_address_of_FB7A6532989D730F69E4757D690D25A43E71041FCFF7355747E274F956BB03E9_307() { return &___FB7A6532989D730F69E4757D690D25A43E71041FCFF7355747E274F956BB03E9_307; } inline void set_FB7A6532989D730F69E4757D690D25A43E71041FCFF7355747E274F956BB03E9_307(__StaticArrayInitTypeSizeU3D2048_t466737CD17660C48F81FB82F5CE837C6303A316E value) { ___FB7A6532989D730F69E4757D690D25A43E71041FCFF7355747E274F956BB03E9_307 = value; } inline static int32_t get_offset_of_FC03ECB1D62767A5B31230F548FA4D4C02F01E3DA8CA1FC66C7C332EA16BF206_308() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___FC03ECB1D62767A5B31230F548FA4D4C02F01E3DA8CA1FC66C7C332EA16BF206_308)); } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 get_FC03ECB1D62767A5B31230F548FA4D4C02F01E3DA8CA1FC66C7C332EA16BF206_308() const { return ___FC03ECB1D62767A5B31230F548FA4D4C02F01E3DA8CA1FC66C7C332EA16BF206_308; } inline __StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 * get_address_of_FC03ECB1D62767A5B31230F548FA4D4C02F01E3DA8CA1FC66C7C332EA16BF206_308() { return &___FC03ECB1D62767A5B31230F548FA4D4C02F01E3DA8CA1FC66C7C332EA16BF206_308; } inline void set_FC03ECB1D62767A5B31230F548FA4D4C02F01E3DA8CA1FC66C7C332EA16BF206_308(__StaticArrayInitTypeSizeU3D12_tBA6527015605C05FA449470204ADB7A684F0A794 value) { ___FC03ECB1D62767A5B31230F548FA4D4C02F01E3DA8CA1FC66C7C332EA16BF206_308 = value; } inline static int32_t get_offset_of_FC216F5C5AE2947D800794ECD5F752EE8381073C2E5D0D095FDA040F541702F3_309() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___FC216F5C5AE2947D800794ECD5F752EE8381073C2E5D0D095FDA040F541702F3_309)); } inline __StaticArrayInitTypeSizeU3D120_tD78937C26C99B5FDF514E7F2EB4F8F2367B4C05A get_FC216F5C5AE2947D800794ECD5F752EE8381073C2E5D0D095FDA040F541702F3_309() const { return ___FC216F5C5AE2947D800794ECD5F752EE8381073C2E5D0D095FDA040F541702F3_309; } inline __StaticArrayInitTypeSizeU3D120_tD78937C26C99B5FDF514E7F2EB4F8F2367B4C05A * get_address_of_FC216F5C5AE2947D800794ECD5F752EE8381073C2E5D0D095FDA040F541702F3_309() { return &___FC216F5C5AE2947D800794ECD5F752EE8381073C2E5D0D095FDA040F541702F3_309; } inline void set_FC216F5C5AE2947D800794ECD5F752EE8381073C2E5D0D095FDA040F541702F3_309(__StaticArrayInitTypeSizeU3D120_tD78937C26C99B5FDF514E7F2EB4F8F2367B4C05A value) { ___FC216F5C5AE2947D800794ECD5F752EE8381073C2E5D0D095FDA040F541702F3_309 = value; } inline static int32_t get_offset_of_FD85B0A9251A04B1D271AF14FD041B4606FA95DDB116F92CB14470653A62AD19_310() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___FD85B0A9251A04B1D271AF14FD041B4606FA95DDB116F92CB14470653A62AD19_310)); } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 get_FD85B0A9251A04B1D271AF14FD041B4606FA95DDB116F92CB14470653A62AD19_310() const { return ___FD85B0A9251A04B1D271AF14FD041B4606FA95DDB116F92CB14470653A62AD19_310; } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 * get_address_of_FD85B0A9251A04B1D271AF14FD041B4606FA95DDB116F92CB14470653A62AD19_310() { return &___FD85B0A9251A04B1D271AF14FD041B4606FA95DDB116F92CB14470653A62AD19_310; } inline void set_FD85B0A9251A04B1D271AF14FD041B4606FA95DDB116F92CB14470653A62AD19_310(__StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 value) { ___FD85B0A9251A04B1D271AF14FD041B4606FA95DDB116F92CB14470653A62AD19_310 = value; } inline static int32_t get_offset_of_FF1F6EE5D67458CFAC950F62E93042E21FCB867E2234DCC8721801231064AD40_311() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___FF1F6EE5D67458CFAC950F62E93042E21FCB867E2234DCC8721801231064AD40_311)); } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F get_FF1F6EE5D67458CFAC950F62E93042E21FCB867E2234DCC8721801231064AD40_311() const { return ___FF1F6EE5D67458CFAC950F62E93042E21FCB867E2234DCC8721801231064AD40_311; } inline __StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F * get_address_of_FF1F6EE5D67458CFAC950F62E93042E21FCB867E2234DCC8721801231064AD40_311() { return &___FF1F6EE5D67458CFAC950F62E93042E21FCB867E2234DCC8721801231064AD40_311; } inline void set_FF1F6EE5D67458CFAC950F62E93042E21FCB867E2234DCC8721801231064AD40_311(__StaticArrayInitTypeSizeU3D32_t1DFB229ADDC86DD5A295F9C768E8E5D0DF92913F value) { ___FF1F6EE5D67458CFAC950F62E93042E21FCB867E2234DCC8721801231064AD40_311 = value; } inline static int32_t get_offset_of_FF4D5896EDB9E12991ECB7FA7807EEB0F7ACD30F57ECB63DD9943F5245752A0F_312() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___FF4D5896EDB9E12991ECB7FA7807EEB0F7ACD30F57ECB63DD9943F5245752A0F_312)); } inline __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C get_FF4D5896EDB9E12991ECB7FA7807EEB0F7ACD30F57ECB63DD9943F5245752A0F_312() const { return ___FF4D5896EDB9E12991ECB7FA7807EEB0F7ACD30F57ECB63DD9943F5245752A0F_312; } inline __StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C * get_address_of_FF4D5896EDB9E12991ECB7FA7807EEB0F7ACD30F57ECB63DD9943F5245752A0F_312() { return &___FF4D5896EDB9E12991ECB7FA7807EEB0F7ACD30F57ECB63DD9943F5245752A0F_312; } inline void set_FF4D5896EDB9E12991ECB7FA7807EEB0F7ACD30F57ECB63DD9943F5245752A0F_312(__StaticArrayInitTypeSizeU3D128_tA0867200945A1690520537DFA2DD9F2DC8E1209C value) { ___FF4D5896EDB9E12991ECB7FA7807EEB0F7ACD30F57ECB63DD9943F5245752A0F_312 = value; } inline static int32_t get_offset_of_FFC55B79B9BE7817954A4672A75C8603D1D1FE85A61786D63BD3B0AA239FFA58_313() { return static_cast(offsetof(U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528_StaticFields, ___FFC55B79B9BE7817954A4672A75C8603D1D1FE85A61786D63BD3B0AA239FFA58_313)); } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 get_FFC55B79B9BE7817954A4672A75C8603D1D1FE85A61786D63BD3B0AA239FFA58_313() const { return ___FFC55B79B9BE7817954A4672A75C8603D1D1FE85A61786D63BD3B0AA239FFA58_313; } inline __StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 * get_address_of_FFC55B79B9BE7817954A4672A75C8603D1D1FE85A61786D63BD3B0AA239FFA58_313() { return &___FFC55B79B9BE7817954A4672A75C8603D1D1FE85A61786D63BD3B0AA239FFA58_313; } inline void set_FFC55B79B9BE7817954A4672A75C8603D1D1FE85A61786D63BD3B0AA239FFA58_313(__StaticArrayInitTypeSizeU3D16_tFDEEE4051A26433A5996232ADC3414625654DA66 value) { ___FFC55B79B9BE7817954A4672A75C8603D1D1FE85A61786D63BD3B0AA239FFA58_313 = value; } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Null struct Asn1Null_t5D40C5C3674510061A0C219CEB9849A5EF6492BC : public Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC { public: public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString struct Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 : public Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC { public: // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString::str ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___str_2; public: inline static int32_t get_offset_of_str_2() { return static_cast(offsetof(Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8, ___str_2)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_str_2() const { return ___str_2; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_str_2() { return &___str_2; } inline void set_str_2(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___str_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___str_2), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence struct Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 : public Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC { public: // System.Collections.IList BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::seq RuntimeObject* ___seq_2; public: inline static int32_t get_offset_of_seq_2() { return static_cast(offsetof(Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8, ___seq_2)); } inline RuntimeObject* get_seq_2() const { return ___seq_2; } inline RuntimeObject** get_address_of_seq_2() { return &___seq_2; } inline void set_seq_2(RuntimeObject* value) { ___seq_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___seq_2), (void*)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; } }; // BestHTTP.Decompression.Zlib.CompressionLevel struct CompressionLevel_tACCC65ECBF70584F2B1C3F4ED9BC5E40268B5C17 { public: // System.Int32 BestHTTP.Decompression.Zlib.CompressionLevel::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(CompressionLevel_tACCC65ECBF70584F2B1C3F4ED9BC5E40268B5C17, ___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.Decompression.Zlib.CompressionStrategy struct CompressionStrategy_t9452572F5B53F6A923762F92050084357119DD2F { public: // System.Int32 BestHTTP.Decompression.Zlib.CompressionStrategy::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(CompressionStrategy_t9452572F5B53F6A923762F92050084357119DD2F, ___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.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; }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerGeneralizedTime struct DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 : public Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC { public: // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerGeneralizedTime::time String_t* ___time_2; public: inline static int32_t get_offset_of_time_2() { return static_cast(offsetof(DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0, ___time_2)); } inline String_t* get_time_2() const { return ___time_2; } inline String_t** get_address_of_time_2() { return &___time_2; } inline void set_time_2(String_t* value) { ___time_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___time_2), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger struct DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 : public Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC { public: // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger::bytes ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___bytes_3; public: inline static int32_t get_offset_of_bytes_3() { return static_cast(offsetof(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157, ___bytes_3)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_bytes_3() const { return ___bytes_3; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_bytes_3() { return &___bytes_3; } inline void set_bytes_3(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___bytes_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___bytes_3), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier struct DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 : public Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC { public: // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::identifier String_t* ___identifier_2; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::body ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___body_3; public: inline static int32_t get_offset_of_identifier_2() { return static_cast(offsetof(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8, ___identifier_2)); } inline String_t* get_identifier_2() const { return ___identifier_2; } inline String_t** get_address_of_identifier_2() { return &___identifier_2; } inline void set_identifier_2(String_t* value) { ___identifier_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___identifier_2), (void*)value); } inline static int32_t get_offset_of_body_3() { return static_cast(offsetof(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8, ___body_3)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_body_3() const { return ___body_3; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_body_3() { return &___body_3; } inline void set_body_3(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___body_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___body_3), (void*)value); } }; struct DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::cache DerObjectIdentifierU5BU5D_t801513A53C26B675A2EC1C7456321775EDCC225F* ___cache_5; public: inline static int32_t get_offset_of_cache_5() { return static_cast(offsetof(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_StaticFields, ___cache_5)); } inline DerObjectIdentifierU5BU5D_t801513A53C26B675A2EC1C7456321775EDCC225F* get_cache_5() const { return ___cache_5; } inline DerObjectIdentifierU5BU5D_t801513A53C26B675A2EC1C7456321775EDCC225F** get_address_of_cache_5() { return &___cache_5; } inline void set_cache_5(DerObjectIdentifierU5BU5D_t801513A53C26B675A2EC1C7456321775EDCC225F* value) { ___cache_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___cache_5), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerStringBase struct DerStringBase_t6A042D217F7D84704C0AFFD73317FB834F9A2FB5 : public Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC { public: public: }; // 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.SecureProtocol.Org.BouncyCastle.Math.EC.F2mCurve struct F2mCurve_t2D35B6577B3DDFE26FC95C22B4281D005BD97C15 : public AbstractF2mCurve_tDE72296FD23D8B8C899FBB99BAD91F3D1C9BBCCE { public: // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.F2mCurve::m int32_t ___m_18; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.F2mCurve::k1 int32_t ___k1_19; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.F2mCurve::k2 int32_t ___k2_20; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.F2mCurve::k3 int32_t ___k3_21; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.F2mPoint BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.F2mCurve::m_infinity F2mPoint_t59403C813B19AE1CA2B41B27F53D6A6E7C9C116F * ___m_infinity_22; public: inline static int32_t get_offset_of_m_18() { return static_cast(offsetof(F2mCurve_t2D35B6577B3DDFE26FC95C22B4281D005BD97C15, ___m_18)); } inline int32_t get_m_18() const { return ___m_18; } inline int32_t* get_address_of_m_18() { return &___m_18; } inline void set_m_18(int32_t value) { ___m_18 = value; } inline static int32_t get_offset_of_k1_19() { return static_cast(offsetof(F2mCurve_t2D35B6577B3DDFE26FC95C22B4281D005BD97C15, ___k1_19)); } inline int32_t get_k1_19() const { return ___k1_19; } inline int32_t* get_address_of_k1_19() { return &___k1_19; } inline void set_k1_19(int32_t value) { ___k1_19 = value; } inline static int32_t get_offset_of_k2_20() { return static_cast(offsetof(F2mCurve_t2D35B6577B3DDFE26FC95C22B4281D005BD97C15, ___k2_20)); } inline int32_t get_k2_20() const { return ___k2_20; } inline int32_t* get_address_of_k2_20() { return &___k2_20; } inline void set_k2_20(int32_t value) { ___k2_20 = value; } inline static int32_t get_offset_of_k3_21() { return static_cast(offsetof(F2mCurve_t2D35B6577B3DDFE26FC95C22B4281D005BD97C15, ___k3_21)); } inline int32_t get_k3_21() const { return ___k3_21; } inline int32_t* get_address_of_k3_21() { return &___k3_21; } inline void set_k3_21(int32_t value) { ___k3_21 = value; } inline static int32_t get_offset_of_m_infinity_22() { return static_cast(offsetof(F2mCurve_t2D35B6577B3DDFE26FC95C22B4281D005BD97C15, ___m_infinity_22)); } inline F2mPoint_t59403C813B19AE1CA2B41B27F53D6A6E7C9C116F * get_m_infinity_22() const { return ___m_infinity_22; } inline F2mPoint_t59403C813B19AE1CA2B41B27F53D6A6E7C9C116F ** get_address_of_m_infinity_22() { return &___m_infinity_22; } inline void set_m_infinity_22(F2mPoint_t59403C813B19AE1CA2B41B27F53D6A6E7C9C116F * value) { ___m_infinity_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_infinity_22), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.F2mFieldElement struct F2mFieldElement_t3C569642A15A78530B72B61257476BF41C52797E : public AbstractF2mFieldElement_tFE8B594FAC65E3901869DD8752F30A2A5AA26677 { public: // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.F2mFieldElement::representation int32_t ___representation_3; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.F2mFieldElement::m int32_t ___m_4; // System.Int32[] BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.F2mFieldElement::ks Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___ks_5; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.LongArray BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.F2mFieldElement::x LongArray_tAD83B3758269288B1E3AEC8B5E5AF03BF79E1644 * ___x_6; public: inline static int32_t get_offset_of_representation_3() { return static_cast(offsetof(F2mFieldElement_t3C569642A15A78530B72B61257476BF41C52797E, ___representation_3)); } inline int32_t get_representation_3() const { return ___representation_3; } inline int32_t* get_address_of_representation_3() { return &___representation_3; } inline void set_representation_3(int32_t value) { ___representation_3 = value; } inline static int32_t get_offset_of_m_4() { return static_cast(offsetof(F2mFieldElement_t3C569642A15A78530B72B61257476BF41C52797E, ___m_4)); } inline int32_t get_m_4() const { return ___m_4; } inline int32_t* get_address_of_m_4() { return &___m_4; } inline void set_m_4(int32_t value) { ___m_4 = value; } inline static int32_t get_offset_of_ks_5() { return static_cast(offsetof(F2mFieldElement_t3C569642A15A78530B72B61257476BF41C52797E, ___ks_5)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_ks_5() const { return ___ks_5; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_ks_5() { return &___ks_5; } inline void set_ks_5(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___ks_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___ks_5), (void*)value); } inline static int32_t get_offset_of_x_6() { return static_cast(offsetof(F2mFieldElement_t3C569642A15A78530B72B61257476BF41C52797E, ___x_6)); } inline LongArray_tAD83B3758269288B1E3AEC8B5E5AF03BF79E1644 * get_x_6() const { return ___x_6; } inline LongArray_tAD83B3758269288B1E3AEC8B5E5AF03BF79E1644 ** get_address_of_x_6() { return &___x_6; } inline void set_x_6(LongArray_tAD83B3758269288B1E3AEC8B5E5AF03BF79E1644 * value) { ___x_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___x_6), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.FpCurve struct FpCurve_t9368FE54C52A7B5966A8B814B739D287356B93B8 : public AbstractFpCurve_tE0B6ADB825360C35FC7DFFBCC3473DCA2198D5EF { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.FpCurve::m_q BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___m_q_17; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.FpCurve::m_r BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___m_r_18; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.FpPoint BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.FpCurve::m_infinity FpPoint_t4D1072D1E2CB8D2BA79DEDF216003F575977B278 * ___m_infinity_19; public: inline static int32_t get_offset_of_m_q_17() { return static_cast(offsetof(FpCurve_t9368FE54C52A7B5966A8B814B739D287356B93B8, ___m_q_17)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_m_q_17() const { return ___m_q_17; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_m_q_17() { return &___m_q_17; } inline void set_m_q_17(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___m_q_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_q_17), (void*)value); } inline static int32_t get_offset_of_m_r_18() { return static_cast(offsetof(FpCurve_t9368FE54C52A7B5966A8B814B739D287356B93B8, ___m_r_18)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_m_r_18() const { return ___m_r_18; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_m_r_18() { return &___m_r_18; } inline void set_m_r_18(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___m_r_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_r_18), (void*)value); } inline static int32_t get_offset_of_m_infinity_19() { return static_cast(offsetof(FpCurve_t9368FE54C52A7B5966A8B814B739D287356B93B8, ___m_infinity_19)); } inline FpPoint_t4D1072D1E2CB8D2BA79DEDF216003F575977B278 * get_m_infinity_19() const { return ___m_infinity_19; } inline FpPoint_t4D1072D1E2CB8D2BA79DEDF216003F575977B278 ** get_address_of_m_infinity_19() { return &___m_infinity_19; } inline void set_m_infinity_19(FpPoint_t4D1072D1E2CB8D2BA79DEDF216003F575977B278 * value) { ___m_infinity_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_infinity_19), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.FpFieldElement struct FpFieldElement_t14F5497CB64CC40A592A8313C210D3CBA9C54629 : public AbstractFpFieldElement_tD2C80C5CF9EBE12D131C5D8D967229FF84510820 { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.FpFieldElement::q BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___q_0; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.FpFieldElement::r BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___r_1; // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.FpFieldElement::x BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___x_2; public: inline static int32_t get_offset_of_q_0() { return static_cast(offsetof(FpFieldElement_t14F5497CB64CC40A592A8313C210D3CBA9C54629, ___q_0)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_q_0() const { return ___q_0; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_q_0() { return &___q_0; } inline void set_q_0(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___q_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___q_0), (void*)value); } inline static int32_t get_offset_of_r_1() { return static_cast(offsetof(FpFieldElement_t14F5497CB64CC40A592A8313C210D3CBA9C54629, ___r_1)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_r_1() const { return ___r_1; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_r_1() { return &___r_1; } inline void set_r_1(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___r_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___r_1), (void*)value); } inline static int32_t get_offset_of_x_2() { return static_cast(offsetof(FpFieldElement_t14F5497CB64CC40A592A8313C210D3CBA9C54629, ___x_2)); } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * get_x_2() const { return ___x_2; } inline BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 ** get_address_of_x_2() { return &___x_2; } inline void set_x_2(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * value) { ___x_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___x_2), (void*)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); } }; // 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; }; // UnityEngine.RaycastHit struct RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89 { public: // UnityEngine.Vector3 UnityEngine.RaycastHit::m_Point Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_Point_0; // UnityEngine.Vector3 UnityEngine.RaycastHit::m_Normal Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_Normal_1; // System.UInt32 UnityEngine.RaycastHit::m_FaceID uint32_t ___m_FaceID_2; // System.Single UnityEngine.RaycastHit::m_Distance float ___m_Distance_3; // UnityEngine.Vector2 UnityEngine.RaycastHit::m_UV Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_UV_4; // System.Int32 UnityEngine.RaycastHit::m_Collider int32_t ___m_Collider_5; public: inline static int32_t get_offset_of_m_Point_0() { return static_cast(offsetof(RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89, ___m_Point_0)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_Point_0() const { return ___m_Point_0; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_Point_0() { return &___m_Point_0; } inline void set_m_Point_0(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___m_Point_0 = value; } inline static int32_t get_offset_of_m_Normal_1() { return static_cast(offsetof(RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89, ___m_Normal_1)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_Normal_1() const { return ___m_Normal_1; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_Normal_1() { return &___m_Normal_1; } inline void set_m_Normal_1(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___m_Normal_1 = value; } inline static int32_t get_offset_of_m_FaceID_2() { return static_cast(offsetof(RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89, ___m_FaceID_2)); } inline uint32_t get_m_FaceID_2() const { return ___m_FaceID_2; } inline uint32_t* get_address_of_m_FaceID_2() { return &___m_FaceID_2; } inline void set_m_FaceID_2(uint32_t value) { ___m_FaceID_2 = value; } inline static int32_t get_offset_of_m_Distance_3() { return static_cast(offsetof(RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89, ___m_Distance_3)); } inline float get_m_Distance_3() const { return ___m_Distance_3; } inline float* get_address_of_m_Distance_3() { return &___m_Distance_3; } inline void set_m_Distance_3(float value) { ___m_Distance_3 = value; } inline static int32_t get_offset_of_m_UV_4() { return static_cast(offsetof(RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89, ___m_UV_4)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_m_UV_4() const { return ___m_UV_4; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_m_UV_4() { return &___m_UV_4; } inline void set_m_UV_4(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___m_UV_4 = value; } inline static int32_t get_offset_of_m_Collider_5() { return static_cast(offsetof(RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89, ___m_Collider_5)); } inline int32_t get_m_Collider_5() const { return ___m_Collider_5; } inline int32_t* get_address_of_m_Collider_5() { return &___m_Collider_5; } inline void set_m_Collider_5(int32_t value) { ___m_Collider_5 = value; } }; // System.RuntimeFieldHandle struct RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 { public: // System.IntPtr System.RuntimeFieldHandle::value intptr_t ___value_0; public: inline static int32_t get_offset_of_value_0() { return static_cast(offsetof(RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96, ___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; } }; // 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; } }; // 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; } }; // 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; } }; // 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; } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificate struct X509V2AttributeCertificate_t004E81AFB075D95CA954C1C9E84F0C63F27A56A3 : public X509ExtensionBase_t91B691B9E834F516C9CE847F2B900B019A37CCE7 { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeCertificate BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificate::cert AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 * ___cert_0; // System.DateTime BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificate::notBefore DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___notBefore_1; // System.DateTime BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificate::notAfter DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___notAfter_2; public: inline static int32_t get_offset_of_cert_0() { return static_cast(offsetof(X509V2AttributeCertificate_t004E81AFB075D95CA954C1C9E84F0C63F27A56A3, ___cert_0)); } inline AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 * get_cert_0() const { return ___cert_0; } inline AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 ** get_address_of_cert_0() { return &___cert_0; } inline void set_cert_0(AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 * value) { ___cert_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___cert_0), (void*)value); } inline static int32_t get_offset_of_notBefore_1() { return static_cast(offsetof(X509V2AttributeCertificate_t004E81AFB075D95CA954C1C9E84F0C63F27A56A3, ___notBefore_1)); } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_notBefore_1() const { return ___notBefore_1; } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_notBefore_1() { return &___notBefore_1; } inline void set_notBefore_1(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value) { ___notBefore_1 = value; } inline static int32_t get_offset_of_notAfter_2() { return static_cast(offsetof(X509V2AttributeCertificate_t004E81AFB075D95CA954C1C9E84F0C63F27A56A3, ___notAfter_2)); } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_notAfter_2() const { return ___notAfter_2; } inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_notAfter_2() { return &___notAfter_2; } inline void set_notAfter_2(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value) { ___notAfter_2 = value; } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.X931SecureRandom struct X931SecureRandom_t71D569F8B9A4EDFE82BF4FA1A5864AB8FD348935 : public SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 { public: // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.X931SecureRandom::mPredictionResistant bool ___mPredictionResistant_7; // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.X931SecureRandom::mRandomSource SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * ___mRandomSource_8; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.X931Rng BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.X931SecureRandom::mDrbg X931Rng_t7B9242C1A220EC8F7036A04EB335B10EE7E26800 * ___mDrbg_9; public: inline static int32_t get_offset_of_mPredictionResistant_7() { return static_cast(offsetof(X931SecureRandom_t71D569F8B9A4EDFE82BF4FA1A5864AB8FD348935, ___mPredictionResistant_7)); } inline bool get_mPredictionResistant_7() const { return ___mPredictionResistant_7; } inline bool* get_address_of_mPredictionResistant_7() { return &___mPredictionResistant_7; } inline void set_mPredictionResistant_7(bool value) { ___mPredictionResistant_7 = value; } inline static int32_t get_offset_of_mRandomSource_8() { return static_cast(offsetof(X931SecureRandom_t71D569F8B9A4EDFE82BF4FA1A5864AB8FD348935, ___mRandomSource_8)); } inline SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * get_mRandomSource_8() const { return ___mRandomSource_8; } inline SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 ** get_address_of_mRandomSource_8() { return &___mRandomSource_8; } inline void set_mRandomSource_8(SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * value) { ___mRandomSource_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___mRandomSource_8), (void*)value); } inline static int32_t get_offset_of_mDrbg_9() { return static_cast(offsetof(X931SecureRandom_t71D569F8B9A4EDFE82BF4FA1A5864AB8FD348935, ___mDrbg_9)); } inline X931Rng_t7B9242C1A220EC8F7036A04EB335B10EE7E26800 * get_mDrbg_9() const { return ___mDrbg_9; } inline X931Rng_t7B9242C1A220EC8F7036A04EB335B10EE7E26800 ** get_address_of_mDrbg_9() { return &___mDrbg_9; } inline void set_mDrbg_9(X931Rng_t7B9242C1A220EC8F7036A04EB335B10EE7E26800 * value) { ___mDrbg_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___mDrbg_9), (void*)value); } }; // YejiHuntGameMode struct YejiHuntGameMode_tC7B3AEEF3616DD293F13F32FC974BC22C561D563 : public ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B { public: // System.Single YejiHuntGameMode::flyPlaneHeight float ___flyPlaneHeight_17; // TreeAreaRecorder YejiHuntGameMode::treeAreaRecorder TreeAreaRecorder_tAE9063D38B62DF6BE86781A700F0D349C2E43B37 * ___treeAreaRecorder_18; // System.Int32 YejiHuntGameMode::createCountMax int32_t ___createCountMax_19; // System.Int32 YejiHuntGameMode::createAnimalIndex int32_t ___createAnimalIndex_20; // System.Boolean YejiHuntGameMode::banCreateAnimal bool ___banCreateAnimal_21; public: inline static int32_t get_offset_of_flyPlaneHeight_17() { return static_cast(offsetof(YejiHuntGameMode_tC7B3AEEF3616DD293F13F32FC974BC22C561D563, ___flyPlaneHeight_17)); } inline float get_flyPlaneHeight_17() const { return ___flyPlaneHeight_17; } inline float* get_address_of_flyPlaneHeight_17() { return &___flyPlaneHeight_17; } inline void set_flyPlaneHeight_17(float value) { ___flyPlaneHeight_17 = value; } inline static int32_t get_offset_of_treeAreaRecorder_18() { return static_cast(offsetof(YejiHuntGameMode_tC7B3AEEF3616DD293F13F32FC974BC22C561D563, ___treeAreaRecorder_18)); } inline TreeAreaRecorder_tAE9063D38B62DF6BE86781A700F0D349C2E43B37 * get_treeAreaRecorder_18() const { return ___treeAreaRecorder_18; } inline TreeAreaRecorder_tAE9063D38B62DF6BE86781A700F0D349C2E43B37 ** get_address_of_treeAreaRecorder_18() { return &___treeAreaRecorder_18; } inline void set_treeAreaRecorder_18(TreeAreaRecorder_tAE9063D38B62DF6BE86781A700F0D349C2E43B37 * value) { ___treeAreaRecorder_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___treeAreaRecorder_18), (void*)value); } inline static int32_t get_offset_of_createCountMax_19() { return static_cast(offsetof(YejiHuntGameMode_tC7B3AEEF3616DD293F13F32FC974BC22C561D563, ___createCountMax_19)); } inline int32_t get_createCountMax_19() const { return ___createCountMax_19; } inline int32_t* get_address_of_createCountMax_19() { return &___createCountMax_19; } inline void set_createCountMax_19(int32_t value) { ___createCountMax_19 = value; } inline static int32_t get_offset_of_createAnimalIndex_20() { return static_cast(offsetof(YejiHuntGameMode_tC7B3AEEF3616DD293F13F32FC974BC22C561D563, ___createAnimalIndex_20)); } inline int32_t get_createAnimalIndex_20() const { return ___createAnimalIndex_20; } inline int32_t* get_address_of_createAnimalIndex_20() { return &___createAnimalIndex_20; } inline void set_createAnimalIndex_20(int32_t value) { ___createAnimalIndex_20 = value; } inline static int32_t get_offset_of_banCreateAnimal_21() { return static_cast(offsetof(YejiHuntGameMode_tC7B3AEEF3616DD293F13F32FC974BC22C561D563, ___banCreateAnimal_21)); } inline bool get_banCreateAnimal_21() const { return ___banCreateAnimal_21; } inline bool* get_address_of_banCreateAnimal_21() { return &___banCreateAnimal_21; } inline void set_banCreateAnimal_21(bool value) { ___banCreateAnimal_21 = value; } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZDeflaterOutputStream struct ZDeflaterOutputStream_tC29A2BAF5FCC76E4CDAB81E0BFA933D413B00A83 : public Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZDeflaterOutputStream::z ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * ___z_5; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZDeflaterOutputStream::flushLevel int32_t ___flushLevel_6; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZDeflaterOutputStream::buf ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___buf_8; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZDeflaterOutputStream::buf1 ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___buf1_9; // System.IO.Stream BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZDeflaterOutputStream::outp Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___outp_10; public: inline static int32_t get_offset_of_z_5() { return static_cast(offsetof(ZDeflaterOutputStream_tC29A2BAF5FCC76E4CDAB81E0BFA933D413B00A83, ___z_5)); } inline ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * get_z_5() const { return ___z_5; } inline ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C ** get_address_of_z_5() { return &___z_5; } inline void set_z_5(ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * value) { ___z_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___z_5), (void*)value); } inline static int32_t get_offset_of_flushLevel_6() { return static_cast(offsetof(ZDeflaterOutputStream_tC29A2BAF5FCC76E4CDAB81E0BFA933D413B00A83, ___flushLevel_6)); } inline int32_t get_flushLevel_6() const { return ___flushLevel_6; } inline int32_t* get_address_of_flushLevel_6() { return &___flushLevel_6; } inline void set_flushLevel_6(int32_t value) { ___flushLevel_6 = value; } inline static int32_t get_offset_of_buf_8() { return static_cast(offsetof(ZDeflaterOutputStream_tC29A2BAF5FCC76E4CDAB81E0BFA933D413B00A83, ___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_buf1_9() { return static_cast(offsetof(ZDeflaterOutputStream_tC29A2BAF5FCC76E4CDAB81E0BFA933D413B00A83, ___buf1_9)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_buf1_9() const { return ___buf1_9; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_buf1_9() { return &___buf1_9; } inline void set_buf1_9(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___buf1_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___buf1_9), (void*)value); } inline static int32_t get_offset_of_outp_10() { return static_cast(offsetof(ZDeflaterOutputStream_tC29A2BAF5FCC76E4CDAB81E0BFA933D413B00A83, ___outp_10)); } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_outp_10() const { return ___outp_10; } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_outp_10() { return &___outp_10; } inline void set_outp_10(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value) { ___outp_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___outp_10), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInflaterInputStream struct ZInflaterInputStream_t187D375253406A691AA32C6281FD0979F5C26224 : public Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInflaterInputStream::z ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * ___z_5; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInflaterInputStream::flushLevel int32_t ___flushLevel_6; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInflaterInputStream::buf ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___buf_8; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInflaterInputStream::buf1 ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___buf1_9; // System.IO.Stream BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInflaterInputStream::inp Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___inp_10; // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInflaterInputStream::nomoreinput bool ___nomoreinput_11; public: inline static int32_t get_offset_of_z_5() { return static_cast(offsetof(ZInflaterInputStream_t187D375253406A691AA32C6281FD0979F5C26224, ___z_5)); } inline ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * get_z_5() const { return ___z_5; } inline ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C ** get_address_of_z_5() { return &___z_5; } inline void set_z_5(ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * value) { ___z_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___z_5), (void*)value); } inline static int32_t get_offset_of_flushLevel_6() { return static_cast(offsetof(ZInflaterInputStream_t187D375253406A691AA32C6281FD0979F5C26224, ___flushLevel_6)); } inline int32_t get_flushLevel_6() const { return ___flushLevel_6; } inline int32_t* get_address_of_flushLevel_6() { return &___flushLevel_6; } inline void set_flushLevel_6(int32_t value) { ___flushLevel_6 = value; } inline static int32_t get_offset_of_buf_8() { return static_cast(offsetof(ZInflaterInputStream_t187D375253406A691AA32C6281FD0979F5C26224, ___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_buf1_9() { return static_cast(offsetof(ZInflaterInputStream_t187D375253406A691AA32C6281FD0979F5C26224, ___buf1_9)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_buf1_9() const { return ___buf1_9; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_buf1_9() { return &___buf1_9; } inline void set_buf1_9(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___buf1_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___buf1_9), (void*)value); } inline static int32_t get_offset_of_inp_10() { return static_cast(offsetof(ZInflaterInputStream_t187D375253406A691AA32C6281FD0979F5C26224, ___inp_10)); } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_inp_10() const { return ___inp_10; } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_inp_10() { return &___inp_10; } inline void set_inp_10(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value) { ___inp_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___inp_10), (void*)value); } inline static int32_t get_offset_of_nomoreinput_11() { return static_cast(offsetof(ZInflaterInputStream_t187D375253406A691AA32C6281FD0979F5C26224, ___nomoreinput_11)); } inline bool get_nomoreinput_11() const { return ___nomoreinput_11; } inline bool* get_address_of_nomoreinput_11() { return &___nomoreinput_11; } inline void set_nomoreinput_11(bool value) { ___nomoreinput_11 = value; } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInputStream struct ZInputStream_t2D5C611F3CB82738E6B107F6DD9F5BF0486E5C4D : public Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInputStream::z ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * ___z_6; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInputStream::flushLevel int32_t ___flushLevel_7; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInputStream::buf ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___buf_8; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInputStream::buf1 ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___buf1_9; // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInputStream::compress bool ___compress_10; // System.IO.Stream BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInputStream::input Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___input_11; // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInputStream::closed bool ___closed_12; // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInputStream::nomoreinput bool ___nomoreinput_13; public: inline static int32_t get_offset_of_z_6() { return static_cast(offsetof(ZInputStream_t2D5C611F3CB82738E6B107F6DD9F5BF0486E5C4D, ___z_6)); } inline ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * get_z_6() const { return ___z_6; } inline ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C ** get_address_of_z_6() { return &___z_6; } inline void set_z_6(ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * value) { ___z_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___z_6), (void*)value); } inline static int32_t get_offset_of_flushLevel_7() { return static_cast(offsetof(ZInputStream_t2D5C611F3CB82738E6B107F6DD9F5BF0486E5C4D, ___flushLevel_7)); } inline int32_t get_flushLevel_7() const { return ___flushLevel_7; } inline int32_t* get_address_of_flushLevel_7() { return &___flushLevel_7; } inline void set_flushLevel_7(int32_t value) { ___flushLevel_7 = value; } inline static int32_t get_offset_of_buf_8() { return static_cast(offsetof(ZInputStream_t2D5C611F3CB82738E6B107F6DD9F5BF0486E5C4D, ___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_buf1_9() { return static_cast(offsetof(ZInputStream_t2D5C611F3CB82738E6B107F6DD9F5BF0486E5C4D, ___buf1_9)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_buf1_9() const { return ___buf1_9; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_buf1_9() { return &___buf1_9; } inline void set_buf1_9(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___buf1_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___buf1_9), (void*)value); } inline static int32_t get_offset_of_compress_10() { return static_cast(offsetof(ZInputStream_t2D5C611F3CB82738E6B107F6DD9F5BF0486E5C4D, ___compress_10)); } inline bool get_compress_10() const { return ___compress_10; } inline bool* get_address_of_compress_10() { return &___compress_10; } inline void set_compress_10(bool value) { ___compress_10 = value; } inline static int32_t get_offset_of_input_11() { return static_cast(offsetof(ZInputStream_t2D5C611F3CB82738E6B107F6DD9F5BF0486E5C4D, ___input_11)); } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_input_11() const { return ___input_11; } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_input_11() { return &___input_11; } inline void set_input_11(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value) { ___input_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___input_11), (void*)value); } inline static int32_t get_offset_of_closed_12() { return static_cast(offsetof(ZInputStream_t2D5C611F3CB82738E6B107F6DD9F5BF0486E5C4D, ___closed_12)); } inline bool get_closed_12() const { return ___closed_12; } inline bool* get_address_of_closed_12() { return &___closed_12; } inline void set_closed_12(bool value) { ___closed_12 = value; } inline static int32_t get_offset_of_nomoreinput_13() { return static_cast(offsetof(ZInputStream_t2D5C611F3CB82738E6B107F6DD9F5BF0486E5C4D, ___nomoreinput_13)); } inline bool get_nomoreinput_13() const { return ___nomoreinput_13; } inline bool* get_address_of_nomoreinput_13() { return &___nomoreinput_13; } inline void set_nomoreinput_13(bool value) { ___nomoreinput_13 = value; } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZOutputStream struct ZOutputStream_tC18E76CC9549F21AC543491E55ACCD9A7C76D5D5 : public Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZOutputStream::z ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * ___z_6; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZOutputStream::flushLevel int32_t ___flushLevel_7; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZOutputStream::buf ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___buf_8; // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZOutputStream::buf1 ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___buf1_9; // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZOutputStream::compress bool ___compress_10; // System.IO.Stream BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZOutputStream::output Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___output_11; // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZOutputStream::closed bool ___closed_12; public: inline static int32_t get_offset_of_z_6() { return static_cast(offsetof(ZOutputStream_tC18E76CC9549F21AC543491E55ACCD9A7C76D5D5, ___z_6)); } inline ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * get_z_6() const { return ___z_6; } inline ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C ** get_address_of_z_6() { return &___z_6; } inline void set_z_6(ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * value) { ___z_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___z_6), (void*)value); } inline static int32_t get_offset_of_flushLevel_7() { return static_cast(offsetof(ZOutputStream_tC18E76CC9549F21AC543491E55ACCD9A7C76D5D5, ___flushLevel_7)); } inline int32_t get_flushLevel_7() const { return ___flushLevel_7; } inline int32_t* get_address_of_flushLevel_7() { return &___flushLevel_7; } inline void set_flushLevel_7(int32_t value) { ___flushLevel_7 = value; } inline static int32_t get_offset_of_buf_8() { return static_cast(offsetof(ZOutputStream_tC18E76CC9549F21AC543491E55ACCD9A7C76D5D5, ___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_buf1_9() { return static_cast(offsetof(ZOutputStream_tC18E76CC9549F21AC543491E55ACCD9A7C76D5D5, ___buf1_9)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_buf1_9() const { return ___buf1_9; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_buf1_9() { return &___buf1_9; } inline void set_buf1_9(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___buf1_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___buf1_9), (void*)value); } inline static int32_t get_offset_of_compress_10() { return static_cast(offsetof(ZOutputStream_tC18E76CC9549F21AC543491E55ACCD9A7C76D5D5, ___compress_10)); } inline bool get_compress_10() const { return ___compress_10; } inline bool* get_address_of_compress_10() { return &___compress_10; } inline void set_compress_10(bool value) { ___compress_10 = value; } inline static int32_t get_offset_of_output_11() { return static_cast(offsetof(ZOutputStream_tC18E76CC9549F21AC543491E55ACCD9A7C76D5D5, ___output_11)); } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_output_11() const { return ___output_11; } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_output_11() { return &___output_11; } inline void set_output_11(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value) { ___output_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___output_11), (void*)value); } inline static int32_t get_offset_of_closed_12() { return static_cast(offsetof(ZOutputStream_tC18E76CC9549F21AC543491E55ACCD9A7C76D5D5, ___closed_12)); } inline bool get_closed_12() const { return ___closed_12; } inline bool* get_address_of_closed_12() { return &___closed_12; } inline void set_closed_12(bool value) { ___closed_12 = value; } }; // TreeAreaRecorder/AreaInfo struct AreaInfo_t23BDB3108537E7181ACFB654B90B389AE8FAC781 : public RuntimeObject { public: // UnityEngine.Transform TreeAreaRecorder/AreaInfo::transform Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___transform_0; // UnityEngine.Vector3 TreeAreaRecorder/AreaInfo::position Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___position_1; // System.Single TreeAreaRecorder/AreaInfo::radius float ___radius_2; // System.Single TreeAreaRecorder/AreaInfo::height float ___height_3; // System.Single TreeAreaRecorder/AreaInfo::teamCompareValue float ___teamCompareValue_4; // System.Object TreeAreaRecorder/AreaInfo::occupy RuntimeObject * ___occupy_5; public: inline static int32_t get_offset_of_transform_0() { return static_cast(offsetof(AreaInfo_t23BDB3108537E7181ACFB654B90B389AE8FAC781, ___transform_0)); } inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * get_transform_0() const { return ___transform_0; } inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 ** get_address_of_transform_0() { return &___transform_0; } inline void set_transform_0(Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * value) { ___transform_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___transform_0), (void*)value); } inline static int32_t get_offset_of_position_1() { return static_cast(offsetof(AreaInfo_t23BDB3108537E7181ACFB654B90B389AE8FAC781, ___position_1)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_position_1() const { return ___position_1; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_position_1() { return &___position_1; } inline void set_position_1(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___position_1 = value; } inline static int32_t get_offset_of_radius_2() { return static_cast(offsetof(AreaInfo_t23BDB3108537E7181ACFB654B90B389AE8FAC781, ___radius_2)); } inline float get_radius_2() const { return ___radius_2; } inline float* get_address_of_radius_2() { return &___radius_2; } inline void set_radius_2(float value) { ___radius_2 = value; } inline static int32_t get_offset_of_height_3() { return static_cast(offsetof(AreaInfo_t23BDB3108537E7181ACFB654B90B389AE8FAC781, ___height_3)); } inline float get_height_3() const { return ___height_3; } inline float* get_address_of_height_3() { return &___height_3; } inline void set_height_3(float value) { ___height_3 = value; } inline static int32_t get_offset_of_teamCompareValue_4() { return static_cast(offsetof(AreaInfo_t23BDB3108537E7181ACFB654B90B389AE8FAC781, ___teamCompareValue_4)); } inline float get_teamCompareValue_4() const { return ___teamCompareValue_4; } inline float* get_address_of_teamCompareValue_4() { return &___teamCompareValue_4; } inline void set_teamCompareValue_4(float value) { ___teamCompareValue_4 = value; } inline static int32_t get_offset_of_occupy_5() { return static_cast(offsetof(AreaInfo_t23BDB3108537E7181ACFB654B90B389AE8FAC781, ___occupy_5)); } inline RuntimeObject * get_occupy_5() const { return ___occupy_5; } inline RuntimeObject ** get_address_of_occupy_5() { return &___occupy_5; } inline void set_occupy_5(RuntimeObject * value) { ___occupy_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___occupy_5), (void*)value); } }; // Yeji/OnlineHandler struct OnlineHandler_t0EEA4F8C0170610DD9F19AE15F12F6A4C74E3587 : public RuntimeObject { public: // Yeji Yeji/OnlineHandler::animal Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * ___animal_0; // System.Int32 Yeji/OnlineHandler::uid int32_t ___uid_1; // System.Boolean Yeji/OnlineHandler::isMirror bool ___isMirror_2; // System.Int32 Yeji/OnlineHandler::mirrorState int32_t ___mirrorState_3; // System.Single Yeji/OnlineHandler::animatroSpeed float ___animatroSpeed_4; // YejiSyncData Yeji/OnlineHandler::outputSyncData YejiSyncData_t4FF903A600E64371DFF4510B3D1C308A95B38BA8 * ___outputSyncData_5; // YejiSyncData Yeji/OnlineHandler::_inputSyncData YejiSyncData_t4FF903A600E64371DFF4510B3D1C308A95B38BA8 * ____inputSyncData_6; // UnityEngine.Quaternion Yeji/OnlineHandler::syncRotation Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___syncRotation_7; // UnityEngine.Vector3 Yeji/OnlineHandler::syncPosition Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___syncPosition_8; // System.Boolean Yeji/OnlineHandler::hasUpdateBySyncData bool ___hasUpdateBySyncData_9; // System.Boolean Yeji/OnlineHandler::isInvalid bool ___isInvalid_10; // System.String Yeji/OnlineHandler::onHitData String_t* ___onHitData_11; // System.Boolean Yeji/OnlineHandler::onDoNextShootWillDestroy bool ___onDoNextShootWillDestroy_12; // System.Int32 Yeji/OnlineHandler::injuredID int32_t ___injuredID_13; // System.Int32[] Yeji/OnlineHandler::stateHashList Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___stateHashList_14; public: inline static int32_t get_offset_of_animal_0() { return static_cast(offsetof(OnlineHandler_t0EEA4F8C0170610DD9F19AE15F12F6A4C74E3587, ___animal_0)); } inline Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * get_animal_0() const { return ___animal_0; } inline Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 ** get_address_of_animal_0() { return &___animal_0; } inline void set_animal_0(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * value) { ___animal_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___animal_0), (void*)value); } inline static int32_t get_offset_of_uid_1() { return static_cast(offsetof(OnlineHandler_t0EEA4F8C0170610DD9F19AE15F12F6A4C74E3587, ___uid_1)); } inline int32_t get_uid_1() const { return ___uid_1; } inline int32_t* get_address_of_uid_1() { return &___uid_1; } inline void set_uid_1(int32_t value) { ___uid_1 = value; } inline static int32_t get_offset_of_isMirror_2() { return static_cast(offsetof(OnlineHandler_t0EEA4F8C0170610DD9F19AE15F12F6A4C74E3587, ___isMirror_2)); } inline bool get_isMirror_2() const { return ___isMirror_2; } inline bool* get_address_of_isMirror_2() { return &___isMirror_2; } inline void set_isMirror_2(bool value) { ___isMirror_2 = value; } inline static int32_t get_offset_of_mirrorState_3() { return static_cast(offsetof(OnlineHandler_t0EEA4F8C0170610DD9F19AE15F12F6A4C74E3587, ___mirrorState_3)); } inline int32_t get_mirrorState_3() const { return ___mirrorState_3; } inline int32_t* get_address_of_mirrorState_3() { return &___mirrorState_3; } inline void set_mirrorState_3(int32_t value) { ___mirrorState_3 = value; } inline static int32_t get_offset_of_animatroSpeed_4() { return static_cast(offsetof(OnlineHandler_t0EEA4F8C0170610DD9F19AE15F12F6A4C74E3587, ___animatroSpeed_4)); } inline float get_animatroSpeed_4() const { return ___animatroSpeed_4; } inline float* get_address_of_animatroSpeed_4() { return &___animatroSpeed_4; } inline void set_animatroSpeed_4(float value) { ___animatroSpeed_4 = value; } inline static int32_t get_offset_of_outputSyncData_5() { return static_cast(offsetof(OnlineHandler_t0EEA4F8C0170610DD9F19AE15F12F6A4C74E3587, ___outputSyncData_5)); } inline YejiSyncData_t4FF903A600E64371DFF4510B3D1C308A95B38BA8 * get_outputSyncData_5() const { return ___outputSyncData_5; } inline YejiSyncData_t4FF903A600E64371DFF4510B3D1C308A95B38BA8 ** get_address_of_outputSyncData_5() { return &___outputSyncData_5; } inline void set_outputSyncData_5(YejiSyncData_t4FF903A600E64371DFF4510B3D1C308A95B38BA8 * value) { ___outputSyncData_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___outputSyncData_5), (void*)value); } inline static int32_t get_offset_of__inputSyncData_6() { return static_cast(offsetof(OnlineHandler_t0EEA4F8C0170610DD9F19AE15F12F6A4C74E3587, ____inputSyncData_6)); } inline YejiSyncData_t4FF903A600E64371DFF4510B3D1C308A95B38BA8 * get__inputSyncData_6() const { return ____inputSyncData_6; } inline YejiSyncData_t4FF903A600E64371DFF4510B3D1C308A95B38BA8 ** get_address_of__inputSyncData_6() { return &____inputSyncData_6; } inline void set__inputSyncData_6(YejiSyncData_t4FF903A600E64371DFF4510B3D1C308A95B38BA8 * value) { ____inputSyncData_6 = value; Il2CppCodeGenWriteBarrier((void**)(&____inputSyncData_6), (void*)value); } inline static int32_t get_offset_of_syncRotation_7() { return static_cast(offsetof(OnlineHandler_t0EEA4F8C0170610DD9F19AE15F12F6A4C74E3587, ___syncRotation_7)); } inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 get_syncRotation_7() const { return ___syncRotation_7; } inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * get_address_of_syncRotation_7() { return &___syncRotation_7; } inline void set_syncRotation_7(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 value) { ___syncRotation_7 = value; } inline static int32_t get_offset_of_syncPosition_8() { return static_cast(offsetof(OnlineHandler_t0EEA4F8C0170610DD9F19AE15F12F6A4C74E3587, ___syncPosition_8)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_syncPosition_8() const { return ___syncPosition_8; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_syncPosition_8() { return &___syncPosition_8; } inline void set_syncPosition_8(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___syncPosition_8 = value; } inline static int32_t get_offset_of_hasUpdateBySyncData_9() { return static_cast(offsetof(OnlineHandler_t0EEA4F8C0170610DD9F19AE15F12F6A4C74E3587, ___hasUpdateBySyncData_9)); } inline bool get_hasUpdateBySyncData_9() const { return ___hasUpdateBySyncData_9; } inline bool* get_address_of_hasUpdateBySyncData_9() { return &___hasUpdateBySyncData_9; } inline void set_hasUpdateBySyncData_9(bool value) { ___hasUpdateBySyncData_9 = value; } inline static int32_t get_offset_of_isInvalid_10() { return static_cast(offsetof(OnlineHandler_t0EEA4F8C0170610DD9F19AE15F12F6A4C74E3587, ___isInvalid_10)); } inline bool get_isInvalid_10() const { return ___isInvalid_10; } inline bool* get_address_of_isInvalid_10() { return &___isInvalid_10; } inline void set_isInvalid_10(bool value) { ___isInvalid_10 = value; } inline static int32_t get_offset_of_onHitData_11() { return static_cast(offsetof(OnlineHandler_t0EEA4F8C0170610DD9F19AE15F12F6A4C74E3587, ___onHitData_11)); } inline String_t* get_onHitData_11() const { return ___onHitData_11; } inline String_t** get_address_of_onHitData_11() { return &___onHitData_11; } inline void set_onHitData_11(String_t* value) { ___onHitData_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___onHitData_11), (void*)value); } inline static int32_t get_offset_of_onDoNextShootWillDestroy_12() { return static_cast(offsetof(OnlineHandler_t0EEA4F8C0170610DD9F19AE15F12F6A4C74E3587, ___onDoNextShootWillDestroy_12)); } inline bool get_onDoNextShootWillDestroy_12() const { return ___onDoNextShootWillDestroy_12; } inline bool* get_address_of_onDoNextShootWillDestroy_12() { return &___onDoNextShootWillDestroy_12; } inline void set_onDoNextShootWillDestroy_12(bool value) { ___onDoNextShootWillDestroy_12 = value; } inline static int32_t get_offset_of_injuredID_13() { return static_cast(offsetof(OnlineHandler_t0EEA4F8C0170610DD9F19AE15F12F6A4C74E3587, ___injuredID_13)); } inline int32_t get_injuredID_13() const { return ___injuredID_13; } inline int32_t* get_address_of_injuredID_13() { return &___injuredID_13; } inline void set_injuredID_13(int32_t value) { ___injuredID_13 = value; } inline static int32_t get_offset_of_stateHashList_14() { return static_cast(offsetof(OnlineHandler_t0EEA4F8C0170610DD9F19AE15F12F6A4C74E3587, ___stateHashList_14)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_stateHashList_14() const { return ___stateHashList_14; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_stateHashList_14() { return &___stateHashList_14; } inline void set_stateHashList_14(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___stateHashList_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___stateHashList_14), (void*)value); } }; // YejiHuntGameMode_OnlinePK/OnlineHelper struct OnlineHelper_t2E4F71841FE6F0B13C9845579D42E94EE517115B : public RuntimeObject { public: // YejiHuntGameMode_OnlinePK YejiHuntGameMode_OnlinePK/OnlineHelper::gameMode YejiHuntGameMode_OnlinePK_tDDA2472446AEB0BB1728C88EE9B5DBE80B4CDCAA * ___gameMode_0; // SocketPlayer YejiHuntGameMode_OnlinePK/OnlineHelper::socketPlayer SocketPlayer_t3D341EF990F6F99AFA174DF42451ECD05E909D29 * ___socketPlayer_1; // System.Int32 YejiHuntGameMode_OnlinePK/OnlineHelper::myPlayerIndex int32_t ___myPlayerIndex_2; // System.Int32 YejiHuntGameMode_OnlinePK/OnlineHelper::roundID int32_t ___roundID_3; // System.Boolean YejiHuntGameMode_OnlinePK/OnlineHelper::gameEnd bool ___gameEnd_4; // UnityEngine.WaitForSecondsRealtime YejiHuntGameMode_OnlinePK/OnlineHelper::uploadOnceTime WaitForSecondsRealtime_t04F2884A9814C3E4E415E788AFE56B5928577C40 * ___uploadOnceTime_5; // UnityEngine.Quaternion YejiHuntGameMode_OnlinePK/OnlineHelper::bowTargetQua Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___bowTargetQua_6; // System.Boolean YejiHuntGameMode_OnlinePK/OnlineHelper::hasBowTargBtQua bool ___hasBowTargBtQua_7; // System.Int32 YejiHuntGameMode_OnlinePK/OnlineHelper::lastRoundID int32_t ___lastRoundID_8; // System.Collections.Generic.Dictionary`2 YejiHuntGameMode_OnlinePK/OnlineHelper::arrowSyncMap Dictionary_2_t7770EBD8CD2A9F2B15123613B176DC9B6B9E50BA * ___arrowSyncMap_9; // System.Collections.Generic.Dictionary`2 YejiHuntGameMode_OnlinePK/OnlineHelper::animalSyncMap Dictionary_2_t4BDF8B7A93F3D9B02BEBEC97EA442EFF60CDA1B2 * ___animalSyncMap_10; public: inline static int32_t get_offset_of_gameMode_0() { return static_cast(offsetof(OnlineHelper_t2E4F71841FE6F0B13C9845579D42E94EE517115B, ___gameMode_0)); } inline YejiHuntGameMode_OnlinePK_tDDA2472446AEB0BB1728C88EE9B5DBE80B4CDCAA * get_gameMode_0() const { return ___gameMode_0; } inline YejiHuntGameMode_OnlinePK_tDDA2472446AEB0BB1728C88EE9B5DBE80B4CDCAA ** get_address_of_gameMode_0() { return &___gameMode_0; } inline void set_gameMode_0(YejiHuntGameMode_OnlinePK_tDDA2472446AEB0BB1728C88EE9B5DBE80B4CDCAA * value) { ___gameMode_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___gameMode_0), (void*)value); } inline static int32_t get_offset_of_socketPlayer_1() { return static_cast(offsetof(OnlineHelper_t2E4F71841FE6F0B13C9845579D42E94EE517115B, ___socketPlayer_1)); } inline SocketPlayer_t3D341EF990F6F99AFA174DF42451ECD05E909D29 * get_socketPlayer_1() const { return ___socketPlayer_1; } inline SocketPlayer_t3D341EF990F6F99AFA174DF42451ECD05E909D29 ** get_address_of_socketPlayer_1() { return &___socketPlayer_1; } inline void set_socketPlayer_1(SocketPlayer_t3D341EF990F6F99AFA174DF42451ECD05E909D29 * value) { ___socketPlayer_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___socketPlayer_1), (void*)value); } inline static int32_t get_offset_of_myPlayerIndex_2() { return static_cast(offsetof(OnlineHelper_t2E4F71841FE6F0B13C9845579D42E94EE517115B, ___myPlayerIndex_2)); } inline int32_t get_myPlayerIndex_2() const { return ___myPlayerIndex_2; } inline int32_t* get_address_of_myPlayerIndex_2() { return &___myPlayerIndex_2; } inline void set_myPlayerIndex_2(int32_t value) { ___myPlayerIndex_2 = value; } inline static int32_t get_offset_of_roundID_3() { return static_cast(offsetof(OnlineHelper_t2E4F71841FE6F0B13C9845579D42E94EE517115B, ___roundID_3)); } inline int32_t get_roundID_3() const { return ___roundID_3; } inline int32_t* get_address_of_roundID_3() { return &___roundID_3; } inline void set_roundID_3(int32_t value) { ___roundID_3 = value; } inline static int32_t get_offset_of_gameEnd_4() { return static_cast(offsetof(OnlineHelper_t2E4F71841FE6F0B13C9845579D42E94EE517115B, ___gameEnd_4)); } inline bool get_gameEnd_4() const { return ___gameEnd_4; } inline bool* get_address_of_gameEnd_4() { return &___gameEnd_4; } inline void set_gameEnd_4(bool value) { ___gameEnd_4 = value; } inline static int32_t get_offset_of_uploadOnceTime_5() { return static_cast(offsetof(OnlineHelper_t2E4F71841FE6F0B13C9845579D42E94EE517115B, ___uploadOnceTime_5)); } inline WaitForSecondsRealtime_t04F2884A9814C3E4E415E788AFE56B5928577C40 * get_uploadOnceTime_5() const { return ___uploadOnceTime_5; } inline WaitForSecondsRealtime_t04F2884A9814C3E4E415E788AFE56B5928577C40 ** get_address_of_uploadOnceTime_5() { return &___uploadOnceTime_5; } inline void set_uploadOnceTime_5(WaitForSecondsRealtime_t04F2884A9814C3E4E415E788AFE56B5928577C40 * value) { ___uploadOnceTime_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___uploadOnceTime_5), (void*)value); } inline static int32_t get_offset_of_bowTargetQua_6() { return static_cast(offsetof(OnlineHelper_t2E4F71841FE6F0B13C9845579D42E94EE517115B, ___bowTargetQua_6)); } inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 get_bowTargetQua_6() const { return ___bowTargetQua_6; } inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * get_address_of_bowTargetQua_6() { return &___bowTargetQua_6; } inline void set_bowTargetQua_6(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 value) { ___bowTargetQua_6 = value; } inline static int32_t get_offset_of_hasBowTargBtQua_7() { return static_cast(offsetof(OnlineHelper_t2E4F71841FE6F0B13C9845579D42E94EE517115B, ___hasBowTargBtQua_7)); } inline bool get_hasBowTargBtQua_7() const { return ___hasBowTargBtQua_7; } inline bool* get_address_of_hasBowTargBtQua_7() { return &___hasBowTargBtQua_7; } inline void set_hasBowTargBtQua_7(bool value) { ___hasBowTargBtQua_7 = value; } inline static int32_t get_offset_of_lastRoundID_8() { return static_cast(offsetof(OnlineHelper_t2E4F71841FE6F0B13C9845579D42E94EE517115B, ___lastRoundID_8)); } inline int32_t get_lastRoundID_8() const { return ___lastRoundID_8; } inline int32_t* get_address_of_lastRoundID_8() { return &___lastRoundID_8; } inline void set_lastRoundID_8(int32_t value) { ___lastRoundID_8 = value; } inline static int32_t get_offset_of_arrowSyncMap_9() { return static_cast(offsetof(OnlineHelper_t2E4F71841FE6F0B13C9845579D42E94EE517115B, ___arrowSyncMap_9)); } inline Dictionary_2_t7770EBD8CD2A9F2B15123613B176DC9B6B9E50BA * get_arrowSyncMap_9() const { return ___arrowSyncMap_9; } inline Dictionary_2_t7770EBD8CD2A9F2B15123613B176DC9B6B9E50BA ** get_address_of_arrowSyncMap_9() { return &___arrowSyncMap_9; } inline void set_arrowSyncMap_9(Dictionary_2_t7770EBD8CD2A9F2B15123613B176DC9B6B9E50BA * value) { ___arrowSyncMap_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___arrowSyncMap_9), (void*)value); } inline static int32_t get_offset_of_animalSyncMap_10() { return static_cast(offsetof(OnlineHelper_t2E4F71841FE6F0B13C9845579D42E94EE517115B, ___animalSyncMap_10)); } inline Dictionary_2_t4BDF8B7A93F3D9B02BEBEC97EA442EFF60CDA1B2 * get_animalSyncMap_10() const { return ___animalSyncMap_10; } inline Dictionary_2_t4BDF8B7A93F3D9B02BEBEC97EA442EFF60CDA1B2 ** get_address_of_animalSyncMap_10() { return &___animalSyncMap_10; } inline void set_animalSyncMap_10(Dictionary_2_t4BDF8B7A93F3D9B02BEBEC97EA442EFF60CDA1B2 * value) { ___animalSyncMap_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___animalSyncMap_10), (void*)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); } }; // UnityEngine.Component struct Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A { public: public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.CryptoException struct CryptoException_t4585FEA3F67B6ED045D6C9401A9C96B1234E3F27 : public Exception_t { public: public: }; // BestHTTP.Decompression.Zlib.DeflateManager struct DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 : public RuntimeObject { public: // BestHTTP.Decompression.Zlib.DeflateManager/CompressFunc BestHTTP.Decompression.Zlib.DeflateManager::DeflateFunction CompressFunc_tE8A822B7100290E68B533E359BAB7D9889880059 * ___DeflateFunction_2; // BestHTTP.Decompression.Zlib.ZlibCodec BestHTTP.Decompression.Zlib.DeflateManager::_codec ZlibCodec_tCA850DFFAD9256CE375665BA409A3B5F27B6C0A1 * ____codec_21; // System.Int32 BestHTTP.Decompression.Zlib.DeflateManager::status int32_t ___status_22; // System.Byte[] BestHTTP.Decompression.Zlib.DeflateManager::pending ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___pending_23; // System.Int32 BestHTTP.Decompression.Zlib.DeflateManager::nextPending int32_t ___nextPending_24; // System.Int32 BestHTTP.Decompression.Zlib.DeflateManager::pendingCount int32_t ___pendingCount_25; // System.SByte BestHTTP.Decompression.Zlib.DeflateManager::data_type int8_t ___data_type_26; // System.Int32 BestHTTP.Decompression.Zlib.DeflateManager::last_flush int32_t ___last_flush_27; // System.Int32 BestHTTP.Decompression.Zlib.DeflateManager::w_size int32_t ___w_size_28; // System.Int32 BestHTTP.Decompression.Zlib.DeflateManager::w_bits int32_t ___w_bits_29; // System.Int32 BestHTTP.Decompression.Zlib.DeflateManager::w_mask int32_t ___w_mask_30; // System.Byte[] BestHTTP.Decompression.Zlib.DeflateManager::window ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___window_31; // System.Int32 BestHTTP.Decompression.Zlib.DeflateManager::window_size int32_t ___window_size_32; // System.Int16[] BestHTTP.Decompression.Zlib.DeflateManager::prev Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* ___prev_33; // System.Int16[] BestHTTP.Decompression.Zlib.DeflateManager::head Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* ___head_34; // System.Int32 BestHTTP.Decompression.Zlib.DeflateManager::ins_h int32_t ___ins_h_35; // System.Int32 BestHTTP.Decompression.Zlib.DeflateManager::hash_size int32_t ___hash_size_36; // System.Int32 BestHTTP.Decompression.Zlib.DeflateManager::hash_bits int32_t ___hash_bits_37; // System.Int32 BestHTTP.Decompression.Zlib.DeflateManager::hash_mask int32_t ___hash_mask_38; // System.Int32 BestHTTP.Decompression.Zlib.DeflateManager::hash_shift int32_t ___hash_shift_39; // System.Int32 BestHTTP.Decompression.Zlib.DeflateManager::block_start int32_t ___block_start_40; // BestHTTP.Decompression.Zlib.DeflateManager/Config BestHTTP.Decompression.Zlib.DeflateManager::config Config_tB7037654EED17DA63573B87ABB5D35D5DCA9DFBB * ___config_41; // System.Int32 BestHTTP.Decompression.Zlib.DeflateManager::match_length int32_t ___match_length_42; // System.Int32 BestHTTP.Decompression.Zlib.DeflateManager::prev_match int32_t ___prev_match_43; // System.Int32 BestHTTP.Decompression.Zlib.DeflateManager::match_available int32_t ___match_available_44; // System.Int32 BestHTTP.Decompression.Zlib.DeflateManager::strstart int32_t ___strstart_45; // System.Int32 BestHTTP.Decompression.Zlib.DeflateManager::match_start int32_t ___match_start_46; // System.Int32 BestHTTP.Decompression.Zlib.DeflateManager::lookahead int32_t ___lookahead_47; // System.Int32 BestHTTP.Decompression.Zlib.DeflateManager::prev_length int32_t ___prev_length_48; // BestHTTP.Decompression.Zlib.CompressionLevel BestHTTP.Decompression.Zlib.DeflateManager::compressionLevel int32_t ___compressionLevel_49; // BestHTTP.Decompression.Zlib.CompressionStrategy BestHTTP.Decompression.Zlib.DeflateManager::compressionStrategy int32_t ___compressionStrategy_50; // System.Int16[] BestHTTP.Decompression.Zlib.DeflateManager::dyn_ltree Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* ___dyn_ltree_51; // System.Int16[] BestHTTP.Decompression.Zlib.DeflateManager::dyn_dtree Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* ___dyn_dtree_52; // System.Int16[] BestHTTP.Decompression.Zlib.DeflateManager::bl_tree Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* ___bl_tree_53; // BestHTTP.Decompression.Zlib.ZTree BestHTTP.Decompression.Zlib.DeflateManager::treeLiterals ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF * ___treeLiterals_54; // BestHTTP.Decompression.Zlib.ZTree BestHTTP.Decompression.Zlib.DeflateManager::treeDistances ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF * ___treeDistances_55; // BestHTTP.Decompression.Zlib.ZTree BestHTTP.Decompression.Zlib.DeflateManager::treeBitLengths ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF * ___treeBitLengths_56; // System.Int16[] BestHTTP.Decompression.Zlib.DeflateManager::bl_count Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* ___bl_count_57; // System.Int32[] BestHTTP.Decompression.Zlib.DeflateManager::heap Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___heap_58; // System.Int32 BestHTTP.Decompression.Zlib.DeflateManager::heap_len int32_t ___heap_len_59; // System.Int32 BestHTTP.Decompression.Zlib.DeflateManager::heap_max int32_t ___heap_max_60; // System.SByte[] BestHTTP.Decompression.Zlib.DeflateManager::depth SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7* ___depth_61; // System.Int32 BestHTTP.Decompression.Zlib.DeflateManager::_lengthOffset int32_t ____lengthOffset_62; // System.Int32 BestHTTP.Decompression.Zlib.DeflateManager::lit_bufsize int32_t ___lit_bufsize_63; // System.Int32 BestHTTP.Decompression.Zlib.DeflateManager::last_lit int32_t ___last_lit_64; // System.Int32 BestHTTP.Decompression.Zlib.DeflateManager::_distanceOffset int32_t ____distanceOffset_65; // System.Int32 BestHTTP.Decompression.Zlib.DeflateManager::opt_len int32_t ___opt_len_66; // System.Int32 BestHTTP.Decompression.Zlib.DeflateManager::static_len int32_t ___static_len_67; // System.Int32 BestHTTP.Decompression.Zlib.DeflateManager::matches int32_t ___matches_68; // System.Int32 BestHTTP.Decompression.Zlib.DeflateManager::last_eob_len int32_t ___last_eob_len_69; // System.Int16 BestHTTP.Decompression.Zlib.DeflateManager::bi_buf int16_t ___bi_buf_70; // System.Int32 BestHTTP.Decompression.Zlib.DeflateManager::bi_valid int32_t ___bi_valid_71; // System.Boolean BestHTTP.Decompression.Zlib.DeflateManager::Rfc1950BytesEmitted bool ___Rfc1950BytesEmitted_72; // System.Boolean BestHTTP.Decompression.Zlib.DeflateManager::_WantRfc1950HeaderBytes bool ____WantRfc1950HeaderBytes_73; public: inline static int32_t get_offset_of_DeflateFunction_2() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ___DeflateFunction_2)); } inline CompressFunc_tE8A822B7100290E68B533E359BAB7D9889880059 * get_DeflateFunction_2() const { return ___DeflateFunction_2; } inline CompressFunc_tE8A822B7100290E68B533E359BAB7D9889880059 ** get_address_of_DeflateFunction_2() { return &___DeflateFunction_2; } inline void set_DeflateFunction_2(CompressFunc_tE8A822B7100290E68B533E359BAB7D9889880059 * value) { ___DeflateFunction_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___DeflateFunction_2), (void*)value); } inline static int32_t get_offset_of__codec_21() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ____codec_21)); } inline ZlibCodec_tCA850DFFAD9256CE375665BA409A3B5F27B6C0A1 * get__codec_21() const { return ____codec_21; } inline ZlibCodec_tCA850DFFAD9256CE375665BA409A3B5F27B6C0A1 ** get_address_of__codec_21() { return &____codec_21; } inline void set__codec_21(ZlibCodec_tCA850DFFAD9256CE375665BA409A3B5F27B6C0A1 * value) { ____codec_21 = value; Il2CppCodeGenWriteBarrier((void**)(&____codec_21), (void*)value); } inline static int32_t get_offset_of_status_22() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ___status_22)); } inline int32_t get_status_22() const { return ___status_22; } inline int32_t* get_address_of_status_22() { return &___status_22; } inline void set_status_22(int32_t value) { ___status_22 = value; } inline static int32_t get_offset_of_pending_23() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ___pending_23)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_pending_23() const { return ___pending_23; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_pending_23() { return &___pending_23; } inline void set_pending_23(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___pending_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___pending_23), (void*)value); } inline static int32_t get_offset_of_nextPending_24() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ___nextPending_24)); } inline int32_t get_nextPending_24() const { return ___nextPending_24; } inline int32_t* get_address_of_nextPending_24() { return &___nextPending_24; } inline void set_nextPending_24(int32_t value) { ___nextPending_24 = value; } inline static int32_t get_offset_of_pendingCount_25() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ___pendingCount_25)); } inline int32_t get_pendingCount_25() const { return ___pendingCount_25; } inline int32_t* get_address_of_pendingCount_25() { return &___pendingCount_25; } inline void set_pendingCount_25(int32_t value) { ___pendingCount_25 = value; } inline static int32_t get_offset_of_data_type_26() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ___data_type_26)); } inline int8_t get_data_type_26() const { return ___data_type_26; } inline int8_t* get_address_of_data_type_26() { return &___data_type_26; } inline void set_data_type_26(int8_t value) { ___data_type_26 = value; } inline static int32_t get_offset_of_last_flush_27() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ___last_flush_27)); } inline int32_t get_last_flush_27() const { return ___last_flush_27; } inline int32_t* get_address_of_last_flush_27() { return &___last_flush_27; } inline void set_last_flush_27(int32_t value) { ___last_flush_27 = value; } inline static int32_t get_offset_of_w_size_28() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ___w_size_28)); } inline int32_t get_w_size_28() const { return ___w_size_28; } inline int32_t* get_address_of_w_size_28() { return &___w_size_28; } inline void set_w_size_28(int32_t value) { ___w_size_28 = value; } inline static int32_t get_offset_of_w_bits_29() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ___w_bits_29)); } inline int32_t get_w_bits_29() const { return ___w_bits_29; } inline int32_t* get_address_of_w_bits_29() { return &___w_bits_29; } inline void set_w_bits_29(int32_t value) { ___w_bits_29 = value; } inline static int32_t get_offset_of_w_mask_30() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ___w_mask_30)); } inline int32_t get_w_mask_30() const { return ___w_mask_30; } inline int32_t* get_address_of_w_mask_30() { return &___w_mask_30; } inline void set_w_mask_30(int32_t value) { ___w_mask_30 = value; } inline static int32_t get_offset_of_window_31() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ___window_31)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_window_31() const { return ___window_31; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_window_31() { return &___window_31; } inline void set_window_31(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___window_31 = value; Il2CppCodeGenWriteBarrier((void**)(&___window_31), (void*)value); } inline static int32_t get_offset_of_window_size_32() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ___window_size_32)); } inline int32_t get_window_size_32() const { return ___window_size_32; } inline int32_t* get_address_of_window_size_32() { return &___window_size_32; } inline void set_window_size_32(int32_t value) { ___window_size_32 = value; } inline static int32_t get_offset_of_prev_33() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ___prev_33)); } inline Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* get_prev_33() const { return ___prev_33; } inline Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD** get_address_of_prev_33() { return &___prev_33; } inline void set_prev_33(Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* value) { ___prev_33 = value; Il2CppCodeGenWriteBarrier((void**)(&___prev_33), (void*)value); } inline static int32_t get_offset_of_head_34() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ___head_34)); } inline Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* get_head_34() const { return ___head_34; } inline Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD** get_address_of_head_34() { return &___head_34; } inline void set_head_34(Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* value) { ___head_34 = value; Il2CppCodeGenWriteBarrier((void**)(&___head_34), (void*)value); } inline static int32_t get_offset_of_ins_h_35() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ___ins_h_35)); } inline int32_t get_ins_h_35() const { return ___ins_h_35; } inline int32_t* get_address_of_ins_h_35() { return &___ins_h_35; } inline void set_ins_h_35(int32_t value) { ___ins_h_35 = value; } inline static int32_t get_offset_of_hash_size_36() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ___hash_size_36)); } inline int32_t get_hash_size_36() const { return ___hash_size_36; } inline int32_t* get_address_of_hash_size_36() { return &___hash_size_36; } inline void set_hash_size_36(int32_t value) { ___hash_size_36 = value; } inline static int32_t get_offset_of_hash_bits_37() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ___hash_bits_37)); } inline int32_t get_hash_bits_37() const { return ___hash_bits_37; } inline int32_t* get_address_of_hash_bits_37() { return &___hash_bits_37; } inline void set_hash_bits_37(int32_t value) { ___hash_bits_37 = value; } inline static int32_t get_offset_of_hash_mask_38() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ___hash_mask_38)); } inline int32_t get_hash_mask_38() const { return ___hash_mask_38; } inline int32_t* get_address_of_hash_mask_38() { return &___hash_mask_38; } inline void set_hash_mask_38(int32_t value) { ___hash_mask_38 = value; } inline static int32_t get_offset_of_hash_shift_39() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ___hash_shift_39)); } inline int32_t get_hash_shift_39() const { return ___hash_shift_39; } inline int32_t* get_address_of_hash_shift_39() { return &___hash_shift_39; } inline void set_hash_shift_39(int32_t value) { ___hash_shift_39 = value; } inline static int32_t get_offset_of_block_start_40() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ___block_start_40)); } inline int32_t get_block_start_40() const { return ___block_start_40; } inline int32_t* get_address_of_block_start_40() { return &___block_start_40; } inline void set_block_start_40(int32_t value) { ___block_start_40 = value; } inline static int32_t get_offset_of_config_41() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ___config_41)); } inline Config_tB7037654EED17DA63573B87ABB5D35D5DCA9DFBB * get_config_41() const { return ___config_41; } inline Config_tB7037654EED17DA63573B87ABB5D35D5DCA9DFBB ** get_address_of_config_41() { return &___config_41; } inline void set_config_41(Config_tB7037654EED17DA63573B87ABB5D35D5DCA9DFBB * value) { ___config_41 = value; Il2CppCodeGenWriteBarrier((void**)(&___config_41), (void*)value); } inline static int32_t get_offset_of_match_length_42() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ___match_length_42)); } inline int32_t get_match_length_42() const { return ___match_length_42; } inline int32_t* get_address_of_match_length_42() { return &___match_length_42; } inline void set_match_length_42(int32_t value) { ___match_length_42 = value; } inline static int32_t get_offset_of_prev_match_43() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ___prev_match_43)); } inline int32_t get_prev_match_43() const { return ___prev_match_43; } inline int32_t* get_address_of_prev_match_43() { return &___prev_match_43; } inline void set_prev_match_43(int32_t value) { ___prev_match_43 = value; } inline static int32_t get_offset_of_match_available_44() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ___match_available_44)); } inline int32_t get_match_available_44() const { return ___match_available_44; } inline int32_t* get_address_of_match_available_44() { return &___match_available_44; } inline void set_match_available_44(int32_t value) { ___match_available_44 = value; } inline static int32_t get_offset_of_strstart_45() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ___strstart_45)); } inline int32_t get_strstart_45() const { return ___strstart_45; } inline int32_t* get_address_of_strstart_45() { return &___strstart_45; } inline void set_strstart_45(int32_t value) { ___strstart_45 = value; } inline static int32_t get_offset_of_match_start_46() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ___match_start_46)); } inline int32_t get_match_start_46() const { return ___match_start_46; } inline int32_t* get_address_of_match_start_46() { return &___match_start_46; } inline void set_match_start_46(int32_t value) { ___match_start_46 = value; } inline static int32_t get_offset_of_lookahead_47() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ___lookahead_47)); } inline int32_t get_lookahead_47() const { return ___lookahead_47; } inline int32_t* get_address_of_lookahead_47() { return &___lookahead_47; } inline void set_lookahead_47(int32_t value) { ___lookahead_47 = value; } inline static int32_t get_offset_of_prev_length_48() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ___prev_length_48)); } inline int32_t get_prev_length_48() const { return ___prev_length_48; } inline int32_t* get_address_of_prev_length_48() { return &___prev_length_48; } inline void set_prev_length_48(int32_t value) { ___prev_length_48 = value; } inline static int32_t get_offset_of_compressionLevel_49() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ___compressionLevel_49)); } inline int32_t get_compressionLevel_49() const { return ___compressionLevel_49; } inline int32_t* get_address_of_compressionLevel_49() { return &___compressionLevel_49; } inline void set_compressionLevel_49(int32_t value) { ___compressionLevel_49 = value; } inline static int32_t get_offset_of_compressionStrategy_50() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ___compressionStrategy_50)); } inline int32_t get_compressionStrategy_50() const { return ___compressionStrategy_50; } inline int32_t* get_address_of_compressionStrategy_50() { return &___compressionStrategy_50; } inline void set_compressionStrategy_50(int32_t value) { ___compressionStrategy_50 = value; } inline static int32_t get_offset_of_dyn_ltree_51() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ___dyn_ltree_51)); } inline Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* get_dyn_ltree_51() const { return ___dyn_ltree_51; } inline Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD** get_address_of_dyn_ltree_51() { return &___dyn_ltree_51; } inline void set_dyn_ltree_51(Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* value) { ___dyn_ltree_51 = value; Il2CppCodeGenWriteBarrier((void**)(&___dyn_ltree_51), (void*)value); } inline static int32_t get_offset_of_dyn_dtree_52() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ___dyn_dtree_52)); } inline Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* get_dyn_dtree_52() const { return ___dyn_dtree_52; } inline Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD** get_address_of_dyn_dtree_52() { return &___dyn_dtree_52; } inline void set_dyn_dtree_52(Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* value) { ___dyn_dtree_52 = value; Il2CppCodeGenWriteBarrier((void**)(&___dyn_dtree_52), (void*)value); } inline static int32_t get_offset_of_bl_tree_53() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ___bl_tree_53)); } inline Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* get_bl_tree_53() const { return ___bl_tree_53; } inline Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD** get_address_of_bl_tree_53() { return &___bl_tree_53; } inline void set_bl_tree_53(Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* value) { ___bl_tree_53 = value; Il2CppCodeGenWriteBarrier((void**)(&___bl_tree_53), (void*)value); } inline static int32_t get_offset_of_treeLiterals_54() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ___treeLiterals_54)); } inline ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF * get_treeLiterals_54() const { return ___treeLiterals_54; } inline ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF ** get_address_of_treeLiterals_54() { return &___treeLiterals_54; } inline void set_treeLiterals_54(ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF * value) { ___treeLiterals_54 = value; Il2CppCodeGenWriteBarrier((void**)(&___treeLiterals_54), (void*)value); } inline static int32_t get_offset_of_treeDistances_55() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ___treeDistances_55)); } inline ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF * get_treeDistances_55() const { return ___treeDistances_55; } inline ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF ** get_address_of_treeDistances_55() { return &___treeDistances_55; } inline void set_treeDistances_55(ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF * value) { ___treeDistances_55 = value; Il2CppCodeGenWriteBarrier((void**)(&___treeDistances_55), (void*)value); } inline static int32_t get_offset_of_treeBitLengths_56() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ___treeBitLengths_56)); } inline ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF * get_treeBitLengths_56() const { return ___treeBitLengths_56; } inline ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF ** get_address_of_treeBitLengths_56() { return &___treeBitLengths_56; } inline void set_treeBitLengths_56(ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF * value) { ___treeBitLengths_56 = value; Il2CppCodeGenWriteBarrier((void**)(&___treeBitLengths_56), (void*)value); } inline static int32_t get_offset_of_bl_count_57() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ___bl_count_57)); } inline Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* get_bl_count_57() const { return ___bl_count_57; } inline Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD** get_address_of_bl_count_57() { return &___bl_count_57; } inline void set_bl_count_57(Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* value) { ___bl_count_57 = value; Il2CppCodeGenWriteBarrier((void**)(&___bl_count_57), (void*)value); } inline static int32_t get_offset_of_heap_58() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ___heap_58)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_heap_58() const { return ___heap_58; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_heap_58() { return &___heap_58; } inline void set_heap_58(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___heap_58 = value; Il2CppCodeGenWriteBarrier((void**)(&___heap_58), (void*)value); } inline static int32_t get_offset_of_heap_len_59() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ___heap_len_59)); } inline int32_t get_heap_len_59() const { return ___heap_len_59; } inline int32_t* get_address_of_heap_len_59() { return &___heap_len_59; } inline void set_heap_len_59(int32_t value) { ___heap_len_59 = value; } inline static int32_t get_offset_of_heap_max_60() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ___heap_max_60)); } inline int32_t get_heap_max_60() const { return ___heap_max_60; } inline int32_t* get_address_of_heap_max_60() { return &___heap_max_60; } inline void set_heap_max_60(int32_t value) { ___heap_max_60 = value; } inline static int32_t get_offset_of_depth_61() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ___depth_61)); } inline SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7* get_depth_61() const { return ___depth_61; } inline SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7** get_address_of_depth_61() { return &___depth_61; } inline void set_depth_61(SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7* value) { ___depth_61 = value; Il2CppCodeGenWriteBarrier((void**)(&___depth_61), (void*)value); } inline static int32_t get_offset_of__lengthOffset_62() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ____lengthOffset_62)); } inline int32_t get__lengthOffset_62() const { return ____lengthOffset_62; } inline int32_t* get_address_of__lengthOffset_62() { return &____lengthOffset_62; } inline void set__lengthOffset_62(int32_t value) { ____lengthOffset_62 = value; } inline static int32_t get_offset_of_lit_bufsize_63() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ___lit_bufsize_63)); } inline int32_t get_lit_bufsize_63() const { return ___lit_bufsize_63; } inline int32_t* get_address_of_lit_bufsize_63() { return &___lit_bufsize_63; } inline void set_lit_bufsize_63(int32_t value) { ___lit_bufsize_63 = value; } inline static int32_t get_offset_of_last_lit_64() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ___last_lit_64)); } inline int32_t get_last_lit_64() const { return ___last_lit_64; } inline int32_t* get_address_of_last_lit_64() { return &___last_lit_64; } inline void set_last_lit_64(int32_t value) { ___last_lit_64 = value; } inline static int32_t get_offset_of__distanceOffset_65() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ____distanceOffset_65)); } inline int32_t get__distanceOffset_65() const { return ____distanceOffset_65; } inline int32_t* get_address_of__distanceOffset_65() { return &____distanceOffset_65; } inline void set__distanceOffset_65(int32_t value) { ____distanceOffset_65 = value; } inline static int32_t get_offset_of_opt_len_66() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ___opt_len_66)); } inline int32_t get_opt_len_66() const { return ___opt_len_66; } inline int32_t* get_address_of_opt_len_66() { return &___opt_len_66; } inline void set_opt_len_66(int32_t value) { ___opt_len_66 = value; } inline static int32_t get_offset_of_static_len_67() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ___static_len_67)); } inline int32_t get_static_len_67() const { return ___static_len_67; } inline int32_t* get_address_of_static_len_67() { return &___static_len_67; } inline void set_static_len_67(int32_t value) { ___static_len_67 = value; } inline static int32_t get_offset_of_matches_68() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ___matches_68)); } inline int32_t get_matches_68() const { return ___matches_68; } inline int32_t* get_address_of_matches_68() { return &___matches_68; } inline void set_matches_68(int32_t value) { ___matches_68 = value; } inline static int32_t get_offset_of_last_eob_len_69() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ___last_eob_len_69)); } inline int32_t get_last_eob_len_69() const { return ___last_eob_len_69; } inline int32_t* get_address_of_last_eob_len_69() { return &___last_eob_len_69; } inline void set_last_eob_len_69(int32_t value) { ___last_eob_len_69 = value; } inline static int32_t get_offset_of_bi_buf_70() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ___bi_buf_70)); } inline int16_t get_bi_buf_70() const { return ___bi_buf_70; } inline int16_t* get_address_of_bi_buf_70() { return &___bi_buf_70; } inline void set_bi_buf_70(int16_t value) { ___bi_buf_70 = value; } inline static int32_t get_offset_of_bi_valid_71() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ___bi_valid_71)); } inline int32_t get_bi_valid_71() const { return ___bi_valid_71; } inline int32_t* get_address_of_bi_valid_71() { return &___bi_valid_71; } inline void set_bi_valid_71(int32_t value) { ___bi_valid_71 = value; } inline static int32_t get_offset_of_Rfc1950BytesEmitted_72() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ___Rfc1950BytesEmitted_72)); } inline bool get_Rfc1950BytesEmitted_72() const { return ___Rfc1950BytesEmitted_72; } inline bool* get_address_of_Rfc1950BytesEmitted_72() { return &___Rfc1950BytesEmitted_72; } inline void set_Rfc1950BytesEmitted_72(bool value) { ___Rfc1950BytesEmitted_72 = value; } inline static int32_t get_offset_of__WantRfc1950HeaderBytes_73() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142, ____WantRfc1950HeaderBytes_73)); } inline bool get__WantRfc1950HeaderBytes_73() const { return ____WantRfc1950HeaderBytes_73; } inline bool* get_address_of__WantRfc1950HeaderBytes_73() { return &____WantRfc1950HeaderBytes_73; } inline void set__WantRfc1950HeaderBytes_73(bool value) { ____WantRfc1950HeaderBytes_73 = value; } }; struct DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142_StaticFields { public: // System.Int32 BestHTTP.Decompression.Zlib.DeflateManager::MEM_LEVEL_MAX int32_t ___MEM_LEVEL_MAX_0; // System.Int32 BestHTTP.Decompression.Zlib.DeflateManager::MEM_LEVEL_DEFAULT int32_t ___MEM_LEVEL_DEFAULT_1; // System.String[] BestHTTP.Decompression.Zlib.DeflateManager::_ErrorMessage StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ____ErrorMessage_3; // System.Int32 BestHTTP.Decompression.Zlib.DeflateManager::PRESET_DICT int32_t ___PRESET_DICT_4; // System.Int32 BestHTTP.Decompression.Zlib.DeflateManager::INIT_STATE int32_t ___INIT_STATE_5; // System.Int32 BestHTTP.Decompression.Zlib.DeflateManager::BUSY_STATE int32_t ___BUSY_STATE_6; // System.Int32 BestHTTP.Decompression.Zlib.DeflateManager::FINISH_STATE int32_t ___FINISH_STATE_7; // System.Int32 BestHTTP.Decompression.Zlib.DeflateManager::Z_DEFLATED int32_t ___Z_DEFLATED_8; // System.Int32 BestHTTP.Decompression.Zlib.DeflateManager::STORED_BLOCK int32_t ___STORED_BLOCK_9; // System.Int32 BestHTTP.Decompression.Zlib.DeflateManager::STATIC_TREES int32_t ___STATIC_TREES_10; // System.Int32 BestHTTP.Decompression.Zlib.DeflateManager::DYN_TREES int32_t ___DYN_TREES_11; // System.Int32 BestHTTP.Decompression.Zlib.DeflateManager::Z_BINARY int32_t ___Z_BINARY_12; // System.Int32 BestHTTP.Decompression.Zlib.DeflateManager::Z_ASCII int32_t ___Z_ASCII_13; // System.Int32 BestHTTP.Decompression.Zlib.DeflateManager::Z_UNKNOWN int32_t ___Z_UNKNOWN_14; // System.Int32 BestHTTP.Decompression.Zlib.DeflateManager::Buf_size int32_t ___Buf_size_15; // System.Int32 BestHTTP.Decompression.Zlib.DeflateManager::MIN_MATCH int32_t ___MIN_MATCH_16; // System.Int32 BestHTTP.Decompression.Zlib.DeflateManager::MAX_MATCH int32_t ___MAX_MATCH_17; // System.Int32 BestHTTP.Decompression.Zlib.DeflateManager::MIN_LOOKAHEAD int32_t ___MIN_LOOKAHEAD_18; // System.Int32 BestHTTP.Decompression.Zlib.DeflateManager::HEAP_SIZE int32_t ___HEAP_SIZE_19; // System.Int32 BestHTTP.Decompression.Zlib.DeflateManager::END_BLOCK int32_t ___END_BLOCK_20; public: inline static int32_t get_offset_of_MEM_LEVEL_MAX_0() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142_StaticFields, ___MEM_LEVEL_MAX_0)); } inline int32_t get_MEM_LEVEL_MAX_0() const { return ___MEM_LEVEL_MAX_0; } inline int32_t* get_address_of_MEM_LEVEL_MAX_0() { return &___MEM_LEVEL_MAX_0; } inline void set_MEM_LEVEL_MAX_0(int32_t value) { ___MEM_LEVEL_MAX_0 = value; } inline static int32_t get_offset_of_MEM_LEVEL_DEFAULT_1() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142_StaticFields, ___MEM_LEVEL_DEFAULT_1)); } inline int32_t get_MEM_LEVEL_DEFAULT_1() const { return ___MEM_LEVEL_DEFAULT_1; } inline int32_t* get_address_of_MEM_LEVEL_DEFAULT_1() { return &___MEM_LEVEL_DEFAULT_1; } inline void set_MEM_LEVEL_DEFAULT_1(int32_t value) { ___MEM_LEVEL_DEFAULT_1 = value; } inline static int32_t get_offset_of__ErrorMessage_3() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142_StaticFields, ____ErrorMessage_3)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get__ErrorMessage_3() const { return ____ErrorMessage_3; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of__ErrorMessage_3() { return &____ErrorMessage_3; } inline void set__ErrorMessage_3(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ____ErrorMessage_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____ErrorMessage_3), (void*)value); } inline static int32_t get_offset_of_PRESET_DICT_4() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142_StaticFields, ___PRESET_DICT_4)); } inline int32_t get_PRESET_DICT_4() const { return ___PRESET_DICT_4; } inline int32_t* get_address_of_PRESET_DICT_4() { return &___PRESET_DICT_4; } inline void set_PRESET_DICT_4(int32_t value) { ___PRESET_DICT_4 = value; } inline static int32_t get_offset_of_INIT_STATE_5() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142_StaticFields, ___INIT_STATE_5)); } inline int32_t get_INIT_STATE_5() const { return ___INIT_STATE_5; } inline int32_t* get_address_of_INIT_STATE_5() { return &___INIT_STATE_5; } inline void set_INIT_STATE_5(int32_t value) { ___INIT_STATE_5 = value; } inline static int32_t get_offset_of_BUSY_STATE_6() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142_StaticFields, ___BUSY_STATE_6)); } inline int32_t get_BUSY_STATE_6() const { return ___BUSY_STATE_6; } inline int32_t* get_address_of_BUSY_STATE_6() { return &___BUSY_STATE_6; } inline void set_BUSY_STATE_6(int32_t value) { ___BUSY_STATE_6 = value; } inline static int32_t get_offset_of_FINISH_STATE_7() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142_StaticFields, ___FINISH_STATE_7)); } inline int32_t get_FINISH_STATE_7() const { return ___FINISH_STATE_7; } inline int32_t* get_address_of_FINISH_STATE_7() { return &___FINISH_STATE_7; } inline void set_FINISH_STATE_7(int32_t value) { ___FINISH_STATE_7 = value; } inline static int32_t get_offset_of_Z_DEFLATED_8() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142_StaticFields, ___Z_DEFLATED_8)); } inline int32_t get_Z_DEFLATED_8() const { return ___Z_DEFLATED_8; } inline int32_t* get_address_of_Z_DEFLATED_8() { return &___Z_DEFLATED_8; } inline void set_Z_DEFLATED_8(int32_t value) { ___Z_DEFLATED_8 = value; } inline static int32_t get_offset_of_STORED_BLOCK_9() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142_StaticFields, ___STORED_BLOCK_9)); } inline int32_t get_STORED_BLOCK_9() const { return ___STORED_BLOCK_9; } inline int32_t* get_address_of_STORED_BLOCK_9() { return &___STORED_BLOCK_9; } inline void set_STORED_BLOCK_9(int32_t value) { ___STORED_BLOCK_9 = value; } inline static int32_t get_offset_of_STATIC_TREES_10() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142_StaticFields, ___STATIC_TREES_10)); } inline int32_t get_STATIC_TREES_10() const { return ___STATIC_TREES_10; } inline int32_t* get_address_of_STATIC_TREES_10() { return &___STATIC_TREES_10; } inline void set_STATIC_TREES_10(int32_t value) { ___STATIC_TREES_10 = value; } inline static int32_t get_offset_of_DYN_TREES_11() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142_StaticFields, ___DYN_TREES_11)); } inline int32_t get_DYN_TREES_11() const { return ___DYN_TREES_11; } inline int32_t* get_address_of_DYN_TREES_11() { return &___DYN_TREES_11; } inline void set_DYN_TREES_11(int32_t value) { ___DYN_TREES_11 = value; } inline static int32_t get_offset_of_Z_BINARY_12() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142_StaticFields, ___Z_BINARY_12)); } inline int32_t get_Z_BINARY_12() const { return ___Z_BINARY_12; } inline int32_t* get_address_of_Z_BINARY_12() { return &___Z_BINARY_12; } inline void set_Z_BINARY_12(int32_t value) { ___Z_BINARY_12 = value; } inline static int32_t get_offset_of_Z_ASCII_13() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142_StaticFields, ___Z_ASCII_13)); } inline int32_t get_Z_ASCII_13() const { return ___Z_ASCII_13; } inline int32_t* get_address_of_Z_ASCII_13() { return &___Z_ASCII_13; } inline void set_Z_ASCII_13(int32_t value) { ___Z_ASCII_13 = value; } inline static int32_t get_offset_of_Z_UNKNOWN_14() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142_StaticFields, ___Z_UNKNOWN_14)); } inline int32_t get_Z_UNKNOWN_14() const { return ___Z_UNKNOWN_14; } inline int32_t* get_address_of_Z_UNKNOWN_14() { return &___Z_UNKNOWN_14; } inline void set_Z_UNKNOWN_14(int32_t value) { ___Z_UNKNOWN_14 = value; } inline static int32_t get_offset_of_Buf_size_15() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142_StaticFields, ___Buf_size_15)); } inline int32_t get_Buf_size_15() const { return ___Buf_size_15; } inline int32_t* get_address_of_Buf_size_15() { return &___Buf_size_15; } inline void set_Buf_size_15(int32_t value) { ___Buf_size_15 = value; } inline static int32_t get_offset_of_MIN_MATCH_16() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142_StaticFields, ___MIN_MATCH_16)); } inline int32_t get_MIN_MATCH_16() const { return ___MIN_MATCH_16; } inline int32_t* get_address_of_MIN_MATCH_16() { return &___MIN_MATCH_16; } inline void set_MIN_MATCH_16(int32_t value) { ___MIN_MATCH_16 = value; } inline static int32_t get_offset_of_MAX_MATCH_17() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142_StaticFields, ___MAX_MATCH_17)); } inline int32_t get_MAX_MATCH_17() const { return ___MAX_MATCH_17; } inline int32_t* get_address_of_MAX_MATCH_17() { return &___MAX_MATCH_17; } inline void set_MAX_MATCH_17(int32_t value) { ___MAX_MATCH_17 = value; } inline static int32_t get_offset_of_MIN_LOOKAHEAD_18() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142_StaticFields, ___MIN_LOOKAHEAD_18)); } inline int32_t get_MIN_LOOKAHEAD_18() const { return ___MIN_LOOKAHEAD_18; } inline int32_t* get_address_of_MIN_LOOKAHEAD_18() { return &___MIN_LOOKAHEAD_18; } inline void set_MIN_LOOKAHEAD_18(int32_t value) { ___MIN_LOOKAHEAD_18 = value; } inline static int32_t get_offset_of_HEAP_SIZE_19() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142_StaticFields, ___HEAP_SIZE_19)); } inline int32_t get_HEAP_SIZE_19() const { return ___HEAP_SIZE_19; } inline int32_t* get_address_of_HEAP_SIZE_19() { return &___HEAP_SIZE_19; } inline void set_HEAP_SIZE_19(int32_t value) { ___HEAP_SIZE_19 = value; } inline static int32_t get_offset_of_END_BLOCK_20() { return static_cast(offsetof(DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142_StaticFields, ___END_BLOCK_20)); } inline int32_t get_END_BLOCK_20() const { return ___END_BLOCK_20; } inline int32_t* get_address_of_END_BLOCK_20() { return &___END_BLOCK_20; } inline void set_END_BLOCK_20(int32_t value) { ___END_BLOCK_20 = value; } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString struct DerBitString_t305465793A47445626D3541AB8CEDE347D874524 : public DerStringBase_t6A042D217F7D84704C0AFFD73317FB834F9A2FB5 { public: // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString::mData ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___mData_3; // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString::mPadBits int32_t ___mPadBits_4; public: inline static int32_t get_offset_of_mData_3() { return static_cast(offsetof(DerBitString_t305465793A47445626D3541AB8CEDE347D874524, ___mData_3)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_mData_3() const { return ___mData_3; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_mData_3() { return &___mData_3; } inline void set_mData_3(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___mData_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___mData_3), (void*)value); } inline static int32_t get_offset_of_mPadBits_4() { return static_cast(offsetof(DerBitString_t305465793A47445626D3541AB8CEDE347D874524, ___mPadBits_4)); } inline int32_t get_mPadBits_4() const { return ___mPadBits_4; } inline int32_t* get_address_of_mPadBits_4() { return &___mPadBits_4; } inline void set_mPadBits_4(int32_t value) { ___mPadBits_4 = value; } }; struct DerBitString_t305465793A47445626D3541AB8CEDE347D874524_StaticFields { public: // System.Char[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString::table CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___table_2; public: inline static int32_t get_offset_of_table_2() { return static_cast(offsetof(DerBitString_t305465793A47445626D3541AB8CEDE347D874524_StaticFields, ___table_2)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_table_2() const { return ___table_2; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_table_2() { return &___table_2; } inline void set_table_2(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___table_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___table_2), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerNull struct DerNull_t020168AF07318033108544C00C803CD7AEB97239 : public Asn1Null_t5D40C5C3674510061A0C219CEB9849A5EF6492BC { public: // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerNull::zeroBytes ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___zeroBytes_3; public: inline static int32_t get_offset_of_zeroBytes_3() { return static_cast(offsetof(DerNull_t020168AF07318033108544C00C803CD7AEB97239, ___zeroBytes_3)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_zeroBytes_3() const { return ___zeroBytes_3; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_zeroBytes_3() { return &___zeroBytes_3; } inline void set_zeroBytes_3(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___zeroBytes_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___zeroBytes_3), (void*)value); } }; struct DerNull_t020168AF07318033108544C00C803CD7AEB97239_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerNull BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerNull::Instance DerNull_t020168AF07318033108544C00C803CD7AEB97239 * ___Instance_2; public: inline static int32_t get_offset_of_Instance_2() { return static_cast(offsetof(DerNull_t020168AF07318033108544C00C803CD7AEB97239_StaticFields, ___Instance_2)); } inline DerNull_t020168AF07318033108544C00C803CD7AEB97239 * get_Instance_2() const { return ___Instance_2; } inline DerNull_t020168AF07318033108544C00C803CD7AEB97239 ** get_address_of_Instance_2() { return &___Instance_2; } inline void set_Instance_2(DerNull_t020168AF07318033108544C00C803CD7AEB97239 * value) { ___Instance_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___Instance_2), (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerOctetString struct DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75 : public Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 { public: public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerSequence struct DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 : public Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 { public: public: }; struct DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09_StaticFields { public: // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerSequence BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerSequence::Empty DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 * ___Empty_3; public: inline static int32_t get_offset_of_Empty_3() { return static_cast(offsetof(DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09_StaticFields, ___Empty_3)); } inline DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 * get_Empty_3() const { return ___Empty_3; } inline DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 ** get_address_of_Empty_3() { return &___Empty_3; } inline void set_Empty_3(DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 * value) { ___Empty_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___Empty_3), (void*)value); } }; // UnityEngine.GameObject struct GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A { public: public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.GeneralSecurityException struct GeneralSecurityException_tB77B003D334D962B16ED6BEB5AD4567AD5B618BA : public Exception_t { public: public: }; // 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; }; // System.SystemException struct SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 : public Exception_t { public: public: }; // 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); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.Store.X509StoreException struct X509StoreException_tF3E73915BE44B8D996C94BA493CF61D30ADA2685 : public Exception_t { public: public: }; // YejiHuntGameMode_LocalPK struct YejiHuntGameMode_LocalPK_t7B829CAB564B93A939025B2593348F8B65D5E229 : public YejiHuntGameMode_tC7B3AEEF3616DD293F13F32FC974BC22C561D563 { public: // System.Int32 YejiHuntGameMode_LocalPK::currentPlayerIndex int32_t ___currentPlayerIndex_22; // System.Single YejiHuntGameMode_LocalPK::singleShootReadyTime float ___singleShootReadyTime_23; // System.Single YejiHuntGameMode_LocalPK::singleShootReadyTimeMax float ___singleShootReadyTimeMax_24; // HunterGamePlayerScoreCounter YejiHuntGameMode_LocalPK::hunterGamePlayerScoreCounter HunterGamePlayerScoreCounter_t4CFF1912DB681348618492344B5C63984D1CCDD7 * ___hunterGamePlayerScoreCounter_25; public: inline static int32_t get_offset_of_currentPlayerIndex_22() { return static_cast(offsetof(YejiHuntGameMode_LocalPK_t7B829CAB564B93A939025B2593348F8B65D5E229, ___currentPlayerIndex_22)); } inline int32_t get_currentPlayerIndex_22() const { return ___currentPlayerIndex_22; } inline int32_t* get_address_of_currentPlayerIndex_22() { return &___currentPlayerIndex_22; } inline void set_currentPlayerIndex_22(int32_t value) { ___currentPlayerIndex_22 = value; } inline static int32_t get_offset_of_singleShootReadyTime_23() { return static_cast(offsetof(YejiHuntGameMode_LocalPK_t7B829CAB564B93A939025B2593348F8B65D5E229, ___singleShootReadyTime_23)); } inline float get_singleShootReadyTime_23() const { return ___singleShootReadyTime_23; } inline float* get_address_of_singleShootReadyTime_23() { return &___singleShootReadyTime_23; } inline void set_singleShootReadyTime_23(float value) { ___singleShootReadyTime_23 = value; } inline static int32_t get_offset_of_singleShootReadyTimeMax_24() { return static_cast(offsetof(YejiHuntGameMode_LocalPK_t7B829CAB564B93A939025B2593348F8B65D5E229, ___singleShootReadyTimeMax_24)); } inline float get_singleShootReadyTimeMax_24() const { return ___singleShootReadyTimeMax_24; } inline float* get_address_of_singleShootReadyTimeMax_24() { return &___singleShootReadyTimeMax_24; } inline void set_singleShootReadyTimeMax_24(float value) { ___singleShootReadyTimeMax_24 = value; } inline static int32_t get_offset_of_hunterGamePlayerScoreCounter_25() { return static_cast(offsetof(YejiHuntGameMode_LocalPK_t7B829CAB564B93A939025B2593348F8B65D5E229, ___hunterGamePlayerScoreCounter_25)); } inline HunterGamePlayerScoreCounter_t4CFF1912DB681348618492344B5C63984D1CCDD7 * get_hunterGamePlayerScoreCounter_25() const { return ___hunterGamePlayerScoreCounter_25; } inline HunterGamePlayerScoreCounter_t4CFF1912DB681348618492344B5C63984D1CCDD7 ** get_address_of_hunterGamePlayerScoreCounter_25() { return &___hunterGamePlayerScoreCounter_25; } inline void set_hunterGamePlayerScoreCounter_25(HunterGamePlayerScoreCounter_t4CFF1912DB681348618492344B5C63984D1CCDD7 * value) { ___hunterGamePlayerScoreCounter_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___hunterGamePlayerScoreCounter_25), (void*)value); } }; // YejiHuntGameMode_OnlinePK struct YejiHuntGameMode_OnlinePK_tDDA2472446AEB0BB1728C88EE9B5DBE80B4CDCAA : public YejiHuntGameMode_tC7B3AEEF3616DD293F13F32FC974BC22C561D563 { public: // System.Int32 YejiHuntGameMode_OnlinePK::currentPlayerIndex int32_t ___currentPlayerIndex_22; // System.Single YejiHuntGameMode_OnlinePK::singleShootReadyTime float ___singleShootReadyTime_23; // System.Single YejiHuntGameMode_OnlinePK::singleShootReadyTimeMax float ___singleShootReadyTimeMax_24; // HunterGamePlayerScoreCounter YejiHuntGameMode_OnlinePK::hunterGamePlayerScoreCounter HunterGamePlayerScoreCounter_t4CFF1912DB681348618492344B5C63984D1CCDD7 * ___hunterGamePlayerScoreCounter_25; // YejiHuntGameMode_OnlinePK/OnlineHelper YejiHuntGameMode_OnlinePK::onlineHelper OnlineHelper_t2E4F71841FE6F0B13C9845579D42E94EE517115B * ___onlineHelper_26; public: inline static int32_t get_offset_of_currentPlayerIndex_22() { return static_cast(offsetof(YejiHuntGameMode_OnlinePK_tDDA2472446AEB0BB1728C88EE9B5DBE80B4CDCAA, ___currentPlayerIndex_22)); } inline int32_t get_currentPlayerIndex_22() const { return ___currentPlayerIndex_22; } inline int32_t* get_address_of_currentPlayerIndex_22() { return &___currentPlayerIndex_22; } inline void set_currentPlayerIndex_22(int32_t value) { ___currentPlayerIndex_22 = value; } inline static int32_t get_offset_of_singleShootReadyTime_23() { return static_cast(offsetof(YejiHuntGameMode_OnlinePK_tDDA2472446AEB0BB1728C88EE9B5DBE80B4CDCAA, ___singleShootReadyTime_23)); } inline float get_singleShootReadyTime_23() const { return ___singleShootReadyTime_23; } inline float* get_address_of_singleShootReadyTime_23() { return &___singleShootReadyTime_23; } inline void set_singleShootReadyTime_23(float value) { ___singleShootReadyTime_23 = value; } inline static int32_t get_offset_of_singleShootReadyTimeMax_24() { return static_cast(offsetof(YejiHuntGameMode_OnlinePK_tDDA2472446AEB0BB1728C88EE9B5DBE80B4CDCAA, ___singleShootReadyTimeMax_24)); } inline float get_singleShootReadyTimeMax_24() const { return ___singleShootReadyTimeMax_24; } inline float* get_address_of_singleShootReadyTimeMax_24() { return &___singleShootReadyTimeMax_24; } inline void set_singleShootReadyTimeMax_24(float value) { ___singleShootReadyTimeMax_24 = value; } inline static int32_t get_offset_of_hunterGamePlayerScoreCounter_25() { return static_cast(offsetof(YejiHuntGameMode_OnlinePK_tDDA2472446AEB0BB1728C88EE9B5DBE80B4CDCAA, ___hunterGamePlayerScoreCounter_25)); } inline HunterGamePlayerScoreCounter_t4CFF1912DB681348618492344B5C63984D1CCDD7 * get_hunterGamePlayerScoreCounter_25() const { return ___hunterGamePlayerScoreCounter_25; } inline HunterGamePlayerScoreCounter_t4CFF1912DB681348618492344B5C63984D1CCDD7 ** get_address_of_hunterGamePlayerScoreCounter_25() { return &___hunterGamePlayerScoreCounter_25; } inline void set_hunterGamePlayerScoreCounter_25(HunterGamePlayerScoreCounter_t4CFF1912DB681348618492344B5C63984D1CCDD7 * value) { ___hunterGamePlayerScoreCounter_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___hunterGamePlayerScoreCounter_25), (void*)value); } inline static int32_t get_offset_of_onlineHelper_26() { return static_cast(offsetof(YejiHuntGameMode_OnlinePK_tDDA2472446AEB0BB1728C88EE9B5DBE80B4CDCAA, ___onlineHelper_26)); } inline OnlineHelper_t2E4F71841FE6F0B13C9845579D42E94EE517115B * get_onlineHelper_26() const { return ___onlineHelper_26; } inline OnlineHelper_t2E4F71841FE6F0B13C9845579D42E94EE517115B ** get_address_of_onlineHelper_26() { return &___onlineHelper_26; } inline void set_onlineHelper_26(OnlineHelper_t2E4F71841FE6F0B13C9845579D42E94EE517115B * value) { ___onlineHelper_26 = value; Il2CppCodeGenWriteBarrier((void**)(&___onlineHelper_26), (void*)value); } }; // System.Action`1 struct Action_1_t1B7004A16BED5066BEB03C343CA7F4B5EE772A10 : public MulticastDelegate_t { public: public: }; // System.Action`2 struct Action_2_t2ED3ACC0CD5AF36EDBA73683487219F1ADB37DBD : 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); } }; // UnityEngine.Behaviour struct Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9 : public Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 { public: public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.Certificates.CertificateException struct CertificateException_tB4C9EC1D72D2EB953B1A67314C641CA607912CCB : public GeneralSecurityException_tB77B003D334D962B16ED6BEB5AD4567AD5B618BA { public: public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.Certificates.CrlException struct CrlException_t4BF9F20E36202FA4390A2F1E9F10551D9A7ABEA1 : public GeneralSecurityException_tB77B003D334D962B16ED6BEB5AD4567AD5B618BA { public: public: }; // System.IO.IOException struct IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: // System.String System.IO.IOException::_maybeFullPath String_t* ____maybeFullPath_17; public: inline static int32_t get_offset_of__maybeFullPath_17() { return static_cast(offsetof(IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA, ____maybeFullPath_17)); } inline String_t* get__maybeFullPath_17() const { return ____maybeFullPath_17; } inline String_t** get_address_of__maybeFullPath_17() { return &____maybeFullPath_17; } inline void set__maybeFullPath_17(String_t* value) { ____maybeFullPath_17 = value; Il2CppCodeGenWriteBarrier((void**)(&____maybeFullPath_17), (void*)value); } }; // System.InvalidCastException struct InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.InvalidCipherTextException struct InvalidCipherTextException_tCB4102F353576109DF6723BAD28806C82D61BC8D : public CryptoException_t4585FEA3F67B6ED045D6C9401A9C96B1234E3F27 { public: public: }; // System.InvalidOperationException struct InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.KeyException struct KeyException_t145BB2019F3A9E314C4C8FF15DDDFCD63E89AE62 : public GeneralSecurityException_tB77B003D334D962B16ED6BEB5AD4567AD5B618BA { public: public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.Store.NoSuchStoreException struct NoSuchStoreException_tD96393D1B68A67672A0B5A0D0C44305698C04176 : public X509StoreException_tF3E73915BE44B8D996C94BA493CF61D30ADA2685 { public: public: }; // System.NotSupportedException struct NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SignatureException struct SignatureException_t8646C7AB185E39DCCA9ED2BC70B36207BA5A8EBA : public GeneralSecurityException_tB77B003D334D962B16ED6BEB5AD4567AD5B618BA { 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.Animator struct Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 : public Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9 { public: public: }; // System.ArgumentNullException struct ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB : public ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 { public: public: }; // UnityEngine.AudioBehaviour struct AudioBehaviour_tB44966D47AD43C50C7294AEE9B57574E55AACA4A : public Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9 { public: public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.Certificates.CertificateEncodingException struct CertificateEncodingException_t026647D46DEE106DCC9AD27DBFE50F50009B2D5D : public CertificateException_tB4C9EC1D72D2EB953B1A67314C641CA607912CCB { public: public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.Certificates.CertificateExpiredException struct CertificateExpiredException_t05907054C3E1FC12C458807B83722B8477BD21B8 : public CertificateException_tB4C9EC1D72D2EB953B1A67314C641CA607912CCB { public: public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.Certificates.CertificateNotYetValidException struct CertificateNotYetValidException_t23D92E9FAB5FBCE6D961AAD0BDE9F2EB97F699AE : public CertificateException_tB4C9EC1D72D2EB953B1A67314C641CA607912CCB { public: public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.Certificates.CertificateParsingException struct CertificateParsingException_t5CE1769C4F94B5791C7D12C168E7BC8509C97778 : public CertificateException_tB4C9EC1D72D2EB953B1A67314C641CA607912CCB { public: public: }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Security.InvalidKeyException struct InvalidKeyException_t7F19EE8EB26000BAFDF50186FB1DD59F13A7FD8A : public KeyException_t145BB2019F3A9E314C4C8FF15DDDFCD63E89AE62 { public: public: }; // UnityEngine.MonoBehaviour struct MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A : public Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9 { public: public: }; // UnityEngine.AI.NavMeshAgent struct NavMeshAgent_tB9746B6C38013341DB63973CA7ED657494EFB41B : public Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9 { public: public: }; // 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; } }; // ArmBow struct ArmBow_tB6B0B80BF49B5CD1F51E828D121AF6CBE42F74E4 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: // AnimationPlayer ArmBow::AP_arm AnimationPlayer_t1E32EE81F0184E25458C1A42B7D71EDFA0CD849D * ___AP_arm_4; // AnimationPlayer ArmBow::AP_bow AnimationPlayer_t1E32EE81F0184E25458C1A42B7D71EDFA0CD849D * ___AP_bow_5; // UnityEngine.GameObject ArmBow::arrow GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___arrow_6; // BowCamera ArmBow::_bowCamera BowCamera_t7AA7E1A3AE4107303360B6EC9EC72E5F762D0FF9 * ____bowCamera_7; // System.Collections.Generic.HashSet`1 ArmBow::validTargets HashSet_1_tDCAB35561946D13824B6FB0E682604867484A551 * ___validTargets_8; // System.Int32 ArmBow::shootBackTime int32_t ___shootBackTime_10; // System.Single ArmBow::shootOffsetAngleScale float ___shootOffsetAngleScale_11; // System.Boolean ArmBow::banReady bool ___banReady_12; // System.Boolean ArmBow::banShoot bool ___banShoot_13; // System.Boolean ArmBow::banLogic bool ___banLogic_14; // UnityEngine.Quaternion[] ArmBow::cameraRotations QuaternionU5BU5D_t584B1CC68E95071898E32F34DB2CC1E4A726FAA6* ___cameraRotations_15; // System.Int32 ArmBow::cameraRotationHasRecordCount int32_t ___cameraRotationHasRecordCount_16; // System.Int32 ArmBow::phase int32_t ___phase_17; // System.Int32 ArmBow::arm_ani_index_cur int32_t ___arm_ani_index_cur_18; // System.Int32 ArmBow::bow_ani_index_cur int32_t ___bow_ani_index_cur_19; public: inline static int32_t get_offset_of_AP_arm_4() { return static_cast(offsetof(ArmBow_tB6B0B80BF49B5CD1F51E828D121AF6CBE42F74E4, ___AP_arm_4)); } inline AnimationPlayer_t1E32EE81F0184E25458C1A42B7D71EDFA0CD849D * get_AP_arm_4() const { return ___AP_arm_4; } inline AnimationPlayer_t1E32EE81F0184E25458C1A42B7D71EDFA0CD849D ** get_address_of_AP_arm_4() { return &___AP_arm_4; } inline void set_AP_arm_4(AnimationPlayer_t1E32EE81F0184E25458C1A42B7D71EDFA0CD849D * value) { ___AP_arm_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___AP_arm_4), (void*)value); } inline static int32_t get_offset_of_AP_bow_5() { return static_cast(offsetof(ArmBow_tB6B0B80BF49B5CD1F51E828D121AF6CBE42F74E4, ___AP_bow_5)); } inline AnimationPlayer_t1E32EE81F0184E25458C1A42B7D71EDFA0CD849D * get_AP_bow_5() const { return ___AP_bow_5; } inline AnimationPlayer_t1E32EE81F0184E25458C1A42B7D71EDFA0CD849D ** get_address_of_AP_bow_5() { return &___AP_bow_5; } inline void set_AP_bow_5(AnimationPlayer_t1E32EE81F0184E25458C1A42B7D71EDFA0CD849D * value) { ___AP_bow_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___AP_bow_5), (void*)value); } inline static int32_t get_offset_of_arrow_6() { return static_cast(offsetof(ArmBow_tB6B0B80BF49B5CD1F51E828D121AF6CBE42F74E4, ___arrow_6)); } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_arrow_6() const { return ___arrow_6; } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_arrow_6() { return &___arrow_6; } inline void set_arrow_6(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value) { ___arrow_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___arrow_6), (void*)value); } inline static int32_t get_offset_of__bowCamera_7() { return static_cast(offsetof(ArmBow_tB6B0B80BF49B5CD1F51E828D121AF6CBE42F74E4, ____bowCamera_7)); } inline BowCamera_t7AA7E1A3AE4107303360B6EC9EC72E5F762D0FF9 * get__bowCamera_7() const { return ____bowCamera_7; } inline BowCamera_t7AA7E1A3AE4107303360B6EC9EC72E5F762D0FF9 ** get_address_of__bowCamera_7() { return &____bowCamera_7; } inline void set__bowCamera_7(BowCamera_t7AA7E1A3AE4107303360B6EC9EC72E5F762D0FF9 * value) { ____bowCamera_7 = value; Il2CppCodeGenWriteBarrier((void**)(&____bowCamera_7), (void*)value); } inline static int32_t get_offset_of_validTargets_8() { return static_cast(offsetof(ArmBow_tB6B0B80BF49B5CD1F51E828D121AF6CBE42F74E4, ___validTargets_8)); } inline HashSet_1_tDCAB35561946D13824B6FB0E682604867484A551 * get_validTargets_8() const { return ___validTargets_8; } inline HashSet_1_tDCAB35561946D13824B6FB0E682604867484A551 ** get_address_of_validTargets_8() { return &___validTargets_8; } inline void set_validTargets_8(HashSet_1_tDCAB35561946D13824B6FB0E682604867484A551 * value) { ___validTargets_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___validTargets_8), (void*)value); } inline static int32_t get_offset_of_shootBackTime_10() { return static_cast(offsetof(ArmBow_tB6B0B80BF49B5CD1F51E828D121AF6CBE42F74E4, ___shootBackTime_10)); } inline int32_t get_shootBackTime_10() const { return ___shootBackTime_10; } inline int32_t* get_address_of_shootBackTime_10() { return &___shootBackTime_10; } inline void set_shootBackTime_10(int32_t value) { ___shootBackTime_10 = value; } inline static int32_t get_offset_of_shootOffsetAngleScale_11() { return static_cast(offsetof(ArmBow_tB6B0B80BF49B5CD1F51E828D121AF6CBE42F74E4, ___shootOffsetAngleScale_11)); } inline float get_shootOffsetAngleScale_11() const { return ___shootOffsetAngleScale_11; } inline float* get_address_of_shootOffsetAngleScale_11() { return &___shootOffsetAngleScale_11; } inline void set_shootOffsetAngleScale_11(float value) { ___shootOffsetAngleScale_11 = value; } inline static int32_t get_offset_of_banReady_12() { return static_cast(offsetof(ArmBow_tB6B0B80BF49B5CD1F51E828D121AF6CBE42F74E4, ___banReady_12)); } inline bool get_banReady_12() const { return ___banReady_12; } inline bool* get_address_of_banReady_12() { return &___banReady_12; } inline void set_banReady_12(bool value) { ___banReady_12 = value; } inline static int32_t get_offset_of_banShoot_13() { return static_cast(offsetof(ArmBow_tB6B0B80BF49B5CD1F51E828D121AF6CBE42F74E4, ___banShoot_13)); } inline bool get_banShoot_13() const { return ___banShoot_13; } inline bool* get_address_of_banShoot_13() { return &___banShoot_13; } inline void set_banShoot_13(bool value) { ___banShoot_13 = value; } inline static int32_t get_offset_of_banLogic_14() { return static_cast(offsetof(ArmBow_tB6B0B80BF49B5CD1F51E828D121AF6CBE42F74E4, ___banLogic_14)); } inline bool get_banLogic_14() const { return ___banLogic_14; } inline bool* get_address_of_banLogic_14() { return &___banLogic_14; } inline void set_banLogic_14(bool value) { ___banLogic_14 = value; } inline static int32_t get_offset_of_cameraRotations_15() { return static_cast(offsetof(ArmBow_tB6B0B80BF49B5CD1F51E828D121AF6CBE42F74E4, ___cameraRotations_15)); } inline QuaternionU5BU5D_t584B1CC68E95071898E32F34DB2CC1E4A726FAA6* get_cameraRotations_15() const { return ___cameraRotations_15; } inline QuaternionU5BU5D_t584B1CC68E95071898E32F34DB2CC1E4A726FAA6** get_address_of_cameraRotations_15() { return &___cameraRotations_15; } inline void set_cameraRotations_15(QuaternionU5BU5D_t584B1CC68E95071898E32F34DB2CC1E4A726FAA6* value) { ___cameraRotations_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___cameraRotations_15), (void*)value); } inline static int32_t get_offset_of_cameraRotationHasRecordCount_16() { return static_cast(offsetof(ArmBow_tB6B0B80BF49B5CD1F51E828D121AF6CBE42F74E4, ___cameraRotationHasRecordCount_16)); } inline int32_t get_cameraRotationHasRecordCount_16() const { return ___cameraRotationHasRecordCount_16; } inline int32_t* get_address_of_cameraRotationHasRecordCount_16() { return &___cameraRotationHasRecordCount_16; } inline void set_cameraRotationHasRecordCount_16(int32_t value) { ___cameraRotationHasRecordCount_16 = value; } inline static int32_t get_offset_of_phase_17() { return static_cast(offsetof(ArmBow_tB6B0B80BF49B5CD1F51E828D121AF6CBE42F74E4, ___phase_17)); } inline int32_t get_phase_17() const { return ___phase_17; } inline int32_t* get_address_of_phase_17() { return &___phase_17; } inline void set_phase_17(int32_t value) { ___phase_17 = value; } inline static int32_t get_offset_of_arm_ani_index_cur_18() { return static_cast(offsetof(ArmBow_tB6B0B80BF49B5CD1F51E828D121AF6CBE42F74E4, ___arm_ani_index_cur_18)); } inline int32_t get_arm_ani_index_cur_18() const { return ___arm_ani_index_cur_18; } inline int32_t* get_address_of_arm_ani_index_cur_18() { return &___arm_ani_index_cur_18; } inline void set_arm_ani_index_cur_18(int32_t value) { ___arm_ani_index_cur_18 = value; } inline static int32_t get_offset_of_bow_ani_index_cur_19() { return static_cast(offsetof(ArmBow_tB6B0B80BF49B5CD1F51E828D121AF6CBE42F74E4, ___bow_ani_index_cur_19)); } inline int32_t get_bow_ani_index_cur_19() const { return ___bow_ani_index_cur_19; } inline int32_t* get_address_of_bow_ani_index_cur_19() { return &___bow_ani_index_cur_19; } inline void set_bow_ani_index_cur_19(int32_t value) { ___bow_ani_index_cur_19 = value; } }; struct ArmBow_tB6B0B80BF49B5CD1F51E828D121AF6CBE42F74E4_StaticFields { public: // ArmBow ArmBow::_ins ArmBow_tB6B0B80BF49B5CD1F51E828D121AF6CBE42F74E4 * ____ins_20; public: inline static int32_t get_offset_of__ins_20() { return static_cast(offsetof(ArmBow_tB6B0B80BF49B5CD1F51E828D121AF6CBE42F74E4_StaticFields, ____ins_20)); } inline ArmBow_tB6B0B80BF49B5CD1F51E828D121AF6CBE42F74E4 * get__ins_20() const { return ____ins_20; } inline ArmBow_tB6B0B80BF49B5CD1F51E828D121AF6CBE42F74E4 ** get_address_of__ins_20() { return &____ins_20; } inline void set__ins_20(ArmBow_tB6B0B80BF49B5CD1F51E828D121AF6CBE42F74E4 * value) { ____ins_20 = value; Il2CppCodeGenWriteBarrier((void**)(&____ins_20), (void*)value); } }; // Arrow struct Arrow_t98BA45BD73ADFAD1B38830B6D6D48588A96AC86A : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: // System.Single Arrow::flyTime float ___flyTime_4; // System.Boolean Arrow::isHit bool ___isHit_5; // System.Single Arrow::mySpeed float ___mySpeed_6; // ArmBow Arrow::armBow ArmBow_tB6B0B80BF49B5CD1F51E828D121AF6CBE42F74E4 * ___armBow_8; // UnityEngine.Vector3 Arrow::shootOutPosition Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___shootOutPosition_9; // UnityEngine.RaycastHit Arrow::absoluteRay RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89 ___absoluteRay_10; // System.Single Arrow::offsetAngle float ___offsetAngle_11; // UnityEngine.Vector3 Arrow::finalAngleAfterOffset Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___finalAngleAfterOffset_12; // TargetBody Arrow::rayHitTargetBody TargetBody_t6E7BBE108A6A731439FA465338CC657FC854634D * ___rayHitTargetBody_13; // System.Boolean Arrow::canPerfectHit bool ___canPerfectHit_14; // System.Boolean Arrow::canUseSideCamera bool ___canUseSideCamera_15; // ArrowCamera Arrow::arrowCameraComp ArrowCamera_t793154C45EDFAED3729D4987BA58D315612380FB * ___arrowCameraComp_16; // System.Action Arrow::onDoNextShoot Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___onDoNextShoot_17; // System.Boolean Arrow::hasParabolaAngle bool ___hasParabolaAngle_19; // System.Single Arrow::parabolaAngleInRadian float ___parabolaAngleInRadian_20; // ArrowSync/SyncData Arrow::outputSyncData SyncData_tE8882F9BE18230D8E8AF15453546FB32A61D6ADF * ___outputSyncData_21; // System.Single Arrow::logicFlyTime float ___logicFlyTime_22; // UnityEngine.Vector3 Arrow::finalPoint Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___finalPoint_23; // System.Int32 Arrow::hitType int32_t ___hitType_24; // UnityEngine.Transform Arrow::raycastHitTransform Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___raycastHitTransform_25; // System.String[] Arrow::hitTargetAnimalInfo StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___hitTargetAnimalInfo_26; // System.Boolean Arrow::hasDoneNextShoot bool ___hasDoneNextShoot_27; // UnityEngine.Vector3 Arrow::rotateV3 Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___rotateV3_28; public: inline static int32_t get_offset_of_flyTime_4() { return static_cast(offsetof(Arrow_t98BA45BD73ADFAD1B38830B6D6D48588A96AC86A, ___flyTime_4)); } inline float get_flyTime_4() const { return ___flyTime_4; } inline float* get_address_of_flyTime_4() { return &___flyTime_4; } inline void set_flyTime_4(float value) { ___flyTime_4 = value; } inline static int32_t get_offset_of_isHit_5() { return static_cast(offsetof(Arrow_t98BA45BD73ADFAD1B38830B6D6D48588A96AC86A, ___isHit_5)); } inline bool get_isHit_5() const { return ___isHit_5; } inline bool* get_address_of_isHit_5() { return &___isHit_5; } inline void set_isHit_5(bool value) { ___isHit_5 = value; } inline static int32_t get_offset_of_mySpeed_6() { return static_cast(offsetof(Arrow_t98BA45BD73ADFAD1B38830B6D6D48588A96AC86A, ___mySpeed_6)); } inline float get_mySpeed_6() const { return ___mySpeed_6; } inline float* get_address_of_mySpeed_6() { return &___mySpeed_6; } inline void set_mySpeed_6(float value) { ___mySpeed_6 = value; } inline static int32_t get_offset_of_armBow_8() { return static_cast(offsetof(Arrow_t98BA45BD73ADFAD1B38830B6D6D48588A96AC86A, ___armBow_8)); } inline ArmBow_tB6B0B80BF49B5CD1F51E828D121AF6CBE42F74E4 * get_armBow_8() const { return ___armBow_8; } inline ArmBow_tB6B0B80BF49B5CD1F51E828D121AF6CBE42F74E4 ** get_address_of_armBow_8() { return &___armBow_8; } inline void set_armBow_8(ArmBow_tB6B0B80BF49B5CD1F51E828D121AF6CBE42F74E4 * value) { ___armBow_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___armBow_8), (void*)value); } inline static int32_t get_offset_of_shootOutPosition_9() { return static_cast(offsetof(Arrow_t98BA45BD73ADFAD1B38830B6D6D48588A96AC86A, ___shootOutPosition_9)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_shootOutPosition_9() const { return ___shootOutPosition_9; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_shootOutPosition_9() { return &___shootOutPosition_9; } inline void set_shootOutPosition_9(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___shootOutPosition_9 = value; } inline static int32_t get_offset_of_absoluteRay_10() { return static_cast(offsetof(Arrow_t98BA45BD73ADFAD1B38830B6D6D48588A96AC86A, ___absoluteRay_10)); } inline RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89 get_absoluteRay_10() const { return ___absoluteRay_10; } inline RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89 * get_address_of_absoluteRay_10() { return &___absoluteRay_10; } inline void set_absoluteRay_10(RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89 value) { ___absoluteRay_10 = value; } inline static int32_t get_offset_of_offsetAngle_11() { return static_cast(offsetof(Arrow_t98BA45BD73ADFAD1B38830B6D6D48588A96AC86A, ___offsetAngle_11)); } inline float get_offsetAngle_11() const { return ___offsetAngle_11; } inline float* get_address_of_offsetAngle_11() { return &___offsetAngle_11; } inline void set_offsetAngle_11(float value) { ___offsetAngle_11 = value; } inline static int32_t get_offset_of_finalAngleAfterOffset_12() { return static_cast(offsetof(Arrow_t98BA45BD73ADFAD1B38830B6D6D48588A96AC86A, ___finalAngleAfterOffset_12)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_finalAngleAfterOffset_12() const { return ___finalAngleAfterOffset_12; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_finalAngleAfterOffset_12() { return &___finalAngleAfterOffset_12; } inline void set_finalAngleAfterOffset_12(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___finalAngleAfterOffset_12 = value; } inline static int32_t get_offset_of_rayHitTargetBody_13() { return static_cast(offsetof(Arrow_t98BA45BD73ADFAD1B38830B6D6D48588A96AC86A, ___rayHitTargetBody_13)); } inline TargetBody_t6E7BBE108A6A731439FA465338CC657FC854634D * get_rayHitTargetBody_13() const { return ___rayHitTargetBody_13; } inline TargetBody_t6E7BBE108A6A731439FA465338CC657FC854634D ** get_address_of_rayHitTargetBody_13() { return &___rayHitTargetBody_13; } inline void set_rayHitTargetBody_13(TargetBody_t6E7BBE108A6A731439FA465338CC657FC854634D * value) { ___rayHitTargetBody_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___rayHitTargetBody_13), (void*)value); } inline static int32_t get_offset_of_canPerfectHit_14() { return static_cast(offsetof(Arrow_t98BA45BD73ADFAD1B38830B6D6D48588A96AC86A, ___canPerfectHit_14)); } inline bool get_canPerfectHit_14() const { return ___canPerfectHit_14; } inline bool* get_address_of_canPerfectHit_14() { return &___canPerfectHit_14; } inline void set_canPerfectHit_14(bool value) { ___canPerfectHit_14 = value; } inline static int32_t get_offset_of_canUseSideCamera_15() { return static_cast(offsetof(Arrow_t98BA45BD73ADFAD1B38830B6D6D48588A96AC86A, ___canUseSideCamera_15)); } inline bool get_canUseSideCamera_15() const { return ___canUseSideCamera_15; } inline bool* get_address_of_canUseSideCamera_15() { return &___canUseSideCamera_15; } inline void set_canUseSideCamera_15(bool value) { ___canUseSideCamera_15 = value; } inline static int32_t get_offset_of_arrowCameraComp_16() { return static_cast(offsetof(Arrow_t98BA45BD73ADFAD1B38830B6D6D48588A96AC86A, ___arrowCameraComp_16)); } inline ArrowCamera_t793154C45EDFAED3729D4987BA58D315612380FB * get_arrowCameraComp_16() const { return ___arrowCameraComp_16; } inline ArrowCamera_t793154C45EDFAED3729D4987BA58D315612380FB ** get_address_of_arrowCameraComp_16() { return &___arrowCameraComp_16; } inline void set_arrowCameraComp_16(ArrowCamera_t793154C45EDFAED3729D4987BA58D315612380FB * value) { ___arrowCameraComp_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___arrowCameraComp_16), (void*)value); } inline static int32_t get_offset_of_onDoNextShoot_17() { return static_cast(offsetof(Arrow_t98BA45BD73ADFAD1B38830B6D6D48588A96AC86A, ___onDoNextShoot_17)); } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * get_onDoNextShoot_17() const { return ___onDoNextShoot_17; } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 ** get_address_of_onDoNextShoot_17() { return &___onDoNextShoot_17; } inline void set_onDoNextShoot_17(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * value) { ___onDoNextShoot_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___onDoNextShoot_17), (void*)value); } inline static int32_t get_offset_of_hasParabolaAngle_19() { return static_cast(offsetof(Arrow_t98BA45BD73ADFAD1B38830B6D6D48588A96AC86A, ___hasParabolaAngle_19)); } inline bool get_hasParabolaAngle_19() const { return ___hasParabolaAngle_19; } inline bool* get_address_of_hasParabolaAngle_19() { return &___hasParabolaAngle_19; } inline void set_hasParabolaAngle_19(bool value) { ___hasParabolaAngle_19 = value; } inline static int32_t get_offset_of_parabolaAngleInRadian_20() { return static_cast(offsetof(Arrow_t98BA45BD73ADFAD1B38830B6D6D48588A96AC86A, ___parabolaAngleInRadian_20)); } inline float get_parabolaAngleInRadian_20() const { return ___parabolaAngleInRadian_20; } inline float* get_address_of_parabolaAngleInRadian_20() { return &___parabolaAngleInRadian_20; } inline void set_parabolaAngleInRadian_20(float value) { ___parabolaAngleInRadian_20 = value; } inline static int32_t get_offset_of_outputSyncData_21() { return static_cast(offsetof(Arrow_t98BA45BD73ADFAD1B38830B6D6D48588A96AC86A, ___outputSyncData_21)); } inline SyncData_tE8882F9BE18230D8E8AF15453546FB32A61D6ADF * get_outputSyncData_21() const { return ___outputSyncData_21; } inline SyncData_tE8882F9BE18230D8E8AF15453546FB32A61D6ADF ** get_address_of_outputSyncData_21() { return &___outputSyncData_21; } inline void set_outputSyncData_21(SyncData_tE8882F9BE18230D8E8AF15453546FB32A61D6ADF * value) { ___outputSyncData_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___outputSyncData_21), (void*)value); } inline static int32_t get_offset_of_logicFlyTime_22() { return static_cast(offsetof(Arrow_t98BA45BD73ADFAD1B38830B6D6D48588A96AC86A, ___logicFlyTime_22)); } inline float get_logicFlyTime_22() const { return ___logicFlyTime_22; } inline float* get_address_of_logicFlyTime_22() { return &___logicFlyTime_22; } inline void set_logicFlyTime_22(float value) { ___logicFlyTime_22 = value; } inline static int32_t get_offset_of_finalPoint_23() { return static_cast(offsetof(Arrow_t98BA45BD73ADFAD1B38830B6D6D48588A96AC86A, ___finalPoint_23)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_finalPoint_23() const { return ___finalPoint_23; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_finalPoint_23() { return &___finalPoint_23; } inline void set_finalPoint_23(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___finalPoint_23 = value; } inline static int32_t get_offset_of_hitType_24() { return static_cast(offsetof(Arrow_t98BA45BD73ADFAD1B38830B6D6D48588A96AC86A, ___hitType_24)); } inline int32_t get_hitType_24() const { return ___hitType_24; } inline int32_t* get_address_of_hitType_24() { return &___hitType_24; } inline void set_hitType_24(int32_t value) { ___hitType_24 = value; } inline static int32_t get_offset_of_raycastHitTransform_25() { return static_cast(offsetof(Arrow_t98BA45BD73ADFAD1B38830B6D6D48588A96AC86A, ___raycastHitTransform_25)); } inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * get_raycastHitTransform_25() const { return ___raycastHitTransform_25; } inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 ** get_address_of_raycastHitTransform_25() { return &___raycastHitTransform_25; } inline void set_raycastHitTransform_25(Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * value) { ___raycastHitTransform_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___raycastHitTransform_25), (void*)value); } inline static int32_t get_offset_of_hitTargetAnimalInfo_26() { return static_cast(offsetof(Arrow_t98BA45BD73ADFAD1B38830B6D6D48588A96AC86A, ___hitTargetAnimalInfo_26)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_hitTargetAnimalInfo_26() const { return ___hitTargetAnimalInfo_26; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_hitTargetAnimalInfo_26() { return &___hitTargetAnimalInfo_26; } inline void set_hitTargetAnimalInfo_26(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___hitTargetAnimalInfo_26 = value; Il2CppCodeGenWriteBarrier((void**)(&___hitTargetAnimalInfo_26), (void*)value); } inline static int32_t get_offset_of_hasDoneNextShoot_27() { return static_cast(offsetof(Arrow_t98BA45BD73ADFAD1B38830B6D6D48588A96AC86A, ___hasDoneNextShoot_27)); } inline bool get_hasDoneNextShoot_27() const { return ___hasDoneNextShoot_27; } inline bool* get_address_of_hasDoneNextShoot_27() { return &___hasDoneNextShoot_27; } inline void set_hasDoneNextShoot_27(bool value) { ___hasDoneNextShoot_27 = value; } inline static int32_t get_offset_of_rotateV3_28() { return static_cast(offsetof(Arrow_t98BA45BD73ADFAD1B38830B6D6D48588A96AC86A, ___rotateV3_28)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_rotateV3_28() const { return ___rotateV3_28; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_rotateV3_28() { return &___rotateV3_28; } inline void set_rotateV3_28(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___rotateV3_28 = value; } }; struct Arrow_t98BA45BD73ADFAD1B38830B6D6D48588A96AC86A_StaticFields { public: // System.Single Arrow::speed float ___speed_7; // System.Collections.Generic.HashSet`1 Arrow::arrowSet HashSet_1_tC5715D3475135D0E978BA6BA299F273B6823EA1C * ___arrowSet_18; public: inline static int32_t get_offset_of_speed_7() { return static_cast(offsetof(Arrow_t98BA45BD73ADFAD1B38830B6D6D48588A96AC86A_StaticFields, ___speed_7)); } inline float get_speed_7() const { return ___speed_7; } inline float* get_address_of_speed_7() { return &___speed_7; } inline void set_speed_7(float value) { ___speed_7 = value; } inline static int32_t get_offset_of_arrowSet_18() { return static_cast(offsetof(Arrow_t98BA45BD73ADFAD1B38830B6D6D48588A96AC86A_StaticFields, ___arrowSet_18)); } inline HashSet_1_tC5715D3475135D0E978BA6BA299F273B6823EA1C * get_arrowSet_18() const { return ___arrowSet_18; } inline HashSet_1_tC5715D3475135D0E978BA6BA299F273B6823EA1C ** get_address_of_arrowSet_18() { return &___arrowSet_18; } inline void set_arrowSet_18(HashSet_1_tC5715D3475135D0E978BA6BA299F273B6823EA1C * value) { ___arrowSet_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___arrowSet_18), (void*)value); } }; // ArrowCamera struct ArrowCamera_t793154C45EDFAED3729D4987BA58D315612380FB : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: // Arrow ArrowCamera::arrow Arrow_t98BA45BD73ADFAD1B38830B6D6D48588A96AC86A * ___arrow_4; // ArrowCameraTemplate ArrowCamera::arrowCameraTemplate ArrowCameraTemplate_tFE88182B75A9486E4D72B88A48F2D1EC6327475B * ___arrowCameraTemplate_5; // System.Boolean ArrowCamera::isArrowSync bool ___isArrowSync_6; // ArrowSync ArrowCamera::arrowSync ArrowSync_t120ECE91237A141D58A2FD2CF93010D5537FD071 * ___arrowSync_7; public: inline static int32_t get_offset_of_arrow_4() { return static_cast(offsetof(ArrowCamera_t793154C45EDFAED3729D4987BA58D315612380FB, ___arrow_4)); } inline Arrow_t98BA45BD73ADFAD1B38830B6D6D48588A96AC86A * get_arrow_4() const { return ___arrow_4; } inline Arrow_t98BA45BD73ADFAD1B38830B6D6D48588A96AC86A ** get_address_of_arrow_4() { return &___arrow_4; } inline void set_arrow_4(Arrow_t98BA45BD73ADFAD1B38830B6D6D48588A96AC86A * value) { ___arrow_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___arrow_4), (void*)value); } inline static int32_t get_offset_of_arrowCameraTemplate_5() { return static_cast(offsetof(ArrowCamera_t793154C45EDFAED3729D4987BA58D315612380FB, ___arrowCameraTemplate_5)); } inline ArrowCameraTemplate_tFE88182B75A9486E4D72B88A48F2D1EC6327475B * get_arrowCameraTemplate_5() const { return ___arrowCameraTemplate_5; } inline ArrowCameraTemplate_tFE88182B75A9486E4D72B88A48F2D1EC6327475B ** get_address_of_arrowCameraTemplate_5() { return &___arrowCameraTemplate_5; } inline void set_arrowCameraTemplate_5(ArrowCameraTemplate_tFE88182B75A9486E4D72B88A48F2D1EC6327475B * value) { ___arrowCameraTemplate_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___arrowCameraTemplate_5), (void*)value); } inline static int32_t get_offset_of_isArrowSync_6() { return static_cast(offsetof(ArrowCamera_t793154C45EDFAED3729D4987BA58D315612380FB, ___isArrowSync_6)); } inline bool get_isArrowSync_6() const { return ___isArrowSync_6; } inline bool* get_address_of_isArrowSync_6() { return &___isArrowSync_6; } inline void set_isArrowSync_6(bool value) { ___isArrowSync_6 = value; } inline static int32_t get_offset_of_arrowSync_7() { return static_cast(offsetof(ArrowCamera_t793154C45EDFAED3729D4987BA58D315612380FB, ___arrowSync_7)); } inline ArrowSync_t120ECE91237A141D58A2FD2CF93010D5537FD071 * get_arrowSync_7() const { return ___arrowSync_7; } inline ArrowSync_t120ECE91237A141D58A2FD2CF93010D5537FD071 ** get_address_of_arrowSync_7() { return &___arrowSync_7; } inline void set_arrowSync_7(ArrowSync_t120ECE91237A141D58A2FD2CF93010D5537FD071 * value) { ___arrowSync_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___arrowSync_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); } }; // UnityEngine.AudioSource struct AudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B : public AudioBehaviour_tB44966D47AD43C50C7294AEE9B57574E55AACA4A { public: public: }; // GameEventCenter struct GameEventCenter_tB2B27C459DC3B44364D1B694E8FBDA2EA24E6190 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: // System.Action`2 GameEventCenter::onBowArrowShootOut Action_2_tC40BDAE269456CB20CA0E0A89A7024EA09439C94 * ___onBowArrowShootOut_4; // System.Action`2 GameEventCenter::onTargetAnimalHurt Action_2_t2ED3ACC0CD5AF36EDBA73683487219F1ADB37DBD * ___onTargetAnimalHurt_5; public: inline static int32_t get_offset_of_onBowArrowShootOut_4() { return static_cast(offsetof(GameEventCenter_tB2B27C459DC3B44364D1B694E8FBDA2EA24E6190, ___onBowArrowShootOut_4)); } inline Action_2_tC40BDAE269456CB20CA0E0A89A7024EA09439C94 * get_onBowArrowShootOut_4() const { return ___onBowArrowShootOut_4; } inline Action_2_tC40BDAE269456CB20CA0E0A89A7024EA09439C94 ** get_address_of_onBowArrowShootOut_4() { return &___onBowArrowShootOut_4; } inline void set_onBowArrowShootOut_4(Action_2_tC40BDAE269456CB20CA0E0A89A7024EA09439C94 * value) { ___onBowArrowShootOut_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___onBowArrowShootOut_4), (void*)value); } inline static int32_t get_offset_of_onTargetAnimalHurt_5() { return static_cast(offsetof(GameEventCenter_tB2B27C459DC3B44364D1B694E8FBDA2EA24E6190, ___onTargetAnimalHurt_5)); } inline Action_2_t2ED3ACC0CD5AF36EDBA73683487219F1ADB37DBD * get_onTargetAnimalHurt_5() const { return ___onTargetAnimalHurt_5; } inline Action_2_t2ED3ACC0CD5AF36EDBA73683487219F1ADB37DBD ** get_address_of_onTargetAnimalHurt_5() { return &___onTargetAnimalHurt_5; } inline void set_onTargetAnimalHurt_5(Action_2_t2ED3ACC0CD5AF36EDBA73683487219F1ADB37DBD * value) { ___onTargetAnimalHurt_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___onTargetAnimalHurt_5), (void*)value); } }; struct GameEventCenter_tB2B27C459DC3B44364D1B694E8FBDA2EA24E6190_StaticFields { public: // GameEventCenter GameEventCenter::_ins GameEventCenter_tB2B27C459DC3B44364D1B694E8FBDA2EA24E6190 * ____ins_6; public: inline static int32_t get_offset_of__ins_6() { return static_cast(offsetof(GameEventCenter_tB2B27C459DC3B44364D1B694E8FBDA2EA24E6190_StaticFields, ____ins_6)); } inline GameEventCenter_tB2B27C459DC3B44364D1B694E8FBDA2EA24E6190 * get__ins_6() const { return ____ins_6; } inline GameEventCenter_tB2B27C459DC3B44364D1B694E8FBDA2EA24E6190 ** get_address_of__ins_6() { return &____ins_6; } inline void set__ins_6(GameEventCenter_tB2B27C459DC3B44364D1B694E8FBDA2EA24E6190 * value) { ____ins_6 = value; Il2CppCodeGenWriteBarrier((void**)(&____ins_6), (void*)value); } }; // GameMgr struct GameMgr_tE3D60AE9C96D966787437C5F15D3477A9E948950 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: // GameMode GameMgr::gameMode GameMode_t3635427B8DF6A50F9EAE8955955887AD0D098C82 * ___gameMode_6; // System.Boolean GameMgr::gameOver bool ___gameOver_7; // System.Boolean GameMgr::guideFinish bool ___guideFinish_9; // System.Collections.Generic.HashSet`1 GameMgr::gamePauseLockers HashSet_1_t658A4F799C39BCEF71EEB383AC1FCCFDC8447673 * ___gamePauseLockers_10; public: inline static int32_t get_offset_of_gameMode_6() { return static_cast(offsetof(GameMgr_tE3D60AE9C96D966787437C5F15D3477A9E948950, ___gameMode_6)); } inline GameMode_t3635427B8DF6A50F9EAE8955955887AD0D098C82 * get_gameMode_6() const { return ___gameMode_6; } inline GameMode_t3635427B8DF6A50F9EAE8955955887AD0D098C82 ** get_address_of_gameMode_6() { return &___gameMode_6; } inline void set_gameMode_6(GameMode_t3635427B8DF6A50F9EAE8955955887AD0D098C82 * value) { ___gameMode_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___gameMode_6), (void*)value); } inline static int32_t get_offset_of_gameOver_7() { return static_cast(offsetof(GameMgr_tE3D60AE9C96D966787437C5F15D3477A9E948950, ___gameOver_7)); } inline bool get_gameOver_7() const { return ___gameOver_7; } inline bool* get_address_of_gameOver_7() { return &___gameOver_7; } inline void set_gameOver_7(bool value) { ___gameOver_7 = value; } inline static int32_t get_offset_of_guideFinish_9() { return static_cast(offsetof(GameMgr_tE3D60AE9C96D966787437C5F15D3477A9E948950, ___guideFinish_9)); } inline bool get_guideFinish_9() const { return ___guideFinish_9; } inline bool* get_address_of_guideFinish_9() { return &___guideFinish_9; } inline void set_guideFinish_9(bool value) { ___guideFinish_9 = value; } inline static int32_t get_offset_of_gamePauseLockers_10() { return static_cast(offsetof(GameMgr_tE3D60AE9C96D966787437C5F15D3477A9E948950, ___gamePauseLockers_10)); } inline HashSet_1_t658A4F799C39BCEF71EEB383AC1FCCFDC8447673 * get_gamePauseLockers_10() const { return ___gamePauseLockers_10; } inline HashSet_1_t658A4F799C39BCEF71EEB383AC1FCCFDC8447673 ** get_address_of_gamePauseLockers_10() { return &___gamePauseLockers_10; } inline void set_gamePauseLockers_10(HashSet_1_t658A4F799C39BCEF71EEB383AC1FCCFDC8447673 * value) { ___gamePauseLockers_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___gamePauseLockers_10), (void*)value); } }; struct GameMgr_tE3D60AE9C96D966787437C5F15D3477A9E948950_StaticFields { public: // System.Boolean GameMgr::debugInEditor bool ___debugInEditor_4; // System.Int32 GameMgr::gameType int32_t ___gameType_5; // GameMgr GameMgr::ins GameMgr_tE3D60AE9C96D966787437C5F15D3477A9E948950 * ___ins_8; public: inline static int32_t get_offset_of_debugInEditor_4() { return static_cast(offsetof(GameMgr_tE3D60AE9C96D966787437C5F15D3477A9E948950_StaticFields, ___debugInEditor_4)); } inline bool get_debugInEditor_4() const { return ___debugInEditor_4; } inline bool* get_address_of_debugInEditor_4() { return &___debugInEditor_4; } inline void set_debugInEditor_4(bool value) { ___debugInEditor_4 = value; } inline static int32_t get_offset_of_gameType_5() { return static_cast(offsetof(GameMgr_tE3D60AE9C96D966787437C5F15D3477A9E948950_StaticFields, ___gameType_5)); } inline int32_t get_gameType_5() const { return ___gameType_5; } inline int32_t* get_address_of_gameType_5() { return &___gameType_5; } inline void set_gameType_5(int32_t value) { ___gameType_5 = value; } inline static int32_t get_offset_of_ins_8() { return static_cast(offsetof(GameMgr_tE3D60AE9C96D966787437C5F15D3477A9E948950_StaticFields, ___ins_8)); } inline GameMgr_tE3D60AE9C96D966787437C5F15D3477A9E948950 * get_ins_8() const { return ___ins_8; } inline GameMgr_tE3D60AE9C96D966787437C5F15D3477A9E948950 ** get_address_of_ins_8() { return &___ins_8; } inline void set_ins_8(GameMgr_tE3D60AE9C96D966787437C5F15D3477A9E948950 * value) { ___ins_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___ins_8), (void*)value); } }; // PKGameReadyView_Challenge struct PKGameReadyView_Challenge_t422FE0ED7612BCE36D96961918D3245CA322AB93 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: // GameMode PKGameReadyView_Challenge::gameMode GameMode_t3635427B8DF6A50F9EAE8955955887AD0D098C82 * ___gameMode_4; // System.Int32 PKGameReadyView_Challenge::currentPlayerIndex int32_t ___currentPlayerIndex_5; // System.Boolean PKGameReadyView_Challenge::isDiscarded bool ___isDiscarded_6; public: inline static int32_t get_offset_of_gameMode_4() { return static_cast(offsetof(PKGameReadyView_Challenge_t422FE0ED7612BCE36D96961918D3245CA322AB93, ___gameMode_4)); } inline GameMode_t3635427B8DF6A50F9EAE8955955887AD0D098C82 * get_gameMode_4() const { return ___gameMode_4; } inline GameMode_t3635427B8DF6A50F9EAE8955955887AD0D098C82 ** get_address_of_gameMode_4() { return &___gameMode_4; } inline void set_gameMode_4(GameMode_t3635427B8DF6A50F9EAE8955955887AD0D098C82 * value) { ___gameMode_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___gameMode_4), (void*)value); } inline static int32_t get_offset_of_currentPlayerIndex_5() { return static_cast(offsetof(PKGameReadyView_Challenge_t422FE0ED7612BCE36D96961918D3245CA322AB93, ___currentPlayerIndex_5)); } inline int32_t get_currentPlayerIndex_5() const { return ___currentPlayerIndex_5; } inline int32_t* get_address_of_currentPlayerIndex_5() { return &___currentPlayerIndex_5; } inline void set_currentPlayerIndex_5(int32_t value) { ___currentPlayerIndex_5 = value; } inline static int32_t get_offset_of_isDiscarded_6() { return static_cast(offsetof(PKGameReadyView_Challenge_t422FE0ED7612BCE36D96961918D3245CA322AB93, ___isDiscarded_6)); } inline bool get_isDiscarded_6() const { return ___isDiscarded_6; } inline bool* get_address_of_isDiscarded_6() { return &___isDiscarded_6; } inline void set_isDiscarded_6(bool value) { ___isDiscarded_6 = value; } }; struct PKGameReadyView_Challenge_t422FE0ED7612BCE36D96961918D3245CA322AB93_StaticFields { public: // PKGameReadyView_Challenge PKGameReadyView_Challenge::ins PKGameReadyView_Challenge_t422FE0ED7612BCE36D96961918D3245CA322AB93 * ___ins_7; public: inline static int32_t get_offset_of_ins_7() { return static_cast(offsetof(PKGameReadyView_Challenge_t422FE0ED7612BCE36D96961918D3245CA322AB93_StaticFields, ___ins_7)); } inline PKGameReadyView_Challenge_t422FE0ED7612BCE36D96961918D3245CA322AB93 * get_ins_7() const { return ___ins_7; } inline PKGameReadyView_Challenge_t422FE0ED7612BCE36D96961918D3245CA322AB93 ** get_address_of_ins_7() { return &___ins_7; } inline void set_ins_7(PKGameReadyView_Challenge_t422FE0ED7612BCE36D96961918D3245CA322AB93 * value) { ___ins_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___ins_7), (void*)value); } }; // JC.SocketIO.SocketIOClient struct SocketIOClient_t2F3CABBB0CCDE518054482C7AC63F65587B6EF11 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: // BestHTTP.WebSocket.WebSocket JC.SocketIO.SocketIOClient::_ws WebSocket_tC5AF27C0708BBCF99D3D7332F846C0FFFD446C54 * ____ws_4; // System.String JC.SocketIO.SocketIOClient::_uri String_t* ____uri_5; // System.Boolean JC.SocketIO.SocketIOClient::isValid bool ___isValid_6; // System.Boolean JC.SocketIO.SocketIOClient::loaded bool ___loaded_7; public: inline static int32_t get_offset_of__ws_4() { return static_cast(offsetof(SocketIOClient_t2F3CABBB0CCDE518054482C7AC63F65587B6EF11, ____ws_4)); } inline WebSocket_tC5AF27C0708BBCF99D3D7332F846C0FFFD446C54 * get__ws_4() const { return ____ws_4; } inline WebSocket_tC5AF27C0708BBCF99D3D7332F846C0FFFD446C54 ** get_address_of__ws_4() { return &____ws_4; } inline void set__ws_4(WebSocket_tC5AF27C0708BBCF99D3D7332F846C0FFFD446C54 * value) { ____ws_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____ws_4), (void*)value); } inline static int32_t get_offset_of__uri_5() { return static_cast(offsetof(SocketIOClient_t2F3CABBB0CCDE518054482C7AC63F65587B6EF11, ____uri_5)); } inline String_t* get__uri_5() const { return ____uri_5; } inline String_t** get_address_of__uri_5() { return &____uri_5; } inline void set__uri_5(String_t* value) { ____uri_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____uri_5), (void*)value); } inline static int32_t get_offset_of_isValid_6() { return static_cast(offsetof(SocketIOClient_t2F3CABBB0CCDE518054482C7AC63F65587B6EF11, ___isValid_6)); } inline bool get_isValid_6() const { return ___isValid_6; } inline bool* get_address_of_isValid_6() { return &___isValid_6; } inline void set_isValid_6(bool value) { ___isValid_6 = value; } inline static int32_t get_offset_of_loaded_7() { return static_cast(offsetof(SocketIOClient_t2F3CABBB0CCDE518054482C7AC63F65587B6EF11, ___loaded_7)); } inline bool get_loaded_7() const { return ___loaded_7; } inline bool* get_address_of_loaded_7() { return &___loaded_7; } inline void set_loaded_7(bool value) { ___loaded_7 = value; } }; // TargetAnimal struct TargetAnimal_t90B2AB67B1B579964591B445CAF14122DB690D02 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: // System.Collections.Generic.List`1 TargetAnimal::_targetAnimalParts List_1_t27D7842CA3FD659C9BE64845F118C2590EE2D2C0 * ____targetAnimalParts_4; public: inline static int32_t get_offset_of__targetAnimalParts_4() { return static_cast(offsetof(TargetAnimal_t90B2AB67B1B579964591B445CAF14122DB690D02, ____targetAnimalParts_4)); } inline List_1_t27D7842CA3FD659C9BE64845F118C2590EE2D2C0 * get__targetAnimalParts_4() const { return ____targetAnimalParts_4; } inline List_1_t27D7842CA3FD659C9BE64845F118C2590EE2D2C0 ** get_address_of__targetAnimalParts_4() { return &____targetAnimalParts_4; } inline void set__targetAnimalParts_4(List_1_t27D7842CA3FD659C9BE64845F118C2590EE2D2C0 * value) { ____targetAnimalParts_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____targetAnimalParts_4), (void*)value); } }; // TreeAreaRecorder struct TreeAreaRecorder_tAE9063D38B62DF6BE86781A700F0D349C2E43B37 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: // System.Boolean TreeAreaRecorder::inited bool ___inited_4; // TreeAreaRecorder/AreaInfo[] TreeAreaRecorder::areaInfos AreaInfoU5BU5D_tDB8FCFB9A63CBA4F532B013A8702761BB2E7BA27* ___areaInfos_5; public: inline static int32_t get_offset_of_inited_4() { return static_cast(offsetof(TreeAreaRecorder_tAE9063D38B62DF6BE86781A700F0D349C2E43B37, ___inited_4)); } inline bool get_inited_4() const { return ___inited_4; } inline bool* get_address_of_inited_4() { return &___inited_4; } inline void set_inited_4(bool value) { ___inited_4 = value; } inline static int32_t get_offset_of_areaInfos_5() { return static_cast(offsetof(TreeAreaRecorder_tAE9063D38B62DF6BE86781A700F0D349C2E43B37, ___areaInfos_5)); } inline AreaInfoU5BU5D_tDB8FCFB9A63CBA4F532B013A8702761BB2E7BA27* get_areaInfos_5() const { return ___areaInfos_5; } inline AreaInfoU5BU5D_tDB8FCFB9A63CBA4F532B013A8702761BB2E7BA27** get_address_of_areaInfos_5() { return &___areaInfos_5; } inline void set_areaInfos_5(AreaInfoU5BU5D_tDB8FCFB9A63CBA4F532B013A8702761BB2E7BA27* value) { ___areaInfos_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___areaInfos_5), (void*)value); } }; // SocketPlayer struct SocketPlayer_t3D341EF990F6F99AFA174DF42451ECD05E909D29 : public SocketIOClient_t2F3CABBB0CCDE518054482C7AC63F65587B6EF11 { public: // System.Action SocketPlayer::onRoomReadyComplete Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___onRoomReadyComplete_9; // System.Action`2 SocketPlayer::onReceivePKGameData Action_2_t5C556B6D8F8D47EA5C55DC24670009B95AF10486 * ___onReceivePKGameData_10; // System.Boolean SocketPlayer::isGameOver bool ___isGameOver_11; public: inline static int32_t get_offset_of_onRoomReadyComplete_9() { return static_cast(offsetof(SocketPlayer_t3D341EF990F6F99AFA174DF42451ECD05E909D29, ___onRoomReadyComplete_9)); } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * get_onRoomReadyComplete_9() const { return ___onRoomReadyComplete_9; } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 ** get_address_of_onRoomReadyComplete_9() { return &___onRoomReadyComplete_9; } inline void set_onRoomReadyComplete_9(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * value) { ___onRoomReadyComplete_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___onRoomReadyComplete_9), (void*)value); } inline static int32_t get_offset_of_onReceivePKGameData_10() { return static_cast(offsetof(SocketPlayer_t3D341EF990F6F99AFA174DF42451ECD05E909D29, ___onReceivePKGameData_10)); } inline Action_2_t5C556B6D8F8D47EA5C55DC24670009B95AF10486 * get_onReceivePKGameData_10() const { return ___onReceivePKGameData_10; } inline Action_2_t5C556B6D8F8D47EA5C55DC24670009B95AF10486 ** get_address_of_onReceivePKGameData_10() { return &___onReceivePKGameData_10; } inline void set_onReceivePKGameData_10(Action_2_t5C556B6D8F8D47EA5C55DC24670009B95AF10486 * value) { ___onReceivePKGameData_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___onReceivePKGameData_10), (void*)value); } inline static int32_t get_offset_of_isGameOver_11() { return static_cast(offsetof(SocketPlayer_t3D341EF990F6F99AFA174DF42451ECD05E909D29, ___isGameOver_11)); } inline bool get_isGameOver_11() const { return ___isGameOver_11; } inline bool* get_address_of_isGameOver_11() { return &___isGameOver_11; } inline void set_isGameOver_11(bool value) { ___isGameOver_11 = value; } }; struct SocketPlayer_t3D341EF990F6F99AFA174DF42451ECD05E909D29_StaticFields { public: // SocketPlayer SocketPlayer::ins SocketPlayer_t3D341EF990F6F99AFA174DF42451ECD05E909D29 * ___ins_8; public: inline static int32_t get_offset_of_ins_8() { return static_cast(offsetof(SocketPlayer_t3D341EF990F6F99AFA174DF42451ECD05E909D29_StaticFields, ___ins_8)); } inline SocketPlayer_t3D341EF990F6F99AFA174DF42451ECD05E909D29 * get_ins_8() const { return ___ins_8; } inline SocketPlayer_t3D341EF990F6F99AFA174DF42451ECD05E909D29 ** get_address_of_ins_8() { return &___ins_8; } inline void set_ins_8(SocketPlayer_t3D341EF990F6F99AFA174DF42451ECD05E909D29 * value) { ___ins_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___ins_8), (void*)value); } }; // Yeji struct Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 : public TargetAnimal_t90B2AB67B1B579964591B445CAF14122DB690D02 { public: // UnityEngine.Animator Yeji::animator Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * ___animator_5; // UnityEngine.AI.NavMeshAgent Yeji::agent NavMeshAgent_tB9746B6C38013341DB63973CA7ED657494EFB41B * ___agent_6; // System.Int32 Yeji::hp int32_t ___hp_7; // TreeAreaRecorder Yeji::treeAreaRecorder TreeAreaRecorder_tAE9063D38B62DF6BE86781A700F0D349C2E43B37 * ___treeAreaRecorder_8; // System.Single Yeji::flyPlaneHeight float ___flyPlaneHeight_9; // System.Single Yeji::currentHeight float ___currentHeight_10; // System.Single Yeji::toFlyHeight float ___toFlyHeight_11; // System.Boolean Yeji::_firstSetFlyHeight bool ____firstSetFlyHeight_12; // System.Single Yeji::_scaleY float ____scaleY_13; // System.Boolean Yeji::_moving bool ____moving_15; // System.Single Yeji::movingTime float ___movingTime_16; // System.Single Yeji::canStandTime float ___canStandTime_17; // System.Single Yeji::canFlyStayTime float ___canFlyStayTime_18; // System.Int32 Yeji::canFlyTreeCount int32_t ___canFlyTreeCount_19; // TreeAreaRecorder/AreaInfo Yeji::targetAreaInfo AreaInfo_t23BDB3108537E7181ACFB654B90B389AE8FAC781 * ___targetAreaInfo_21; // System.Boolean Yeji::needCheckFlyDown bool ___needCheckFlyDown_22; // System.Boolean Yeji::willStayOnTree bool ___willStayOnTree_23; // Yeji/State Yeji::state State_t908756508036982A4DF72593F6016F3C51C610B7 * ___state_26; // System.Action`1 Yeji::onDie Action_1_t1B7004A16BED5066BEB03C343CA7F4B5EE772A10 * ___onDie_27; // Yeji/OnlineHandler Yeji::onlineHandler OnlineHandler_t0EEA4F8C0170610DD9F19AE15F12F6A4C74E3587 * ___onlineHandler_29; public: inline static int32_t get_offset_of_animator_5() { return static_cast(offsetof(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81, ___animator_5)); } inline Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * get_animator_5() const { return ___animator_5; } inline Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 ** get_address_of_animator_5() { return &___animator_5; } inline void set_animator_5(Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * value) { ___animator_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___animator_5), (void*)value); } inline static int32_t get_offset_of_agent_6() { return static_cast(offsetof(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81, ___agent_6)); } inline NavMeshAgent_tB9746B6C38013341DB63973CA7ED657494EFB41B * get_agent_6() const { return ___agent_6; } inline NavMeshAgent_tB9746B6C38013341DB63973CA7ED657494EFB41B ** get_address_of_agent_6() { return &___agent_6; } inline void set_agent_6(NavMeshAgent_tB9746B6C38013341DB63973CA7ED657494EFB41B * value) { ___agent_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___agent_6), (void*)value); } inline static int32_t get_offset_of_hp_7() { return static_cast(offsetof(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81, ___hp_7)); } inline int32_t get_hp_7() const { return ___hp_7; } inline int32_t* get_address_of_hp_7() { return &___hp_7; } inline void set_hp_7(int32_t value) { ___hp_7 = value; } inline static int32_t get_offset_of_treeAreaRecorder_8() { return static_cast(offsetof(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81, ___treeAreaRecorder_8)); } inline TreeAreaRecorder_tAE9063D38B62DF6BE86781A700F0D349C2E43B37 * get_treeAreaRecorder_8() const { return ___treeAreaRecorder_8; } inline TreeAreaRecorder_tAE9063D38B62DF6BE86781A700F0D349C2E43B37 ** get_address_of_treeAreaRecorder_8() { return &___treeAreaRecorder_8; } inline void set_treeAreaRecorder_8(TreeAreaRecorder_tAE9063D38B62DF6BE86781A700F0D349C2E43B37 * value) { ___treeAreaRecorder_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___treeAreaRecorder_8), (void*)value); } inline static int32_t get_offset_of_flyPlaneHeight_9() { return static_cast(offsetof(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81, ___flyPlaneHeight_9)); } inline float get_flyPlaneHeight_9() const { return ___flyPlaneHeight_9; } inline float* get_address_of_flyPlaneHeight_9() { return &___flyPlaneHeight_9; } inline void set_flyPlaneHeight_9(float value) { ___flyPlaneHeight_9 = value; } inline static int32_t get_offset_of_currentHeight_10() { return static_cast(offsetof(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81, ___currentHeight_10)); } inline float get_currentHeight_10() const { return ___currentHeight_10; } inline float* get_address_of_currentHeight_10() { return &___currentHeight_10; } inline void set_currentHeight_10(float value) { ___currentHeight_10 = value; } inline static int32_t get_offset_of_toFlyHeight_11() { return static_cast(offsetof(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81, ___toFlyHeight_11)); } inline float get_toFlyHeight_11() const { return ___toFlyHeight_11; } inline float* get_address_of_toFlyHeight_11() { return &___toFlyHeight_11; } inline void set_toFlyHeight_11(float value) { ___toFlyHeight_11 = value; } inline static int32_t get_offset_of__firstSetFlyHeight_12() { return static_cast(offsetof(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81, ____firstSetFlyHeight_12)); } inline bool get__firstSetFlyHeight_12() const { return ____firstSetFlyHeight_12; } inline bool* get_address_of__firstSetFlyHeight_12() { return &____firstSetFlyHeight_12; } inline void set__firstSetFlyHeight_12(bool value) { ____firstSetFlyHeight_12 = value; } inline static int32_t get_offset_of__scaleY_13() { return static_cast(offsetof(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81, ____scaleY_13)); } inline float get__scaleY_13() const { return ____scaleY_13; } inline float* get_address_of__scaleY_13() { return &____scaleY_13; } inline void set__scaleY_13(float value) { ____scaleY_13 = value; } inline static int32_t get_offset_of__moving_15() { return static_cast(offsetof(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81, ____moving_15)); } inline bool get__moving_15() const { return ____moving_15; } inline bool* get_address_of__moving_15() { return &____moving_15; } inline void set__moving_15(bool value) { ____moving_15 = value; } inline static int32_t get_offset_of_movingTime_16() { return static_cast(offsetof(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81, ___movingTime_16)); } inline float get_movingTime_16() const { return ___movingTime_16; } inline float* get_address_of_movingTime_16() { return &___movingTime_16; } inline void set_movingTime_16(float value) { ___movingTime_16 = value; } inline static int32_t get_offset_of_canStandTime_17() { return static_cast(offsetof(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81, ___canStandTime_17)); } inline float get_canStandTime_17() const { return ___canStandTime_17; } inline float* get_address_of_canStandTime_17() { return &___canStandTime_17; } inline void set_canStandTime_17(float value) { ___canStandTime_17 = value; } inline static int32_t get_offset_of_canFlyStayTime_18() { return static_cast(offsetof(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81, ___canFlyStayTime_18)); } inline float get_canFlyStayTime_18() const { return ___canFlyStayTime_18; } inline float* get_address_of_canFlyStayTime_18() { return &___canFlyStayTime_18; } inline void set_canFlyStayTime_18(float value) { ___canFlyStayTime_18 = value; } inline static int32_t get_offset_of_canFlyTreeCount_19() { return static_cast(offsetof(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81, ___canFlyTreeCount_19)); } inline int32_t get_canFlyTreeCount_19() const { return ___canFlyTreeCount_19; } inline int32_t* get_address_of_canFlyTreeCount_19() { return &___canFlyTreeCount_19; } inline void set_canFlyTreeCount_19(int32_t value) { ___canFlyTreeCount_19 = value; } inline static int32_t get_offset_of_targetAreaInfo_21() { return static_cast(offsetof(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81, ___targetAreaInfo_21)); } inline AreaInfo_t23BDB3108537E7181ACFB654B90B389AE8FAC781 * get_targetAreaInfo_21() const { return ___targetAreaInfo_21; } inline AreaInfo_t23BDB3108537E7181ACFB654B90B389AE8FAC781 ** get_address_of_targetAreaInfo_21() { return &___targetAreaInfo_21; } inline void set_targetAreaInfo_21(AreaInfo_t23BDB3108537E7181ACFB654B90B389AE8FAC781 * value) { ___targetAreaInfo_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___targetAreaInfo_21), (void*)value); } inline static int32_t get_offset_of_needCheckFlyDown_22() { return static_cast(offsetof(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81, ___needCheckFlyDown_22)); } inline bool get_needCheckFlyDown_22() const { return ___needCheckFlyDown_22; } inline bool* get_address_of_needCheckFlyDown_22() { return &___needCheckFlyDown_22; } inline void set_needCheckFlyDown_22(bool value) { ___needCheckFlyDown_22 = value; } inline static int32_t get_offset_of_willStayOnTree_23() { return static_cast(offsetof(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81, ___willStayOnTree_23)); } inline bool get_willStayOnTree_23() const { return ___willStayOnTree_23; } inline bool* get_address_of_willStayOnTree_23() { return &___willStayOnTree_23; } inline void set_willStayOnTree_23(bool value) { ___willStayOnTree_23 = value; } inline static int32_t get_offset_of_state_26() { return static_cast(offsetof(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81, ___state_26)); } inline State_t908756508036982A4DF72593F6016F3C51C610B7 * get_state_26() const { return ___state_26; } inline State_t908756508036982A4DF72593F6016F3C51C610B7 ** get_address_of_state_26() { return &___state_26; } inline void set_state_26(State_t908756508036982A4DF72593F6016F3C51C610B7 * value) { ___state_26 = value; Il2CppCodeGenWriteBarrier((void**)(&___state_26), (void*)value); } inline static int32_t get_offset_of_onDie_27() { return static_cast(offsetof(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81, ___onDie_27)); } inline Action_1_t1B7004A16BED5066BEB03C343CA7F4B5EE772A10 * get_onDie_27() const { return ___onDie_27; } inline Action_1_t1B7004A16BED5066BEB03C343CA7F4B5EE772A10 ** get_address_of_onDie_27() { return &___onDie_27; } inline void set_onDie_27(Action_1_t1B7004A16BED5066BEB03C343CA7F4B5EE772A10 * value) { ___onDie_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___onDie_27), (void*)value); } inline static int32_t get_offset_of_onlineHandler_29() { return static_cast(offsetof(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81, ___onlineHandler_29)); } inline OnlineHandler_t0EEA4F8C0170610DD9F19AE15F12F6A4C74E3587 * get_onlineHandler_29() const { return ___onlineHandler_29; } inline OnlineHandler_t0EEA4F8C0170610DD9F19AE15F12F6A4C74E3587 ** get_address_of_onlineHandler_29() { return &___onlineHandler_29; } inline void set_onlineHandler_29(OnlineHandler_t0EEA4F8C0170610DD9F19AE15F12F6A4C74E3587 * value) { ___onlineHandler_29 = value; Il2CppCodeGenWriteBarrier((void**)(&___onlineHandler_29), (void*)value); } }; struct Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_StaticFields { public: // System.Int32 Yeji::_avoidancePriority int32_t ____avoidancePriority_14; // System.Single[] Yeji::preFlyHeights SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* ___preFlyHeights_24; // System.Object[] Yeji::preFlyHeightCools ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___preFlyHeightCools_25; // System.Collections.Generic.HashSet`1 Yeji::yejiSet HashSet_1_t47ED9A0606C5D93A2045DE3AACBA2CD73C930023 * ___yejiSet_28; // StoneRecorder Yeji::stoneRecorder StoneRecorder_tBA3376B07C34D8BDC00CAC5B96BDC69A6EC4DB4D * ___stoneRecorder_30; public: inline static int32_t get_offset_of__avoidancePriority_14() { return static_cast(offsetof(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_StaticFields, ____avoidancePriority_14)); } inline int32_t get__avoidancePriority_14() const { return ____avoidancePriority_14; } inline int32_t* get_address_of__avoidancePriority_14() { return &____avoidancePriority_14; } inline void set__avoidancePriority_14(int32_t value) { ____avoidancePriority_14 = value; } inline static int32_t get_offset_of_preFlyHeights_24() { return static_cast(offsetof(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_StaticFields, ___preFlyHeights_24)); } inline SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* get_preFlyHeights_24() const { return ___preFlyHeights_24; } inline SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA** get_address_of_preFlyHeights_24() { return &___preFlyHeights_24; } inline void set_preFlyHeights_24(SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* value) { ___preFlyHeights_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___preFlyHeights_24), (void*)value); } inline static int32_t get_offset_of_preFlyHeightCools_25() { return static_cast(offsetof(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_StaticFields, ___preFlyHeightCools_25)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_preFlyHeightCools_25() const { return ___preFlyHeightCools_25; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_preFlyHeightCools_25() { return &___preFlyHeightCools_25; } inline void set_preFlyHeightCools_25(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ___preFlyHeightCools_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___preFlyHeightCools_25), (void*)value); } inline static int32_t get_offset_of_yejiSet_28() { return static_cast(offsetof(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_StaticFields, ___yejiSet_28)); } inline HashSet_1_t47ED9A0606C5D93A2045DE3AACBA2CD73C930023 * get_yejiSet_28() const { return ___yejiSet_28; } inline HashSet_1_t47ED9A0606C5D93A2045DE3AACBA2CD73C930023 ** get_address_of_yejiSet_28() { return &___yejiSet_28; } inline void set_yejiSet_28(HashSet_1_t47ED9A0606C5D93A2045DE3AACBA2CD73C930023 * value) { ___yejiSet_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___yejiSet_28), (void*)value); } inline static int32_t get_offset_of_stoneRecorder_30() { return static_cast(offsetof(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_StaticFields, ___stoneRecorder_30)); } inline StoneRecorder_tBA3376B07C34D8BDC00CAC5B96BDC69A6EC4DB4D * get_stoneRecorder_30() const { return ___stoneRecorder_30; } inline StoneRecorder_tBA3376B07C34D8BDC00CAC5B96BDC69A6EC4DB4D ** get_address_of_stoneRecorder_30() { return &___stoneRecorder_30; } inline void set_stoneRecorder_30(StoneRecorder_tBA3376B07C34D8BDC00CAC5B96BDC69A6EC4DB4D * value) { ___stoneRecorder_30 = value; Il2CppCodeGenWriteBarrier((void**)(&___stoneRecorder_30), (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.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); } }; // System.Boolean[] struct BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C : public RuntimeArray { public: ALIGN_FIELD (8) bool m_Items[1]; public: inline bool GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline bool* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, bool value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline bool GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline bool* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, bool value) { m_Items[index] = value; } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Attribute[] struct X509AttributeU5BU5D_tB7CB869D1933A59A13717C710F5F0ED2A833E042 : public RuntimeArray { public: ALIGN_FIELD (8) X509Attribute_t81BD5B9B96782764FF136486088938EC85B61559 * m_Items[1]; public: inline X509Attribute_t81BD5B9B96782764FF136486088938EC85B61559 * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline X509Attribute_t81BD5B9B96782764FF136486088938EC85B61559 ** 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, X509Attribute_t81BD5B9B96782764FF136486088938EC85B61559 * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline X509Attribute_t81BD5B9B96782764FF136486088938EC85B61559 * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline X509Attribute_t81BD5B9B96782764FF136486088938EC85B61559 ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, X509Attribute_t81BD5B9B96782764FF136486088938EC85B61559 * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable[] struct Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE : public RuntimeArray { public: ALIGN_FIELD (8) Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * m_Items[1]; public: inline Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC ** 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, Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Int32[] struct Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32 : public RuntimeArray { public: ALIGN_FIELD (8) int32_t m_Items[1]; public: inline int32_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline int32_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, int32_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value) { m_Items[index] = value; } }; // System.UInt32[] struct UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF : public RuntimeArray { public: ALIGN_FIELD (8) uint32_t m_Items[1]; public: inline uint32_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline uint32_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, uint32_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline uint32_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline uint32_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, uint32_t value) { m_Items[index] = value; } }; // TreeAreaRecorder/AreaInfo[] struct AreaInfoU5BU5D_tDB8FCFB9A63CBA4F532B013A8702761BB2E7BA27 : public RuntimeArray { public: ALIGN_FIELD (8) AreaInfo_t23BDB3108537E7181ACFB654B90B389AE8FAC781 * m_Items[1]; public: inline AreaInfo_t23BDB3108537E7181ACFB654B90B389AE8FAC781 * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline AreaInfo_t23BDB3108537E7181ACFB654B90B389AE8FAC781 ** 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, AreaInfo_t23BDB3108537E7181ACFB654B90B389AE8FAC781 * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline AreaInfo_t23BDB3108537E7181ACFB654B90B389AE8FAC781 * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline AreaInfo_t23BDB3108537E7181ACFB654B90B389AE8FAC781 ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, AreaInfo_t23BDB3108537E7181ACFB654B90B389AE8FAC781 * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Single[] struct SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA : public RuntimeArray { public: ALIGN_FIELD (8) float m_Items[1]; public: inline float GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline float* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, float value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline float GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline float* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, float value) { m_Items[index] = value; } }; // 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.SByte[] struct SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7 : public RuntimeArray { public: ALIGN_FIELD (8) int8_t m_Items[1]; public: inline int8_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline int8_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, int8_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline int8_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline int8_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, int8_t value) { m_Items[index] = value; } }; // System.Int16[] struct Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD : public RuntimeArray { public: ALIGN_FIELD (8) int16_t m_Items[1]; public: inline int16_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline int16_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, int16_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline int16_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline int16_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, int16_t value) { m_Items[index] = value; } }; // !!0[] System.Array::Empty() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* Array_Empty_TisRuntimeObject_m002765312BF306B1B3B5BFAB9550C0A2A1820CDA_gshared_inline (const RuntimeMethod* method); // System.Boolean System.Collections.Generic.HashSet`1::Add(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HashSet_1_Add_m8194125167FD7A887F1B39D342A71A0BD0C8BF5C_gshared (HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B * __this, RuntimeObject * ___item0, 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.Boolean System.Collections.Generic.HashSet`1::Remove(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HashSet_1_Remove_mB2A3571B348E408BAC91D09A81DF97EAE11A1B02_gshared (HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B * __this, RuntimeObject * ___item0, const RuntimeMethod* method); // System.Void System.Action`2::Invoke(!0,!1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2_Invoke_mAA2FFFC084F845E770473201F3F4DD6805F0F3FE_gshared (Action_2_t0E8CFD7D8A4393070552ED14F07C6D3B5AD0ED57 * __this, RuntimeObject * ___arg10, int32_t ___arg21, const RuntimeMethod* method); // System.Void System.Action`1::Invoke(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_Invoke_mAAE01A16F138CEC8E1965D322EFB6A7045FE76F2_gshared (Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Void System.Collections.Generic.HashSet`1::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HashSet_1__ctor_m2CDA40DEC2900A9CB00F8348FF386DF44ABD0EC7_gshared (HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B * __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); // !!0 UnityEngine.Object::Instantiate(!!0,UnityEngine.Vector3,UnityEngine.Quaternion,UnityEngine.Transform) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Object_Instantiate_TisRuntimeObject_m395E8296B15F96587420FD49B2A105D109464C22_gshared (RuntimeObject * ___original0, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___position1, Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___rotation2, Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___parent3, 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_mA671E933C9D3DAE4E3F71D34FDDA971739618158_gshared (Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.HashSet`1::get_Count() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t HashSet_1_get_Count_m41C20B7D2DB4661F5C68E9BA25E4B83FC6914CD8_gshared_inline (HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B * __this, const RuntimeMethod* method); // !!0 UnityEngine.Resources::Load(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Resources_Load_TisRuntimeObject_m83108B6D8808A0E83DE12FD220A87000D19AEE00_gshared (String_t* ___path0, 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); // System.Void System.ValueTuple`2::.ctor(!0,!1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_2__ctor_mB8133ACA310169B397397A43169A5CB56FCEE9D6_gshared (ValueTuple_2_t8A744F446B0F7B478AD1F3F16A38F910E3329FC8 * __this, float ___item10, float ___item21, const RuntimeMethod* method); // System.Collections.Generic.HashSet`1/Enumerator System.Collections.Generic.HashSet`1::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t2430E2854B4328060EB6096AD1E4851E8DC45C3A HashSet_1_GetEnumerator_m6BF4958E6C8FB6D7E43F9275B1C01D9FFDA8FC8C_gshared (HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B * __this, const RuntimeMethod* method); // !0 System.Collections.Generic.HashSet`1/Enumerator::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_mD3F74B1DAE1E1A26CA398905BEFFDA4760F2FD8F_gshared_inline (Enumerator_t2430E2854B4328060EB6096AD1E4851E8DC45C3A * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.HashSet`1/Enumerator::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mD87CDEF3F60C047F21B9E6A48590E59D9D6621C9_gshared (Enumerator_t2430E2854B4328060EB6096AD1E4851E8DC45C3A * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.HashSet`1/Enumerator::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m8A225BA705CC2D5BA0A22FF58381EA1FDB37ED20_gshared (Enumerator_t2430E2854B4328060EB6096AD1E4851E8DC45C3A * __this, const RuntimeMethod* method); // System.String System.String::Substring(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_mB6B87FD76552BBF6D4E2B9F07F857FE051DCE190 (String_t* __this, int32_t ___startIndex0, const RuntimeMethod* method); // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Encoders.Hex::Decode(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* Hex_Decode_m1D881955B974F7FB194876E59DD34149C594A6E1 (String_t* ___data0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Object BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Object::FromByteArray(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * Asn1Object_FromByteArray_m2DB00E0C5F68F2C4C3CA24B1F3075BC8DA9AD989 (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___data0, const RuntimeMethod* method); // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerPrintableString::IsPrintableString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DerPrintableString_IsPrintableString_m2D091A0B1AF0E46BCE9561B99BC78D8F62DC4A33 (String_t* ___str0, const RuntimeMethod* method); // System.Void System.Object::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405 (RuntimeObject * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509NameTokenizer::.ctor(System.String,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509NameTokenizer__ctor_mF13D8D3BAAF23E1E772CD0E63A2272EA5F4BEA8D (X509NameTokenizer_tDAF307295F6A85ECEF068F02DFE878693672ECEC * __this, String_t* ___oid0, Il2CppChar ___separator1, const RuntimeMethod* method); // System.Void System.Text.StringBuilder::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_m5A81DE19E748F748E19FF13FB6FFD2547F9212D9 (StringBuilder_t * __this, 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.Int32 System.Text.StringBuilder::get_Length() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StringBuilder_get_Length_m680500263C59ACFD9582BF2AEEED8E92C87FF5C0 (StringBuilder_t * __this, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::Remove(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Remove_m6ABF9CF3D10160EB52E0768262A9B179F987571E (StringBuilder_t * __this, int32_t ___startIndex0, int32_t ___length1, const RuntimeMethod* method); // System.Char System.String::get_Chars(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70 (String_t* __this, int32_t ___index0, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E (StringBuilder_t * __this, Il2CppChar ___value0, const RuntimeMethod* method); // System.Char System.Text.StringBuilder::get_Chars(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar StringBuilder_get_Chars_m5961A0987EEF0A0F8C335048A33EC4584B53F1E3 (StringBuilder_t * __this, int32_t ___index0, 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.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DerObjectIdentifier__ctor_m8009342D7B2AD40B1E19E6AB958141979B7405CD (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * __this, String_t* ___identifier0, 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); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters::GetInstance(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69 * RsassaPssParameters_GetInstance_mC4FCD2C40DFF8D0F69DDCCC32621F9A370CE3CBE (RuntimeObject * ___obj0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters::get_HashAlgorithm() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * RsassaPssParameters_get_HashAlgorithm_mE761E1603909D87FF6B83B1BDE6366BF8F96FEA1_inline (RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69 * __this, const RuntimeMethod* method); // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509SignatureUtilities::GetDigestAlgName(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* X509SignatureUtilities_GetDigestAlgName_mBF4A6706A2FEE442128F232C495F5F47587B1D64 (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___digestAlgOID0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::GetInstance(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * Asn1Sequence_GetInstance_m53E4D5619D84F02123D6C3B6EA8E0EEEF86B244C (RuntimeObject * ___obj0, const RuntimeMethod* method); // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::get_Id() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* DerObjectIdentifier_get_Id_m1A4618B1F7ED8630EDC76DF95D8C7086F1E616D6_inline (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * __this, const RuntimeMethod* method); // System.Void System.Exception::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_m0E9BEC861F6DBED197960E5BA23149543B1D7F5B (Exception_t * __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.Void System.Exception::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_mB842BA6E644CDB9DB058F5628BB90DF5EF22C080 (Exception_t * __this, String_t* ___message0, Exception_t * ___innerException1, 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.String BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform::ToUpperInvariant(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Platform_ToUpperInvariant_m306E35263EC9F3B4FE0722C3173BAAFDB1B3E158 (String_t* ___s0, 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.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.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.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.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.Store.NoSuchStoreException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NoSuchStoreException__ctor_m0AEABA9A9FA79A0F879B939DA4E10ADE432DABB3 (NoSuchStoreException_tD96393D1B68A67672A0B5A0D0C44305698C04176 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Collections.ICollection BestHTTP.SecureProtocol.Org.BouncyCastle.X509.Store.X509CollectionStoreParameters::GetCollection() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* X509CollectionStoreParameters_GetCollection_mEA02C1A2296C96E670228F9BD54B5DFC31594285 (X509CollectionStoreParameters_t9AC6D285ADBA3F814F6985940388A9C944D26401 * __this, 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.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E (RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 ___handle0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.Store.X509StoreFactory::checkCorrectType(System.Collections.ICollection,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509StoreFactory_checkCorrectType_m4935FA509806DB1C3E7D7FB305FC3C3E7597253D (RuntimeObject* ___coll0, Type_t * ___t1, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.Store.X509CollectionStore::.ctor(System.Collections.ICollection) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509CollectionStore__ctor_mB9B2F0FBE21DB809E09CF052C093DA1A654465FE (X509CollectionStore_tC725C67FA9A701B4A60D34656D36A0A5FBCC6805 * __this, RuntimeObject* ___collection0, const RuntimeMethod* method); // System.Void System.InvalidCastException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidCastException__ctor_m50103CBF0C211B93BF46697875413A10B5A5C5A3 (InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Collections.IDictionary BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform::CreateHashtable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Platform_CreateHashtable_mC95944AF156429BA5DCBC1173539FC65A7782B06 (const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections.HashSet::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HashSet__ctor_m69B31BE760CB1E8513D795698BBD166D60821C5E (HashSet_t1E14FE66FBB0732BFDA0861868A51969563DF754 * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AlgorithmIdentifier__ctor_m942B7921A63CC0139DAD59B57D2B41BBA20EF608 (AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * __this, DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___algorithm0, Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * ___parameters1, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Operators.X509Utilities::CreatePssParams(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69 * X509Utilities_CreatePssParams_m49C46157623EDE814CC370FDEBBA516898B24647 (AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___hashAlgId0, int32_t ___saltSize1, const RuntimeMethod* method); // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Operators.X509Utilities::GetDigestAlgName(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* X509Utilities_GetDigestAlgName_m70187F82F89D12B236EEC71BA90530F5EE1F4DCE (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___digestAlgOID0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DerInteger__ctor_m014B0C2AADB00543E51D3621D5B93E030C47F6CA (DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * __this, int32_t ___value0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RsassaPssParameters__ctor_m7D750278B1EDDC3E337098DCC4DCC4BCE4F23027 (RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69 * __this, AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___hashAlgorithm0, AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___maskGenAlgorithm1, DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * ___saltLength2, DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * ___trailerField3, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AlgorithmIdentifier__ctor_mA45787B3AB8C719957BA61423CD3FA852BFB5AE3 (AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * __this, DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___algorithm0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections.EnumerableProxy::.ctor(System.Collections.IEnumerable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumerableProxy__ctor_m3A29836DAA548DB5ADE9DF4D26EE061EF50B34F5 (EnumerableProxy_t026114E7F2A8CD4B2FA989282FE080341A4614E2 * __this, RuntimeObject* ___inner0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Utilities::CreatePssParams(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69 * X509Utilities_CreatePssParams_mA29AEA87F037942C42652F2077C7CA8116C1FE52 (AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___hashAlgId0, int32_t ___saltSize1, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ISigner BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SignerUtilities::GetSigner(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SignerUtilities_GetSigner_mA7DA1E4D22BE302FDF5EA80A7226F44FF18C5F64 (String_t* ___algorithm0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.ParametersWithRandom::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ICipherParameters,BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParametersWithRandom__ctor_m9CC2D927A9DC93F6BED2DE101C93E19050FEDF97 (ParametersWithRandom_t557A9B373F5F2998BE6C0461812FBE4EB73425AC * __this, RuntimeObject* ___parameters0, SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * ___random1, const RuntimeMethod* method); // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable::GetDerEncoded() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* Asn1Encodable_GetDerEncoded_m30F357C2B994910EAC405FACBB5CA88181B3CD4E (Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V1TbsCertificateGenerator::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void V1TbsCertificateGenerator__ctor_m6A19B9ACB50AF491A6F64A3790EE62A695F8D701 (V1TbsCertificateGenerator_t0C696954AC2E290683DA1581EA144E4EBB8D2D10 * __this, const RuntimeMethod* method); // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::get_SignValue() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t BigInteger_get_SignValue_mD40EFBE0702F356758CE49796DD9743BF06E5199_inline (BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * __this, 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.Asn1.DerInteger::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DerInteger__ctor_m612C6B5423FEC812F2B14987AF4D153C141750F0 (DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * __this, BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___value0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V1TbsCertificateGenerator::SetSerialNumber(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V1TbsCertificateGenerator_SetSerialNumber_mA197E0BAF391F9117BA61BD90D7A11594B922C2F_inline (V1TbsCertificateGenerator_t0C696954AC2E290683DA1581EA144E4EBB8D2D10 * __this, DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * ___serialNumber0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V1TbsCertificateGenerator::SetIssuer(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V1TbsCertificateGenerator_SetIssuer_mEA098B787E9A98E3B09901823D1580548A26ABB8_inline (V1TbsCertificateGenerator_t0C696954AC2E290683DA1581EA144E4EBB8D2D10 * __this, X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * ___issuer0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.Time::.ctor(System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Time__ctor_mBC7631425BAF63401048865DBFD7CDE253FEB313 (Time_tD684B1785E755395701D46F89A97609911CD6DDE * __this, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___date0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V1TbsCertificateGenerator::SetStartDate(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.Time) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V1TbsCertificateGenerator_SetStartDate_mC23C4EA59BDA548B589DBB07C3E884C4322376DB_inline (V1TbsCertificateGenerator_t0C696954AC2E290683DA1581EA144E4EBB8D2D10 * __this, Time_tD684B1785E755395701D46F89A97609911CD6DDE * ___startDate0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V1TbsCertificateGenerator::SetEndDate(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.Time) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V1TbsCertificateGenerator_SetEndDate_mD95D21EC8E8D5C8AE1CFB42BC70FCEC9465957C6_inline (V1TbsCertificateGenerator_t0C696954AC2E290683DA1581EA144E4EBB8D2D10 * __this, Time_tD684B1785E755395701D46F89A97609911CD6DDE * ___endDate0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V1TbsCertificateGenerator::SetSubject(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V1TbsCertificateGenerator_SetSubject_m8D39D66BDCE270B41A3C97DF438D6F56B483D193_inline (V1TbsCertificateGenerator_t0C696954AC2E290683DA1581EA144E4EBB8D2D10 * __this, X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * ___subject0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo BestHTTP.SecureProtocol.Org.BouncyCastle.X509.SubjectPublicKeyInfoFactory::CreateSubjectPublicKeyInfo(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB * SubjectPublicKeyInfoFactory_CreateSubjectPublicKeyInfo_m05DEB0821C10550E622F69B5E83F1A285F4F857D (AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * ___publicKey0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V1TbsCertificateGenerator::SetSubjectPublicKeyInfo(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V1TbsCertificateGenerator_SetSubjectPublicKeyInfo_m3736F7594AAA3F6482EE0387EBCE3AD84CED0CD0_inline (V1TbsCertificateGenerator_t0C696954AC2E290683DA1581EA144E4EBB8D2D10 * __this, SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB * ___pubKeyInfo0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Utilities::GetAlgorithmOid(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * X509Utilities_GetAlgorithmOid_m9F775A603669DE9A5E4FDCC0A56F8C0B9F7DAEE4 (String_t* ___algorithmName0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Utilities::GetSigAlgID(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * X509Utilities_GetSigAlgID_mA149FCB12BE7F0FC7331A3234DAB2CCAEFB86F59 (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___sigOid0, String_t* ___algorithmName1, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V1TbsCertificateGenerator::SetSignature(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V1TbsCertificateGenerator_SetSignature_mD7F4C5183C8737C11FCB2663AED92F33ED6BF6D5_inline (V1TbsCertificateGenerator_t0C696954AC2E290683DA1581EA144E4EBB8D2D10 * __this, AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___signature0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Certificate BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V1CertificateGenerator::Generate(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter,BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06 * X509V1CertificateGenerator_Generate_m5DEB74CBE16E6D4E9E75FFBCBEFF1157C1187092 (X509V1CertificateGenerator_t010F8B11CD3F1A8AC4E596141AD1AFA3C02E9EE9 * __this, AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * ___privateKey0, SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * ___random1, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Operators.Asn1SignatureFactory::.ctor(System.String,BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter,BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Asn1SignatureFactory__ctor_m3B76289916350A708ADF571E9FEE4A509E87E0E7 (Asn1SignatureFactory_t82880FE5F99692E8C940551308221AA7CAB2682A * __this, String_t* ___algorithm0, AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * ___privateKey1, SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * ___random2, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Certificate BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V1CertificateGenerator::Generate(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ISignatureFactory) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06 * X509V1CertificateGenerator_Generate_m8684CD91D3F87C6EF8F7374C91B4BA1F2E3AF367 (X509V1CertificateGenerator_t010F8B11CD3F1A8AC4E596141AD1AFA3C02E9EE9 * __this, RuntimeObject* ___signatureCalculatorFactory0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateStructure BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V1TbsCertificateGenerator::GenerateTbsCertificate() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3 * V1TbsCertificateGenerator_GenerateTbsCertificate_m37FF3D46083A1D55CFA8A765C3F50B7457B22D0C (V1TbsCertificateGenerator_t0C696954AC2E290683DA1581EA144E4EBB8D2D10 * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform::Dispose(System.IO.Stream) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Platform_Dispose_m852AB0A263A990096BCE2A4230CB5723F873C1A2 (Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___s0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Certificate BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V1CertificateGenerator::GenerateJcaObject(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateStructure,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06 * X509V1CertificateGenerator_GenerateJcaObject_mC0195A5CC68D0D73E5C98D1578F0E0050105B208 (X509V1CertificateGenerator_t010F8B11CD3F1A8AC4E596141AD1AFA3C02E9EE9 * __this, TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3 * ___tbsCert0, AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___sigAlg1, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___signature2, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString::.ctor(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DerBitString__ctor_m97AF53404F6333EA146C0DB958DF3C483B71D94B (DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___data0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509CertificateStructure::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateStructure,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509CertificateStructure__ctor_mB983F7D54B4AF1C7A9B3F77E29427DE75BB2024E (X509CertificateStructure_tD48237F907D1001604C98590613EFD6D720BEDE1 * __this, TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3 * ___tbsCert0, AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___sigAlgID1, DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * ___sig2, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Certificate::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509CertificateStructure) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Certificate__ctor_m4535814BC74C5F8715C14327149914B85DB89C5B (X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06 * __this, X509CertificateStructure_tD48237F907D1001604C98590613EFD6D720BEDE1 * ___c0, const RuntimeMethod* method); // System.Collections.IEnumerable BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Utilities::GetAlgNames() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* X509Utilities_GetAlgNames_mD83E9C06473AD2CFCFB7ACF02458BB69AF429932 (const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Object BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Object::FromStream(System.IO.Stream) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * Asn1Object_FromStream_m4BDFDC6ECEE5F8CBAC16ACEA0D2D4786C81C4A43 (Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___inStr0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeCertificate BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeCertificate::GetInstance(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 * AttributeCertificate_GetInstance_m44F282F6BC1A20DF231B9680EFB85940F3D37F1D (RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Void System.IO.IOException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IOException__ctor_m6FEE731FB9201F8322FB67EFEE6F43D424DFE1E7 (IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeCertificate BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificate::GetObject(System.IO.Stream) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 * X509V2AttributeCertificate_GetObject_mB379854757E0725E3E6A1F41CE6B847C8F02842B (Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___input0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificate::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeCertificate) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V2AttributeCertificate__ctor_mFE4BE06C834860627D03F6E242C656CB3B815554 (X509V2AttributeCertificate_t004E81AFB075D95CA954C1C9E84F0C63F27A56A3 * __this, AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 * ___cert0, const RuntimeMethod* method); // System.Void System.IO.MemoryStream::.ctor(System.Byte[],System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryStream__ctor_m27461F2CC712138C855A9C1CDCB211CC5BDBAC9A (MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___buffer0, bool ___writable1, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificate::.ctor(System.IO.Stream) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V2AttributeCertificate__ctor_m606E94BB1A3B48366C758D2B9601BF2FCC468D31 (X509V2AttributeCertificate_t004E81AFB075D95CA954C1C9E84F0C63F27A56A3 * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___encIn0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509ExtensionBase::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509ExtensionBase__ctor_m17C359C027031D09C61C27360069BA8328E0713F (X509ExtensionBase_t91B691B9E834F516C9CE847F2B900B019A37CCE7 * __this, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeCertificateInfo BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeCertificate::get_ACInfo() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00 * AttributeCertificate_get_ACInfo_m00F32F713F5C5408A358DEB8A787864FB08622AC_inline (AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 * __this, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttCertValidityPeriod BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeCertificateInfo::get_AttrCertValidityPeriod() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR AttCertValidityPeriod_t02A425D4B6DBD563E99E6448C58680741D22B4EA * AttributeCertificateInfo_get_AttrCertValidityPeriod_m27AE4D76FF3D8D3B5ED89C7A7AEF1F2642E5B313_inline (AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00 * __this, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerGeneralizedTime BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttCertValidityPeriod::get_NotAfterTime() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 * AttCertValidityPeriod_get_NotAfterTime_mCA3F315E21623799710C7C7618F90489E31234D9_inline (AttCertValidityPeriod_t02A425D4B6DBD563E99E6448C58680741D22B4EA * __this, const RuntimeMethod* method); // System.DateTime BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerGeneralizedTime::ToDateTime() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 DerGeneralizedTime_ToDateTime_m39AFA523A5A7DC35778076EEB60F021AF24291C5 (DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 * __this, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerGeneralizedTime BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttCertValidityPeriod::get_NotBeforeTime() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 * AttCertValidityPeriod_get_NotBeforeTime_m63AB2C4F56E6B940CD21DBB63844E485921EEB07_inline (AttCertValidityPeriod_t02A425D4B6DBD563E99E6448C58680741D22B4EA * __this, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeCertificateInfo::get_Version() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * AttributeCertificateInfo_get_Version_mD32C69DC15BD4DE6F7E658CA4EAAE7EBAAF83E89_inline (AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00 * __this, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * DerInteger_get_Value_m8C263058A637AE123BD47291A36538E05E374478 (DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * __this, const RuntimeMethod* method); // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::get_IntValue() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BigInteger_get_IntValue_m6386348CAE8E75A68124AD1F36F497FC551F8144 (BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * __this, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeCertificateInfo::get_SerialNumber() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * AttributeCertificateInfo_get_SerialNumber_m1F7898719A2CC52162B376BC8630F5D20D5787D7_inline (AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00 * __this, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.Holder BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeCertificateInfo::get_Holder() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Holder_t64C922905238378DD56C273DE16BA7D09529E22A * AttributeCertificateInfo_get_Holder_m373FBF0ABE7AB2ABAF0E2D66788BBFC1CFFA9646_inline (AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00 * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.AttributeCertificateHolder::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeCertificateHolder__ctor_m1C4A3A9034787C092480EB76CE110B59D50F26F5 (AttributeCertificateHolder_t84044880E63B3791FAAD143E5AE456CCAF5A283D * __this, Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * ___seq0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttCertIssuer BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeCertificateInfo::get_Issuer() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR AttCertIssuer_tC2A63BCB19A64F1F5B6335B241ED80E5AAC1562A * AttributeCertificateInfo_get_Issuer_mAAFB9EB7493596F3DA8799CB95680140B72A3B15_inline (AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00 * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.AttributeCertificateIssuer::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttCertIssuer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeCertificateIssuer__ctor_mD9F3DBE7A849448196F5B35485D0BDB6A87B2618 (AttributeCertificateIssuer_t0CDFDFE49E5B87F38DDC1F1E13440FB7C1B394D4 * __this, AttCertIssuer_tC2A63BCB19A64F1F5B6335B241ED80E5AAC1562A * ___issuer0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeCertificateInfo::get_IssuerUniqueID() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * AttributeCertificateInfo_get_IssuerUniqueID_mF88B6C2A0C61D5D21988E3080D53D7579DE1440E_inline (AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00 * __this, const RuntimeMethod* method); // System.DateTime System.DateTime::get_UtcNow() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 DateTime_get_UtcNow_m761E57F86226DDD94F0A2F4D98F0A8E27C74F090 (const RuntimeMethod* 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.String System.DateTime::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTime_ToString_m242888E500DFD8CD675BDC455BC696AF47813954 (DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Security.Certificates.CertificateExpiredException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CertificateExpiredException__ctor_mC3B987349E274E43ED9A03C166EFCC31C56D6CD6 (CertificateExpiredException_t05907054C3E1FC12C458807B83722B8477BD21B8 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Security.Certificates.CertificateNotYetValidException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CertificateNotYetValidException__ctor_m137C9334210635B00D13E77519A0590C2A957605 (CertificateNotYetValidException_t23D92E9FAB5FBCE6D961AAD0BDE9F2EB97F699AE * __this, String_t* ___message0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeCertificate::get_SignatureAlgorithm() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * AttributeCertificate_get_SignatureAlgorithm_m4D0B9DD6A8DC43ED937F7A5DFF5221ABCB42A40D_inline (AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 * __this, const RuntimeMethod* method); // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeCertificate::GetSignatureOctets() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* AttributeCertificate_GetSignatureOctets_mC5A3D187C35A999DF252FBA9A8A581AA04DE5057 (AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Operators.Asn1VerifierFactory::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Asn1VerifierFactory__ctor_m45999C78ED6DB25313CB57C23947BE35B8909E9C (Asn1VerifierFactory_t7331A64CE68459C50FCE03C94BBA668180927CD4 * __this, AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___algorithm0, AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * ___publicKey1, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeCertificateInfo::get_Signature() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * AttributeCertificateInfo_get_Signature_m5B0759B9FB8731B69D44CC557DB09ECB1D4FF5C3_inline (AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00 * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Security.Certificates.CertificateException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CertificateException__ctor_m398B660736A1863961155734E5883CDECCF07B32 (CertificateException_tB4C9EC1D72D2EB953B1A67314C641CA607912CCB * __this, String_t* ___message0, const RuntimeMethod* method); // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable::GetEncoded() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* Asn1Encodable_GetEncoded_m896BCF72900F9B8B4CCA196988ACB61423A424AF (Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SignatureException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SignatureException__ctor_mD46453FE2F643250E4D112F169DA73C6A0D48977 (SignatureException_t8646C7AB185E39DCCA9ED2BC70B36207BA5A8EBA * __this, String_t* ___message0, Exception_t * ___exception1, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Security.InvalidKeyException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidKeyException__ctor_m8237DB4630E307D5BF4496918D1F5A07DC10E5CF (InvalidKeyException_t7F19EE8EB26000BAFDF50186FB1DD59F13A7FD8A * __this, String_t* ___message0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeCertificateInfo::get_Extensions() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F * AttributeCertificateInfo_get_Extensions_m2F790F39E1AB66AF2415D800C6A33686C1FBAC1D_inline (AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00 * __this, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeCertificateInfo::get_Attributes() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * AttributeCertificateInfo_get_Attributes_mEE6BD725805254ADA35EAB78103EE6D1975E56CB_inline (AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00 * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Attribute::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Attribute__ctor_m26F8B424230FEAD9A7F759A356177C29C33A98B6 (X509Attribute_t81BD5B9B96782764FF136486088938EC85B61559 * __this, Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * ___at0, const RuntimeMethod* method); // System.Collections.IList BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform::CreateArrayList() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Platform_CreateArrayList_mDA08F8A3BC566FA8E0753B97D8B06F3EF26A4143 (const RuntimeMethod* method); // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Attribute::get_Oid() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* X509Attribute_get_Oid_m5C2B8CD3F3FC8D127E9A76DA86E84DFECDAE2D64 (X509Attribute_t81BD5B9B96782764FF136486088938EC85B61559 * __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.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509ExtensionsGenerator::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509ExtensionsGenerator__ctor_mB7D490ED4359DF50045F1879242A4A21948A2D9B (X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017 * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V2AttributeCertificateInfoGenerator::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void V2AttributeCertificateInfoGenerator__ctor_m3E3B4EDFF96244038B1B6D4B7DADCBE2A28F2C2D (V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036 * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509ExtensionsGenerator::Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509ExtensionsGenerator_Reset_mB0501EACA8C4B642DB7D75B7290946B01EDE3646 (X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017 * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V2AttributeCertificateInfoGenerator::SetHolder(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.Holder) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V2AttributeCertificateInfoGenerator_SetHolder_mC59D66CA8AA6F0A2FA2588C150326603B998F604_inline (V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036 * __this, Holder_t64C922905238378DD56C273DE16BA7D09529E22A * ___holder0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttCertIssuer BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttCertIssuer::GetInstance(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttCertIssuer_tC2A63BCB19A64F1F5B6335B241ED80E5AAC1562A * AttCertIssuer_GetInstance_mB0E77F42C07ADA78E03E8DD2EBA382606458FFDC (RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V2AttributeCertificateInfoGenerator::SetIssuer(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttCertIssuer) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V2AttributeCertificateInfoGenerator_SetIssuer_m4B620D36F125A835F42D0E492EE182264E5C4D0C_inline (V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036 * __this, AttCertIssuer_tC2A63BCB19A64F1F5B6335B241ED80E5AAC1562A * ___issuer0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V2AttributeCertificateInfoGenerator::SetSerialNumber(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V2AttributeCertificateInfoGenerator_SetSerialNumber_m8BC58C228089EB8037BC91359A794A9E1881F6F5_inline (V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036 * __this, DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * ___serialNumber0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerGeneralizedTime::.ctor(System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DerGeneralizedTime__ctor_mB2C53D4E1AF2AD5ED1B8F41D730875DD1EC48CA6 (DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 * __this, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___time0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V2AttributeCertificateInfoGenerator::SetStartDate(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerGeneralizedTime) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V2AttributeCertificateInfoGenerator_SetStartDate_mB64874F432A6989CC4B5D3F9FE9644A3B1B13B7E_inline (V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036 * __this, DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 * ___startDate0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V2AttributeCertificateInfoGenerator::SetEndDate(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerGeneralizedTime) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V2AttributeCertificateInfoGenerator_SetEndDate_m33AC104849F62DEBF906F321BD385A1E5CAADE08_inline (V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036 * __this, DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 * ___endDate0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V2AttributeCertificateInfoGenerator::SetSignature(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V2AttributeCertificateInfoGenerator_SetSignature_m315563D4C9DCE8E3BDF9C8475FE32F57ED3687A8_inline (V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036 * __this, AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___signature0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeX509 BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeX509::GetInstance(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeX509_t63A4C9CCBF6EE24C795D436E493F4C56327185EA * AttributeX509_GetInstance_m272981F027CB11EFB83AA0CF3BC8F835BCF3F6AF (RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V2AttributeCertificateInfoGenerator::AddAttribute(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeX509) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void V2AttributeCertificateInfoGenerator_AddAttribute_m4F8AA103D04BBD7B9A0AFAB3FE86117D16CDD06A (V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036 * __this, AttributeX509_t63A4C9CCBF6EE24C795D436E493F4C56327185EA * ___attribute0, const RuntimeMethod* method); // System.Exception BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform::CreateNotImplementedException(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * Platform_CreateNotImplementedException_m354FC98BB8605016FF125C0BE509AB24921F6ED2 (String_t* ___message0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509ExtensionsGenerator::AddExtension(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Boolean,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509ExtensionsGenerator_AddExtension_m33588CC2BBC5492493B179B7E4FA63DA5DC4B67D (X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017 * __this, DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___oid0, bool ___critical1, Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * ___extValue2, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509ExtensionsGenerator::AddExtension(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Boolean,System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509ExtensionsGenerator_AddExtension_m30534A347383AD1744D02A9E7AB42775EFA82C1B (X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017 * __this, DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___oid0, bool ___critical1, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___extValue2, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.IX509AttributeCertificate BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificateGenerator::Generate(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter,BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* X509V2AttributeCertificateGenerator_Generate_m1C95A668C04DE39802F74D2DA808BACB525D3346 (X509V2AttributeCertificateGenerator_t1D1AA3B97DC5936015611DA35A8759A26D6FF775 * __this, AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * ___privateKey0, SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * ___random1, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.IX509AttributeCertificate BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificateGenerator::Generate(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ISignatureFactory) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* X509V2AttributeCertificateGenerator_Generate_m6F74A44069DAB28A3B24FBC988F70F6980C61B8D (X509V2AttributeCertificateGenerator_t1D1AA3B97DC5936015611DA35A8759A26D6FF775 * __this, RuntimeObject* ___signatureCalculatorFactory0, const RuntimeMethod* method); // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509ExtensionsGenerator::get_IsEmpty() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool X509ExtensionsGenerator_get_IsEmpty_m80C3FB668B6AFCC515B529A100626FF0F96A97C1 (X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017 * __this, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509ExtensionsGenerator::Generate() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F * X509ExtensionsGenerator_Generate_m6E3B33182C20F1F63B510DDBA98CBFB0724DBE7F (X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017 * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V2AttributeCertificateInfoGenerator::SetExtensions(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V2AttributeCertificateInfoGenerator_SetExtensions_mF9DE6CAA40B5D9AEE104A8DC91309EB0B99C1CCD_inline (V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036 * __this, X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F * ___extensions0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeCertificateInfo BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V2AttributeCertificateInfoGenerator::GenerateAttributeCertificateInfo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00 * V2AttributeCertificateInfoGenerator_GenerateAttributeCertificateInfo_mED5707291FF4ECDD23FA6635B2E9414A594E27C2 (V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036 * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeCertificate::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeCertificateInfo,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeCertificate__ctor_mE71810CCDE8FF29C321DC1A3EDD02ADEA8599469 (AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 * __this, AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00 * ___acinfo0, AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___signatureAlgorithm1, DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * ___signatureValue2, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Security.Certificates.CertificateEncodingException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CertificateEncodingException__ctor_m5F42D10FF83095947D51D1A5995858DDAA080D10 (CertificateEncodingException_t026647D46DEE106DCC9AD27DBFE50F50009B2D5D * __this, String_t* ___msg0, Exception_t * ___e1, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V2TbsCertListGenerator::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void V2TbsCertListGenerator__ctor_m1AEBE1D896E27414362D5753D19219F3AFB7F0D2 (V2TbsCertListGenerator_tC7920E9D2AE505500F0D2338C49267713D9D76E3 * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V2TbsCertListGenerator::SetIssuer(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V2TbsCertListGenerator_SetIssuer_mF810473205EDAFB06ADB4AA1E60010BFC9DAEDE6_inline (V2TbsCertListGenerator_tC7920E9D2AE505500F0D2338C49267713D9D76E3 * __this, X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * ___issuer0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V2TbsCertListGenerator::SetThisUpdate(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.Time) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V2TbsCertListGenerator_SetThisUpdate_mBF7FF8184C21C8C1F196223967CC99271CBDDB33_inline (V2TbsCertListGenerator_tC7920E9D2AE505500F0D2338C49267713D9D76E3 * __this, Time_tD684B1785E755395701D46F89A97609911CD6DDE * ___thisUpdate0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V2TbsCertListGenerator::SetNextUpdate(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.Time) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V2TbsCertListGenerator_SetNextUpdate_m61986EBFD22FD06B319523ED36B9DBC06E958BE2_inline (V2TbsCertListGenerator_tC7920E9D2AE505500F0D2338C49267713D9D76E3 * __this, Time_tD684B1785E755395701D46F89A97609911CD6DDE * ___nextUpdate0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V2TbsCertListGenerator::AddCrlEntry(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.Time,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void V2TbsCertListGenerator_AddCrlEntry_mA382B69EF13BFD0AF3F3B91244E4E1AF5C0B0C26 (V2TbsCertListGenerator_tC7920E9D2AE505500F0D2338C49267713D9D76E3 * __this, DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * ___userCertificate0, Time_tD684B1785E755395701D46F89A97609911CD6DDE * ___revocationDate1, int32_t ___reason2, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V2TbsCertListGenerator::AddCrlEntry(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.Time,System.Int32,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerGeneralizedTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void V2TbsCertListGenerator_AddCrlEntry_m23F96CFDDA7027082E211C13592C57C6D8CFCBE3 (V2TbsCertListGenerator_tC7920E9D2AE505500F0D2338C49267713D9D76E3 * __this, DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * ___userCertificate0, Time_tD684B1785E755395701D46F89A97609911CD6DDE * ___revocationDate1, int32_t ___reason2, DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 * ___invalidityDate3, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V2TbsCertListGenerator::AddCrlEntry(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.Time,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void V2TbsCertListGenerator_AddCrlEntry_m04ED36F6641F62C24B0E9BDC468A24F56C295403 (V2TbsCertListGenerator_tC7920E9D2AE505500F0D2338C49267713D9D76E3 * __this, DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * ___userCertificate0, Time_tD684B1785E755395701D46F89A97609911CD6DDE * ___revocationDate1, X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F * ___extensions2, const RuntimeMethod* method); // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509CrlEntry::GetEncoded() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* X509CrlEntry_GetEncoded_m54F375ED55258333737FB794AD1EA3C663A29229 (X509CrlEntry_tFFC049C5DB24BF9B445A5E04A1B87F6A25FC844C * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V2TbsCertListGenerator::AddCrlEntry(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void V2TbsCertListGenerator_AddCrlEntry_m9E07ED427671C4C4E3B9EDDD6A46CAD6756EBB04 (V2TbsCertListGenerator_tC7920E9D2AE505500F0D2338C49267713D9D76E3 * __this, Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * ___crlEntry0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Security.Certificates.CrlException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CrlException__ctor_mA64B84F261EA429D9FDA6C33D3C99EEF70406644 (CrlException_t4BF9F20E36202FA4390A2F1E9F10551D9A7ABEA1 * __this, String_t* ___msg0, Exception_t * ___e1, const RuntimeMethod* method); // System.Void System.ArgumentException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m2D82228EC0D314063BFC7BB308A43927D1D76852 (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V2TbsCertListGenerator::SetSignature(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V2TbsCertListGenerator_SetSignature_m3E20DC34B51B688BA75A7BD5883968C10364504A_inline (V2TbsCertListGenerator_tC7920E9D2AE505500F0D2338C49267713D9D76E3 * __this, AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___signature0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerOctetString::.ctor(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DerOctetString__ctor_mBD13EC2203DF652C61E5AB45AE95CC51A22F0AF2 (DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___str0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Crl BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2CrlGenerator::Generate(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter,BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Crl_t963C99FFAA5E9B3E8AE0BBB6F74D45D52C7BBB04 * X509V2CrlGenerator_Generate_m558033C2B78C95536BF3C1E038E694405E244475 (X509V2CrlGenerator_tE24775033089328401498B8DB1FB8176B95EA09D * __this, AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * ___privateKey0, SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * ___random1, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Crl BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2CrlGenerator::Generate(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ISignatureFactory) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Crl_t963C99FFAA5E9B3E8AE0BBB6F74D45D52C7BBB04 * X509V2CrlGenerator_Generate_m41AF2B35CD1CB41CC832418FCD4910CD17F83B21 (X509V2CrlGenerator_tE24775033089328401498B8DB1FB8176B95EA09D * __this, RuntimeObject* ___signatureCalculatorFactory0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateList BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2CrlGenerator::GenerateCertList() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TbsCertificateList_t1C345B12531EFE2A414CE6CF55DCEAF23B1A44B0 * X509V2CrlGenerator_GenerateCertList_m98EC8458F66DDAC2455B644A8086C1AD086290AC (X509V2CrlGenerator_tE24775033089328401498B8DB1FB8176B95EA09D * __this, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Crl BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2CrlGenerator::GenerateJcaObject(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateList,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Crl_t963C99FFAA5E9B3E8AE0BBB6F74D45D52C7BBB04 * X509V2CrlGenerator_GenerateJcaObject_mE1E8F2ED3DCEA20B9933B8AC5C1A04F8C22A7668 (X509V2CrlGenerator_tE24775033089328401498B8DB1FB8176B95EA09D * __this, TbsCertificateList_t1C345B12531EFE2A414CE6CF55DCEAF23B1A44B0 * ___tbsCrl0, AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___algId1, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___signature2, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V2TbsCertListGenerator::SetExtensions(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V2TbsCertListGenerator_SetExtensions_mC2DBFA64FBF33E193BA82DFDEBB1F1C79591985A_inline (V2TbsCertListGenerator_tC7920E9D2AE505500F0D2338C49267713D9D76E3 * __this, X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F * ___extensions0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateList BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V2TbsCertListGenerator::GenerateTbsCertList() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TbsCertificateList_t1C345B12531EFE2A414CE6CF55DCEAF23B1A44B0 * V2TbsCertListGenerator_GenerateTbsCertList_m50EA3EC57BE92AF5ED6E01F9DE4BBB564FB119CF (V2TbsCertListGenerator_tC7920E9D2AE505500F0D2338C49267713D9D76E3 * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerSequence::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DerSequence__ctor_m014F0386FA0EDB7F97747159963DC17F535AF0A2 (DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 * __this, Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* ___v0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.CertificateList BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.CertificateList::GetInstance(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CertificateList_tC023E9119F567E5589711845D4A07A59F9F26B34 * CertificateList_GetInstance_m05C22AC7F75E73B56558D8263D8E625B0E12243A (RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Crl::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.CertificateList) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Crl__ctor_mCF0DB4A0B34DF5164A6A8759DDE7346755CC5052 (X509Crl_t963C99FFAA5E9B3E8AE0BBB6F74D45D52C7BBB04 * __this, CertificateList_tC023E9119F567E5589711845D4A07A59F9F26B34 * ___c0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V3TbsCertificateGenerator::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void V3TbsCertificateGenerator__ctor_mCDBDCEA344E65521338CBB4B20B07F6F5D781761 (V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3 * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V3TbsCertificateGenerator::SetSerialNumber(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerInteger) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V3TbsCertificateGenerator_SetSerialNumber_m2CDC7AEAF8049B8579DAC90208FBB554A8E292B7_inline (V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3 * __this, DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * ___serialNumber0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V3TbsCertificateGenerator::SetIssuer(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V3TbsCertificateGenerator_SetIssuer_m7F6F62D2294081149D9C72AE407BF76CB6A94C2D_inline (V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3 * __this, X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * ___issuer0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V3TbsCertificateGenerator::SetStartDate(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.Time) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V3TbsCertificateGenerator_SetStartDate_mEC85C60DC1D0260BC78E33EBB8C04B12757B5D85_inline (V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3 * __this, Time_tD684B1785E755395701D46F89A97609911CD6DDE * ___startDate0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V3TbsCertificateGenerator::SetEndDate(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.Time) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V3TbsCertificateGenerator_SetEndDate_mF30DEFBEE68B06F21FA3B927F59AAD651A0D5ACF_inline (V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3 * __this, Time_tD684B1785E755395701D46F89A97609911CD6DDE * ___endDate0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V3TbsCertificateGenerator::SetSubject(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V3TbsCertificateGenerator_SetSubject_m94538E1AC4673A9CE33FA4F2FE7678970DD1180C_inline (V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3 * __this, X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * ___subject0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V3TbsCertificateGenerator::SetSubjectPublicKeyInfo(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V3TbsCertificateGenerator_SetSubjectPublicKeyInfo_mE200C5B040FD06E0B73D679AB7F28CD86E500DF7_inline (V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3 * __this, SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB * ___pubKeyInfo0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V3TbsCertificateGenerator::SetSignature(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V3TbsCertificateGenerator_SetSignature_m8631ACE4BE9E2A684DB332E5839646F301F8FD6B_inline (V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3 * __this, AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___signature0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V3CertificateGenerator::booleanToBitString(System.Boolean[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * X509V3CertificateGenerator_booleanToBitString_m5215DC7DAC4F74ECA53C7250D37531FA2F9201A0 (X509V3CertificateGenerator_tB58451ED00FF86B307032EF7908726B9D601664E * __this, BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* ___id0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V3TbsCertificateGenerator::SetSubjectUniqueID(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V3TbsCertificateGenerator_SetSubjectUniqueID_m05EB74331C6639104928F48C0175C551C4F090B6_inline (V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3 * __this, DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * ___uniqueID0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V3TbsCertificateGenerator::SetIssuerUniqueID(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V3TbsCertificateGenerator_SetIssuerUniqueID_m12B7C7C963AB25C6D256677B7D95FF1562B9F312_inline (V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3 * __this, DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * ___uniqueID0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString::.ctor(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DerBitString__ctor_m3873220573E98B131BF69FFBD42E0A63D738BE17 (DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___data0, int32_t ___padBits1, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V3CertificateGenerator::CopyAndAddExtension(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Boolean,BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Certificate) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V3CertificateGenerator_CopyAndAddExtension_m46924751BD2E0AFD9C796A75DA17E855F603C488 (X509V3CertificateGenerator_tB58451ED00FF86B307032EF7908726B9D601664E * __this, DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___oid0, bool ___critical1, X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06 * ___cert2, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Security.Certificates.CertificateParsingException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CertificateParsingException__ctor_m589FDDF39DC94212A0E6A7A445702928F6C0488B (CertificateParsingException_t5CE1769C4F94B5791C7D12C168E7BC8509C97778 * __this, String_t* ___message0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Object BestHTTP.SecureProtocol.Org.BouncyCastle.X509.Extension.X509ExtensionUtilities::FromExtensionValue(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * X509ExtensionUtilities_FromExtensionValue_mB3EF41D2786974D71033FD2A97181A5C5C75CAAD (Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * ___extensionValue0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V3CertificateGenerator::AddExtension(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Boolean,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V3CertificateGenerator_AddExtension_mAB8681F918515ECFD9487BFEC3A2E862D49D1E12 (X509V3CertificateGenerator_tB58451ED00FF86B307032EF7908726B9D601664E * __this, DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___oid0, bool ___critical1, Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * ___extensionValue2, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Security.Certificates.CertificateParsingException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CertificateParsingException__ctor_m76E5CC629670B0430C0DA78C11BD33EDA840331D (CertificateParsingException_t5CE1769C4F94B5791C7D12C168E7BC8509C97778 * __this, String_t* ___message0, Exception_t * ___exception1, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Certificate BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V3CertificateGenerator::Generate(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter,BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06 * X509V3CertificateGenerator_Generate_m65BD10E4A699BDDD15E9D7D5213D436907AB5658 (X509V3CertificateGenerator_tB58451ED00FF86B307032EF7908726B9D601664E * __this, AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * ___privateKey0, SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * ___random1, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Certificate BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V3CertificateGenerator::Generate(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ISignatureFactory) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06 * X509V3CertificateGenerator_Generate_m4D125C14FDB3A5DC545D7CF089ED99FA2EBD423D (X509V3CertificateGenerator_tB58451ED00FF86B307032EF7908726B9D601664E * __this, RuntimeObject* ___signatureCalculatorFactory0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V3TbsCertificateGenerator::SetExtensions(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void V3TbsCertificateGenerator_SetExtensions_m7D39B71D09D40EA817BCC233C37EFD81DD050FE1 (V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3 * __this, X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F * ___extensions0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateStructure BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.V3TbsCertificateGenerator::GenerateTbsCertificate() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3 * V3TbsCertificateGenerator_GenerateTbsCertificate_m8A3FEFCFD6D6FDF58B94777393212B8E5F671429 (V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3 * __this, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Certificate BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V3CertificateGenerator::GenerateJcaObject(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateStructure,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06 * X509V3CertificateGenerator_GenerateJcaObject_m601AFE2CF8859D31C11D820CF531D6F3A23FF57F (X509V3CertificateGenerator_tB58451ED00FF86B307032EF7908726B9D601664E * __this, TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3 * ___tbsCert0, AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___sigAlg1, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___signature2, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.InvalidCipherTextException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidCipherTextException__ctor_m17000A09278358915AC0F74D4227FA7AC7C72043 (InvalidCipherTextException_tCB4102F353576109DF6723BAD28806C82D61BC8D * __this, String_t* ___message0, 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.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.X931Rng::IsTooLarge(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool X931Rng_IsTooLarge_m48FCDFE35CDCB4C39B9CBDDCFC4F3E87BCF2EE7A (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___bytes0, int32_t ___maxBytes1, 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.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 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.X931Rng::Process(System.Byte[],System.Byte[],System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X931Rng_Process_mFAFBFFB89645DFD204721894527A01267BA00DA3 (X931Rng_t7B9242C1A220EC8F7036A04EB335B10EE7E26800 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___res0, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___a1, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___b2, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.X931Rng::Increment(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X931Rng_Increment_m78B0BC148C5F7DA516661A6B2F5981A468F855B7 (X931Rng_t7B9242C1A220EC8F7036A04EB335B10EE7E26800 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___val0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.IRandomGenerator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SecureRandom__ctor_mBC48F9C486B163A0E057AB069CF7718EEE1FE277 (SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * __this, RuntimeObject* ___generator0, 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.Void System.Threading.Monitor::Exit(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Exit_mA776B403DA88AC77CDEEF67AB9F0D0E77ABD254A (RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.X931Rng::Generate(System.Byte[],System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t X931Rng_Generate_mD78CE28093A367EE4D5828DD4057BB1B50482FBA (X931Rng_t7B9242C1A220EC8F7036A04EB335B10EE7E26800 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___output0, bool ___predictionResistant1, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.X931Rng::Reseed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X931Rng_Reseed_mAC9142359C3303BFE899BA7405C52898102BAF13 (X931Rng_t7B9242C1A220EC8F7036A04EB335B10EE7E26800 * __this, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IEntropySource BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.X931Rng::get_EntropySource() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* X931Rng_get_EntropySource_m3FDD635940DB47E54ECFB24194860DB9033DFF94_inline (X931Rng_t7B9242C1A220EC8F7036A04EB335B10EE7E26800 * __this, const RuntimeMethod* method); // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.EntropyUtilities::GenerateSeed(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IEntropySource,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* EntropyUtilities_GenerateSeed_mD47AFF2A8054904072F26A1E6FC40DE3F45B2280 (RuntimeObject* ___entropySource0, int32_t ___numBytes1, 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.Prng.X931SecureRandomBuilder::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X931SecureRandomBuilder__ctor_mF59243B34F48A20C6A35E8A8014589BED07D0161 (X931SecureRandomBuilder_tF2FF9454E4C0A76A4297D2D1E0A3F1E48A85E5A7 * __this, SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * ___entropySource0, bool ___predictionResistant1, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.BasicEntropySourceProvider::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BasicEntropySourceProvider__ctor_mBF8E1C969A2B77433C19FEECA563FE46309AAE66 (BasicEntropySourceProvider_t6F0E2E503BBA509525A672616B82C23B8927D01E * __this, SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * ___secureRandom0, bool ___isPredictionResistant1, const RuntimeMethod* method); // System.Int64 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Date.DateTimeUtilities::CurrentUnixMs() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t DateTimeUtilities_CurrentUnixMs_m8AB8AE654BFF0AF3CEDEFF82D3EB1FF5CD7F3030 (const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Utilities.Pack::UInt64_To_BE(System.UInt64,System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Pack_UInt64_To_BE_m6EF0A74CAAA26254B6183938E10E79998CA4EA60 (uint64_t ___n0, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___bs1, int32_t ___off2, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.X931Rng::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher,System.Byte[],BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IEntropySource) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X931Rng__ctor_m356068EFD51FC25FCA6A5961A45D49C82FE04A9C (X931Rng_t7B9242C1A220EC8F7036A04EB335B10EE7E26800 * __this, RuntimeObject* ___engine0, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___dateTimeVector1, RuntimeObject* ___entropySource2, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.X931SecureRandom::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom,BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.X931Rng,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X931SecureRandom__ctor_mAEDD695EBC25C436E8F87D3E425040925985EAF1 (X931SecureRandom_t71D569F8B9A4EDFE82BF4FA1A5864AB8FD348935 * __this, SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * ___randomSource0, X931Rng_t7B9242C1A220EC8F7036A04EB335B10EE7E26800 * ___drbg1, bool ___predictionResistant2, const RuntimeMethod* method); // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Signers.IsoTrailers::NoTrailerAvailable(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IDigest) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IsoTrailers_NoTrailerAvailable_m553E9B3F985FC1A55A175582446DEA3512AE9761 (RuntimeObject* ___digest0, const RuntimeMethod* method); // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Signers.IsoTrailers::GetTrailer(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IDigest) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t IsoTrailers_GetTrailer_m345EDE6E4FD1A7F3977F5B33266FC7F765B8694F (RuntimeObject* ___digest0, 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.SecureProtocol.Org.BouncyCastle.Crypto.Signers.X931Signer::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IAsymmetricBlockCipher,BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IDigest,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X931Signer__ctor_m7E254D09534F8491F229938BC2AB7B08485335AE (X931Signer_t0C97B2C6A01B4D8F252321BA5CD572D7D1FF2D6B * __this, RuntimeObject* ___cipher0, RuntimeObject* ___digest1, bool ___isImplicit2, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters::get_Modulus() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * RsaKeyParameters_get_Modulus_m8C8BDA5DBD2FF688103C0B23BF5C7C320F31C41C_inline (RsaKeyParameters_t5CEAA6F9B92D2B6F1225DFF7C089B43146012801 * __this, const RuntimeMethod* method); // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::get_BitLength() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BigInteger_get_BitLength_m6B5FE0A610DA07F883412F1DE1BCCFA2EED7244C (BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * __this, const RuntimeMethod* method); // System.Void System.Array::Clear(System.Array,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Clear_mEB42D172C5E0825D340F6209F28578BDDDDCE34F (RuntimeArray * ___array0, int32_t ___index1, int32_t ___length2, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Signers.X931Signer::CreateSignatureBlock() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X931Signer_CreateSignatureBlock_mDE69037C0B1BB69E85C6F2129F966152E9EEB6E2 (X931Signer_t0C97B2C6A01B4D8F252321BA5CD572D7D1FF2D6B * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::.ctor(System.Int32,System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BigInteger__ctor_m2790E6F992AE637CEB82161CD2D56E1E0008F81A (BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * __this, int32_t ___sign0, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___bytes1, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Signers.X931Signer::ClearBlock(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X931Signer_ClearBlock_mDAAE35591C27C906317E2BAE939D42EC8BE88310 (X931Signer_t0C97B2C6A01B4D8F252321BA5CD572D7D1FF2D6B * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___block0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::Subtract(BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * BigInteger_Subtract_m533D42A73362CE69891C408AC3587038EB6B883C (BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * __this, BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___n0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::Min(BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * BigInteger_Min_m56721C44E96B8996F79B8E42C367CC66316B52D5 (BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * __this, BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___value0, const RuntimeMethod* method); // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.BigIntegers::GetUnsignedByteLength(BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BigIntegers_GetUnsignedByteLength_m8C4AECCC452A2F6845304DFC6FB2BFE00D276148 (BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___n0, const RuntimeMethod* method); // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.BigIntegers::AsUnsignedByteArray(System.Int32,BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* BigIntegers_AsUnsignedByteArray_mBECE598E3ED13CE9ED432BF265638BEF19A5B755 (int32_t ___length0, BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___n1, const RuntimeMethod* method); // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Arrays::ConstantTimeAreEqual(System.Byte[],System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Arrays_ConstantTimeAreEqual_mA8B0D8A56AE0903D0723D146FD1777A01E2014E4 (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___a0, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___b1, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves::DefineCurve(System.String,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParametersHolder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X962NamedCurves_DefineCurve_m7719C80600358F3811B56362D2793DB639FBED72 (String_t* ___name0, DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___oid1, X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * ___holder2, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves::GetOid(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * X962NamedCurves_GetOid_m0605E47CF09A208750F55A057AA962FE28D1E160 (String_t* ___name0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParameters BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves::GetByOid(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639 * X962NamedCurves_GetByOid_m6932EC493771F9F532B9928368C093C405F29C7E (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___oid0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParameters BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParametersHolder::get_Parameters() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639 * X9ECParametersHolder_get_Parameters_mB00729430BDF213E3441EB5FB1562DCD11D65D6A (X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962Parameters::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X962Parameters__ctor_mBC048A62BC3210E60C257A731E2884B14EAD33A0 (X962Parameters_t4E41A769BDB21B21ECE217D5D99FA9DBBFFAE7E4 * __this, Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * ___obj0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Asn1Encodable__ctor_mF956C9DAF4A126B7B4406E2DD0EED16E64ABA126 (Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9Curve::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECCurve,System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X9Curve__ctor_m633F4D1ABDE4E23226E61E707C979247A44C5AF1 (X9Curve_tE05684E0E4B3A1C4AC7B6DD81F6D6D20973C3AC9 * __this, ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * ___curve0, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___seed1, const RuntimeMethod* method); // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Arrays::Clone(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* Arrays_Clone_m362B6E8EAA394ABF566EABAF08A37C8232D398D8 (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___data0, const RuntimeMethod* method); // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECAlgorithms::IsFpCurve(BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECCurve) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ECAlgorithms_IsFpCurve_mA01474701D54E9F861242D8FE202EC606F08BD4B (ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * ___c0, const RuntimeMethod* method); // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECAlgorithms::IsF2mCurve(BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECCurve) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ECAlgorithms_IsF2mCurve_mBC2B648E300361FD94E128150D3275471E177161 (ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * ___c0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9Curve::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9FieldID,BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger,BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X9Curve__ctor_m954B3F1B487573FF81CFF93B026D5D4BC6E0FC0D (X9Curve_tE05684E0E4B3A1C4AC7B6DD81F6D6D20973C3AC9 * __this, X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8 * ___fieldID0, BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___order1, BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___cofactor2, Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * ___seq3, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9FieldID::get_Identifier() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * X9FieldID_get_Identifier_m52E0EDC4A4D718C161CDA5314A3E0383419FB264_inline (X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8 * __this, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Object BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9FieldID::get_Parameters() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * X9FieldID_get_Parameters_m12B808F857010B95FBDBD07DF02747E277D0CF8B_inline (X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8 * __this, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString::GetInstance(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * Asn1OctetString_GetInstance_mF572FFBA88CFF4772B2AF3E70E05EB0E8066A3C9 (RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.FpCurve::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger,BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger,BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger,BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger,BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FpCurve__ctor_m2BBC566CAC9C3F165A2311D6287A1E639468ED67 (FpCurve_t9368FE54C52A7B5966A8B814B739D287356B93B8 * __this, BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___q0, BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___a1, BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___b2, BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___order3, BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___cofactor4, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.F2mCurve::.ctor(System.Int32,System.Int32,System.Int32,System.Int32,BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger,BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger,BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger,BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void F2mCurve__ctor_mD221CFD31823473493B30851458AF95C4AC0B33B (F2mCurve_t2D35B6577B3DDFE26FC95C22B4281D005BD97C15 * __this, int32_t ___m0, int32_t ___k11, int32_t ___k22, int32_t ___k33, BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___a4, BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___b5, BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___order6, BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___cofactor7, const RuntimeMethod* method); // !!0[] System.Array::Empty() inline Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* Array_Empty_TisAsn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC_m6133560D3294995A1E65C8837F69C407350CD6DB_inline (const RuntimeMethod* method) { return (( Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* (*) (const RuntimeMethod*))Array_Empty_TisRuntimeObject_m002765312BF306B1B3B5BFAB9550C0A2A1820CDA_gshared_inline)(method); } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1EncodableVector::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Asn1EncodableVector__ctor_m1306EB1064C0D4EEC59EA15F8DFF81952B7AE7DE (Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 * __this, Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* ___v0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9FieldElement::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECFieldElement) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X9FieldElement__ctor_m243BD1924ED249F96FB776A62AACCC4EA150D1CF (X9FieldElement_t153792155C814A48E98DBBBF3BF3B5055CC18EA2 * __this, ECFieldElement_t5B3E4EB355D81F73F6FAC09A042BE908A9631117 * ___f0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1EncodableVector::Add(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Asn1EncodableVector_Add_m6EF01E6775CA3C122AC78B760B5C8AB13AC83EA8 (Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 * __this, Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* ___objs0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerSequence::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1EncodableVector) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DerSequence__ctor_mC969ECDC21E6B8169D0B78BE04B3A08192E13164 (DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 * __this, Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 * ___v0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParameters::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X9ECParameters__ctor_m1BFE3A055B96908B6FB3DDFBE623F4F26C9B4D1B (X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639 * __this, Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * ___seq0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9FieldID BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9FieldID::GetInstance(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8 * X9FieldID_GetInstance_m183D9843C96D8877516F8D93BA6F38D7A71FF45A (RuntimeObject * ___obj0, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECCurve BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9Curve::get_Curve() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * X9Curve_get_Curve_mB57D18E227BF3B54F3E0B14A8E12EBBA90E6EA31_inline (X9Curve_tE05684E0E4B3A1C4AC7B6DD81F6D6D20973C3AC9 * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECPoint::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECCurve,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X9ECPoint__ctor_m7820177D023F11B8B4312A923BCDD5B7218CD1AE (X9ECPoint_t06D47967D73B459616A01610E0E5D88AB08BDF71 * __this, ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * ___c0, Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * ___s1, const RuntimeMethod* method); // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9Curve::GetSeed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* X9Curve_GetSeed_m03DD8A3A2738B50E662C423147B03748DF95D7C1 (X9Curve_tE05684E0E4B3A1C4AC7B6DD81F6D6D20973C3AC9 * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParameters::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECCurve,BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint,BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger,BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger,System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X9ECParameters__ctor_mA737D6CBEE1E58B420EECB33C2649E948857F032 (X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639 * __this, ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * ___curve0, ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * ___g1, BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___n2, BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___h3, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___seed4, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParameters::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECCurve,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECPoint,BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger,BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger,System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X9ECParameters__ctor_m6A7AF27CFE350EE199022E32754A845EBF2E4D0C (X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639 * __this, ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * ___curve0, X9ECPoint_t06D47967D73B459616A01610E0E5D88AB08BDF71 * ___g1, BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___n2, BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___h3, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___seed4, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECPoint::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X9ECPoint__ctor_mEB05BDEE85557A89A5933164DA476D3B982A51A0 (X9ECPoint_t06D47967D73B459616A01610E0E5D88AB08BDF71 * __this, ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * ___p0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9FieldID::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X9FieldID__ctor_m0E2D2D63DA2D3D6F6143D54276FE02FEA178FA24 (X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8 * __this, BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___primeP0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9FieldID::.ctor(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X9FieldID__ctor_mA5C5B78442E310E5C1A89BA8BBF2442ED9EA019F (X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8 * __this, int32_t ___m0, int32_t ___k11, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9FieldID::.ctor(System.Int32,System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X9FieldID__ctor_mF506790D5BB59536539E54AD472B25614F541B93 (X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8 * __this, int32_t ___m0, int32_t ___k11, int32_t ___k22, int32_t ___k33, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECPoint::get_Point() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * X9ECPoint_get_Point_mCCB3B52E0B2A6160E36C9582B39E2117C3E572DE (X9ECPoint_t06D47967D73B459616A01610E0E5D88AB08BDF71 * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECPoint::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X9ECPoint__ctor_mDB1886F4D4B353A2CFA958D78AD2C4A2A50FDCC6 (X9ECPoint_t06D47967D73B459616A01610E0E5D88AB08BDF71 * __this, ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * ___p0, bool ___compressed1, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECPoint::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECCurve,System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X9ECPoint__ctor_mF5AFC1B759EE7CC4B9EF5E474819892C76A8D7EB (X9ECPoint_t06D47967D73B459616A01610E0E5D88AB08BDF71 * __this, ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * ___c0, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___encoding1, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.FpFieldElement::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger,BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FpFieldElement__ctor_m0146BB80200DFE870E614FD943241DAAC611C81C (FpFieldElement_t14F5497CB64CC40A592A8313C210D3CBA9C54629 * __this, BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___q0, BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___x1, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.F2mFieldElement::.ctor(System.Int32,System.Int32,System.Int32,System.Int32,BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void F2mFieldElement__ctor_mC4A74CB5ED87786552AAB52286ED16156A21014C (F2mFieldElement_t3C569642A15A78530B72B61257476BF41C52797E * __this, int32_t ___m0, int32_t ___k11, int32_t ___k22, int32_t ___k33, BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___x4, const RuntimeMethod* method); // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9IntegerConverter::GetByteLength(BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECFieldElement) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t X9IntegerConverter_GetByteLength_m931E94479D6C0483754814793EE42F604F2ED7BC (ECFieldElement_t5B3E4EB355D81F73F6FAC09A042BE908A9631117 * ___fe0, const RuntimeMethod* method); // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9IntegerConverter::IntegerToBytes(BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* X9IntegerConverter_IntegerToBytes_m192434ABE05AFFEA0C3F144E169BA2D46965AEC9 (BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___s0, int32_t ___qLength1, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::GetInstance(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * DerObjectIdentifier_GetInstance_mBE1F50C71CFA8B210307AFD39E62F8AF4D5E34FF (RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9FieldID::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X9FieldID__ctor_m7076F9CDA740565C112FC3AD682CED181DDD7BBF (X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8 * __this, Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * ___seq0, const RuntimeMethod* method); // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::ToByteArrayUnsigned() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* BigInteger_ToByteArrayUnsigned_mA50192424BCADACC368E6DC187BF5C8E9DB1DE27 (BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Engines.Salsa20Engine::SetKey(System.Byte[],System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa20Engine_SetKey_m9C1977B49DCE7B6B795F1B472706A21E0DE620CF (Salsa20Engine_t661640C461D9868FAA0FE0F7765F0380147FEC66 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___keyBytes0, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___ivBytes1, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Utilities.Pack::LE_To_UInt32(System.Byte[],System.Int32,System.UInt32[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Pack_LE_To_UInt32_mBBCA4BA6D7B002E80F95D10BEF88002C1B27FBE8 (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___bs0, int32_t ___bOff1, UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* ___ns2, int32_t ___nOff3, int32_t ___count4, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Engines.Salsa20Engine::SalsaCore(System.Int32,System.UInt32[],System.UInt32[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa20Engine_SalsaCore_mF39E4B89B8552D8575E6F9AEF5295E12680BFA75 (int32_t ___rounds0, UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* ___input1, UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* ___x2, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Engines.Salsa20Engine::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Salsa20Engine__ctor_m7A3B8728EA88D12E579CC94128053C95DE2AD974 (Salsa20Engine_t661640C461D9868FAA0FE0F7765F0380147FEC66 * __this, const RuntimeMethod* method); // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform::GetTypeName(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Platform_GetTypeName_m6EE4C5C80014DB651B39EAA755D394E21009EADB (RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.KeyParameter::GetKey() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* KeyParameter_GetKey_mCA2C132B43F669063C426602DD5A8A672531385A (KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Engines.XteaEngine::setKey(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XteaEngine_setKey_m02BDF8481CF785F6D210B0139149B72058BF92D1 (XteaEngine_t1B9C763912FA90CC6C1F877687C08C15F3E2C6DE * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___key0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Check::DataLength(System.Byte[],System.Int32,System.Int32,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Check_DataLength_m987B9B6E75E7F5711F99C2B1EFC990B922ECAB3F (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___buf0, int32_t ___off1, int32_t ___len2, String_t* ___msg3, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Check::OutputLength(System.Byte[],System.Int32,System.Int32,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Check_OutputLength_mFF38F66673647A1F0F8806CDF8FAD6B168B951B6 (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___buf0, int32_t ___off1, int32_t ___len2, String_t* ___msg3, const RuntimeMethod* method); // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Engines.XteaEngine::decryptBlock(System.Byte[],System.Int32,System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XteaEngine_decryptBlock_m197E1AC6BD2CADC380A2B298BE8F1B145C832E43 (XteaEngine_t1B9C763912FA90CC6C1F877687C08C15F3E2C6DE * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___inBytes0, int32_t ___inOff1, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___outBytes2, int32_t ___outOff3, const RuntimeMethod* method); // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Engines.XteaEngine::encryptBlock(System.Byte[],System.Int32,System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XteaEngine_encryptBlock_mDCBBD881AC93C18E81B18A044BC032C85B845540 (XteaEngine_t1B9C763912FA90CC6C1F877687C08C15F3E2C6DE * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___inBytes0, int32_t ___inOff1, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___outBytes2, int32_t ___outOff3, const RuntimeMethod* method); // System.UInt32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Utilities.Pack::BE_To_UInt32(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Pack_BE_To_UInt32_m12CE84088675F71E264FA24F5DD4ED29AB44254C (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___bs0, int32_t ___off1, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Utilities.Pack::UInt32_To_BE(System.UInt32,System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Pack_UInt32_To_BE_m5560F9EA8F3737406E7B760897168AA1B797B2C5 (uint32_t ___n0, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___bs1, int32_t ___off2, const RuntimeMethod* method); // System.Boolean System.Single::Equals(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Single_Equals_m298A3A849F30B9900813BE6DD98AE6810CDBE914 (float* __this, float ___obj0, const RuntimeMethod* method); // System.Single Yeji::GetScaleY() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Yeji_GetScaleY_m4DEB2F42B791F306F2C4774E4187F88F4E4256C1 (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * __this, const RuntimeMethod* method); // System.Void UnityEngine.AI.NavMeshAgent::set_baseOffset(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NavMeshAgent_set_baseOffset_mBB3E1826FC47E1A52F3CF46F59015732AA0FD5DE (NavMeshAgent_tB9746B6C38013341DB63973CA7ED657494EFB41B * __this, float ___value0, const RuntimeMethod* method); // System.Single Yeji::GetLandHeight() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Yeji_GetLandHeight_mECD04216F8343B8EDDFFE838EA7625A15B059093 (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * __this, const RuntimeMethod* method); // System.Void Yeji/State::set_flying(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void State_set_flying_mC1A25D43DA68DCEBD1C98F96E54D3250ABA3C928 (State_t908756508036982A4DF72593F6016F3C51C610B7 * __this, bool ___value0, const RuntimeMethod* method); // System.Boolean StoneRecorder::IsStoneLocker(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StoneRecorder_IsStoneLocker_m7C9D7F458478B183D7D09CF84B47BE70264CCED8 (StoneRecorder_tBA3376B07C34D8BDC00CAC5B96BDC69A6EC4DB4D * __this, RuntimeObject * ___locker0, const RuntimeMethod* method); // System.Single StoneRecorder::GetStoneYOffLand() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float StoneRecorder_GetStoneYOffLand_m65054E5ECE4FA7CF32D81B7E119196128BD2523B (StoneRecorder_tBA3376B07C34D8BDC00CAC5B96BDC69A6EC4DB4D * __this, const RuntimeMethod* 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.Vector3 UnityEngine.Transform::get_localScale() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Transform_get_localScale_mD9DF6CA81108C2A6002B5EA2BE25A6CD2723D046 (Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.HashSet`1::Add(!0) inline bool HashSet_1_Add_mB2893D629DB29C34964971EA0FE8DA9A28411FA5 (HashSet_1_t47ED9A0606C5D93A2045DE3AACBA2CD73C930023 * __this, Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * ___item0, const RuntimeMethod* method) { return (( bool (*) (HashSet_1_t47ED9A0606C5D93A2045DE3AACBA2CD73C930023 *, Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 *, const RuntimeMethod*))HashSet_1_Add_m8194125167FD7A887F1B39D342A71A0BD0C8BF5C_gshared)(__this, ___item0, method); } // System.Void Yeji/State::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void State__ctor_m45E3577C80B243CB10EBAADCE529F6635ABF9D78 (State_t908756508036982A4DF72593F6016F3C51C610B7 * __this, const RuntimeMethod* method); // !!0 UnityEngine.Component::GetComponent() inline Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * Component_GetComponent_TisAnimator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149_mF86B79BED8570481BDFC54EAEF1F692E0508BA38 (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 * __this, const RuntimeMethod* method) { return (( Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * (*) (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 *, const RuntimeMethod*))Component_GetComponent_TisRuntimeObject_mDC2250CC3F24F6FE45660AF6153056ABDA5ED60F_gshared)(__this, method); } // !!0 UnityEngine.Component::GetComponent() inline NavMeshAgent_tB9746B6C38013341DB63973CA7ED657494EFB41B * Component_GetComponent_TisNavMeshAgent_tB9746B6C38013341DB63973CA7ED657494EFB41B_mEB498E1E05ECE05CF007D68E3C83DABA9E7CC819 (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 * __this, const RuntimeMethod* method) { return (( NavMeshAgent_tB9746B6C38013341DB63973CA7ED657494EFB41B * (*) (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 *, const RuntimeMethod*))Component_GetComponent_TisRuntimeObject_mDC2250CC3F24F6FE45660AF6153056ABDA5ED60F_gshared)(__this, method); } // System.Int32 Yeji::get_avoidancePriority() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Yeji_get_avoidancePriority_mF35CC71D96F2726B85FEE38E59D6A4A7550BA22B (const RuntimeMethod* method); // System.Void UnityEngine.AI.NavMeshAgent::set_avoidancePriority(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NavMeshAgent_set_avoidancePriority_mEBC1EE92C76289E3F1CD4551871D3E2C7B379A7B (NavMeshAgent_tB9746B6C38013341DB63973CA7ED657494EFB41B * __this, int32_t ___value0, const RuntimeMethod* method); // System.Void Yeji/OnlineHandler::InitOnAwake(Yeji) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OnlineHandler_InitOnAwake_mC86B99678A5DD5EA2F69D3750F9D4FE6FD0EA311 (OnlineHandler_t0EEA4F8C0170610DD9F19AE15F12F6A4C74E3587 * __this, Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * ___animal0, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.HashSet`1::Remove(!0) inline bool HashSet_1_Remove_m4AA89D9FE720A131C066D96CBCC54F06E6AC48C3 (HashSet_1_t47ED9A0606C5D93A2045DE3AACBA2CD73C930023 * __this, Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * ___item0, const RuntimeMethod* method) { return (( bool (*) (HashSet_1_t47ED9A0606C5D93A2045DE3AACBA2CD73C930023 *, Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 *, const RuntimeMethod*))HashSet_1_Remove_mB2A3571B348E408BAC91D09A81DF97EAE11A1B02_gshared)(__this, ___item0, method); } // System.Void Yeji::tryReleaseOccupyTree() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Yeji_tryReleaseOccupyTree_mAE086656FC652E287ACA3FC243A2D0456F475A77 (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * __this, const RuntimeMethod* method); // System.Void Yeji::ReleasePreHeight(Yeji) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Yeji_ReleasePreHeight_m942933600988E1C41597DABCA0E83405C9EAB624 (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * ___yeji0, const RuntimeMethod* method); // System.Boolean StoneRecorder::TryRelease(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StoneRecorder_TryRelease_m53DB4666470A4740D7A00DA846DC93787B4653D8 (StoneRecorder_tBA3376B07C34D8BDC00CAC5B96BDC69A6EC4DB4D * __this, RuntimeObject * ___locker0, const RuntimeMethod* method); // System.Void Yeji/OnlineHandler::Update() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OnlineHandler_Update_m2F8FF5D8A08C4316EDA9E6B6C9CB055520D1FA78 (OnlineHandler_t0EEA4F8C0170610DD9F19AE15F12F6A4C74E3587 * __this, const RuntimeMethod* method); // System.Boolean Yeji::HasCloseToDestination() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Yeji_HasCloseToDestination_mAC121055A7794D02BE490B5428EE148C3EED8E3E (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * __this, const RuntimeMethod* method); // System.Void Yeji::OnReachDestination() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Yeji_OnReachDestination_mCFB3D8EB0DE27FF1C7C0C3A01E8447EC376B15E3 (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * __this, const RuntimeMethod* method); // System.Void Yeji::OnMovingToDestination() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Yeji_OnMovingToDestination_mEAC5A32BB5EDC0B263B94886486E165241EDB624 (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * __this, const RuntimeMethod* method); // System.Void Yeji::UpdateAutoStrategy() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Yeji_UpdateAutoStrategy_m6D3D9813D3E7D9F7DBB160C9FB4E30609F7AB539 (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * __this, const RuntimeMethod* method); // UnityEngine.Transform Arrow::Head() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * Arrow_Head_m0B04E8E5BCECF6693A2480674F9E8A57D6F3CD9D (Arrow_t98BA45BD73ADFAD1B38830B6D6D48588A96AC86A * __this, const RuntimeMethod* method); // UnityEngine.Vector3 UnityEngine.Transform::get_forward() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Transform_get_forward_mD850B9ECF892009E3485408DC0D375165B7BF053 (Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * __this, const RuntimeMethod* method); // UnityEngine.Vector3 UnityEngine.Vector3::op_Multiply(UnityEngine.Vector3,System.Single) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Vector3_op_Multiply_m9EA3D18290418D7B410C7D11C4788C13BFD2C30A_inline (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___a0, float ___d1, const RuntimeMethod* method); // UnityEngine.Vector3 UnityEngine.Vector3::op_Addition(UnityEngine.Vector3,UnityEngine.Vector3) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Vector3_op_Addition_mEE4F672B923CCB184C39AABCA33443DB218E50E0_inline (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___a0, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___b1, const RuntimeMethod* method); // System.Void UnityEngine.Transform::set_position(UnityEngine.Vector3) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transform_set_position_mB169E52D57EEAC1E3F22C5395968714E4F00AC91 (Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * __this, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___value0, const RuntimeMethod* method); // System.Void Arrow::Hit() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Arrow_Hit_mA3F0062DD2EA390E347370BF91B818767178724A (Arrow_t98BA45BD73ADFAD1B38830B6D6D48588A96AC86A * __this, const RuntimeMethod* method); // System.Void Yeji::OnHitLogic(Arrow,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Yeji_OnHitLogic_m19CDBC46C73322CD58C6061ED6718D31FDD0B3EF (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * __this, Arrow_t98BA45BD73ADFAD1B38830B6D6D48588A96AC86A * ___arrow0, String_t* ___partName1, const RuntimeMethod* method); // GameEventCenter GameEventCenter::get_ins() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameEventCenter_tB2B27C459DC3B44364D1B694E8FBDA2EA24E6190 * GameEventCenter_get_ins_mCD62A907C8D59054C6EAE08FC950A452D344C6E3 (const RuntimeMethod* method); // System.Void System.Action`2::Invoke(!0,!1) inline void Action_2_Invoke_mE1893FFB3965F3DA39977325B195FF6F8DB9E3DA (Action_2_t2ED3ACC0CD5AF36EDBA73683487219F1ADB37DBD * __this, TargetAnimal_t90B2AB67B1B579964591B445CAF14122DB690D02 * ___arg10, int32_t ___arg21, const RuntimeMethod* method) { (( void (*) (Action_2_t2ED3ACC0CD5AF36EDBA73683487219F1ADB37DBD *, TargetAnimal_t90B2AB67B1B579964591B445CAF14122DB690D02 *, int32_t, const RuntimeMethod*))Action_2_Invoke_mAA2FFFC084F845E770473201F3F4DD6805F0F3FE_gshared)(__this, ___arg10, ___arg21, method); } // System.Void Yeji::Die(Arrow) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Yeji_Die_m415C12DDC543DC3B24C7E0973241207D3B6E728F (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * __this, Arrow_t98BA45BD73ADFAD1B38830B6D6D48588A96AC86A * ___arrow0, const RuntimeMethod* method); // System.Void Yeji::Hurt() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Yeji_Hurt_m2782AF9A8142FA91DA6C47E60B8927A1DC0AD0C5 (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * __this, const RuntimeMethod* method); // System.Boolean Yeji/State::get_dead() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool State_get_dead_m87C8693FDECCAA1D6E39374E15FF1CE156374CB7_inline (State_t908756508036982A4DF72593F6016F3C51C610B7 * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.Object::op_Inequality(UnityEngine.Object,UnityEngine.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Inequality_mE1F187520BD83FB7D86A6D850710C4D42B864E90 (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * ___x0, Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * ___y1, const RuntimeMethod* 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); // 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 UnityEngine.Animator::set_speed(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Animator_set_speed_m632FF62E0D6B668C55190B3579B12684316C4041 (Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * __this, float ___value0, const RuntimeMethod* method); // System.Void Yeji/State::set_dead(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void State_set_dead_m5392BEF144571EBB0044391E6814104640AD776B (State_t908756508036982A4DF72593F6016F3C51C610B7 * __this, bool ___value0, const RuntimeMethod* method); // System.Void UnityEngine.Behaviour::set_enabled(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Behaviour_set_enabled_mDE415591B28853D1CD764C53CB499A2142247F32 (Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9 * __this, bool ___value0, const RuntimeMethod* method); // System.Void System.Action`1::Invoke(!0) inline void Action_1_Invoke_mA2954E8501AB156BB108CEC3D4DC74780BFC3FA9 (Action_1_t1B7004A16BED5066BEB03C343CA7F4B5EE772A10 * __this, Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * ___obj0, const RuntimeMethod* method) { (( void (*) (Action_1_t1B7004A16BED5066BEB03C343CA7F4B5EE772A10 *, Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 *, const RuntimeMethod*))Action_1_Invoke_mAAE01A16F138CEC8E1965D322EFB6A7045FE76F2_gshared)(__this, ___obj0, 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); // UnityEngine.AudioSource AudioMgr::GetAudioSource(UnityEngine.GameObject) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B * AudioMgr_GetAudioSource_m95F117594154AC0E3082545053633814AC03265F (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___target0, const RuntimeMethod* method); // System.Void AudioMgr::PlayAnimalEffect(System.String,UnityEngine.AudioSource) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AudioMgr_PlayAnimalEffect_m868C5178CAB612E24222E2B9F563CB0EAB1A4EB9 (AudioMgr_t37818C35286C2FF09D8B8FFF7E74D479D3817DA0 * __this, String_t* ___name0, AudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B * ___audioSource1, const RuntimeMethod* method); // System.Void Yeji::CancelStand() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Yeji_CancelStand_mA97104D40AE52FDF898DB63E4425B823934E3B04 (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * __this, const RuntimeMethod* method); // System.Void Yeji::CancelFlyStay() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Yeji_CancelFlyStay_mAA82F28242788291FC26624435DCF9ED4B8E3320 (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * __this, const RuntimeMethod* method); // System.Void Yeji::set_moving(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Yeji_set_moving_m1091FE9964B14F4DACCF01BBD33FCA8F1219CA60 (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * __this, bool ___value0, const RuntimeMethod* method); // System.Void UnityEngine.AI.NavMeshAgent::set_destination(UnityEngine.Vector3) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NavMeshAgent_set_destination_m0EC1C668AD85AC1B26AABF54337D7D0849F760E7 (NavMeshAgent_tB9746B6C38013341DB63973CA7ED657494EFB41B * __this, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___value0, const RuntimeMethod* method); // System.Boolean Yeji::get_moving() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Yeji_get_moving_m7689D372EF476603C2F47C39D9867510EE431F71_inline (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * __this, const RuntimeMethod* method); // System.Single UnityEngine.Time::get_deltaTime() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Time_get_deltaTime_mCC15F147DA67F38C74CE408FB5D7FF4A87DA2290 (const RuntimeMethod* method); // UnityEngine.Vector3 UnityEngine.AI.NavMeshAgent::get_velocity() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E NavMeshAgent_get_velocity_mA6F25F6B38D5092BBE6DECD77F8FDB93D5C515C9 (NavMeshAgent_tB9746B6C38013341DB63973CA7ED657494EFB41B * __this, const RuntimeMethod* method); // System.Single UnityEngine.Vector3::get_magnitude() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Vector3_get_magnitude_mDDD40612220D8104E77E993E18A101A69A944991 (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * __this, const RuntimeMethod* method); // UnityEngine.Vector3 UnityEngine.AI.NavMeshAgent::get_nextPosition() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E NavMeshAgent_get_nextPosition_m0402CBC5B44EFD58FBEEF19D10EF7DBC82CF1FB3 (NavMeshAgent_tB9746B6C38013341DB63973CA7ED657494EFB41B * __this, const RuntimeMethod* method); // UnityEngine.Vector3 UnityEngine.Vector3::get_zero() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Vector3_get_zero_m1A8F7993167785F750B6B01762D22C2597C84EF6 (const RuntimeMethod* method); // System.Void UnityEngine.AI.NavMeshAgent::set_velocity(UnityEngine.Vector3) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NavMeshAgent_set_velocity_m3CFD57C08562A9A79AC501773050A18EA0FC791A (NavMeshAgent_tB9746B6C38013341DB63973CA7ED657494EFB41B * __this, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___value0, const RuntimeMethod* method); // UnityEngine.Vector3 UnityEngine.AI.NavMeshAgent::get_destination() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E NavMeshAgent_get_destination_m0FDF371CBF97028F28416675134875122F13AD2F (NavMeshAgent_tB9746B6C38013341DB63973CA7ED657494EFB41B * __this, const RuntimeMethod* method); // System.Void Yeji::UpdateFlyUpDown() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Yeji_UpdateFlyUpDown_m7363397CD9EC1C89CB66F48AD341AA0581C46657 (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * __this, const RuntimeMethod* method); // System.Void Yeji::UpdateBehavior() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Yeji_UpdateBehavior_mB1E4FC43A6FDC2E9C853980B613E8A9746D22E44 (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * __this, const RuntimeMethod* method); // System.Boolean Yeji/State::get_up() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool State_get_up_m0F4AB7FD7FCD93A130206581A914E880A70F9BFA_inline (State_t908756508036982A4DF72593F6016F3C51C610B7 * __this, const RuntimeMethod* method); // System.Boolean Yeji/State::get_landing() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool State_get_landing_m9ECE9E707B82751FC91FDACDB04DA1488098D510_inline (State_t908756508036982A4DF72593F6016F3C51C610B7 * __this, const RuntimeMethod* method); // UnityEngine.AnimatorStateInfo UnityEngine.Animator::GetCurrentAnimatorStateInfo(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AnimatorStateInfo_t052E146D2DB1EC155950ECA45734BF57134258AA Animator_GetCurrentAnimatorStateInfo_m562250C74BF8C626B5227FE840D6CB739B5F8314 (Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * __this, int32_t ___layerIndex0, const RuntimeMethod* method); // System.Boolean UnityEngine.AnimatorStateInfo::IsName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AnimatorStateInfo_IsName_mF1263FB1F2AB142CFEB61B375D6EEBCFD53F9428 (AnimatorStateInfo_t052E146D2DB1EC155950ECA45734BF57134258AA * __this, String_t* ___name0, const RuntimeMethod* method); // System.Single UnityEngine.AnimatorStateInfo::get_normalizedTime() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float AnimatorStateInfo_get_normalizedTime_mC951C5D83749FC2AE37DCC75A022383C578F3B40 (AnimatorStateInfo_t052E146D2DB1EC155950ECA45734BF57134258AA * __this, const RuntimeMethod* method); // System.Void Yeji/State::set_landing(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void State_set_landing_mF12D5A6313995AE9453FB8B4C6031B30C56C1A94 (State_t908756508036982A4DF72593F6016F3C51C610B7 * __this, bool ___value0, const RuntimeMethod* method); // System.Boolean Yeji/State::get_flying() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool State_get_flying_m66E87FC4D722C4B7EC8E7C2256A0352ADB69419C_inline (State_t908756508036982A4DF72593F6016F3C51C610B7 * __this, const RuntimeMethod* method); // System.Void Yeji/State::set_up(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void State_set_up_mD620CCB7A40F41C65CA9197076BE97836E63E0F5 (State_t908756508036982A4DF72593F6016F3C51C610B7 * __this, bool ___value0, const RuntimeMethod* method); // System.Void Yeji::SetFlyHeight(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Yeji_SetFlyHeight_mF016E2493DAAB0488A3FC6B77F32886255D92559 (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * __this, float ___value0, const RuntimeMethod* method); // System.Boolean Yeji/State::get_down() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool State_get_down_m9DA09F0259CE287B2F3C6292DA3127CE14A0BA19_inline (State_t908756508036982A4DF72593F6016F3C51C610B7 * __this, const RuntimeMethod* method); // System.Void Yeji::StopNavigation() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Yeji_StopNavigation_m66C346CC8F74871881E6B0356F2502A2E20C4F40 (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * __this, const RuntimeMethod* method); // System.Void Yeji/State::set_down(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void State_set_down_m9D72C153E24A407503BC8565C7F538F2884FBDB2 (State_t908756508036982A4DF72593F6016F3C51C610B7 * __this, bool ___value0, const RuntimeMethod* method); // System.Single UnityEngine.Random::get_value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Random_get_value_m9AEBC7DF0BB6C57C928B0798349A7D3C0B3FB872 (const RuntimeMethod* method); // System.Void UnityEngine.Animator::CrossFade(System.String,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Animator_CrossFade_mD3F99D6835AA415C0B32AE0C574B1815CC07586F (Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * __this, String_t* ___stateName0, float ___normalizedTransitionDuration1, const RuntimeMethod* method); // System.Boolean Yeji/State::get_flyStaying() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool State_get_flyStaying_m0A23626B875E5285019BDC680B80BC0AC6A043AE_inline (State_t908756508036982A4DF72593F6016F3C51C610B7 * __this, const RuntimeMethod* method); // System.Void Yeji/State::set_flyStaying(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void State_set_flyStaying_m56942DE74B12AA87979BB87B85ECBB16FB4A2926 (State_t908756508036982A4DF72593F6016F3C51C610B7 * __this, bool ___value0, const RuntimeMethod* method); // System.Single UnityEngine.AI.NavMeshAgent::get_speed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float NavMeshAgent_get_speed_m5AA9A1B23412A8F5CE24A5312F6E6D4BA282B173 (NavMeshAgent_tB9746B6C38013341DB63973CA7ED657494EFB41B * __this, const RuntimeMethod* method); // UnityEngine.Vector3 UnityEngine.Transform::get_position() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Transform_get_position_m40A8A9895568D56FFC687B57F30E8D53CB5EA341 (Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * __this, const RuntimeMethod* method); // System.Single UnityEngine.Vector3::Distance(UnityEngine.Vector3,UnityEngine.Vector3) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Vector3_Distance_mB648A79E4A1BAAFBF7B029644638C0D715480677 (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___a0, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___b1, const RuntimeMethod* method); // System.Boolean Yeji::tryOccupyTree() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Yeji_tryOccupyTree_m0D5C056A0582573B7D8F4B8F728CDA0226E71B54 (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * __this, const RuntimeMethod* method); // System.Boolean StoneRecorder::IsOnStone(UnityEngine.MonoBehaviour) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StoneRecorder_IsOnStone_m0DBC683001DD1D2A97DEDC46A915CD5297C0CF76 (StoneRecorder_tBA3376B07C34D8BDC00CAC5B96BDC69A6EC4DB4D * __this, MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * ___animal0, const RuntimeMethod* method); // System.Boolean StoneRecorder::TryLock(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StoneRecorder_TryLock_m99B0374FEE655FF67600F6BD8056BEFDAE439993 (StoneRecorder_tBA3376B07C34D8BDC00CAC5B96BDC69A6EC4DB4D * __this, RuntimeObject * ___locker0, const RuntimeMethod* method); // UnityEngine.Transform TargetAnimal::get_animalsBaseT() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * TargetAnimal_get_animalsBaseT_mE5467EA9ADE65B1ACF1422C90B1DEAEEF0CF0BC7 (TargetAnimal_t90B2AB67B1B579964591B445CAF14122DB690D02 * __this, const RuntimeMethod* method); // UnityEngine.Vector3 StoneRecorder::GetLockPosition(UnityEngine.Transform,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E StoneRecorder_GetLockPosition_m83F00C70C3C64D4D6C5DAEAC1BBBD4DE8AF60599 (StoneRecorder_tBA3376B07C34D8BDC00CAC5B96BDC69A6EC4DB4D * __this, Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___animalsBaseT0, float ___flyPlaneHeight1, const RuntimeMethod* method); // System.Void Yeji::SetDestination(UnityEngine.Vector3) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Yeji_SetDestination_m2DE83CD0199761141D05B1A557013FCF70B54408 (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * __this, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___pos0, const RuntimeMethod* method); // TreeAreaRecorder/AreaInfo[] TreeAreaRecorder::copyAreaInfos(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AreaInfoU5BU5D_tDB8FCFB9A63CBA4F532B013A8702761BB2E7BA27* TreeAreaRecorder_copyAreaInfos_m8B8B34E3597D1F2772BEA8F0CA64562D69374D80 (TreeAreaRecorder_tAE9063D38B62DF6BE86781A700F0D349C2E43B37 * __this, int32_t ___len0, const RuntimeMethod* method); // System.Single TreeAreaRecorder/AreaInfo::distanceInHorizontal(UnityEngine.Vector3) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float AreaInfo_distanceInHorizontal_mD24F5E8B35D84C7F700C9C99D03810094D9DBEFA (AreaInfo_t23BDB3108537E7181ACFB654B90B389AE8FAC781 * __this, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___pos0, const RuntimeMethod* method); // System.Void Yeji/ComparerAreaInfosByDistance::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ComparerAreaInfosByDistance__ctor_m3C4201B9593318668B83D34DA862354D3AFA36E6 (ComparerAreaInfosByDistance_t9EA8762959531B367A90185F6213B51755EEBD68 * __this, const RuntimeMethod* method); // System.Void System.Array::Sort(System.Array,System.Collections.IComparer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Sort_m9FEF5C0ACA74C23E8B3336E14872E4E6FE89B90D (RuntimeArray * ___array0, RuntimeObject* ___comparer1, const RuntimeMethod* method); // System.Int32 UnityEngine.Random::Range(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Random_Range_m4B3A0037ACA057F33C94508F908546B9317D996A (int32_t ___minInclusive0, int32_t ___maxExclusive1, const RuntimeMethod* method); // UnityEngine.Vector3 YejiHuntGameMode::CalculateNewPosByTreePos(UnityEngine.Transform,System.Single,TreeAreaRecorder/AreaInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E YejiHuntGameMode_CalculateNewPosByTreePos_mEB9505358138A8143F6F7AADF07C1DB5937CBC37 (Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___animalsBaseT0, float ___flyPlaneHeight1, AreaInfo_t23BDB3108537E7181ACFB654B90B389AE8FAC781 * ___areaInfo2, const RuntimeMethod* method); // System.Void Yeji/OnlineHandler::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OnlineHandler__ctor_mF21CFE3806B954D39CD726694B0A80B7A92C4EC4 (OnlineHandler_t0EEA4F8C0170610DD9F19AE15F12F6A4C74E3587 * __this, const RuntimeMethod* method); // System.Void TargetAnimal::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TargetAnimal__ctor_m79849190AD1B15ECC1D5A486410B8F065AC64324 (TargetAnimal_t90B2AB67B1B579964591B445CAF14122DB690D02 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.HashSet`1::.ctor() inline void HashSet_1__ctor_mC25BB3DE4DB6E4BCC672FEAFDE153725ECE2B82E (HashSet_1_t47ED9A0606C5D93A2045DE3AACBA2CD73C930023 * __this, const RuntimeMethod* method) { (( void (*) (HashSet_1_t47ED9A0606C5D93A2045DE3AACBA2CD73C930023 *, const RuntimeMethod*))HashSet_1__ctor_m2CDA40DEC2900A9CB00F8348FF386DF44ABD0EC7_gshared)(__this, method); } // System.Void StoneRecorder::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StoneRecorder__ctor_mAD285EF264838269824753952863E81C9A7CD389 (StoneRecorder_tBA3376B07C34D8BDC00CAC5B96BDC69A6EC4DB4D * __this, 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); // System.Void ChallengeGameMode::.ctor(GameMgr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChallengeGameMode__ctor_m502BABF831A061D84C572BB46CC6B6D125A7FBF0 (ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B * __this, GameMgr_tE3D60AE9C96D966787437C5F15D3477A9E948950 * ___gameMgr0, 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); // UnityEngine.Vector3 UnityEngine.Transform::get_localPosition() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Transform_get_localPosition_m527B8B5B625DA9A61E551E0FBCD3BE8CA4539FC2 (Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * __this, const RuntimeMethod* method); // !!0 UnityEngine.Component::GetComponentInChildren() inline TreeAreaRecorder_tAE9063D38B62DF6BE86781A700F0D349C2E43B37 * Component_GetComponentInChildren_TisTreeAreaRecorder_tAE9063D38B62DF6BE86781A700F0D349C2E43B37_m9D8A8EF527631BE85E2C2F35C95A33BDD8B134D9 (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 * __this, const RuntimeMethod* method) { return (( TreeAreaRecorder_tAE9063D38B62DF6BE86781A700F0D349C2E43B37 * (*) (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 *, const RuntimeMethod*))Component_GetComponentInChildren_TisRuntimeObject_m2D53662347629A70E2A610B61ACC705D63F22D34_gshared)(__this, method); } // TreeAreaRecorder TreeAreaRecorder::InitAndGet() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TreeAreaRecorder_tAE9063D38B62DF6BE86781A700F0D349C2E43B37 * TreeAreaRecorder_InitAndGet_m15946B29565E5E2F0159453CCE7028EB0BDDC039 (TreeAreaRecorder_tAE9063D38B62DF6BE86781A700F0D349C2E43B37 * __this, const RuntimeMethod* method); // System.Void GameMode::BanBowReady() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GameMode_BanBowReady_m57C84639E4B8C579B98D72BD5E4A4E6A84EF2948 (GameMode_t3635427B8DF6A50F9EAE8955955887AD0D098C82 * __this, const RuntimeMethod* method); // System.Void GameMode::UnbanBowReady() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GameMode_UnbanBowReady_m789DA8EC4F079B37F821519FC95DA76EF389A928 (GameMode_t3635427B8DF6A50F9EAE8955955887AD0D098C82 * __this, const RuntimeMethod* method); // System.Void Yeji::InitPreHeights() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Yeji_InitPreHeights_m62DB6279C3515B4F2FE57F30D132AC5C0B373D9C (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.Void ChallengeGameMode::AddHuntGameView() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChallengeGameMode_AddHuntGameView_mC6CC5267FBBC58D9F888E4224F29B1E057C023AC (ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B * __this, const RuntimeMethod* method); // System.Void ChallengeGameMode::AddSelectLevelView() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChallengeGameMode_AddSelectLevelView_mB751386829E80493A51AA0B9A0CA0D45B0AE8638 (ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B * __this, const RuntimeMethod* method); // System.Void YejiHuntGameMode::CreateAnimal() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void YejiHuntGameMode_CreateAnimal_m50A84D5502FCFE43217BA3774FD66F0E2502CEA9 (YejiHuntGameMode_tC7B3AEEF3616DD293F13F32FC974BC22C561D563 * __this, const RuntimeMethod* method); // TreeAreaRecorder/AreaInfo TreeAreaRecorder::getValidAreaInfo(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AreaInfo_t23BDB3108537E7181ACFB654B90B389AE8FAC781 * TreeAreaRecorder_getValidAreaInfo_m70A8AF7912CD5D132B651AF5EBDA1587DB626CA7 (TreeAreaRecorder_tAE9063D38B62DF6BE86781A700F0D349C2E43B37 * __this, int32_t ___childIndex0, const RuntimeMethod* method); // UnityEngine.Quaternion UnityEngine.Quaternion::get_identity() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 Quaternion_get_identity_mF2E565DBCE793A1AE6208056D42CA7C59D83A702 (const RuntimeMethod* method); // !!0 UnityEngine.Object::Instantiate(!!0,UnityEngine.Vector3,UnityEngine.Quaternion,UnityEngine.Transform) inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * Object_Instantiate_TisGameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319_mBD93211DA0D7B29006CFA30014093BAFEFB1BA21 (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___original0, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___position1, Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___rotation2, Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___parent3, const RuntimeMethod* method) { return (( GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * (*) (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E , Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 , Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 *, const RuntimeMethod*))Object_Instantiate_TisRuntimeObject_m395E8296B15F96587420FD49B2A105D109464C22_gshared)(___original0, ___position1, ___rotation2, ___parent3, 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); // !!0 UnityEngine.GameObject::GetComponent() inline Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * GameObject_GetComponent_TisYeji_tE6BD925F837340572A36DAC8B0F636034B696A81_m82CE4619411D4E631989E5433534C4474AF0ADED (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * __this, const RuntimeMethod* method) { return (( Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * (*) (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *, const RuntimeMethod*))GameObject_GetComponent_TisRuntimeObject_m533C28B362284747FD5138B02D183642545146E8_gshared)(__this, method); } // System.Single Yeji::RandomOnePreHeight(Yeji) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Yeji_RandomOnePreHeight_m6CC96A623F2BDF8C321B2399008AB36F99793847 (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * ___yeji0, const RuntimeMethod* method); // System.Void TargetAnimal::RotateByWorldY(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TargetAnimal_RotateByWorldY_mD022A909C02A641C33F792A108940BB0AF26ADC5 (TargetAnimal_t90B2AB67B1B579964591B445CAF14122DB690D02 * __this, float ___angle0, const RuntimeMethod* method); // System.Void System.Action`1::.ctor(System.Object,System.IntPtr) inline void Action_1__ctor_m7AAF677F8C357E5D7DD63D87EC0EA2B47FF37C61 (Action_1_t1B7004A16BED5066BEB03C343CA7F4B5EE772A10 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { (( void (*) (Action_1_t1B7004A16BED5066BEB03C343CA7F4B5EE772A10 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Action_1__ctor_mA671E933C9D3DAE4E3F71D34FDDA971739618158_gshared)(__this, ___object0, ___method1, method); } // System.Boolean System.Collections.Generic.HashSet`1::Add(!0) inline bool HashSet_1_Add_m703FB10019FF453F25D4AA1F74C549F547466497 (HashSet_1_tBBDF351960AC909F90DBEEF112FAB92D79FAB089 * __this, TargetAnimal_t90B2AB67B1B579964591B445CAF14122DB690D02 * ___item0, const RuntimeMethod* method) { return (( bool (*) (HashSet_1_tBBDF351960AC909F90DBEEF112FAB92D79FAB089 *, TargetAnimal_t90B2AB67B1B579964591B445CAF14122DB690D02 *, const RuntimeMethod*))HashSet_1_Add_m8194125167FD7A887F1B39D342A71A0BD0C8BF5C_gshared)(__this, ___item0, method); } // System.Int32 System.Collections.Generic.HashSet`1::get_Count() inline int32_t HashSet_1_get_Count_m19BDF71BBAFEE3DADC4089E8DCF0F13D4838B415_inline (HashSet_1_tBBDF351960AC909F90DBEEF112FAB92D79FAB089 * __this, const RuntimeMethod* method) { return (( int32_t (*) (HashSet_1_tBBDF351960AC909F90DBEEF112FAB92D79FAB089 *, const RuntimeMethod*))HashSet_1_get_Count_m41C20B7D2DB4661F5C68E9BA25E4B83FC6914CD8_gshared_inline)(__this, method); } // UnityEngine.Vector3 UnityEngine.Vector3::op_Subtraction(UnityEngine.Vector3,UnityEngine.Vector3) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Vector3_op_Subtraction_m2725C96965D5C0B1F9715797E51762B13A5FED58_inline (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___a0, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___b1, const RuntimeMethod* method); // UnityEngine.Vector3 UnityEngine.Vector3::get_normalized() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Vector3_get_normalized_m2FA6DF38F97BDA4CCBDAE12B9FE913A241DAC8D5 (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.HashSet`1::Remove(!0) inline bool HashSet_1_Remove_mC768C51F031F7135EF36B0E02875D7F6B489B436 (HashSet_1_tBBDF351960AC909F90DBEEF112FAB92D79FAB089 * __this, TargetAnimal_t90B2AB67B1B579964591B445CAF14122DB690D02 * ___item0, const RuntimeMethod* method) { return (( bool (*) (HashSet_1_tBBDF351960AC909F90DBEEF112FAB92D79FAB089 *, TargetAnimal_t90B2AB67B1B579964591B445CAF14122DB690D02 *, const RuntimeMethod*))HashSet_1_Remove_mB2A3571B348E408BAC91D09A81DF97EAE11A1B02_gshared)(__this, ___item0, 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); // System.Void YejiHuntGameMode::.ctor(GameMgr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void YejiHuntGameMode__ctor_mF3B44093FFCB45C3693B48848211EF8D00295D61 (YejiHuntGameMode_tC7B3AEEF3616DD293F13F32FC974BC22C561D563 * __this, GameMgr_tE3D60AE9C96D966787437C5F15D3477A9E948950 * ___gameMgr0, const RuntimeMethod* method); // System.Void HunterGamePlayerScoreCounter::.ctor(ChallengeGameModeLocalPK) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HunterGamePlayerScoreCounter__ctor_m2B99EDB91B51DD090D7F15A399B5D20E765ABC14 (HunterGamePlayerScoreCounter_t4CFF1912DB681348618492344B5C63984D1CCDD7 * __this, RuntimeObject* ___gameModeLocalPK0, const RuntimeMethod* method); // System.Void YejiHuntGameMode_LocalPK::AddReadyView() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void YejiHuntGameMode_LocalPK_AddReadyView_mADDD502F89A9570FD83A7AC797D2A629C9F6A1E6 (YejiHuntGameMode_LocalPK_t7B829CAB564B93A939025B2593348F8B65D5E229 * __this, const RuntimeMethod* method); // System.Boolean ChallengeGameMode::DoNextShoot() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ChallengeGameMode_DoNextShoot_mA0A04818D4028FEF2C6D4456A5B0628EA312E030 (ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B * __this, const RuntimeMethod* method); // System.Void YejiHuntGameMode_LocalPK::NextPlayerFinal() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void YejiHuntGameMode_LocalPK_NextPlayerFinal_mDE552218071ADA58E488434E984D70CDB7D554E2 (YejiHuntGameMode_LocalPK_t7B829CAB564B93A939025B2593348F8B65D5E229 * __this, const RuntimeMethod* method); // !!0 UnityEngine.Resources::Load(System.String) inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * Resources_Load_TisGameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319_mC871EF6B25D0F9AEDCB7D64F3A113DDB587A49D6 (String_t* ___path0, const RuntimeMethod* method) { return (( GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * (*) (String_t*, const RuntimeMethod*))Resources_Load_TisRuntimeObject_m83108B6D8808A0E83DE12FD220A87000D19AEE00_gshared)(___path0, 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); } // !!0 UnityEngine.GameObject::GetComponent() inline PKGameReadyView_Challenge_t422FE0ED7612BCE36D96961918D3245CA322AB93 * GameObject_GetComponent_TisPKGameReadyView_Challenge_t422FE0ED7612BCE36D96961918D3245CA322AB93_mF7DB01D2F056AE063C822F451E1F4BE1638C438A (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * __this, const RuntimeMethod* method) { return (( PKGameReadyView_Challenge_t422FE0ED7612BCE36D96961918D3245CA322AB93 * (*) (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *, const RuntimeMethod*))GameObject_GetComponent_TisRuntimeObject_m533C28B362284747FD5138B02D183642545146E8_gshared)(__this, method); } // System.Void YejiHuntGameMode_LocalPK::NextPlayer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void YejiHuntGameMode_LocalPK_NextPlayer_m57348D9F10233B3060045AC5070730C7FEE39D44 (YejiHuntGameMode_LocalPK_t7B829CAB564B93A939025B2593348F8B65D5E229 * __this, const RuntimeMethod* method); // System.Void ChallengeGameMode::Update() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChallengeGameMode_Update_m45BA884BD74209A6F55A1AA181A8068F417AC57B (ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B * __this, const RuntimeMethod* method); // System.Boolean GameMode::get_pauseTimeCounting() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GameMode_get_pauseTimeCounting_mA658E4A5B5E237CAE4627B5550C8B68E99850E35 (GameMode_t3635427B8DF6A50F9EAE8955955887AD0D098C82 * __this, const RuntimeMethod* method); // ArmBow ArmBow::get_ins() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArmBow_tB6B0B80BF49B5CD1F51E828D121AF6CBE42F74E4 * ArmBow_get_ins_m261AF5740D1B1BD167FE8AC1AA1308701DD4D864 (const RuntimeMethod* method); // System.Void ArmBow::readyShoot() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArmBow_readyShoot_m8D7E225EEC4E8F92D0D2AE066368E865CC4FC652 (ArmBow_tB6B0B80BF49B5CD1F51E828D121AF6CBE42F74E4 * __this, const RuntimeMethod* method); // System.Void System.ValueTuple`2::.ctor(!0,!1) inline void ValueTuple_2__ctor_mB8133ACA310169B397397A43169A5CB56FCEE9D6 (ValueTuple_2_t8A744F446B0F7B478AD1F3F16A38F910E3329FC8 * __this, float ___item10, float ___item21, const RuntimeMethod* method) { (( void (*) (ValueTuple_2_t8A744F446B0F7B478AD1F3F16A38F910E3329FC8 *, float, float, const RuntimeMethod*))ValueTuple_2__ctor_mB8133ACA310169B397397A43169A5CB56FCEE9D6_gshared)(__this, ___item10, ___item21, method); } // System.Void YejiHuntGameMode_OnlinePK/OnlineHelper::.ctor(YejiHuntGameMode_OnlinePK) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OnlineHelper__ctor_m3DC6D3A8595889F3AE4A225B9D16F68A85B0D8CE (OnlineHelper_t2E4F71841FE6F0B13C9845579D42E94EE517115B * __this, YejiHuntGameMode_OnlinePK_tDDA2472446AEB0BB1728C88EE9B5DBE80B4CDCAA * ___gameMode0, const RuntimeMethod* method); // System.Void YejiHuntGameMode_OnlinePK/OnlineHelper::InitSocketPlayer(System.Action) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OnlineHelper_InitSocketPlayer_m94E0981577B421DBB93CD00919DDD303CE76B022 (OnlineHelper_t2E4F71841FE6F0B13C9845579D42E94EE517115B * __this, Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___successCallback0, const RuntimeMethod* method); // System.Boolean YejiHuntGameMode_OnlinePK/OnlineHelper::IsCopyHost() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool OnlineHelper_IsCopyHost_mE06BD43A87D1F03A6E0E2655482BED30A762203E (OnlineHelper_t2E4F71841FE6F0B13C9845579D42E94EE517115B * __this, const RuntimeMethod* method); // System.Void SocketPlayer::UploadPKGameData(System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SocketPlayer_UploadPKGameData_m1BCE80C56A4293EE2C50D3606091DE4E101AE921 (SocketPlayer_t3D341EF990F6F99AFA174DF42451ECD05E909D29 * __this, String_t* ___key0, RuntimeObject * ___data1, const RuntimeMethod* method); // System.Collections.Generic.HashSet`1/Enumerator System.Collections.Generic.HashSet`1::GetEnumerator() inline Enumerator_t56EDF8026DFAAE04A48416483FAB75F1CAF73061 HashSet_1_GetEnumerator_mCB0A1EBB995E9BA3FB805ACCB3B078ED8C0A7ABA (HashSet_1_t47ED9A0606C5D93A2045DE3AACBA2CD73C930023 * __this, const RuntimeMethod* method) { return (( Enumerator_t56EDF8026DFAAE04A48416483FAB75F1CAF73061 (*) (HashSet_1_t47ED9A0606C5D93A2045DE3AACBA2CD73C930023 *, const RuntimeMethod*))HashSet_1_GetEnumerator_m6BF4958E6C8FB6D7E43F9275B1C01D9FFDA8FC8C_gshared)(__this, method); } // !0 System.Collections.Generic.HashSet`1/Enumerator::get_Current() inline Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * Enumerator_get_Current_m9F1D001319885B4142FC8737B2F53BFC5D05B902_inline (Enumerator_t56EDF8026DFAAE04A48416483FAB75F1CAF73061 * __this, const RuntimeMethod* method) { return (( Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * (*) (Enumerator_t56EDF8026DFAAE04A48416483FAB75F1CAF73061 *, const RuntimeMethod*))Enumerator_get_Current_mD3F74B1DAE1E1A26CA398905BEFFDA4760F2FD8F_gshared_inline)(__this, method); } // System.Boolean System.Collections.Generic.HashSet`1/Enumerator::MoveNext() inline bool Enumerator_MoveNext_mB5A16792F59459BD7201172EF4DA7A224BD20424 (Enumerator_t56EDF8026DFAAE04A48416483FAB75F1CAF73061 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t56EDF8026DFAAE04A48416483FAB75F1CAF73061 *, const RuntimeMethod*))Enumerator_MoveNext_mD87CDEF3F60C047F21B9E6A48590E59D9D6621C9_gshared)(__this, method); } // System.Void System.Collections.Generic.HashSet`1/Enumerator::Dispose() inline void Enumerator_Dispose_m5ABD8882ABDC6E2E298E2E25FC07464C6C960B96 (Enumerator_t56EDF8026DFAAE04A48416483FAB75F1CAF73061 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t56EDF8026DFAAE04A48416483FAB75F1CAF73061 *, const RuntimeMethod*))Enumerator_Dispose_m8A225BA705CC2D5BA0A22FF58381EA1FDB37ED20_gshared)(__this, method); } // System.Void YejiHuntGameMode_OnlinePK::NextPlayerFinal() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void YejiHuntGameMode_OnlinePK_NextPlayerFinal_m6501922113923B0B37D2BED4CFA21E7F541B7658 (YejiHuntGameMode_OnlinePK_tDDA2472446AEB0BB1728C88EE9B5DBE80B4CDCAA * __this, const RuntimeMethod* method); // System.Void YejiHuntGameMode_OnlinePK::NextPlayer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void YejiHuntGameMode_OnlinePK_NextPlayer_mDF2D9F81BB9AE1735F95A83C1DD37518E3A93480 (YejiHuntGameMode_OnlinePK_tDDA2472446AEB0BB1728C88EE9B5DBE80B4CDCAA * __this, const RuntimeMethod* method); // System.Boolean YejiHuntGameMode_OnlinePK/OnlineHelper::IsMyPlayerInited() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool OnlineHelper_IsMyPlayerInited_mBAE96D77DFA28286786911F6C6F747BB00DE97BD (OnlineHelper_t2E4F71841FE6F0B13C9845579D42E94EE517115B * __this, const RuntimeMethod* method); // System.Boolean YejiHuntGameMode_OnlinePK/OnlineHelper::IsMainHost() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool OnlineHelper_IsMainHost_mD3FF65F8D02458A1BB50454AFF258BBFC1D5E3BF (OnlineHelper_t2E4F71841FE6F0B13C9845579D42E94EE517115B * __this, const RuntimeMethod* method); // System.Boolean YejiHuntGameMode_OnlinePK/OnlineHelper::IsMyPlayerRunning() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool OnlineHelper_IsMyPlayerRunning_mE051938A176F104C581384FB1DBD6C58A126CA02 (OnlineHelper_t2E4F71841FE6F0B13C9845579D42E94EE517115B * __this, const RuntimeMethod* method); // System.Void YejiHuntGameMode_OnlinePK::OnUpdate(System.Single,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void YejiHuntGameMode_OnlinePK_OnUpdate_mF27346E6902940B90598C1640D5900B0B1274EA8 (YejiHuntGameMode_OnlinePK_tDDA2472446AEB0BB1728C88EE9B5DBE80B4CDCAA * __this, float ___dt0, bool ____pauseTimeCounting1, const RuntimeMethod* method); // System.Void ChallengeGameMode::AnnounceGameOver() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChallengeGameMode_AnnounceGameOver_mD74B0505B1B30B98B1C3F93235436F03F3788264 (ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B * __this, const RuntimeMethod* method); // System.Void YejiHuntGameMode_OnlinePK/OnlineHelper::OnFrameUpdate() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OnlineHelper_OnFrameUpdate_m6FFD323B542F2CBDC78ACB7495AACB71368FA8F0 (OnlineHelper_t2E4F71841FE6F0B13C9845579D42E94EE517115B * __this, const RuntimeMethod* method); // UnityEngine.Quaternion UnityEngine.Transform::get_rotation() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 Transform_get_rotation_m4AA3858C00DF4C9614B80352558C4C37D08D2200 (Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * __this, 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 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZDeflaterOutputStream::.ctor(System.IO.Stream,System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZDeflaterOutputStream__ctor_m7B11B8F6DD1B3BB2FECE7A7E352AA7FACAB07432 (ZDeflaterOutputStream_tC29A2BAF5FCC76E4CDAB81E0BFA933D413B00A83 * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___outp0, int32_t ___level1, bool ___nowrap2, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZStream__ctor_m789EC02A4065E8AA186254DD18DEB20CB878FC40 (ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * __this, const RuntimeMethod* method); // System.Void System.IO.Stream::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stream__ctor_m5EB0B4BCC014E7D1F18FE0E72B2D6D0C5C13D5C4 (Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * __this, const RuntimeMethod* method); // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream::deflateInit(System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ZStream_deflateInit_mA37B4F5F7AB971B7D5DD3EE980EE109A2B17A82D (ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * __this, int32_t ___level0, bool ___nowrap1, const RuntimeMethod* method); // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream::deflate(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ZStream_deflate_m6A8BBBC2E2974E7E5FD360EC48BCFB40282E14FB (ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * __this, int32_t ___flush0, const RuntimeMethod* method); // System.Void System.IO.IOException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IOException__ctor_m208E01C02FF2C1D6C5AA661A5816C744804E1690 (IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA * __this, String_t* ___message0, const RuntimeMethod* method); // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream::deflateEnd() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ZStream_deflateEnd_mAEA3E0B55B061F47645BE253556DCCA5E0E921A2 (ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream::free() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZStream_free_m19D754EEAB35C33A21FF80EFB42F9BB39CB520F7 (ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZDeflaterOutputStream::Finish() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZDeflaterOutputStream_Finish_mED3E8EAF8799F956AE5601F42D3ECF7512AF7C46 (ZDeflaterOutputStream_tC29A2BAF5FCC76E4CDAB81E0BFA933D413B00A83 * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZDeflaterOutputStream::End() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZDeflaterOutputStream_End_m577B2D33ED81ADB727C42FBED99B992BCE365AE1 (ZDeflaterOutputStream_tC29A2BAF5FCC76E4CDAB81E0BFA933D413B00A83 * __this, const RuntimeMethod* method); // System.Void System.IO.Stream::Close() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stream_Close_mC34AF5832AD2E47C5E8F9D44E969C45F6F0A9A13 (Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInflaterInputStream::.ctor(System.IO.Stream,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZInflaterInputStream__ctor_mEF83FAC93BAD45EAF1479E45036C7D630823E882 (ZInflaterInputStream_t187D375253406A691AA32C6281FD0979F5C26224 * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___inp0, bool ___nowrap1, const RuntimeMethod* method); // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream::inflateInit(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ZStream_inflateInit_m3ABA5FDA26B3A77684E43CB2702248EF06C4279C (ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * __this, bool ___nowrap0, const RuntimeMethod* method); // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream::inflate(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ZStream_inflate_mC0AE6609A7E141336EAB1F130549944AD25B9B24 (ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * __this, int32_t ___f0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInputStream::.ctor(System.IO.Stream,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZInputStream__ctor_m27F5DEF2B14FAA754C989667659213B30752D155 (ZInputStream_t2D5C611F3CB82738E6B107F6DD9F5BF0486E5C4D * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___input0, bool ___nowrap1, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInputStream::GetDefaultZStream(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * ZInputStream_GetDefaultZStream_mF691710B1B7561E91BB4314575D09C77899C61E4 (bool ___nowrap0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInputStream::.ctor(System.IO.Stream,BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZInputStream__ctor_m52975274EFC6BDA8F8C94EECD9870DD1BD10FB27 (ZInputStream_t2D5C611F3CB82738E6B107F6DD9F5BF0486E5C4D * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___input0, ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * ___z1, const RuntimeMethod* method); // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream::inflateInit() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ZStream_inflateInit_m9EC1B8A6E4C5DD3F1AB27A3334641E5368E53A4A (ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInputStream::.ctor(System.IO.Stream,System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZInputStream__ctor_m518B8F72878F054AFF8600D294B9E2667D291B4C (ZInputStream_t2D5C611F3CB82738E6B107F6DD9F5BF0486E5C4D * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___input0, int32_t ___level1, bool ___nowrap2, const RuntimeMethod* method); // System.Void System.NotSupportedException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_m3EA81A5B209A87C3ADA47443F2AFFF735E5256EE (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * __this, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZOutputStream::.ctor(System.IO.Stream,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZOutputStream__ctor_mDA8792013D10254F9BF2D3617C43E9D2400DCE6C (ZOutputStream_tC18E76CC9549F21AC543491E55ACCD9A7C76D5D5 * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___output0, bool ___nowrap1, const RuntimeMethod* method); // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZOutputStream::GetDefaultZStream(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * ZOutputStream_GetDefaultZStream_m455DF026B4DB810AF8EBDFD6EA0FA431D140A63F (bool ___nowrap0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZOutputStream::.ctor(System.IO.Stream,BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZOutputStream__ctor_m2C7230AFA7590A058E16524F25CABEDFCF219B5C (ZOutputStream_tC18E76CC9549F21AC543491E55ACCD9A7C76D5D5 * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___output0, ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * ___z1, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZOutputStream::.ctor(System.IO.Stream,System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZOutputStream__ctor_mA7578A5AED4CD1B289FCADE940D8E8F59DFAA47B (ZOutputStream_tC18E76CC9549F21AC543491E55ACCD9A7C76D5D5 * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___output0, int32_t ___level1, bool ___nowrap2, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZOutputStream::DoClose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZOutputStream_DoClose_m56C0A89A26F076A65555DE69C03AD13E7F839E4E (ZOutputStream_tC18E76CC9549F21AC543491E55ACCD9A7C76D5D5 * __this, const RuntimeMethod* method); // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream::inflateEnd() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ZStream_inflateEnd_m85C85ED154B56ADFBDC2228BDD66E5C376B63E25 (ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * __this, const RuntimeMethod* method); // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::GetLowestSetBit() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BigInteger_GetLowestSetBit_m14F7AAE33B37CC165ADB622C41783C78FA5918C8 (BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * __this, const RuntimeMethod* method); // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger::TestBit(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BigInteger_TestBit_mC6B170A76F955C7A3839E85559A34EF0D9276D36 (BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * __this, int32_t ___n0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.Multiplier.AbstractECMultiplier::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AbstractECMultiplier__ctor_m898F1EE1A85F4E552860CB418F1D64A0B33C0C01 (AbstractECMultiplier_t54253743E31DE46FD22E58679B9792D44DA770B5 * __this, const RuntimeMethod* method); // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream::inflateInit(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ZStream_inflateInit_m19846C60F86EAA016A842E3BBA2D12F324D6DB00 (ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * __this, int32_t ___w0, const RuntimeMethod* method); // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream::inflateInit(System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ZStream_inflateInit_m2BB7550CD1092E3E0152CD95EEBE8717AE25A779 (ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * __this, int32_t ___w0, bool ___nowrap1, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Inflate::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Inflate__ctor_mAA64F9B7AA817493D257F8F2E1BB592B9350C703 (Inflate_tA57633237054BCAD6EDC8DBC06F34D50C1680638 * __this, const RuntimeMethod* method); // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Inflate::inflateInit(BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Inflate_inflateInit_mEB7B5392F9994E653DC48D29B939904A8F0992CB (Inflate_tA57633237054BCAD6EDC8DBC06F34D50C1680638 * __this, ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * ___z0, int32_t ___w1, const RuntimeMethod* method); // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Inflate::inflate(BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Inflate_inflate_mF9F1556B60DEA95586916C698786F0A53EB6072B (Inflate_tA57633237054BCAD6EDC8DBC06F34D50C1680638 * __this, ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * ___z0, int32_t ___f1, const RuntimeMethod* method); // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Inflate::inflateEnd(BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Inflate_inflateEnd_mF2F9D4B1405608F7D438879D86A1424BEC787133 (Inflate_tA57633237054BCAD6EDC8DBC06F34D50C1680638 * __this, ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * ___z0, const RuntimeMethod* method); // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Inflate::inflateSync(BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Inflate_inflateSync_m9494D494845122B32C6A7890B101B4E409C2B4C6 (Inflate_tA57633237054BCAD6EDC8DBC06F34D50C1680638 * __this, ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * ___z0, const RuntimeMethod* method); // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Inflate::inflateSetDictionary(BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream,System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Inflate_inflateSetDictionary_mD2BEC0515DFED328AF1336F05D095DF9D46DBAD4 (Inflate_tA57633237054BCAD6EDC8DBC06F34D50C1680638 * __this, ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * ___z0, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___dictionary1, int32_t ___dictLength2, const RuntimeMethod* method); // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream::deflateInit(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ZStream_deflateInit_m44074EE2C4900585A18C8472BF42DF749E8F808C (ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * __this, int32_t ___level0, int32_t ___bits1, const RuntimeMethod* method); // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream::deflateInit(System.Int32,System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ZStream_deflateInit_m0C9994FF64893A0B1907BF99E09BCF3BA77F79F9 (ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * __this, int32_t ___level0, int32_t ___bits1, bool ___nowrap2, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Deflate__ctor_m6F6F3CA51FF84ECC85DF7EBE4E309DD03AF57109 (Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * __this, const RuntimeMethod* method); // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::deflateInit(BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Deflate_deflateInit_m1CBA4503047AD136616CC5E79194C9DBBCCF1271 (Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * __this, ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * ___strm0, int32_t ___level1, int32_t ___bits2, const RuntimeMethod* method); // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::deflate(BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Deflate_deflate_m3337AA1E4638956947006D7DDD807A14FF2B3F5E (Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * __this, ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * ___strm0, int32_t ___flush1, const RuntimeMethod* method); // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::deflateEnd() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Deflate_deflateEnd_m432D866E15237609FBB128E97732F99F7B7610A6 (Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * __this, const RuntimeMethod* method); // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::deflateParams(BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Deflate_deflateParams_m159D644C2275FBC4A8806EB5592F9C3C93ACC349 (Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * __this, ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * ___strm0, int32_t ____level1, int32_t ____strategy2, const RuntimeMethod* method); // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::deflateSetDictionary(BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream,System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Deflate_deflateSetDictionary_mA2E240655B9BD61D17B389725422C63439708A99 (Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * __this, ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * ___strm0, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___dictionary1, int32_t ___dictLength2, const RuntimeMethod* method); // System.Int64 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Adler32::adler32(System.Int64,System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Adler32_adler32_m506946C8B2C6E8BF8B37F1AA9193044841485DA8 (Adler32_tA7FF29BBF4C9B4738DDE9CA1F7F5B6457DDF5EC2 * __this, int64_t ___adler0, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___buf1, int32_t ___index2, int32_t ___len3, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Adler32::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Adler32__ctor_m983BEEF538610DDD988E03C908F07D255C72DA6F (Adler32_tA7FF29BBF4C9B4738DDE9CA1F7F5B6457DDF5EC2 * __this, const RuntimeMethod* method); // System.Int32 BestHTTP.Decompression.Zlib.SharedUtils::URShift(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SharedUtils_URShift_m12B0EAE7147B478194B0B530407D220E9DA800B6 (int32_t ___number0, int32_t ___bits1, const RuntimeMethod* method); // System.Void BestHTTP.Decompression.Zlib.DeflateManager::pqdownheap(System.Int16[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DeflateManager_pqdownheap_m4603B0D9C3AD4E9B7D87BFB4084289E662611202 (DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * __this, Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* ___tree0, int32_t ___k1, const RuntimeMethod* method); // System.Byte System.Math::Max(System.Byte,System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Math_Max_mCA27A75C0677CDAF214D29620E7F508A9C6FB30A (uint8_t ___val10, uint8_t ___val21, const RuntimeMethod* method); // System.Void BestHTTP.Decompression.Zlib.ZTree::gen_bitlen(BestHTTP.Decompression.Zlib.DeflateManager) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZTree_gen_bitlen_m3B368C863CDBEEB1E07429708796718DD6C0AE0C (ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF * __this, DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * ___s0, const RuntimeMethod* method); // System.Void BestHTTP.Decompression.Zlib.ZTree::gen_codes(System.Int16[],System.Int32,System.Int16[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZTree_gen_codes_mCC47D960B5C04BF005DC95E749BE89E834CE88AB (Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* ___tree0, int32_t ___max_code1, Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* ___bl_count2, const RuntimeMethod* method); // System.Int32 BestHTTP.Decompression.Zlib.ZTree::bi_reverse(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ZTree_bi_reverse_mA40C387AAABA95A66E8C085387F553EA8AB23A9E (int32_t ___code0, int32_t ___len1, const RuntimeMethod* method); // System.Void System.Runtime.CompilerServices.RuntimeHelpers::InitializeArray(System.Array,System.RuntimeFieldHandle) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeHelpers_InitializeArray_mE27238308FED781F2D6A719F0903F2E1311B058F (RuntimeArray * ___array0, RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 ___fldHandle1, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate::pqdownheap(System.Int16[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Deflate_pqdownheap_m4E2AD83865D8C232CE81CADC3E62CCA988B273D0 (Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * __this, Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* ___tree0, int32_t ___k1, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZTree::gen_bitlen(BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZTree_gen_bitlen_m91FA430263D220341C2020CFC00FEF4CA9346B84 (ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC * __this, Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * ___s0, const RuntimeMethod* method); // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZTree::gen_codes(System.Int16[],System.Int32,System.Int16[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZTree_gen_codes_m640A4E1649E40993FCFFAF30A5AC0586D5DE669D (Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* ___tree0, int32_t ___max_code1, Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* ___bl_count2, const RuntimeMethod* method); // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZTree::bi_reverse(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ZTree_bi_reverse_mFD0C381064E80284E167C90F024B94DAC1077C26 (int32_t ___code0, int32_t ___len1, const RuntimeMethod* method); // System.Void UnityEngine.Vector3::.ctor(System.Single,System.Single,System.Single) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector3__ctor_m57495F692C6CE1CEF278CAD9A98221165D37E636_inline (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * __this, float ___x0, float ___y1, float ___z2, const RuntimeMethod* method); #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Object BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509NameEntryConverter::ConvertHexEncoded(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * X509NameEntryConverter_ConvertHexEncoded_m0F981A06A785BF54805679E88DA94AE2DC9FD2A6 (X509NameEntryConverter_tB7E7BD9119CAFF57159A4641EEF350B6A5111351 * __this, String_t* ___hexString0, int32_t ___offset1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Hex_t3B7B2ED165B9CA45F45E3F1EF2436D4FCA11F6FE_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // string str = hexString.Substring(offset); String_t* L_0 = ___hexString0; int32_t L_1 = ___offset1; NullCheck(L_0); String_t* L_2; L_2 = String_Substring_mB6B87FD76552BBF6D4E2B9F07F857FE051DCE190(L_0, L_1, /*hidden argument*/NULL); // return Asn1Object.FromByteArray(Hex.Decode(str)); IL2CPP_RUNTIME_CLASS_INIT(Hex_t3B7B2ED165B9CA45F45E3F1EF2436D4FCA11F6FE_il2cpp_TypeInfo_var); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_3; L_3 = Hex_Decode_m1D881955B974F7FB194876E59DD34149C594A6E1(L_2, /*hidden argument*/NULL); Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * L_4; L_4 = Asn1Object_FromByteArray_m2DB00E0C5F68F2C4C3CA24B1F3075BC8DA9AD989(L_3, /*hidden argument*/NULL); return L_4; } } // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509NameEntryConverter::CanBePrintable(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool X509NameEntryConverter_CanBePrintable_m262D82E4CAEE76ED6D3F9FE7C64F44C23380A1E1 (X509NameEntryConverter_tB7E7BD9119CAFF57159A4641EEF350B6A5111351 * __this, String_t* ___str0, const RuntimeMethod* method) { { // return DerPrintableString.IsPrintableString(str); String_t* L_0 = ___str0; bool L_1; L_1 = DerPrintableString_IsPrintableString_m2D091A0B1AF0E46BCE9561B99BC78D8F62DC4A33(L_0, /*hidden argument*/NULL); return L_1; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509NameEntryConverter::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509NameEntryConverter__ctor_m5B407551F6C6644511CBF4E64D0C0745CF950D9E (X509NameEntryConverter_tB7E7BD9119CAFF57159A4641EEF350B6A5111351 * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509NameTokenizer::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509NameTokenizer__ctor_mF8C5620CD7B7F7F2C7244A83E1BDD40E7EF4F5DC (X509NameTokenizer_tDAF307295F6A85ECEF068F02DFE878693672ECEC * __this, String_t* ___oid0, const RuntimeMethod* method) { { // : this(oid, ',') String_t* L_0 = ___oid0; X509NameTokenizer__ctor_mF13D8D3BAAF23E1E772CD0E63A2272EA5F4BEA8D(__this, L_0, ((int32_t)44), /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509NameTokenizer::.ctor(System.String,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509NameTokenizer__ctor_mF13D8D3BAAF23E1E772CD0E63A2272EA5F4BEA8D (X509NameTokenizer_tDAF307295F6A85ECEF068F02DFE878693672ECEC * __this, String_t* ___oid0, Il2CppChar ___separator1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // private StringBuilder buffer = new StringBuilder(); StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); StringBuilder__ctor_m5A81DE19E748F748E19FF13FB6FFD2547F9212D9(L_0, /*hidden argument*/NULL); __this->set_buffer_3(L_0); // public X509NameTokenizer( // string oid, // char separator) Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); // this.value = oid; String_t* L_1 = ___oid0; __this->set_value_0(L_1); // this.index = -1; __this->set_index_1((-1)); // this.separator = separator; Il2CppChar L_2 = ___separator1; __this->set_separator_2(L_2); // } return; } } // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509NameTokenizer::HasMoreTokens() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool X509NameTokenizer_HasMoreTokens_m730E379743BACDEBD7DB0A5337119499F4FCDA81 (X509NameTokenizer_tDAF307295F6A85ECEF068F02DFE878693672ECEC * __this, const RuntimeMethod* method) { { // return index != value.Length; int32_t L_0 = __this->get_index_1(); String_t* L_1 = __this->get_value_0(); NullCheck(L_1); int32_t L_2; L_2 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_1, /*hidden argument*/NULL); return (bool)((((int32_t)((((int32_t)L_0) == ((int32_t)L_2))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509NameTokenizer::NextToken() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* X509NameTokenizer_NextToken_m380FC0BBAE72F7E27AD99AF48E3AE66FFF9E3DB2 (X509NameTokenizer_tDAF307295F6A85ECEF068F02DFE878693672ECEC * __this, const RuntimeMethod* method) { int32_t V_0 = 0; bool V_1 = false; bool V_2 = false; Il2CppChar V_3 = 0x0; { // if (index == value.Length) int32_t L_0 = __this->get_index_1(); String_t* L_1 = __this->get_value_0(); NullCheck(L_1); int32_t L_2; L_2 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_1, /*hidden argument*/NULL); if ((!(((uint32_t)L_0) == ((uint32_t)L_2)))) { goto IL_0015; } } { // return null; return (String_t*)NULL; } IL_0015: { // int end = index + 1; int32_t L_3 = __this->get_index_1(); V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)); // bool quoted = false; V_1 = (bool)0; // bool escaped = false; V_2 = (bool)0; // buffer.Remove(0, buffer.Length); StringBuilder_t * L_4 = __this->get_buffer_3(); StringBuilder_t * L_5 = __this->get_buffer_3(); NullCheck(L_5); int32_t L_6; L_6 = StringBuilder_get_Length_m680500263C59ACFD9582BF2AEEED8E92C87FF5C0(L_5, /*hidden argument*/NULL); NullCheck(L_4); StringBuilder_t * L_7; L_7 = StringBuilder_Remove_m6ABF9CF3D10160EB52E0768262A9B179F987571E(L_4, 0, L_6, /*hidden argument*/NULL); goto IL_00f9; } IL_003f: { // char c = value[end]; String_t* L_8 = __this->get_value_0(); int32_t L_9 = V_0; NullCheck(L_8); Il2CppChar L_10; L_10 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_8, L_9, /*hidden argument*/NULL); V_3 = L_10; // if (c == '"') Il2CppChar L_11 = V_3; if ((!(((uint32_t)L_11) == ((uint32_t)((int32_t)34))))) { goto IL_0072; } } { // if (!escaped) bool L_12 = V_2; if (L_12) { goto IL_005e; } } { // quoted = !quoted; bool L_13 = V_1; V_1 = (bool)((((int32_t)L_13) == ((int32_t)0))? 1 : 0); // } goto IL_00f5; } IL_005e: { // buffer.Append(c); StringBuilder_t * L_14 = __this->get_buffer_3(); Il2CppChar L_15 = V_3; NullCheck(L_14); StringBuilder_t * L_16; L_16 = StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E(L_14, L_15, /*hidden argument*/NULL); // escaped = false; V_2 = (bool)0; // } goto IL_00f5; } IL_0072: { // if (escaped || quoted) bool L_17 = V_2; bool L_18 = V_1; if (!((int32_t)((int32_t)L_17|(int32_t)L_18))) { goto IL_00d6; } } { // if (c == '#' && buffer[buffer.Length - 1] == '=') Il2CppChar L_19 = V_3; if ((!(((uint32_t)L_19) == ((uint32_t)((int32_t)35))))) { goto IL_00a8; } } { StringBuilder_t * L_20 = __this->get_buffer_3(); StringBuilder_t * L_21 = __this->get_buffer_3(); NullCheck(L_21); int32_t L_22; L_22 = StringBuilder_get_Length_m680500263C59ACFD9582BF2AEEED8E92C87FF5C0(L_21, /*hidden argument*/NULL); NullCheck(L_20); Il2CppChar L_23; L_23 = StringBuilder_get_Chars_m5961A0987EEF0A0F8C335048A33EC4584B53F1E3(L_20, ((int32_t)il2cpp_codegen_subtract((int32_t)L_22, (int32_t)1)), /*hidden argument*/NULL); if ((!(((uint32_t)L_23) == ((uint32_t)((int32_t)61))))) { goto IL_00a8; } } { // buffer.Append('\\'); StringBuilder_t * L_24 = __this->get_buffer_3(); NullCheck(L_24); StringBuilder_t * L_25; L_25 = StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E(L_24, ((int32_t)92), /*hidden argument*/NULL); // } goto IL_00c5; } IL_00a8: { // else if (c == '+' && separator != '+') Il2CppChar L_26 = V_3; if ((!(((uint32_t)L_26) == ((uint32_t)((int32_t)43))))) { goto IL_00c5; } } { Il2CppChar L_27 = __this->get_separator_2(); if ((((int32_t)L_27) == ((int32_t)((int32_t)43)))) { goto IL_00c5; } } { // buffer.Append('\\'); StringBuilder_t * L_28 = __this->get_buffer_3(); NullCheck(L_28); StringBuilder_t * L_29; L_29 = StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E(L_28, ((int32_t)92), /*hidden argument*/NULL); } IL_00c5: { // buffer.Append(c); StringBuilder_t * L_30 = __this->get_buffer_3(); Il2CppChar L_31 = V_3; NullCheck(L_30); StringBuilder_t * L_32; L_32 = StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E(L_30, L_31, /*hidden argument*/NULL); // escaped = false; V_2 = (bool)0; // } goto IL_00f5; } IL_00d6: { // else if (c == '\\') Il2CppChar L_33 = V_3; if ((!(((uint32_t)L_33) == ((uint32_t)((int32_t)92))))) { goto IL_00df; } } { // escaped = true; V_2 = (bool)1; // } goto IL_00f5; } IL_00df: { // else if (c == separator) Il2CppChar L_34 = V_3; Il2CppChar L_35 = __this->get_separator_2(); if ((((int32_t)L_34) == ((int32_t)L_35))) { goto IL_010a; } } { // buffer.Append(c); StringBuilder_t * L_36 = __this->get_buffer_3(); Il2CppChar L_37 = V_3; NullCheck(L_36); StringBuilder_t * L_38; L_38 = StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E(L_36, L_37, /*hidden argument*/NULL); } IL_00f5: { // end++; int32_t L_39 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_39, (int32_t)1)); } IL_00f9: { // while (end != value.Length) int32_t L_40 = V_0; String_t* L_41 = __this->get_value_0(); NullCheck(L_41); int32_t L_42; L_42 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_41, /*hidden argument*/NULL); if ((!(((uint32_t)L_40) == ((uint32_t)L_42)))) { goto IL_003f; } } IL_010a: { // index = end; int32_t L_43 = V_0; __this->set_index_1(L_43); // return buffer.ToString().Trim(); StringBuilder_t * L_44 = __this->get_buffer_3(); NullCheck(L_44); String_t* L_45; L_45 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_44); NullCheck(L_45); String_t* L_46; L_46 = String_Trim_m3FEC641D7046124B7F381701903B50B5171DE0A2(L_45, /*hidden argument*/NULL); return L_46; } } #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 BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509ObjectIdentifiers__ctor_m18F2C19DB14DF52FB75392AC4F368C8A3E1314E2 (X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543 * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509ObjectIdentifiers__cctor_mF9F166B466F97B1DD9952C89F43848456FE6F1EC (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral00FAA6DAACAA311CCE49C5E1E1204A7130351314); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1A7FC08E8EB016BAD5A8A8D7B3447DAD63E867BC); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1E975408BDC3CEEA3B3BBEDC11D8AE5E1FFE9B0B); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral21BD368232F41BC4D3E2E1F13FAA13953FE83DFA); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2EC56193C8195EAD5B8542B13E1FCC9CF4DB3C08); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral33D56CA2E52DFDEF4F56463A9109D8276C56E4C3); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral384A972663A88A3CA636D7163BDC69F3C18E9CE5); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral453A07B8CC155ECBEB68D277EC848642FFB5F3B6); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7931519DFF1BB20E46AE397FD6DB8CD6EEC7ED0C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8105936FACB0C09C42FA2DF27F04F13536597A7F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral94227CA8EB4252C21E39FE8CCB2B65A6D01D3CF1); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral99C134A36D015746C32203B98CC495F87311D9DC); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB16364632FFDA7CF8AB0EF198C603812CB7ECD94); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC4BDA98415573B97838847CF1A6949BA9FCC789E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDD381BE73F585C3796C220566E891E458F9D6290); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEA2AC7DA2122607235D3D7EB8F5258E77B26CA40); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFD3355E430CC5655482B6C8F085EF64D205724FB); s_Il2CppMethodInitialized = true; } DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * G_B2_0 = NULL; DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * G_B1_0 = NULL; String_t* G_B3_0 = NULL; DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * G_B5_0 = NULL; DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * G_B4_0 = NULL; String_t* G_B6_0 = NULL; DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * G_B8_0 = NULL; DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * G_B7_0 = NULL; String_t* G_B9_0 = NULL; DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * G_B11_0 = NULL; DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * G_B10_0 = NULL; String_t* G_B12_0 = NULL; { // public static readonly DerObjectIdentifier CommonName = new DerObjectIdentifier(ID + ".3"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_0 = (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *)il2cpp_codegen_object_new(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); DerObjectIdentifier__ctor_m8009342D7B2AD40B1E19E6AB958141979B7405CD(L_0, _stringLiteral94227CA8EB4252C21E39FE8CCB2B65A6D01D3CF1, /*hidden argument*/NULL); ((X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_StaticFields*)il2cpp_codegen_static_fields_for(X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_il2cpp_TypeInfo_var))->set_CommonName_1(L_0); // public static readonly DerObjectIdentifier CountryName = new DerObjectIdentifier(ID + ".6"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_1 = (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *)il2cpp_codegen_object_new(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); DerObjectIdentifier__ctor_m8009342D7B2AD40B1E19E6AB958141979B7405CD(L_1, _stringLiteral453A07B8CC155ECBEB68D277EC848642FFB5F3B6, /*hidden argument*/NULL); ((X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_StaticFields*)il2cpp_codegen_static_fields_for(X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_il2cpp_TypeInfo_var))->set_CountryName_2(L_1); // public static readonly DerObjectIdentifier LocalityName = new DerObjectIdentifier(ID + ".7"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_2 = (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *)il2cpp_codegen_object_new(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); DerObjectIdentifier__ctor_m8009342D7B2AD40B1E19E6AB958141979B7405CD(L_2, _stringLiteral1E975408BDC3CEEA3B3BBEDC11D8AE5E1FFE9B0B, /*hidden argument*/NULL); ((X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_StaticFields*)il2cpp_codegen_static_fields_for(X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_il2cpp_TypeInfo_var))->set_LocalityName_3(L_2); // public static readonly DerObjectIdentifier StateOrProvinceName = new DerObjectIdentifier(ID + ".8"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_3 = (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *)il2cpp_codegen_object_new(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); DerObjectIdentifier__ctor_m8009342D7B2AD40B1E19E6AB958141979B7405CD(L_3, _stringLiteral1A7FC08E8EB016BAD5A8A8D7B3447DAD63E867BC, /*hidden argument*/NULL); ((X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_StaticFields*)il2cpp_codegen_static_fields_for(X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_il2cpp_TypeInfo_var))->set_StateOrProvinceName_4(L_3); // public static readonly DerObjectIdentifier Organization = new DerObjectIdentifier(ID + ".10"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_4 = (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *)il2cpp_codegen_object_new(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); DerObjectIdentifier__ctor_m8009342D7B2AD40B1E19E6AB958141979B7405CD(L_4, _stringLiteralDD381BE73F585C3796C220566E891E458F9D6290, /*hidden argument*/NULL); ((X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_StaticFields*)il2cpp_codegen_static_fields_for(X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_il2cpp_TypeInfo_var))->set_Organization_5(L_4); // public static readonly DerObjectIdentifier OrganizationalUnitName = new DerObjectIdentifier(ID + ".11"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_5 = (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *)il2cpp_codegen_object_new(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); DerObjectIdentifier__ctor_m8009342D7B2AD40B1E19E6AB958141979B7405CD(L_5, _stringLiteral99C134A36D015746C32203B98CC495F87311D9DC, /*hidden argument*/NULL); ((X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_StaticFields*)il2cpp_codegen_static_fields_for(X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_il2cpp_TypeInfo_var))->set_OrganizationalUnitName_6(L_5); // public static readonly DerObjectIdentifier id_at_telephoneNumber = new DerObjectIdentifier(ID + ".20"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_6 = (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *)il2cpp_codegen_object_new(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); DerObjectIdentifier__ctor_m8009342D7B2AD40B1E19E6AB958141979B7405CD(L_6, _stringLiteral7931519DFF1BB20E46AE397FD6DB8CD6EEC7ED0C, /*hidden argument*/NULL); ((X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_StaticFields*)il2cpp_codegen_static_fields_for(X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_il2cpp_TypeInfo_var))->set_id_at_telephoneNumber_7(L_6); // public static readonly DerObjectIdentifier id_at_name = new DerObjectIdentifier(ID + ".41"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_7 = (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *)il2cpp_codegen_object_new(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); DerObjectIdentifier__ctor_m8009342D7B2AD40B1E19E6AB958141979B7405CD(L_7, _stringLiteralEA2AC7DA2122607235D3D7EB8F5258E77B26CA40, /*hidden argument*/NULL); ((X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_StaticFields*)il2cpp_codegen_static_fields_for(X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_il2cpp_TypeInfo_var))->set_id_at_name_8(L_7); // public static readonly DerObjectIdentifier id_at_organizationIdentifier = new DerObjectIdentifier("2.5.4.97"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_8 = (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *)il2cpp_codegen_object_new(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); DerObjectIdentifier__ctor_m8009342D7B2AD40B1E19E6AB958141979B7405CD(L_8, _stringLiteral33D56CA2E52DFDEF4F56463A9109D8276C56E4C3, /*hidden argument*/NULL); ((X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_StaticFields*)il2cpp_codegen_static_fields_for(X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_il2cpp_TypeInfo_var))->set_id_at_organizationIdentifier_9(L_8); // public static readonly DerObjectIdentifier IdSha1 = new DerObjectIdentifier("1.3.14.3.2.26"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_9 = (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *)il2cpp_codegen_object_new(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); DerObjectIdentifier__ctor_m8009342D7B2AD40B1E19E6AB958141979B7405CD(L_9, _stringLiteralB16364632FFDA7CF8AB0EF198C603812CB7ECD94, /*hidden argument*/NULL); ((X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_StaticFields*)il2cpp_codegen_static_fields_for(X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_il2cpp_TypeInfo_var))->set_IdSha1_10(L_9); // public static readonly DerObjectIdentifier RipeMD160 = new DerObjectIdentifier("1.3.36.3.2.1"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_10 = (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *)il2cpp_codegen_object_new(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); DerObjectIdentifier__ctor_m8009342D7B2AD40B1E19E6AB958141979B7405CD(L_10, _stringLiteral384A972663A88A3CA636D7163BDC69F3C18E9CE5, /*hidden argument*/NULL); ((X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_StaticFields*)il2cpp_codegen_static_fields_for(X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_il2cpp_TypeInfo_var))->set_RipeMD160_11(L_10); // public static readonly DerObjectIdentifier RipeMD160WithRsaEncryption = new DerObjectIdentifier("1.3.36.3.3.1.2"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_11 = (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *)il2cpp_codegen_object_new(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); DerObjectIdentifier__ctor_m8009342D7B2AD40B1E19E6AB958141979B7405CD(L_11, _stringLiteral00FAA6DAACAA311CCE49C5E1E1204A7130351314, /*hidden argument*/NULL); ((X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_StaticFields*)il2cpp_codegen_static_fields_for(X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_il2cpp_TypeInfo_var))->set_RipeMD160WithRsaEncryption_12(L_11); // public static readonly DerObjectIdentifier IdEARsa = new DerObjectIdentifier("2.5.8.1.1"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_12 = (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *)il2cpp_codegen_object_new(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); DerObjectIdentifier__ctor_m8009342D7B2AD40B1E19E6AB958141979B7405CD(L_12, _stringLiteral21BD368232F41BC4D3E2E1F13FAA13953FE83DFA, /*hidden argument*/NULL); ((X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_StaticFields*)il2cpp_codegen_static_fields_for(X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_il2cpp_TypeInfo_var))->set_IdEARsa_13(L_12); // public static readonly DerObjectIdentifier IdPkix = new DerObjectIdentifier("1.3.6.1.5.5.7"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_13 = (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *)il2cpp_codegen_object_new(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); DerObjectIdentifier__ctor_m8009342D7B2AD40B1E19E6AB958141979B7405CD(L_13, _stringLiteralFD3355E430CC5655482B6C8F085EF64D205724FB, /*hidden argument*/NULL); ((X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_StaticFields*)il2cpp_codegen_static_fields_for(X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_il2cpp_TypeInfo_var))->set_IdPkix_14(L_13); // public static readonly DerObjectIdentifier IdPE = new DerObjectIdentifier(IdPkix + ".1"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_14 = ((X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_StaticFields*)il2cpp_codegen_static_fields_for(X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_il2cpp_TypeInfo_var))->get_IdPkix_14(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_15 = L_14; G_B1_0 = L_15; if (L_15) { G_B2_0 = L_15; goto IL_00de; } } { G_B3_0 = ((String_t*)(NULL)); goto IL_00e3; } IL_00de: { NullCheck(G_B2_0); String_t* L_16; L_16 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, G_B2_0); G_B3_0 = L_16; } IL_00e3: { String_t* L_17; L_17 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(G_B3_0, _stringLiteral2EC56193C8195EAD5B8542B13E1FCC9CF4DB3C08, /*hidden argument*/NULL); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_18 = (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *)il2cpp_codegen_object_new(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); DerObjectIdentifier__ctor_m8009342D7B2AD40B1E19E6AB958141979B7405CD(L_18, L_17, /*hidden argument*/NULL); ((X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_StaticFields*)il2cpp_codegen_static_fields_for(X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_il2cpp_TypeInfo_var))->set_IdPE_15(L_18); // public static readonly DerObjectIdentifier IdAD = new DerObjectIdentifier(IdPkix + ".48"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_19 = ((X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_StaticFields*)il2cpp_codegen_static_fields_for(X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_il2cpp_TypeInfo_var))->get_IdPkix_14(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_20 = L_19; G_B4_0 = L_20; if (L_20) { G_B5_0 = L_20; goto IL_0103; } } { G_B6_0 = ((String_t*)(NULL)); goto IL_0108; } IL_0103: { NullCheck(G_B5_0); String_t* L_21; L_21 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, G_B5_0); G_B6_0 = L_21; } IL_0108: { String_t* L_22; L_22 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(G_B6_0, _stringLiteral8105936FACB0C09C42FA2DF27F04F13536597A7F, /*hidden argument*/NULL); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_23 = (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *)il2cpp_codegen_object_new(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); DerObjectIdentifier__ctor_m8009342D7B2AD40B1E19E6AB958141979B7405CD(L_23, L_22, /*hidden argument*/NULL); ((X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_StaticFields*)il2cpp_codegen_static_fields_for(X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_il2cpp_TypeInfo_var))->set_IdAD_16(L_23); // public static readonly DerObjectIdentifier IdADCAIssuers = new DerObjectIdentifier(IdAD + ".2"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_24 = ((X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_StaticFields*)il2cpp_codegen_static_fields_for(X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_il2cpp_TypeInfo_var))->get_IdAD_16(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_25 = L_24; G_B7_0 = L_25; if (L_25) { G_B8_0 = L_25; goto IL_0128; } } { G_B9_0 = ((String_t*)(NULL)); goto IL_012d; } IL_0128: { NullCheck(G_B8_0); String_t* L_26; L_26 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, G_B8_0); G_B9_0 = L_26; } IL_012d: { String_t* L_27; L_27 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(G_B9_0, _stringLiteralC4BDA98415573B97838847CF1A6949BA9FCC789E, /*hidden argument*/NULL); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_28 = (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *)il2cpp_codegen_object_new(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); DerObjectIdentifier__ctor_m8009342D7B2AD40B1E19E6AB958141979B7405CD(L_28, L_27, /*hidden argument*/NULL); ((X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_StaticFields*)il2cpp_codegen_static_fields_for(X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_il2cpp_TypeInfo_var))->set_IdADCAIssuers_17(L_28); // public static readonly DerObjectIdentifier IdADOcsp = new DerObjectIdentifier(IdAD + ".1"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_29 = ((X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_StaticFields*)il2cpp_codegen_static_fields_for(X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_il2cpp_TypeInfo_var))->get_IdAD_16(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_30 = L_29; G_B10_0 = L_30; if (L_30) { G_B11_0 = L_30; goto IL_014d; } } { G_B12_0 = ((String_t*)(NULL)); goto IL_0152; } IL_014d: { NullCheck(G_B11_0); String_t* L_31; L_31 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, G_B11_0); G_B12_0 = L_31; } IL_0152: { String_t* L_32; L_32 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(G_B12_0, _stringLiteral2EC56193C8195EAD5B8542B13E1FCC9CF4DB3C08, /*hidden argument*/NULL); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_33 = (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *)il2cpp_codegen_object_new(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); DerObjectIdentifier__ctor_m8009342D7B2AD40B1E19E6AB958141979B7405CD(L_33, L_32, /*hidden argument*/NULL); ((X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_StaticFields*)il2cpp_codegen_static_fields_for(X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_il2cpp_TypeInfo_var))->set_IdADOcsp_18(L_33); // public static readonly DerObjectIdentifier OcspAccessMethod = IdADOcsp; DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_34 = ((X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_StaticFields*)il2cpp_codegen_static_fields_for(X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_il2cpp_TypeInfo_var))->get_IdADOcsp_18(); ((X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_StaticFields*)il2cpp_codegen_static_fields_for(X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_il2cpp_TypeInfo_var))->set_OcspAccessMethod_19(L_34); // public static readonly DerObjectIdentifier CrlAccessMethod = IdADCAIssuers; DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_35 = ((X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_StaticFields*)il2cpp_codegen_static_fields_for(X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_il2cpp_TypeInfo_var))->get_IdADCAIssuers_17(); ((X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_StaticFields*)il2cpp_codegen_static_fields_for(X509ObjectIdentifiers_t8A3E8CAA85BE8F2C985E2FC172DB832859F34543_il2cpp_TypeInfo_var))->set_CrlAccessMethod_20(L_35); 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 BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509SignatureUtilities::SetSignatureParameters(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ISigner,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509SignatureUtilities_SetSignatureParameters_m356A9990E18D8CC0634F94D31D0E964A80D0AA3E (RuntimeObject* ___signature0, Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * ___parameters1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509SignatureUtilities_t8501EA8FD0BAA2A5981CC285626A3BBA6990A9D9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (parameters != null && !derNull.Equals(parameters)) Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_0 = ___parameters1; if (!L_0) { goto IL_000f; } } { IL2CPP_RUNTIME_CLASS_INIT(X509SignatureUtilities_t8501EA8FD0BAA2A5981CC285626A3BBA6990A9D9_il2cpp_TypeInfo_var); Asn1Null_t5D40C5C3674510061A0C219CEB9849A5EF6492BC * L_1 = ((X509SignatureUtilities_t8501EA8FD0BAA2A5981CC285626A3BBA6990A9D9_StaticFields*)il2cpp_codegen_static_fields_for(X509SignatureUtilities_t8501EA8FD0BAA2A5981CC285626A3BBA6990A9D9_il2cpp_TypeInfo_var))->get_derNull_0(); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_2 = ___parameters1; NullCheck(L_1); bool L_3; L_3 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_1, L_2); } IL_000f: { // } return; } } // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509SignatureUtilities::GetSignatureName(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* X509SignatureUtilities_GetSignatureName_m83590AE276AD6D1C3351C5AA728013E27E352795 (AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___sigAlgId0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509SignatureUtilities_t8501EA8FD0BAA2A5981CC285626A3BBA6990A9D9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral25F76CC1BDA61C71DE0DB52A74E1709B018BD814); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8F14545E96A97CA6E4BB71607070728BAD81EE42); s_Il2CppMethodInitialized = true; } Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * V_0 = NULL; { // Asn1Encodable parameters = sigAlgId.Parameters; AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_0 = ___sigAlgId0; NullCheck(L_0); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_1; L_1 = VirtualFuncInvoker0< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * >::Invoke(8 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier::get_Parameters() */, L_0); V_0 = L_1; // if (parameters != null && !derNull.Equals(parameters)) Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_2 = V_0; if (!L_2) { goto IL_007c; } } { IL2CPP_RUNTIME_CLASS_INIT(X509SignatureUtilities_t8501EA8FD0BAA2A5981CC285626A3BBA6990A9D9_il2cpp_TypeInfo_var); Asn1Null_t5D40C5C3674510061A0C219CEB9849A5EF6492BC * L_3 = ((X509SignatureUtilities_t8501EA8FD0BAA2A5981CC285626A3BBA6990A9D9_StaticFields*)il2cpp_codegen_static_fields_for(X509SignatureUtilities_t8501EA8FD0BAA2A5981CC285626A3BBA6990A9D9_il2cpp_TypeInfo_var))->get_derNull_0(); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_4 = V_0; NullCheck(L_3); bool L_5; L_5 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_3, L_4); if (L_5) { goto IL_007c; } } { // if (sigAlgId.Algorithm.Equals(PkcsObjectIdentifiers.IdRsassaPss)) AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_6 = ___sigAlgId0; NullCheck(L_6); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_7; L_7 = VirtualFuncInvoker0< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * >::Invoke(6 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier::get_Algorithm() */, L_6); IL2CPP_RUNTIME_CLASS_INIT(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_8 = ((PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields*)il2cpp_codegen_static_fields_for(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var))->get_IdRsassaPss_11(); NullCheck(L_7); bool L_9; L_9 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_7, L_8); if (!L_9) { goto IL_0049; } } { // RsassaPssParameters rsaParams = RsassaPssParameters.GetInstance(parameters); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_10 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69_il2cpp_TypeInfo_var); RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69 * L_11; L_11 = RsassaPssParameters_GetInstance_mC4FCD2C40DFF8D0F69DDCCC32621F9A370CE3CBE(L_10, /*hidden argument*/NULL); // return GetDigestAlgName(rsaParams.HashAlgorithm.Algorithm) + "withRSAandMGF1"; NullCheck(L_11); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_12; L_12 = RsassaPssParameters_get_HashAlgorithm_mE761E1603909D87FF6B83B1BDE6366BF8F96FEA1_inline(L_11, /*hidden argument*/NULL); NullCheck(L_12); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_13; L_13 = VirtualFuncInvoker0< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * >::Invoke(6 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier::get_Algorithm() */, L_12); IL2CPP_RUNTIME_CLASS_INIT(X509SignatureUtilities_t8501EA8FD0BAA2A5981CC285626A3BBA6990A9D9_il2cpp_TypeInfo_var); String_t* L_14; L_14 = X509SignatureUtilities_GetDigestAlgName_mBF4A6706A2FEE442128F232C495F5F47587B1D64(L_13, /*hidden argument*/NULL); String_t* L_15; L_15 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(L_14, _stringLiteral8F14545E96A97CA6E4BB71607070728BAD81EE42, /*hidden argument*/NULL); return L_15; } IL_0049: { // if (sigAlgId.Algorithm.Equals(X9ObjectIdentifiers.ECDsaWithSha2)) AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_16 = ___sigAlgId0; NullCheck(L_16); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_17; L_17 = VirtualFuncInvoker0< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * >::Invoke(6 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier::get_Algorithm() */, L_16); IL2CPP_RUNTIME_CLASS_INIT(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_18 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_ECDsaWithSha2_14(); NullCheck(L_17); bool L_19; L_19 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_17, L_18); if (!L_19) { goto IL_007c; } } { // Asn1Sequence ecDsaParams = Asn1Sequence.GetInstance(parameters); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_20 = V_0; Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_21; L_21 = Asn1Sequence_GetInstance_m53E4D5619D84F02123D6C3B6EA8E0EEEF86B244C(L_20, /*hidden argument*/NULL); // return GetDigestAlgName((DerObjectIdentifier)ecDsaParams[0]) + "withECDSA"; NullCheck(L_21); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_22; L_22 = VirtualFuncInvoker1< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *, int32_t >::Invoke(12 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Item(System.Int32) */, L_21, 0); IL2CPP_RUNTIME_CLASS_INIT(X509SignatureUtilities_t8501EA8FD0BAA2A5981CC285626A3BBA6990A9D9_il2cpp_TypeInfo_var); String_t* L_23; L_23 = X509SignatureUtilities_GetDigestAlgName_mBF4A6706A2FEE442128F232C495F5F47587B1D64(((DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *)CastclassClass((RuntimeObject*)L_22, DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); String_t* L_24; L_24 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(L_23, _stringLiteral25F76CC1BDA61C71DE0DB52A74E1709B018BD814, /*hidden argument*/NULL); return L_24; } IL_007c: { // return sigAlgId.Algorithm.Id; AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_25 = ___sigAlgId0; NullCheck(L_25); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_26; L_26 = VirtualFuncInvoker0< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * >::Invoke(6 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier::get_Algorithm() */, L_25); NullCheck(L_26); String_t* L_27; L_27 = DerObjectIdentifier_get_Id_m1A4618B1F7ED8630EDC76DF95D8C7086F1E616D6_inline(L_26, /*hidden argument*/NULL); return L_27; } } // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509SignatureUtilities::GetDigestAlgName(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* X509SignatureUtilities_GetDigestAlgName_mBF4A6706A2FEE442128F232C495F5F47587B1D64 (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___digestAlgOID0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OiwObjectIdentifiers_tACD1AAAAC365CD86B5E7F0DE22B66469A4A93CED_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral12C0D00507D5556F04E6640916CA4AAF502616A1); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral158B6A1BFB4007A30B92DF912CBC29F2328168DD); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral52BDFA54A164366A4CCA7F4E8E9D4CC3289B914B); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral929005093FDAFAC5D770520C4CC44C5F7EEF5E0E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA6DBDE4DFCE47C72AFA52C1981772A8DD7EFD2C8); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCE0379382C2810C1AED5C5B0021E7B8221741E17); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDD9C7849851C546319ED5DCC821A7B730DE8FF73); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEB7CCC8642D7B5521BC4E7440146281DA06EFDDF); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEBFEA42051B997E17C9814A7196FFB19014A1B51); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF4B67B27E4DD10700B0726FC3E0A89E2CDBB84C8); s_Il2CppMethodInitialized = true; } { // if (PkcsObjectIdentifiers.MD5.Equals(digestAlgOID)) IL2CPP_RUNTIME_CLASS_INIT(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_0 = ((PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields*)il2cpp_codegen_static_fields_for(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var))->get_MD5_35(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_1 = ___digestAlgOID0; NullCheck(L_0); bool L_2; L_2 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_0, L_1); if (!L_2) { goto IL_0013; } } { // return "MD5"; return _stringLiteralCE0379382C2810C1AED5C5B0021E7B8221741E17; } IL_0013: { // else if (OiwObjectIdentifiers.IdSha1.Equals(digestAlgOID)) IL2CPP_RUNTIME_CLASS_INIT(OiwObjectIdentifiers_tACD1AAAAC365CD86B5E7F0DE22B66469A4A93CED_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_3 = ((OiwObjectIdentifiers_tACD1AAAAC365CD86B5E7F0DE22B66469A4A93CED_StaticFields*)il2cpp_codegen_static_fields_for(OiwObjectIdentifiers_tACD1AAAAC365CD86B5E7F0DE22B66469A4A93CED_il2cpp_TypeInfo_var))->get_IdSha1_8(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_4 = ___digestAlgOID0; NullCheck(L_3); bool L_5; L_5 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_3, L_4); if (!L_5) { goto IL_0026; } } { // return "SHA1"; return _stringLiteral52BDFA54A164366A4CCA7F4E8E9D4CC3289B914B; } IL_0026: { // else if (NistObjectIdentifiers.IdSha224.Equals(digestAlgOID)) IL2CPP_RUNTIME_CLASS_INIT(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_6 = ((NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields*)il2cpp_codegen_static_fields_for(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var))->get_IdSha224_5(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_7 = ___digestAlgOID0; NullCheck(L_6); bool L_8; L_8 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_6, L_7); if (!L_8) { goto IL_0039; } } { // return "SHA224"; return _stringLiteralEBFEA42051B997E17C9814A7196FFB19014A1B51; } IL_0039: { // else if (NistObjectIdentifiers.IdSha256.Equals(digestAlgOID)) IL2CPP_RUNTIME_CLASS_INIT(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_9 = ((NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields*)il2cpp_codegen_static_fields_for(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var))->get_IdSha256_2(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_10 = ___digestAlgOID0; NullCheck(L_9); bool L_11; L_11 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_9, L_10); if (!L_11) { goto IL_004c; } } { // return "SHA256"; return _stringLiteral158B6A1BFB4007A30B92DF912CBC29F2328168DD; } IL_004c: { // else if (NistObjectIdentifiers.IdSha384.Equals(digestAlgOID)) IL2CPP_RUNTIME_CLASS_INIT(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_12 = ((NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields*)il2cpp_codegen_static_fields_for(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var))->get_IdSha384_3(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_13 = ___digestAlgOID0; NullCheck(L_12); bool L_14; L_14 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_12, L_13); if (!L_14) { goto IL_005f; } } { // return "SHA384"; return _stringLiteral12C0D00507D5556F04E6640916CA4AAF502616A1; } IL_005f: { // else if (NistObjectIdentifiers.IdSha512.Equals(digestAlgOID)) IL2CPP_RUNTIME_CLASS_INIT(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_15 = ((NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields*)il2cpp_codegen_static_fields_for(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var))->get_IdSha512_4(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_16 = ___digestAlgOID0; NullCheck(L_15); bool L_17; L_17 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_15, L_16); if (!L_17) { goto IL_0072; } } { // return "SHA512"; return _stringLiteralDD9C7849851C546319ED5DCC821A7B730DE8FF73; } IL_0072: { // else if (TeleTrusTObjectIdentifiers.RipeMD128.Equals(digestAlgOID)) IL2CPP_RUNTIME_CLASS_INIT(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_18 = ((TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields*)il2cpp_codegen_static_fields_for(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_il2cpp_TypeInfo_var))->get_RipeMD128_2(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_19 = ___digestAlgOID0; NullCheck(L_18); bool L_20; L_20 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_18, L_19); if (!L_20) { goto IL_0085; } } { // return "RIPEMD128"; return _stringLiteralEB7CCC8642D7B5521BC4E7440146281DA06EFDDF; } IL_0085: { // else if (TeleTrusTObjectIdentifiers.RipeMD160.Equals(digestAlgOID)) IL2CPP_RUNTIME_CLASS_INIT(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_21 = ((TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields*)il2cpp_codegen_static_fields_for(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_il2cpp_TypeInfo_var))->get_RipeMD160_1(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_22 = ___digestAlgOID0; NullCheck(L_21); bool L_23; L_23 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_21, L_22); if (!L_23) { goto IL_0098; } } { // return "RIPEMD160"; return _stringLiteralF4B67B27E4DD10700B0726FC3E0A89E2CDBB84C8; } IL_0098: { // else if (TeleTrusTObjectIdentifiers.RipeMD256.Equals(digestAlgOID)) IL2CPP_RUNTIME_CLASS_INIT(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_24 = ((TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields*)il2cpp_codegen_static_fields_for(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_il2cpp_TypeInfo_var))->get_RipeMD256_3(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_25 = ___digestAlgOID0; NullCheck(L_24); bool L_26; L_26 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_24, L_25); if (!L_26) { goto IL_00ab; } } { // return "RIPEMD256"; return _stringLiteralA6DBDE4DFCE47C72AFA52C1981772A8DD7EFD2C8; } IL_00ab: { // else if (CryptoProObjectIdentifiers.GostR3411.Equals(digestAlgOID)) IL2CPP_RUNTIME_CLASS_INIT(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_27 = ((CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields*)il2cpp_codegen_static_fields_for(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_il2cpp_TypeInfo_var))->get_GostR3411_1(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_28 = ___digestAlgOID0; NullCheck(L_27); bool L_29; L_29 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_27, L_28); if (!L_29) { goto IL_00be; } } { // return "GOST3411"; return _stringLiteral929005093FDAFAC5D770520C4CC44C5F7EEF5E0E; } IL_00be: { // return digestAlgOID.Id; DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_30 = ___digestAlgOID0; NullCheck(L_30); String_t* L_31; L_31 = DerObjectIdentifier_get_Id_m1A4618B1F7ED8630EDC76DF95D8C7086F1E616D6_inline(L_30, /*hidden argument*/NULL); return L_31; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509SignatureUtilities::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509SignatureUtilities__ctor_m353810726DA1B8D308F7F0A645F79D18355BCAFD (X509SignatureUtilities_t8501EA8FD0BAA2A5981CC285626A3BBA6990A9D9 * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509SignatureUtilities::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509SignatureUtilities__cctor_m020D39268FBC19741D11757E827C8F44AC2E19A4 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerNull_t020168AF07318033108544C00C803CD7AEB97239_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509SignatureUtilities_t8501EA8FD0BAA2A5981CC285626A3BBA6990A9D9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // private static readonly Asn1Null derNull = DerNull.Instance; IL2CPP_RUNTIME_CLASS_INIT(DerNull_t020168AF07318033108544C00C803CD7AEB97239_il2cpp_TypeInfo_var); DerNull_t020168AF07318033108544C00C803CD7AEB97239 * L_0 = ((DerNull_t020168AF07318033108544C00C803CD7AEB97239_StaticFields*)il2cpp_codegen_static_fields_for(DerNull_t020168AF07318033108544C00C803CD7AEB97239_il2cpp_TypeInfo_var))->get_Instance_2(); ((X509SignatureUtilities_t8501EA8FD0BAA2A5981CC285626A3BBA6990A9D9_StaticFields*)il2cpp_codegen_static_fields_for(X509SignatureUtilities_t8501EA8FD0BAA2A5981CC285626A3BBA6990A9D9_il2cpp_TypeInfo_var))->set_derNull_0(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.Store.X509StoreException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509StoreException__ctor_mCD8AA99A9AF0A4A1FD39DB1A0F6AEBB39006DFC4 (X509StoreException_tF3E73915BE44B8D996C94BA493CF61D30ADA2685 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public X509StoreException() IL2CPP_RUNTIME_CLASS_INIT(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_m0E9BEC861F6DBED197960E5BA23149543B1D7F5B(__this, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.Store.X509StoreException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509StoreException__ctor_m5232B766B1F7BF92514997C4DD6B8CB5E08C6C07 (X509StoreException_tF3E73915BE44B8D996C94BA493CF61D30ADA2685 * __this, String_t* ___message0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // : base(message) String_t* L_0 = ___message0; IL2CPP_RUNTIME_CLASS_INIT(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_m8ECDE8ACA7F2E0EF1144BD1200FB5DB2870B5F11(__this, L_0, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.Store.X509StoreException::.ctor(System.String,System.Exception) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509StoreException__ctor_m5C79339DA9BF0AA124CA6148620587AC2CE4A3D8 (X509StoreException_tF3E73915BE44B8D996C94BA493CF61D30ADA2685 * __this, String_t* ___message0, Exception_t * ___e1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // : base(message, e) String_t* L_0 = ___message0; Exception_t * L_1 = ___e1; IL2CPP_RUNTIME_CLASS_INIT(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_mB842BA6E644CDB9DB058F5628BB90DF5EF22C080(__this, L_0, L_1, /*hidden argument*/NULL); // } return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.Store.X509StoreFactory::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509StoreFactory__ctor_m37A6C7A63CE9D983C92E8AD444DEC6DCD9899E0C (X509StoreFactory_t60AFFB876F20A291ED4E862C50E10128DBFA623B * __this, const RuntimeMethod* method) { { // private X509StoreFactory() Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); // } return; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.Store.IX509Store BestHTTP.SecureProtocol.Org.BouncyCastle.X509.Store.X509StoreFactory::Create(System.String,BestHTTP.SecureProtocol.Org.BouncyCastle.X509.Store.IX509StoreParameters) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* X509StoreFactory_Create_mBD3629E3DC37D3D32E06EB1150959A0F919BF61E (String_t* ___type0, RuntimeObject* ___parameters1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IX509AttributeCertificate_t96382508C6487F5655E190C16E2BCB3486645DA8_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509CertificatePair_t51FFCB1B7D2FF7CAD86D43DDD7EEA4046829F740_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509CollectionStoreParameters_t9AC6D285ADBA3F814F6985940388A9C944D26401_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509CollectionStore_tC725C67FA9A701B4A60D34656D36A0A5FBCC6805_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509Crl_t963C99FFAA5E9B3E8AE0BBB6F74D45D52C7BBB04_0_0_0_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3F1E5CF03BB694C1C8D1FAE67ACD616AD2BE797B); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral47F2472FC8067EADBDD3CD365DB6E481560AF525); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4DA20454916FD4039FFF735897793CB2DFE7C17C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEB2CD4C6704ED17A9EC3675F0D53B6B9EC56DDAE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFD5E58EEEF235AFAE0D9C83C2E44CBC004FEC32F); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; String_t* V_1 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B4_0 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B3_0 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B6_0 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B5_0 = NULL; { // if (type == null) String_t* L_0 = ___type0; if (L_0) { goto IL_000e; } } { // throw new ArgumentNullException("type"); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X509StoreFactory_Create_mBD3629E3DC37D3D32E06EB1150959A0F919BF61E_RuntimeMethod_var))); } IL_000e: { // string[] parts = BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.ToUpperInvariant(type).Split('/'); String_t* L_2 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var); String_t* L_3; L_3 = Platform_ToUpperInvariant_m306E35263EC9F3B4FE0722C3173BAAFDB1B3E158(L_2, /*hidden argument*/NULL); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_4 = (CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)SZArrayNew(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var, (uint32_t)1); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_5 = L_4; NullCheck(L_5); (L_5)->SetAt(static_cast(0), (Il2CppChar)((int32_t)47)); NullCheck(L_3); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_6; L_6 = String_Split_m2C74DC2B85B322998094BEDE787C378822E1F28B(L_3, L_5, /*hidden argument*/NULL); // if (parts.Length < 2) StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_7 = L_6; NullCheck(L_7); G_B3_0 = L_7; if ((((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length)))) >= ((int32_t)2))) { G_B4_0 = L_7; goto IL_0035; } } { // throw new ArgumentException("type"); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_8 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_8, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X509StoreFactory_Create_mBD3629E3DC37D3D32E06EB1150959A0F919BF61E_RuntimeMethod_var))); } IL_0035: { // if (parts[1] != "COLLECTION") StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_9 = G_B4_0; NullCheck(L_9); int32_t L_10 = 1; String_t* L_11 = (L_9)->GetAt(static_cast(L_10)); bool L_12; L_12 = String_op_Inequality_mDDA2DDED3E7EF042987EB7180EE3E88105F0AAE2(L_11, _stringLiteral3F1E5CF03BB694C1C8D1FAE67ACD616AD2BE797B, /*hidden argument*/NULL); G_B5_0 = L_9; if (!L_12) { G_B6_0 = L_9; goto IL_005a; } } { // throw new NoSuchStoreException("X.509 store type '" + type + "' not available."); String_t* L_13 = ___type0; String_t* L_14; L_14 = String_Concat_m89EAB4C6A96B0E5C3F87300D6BE78D386B9EFC44(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCDE54580457F1FCD2C1F67F9B80DFBBC50998E45)), L_13, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral927FDCD38E0B54E4CCEC1872B0DBF66B00C9F062)), /*hidden argument*/NULL); NoSuchStoreException_tD96393D1B68A67672A0B5A0D0C44305698C04176 * L_15 = (NoSuchStoreException_tD96393D1B68A67672A0B5A0D0C44305698C04176 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NoSuchStoreException_tD96393D1B68A67672A0B5A0D0C44305698C04176_il2cpp_TypeInfo_var))); NoSuchStoreException__ctor_m0AEABA9A9FA79A0F879B939DA4E10ADE432DABB3(L_15, L_14, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X509StoreFactory_Create_mBD3629E3DC37D3D32E06EB1150959A0F919BF61E_RuntimeMethod_var))); } IL_005a: { // X509CollectionStoreParameters p = (X509CollectionStoreParameters) parameters; RuntimeObject* L_16 = ___parameters1; // ICollection coll = p.GetCollection(); NullCheck(((X509CollectionStoreParameters_t9AC6D285ADBA3F814F6985940388A9C944D26401 *)CastclassClass((RuntimeObject*)L_16, X509CollectionStoreParameters_t9AC6D285ADBA3F814F6985940388A9C944D26401_il2cpp_TypeInfo_var))); RuntimeObject* L_17; L_17 = X509CollectionStoreParameters_GetCollection_mEA02C1A2296C96E670228F9BD54B5DFC31594285(((X509CollectionStoreParameters_t9AC6D285ADBA3F814F6985940388A9C944D26401 *)CastclassClass((RuntimeObject*)L_16, X509CollectionStoreParameters_t9AC6D285ADBA3F814F6985940388A9C944D26401_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); V_0 = L_17; // switch (parts[0]) NullCheck(G_B6_0); int32_t L_18 = 0; String_t* L_19 = (G_B6_0)->GetAt(static_cast(L_18)); V_1 = L_19; String_t* L_20 = V_1; if (!L_20) { goto IL_00ea; } } { String_t* L_21 = V_1; bool L_22; L_22 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_21, _stringLiteral47F2472FC8067EADBDD3CD365DB6E481560AF525, /*hidden argument*/NULL); if (L_22) { goto IL_00a2; } } { String_t* L_23 = V_1; bool L_24; L_24 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_23, _stringLiteralEB2CD4C6704ED17A9EC3675F0D53B6B9EC56DDAE, /*hidden argument*/NULL); if (L_24) { goto IL_00b4; } } { String_t* L_25 = V_1; bool L_26; L_26 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_25, _stringLiteralFD5E58EEEF235AFAE0D9C83C2E44CBC004FEC32F, /*hidden argument*/NULL); if (L_26) { goto IL_00c6; } } { String_t* L_27 = V_1; bool L_28; L_28 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_27, _stringLiteral4DA20454916FD4039FFF735897793CB2DFE7C17C, /*hidden argument*/NULL); if (L_28) { goto IL_00d8; } } { goto IL_00ea; } IL_00a2: { // checkCorrectType(coll, typeof(IX509AttributeCertificate)); RuntimeObject* L_29 = V_0; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_30 = { reinterpret_cast (IX509AttributeCertificate_t96382508C6487F5655E190C16E2BCB3486645DA8_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_31; L_31 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_30, /*hidden argument*/NULL); X509StoreFactory_checkCorrectType_m4935FA509806DB1C3E7D7FB305FC3C3E7597253D(L_29, L_31, /*hidden argument*/NULL); // break; goto IL_0100; } IL_00b4: { // checkCorrectType(coll, typeof(X509Certificate)); RuntimeObject* L_32 = V_0; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_33 = { reinterpret_cast (X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_34; L_34 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_33, /*hidden argument*/NULL); X509StoreFactory_checkCorrectType_m4935FA509806DB1C3E7D7FB305FC3C3E7597253D(L_32, L_34, /*hidden argument*/NULL); // break; goto IL_0100; } IL_00c6: { // checkCorrectType(coll, typeof(X509CertificatePair)); RuntimeObject* L_35 = V_0; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_36 = { reinterpret_cast (X509CertificatePair_t51FFCB1B7D2FF7CAD86D43DDD7EEA4046829F740_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_37; L_37 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_36, /*hidden argument*/NULL); X509StoreFactory_checkCorrectType_m4935FA509806DB1C3E7D7FB305FC3C3E7597253D(L_35, L_37, /*hidden argument*/NULL); // break; goto IL_0100; } IL_00d8: { // checkCorrectType(coll, typeof(X509Crl)); RuntimeObject* L_38 = V_0; RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_39 = { reinterpret_cast (X509Crl_t963C99FFAA5E9B3E8AE0BBB6F74D45D52C7BBB04_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_40; L_40 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_39, /*hidden argument*/NULL); X509StoreFactory_checkCorrectType_m4935FA509806DB1C3E7D7FB305FC3C3E7597253D(L_38, L_40, /*hidden argument*/NULL); // break; goto IL_0100; } IL_00ea: { // throw new NoSuchStoreException("X.509 store type '" + type + "' not available."); String_t* L_41 = ___type0; String_t* L_42; L_42 = String_Concat_m89EAB4C6A96B0E5C3F87300D6BE78D386B9EFC44(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCDE54580457F1FCD2C1F67F9B80DFBBC50998E45)), L_41, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral927FDCD38E0B54E4CCEC1872B0DBF66B00C9F062)), /*hidden argument*/NULL); NoSuchStoreException_tD96393D1B68A67672A0B5A0D0C44305698C04176 * L_43 = (NoSuchStoreException_tD96393D1B68A67672A0B5A0D0C44305698C04176 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NoSuchStoreException_tD96393D1B68A67672A0B5A0D0C44305698C04176_il2cpp_TypeInfo_var))); NoSuchStoreException__ctor_m0AEABA9A9FA79A0F879B939DA4E10ADE432DABB3(L_43, L_42, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_43, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X509StoreFactory_Create_mBD3629E3DC37D3D32E06EB1150959A0F919BF61E_RuntimeMethod_var))); } IL_0100: { // return new X509CollectionStore(coll); RuntimeObject* L_44 = V_0; X509CollectionStore_tC725C67FA9A701B4A60D34656D36A0A5FBCC6805 * L_45 = (X509CollectionStore_tC725C67FA9A701B4A60D34656D36A0A5FBCC6805 *)il2cpp_codegen_object_new(X509CollectionStore_tC725C67FA9A701B4A60D34656D36A0A5FBCC6805_il2cpp_TypeInfo_var); X509CollectionStore__ctor_mB9B2F0FBE21DB809E09CF052C093DA1A654465FE(L_45, L_44, /*hidden argument*/NULL); return L_45; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.Store.X509StoreFactory::checkCorrectType(System.Collections.ICollection,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509StoreFactory_checkCorrectType_m4935FA509806DB1C3E7D7FB305FC3C3E7597253D (RuntimeObject* ___coll0, Type_t * ___t1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t47A618747A1BB2A868710316F7372094849163A2_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; RuntimeObject * V_1 = NULL; RuntimeObject* V_2 = NULL; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; { // foreach (object o in coll) RuntimeObject* L_0 = ___coll0; NullCheck(L_0); RuntimeObject* L_1; L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t47A618747A1BB2A868710316F7372094849163A2_il2cpp_TypeInfo_var, L_0); V_0 = L_1; } IL_0007: try {// begin try (depth: 1) { goto IL_002f; } IL_0009: { // foreach (object o in coll) RuntimeObject* L_2 = V_0; NullCheck(L_2); RuntimeObject * L_3; L_3 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_2); V_1 = L_3; // if (!t.IsInstanceOfType(o)) Type_t * L_4 = ___t1; RuntimeObject * L_5 = V_1; NullCheck(L_4); bool L_6; L_6 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(120 /* System.Boolean System.Type::IsInstanceOfType(System.Object) */, L_4, L_5); if (L_6) { goto IL_002f; } } IL_0019: { // throw new InvalidCastException("Can't cast object to type: " + t.FullName); Type_t * L_7 = ___t1; NullCheck(L_7); String_t* L_8; L_8 = VirtualFuncInvoker0< String_t* >::Invoke(27 /* System.String System.Type::get_FullName() */, L_7); String_t* L_9; L_9 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEF461B2216DDDC6022B4C65E8E85EFC5C40B1809)), L_8, /*hidden argument*/NULL); InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463 * L_10 = (InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463_il2cpp_TypeInfo_var))); InvalidCastException__ctor_m50103CBF0C211B93BF46697875413A10B5A5C5A3(L_10, L_9, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X509StoreFactory_checkCorrectType_m4935FA509806DB1C3E7D7FB305FC3C3E7597253D_RuntimeMethod_var))); } IL_002f: { // foreach (object o in coll) RuntimeObject* L_11 = V_0; NullCheck(L_11); bool L_12; L_12 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_11); if (L_12) { goto IL_0009; } } IL_0037: { IL2CPP_LEAVE(0x4A, FINALLY_0039); } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0039; } FINALLY_0039: {// begin finally (depth: 1) { RuntimeObject* L_13 = V_0; V_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_13, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var)); RuntimeObject* L_14 = V_2; if (!L_14) { goto IL_0049; } } IL_0043: { RuntimeObject* L_15 = V_2; NullCheck(L_15); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_15); } IL_0049: { IL2CPP_END_FINALLY(57) } }// end finally (depth: 1) IL2CPP_CLEANUP(57) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x4A, IL_004a) } IL_004a: { // } 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 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Operators.X509Utilities::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Utilities__cctor_m44E9BF5F555A1C3E1C5CA04396D091D34D8FB601 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerNull_t020168AF07318033108544C00C803CD7AEB97239_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_t1E14FE66FBB0732BFDA0861868A51969563DF754_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ISet_t5A23607F3EDC64EF08417F0C1A4212EB39469049_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OiwObjectIdentifiers_tACD1AAAAC365CD86B5E7F0DE22B66469A4A93CED_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral08DFED9B56DBA3DB573A6E23566527810FD3F2D4); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0EBFEDCE71CC77070BD35887BBA6B3AC08479560); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral155A4BC12A234318BF135F4542D363DCE33CE8A5); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1FDF3C1B76238A2773D9417DEDEF895091BA1556); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2594D1B685BA6F00D4A64DE944F76318ED32B71E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral26E294139715163FBE9A18930A1D8CF567887641); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral33038386B47A94676767B67BA384962CDFC9EF7C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral33BB5A11405346DBDDE78D1A74DE8913BDA24E15); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral37012E583DD1F1C8F246850642B98606CD18CCCC); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral40202E94CB94F4414051283AC5DD66540DCE9C28); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4351851F76A2B0C936892EAF654EAD35BC2A592A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4408D910CFD8CBB13B1D24EAF91F35D1AA3192E4); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4C8FC0834485EA54FDC1DD8AEC5C3965BE95DFEA); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral532EDB63D38BE849355CC05BBD302AC7006BF005); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5A06357B575D7058D36E87C495E9D91FCD00437A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5C27C08176CCDC624C16868C80507E2DD754531C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5F1A7897AF6D5097460B156B520C63C705855CA1); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6D61A5962793C9EE547ED83C65E277AFBF5D42D7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6E7CBDA006FCC8893A6B1EEE63FAEFCD7045475E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6EB88BB6D8FEDB1AA37407138A21C08BFA38EB34); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral708429802CBDDA081DA338B83F5F3E07D419993A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7BAB6C1AFDE0F5062E870520A697C2B67A8CFC76); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral813661506A5DABD9B15FE77AA73D2864A4E115C6); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral831BFD427B999973389FEBD63A8D4EC7D609AC21); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral83A241C52DAFE0694C5B5B264CF687E09DF793D6); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8BB58B989DAAEFFC9FC49609A564874097684981); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral91418DC5CE55D8F41D97B9EB719D8DA971A0A80D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral95CECB12EF5997654615668E9338F78021E26420); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9C1576AC27CAC8326EA3CDE03CE7A486E12F423A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9C86DC74663ECC1CCD6B393712268E40409B9836); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA7AD513E5696D5979899AAB85472797E009007D2); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB45413D5021961F635D2351C965C6FBA649B7EC9); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB4D001C31FBECAB595B5B52B652E63F27D0364A7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB8922EC46451A10AF98A8BC936A0D7240221208C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB9781714FE806F152E476A132D5187A200851483); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC715ABAB0194B09F559C12418DDEFBF93E0D80C5); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCCAD23ED8EFB047E7DDC3717C32DD95445488797); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCDDE7E78FCC67275355EB8BF4E41C8CC2315DFE7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD0C6D4AFE953D9CE14E2F81B70259C4AB735DF92); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDDB1E5CA18A9EC127B1F85C807C5ED8AC4DC732F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF39378FDB228D1C899BABB186E12163DE48302F5); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF61B6A23CE93B6AFE193ECD7C22723977C0AE9BE); s_Il2CppMethodInitialized = true; } AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * V_0 = NULL; AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * V_1 = NULL; AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * V_2 = NULL; AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * V_3 = NULL; AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * V_4 = NULL; { // private static readonly Asn1Null derNull = DerNull.Instance; IL2CPP_RUNTIME_CLASS_INIT(DerNull_t020168AF07318033108544C00C803CD7AEB97239_il2cpp_TypeInfo_var); DerNull_t020168AF07318033108544C00C803CD7AEB97239 * L_0 = ((DerNull_t020168AF07318033108544C00C803CD7AEB97239_StaticFields*)il2cpp_codegen_static_fields_for(DerNull_t020168AF07318033108544C00C803CD7AEB97239_il2cpp_TypeInfo_var))->get_Instance_2(); ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->set_derNull_0(L_0); // private static readonly IDictionary algorithms = BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.CreateHashtable(); IL2CPP_RUNTIME_CLASS_INIT(Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var); RuntimeObject* L_1; L_1 = Platform_CreateHashtable_mC95944AF156429BA5DCBC1173539FC65A7782B06(/*hidden argument*/NULL); ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->set_algorithms_1(L_1); // private static readonly IDictionary exParams = BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.CreateHashtable(); RuntimeObject* L_2; L_2 = Platform_CreateHashtable_mC95944AF156429BA5DCBC1173539FC65A7782B06(/*hidden argument*/NULL); ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->set_exParams_2(L_2); // private static readonly ISet noParams = new HashSet(); HashSet_t1E14FE66FBB0732BFDA0861868A51969563DF754 * L_3 = (HashSet_t1E14FE66FBB0732BFDA0861868A51969563DF754 *)il2cpp_codegen_object_new(HashSet_t1E14FE66FBB0732BFDA0861868A51969563DF754_il2cpp_TypeInfo_var); HashSet__ctor_m69B31BE760CB1E8513D795698BBD166D60821C5E(L_3, /*hidden argument*/NULL); ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->set_noParams_3(L_3); // algorithms.Add("MD2WITHRSAENCRYPTION", PkcsObjectIdentifiers.MD2WithRsaEncryption); RuntimeObject* L_4 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_algorithms_1(); IL2CPP_RUNTIME_CLASS_INIT(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_5 = ((PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields*)il2cpp_codegen_static_fields_for(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var))->get_MD2WithRsaEncryption_3(); NullCheck(L_4); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_4, _stringLiteral4408D910CFD8CBB13B1D24EAF91F35D1AA3192E4, L_5); // algorithms.Add("MD2WITHRSA", PkcsObjectIdentifiers.MD2WithRsaEncryption); RuntimeObject* L_6 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_algorithms_1(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_7 = ((PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields*)il2cpp_codegen_static_fields_for(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var))->get_MD2WithRsaEncryption_3(); NullCheck(L_6); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_6, _stringLiteral831BFD427B999973389FEBD63A8D4EC7D609AC21, L_7); // algorithms.Add("MD5WITHRSAENCRYPTION", PkcsObjectIdentifiers.MD5WithRsaEncryption); RuntimeObject* L_8 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_algorithms_1(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_9 = ((PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields*)il2cpp_codegen_static_fields_for(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var))->get_MD5WithRsaEncryption_5(); NullCheck(L_8); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_8, _stringLiteral33BB5A11405346DBDDE78D1A74DE8913BDA24E15, L_9); // algorithms.Add("MD5WITHRSA", PkcsObjectIdentifiers.MD5WithRsaEncryption); RuntimeObject* L_10 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_algorithms_1(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_11 = ((PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields*)il2cpp_codegen_static_fields_for(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var))->get_MD5WithRsaEncryption_5(); NullCheck(L_10); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_10, _stringLiteralD0C6D4AFE953D9CE14E2F81B70259C4AB735DF92, L_11); // algorithms.Add("SHA1WITHRSAENCRYPTION", PkcsObjectIdentifiers.Sha1WithRsaEncryption); RuntimeObject* L_12 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_algorithms_1(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_13 = ((PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields*)il2cpp_codegen_static_fields_for(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var))->get_Sha1WithRsaEncryption_6(); NullCheck(L_12); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_12, _stringLiteral5F1A7897AF6D5097460B156B520C63C705855CA1, L_13); // algorithms.Add("SHA1WITHRSA", PkcsObjectIdentifiers.Sha1WithRsaEncryption); RuntimeObject* L_14 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_algorithms_1(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_15 = ((PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields*)il2cpp_codegen_static_fields_for(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var))->get_Sha1WithRsaEncryption_6(); NullCheck(L_14); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_14, _stringLiteral6E7CBDA006FCC8893A6B1EEE63FAEFCD7045475E, L_15); // algorithms.Add("SHA224WITHRSAENCRYPTION", PkcsObjectIdentifiers.Sha224WithRsaEncryption); RuntimeObject* L_16 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_algorithms_1(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_17 = ((PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields*)il2cpp_codegen_static_fields_for(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var))->get_Sha224WithRsaEncryption_15(); NullCheck(L_16); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_16, _stringLiteralF61B6A23CE93B6AFE193ECD7C22723977C0AE9BE, L_17); // algorithms.Add("SHA224WITHRSA", PkcsObjectIdentifiers.Sha224WithRsaEncryption); RuntimeObject* L_18 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_algorithms_1(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_19 = ((PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields*)il2cpp_codegen_static_fields_for(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var))->get_Sha224WithRsaEncryption_15(); NullCheck(L_18); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_18, _stringLiteralCDDE7E78FCC67275355EB8BF4E41C8CC2315DFE7, L_19); // algorithms.Add("SHA256WITHRSAENCRYPTION", PkcsObjectIdentifiers.Sha256WithRsaEncryption); RuntimeObject* L_20 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_algorithms_1(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_21 = ((PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields*)il2cpp_codegen_static_fields_for(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var))->get_Sha256WithRsaEncryption_12(); NullCheck(L_20); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_20, _stringLiteralCCAD23ED8EFB047E7DDC3717C32DD95445488797, L_21); // algorithms.Add("SHA256WITHRSA", PkcsObjectIdentifiers.Sha256WithRsaEncryption); RuntimeObject* L_22 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_algorithms_1(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_23 = ((PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields*)il2cpp_codegen_static_fields_for(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var))->get_Sha256WithRsaEncryption_12(); NullCheck(L_22); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_22, _stringLiteral08DFED9B56DBA3DB573A6E23566527810FD3F2D4, L_23); // algorithms.Add("SHA384WITHRSAENCRYPTION", PkcsObjectIdentifiers.Sha384WithRsaEncryption); RuntimeObject* L_24 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_algorithms_1(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_25 = ((PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields*)il2cpp_codegen_static_fields_for(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var))->get_Sha384WithRsaEncryption_13(); NullCheck(L_24); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_24, _stringLiteral7BAB6C1AFDE0F5062E870520A697C2B67A8CFC76, L_25); // algorithms.Add("SHA384WITHRSA", PkcsObjectIdentifiers.Sha384WithRsaEncryption); RuntimeObject* L_26 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_algorithms_1(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_27 = ((PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields*)il2cpp_codegen_static_fields_for(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var))->get_Sha384WithRsaEncryption_13(); NullCheck(L_26); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_26, _stringLiteralB9781714FE806F152E476A132D5187A200851483, L_27); // algorithms.Add("SHA512WITHRSAENCRYPTION", PkcsObjectIdentifiers.Sha512WithRsaEncryption); RuntimeObject* L_28 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_algorithms_1(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_29 = ((PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields*)il2cpp_codegen_static_fields_for(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var))->get_Sha512WithRsaEncryption_14(); NullCheck(L_28); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_28, _stringLiteral9C86DC74663ECC1CCD6B393712268E40409B9836, L_29); // algorithms.Add("SHA512WITHRSA", PkcsObjectIdentifiers.Sha512WithRsaEncryption); RuntimeObject* L_30 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_algorithms_1(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_31 = ((PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields*)il2cpp_codegen_static_fields_for(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var))->get_Sha512WithRsaEncryption_14(); NullCheck(L_30); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_30, _stringLiteral4C8FC0834485EA54FDC1DD8AEC5C3965BE95DFEA, L_31); // algorithms.Add("SHA1WITHRSAANDMGF1", PkcsObjectIdentifiers.IdRsassaPss); RuntimeObject* L_32 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_algorithms_1(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_33 = ((PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields*)il2cpp_codegen_static_fields_for(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var))->get_IdRsassaPss_11(); NullCheck(L_32); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_32, _stringLiteral0EBFEDCE71CC77070BD35887BBA6B3AC08479560, L_33); // algorithms.Add("SHA224WITHRSAANDMGF1", PkcsObjectIdentifiers.IdRsassaPss); RuntimeObject* L_34 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_algorithms_1(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_35 = ((PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields*)il2cpp_codegen_static_fields_for(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var))->get_IdRsassaPss_11(); NullCheck(L_34); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_34, _stringLiteral155A4BC12A234318BF135F4542D363DCE33CE8A5, L_35); // algorithms.Add("SHA256WITHRSAANDMGF1", PkcsObjectIdentifiers.IdRsassaPss); RuntimeObject* L_36 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_algorithms_1(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_37 = ((PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields*)il2cpp_codegen_static_fields_for(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var))->get_IdRsassaPss_11(); NullCheck(L_36); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_36, _stringLiteralB45413D5021961F635D2351C965C6FBA649B7EC9, L_37); // algorithms.Add("SHA384WITHRSAANDMGF1", PkcsObjectIdentifiers.IdRsassaPss); RuntimeObject* L_38 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_algorithms_1(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_39 = ((PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields*)il2cpp_codegen_static_fields_for(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var))->get_IdRsassaPss_11(); NullCheck(L_38); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_38, _stringLiteral40202E94CB94F4414051283AC5DD66540DCE9C28, L_39); // algorithms.Add("SHA512WITHRSAANDMGF1", PkcsObjectIdentifiers.IdRsassaPss); RuntimeObject* L_40 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_algorithms_1(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_41 = ((PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields*)il2cpp_codegen_static_fields_for(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var))->get_IdRsassaPss_11(); NullCheck(L_40); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_40, _stringLiteral2594D1B685BA6F00D4A64DE944F76318ED32B71E, L_41); // algorithms.Add("RIPEMD160WITHRSAENCRYPTION", TeleTrusTObjectIdentifiers.RsaSignatureWithRipeMD160); RuntimeObject* L_42 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_algorithms_1(); IL2CPP_RUNTIME_CLASS_INIT(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_43 = ((TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields*)il2cpp_codegen_static_fields_for(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_il2cpp_TypeInfo_var))->get_RsaSignatureWithRipeMD160_5(); NullCheck(L_42); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_42, _stringLiteral813661506A5DABD9B15FE77AA73D2864A4E115C6, L_43); // algorithms.Add("RIPEMD160WITHRSA", TeleTrusTObjectIdentifiers.RsaSignatureWithRipeMD160); RuntimeObject* L_44 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_algorithms_1(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_45 = ((TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields*)il2cpp_codegen_static_fields_for(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_il2cpp_TypeInfo_var))->get_RsaSignatureWithRipeMD160_5(); NullCheck(L_44); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_44, _stringLiteral6EB88BB6D8FEDB1AA37407138A21C08BFA38EB34, L_45); // algorithms.Add("RIPEMD128WITHRSAENCRYPTION", TeleTrusTObjectIdentifiers.RsaSignatureWithRipeMD128); RuntimeObject* L_46 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_algorithms_1(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_47 = ((TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields*)il2cpp_codegen_static_fields_for(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_il2cpp_TypeInfo_var))->get_RsaSignatureWithRipeMD128_6(); NullCheck(L_46); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_46, _stringLiteral37012E583DD1F1C8F246850642B98606CD18CCCC, L_47); // algorithms.Add("RIPEMD128WITHRSA", TeleTrusTObjectIdentifiers.RsaSignatureWithRipeMD128); RuntimeObject* L_48 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_algorithms_1(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_49 = ((TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields*)il2cpp_codegen_static_fields_for(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_il2cpp_TypeInfo_var))->get_RsaSignatureWithRipeMD128_6(); NullCheck(L_48); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_48, _stringLiteral9C1576AC27CAC8326EA3CDE03CE7A486E12F423A, L_49); // algorithms.Add("RIPEMD256WITHRSAENCRYPTION", TeleTrusTObjectIdentifiers.RsaSignatureWithRipeMD256); RuntimeObject* L_50 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_algorithms_1(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_51 = ((TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields*)il2cpp_codegen_static_fields_for(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_il2cpp_TypeInfo_var))->get_RsaSignatureWithRipeMD256_7(); NullCheck(L_50); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_50, _stringLiteral708429802CBDDA081DA338B83F5F3E07D419993A, L_51); // algorithms.Add("RIPEMD256WITHRSA", TeleTrusTObjectIdentifiers.RsaSignatureWithRipeMD256); RuntimeObject* L_52 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_algorithms_1(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_53 = ((TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields*)il2cpp_codegen_static_fields_for(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_il2cpp_TypeInfo_var))->get_RsaSignatureWithRipeMD256_7(); NullCheck(L_52); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_52, _stringLiteral26E294139715163FBE9A18930A1D8CF567887641, L_53); // algorithms.Add("SHA1WITHDSA", X9ObjectIdentifiers.IdDsaWithSha1); RuntimeObject* L_54 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_algorithms_1(); IL2CPP_RUNTIME_CLASS_INIT(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_55 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_IdDsaWithSha1_50(); NullCheck(L_54); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_54, _stringLiteral532EDB63D38BE849355CC05BBD302AC7006BF005, L_55); // algorithms.Add("DSAWITHSHA1", X9ObjectIdentifiers.IdDsaWithSha1); RuntimeObject* L_56 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_algorithms_1(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_57 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_IdDsaWithSha1_50(); NullCheck(L_56); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_56, _stringLiteral6D61A5962793C9EE547ED83C65E277AFBF5D42D7, L_57); // algorithms.Add("SHA224WITHDSA", NistObjectIdentifiers.DsaWithSha224); RuntimeObject* L_58 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_algorithms_1(); IL2CPP_RUNTIME_CLASS_INIT(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_59 = ((NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields*)il2cpp_codegen_static_fields_for(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var))->get_DsaWithSha224_41(); NullCheck(L_58); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_58, _stringLiteral83A241C52DAFE0694C5B5B264CF687E09DF793D6, L_59); // algorithms.Add("SHA256WITHDSA", NistObjectIdentifiers.DsaWithSha256); RuntimeObject* L_60 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_algorithms_1(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_61 = ((NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields*)il2cpp_codegen_static_fields_for(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var))->get_DsaWithSha256_42(); NullCheck(L_60); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_60, _stringLiteralDDB1E5CA18A9EC127B1F85C807C5ED8AC4DC732F, L_61); // algorithms.Add("SHA384WITHDSA", NistObjectIdentifiers.DsaWithSha384); RuntimeObject* L_62 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_algorithms_1(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_63 = ((NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields*)il2cpp_codegen_static_fields_for(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var))->get_DsaWithSha384_43(); NullCheck(L_62); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_62, _stringLiteralC715ABAB0194B09F559C12418DDEFBF93E0D80C5, L_63); // algorithms.Add("SHA512WITHDSA", NistObjectIdentifiers.DsaWithSha512); RuntimeObject* L_64 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_algorithms_1(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_65 = ((NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields*)il2cpp_codegen_static_fields_for(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var))->get_DsaWithSha512_44(); NullCheck(L_64); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_64, _stringLiteral95CECB12EF5997654615668E9338F78021E26420, L_65); // algorithms.Add("SHA1WITHECDSA", X9ObjectIdentifiers.ECDsaWithSha1); RuntimeObject* L_66 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_algorithms_1(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_67 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_ECDsaWithSha1_10(); NullCheck(L_66); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_66, _stringLiteral91418DC5CE55D8F41D97B9EB719D8DA971A0A80D, L_67); // algorithms.Add("ECDSAWITHSHA1", X9ObjectIdentifiers.ECDsaWithSha1); RuntimeObject* L_68 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_algorithms_1(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_69 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_ECDsaWithSha1_10(); NullCheck(L_68); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_68, _stringLiteralA7AD513E5696D5979899AAB85472797E009007D2, L_69); // algorithms.Add("SHA224WITHECDSA", X9ObjectIdentifiers.ECDsaWithSha224); RuntimeObject* L_70 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_algorithms_1(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_71 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_ECDsaWithSha224_15(); NullCheck(L_70); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_70, _stringLiteral33038386B47A94676767B67BA384962CDFC9EF7C, L_71); // algorithms.Add("SHA256WITHECDSA", X9ObjectIdentifiers.ECDsaWithSha256); RuntimeObject* L_72 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_algorithms_1(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_73 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_ECDsaWithSha256_16(); NullCheck(L_72); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_72, _stringLiteralF39378FDB228D1C899BABB186E12163DE48302F5, L_73); // algorithms.Add("SHA384WITHECDSA", X9ObjectIdentifiers.ECDsaWithSha384); RuntimeObject* L_74 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_algorithms_1(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_75 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_ECDsaWithSha384_17(); NullCheck(L_74); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_74, _stringLiteral8BB58B989DAAEFFC9FC49609A564874097684981, L_75); // algorithms.Add("SHA512WITHECDSA", X9ObjectIdentifiers.ECDsaWithSha512); RuntimeObject* L_76 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_algorithms_1(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_77 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_ECDsaWithSha512_18(); NullCheck(L_76); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_76, _stringLiteral1FDF3C1B76238A2773D9417DEDEF895091BA1556, L_77); // algorithms.Add("GOST3411WITHGOST3410", CryptoProObjectIdentifiers.GostR3411x94WithGostR3410x94); RuntimeObject* L_78 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_algorithms_1(); IL2CPP_RUNTIME_CLASS_INIT(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_79 = ((CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields*)il2cpp_codegen_static_fields_for(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_il2cpp_TypeInfo_var))->get_GostR3411x94WithGostR3410x94_7(); NullCheck(L_78); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_78, _stringLiteral4351851F76A2B0C936892EAF654EAD35BC2A592A, L_79); // algorithms.Add("GOST3411WITHGOST3410-94", CryptoProObjectIdentifiers.GostR3411x94WithGostR3410x94); RuntimeObject* L_80 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_algorithms_1(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_81 = ((CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields*)il2cpp_codegen_static_fields_for(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_il2cpp_TypeInfo_var))->get_GostR3411x94WithGostR3410x94_7(); NullCheck(L_80); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_80, _stringLiteral5C27C08176CCDC624C16868C80507E2DD754531C, L_81); // algorithms.Add("GOST3411WITHECGOST3410", CryptoProObjectIdentifiers.GostR3411x94WithGostR3410x2001); RuntimeObject* L_82 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_algorithms_1(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_83 = ((CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields*)il2cpp_codegen_static_fields_for(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_il2cpp_TypeInfo_var))->get_GostR3411x94WithGostR3410x2001_8(); NullCheck(L_82); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_82, _stringLiteralB4D001C31FBECAB595B5B52B652E63F27D0364A7, L_83); // algorithms.Add("GOST3411WITHECGOST3410-2001", CryptoProObjectIdentifiers.GostR3411x94WithGostR3410x2001); RuntimeObject* L_84 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_algorithms_1(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_85 = ((CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields*)il2cpp_codegen_static_fields_for(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_il2cpp_TypeInfo_var))->get_GostR3411x94WithGostR3410x2001_8(); NullCheck(L_84); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_84, _stringLiteral5A06357B575D7058D36E87C495E9D91FCD00437A, L_85); // algorithms.Add("GOST3411WITHGOST3410-2001", CryptoProObjectIdentifiers.GostR3411x94WithGostR3410x2001); RuntimeObject* L_86 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_algorithms_1(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_87 = ((CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields*)il2cpp_codegen_static_fields_for(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_il2cpp_TypeInfo_var))->get_GostR3411x94WithGostR3410x2001_8(); NullCheck(L_86); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_86, _stringLiteralB8922EC46451A10AF98A8BC936A0D7240221208C, L_87); // noParams.Add(X9ObjectIdentifiers.ECDsaWithSha1); RuntimeObject* L_88 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_noParams_3(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_89 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_ECDsaWithSha1_10(); NullCheck(L_88); InterfaceActionInvoker1< RuntimeObject * >::Invoke(0 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections.ISet::Add(System.Object) */, ISet_t5A23607F3EDC64EF08417F0C1A4212EB39469049_il2cpp_TypeInfo_var, L_88, L_89); // noParams.Add(X9ObjectIdentifiers.ECDsaWithSha224); RuntimeObject* L_90 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_noParams_3(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_91 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_ECDsaWithSha224_15(); NullCheck(L_90); InterfaceActionInvoker1< RuntimeObject * >::Invoke(0 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections.ISet::Add(System.Object) */, ISet_t5A23607F3EDC64EF08417F0C1A4212EB39469049_il2cpp_TypeInfo_var, L_90, L_91); // noParams.Add(X9ObjectIdentifiers.ECDsaWithSha256); RuntimeObject* L_92 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_noParams_3(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_93 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_ECDsaWithSha256_16(); NullCheck(L_92); InterfaceActionInvoker1< RuntimeObject * >::Invoke(0 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections.ISet::Add(System.Object) */, ISet_t5A23607F3EDC64EF08417F0C1A4212EB39469049_il2cpp_TypeInfo_var, L_92, L_93); // noParams.Add(X9ObjectIdentifiers.ECDsaWithSha384); RuntimeObject* L_94 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_noParams_3(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_95 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_ECDsaWithSha384_17(); NullCheck(L_94); InterfaceActionInvoker1< RuntimeObject * >::Invoke(0 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections.ISet::Add(System.Object) */, ISet_t5A23607F3EDC64EF08417F0C1A4212EB39469049_il2cpp_TypeInfo_var, L_94, L_95); // noParams.Add(X9ObjectIdentifiers.ECDsaWithSha512); RuntimeObject* L_96 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_noParams_3(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_97 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_ECDsaWithSha512_18(); NullCheck(L_96); InterfaceActionInvoker1< RuntimeObject * >::Invoke(0 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections.ISet::Add(System.Object) */, ISet_t5A23607F3EDC64EF08417F0C1A4212EB39469049_il2cpp_TypeInfo_var, L_96, L_97); // noParams.Add(X9ObjectIdentifiers.IdDsaWithSha1); RuntimeObject* L_98 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_noParams_3(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_99 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_IdDsaWithSha1_50(); NullCheck(L_98); InterfaceActionInvoker1< RuntimeObject * >::Invoke(0 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections.ISet::Add(System.Object) */, ISet_t5A23607F3EDC64EF08417F0C1A4212EB39469049_il2cpp_TypeInfo_var, L_98, L_99); // noParams.Add(NistObjectIdentifiers.DsaWithSha224); RuntimeObject* L_100 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_noParams_3(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_101 = ((NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields*)il2cpp_codegen_static_fields_for(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var))->get_DsaWithSha224_41(); NullCheck(L_100); InterfaceActionInvoker1< RuntimeObject * >::Invoke(0 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections.ISet::Add(System.Object) */, ISet_t5A23607F3EDC64EF08417F0C1A4212EB39469049_il2cpp_TypeInfo_var, L_100, L_101); // noParams.Add(NistObjectIdentifiers.DsaWithSha256); RuntimeObject* L_102 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_noParams_3(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_103 = ((NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields*)il2cpp_codegen_static_fields_for(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var))->get_DsaWithSha256_42(); NullCheck(L_102); InterfaceActionInvoker1< RuntimeObject * >::Invoke(0 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections.ISet::Add(System.Object) */, ISet_t5A23607F3EDC64EF08417F0C1A4212EB39469049_il2cpp_TypeInfo_var, L_102, L_103); // noParams.Add(NistObjectIdentifiers.DsaWithSha384); RuntimeObject* L_104 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_noParams_3(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_105 = ((NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields*)il2cpp_codegen_static_fields_for(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var))->get_DsaWithSha384_43(); NullCheck(L_104); InterfaceActionInvoker1< RuntimeObject * >::Invoke(0 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections.ISet::Add(System.Object) */, ISet_t5A23607F3EDC64EF08417F0C1A4212EB39469049_il2cpp_TypeInfo_var, L_104, L_105); // noParams.Add(NistObjectIdentifiers.DsaWithSha512); RuntimeObject* L_106 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_noParams_3(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_107 = ((NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields*)il2cpp_codegen_static_fields_for(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var))->get_DsaWithSha512_44(); NullCheck(L_106); InterfaceActionInvoker1< RuntimeObject * >::Invoke(0 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections.ISet::Add(System.Object) */, ISet_t5A23607F3EDC64EF08417F0C1A4212EB39469049_il2cpp_TypeInfo_var, L_106, L_107); // noParams.Add(CryptoProObjectIdentifiers.GostR3411x94WithGostR3410x94); RuntimeObject* L_108 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_noParams_3(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_109 = ((CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields*)il2cpp_codegen_static_fields_for(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_il2cpp_TypeInfo_var))->get_GostR3411x94WithGostR3410x94_7(); NullCheck(L_108); InterfaceActionInvoker1< RuntimeObject * >::Invoke(0 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections.ISet::Add(System.Object) */, ISet_t5A23607F3EDC64EF08417F0C1A4212EB39469049_il2cpp_TypeInfo_var, L_108, L_109); // noParams.Add(CryptoProObjectIdentifiers.GostR3411x94WithGostR3410x2001); RuntimeObject* L_110 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_noParams_3(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_111 = ((CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields*)il2cpp_codegen_static_fields_for(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_il2cpp_TypeInfo_var))->get_GostR3411x94WithGostR3410x2001_8(); NullCheck(L_110); InterfaceActionInvoker1< RuntimeObject * >::Invoke(0 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections.ISet::Add(System.Object) */, ISet_t5A23607F3EDC64EF08417F0C1A4212EB39469049_il2cpp_TypeInfo_var, L_110, L_111); // AlgorithmIdentifier sha1AlgId = new AlgorithmIdentifier(OiwObjectIdentifiers.IdSha1, DerNull.Instance); IL2CPP_RUNTIME_CLASS_INIT(OiwObjectIdentifiers_tACD1AAAAC365CD86B5E7F0DE22B66469A4A93CED_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_112 = ((OiwObjectIdentifiers_tACD1AAAAC365CD86B5E7F0DE22B66469A4A93CED_StaticFields*)il2cpp_codegen_static_fields_for(OiwObjectIdentifiers_tACD1AAAAC365CD86B5E7F0DE22B66469A4A93CED_il2cpp_TypeInfo_var))->get_IdSha1_8(); DerNull_t020168AF07318033108544C00C803CD7AEB97239 * L_113 = ((DerNull_t020168AF07318033108544C00C803CD7AEB97239_StaticFields*)il2cpp_codegen_static_fields_for(DerNull_t020168AF07318033108544C00C803CD7AEB97239_il2cpp_TypeInfo_var))->get_Instance_2(); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_114 = (AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 *)il2cpp_codegen_object_new(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9_il2cpp_TypeInfo_var); AlgorithmIdentifier__ctor_m942B7921A63CC0139DAD59B57D2B41BBA20EF608(L_114, L_112, L_113, /*hidden argument*/NULL); V_0 = L_114; // exParams.Add("SHA1WITHRSAANDMGF1", CreatePssParams(sha1AlgId, 20)); RuntimeObject* L_115 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_exParams_2(); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_116 = V_0; RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69 * L_117; L_117 = X509Utilities_CreatePssParams_m49C46157623EDE814CC370FDEBBA516898B24647(L_116, ((int32_t)20), /*hidden argument*/NULL); NullCheck(L_115); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_115, _stringLiteral0EBFEDCE71CC77070BD35887BBA6B3AC08479560, L_117); // AlgorithmIdentifier sha224AlgId = new AlgorithmIdentifier(NistObjectIdentifiers.IdSha224, DerNull.Instance); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_118 = ((NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields*)il2cpp_codegen_static_fields_for(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var))->get_IdSha224_5(); DerNull_t020168AF07318033108544C00C803CD7AEB97239 * L_119 = ((DerNull_t020168AF07318033108544C00C803CD7AEB97239_StaticFields*)il2cpp_codegen_static_fields_for(DerNull_t020168AF07318033108544C00C803CD7AEB97239_il2cpp_TypeInfo_var))->get_Instance_2(); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_120 = (AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 *)il2cpp_codegen_object_new(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9_il2cpp_TypeInfo_var); AlgorithmIdentifier__ctor_m942B7921A63CC0139DAD59B57D2B41BBA20EF608(L_120, L_118, L_119, /*hidden argument*/NULL); V_1 = L_120; // exParams.Add("SHA224WITHRSAANDMGF1", CreatePssParams(sha224AlgId, 28)); RuntimeObject* L_121 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_exParams_2(); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_122 = V_1; RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69 * L_123; L_123 = X509Utilities_CreatePssParams_m49C46157623EDE814CC370FDEBBA516898B24647(L_122, ((int32_t)28), /*hidden argument*/NULL); NullCheck(L_121); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_121, _stringLiteral155A4BC12A234318BF135F4542D363DCE33CE8A5, L_123); // AlgorithmIdentifier sha256AlgId = new AlgorithmIdentifier(NistObjectIdentifiers.IdSha256, DerNull.Instance); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_124 = ((NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields*)il2cpp_codegen_static_fields_for(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var))->get_IdSha256_2(); DerNull_t020168AF07318033108544C00C803CD7AEB97239 * L_125 = ((DerNull_t020168AF07318033108544C00C803CD7AEB97239_StaticFields*)il2cpp_codegen_static_fields_for(DerNull_t020168AF07318033108544C00C803CD7AEB97239_il2cpp_TypeInfo_var))->get_Instance_2(); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_126 = (AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 *)il2cpp_codegen_object_new(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9_il2cpp_TypeInfo_var); AlgorithmIdentifier__ctor_m942B7921A63CC0139DAD59B57D2B41BBA20EF608(L_126, L_124, L_125, /*hidden argument*/NULL); V_2 = L_126; // exParams.Add("SHA256WITHRSAANDMGF1", CreatePssParams(sha256AlgId, 32)); RuntimeObject* L_127 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_exParams_2(); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_128 = V_2; RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69 * L_129; L_129 = X509Utilities_CreatePssParams_m49C46157623EDE814CC370FDEBBA516898B24647(L_128, ((int32_t)32), /*hidden argument*/NULL); NullCheck(L_127); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_127, _stringLiteralB45413D5021961F635D2351C965C6FBA649B7EC9, L_129); // AlgorithmIdentifier sha384AlgId = new AlgorithmIdentifier(NistObjectIdentifiers.IdSha384, DerNull.Instance); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_130 = ((NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields*)il2cpp_codegen_static_fields_for(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var))->get_IdSha384_3(); DerNull_t020168AF07318033108544C00C803CD7AEB97239 * L_131 = ((DerNull_t020168AF07318033108544C00C803CD7AEB97239_StaticFields*)il2cpp_codegen_static_fields_for(DerNull_t020168AF07318033108544C00C803CD7AEB97239_il2cpp_TypeInfo_var))->get_Instance_2(); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_132 = (AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 *)il2cpp_codegen_object_new(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9_il2cpp_TypeInfo_var); AlgorithmIdentifier__ctor_m942B7921A63CC0139DAD59B57D2B41BBA20EF608(L_132, L_130, L_131, /*hidden argument*/NULL); V_3 = L_132; // exParams.Add("SHA384WITHRSAANDMGF1", CreatePssParams(sha384AlgId, 48)); RuntimeObject* L_133 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_exParams_2(); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_134 = V_3; RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69 * L_135; L_135 = X509Utilities_CreatePssParams_m49C46157623EDE814CC370FDEBBA516898B24647(L_134, ((int32_t)48), /*hidden argument*/NULL); NullCheck(L_133); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_133, _stringLiteral40202E94CB94F4414051283AC5DD66540DCE9C28, L_135); // AlgorithmIdentifier sha512AlgId = new AlgorithmIdentifier(NistObjectIdentifiers.IdSha512, DerNull.Instance); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_136 = ((NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields*)il2cpp_codegen_static_fields_for(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var))->get_IdSha512_4(); DerNull_t020168AF07318033108544C00C803CD7AEB97239 * L_137 = ((DerNull_t020168AF07318033108544C00C803CD7AEB97239_StaticFields*)il2cpp_codegen_static_fields_for(DerNull_t020168AF07318033108544C00C803CD7AEB97239_il2cpp_TypeInfo_var))->get_Instance_2(); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_138 = (AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 *)il2cpp_codegen_object_new(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9_il2cpp_TypeInfo_var); AlgorithmIdentifier__ctor_m942B7921A63CC0139DAD59B57D2B41BBA20EF608(L_138, L_136, L_137, /*hidden argument*/NULL); V_4 = L_138; // exParams.Add("SHA512WITHRSAANDMGF1", CreatePssParams(sha512AlgId, 64)); RuntimeObject* L_139 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_exParams_2(); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_140 = V_4; RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69 * L_141; L_141 = X509Utilities_CreatePssParams_m49C46157623EDE814CC370FDEBBA516898B24647(L_140, ((int32_t)64), /*hidden argument*/NULL); NullCheck(L_139); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_139, _stringLiteral2594D1B685BA6F00D4A64DE944F76318ED32B71E, L_141); // } return; } } // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Operators.X509Utilities::GetDigestAlgName(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* X509Utilities_GetDigestAlgName_m70187F82F89D12B236EEC71BA90530F5EE1F4DCE (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___digestAlgOID0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OiwObjectIdentifiers_tACD1AAAAC365CD86B5E7F0DE22B66469A4A93CED_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral12C0D00507D5556F04E6640916CA4AAF502616A1); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral158B6A1BFB4007A30B92DF912CBC29F2328168DD); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral52BDFA54A164366A4CCA7F4E8E9D4CC3289B914B); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral929005093FDAFAC5D770520C4CC44C5F7EEF5E0E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA6DBDE4DFCE47C72AFA52C1981772A8DD7EFD2C8); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCE0379382C2810C1AED5C5B0021E7B8221741E17); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDD9C7849851C546319ED5DCC821A7B730DE8FF73); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEB7CCC8642D7B5521BC4E7440146281DA06EFDDF); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEBFEA42051B997E17C9814A7196FFB19014A1B51); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF4B67B27E4DD10700B0726FC3E0A89E2CDBB84C8); s_Il2CppMethodInitialized = true; } { // if (PkcsObjectIdentifiers.MD5.Equals(digestAlgOID)) IL2CPP_RUNTIME_CLASS_INIT(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_0 = ((PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields*)il2cpp_codegen_static_fields_for(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var))->get_MD5_35(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_1 = ___digestAlgOID0; NullCheck(L_0); bool L_2; L_2 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_0, L_1); if (!L_2) { goto IL_0013; } } { // return "MD5"; return _stringLiteralCE0379382C2810C1AED5C5B0021E7B8221741E17; } IL_0013: { // else if (OiwObjectIdentifiers.IdSha1.Equals(digestAlgOID)) IL2CPP_RUNTIME_CLASS_INIT(OiwObjectIdentifiers_tACD1AAAAC365CD86B5E7F0DE22B66469A4A93CED_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_3 = ((OiwObjectIdentifiers_tACD1AAAAC365CD86B5E7F0DE22B66469A4A93CED_StaticFields*)il2cpp_codegen_static_fields_for(OiwObjectIdentifiers_tACD1AAAAC365CD86B5E7F0DE22B66469A4A93CED_il2cpp_TypeInfo_var))->get_IdSha1_8(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_4 = ___digestAlgOID0; NullCheck(L_3); bool L_5; L_5 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_3, L_4); if (!L_5) { goto IL_0026; } } { // return "SHA1"; return _stringLiteral52BDFA54A164366A4CCA7F4E8E9D4CC3289B914B; } IL_0026: { // else if (NistObjectIdentifiers.IdSha224.Equals(digestAlgOID)) IL2CPP_RUNTIME_CLASS_INIT(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_6 = ((NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields*)il2cpp_codegen_static_fields_for(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var))->get_IdSha224_5(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_7 = ___digestAlgOID0; NullCheck(L_6); bool L_8; L_8 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_6, L_7); if (!L_8) { goto IL_0039; } } { // return "SHA224"; return _stringLiteralEBFEA42051B997E17C9814A7196FFB19014A1B51; } IL_0039: { // else if (NistObjectIdentifiers.IdSha256.Equals(digestAlgOID)) IL2CPP_RUNTIME_CLASS_INIT(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_9 = ((NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields*)il2cpp_codegen_static_fields_for(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var))->get_IdSha256_2(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_10 = ___digestAlgOID0; NullCheck(L_9); bool L_11; L_11 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_9, L_10); if (!L_11) { goto IL_004c; } } { // return "SHA256"; return _stringLiteral158B6A1BFB4007A30B92DF912CBC29F2328168DD; } IL_004c: { // else if (NistObjectIdentifiers.IdSha384.Equals(digestAlgOID)) IL2CPP_RUNTIME_CLASS_INIT(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_12 = ((NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields*)il2cpp_codegen_static_fields_for(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var))->get_IdSha384_3(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_13 = ___digestAlgOID0; NullCheck(L_12); bool L_14; L_14 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_12, L_13); if (!L_14) { goto IL_005f; } } { // return "SHA384"; return _stringLiteral12C0D00507D5556F04E6640916CA4AAF502616A1; } IL_005f: { // else if (NistObjectIdentifiers.IdSha512.Equals(digestAlgOID)) IL2CPP_RUNTIME_CLASS_INIT(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_15 = ((NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields*)il2cpp_codegen_static_fields_for(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var))->get_IdSha512_4(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_16 = ___digestAlgOID0; NullCheck(L_15); bool L_17; L_17 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_15, L_16); if (!L_17) { goto IL_0072; } } { // return "SHA512"; return _stringLiteralDD9C7849851C546319ED5DCC821A7B730DE8FF73; } IL_0072: { // else if (TeleTrusTObjectIdentifiers.RipeMD128.Equals(digestAlgOID)) IL2CPP_RUNTIME_CLASS_INIT(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_18 = ((TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields*)il2cpp_codegen_static_fields_for(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_il2cpp_TypeInfo_var))->get_RipeMD128_2(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_19 = ___digestAlgOID0; NullCheck(L_18); bool L_20; L_20 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_18, L_19); if (!L_20) { goto IL_0085; } } { // return "RIPEMD128"; return _stringLiteralEB7CCC8642D7B5521BC4E7440146281DA06EFDDF; } IL_0085: { // else if (TeleTrusTObjectIdentifiers.RipeMD160.Equals(digestAlgOID)) IL2CPP_RUNTIME_CLASS_INIT(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_21 = ((TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields*)il2cpp_codegen_static_fields_for(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_il2cpp_TypeInfo_var))->get_RipeMD160_1(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_22 = ___digestAlgOID0; NullCheck(L_21); bool L_23; L_23 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_21, L_22); if (!L_23) { goto IL_0098; } } { // return "RIPEMD160"; return _stringLiteralF4B67B27E4DD10700B0726FC3E0A89E2CDBB84C8; } IL_0098: { // else if (TeleTrusTObjectIdentifiers.RipeMD256.Equals(digestAlgOID)) IL2CPP_RUNTIME_CLASS_INIT(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_24 = ((TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields*)il2cpp_codegen_static_fields_for(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_il2cpp_TypeInfo_var))->get_RipeMD256_3(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_25 = ___digestAlgOID0; NullCheck(L_24); bool L_26; L_26 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_24, L_25); if (!L_26) { goto IL_00ab; } } { // return "RIPEMD256"; return _stringLiteralA6DBDE4DFCE47C72AFA52C1981772A8DD7EFD2C8; } IL_00ab: { // else if (CryptoProObjectIdentifiers.GostR3411.Equals(digestAlgOID)) IL2CPP_RUNTIME_CLASS_INIT(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_27 = ((CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields*)il2cpp_codegen_static_fields_for(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_il2cpp_TypeInfo_var))->get_GostR3411_1(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_28 = ___digestAlgOID0; NullCheck(L_27); bool L_29; L_29 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_27, L_28); if (!L_29) { goto IL_00be; } } { // return "GOST3411"; return _stringLiteral929005093FDAFAC5D770520C4CC44C5F7EEF5E0E; } IL_00be: { // return digestAlgOID.Id; DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_30 = ___digestAlgOID0; NullCheck(L_30); String_t* L_31; L_31 = DerObjectIdentifier_get_Id_m1A4618B1F7ED8630EDC76DF95D8C7086F1E616D6_inline(L_30, /*hidden argument*/NULL); return L_31; } } // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Operators.X509Utilities::GetSignatureName(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* X509Utilities_GetSignatureName_mF68F0A610ADB06E93518CE958FCA78925DDA53D2 (AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___sigAlgId0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral25F76CC1BDA61C71DE0DB52A74E1709B018BD814); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8F14545E96A97CA6E4BB71607070728BAD81EE42); s_Il2CppMethodInitialized = true; } Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * V_0 = NULL; { // Asn1Encodable parameters = sigAlgId.Parameters; AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_0 = ___sigAlgId0; NullCheck(L_0); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_1; L_1 = VirtualFuncInvoker0< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * >::Invoke(8 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier::get_Parameters() */, L_0); V_0 = L_1; // if (parameters != null && !derNull.Equals(parameters)) Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_2 = V_0; if (!L_2) { goto IL_007c; } } { IL2CPP_RUNTIME_CLASS_INIT(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var); Asn1Null_t5D40C5C3674510061A0C219CEB9849A5EF6492BC * L_3 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_derNull_0(); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_4 = V_0; NullCheck(L_3); bool L_5; L_5 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_3, L_4); if (L_5) { goto IL_007c; } } { // if (sigAlgId.Algorithm.Equals(PkcsObjectIdentifiers.IdRsassaPss)) AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_6 = ___sigAlgId0; NullCheck(L_6); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_7; L_7 = VirtualFuncInvoker0< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * >::Invoke(6 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier::get_Algorithm() */, L_6); IL2CPP_RUNTIME_CLASS_INIT(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_8 = ((PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields*)il2cpp_codegen_static_fields_for(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var))->get_IdRsassaPss_11(); NullCheck(L_7); bool L_9; L_9 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_7, L_8); if (!L_9) { goto IL_0049; } } { // RsassaPssParameters rsaParams = RsassaPssParameters.GetInstance(parameters); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_10 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69_il2cpp_TypeInfo_var); RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69 * L_11; L_11 = RsassaPssParameters_GetInstance_mC4FCD2C40DFF8D0F69DDCCC32621F9A370CE3CBE(L_10, /*hidden argument*/NULL); // return GetDigestAlgName(rsaParams.HashAlgorithm.Algorithm) + "withRSAandMGF1"; NullCheck(L_11); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_12; L_12 = RsassaPssParameters_get_HashAlgorithm_mE761E1603909D87FF6B83B1BDE6366BF8F96FEA1_inline(L_11, /*hidden argument*/NULL); NullCheck(L_12); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_13; L_13 = VirtualFuncInvoker0< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * >::Invoke(6 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier::get_Algorithm() */, L_12); IL2CPP_RUNTIME_CLASS_INIT(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var); String_t* L_14; L_14 = X509Utilities_GetDigestAlgName_m70187F82F89D12B236EEC71BA90530F5EE1F4DCE(L_13, /*hidden argument*/NULL); String_t* L_15; L_15 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(L_14, _stringLiteral8F14545E96A97CA6E4BB71607070728BAD81EE42, /*hidden argument*/NULL); return L_15; } IL_0049: { // if (sigAlgId.Algorithm.Equals(X9ObjectIdentifiers.ECDsaWithSha2)) AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_16 = ___sigAlgId0; NullCheck(L_16); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_17; L_17 = VirtualFuncInvoker0< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * >::Invoke(6 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier::get_Algorithm() */, L_16); IL2CPP_RUNTIME_CLASS_INIT(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_18 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_ECDsaWithSha2_14(); NullCheck(L_17); bool L_19; L_19 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_17, L_18); if (!L_19) { goto IL_007c; } } { // Asn1Sequence ecDsaParams = Asn1Sequence.GetInstance(parameters); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_20 = V_0; Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_21; L_21 = Asn1Sequence_GetInstance_m53E4D5619D84F02123D6C3B6EA8E0EEEF86B244C(L_20, /*hidden argument*/NULL); // return GetDigestAlgName((DerObjectIdentifier)ecDsaParams[0]) + "withECDSA"; NullCheck(L_21); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_22; L_22 = VirtualFuncInvoker1< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *, int32_t >::Invoke(12 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Item(System.Int32) */, L_21, 0); IL2CPP_RUNTIME_CLASS_INIT(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var); String_t* L_23; L_23 = X509Utilities_GetDigestAlgName_m70187F82F89D12B236EEC71BA90530F5EE1F4DCE(((DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *)CastclassClass((RuntimeObject*)L_22, DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); String_t* L_24; L_24 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(L_23, _stringLiteral25F76CC1BDA61C71DE0DB52A74E1709B018BD814, /*hidden argument*/NULL); return L_24; } IL_007c: { // return sigAlgId.Algorithm.Id; AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_25 = ___sigAlgId0; NullCheck(L_25); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_26; L_26 = VirtualFuncInvoker0< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * >::Invoke(6 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier::get_Algorithm() */, L_25); NullCheck(L_26); String_t* L_27; L_27 = DerObjectIdentifier_get_Id_m1A4618B1F7ED8630EDC76DF95D8C7086F1E616D6_inline(L_26, /*hidden argument*/NULL); return L_27; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Operators.X509Utilities::CreatePssParams(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69 * X509Utilities_CreatePssParams_m49C46157623EDE814CC370FDEBBA516898B24647 (AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___hashAlgId0, int32_t ___saltSize1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // return new RsassaPssParameters( // hashAlgId, // new AlgorithmIdentifier(PkcsObjectIdentifiers.IdMgf1, hashAlgId), // new DerInteger(saltSize), // new DerInteger(1)); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_0 = ___hashAlgId0; IL2CPP_RUNTIME_CLASS_INIT(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_1 = ((PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields*)il2cpp_codegen_static_fields_for(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var))->get_IdMgf1_9(); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_2 = ___hashAlgId0; AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_3 = (AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 *)il2cpp_codegen_object_new(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9_il2cpp_TypeInfo_var); AlgorithmIdentifier__ctor_m942B7921A63CC0139DAD59B57D2B41BBA20EF608(L_3, L_1, L_2, /*hidden argument*/NULL); int32_t L_4 = ___saltSize1; DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * L_5 = (DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 *)il2cpp_codegen_object_new(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var); DerInteger__ctor_m014B0C2AADB00543E51D3621D5B93E030C47F6CA(L_5, L_4, /*hidden argument*/NULL); DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * L_6 = (DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 *)il2cpp_codegen_object_new(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var); DerInteger__ctor_m014B0C2AADB00543E51D3621D5B93E030C47F6CA(L_6, 1, /*hidden argument*/NULL); RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69 * L_7 = (RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69 *)il2cpp_codegen_object_new(RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69_il2cpp_TypeInfo_var); RsassaPssParameters__ctor_m7D750278B1EDDC3E337098DCC4DCC4BCE4F23027(L_7, L_0, L_3, L_5, L_6, /*hidden argument*/NULL); return L_7; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Operators.X509Utilities::GetAlgorithmOid(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * X509Utilities_GetAlgorithmOid_mCA0DC9987BECCA84548EAA40E0FE9CA31724234A (String_t* ___algorithmName0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // algorithmName = BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.ToUpperInvariant(algorithmName); String_t* L_0 = ___algorithmName0; IL2CPP_RUNTIME_CLASS_INIT(Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var); String_t* L_1; L_1 = Platform_ToUpperInvariant_m306E35263EC9F3B4FE0722C3173BAAFDB1B3E158(L_0, /*hidden argument*/NULL); ___algorithmName0 = L_1; // if (algorithms.Contains(algorithmName)) IL2CPP_RUNTIME_CLASS_INIT(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var); RuntimeObject* L_2 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_algorithms_1(); String_t* L_3 = ___algorithmName0; NullCheck(L_2); bool L_4; L_4 = InterfaceFuncInvoker1< bool, RuntimeObject * >::Invoke(4 /* System.Boolean System.Collections.IDictionary::Contains(System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_2, L_3); if (!L_4) { goto IL_0026; } } { // return (DerObjectIdentifier) algorithms[algorithmName]; IL2CPP_RUNTIME_CLASS_INIT(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var); RuntimeObject* L_5 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_algorithms_1(); String_t* L_6 = ___algorithmName0; NullCheck(L_5); RuntimeObject * L_7; L_7 = InterfaceFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IDictionary::get_Item(System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_5, L_6); return ((DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *)CastclassClass((RuntimeObject*)L_7, DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var)); } IL_0026: { // return new DerObjectIdentifier(algorithmName); String_t* L_8 = ___algorithmName0; DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_9 = (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *)il2cpp_codegen_object_new(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); DerObjectIdentifier__ctor_m8009342D7B2AD40B1E19E6AB958141979B7405CD(L_9, L_8, /*hidden argument*/NULL); return L_9; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Operators.X509Utilities::GetSigAlgID(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * X509Utilities_GetSigAlgID_m1B67E811D3F183E5FAA2C4244D7825CCDAD2D320 (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___sigOid0, String_t* ___algorithmName1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerNull_t020168AF07318033108544C00C803CD7AEB97239_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ISet_t5A23607F3EDC64EF08417F0C1A4212EB39469049_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (noParams.Contains(sigOid)) IL2CPP_RUNTIME_CLASS_INIT(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var); RuntimeObject* L_0 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_noParams_3(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_1 = ___sigOid0; NullCheck(L_0); bool L_2; L_2 = InterfaceFuncInvoker1< bool, RuntimeObject * >::Invoke(3 /* System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections.ISet::Contains(System.Object) */, ISet_t5A23607F3EDC64EF08417F0C1A4212EB39469049_il2cpp_TypeInfo_var, L_0, L_1); if (!L_2) { goto IL_0014; } } { // return new AlgorithmIdentifier(sigOid); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_3 = ___sigOid0; AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_4 = (AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 *)il2cpp_codegen_object_new(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9_il2cpp_TypeInfo_var); AlgorithmIdentifier__ctor_mA45787B3AB8C719957BA61423CD3FA852BFB5AE3(L_4, L_3, /*hidden argument*/NULL); return L_4; } IL_0014: { // algorithmName = BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.ToUpperInvariant(algorithmName); String_t* L_5 = ___algorithmName1; IL2CPP_RUNTIME_CLASS_INIT(Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var); String_t* L_6; L_6 = Platform_ToUpperInvariant_m306E35263EC9F3B4FE0722C3173BAAFDB1B3E158(L_5, /*hidden argument*/NULL); ___algorithmName1 = L_6; // if (exParams.Contains(algorithmName)) IL2CPP_RUNTIME_CLASS_INIT(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var); RuntimeObject* L_7 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_exParams_2(); String_t* L_8 = ___algorithmName1; NullCheck(L_7); bool L_9; L_9 = InterfaceFuncInvoker1< bool, RuntimeObject * >::Invoke(4 /* System.Boolean System.Collections.IDictionary::Contains(System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_7, L_8); if (!L_9) { goto IL_0040; } } { // return new AlgorithmIdentifier(sigOid, (Asn1Encodable) exParams[algorithmName]); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_10 = ___sigOid0; IL2CPP_RUNTIME_CLASS_INIT(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var); RuntimeObject* L_11 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_exParams_2(); String_t* L_12 = ___algorithmName1; NullCheck(L_11); RuntimeObject * L_13; L_13 = InterfaceFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IDictionary::get_Item(System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_11, L_12); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_14 = (AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 *)il2cpp_codegen_object_new(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9_il2cpp_TypeInfo_var); AlgorithmIdentifier__ctor_m942B7921A63CC0139DAD59B57D2B41BBA20EF608(L_14, L_10, ((Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *)CastclassClass((RuntimeObject*)L_13, Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); return L_14; } IL_0040: { // return new AlgorithmIdentifier(sigOid, DerNull.Instance); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_15 = ___sigOid0; IL2CPP_RUNTIME_CLASS_INIT(DerNull_t020168AF07318033108544C00C803CD7AEB97239_il2cpp_TypeInfo_var); DerNull_t020168AF07318033108544C00C803CD7AEB97239 * L_16 = ((DerNull_t020168AF07318033108544C00C803CD7AEB97239_StaticFields*)il2cpp_codegen_static_fields_for(DerNull_t020168AF07318033108544C00C803CD7AEB97239_il2cpp_TypeInfo_var))->get_Instance_2(); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_17 = (AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 *)il2cpp_codegen_object_new(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9_il2cpp_TypeInfo_var); AlgorithmIdentifier__ctor_m942B7921A63CC0139DAD59B57D2B41BBA20EF608(L_17, L_15, L_16, /*hidden argument*/NULL); return L_17; } } // System.Collections.IEnumerable BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Operators.X509Utilities::GetAlgNames() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* X509Utilities_GetAlgNames_mC41E80D47EC6ED972AE74906EBA1571D04547D48 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EnumerableProxy_t026114E7F2A8CD4B2FA989282FE080341A4614E2_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // return new EnumerableProxy(algorithms.Keys); IL2CPP_RUNTIME_CLASS_INIT(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var); RuntimeObject* L_0 = ((X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4_il2cpp_TypeInfo_var))->get_algorithms_1(); NullCheck(L_0); RuntimeObject* L_1; L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(2 /* System.Collections.ICollection System.Collections.IDictionary::get_Keys() */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_0); EnumerableProxy_t026114E7F2A8CD4B2FA989282FE080341A4614E2 * L_2 = (EnumerableProxy_t026114E7F2A8CD4B2FA989282FE080341A4614E2 *)il2cpp_codegen_object_new(EnumerableProxy_t026114E7F2A8CD4B2FA989282FE080341A4614E2_il2cpp_TypeInfo_var); EnumerableProxy__ctor_m3A29836DAA548DB5ADE9DF4D26EE061EF50B34F5(L_2, L_1, /*hidden argument*/NULL); return L_2; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Operators.X509Utilities::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Utilities__ctor_mFD67B8C41DA1DC4B418E3FBEA96EDFC1AA5C9A0F (X509Utilities_t98C8F585668E5E839975F56B91FA5301EE3854D4 * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Utilities::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Utilities__cctor_m3C009171BD95927B655BFAB20973E56A9B060452 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerNull_t020168AF07318033108544C00C803CD7AEB97239_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_t1E14FE66FBB0732BFDA0861868A51969563DF754_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ISet_t5A23607F3EDC64EF08417F0C1A4212EB39469049_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OiwObjectIdentifiers_tACD1AAAAC365CD86B5E7F0DE22B66469A4A93CED_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral08DFED9B56DBA3DB573A6E23566527810FD3F2D4); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0EBFEDCE71CC77070BD35887BBA6B3AC08479560); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral155A4BC12A234318BF135F4542D363DCE33CE8A5); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1FDF3C1B76238A2773D9417DEDEF895091BA1556); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2594D1B685BA6F00D4A64DE944F76318ED32B71E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral26E294139715163FBE9A18930A1D8CF567887641); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral33038386B47A94676767B67BA384962CDFC9EF7C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral33BB5A11405346DBDDE78D1A74DE8913BDA24E15); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral37012E583DD1F1C8F246850642B98606CD18CCCC); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral40202E94CB94F4414051283AC5DD66540DCE9C28); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4351851F76A2B0C936892EAF654EAD35BC2A592A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4408D910CFD8CBB13B1D24EAF91F35D1AA3192E4); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4C8FC0834485EA54FDC1DD8AEC5C3965BE95DFEA); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral532EDB63D38BE849355CC05BBD302AC7006BF005); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5A06357B575D7058D36E87C495E9D91FCD00437A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5C27C08176CCDC624C16868C80507E2DD754531C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5F1A7897AF6D5097460B156B520C63C705855CA1); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6D61A5962793C9EE547ED83C65E277AFBF5D42D7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6E7CBDA006FCC8893A6B1EEE63FAEFCD7045475E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6EB88BB6D8FEDB1AA37407138A21C08BFA38EB34); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral708429802CBDDA081DA338B83F5F3E07D419993A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7BAB6C1AFDE0F5062E870520A697C2B67A8CFC76); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral813661506A5DABD9B15FE77AA73D2864A4E115C6); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral831BFD427B999973389FEBD63A8D4EC7D609AC21); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral83A241C52DAFE0694C5B5B264CF687E09DF793D6); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8BB58B989DAAEFFC9FC49609A564874097684981); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral91418DC5CE55D8F41D97B9EB719D8DA971A0A80D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral95CECB12EF5997654615668E9338F78021E26420); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9C1576AC27CAC8326EA3CDE03CE7A486E12F423A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9C86DC74663ECC1CCD6B393712268E40409B9836); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA7AD513E5696D5979899AAB85472797E009007D2); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB45413D5021961F635D2351C965C6FBA649B7EC9); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB4D001C31FBECAB595B5B52B652E63F27D0364A7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB8922EC46451A10AF98A8BC936A0D7240221208C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB9781714FE806F152E476A132D5187A200851483); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC715ABAB0194B09F559C12418DDEFBF93E0D80C5); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCCAD23ED8EFB047E7DDC3717C32DD95445488797); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCDDE7E78FCC67275355EB8BF4E41C8CC2315DFE7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD0C6D4AFE953D9CE14E2F81B70259C4AB735DF92); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDDB1E5CA18A9EC127B1F85C807C5ED8AC4DC732F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF39378FDB228D1C899BABB186E12163DE48302F5); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF61B6A23CE93B6AFE193ECD7C22723977C0AE9BE); s_Il2CppMethodInitialized = true; } AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * V_0 = NULL; AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * V_1 = NULL; AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * V_2 = NULL; AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * V_3 = NULL; AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * V_4 = NULL; { // private static readonly IDictionary algorithms = BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.CreateHashtable(); IL2CPP_RUNTIME_CLASS_INIT(Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var); RuntimeObject* L_0; L_0 = Platform_CreateHashtable_mC95944AF156429BA5DCBC1173539FC65A7782B06(/*hidden argument*/NULL); ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->set_algorithms_0(L_0); // private static readonly IDictionary exParams = BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.CreateHashtable(); RuntimeObject* L_1; L_1 = Platform_CreateHashtable_mC95944AF156429BA5DCBC1173539FC65A7782B06(/*hidden argument*/NULL); ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->set_exParams_1(L_1); // private static readonly ISet noParams = new HashSet(); HashSet_t1E14FE66FBB0732BFDA0861868A51969563DF754 * L_2 = (HashSet_t1E14FE66FBB0732BFDA0861868A51969563DF754 *)il2cpp_codegen_object_new(HashSet_t1E14FE66FBB0732BFDA0861868A51969563DF754_il2cpp_TypeInfo_var); HashSet__ctor_m69B31BE760CB1E8513D795698BBD166D60821C5E(L_2, /*hidden argument*/NULL); ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->set_noParams_2(L_2); // algorithms.Add("MD2WITHRSAENCRYPTION", PkcsObjectIdentifiers.MD2WithRsaEncryption); RuntimeObject* L_3 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_algorithms_0(); IL2CPP_RUNTIME_CLASS_INIT(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_4 = ((PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields*)il2cpp_codegen_static_fields_for(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var))->get_MD2WithRsaEncryption_3(); NullCheck(L_3); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_3, _stringLiteral4408D910CFD8CBB13B1D24EAF91F35D1AA3192E4, L_4); // algorithms.Add("MD2WITHRSA", PkcsObjectIdentifiers.MD2WithRsaEncryption); RuntimeObject* L_5 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_algorithms_0(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_6 = ((PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields*)il2cpp_codegen_static_fields_for(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var))->get_MD2WithRsaEncryption_3(); NullCheck(L_5); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_5, _stringLiteral831BFD427B999973389FEBD63A8D4EC7D609AC21, L_6); // algorithms.Add("MD5WITHRSAENCRYPTION", PkcsObjectIdentifiers.MD5WithRsaEncryption); RuntimeObject* L_7 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_algorithms_0(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_8 = ((PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields*)il2cpp_codegen_static_fields_for(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var))->get_MD5WithRsaEncryption_5(); NullCheck(L_7); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_7, _stringLiteral33BB5A11405346DBDDE78D1A74DE8913BDA24E15, L_8); // algorithms.Add("MD5WITHRSA", PkcsObjectIdentifiers.MD5WithRsaEncryption); RuntimeObject* L_9 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_algorithms_0(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_10 = ((PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields*)il2cpp_codegen_static_fields_for(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var))->get_MD5WithRsaEncryption_5(); NullCheck(L_9); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_9, _stringLiteralD0C6D4AFE953D9CE14E2F81B70259C4AB735DF92, L_10); // algorithms.Add("SHA1WITHRSAENCRYPTION", PkcsObjectIdentifiers.Sha1WithRsaEncryption); RuntimeObject* L_11 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_algorithms_0(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_12 = ((PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields*)il2cpp_codegen_static_fields_for(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var))->get_Sha1WithRsaEncryption_6(); NullCheck(L_11); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_11, _stringLiteral5F1A7897AF6D5097460B156B520C63C705855CA1, L_12); // algorithms.Add("SHA1WITHRSA", PkcsObjectIdentifiers.Sha1WithRsaEncryption); RuntimeObject* L_13 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_algorithms_0(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_14 = ((PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields*)il2cpp_codegen_static_fields_for(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var))->get_Sha1WithRsaEncryption_6(); NullCheck(L_13); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_13, _stringLiteral6E7CBDA006FCC8893A6B1EEE63FAEFCD7045475E, L_14); // algorithms.Add("SHA224WITHRSAENCRYPTION", PkcsObjectIdentifiers.Sha224WithRsaEncryption); RuntimeObject* L_15 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_algorithms_0(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_16 = ((PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields*)il2cpp_codegen_static_fields_for(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var))->get_Sha224WithRsaEncryption_15(); NullCheck(L_15); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_15, _stringLiteralF61B6A23CE93B6AFE193ECD7C22723977C0AE9BE, L_16); // algorithms.Add("SHA224WITHRSA", PkcsObjectIdentifiers.Sha224WithRsaEncryption); RuntimeObject* L_17 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_algorithms_0(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_18 = ((PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields*)il2cpp_codegen_static_fields_for(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var))->get_Sha224WithRsaEncryption_15(); NullCheck(L_17); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_17, _stringLiteralCDDE7E78FCC67275355EB8BF4E41C8CC2315DFE7, L_18); // algorithms.Add("SHA256WITHRSAENCRYPTION", PkcsObjectIdentifiers.Sha256WithRsaEncryption); RuntimeObject* L_19 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_algorithms_0(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_20 = ((PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields*)il2cpp_codegen_static_fields_for(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var))->get_Sha256WithRsaEncryption_12(); NullCheck(L_19); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_19, _stringLiteralCCAD23ED8EFB047E7DDC3717C32DD95445488797, L_20); // algorithms.Add("SHA256WITHRSA", PkcsObjectIdentifiers.Sha256WithRsaEncryption); RuntimeObject* L_21 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_algorithms_0(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_22 = ((PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields*)il2cpp_codegen_static_fields_for(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var))->get_Sha256WithRsaEncryption_12(); NullCheck(L_21); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_21, _stringLiteral08DFED9B56DBA3DB573A6E23566527810FD3F2D4, L_22); // algorithms.Add("SHA384WITHRSAENCRYPTION", PkcsObjectIdentifiers.Sha384WithRsaEncryption); RuntimeObject* L_23 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_algorithms_0(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_24 = ((PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields*)il2cpp_codegen_static_fields_for(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var))->get_Sha384WithRsaEncryption_13(); NullCheck(L_23); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_23, _stringLiteral7BAB6C1AFDE0F5062E870520A697C2B67A8CFC76, L_24); // algorithms.Add("SHA384WITHRSA", PkcsObjectIdentifiers.Sha384WithRsaEncryption); RuntimeObject* L_25 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_algorithms_0(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_26 = ((PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields*)il2cpp_codegen_static_fields_for(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var))->get_Sha384WithRsaEncryption_13(); NullCheck(L_25); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_25, _stringLiteralB9781714FE806F152E476A132D5187A200851483, L_26); // algorithms.Add("SHA512WITHRSAENCRYPTION", PkcsObjectIdentifiers.Sha512WithRsaEncryption); RuntimeObject* L_27 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_algorithms_0(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_28 = ((PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields*)il2cpp_codegen_static_fields_for(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var))->get_Sha512WithRsaEncryption_14(); NullCheck(L_27); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_27, _stringLiteral9C86DC74663ECC1CCD6B393712268E40409B9836, L_28); // algorithms.Add("SHA512WITHRSA", PkcsObjectIdentifiers.Sha512WithRsaEncryption); RuntimeObject* L_29 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_algorithms_0(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_30 = ((PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields*)il2cpp_codegen_static_fields_for(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var))->get_Sha512WithRsaEncryption_14(); NullCheck(L_29); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_29, _stringLiteral4C8FC0834485EA54FDC1DD8AEC5C3965BE95DFEA, L_30); // algorithms.Add("SHA1WITHRSAANDMGF1", PkcsObjectIdentifiers.IdRsassaPss); RuntimeObject* L_31 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_algorithms_0(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_32 = ((PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields*)il2cpp_codegen_static_fields_for(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var))->get_IdRsassaPss_11(); NullCheck(L_31); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_31, _stringLiteral0EBFEDCE71CC77070BD35887BBA6B3AC08479560, L_32); // algorithms.Add("SHA224WITHRSAANDMGF1", PkcsObjectIdentifiers.IdRsassaPss); RuntimeObject* L_33 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_algorithms_0(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_34 = ((PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields*)il2cpp_codegen_static_fields_for(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var))->get_IdRsassaPss_11(); NullCheck(L_33); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_33, _stringLiteral155A4BC12A234318BF135F4542D363DCE33CE8A5, L_34); // algorithms.Add("SHA256WITHRSAANDMGF1", PkcsObjectIdentifiers.IdRsassaPss); RuntimeObject* L_35 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_algorithms_0(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_36 = ((PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields*)il2cpp_codegen_static_fields_for(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var))->get_IdRsassaPss_11(); NullCheck(L_35); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_35, _stringLiteralB45413D5021961F635D2351C965C6FBA649B7EC9, L_36); // algorithms.Add("SHA384WITHRSAANDMGF1", PkcsObjectIdentifiers.IdRsassaPss); RuntimeObject* L_37 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_algorithms_0(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_38 = ((PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields*)il2cpp_codegen_static_fields_for(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var))->get_IdRsassaPss_11(); NullCheck(L_37); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_37, _stringLiteral40202E94CB94F4414051283AC5DD66540DCE9C28, L_38); // algorithms.Add("SHA512WITHRSAANDMGF1", PkcsObjectIdentifiers.IdRsassaPss); RuntimeObject* L_39 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_algorithms_0(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_40 = ((PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields*)il2cpp_codegen_static_fields_for(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var))->get_IdRsassaPss_11(); NullCheck(L_39); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_39, _stringLiteral2594D1B685BA6F00D4A64DE944F76318ED32B71E, L_40); // algorithms.Add("RIPEMD160WITHRSAENCRYPTION", TeleTrusTObjectIdentifiers.RsaSignatureWithRipeMD160); RuntimeObject* L_41 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_algorithms_0(); IL2CPP_RUNTIME_CLASS_INIT(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_42 = ((TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields*)il2cpp_codegen_static_fields_for(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_il2cpp_TypeInfo_var))->get_RsaSignatureWithRipeMD160_5(); NullCheck(L_41); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_41, _stringLiteral813661506A5DABD9B15FE77AA73D2864A4E115C6, L_42); // algorithms.Add("RIPEMD160WITHRSA", TeleTrusTObjectIdentifiers.RsaSignatureWithRipeMD160); RuntimeObject* L_43 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_algorithms_0(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_44 = ((TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields*)il2cpp_codegen_static_fields_for(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_il2cpp_TypeInfo_var))->get_RsaSignatureWithRipeMD160_5(); NullCheck(L_43); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_43, _stringLiteral6EB88BB6D8FEDB1AA37407138A21C08BFA38EB34, L_44); // algorithms.Add("RIPEMD128WITHRSAENCRYPTION", TeleTrusTObjectIdentifiers.RsaSignatureWithRipeMD128); RuntimeObject* L_45 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_algorithms_0(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_46 = ((TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields*)il2cpp_codegen_static_fields_for(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_il2cpp_TypeInfo_var))->get_RsaSignatureWithRipeMD128_6(); NullCheck(L_45); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_45, _stringLiteral37012E583DD1F1C8F246850642B98606CD18CCCC, L_46); // algorithms.Add("RIPEMD128WITHRSA", TeleTrusTObjectIdentifiers.RsaSignatureWithRipeMD128); RuntimeObject* L_47 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_algorithms_0(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_48 = ((TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields*)il2cpp_codegen_static_fields_for(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_il2cpp_TypeInfo_var))->get_RsaSignatureWithRipeMD128_6(); NullCheck(L_47); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_47, _stringLiteral9C1576AC27CAC8326EA3CDE03CE7A486E12F423A, L_48); // algorithms.Add("RIPEMD256WITHRSAENCRYPTION", TeleTrusTObjectIdentifiers.RsaSignatureWithRipeMD256); RuntimeObject* L_49 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_algorithms_0(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_50 = ((TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields*)il2cpp_codegen_static_fields_for(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_il2cpp_TypeInfo_var))->get_RsaSignatureWithRipeMD256_7(); NullCheck(L_49); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_49, _stringLiteral708429802CBDDA081DA338B83F5F3E07D419993A, L_50); // algorithms.Add("RIPEMD256WITHRSA", TeleTrusTObjectIdentifiers.RsaSignatureWithRipeMD256); RuntimeObject* L_51 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_algorithms_0(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_52 = ((TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_StaticFields*)il2cpp_codegen_static_fields_for(TeleTrusTObjectIdentifiers_t1B851F0696360482F821BFDC8FEBE00F01AE6D9E_il2cpp_TypeInfo_var))->get_RsaSignatureWithRipeMD256_7(); NullCheck(L_51); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_51, _stringLiteral26E294139715163FBE9A18930A1D8CF567887641, L_52); // algorithms.Add("SHA1WITHDSA", X9ObjectIdentifiers.IdDsaWithSha1); RuntimeObject* L_53 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_algorithms_0(); IL2CPP_RUNTIME_CLASS_INIT(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_54 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_IdDsaWithSha1_50(); NullCheck(L_53); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_53, _stringLiteral532EDB63D38BE849355CC05BBD302AC7006BF005, L_54); // algorithms.Add("DSAWITHSHA1", X9ObjectIdentifiers.IdDsaWithSha1); RuntimeObject* L_55 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_algorithms_0(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_56 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_IdDsaWithSha1_50(); NullCheck(L_55); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_55, _stringLiteral6D61A5962793C9EE547ED83C65E277AFBF5D42D7, L_56); // algorithms.Add("SHA224WITHDSA", NistObjectIdentifiers.DsaWithSha224); RuntimeObject* L_57 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_algorithms_0(); IL2CPP_RUNTIME_CLASS_INIT(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_58 = ((NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields*)il2cpp_codegen_static_fields_for(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var))->get_DsaWithSha224_41(); NullCheck(L_57); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_57, _stringLiteral83A241C52DAFE0694C5B5B264CF687E09DF793D6, L_58); // algorithms.Add("SHA256WITHDSA", NistObjectIdentifiers.DsaWithSha256); RuntimeObject* L_59 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_algorithms_0(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_60 = ((NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields*)il2cpp_codegen_static_fields_for(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var))->get_DsaWithSha256_42(); NullCheck(L_59); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_59, _stringLiteralDDB1E5CA18A9EC127B1F85C807C5ED8AC4DC732F, L_60); // algorithms.Add("SHA384WITHDSA", NistObjectIdentifiers.DsaWithSha384); RuntimeObject* L_61 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_algorithms_0(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_62 = ((NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields*)il2cpp_codegen_static_fields_for(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var))->get_DsaWithSha384_43(); NullCheck(L_61); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_61, _stringLiteralC715ABAB0194B09F559C12418DDEFBF93E0D80C5, L_62); // algorithms.Add("SHA512WITHDSA", NistObjectIdentifiers.DsaWithSha512); RuntimeObject* L_63 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_algorithms_0(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_64 = ((NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields*)il2cpp_codegen_static_fields_for(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var))->get_DsaWithSha512_44(); NullCheck(L_63); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_63, _stringLiteral95CECB12EF5997654615668E9338F78021E26420, L_64); // algorithms.Add("SHA1WITHECDSA", X9ObjectIdentifiers.ECDsaWithSha1); RuntimeObject* L_65 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_algorithms_0(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_66 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_ECDsaWithSha1_10(); NullCheck(L_65); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_65, _stringLiteral91418DC5CE55D8F41D97B9EB719D8DA971A0A80D, L_66); // algorithms.Add("ECDSAWITHSHA1", X9ObjectIdentifiers.ECDsaWithSha1); RuntimeObject* L_67 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_algorithms_0(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_68 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_ECDsaWithSha1_10(); NullCheck(L_67); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_67, _stringLiteralA7AD513E5696D5979899AAB85472797E009007D2, L_68); // algorithms.Add("SHA224WITHECDSA", X9ObjectIdentifiers.ECDsaWithSha224); RuntimeObject* L_69 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_algorithms_0(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_70 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_ECDsaWithSha224_15(); NullCheck(L_69); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_69, _stringLiteral33038386B47A94676767B67BA384962CDFC9EF7C, L_70); // algorithms.Add("SHA256WITHECDSA", X9ObjectIdentifiers.ECDsaWithSha256); RuntimeObject* L_71 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_algorithms_0(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_72 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_ECDsaWithSha256_16(); NullCheck(L_71); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_71, _stringLiteralF39378FDB228D1C899BABB186E12163DE48302F5, L_72); // algorithms.Add("SHA384WITHECDSA", X9ObjectIdentifiers.ECDsaWithSha384); RuntimeObject* L_73 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_algorithms_0(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_74 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_ECDsaWithSha384_17(); NullCheck(L_73); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_73, _stringLiteral8BB58B989DAAEFFC9FC49609A564874097684981, L_74); // algorithms.Add("SHA512WITHECDSA", X9ObjectIdentifiers.ECDsaWithSha512); RuntimeObject* L_75 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_algorithms_0(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_76 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_ECDsaWithSha512_18(); NullCheck(L_75); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_75, _stringLiteral1FDF3C1B76238A2773D9417DEDEF895091BA1556, L_76); // algorithms.Add("GOST3411WITHGOST3410", CryptoProObjectIdentifiers.GostR3411x94WithGostR3410x94); RuntimeObject* L_77 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_algorithms_0(); IL2CPP_RUNTIME_CLASS_INIT(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_78 = ((CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields*)il2cpp_codegen_static_fields_for(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_il2cpp_TypeInfo_var))->get_GostR3411x94WithGostR3410x94_7(); NullCheck(L_77); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_77, _stringLiteral4351851F76A2B0C936892EAF654EAD35BC2A592A, L_78); // algorithms.Add("GOST3411WITHGOST3410-94", CryptoProObjectIdentifiers.GostR3411x94WithGostR3410x94); RuntimeObject* L_79 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_algorithms_0(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_80 = ((CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields*)il2cpp_codegen_static_fields_for(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_il2cpp_TypeInfo_var))->get_GostR3411x94WithGostR3410x94_7(); NullCheck(L_79); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_79, _stringLiteral5C27C08176CCDC624C16868C80507E2DD754531C, L_80); // algorithms.Add("GOST3411WITHECGOST3410", CryptoProObjectIdentifiers.GostR3411x94WithGostR3410x2001); RuntimeObject* L_81 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_algorithms_0(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_82 = ((CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields*)il2cpp_codegen_static_fields_for(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_il2cpp_TypeInfo_var))->get_GostR3411x94WithGostR3410x2001_8(); NullCheck(L_81); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_81, _stringLiteralB4D001C31FBECAB595B5B52B652E63F27D0364A7, L_82); // algorithms.Add("GOST3411WITHECGOST3410-2001", CryptoProObjectIdentifiers.GostR3411x94WithGostR3410x2001); RuntimeObject* L_83 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_algorithms_0(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_84 = ((CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields*)il2cpp_codegen_static_fields_for(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_il2cpp_TypeInfo_var))->get_GostR3411x94WithGostR3410x2001_8(); NullCheck(L_83); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_83, _stringLiteral5A06357B575D7058D36E87C495E9D91FCD00437A, L_84); // algorithms.Add("GOST3411WITHGOST3410-2001", CryptoProObjectIdentifiers.GostR3411x94WithGostR3410x2001); RuntimeObject* L_85 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_algorithms_0(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_86 = ((CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields*)il2cpp_codegen_static_fields_for(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_il2cpp_TypeInfo_var))->get_GostR3411x94WithGostR3410x2001_8(); NullCheck(L_85); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_85, _stringLiteralB8922EC46451A10AF98A8BC936A0D7240221208C, L_86); // noParams.Add(X9ObjectIdentifiers.ECDsaWithSha1); RuntimeObject* L_87 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_noParams_2(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_88 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_ECDsaWithSha1_10(); NullCheck(L_87); InterfaceActionInvoker1< RuntimeObject * >::Invoke(0 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections.ISet::Add(System.Object) */, ISet_t5A23607F3EDC64EF08417F0C1A4212EB39469049_il2cpp_TypeInfo_var, L_87, L_88); // noParams.Add(X9ObjectIdentifiers.ECDsaWithSha224); RuntimeObject* L_89 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_noParams_2(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_90 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_ECDsaWithSha224_15(); NullCheck(L_89); InterfaceActionInvoker1< RuntimeObject * >::Invoke(0 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections.ISet::Add(System.Object) */, ISet_t5A23607F3EDC64EF08417F0C1A4212EB39469049_il2cpp_TypeInfo_var, L_89, L_90); // noParams.Add(X9ObjectIdentifiers.ECDsaWithSha256); RuntimeObject* L_91 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_noParams_2(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_92 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_ECDsaWithSha256_16(); NullCheck(L_91); InterfaceActionInvoker1< RuntimeObject * >::Invoke(0 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections.ISet::Add(System.Object) */, ISet_t5A23607F3EDC64EF08417F0C1A4212EB39469049_il2cpp_TypeInfo_var, L_91, L_92); // noParams.Add(X9ObjectIdentifiers.ECDsaWithSha384); RuntimeObject* L_93 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_noParams_2(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_94 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_ECDsaWithSha384_17(); NullCheck(L_93); InterfaceActionInvoker1< RuntimeObject * >::Invoke(0 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections.ISet::Add(System.Object) */, ISet_t5A23607F3EDC64EF08417F0C1A4212EB39469049_il2cpp_TypeInfo_var, L_93, L_94); // noParams.Add(X9ObjectIdentifiers.ECDsaWithSha512); RuntimeObject* L_95 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_noParams_2(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_96 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_ECDsaWithSha512_18(); NullCheck(L_95); InterfaceActionInvoker1< RuntimeObject * >::Invoke(0 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections.ISet::Add(System.Object) */, ISet_t5A23607F3EDC64EF08417F0C1A4212EB39469049_il2cpp_TypeInfo_var, L_95, L_96); // noParams.Add(X9ObjectIdentifiers.IdDsaWithSha1); RuntimeObject* L_97 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_noParams_2(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_98 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_IdDsaWithSha1_50(); NullCheck(L_97); InterfaceActionInvoker1< RuntimeObject * >::Invoke(0 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections.ISet::Add(System.Object) */, ISet_t5A23607F3EDC64EF08417F0C1A4212EB39469049_il2cpp_TypeInfo_var, L_97, L_98); // noParams.Add(NistObjectIdentifiers.DsaWithSha224); RuntimeObject* L_99 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_noParams_2(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_100 = ((NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields*)il2cpp_codegen_static_fields_for(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var))->get_DsaWithSha224_41(); NullCheck(L_99); InterfaceActionInvoker1< RuntimeObject * >::Invoke(0 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections.ISet::Add(System.Object) */, ISet_t5A23607F3EDC64EF08417F0C1A4212EB39469049_il2cpp_TypeInfo_var, L_99, L_100); // noParams.Add(NistObjectIdentifiers.DsaWithSha256); RuntimeObject* L_101 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_noParams_2(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_102 = ((NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields*)il2cpp_codegen_static_fields_for(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var))->get_DsaWithSha256_42(); NullCheck(L_101); InterfaceActionInvoker1< RuntimeObject * >::Invoke(0 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections.ISet::Add(System.Object) */, ISet_t5A23607F3EDC64EF08417F0C1A4212EB39469049_il2cpp_TypeInfo_var, L_101, L_102); // noParams.Add(NistObjectIdentifiers.DsaWithSha384); RuntimeObject* L_103 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_noParams_2(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_104 = ((NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields*)il2cpp_codegen_static_fields_for(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var))->get_DsaWithSha384_43(); NullCheck(L_103); InterfaceActionInvoker1< RuntimeObject * >::Invoke(0 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections.ISet::Add(System.Object) */, ISet_t5A23607F3EDC64EF08417F0C1A4212EB39469049_il2cpp_TypeInfo_var, L_103, L_104); // noParams.Add(NistObjectIdentifiers.DsaWithSha512); RuntimeObject* L_105 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_noParams_2(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_106 = ((NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields*)il2cpp_codegen_static_fields_for(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var))->get_DsaWithSha512_44(); NullCheck(L_105); InterfaceActionInvoker1< RuntimeObject * >::Invoke(0 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections.ISet::Add(System.Object) */, ISet_t5A23607F3EDC64EF08417F0C1A4212EB39469049_il2cpp_TypeInfo_var, L_105, L_106); // noParams.Add(CryptoProObjectIdentifiers.GostR3411x94WithGostR3410x94); RuntimeObject* L_107 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_noParams_2(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_108 = ((CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields*)il2cpp_codegen_static_fields_for(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_il2cpp_TypeInfo_var))->get_GostR3411x94WithGostR3410x94_7(); NullCheck(L_107); InterfaceActionInvoker1< RuntimeObject * >::Invoke(0 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections.ISet::Add(System.Object) */, ISet_t5A23607F3EDC64EF08417F0C1A4212EB39469049_il2cpp_TypeInfo_var, L_107, L_108); // noParams.Add(CryptoProObjectIdentifiers.GostR3411x94WithGostR3410x2001); RuntimeObject* L_109 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_noParams_2(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_110 = ((CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_StaticFields*)il2cpp_codegen_static_fields_for(CryptoProObjectIdentifiers_tF660D211A5B56A921578D247745351847ECA7C0C_il2cpp_TypeInfo_var))->get_GostR3411x94WithGostR3410x2001_8(); NullCheck(L_109); InterfaceActionInvoker1< RuntimeObject * >::Invoke(0 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections.ISet::Add(System.Object) */, ISet_t5A23607F3EDC64EF08417F0C1A4212EB39469049_il2cpp_TypeInfo_var, L_109, L_110); // AlgorithmIdentifier sha1AlgId = new AlgorithmIdentifier(OiwObjectIdentifiers.IdSha1, DerNull.Instance); IL2CPP_RUNTIME_CLASS_INIT(OiwObjectIdentifiers_tACD1AAAAC365CD86B5E7F0DE22B66469A4A93CED_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_111 = ((OiwObjectIdentifiers_tACD1AAAAC365CD86B5E7F0DE22B66469A4A93CED_StaticFields*)il2cpp_codegen_static_fields_for(OiwObjectIdentifiers_tACD1AAAAC365CD86B5E7F0DE22B66469A4A93CED_il2cpp_TypeInfo_var))->get_IdSha1_8(); IL2CPP_RUNTIME_CLASS_INIT(DerNull_t020168AF07318033108544C00C803CD7AEB97239_il2cpp_TypeInfo_var); DerNull_t020168AF07318033108544C00C803CD7AEB97239 * L_112 = ((DerNull_t020168AF07318033108544C00C803CD7AEB97239_StaticFields*)il2cpp_codegen_static_fields_for(DerNull_t020168AF07318033108544C00C803CD7AEB97239_il2cpp_TypeInfo_var))->get_Instance_2(); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_113 = (AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 *)il2cpp_codegen_object_new(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9_il2cpp_TypeInfo_var); AlgorithmIdentifier__ctor_m942B7921A63CC0139DAD59B57D2B41BBA20EF608(L_113, L_111, L_112, /*hidden argument*/NULL); V_0 = L_113; // exParams.Add("SHA1WITHRSAANDMGF1", CreatePssParams(sha1AlgId, 20)); RuntimeObject* L_114 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_exParams_1(); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_115 = V_0; RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69 * L_116; L_116 = X509Utilities_CreatePssParams_mA29AEA87F037942C42652F2077C7CA8116C1FE52(L_115, ((int32_t)20), /*hidden argument*/NULL); NullCheck(L_114); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_114, _stringLiteral0EBFEDCE71CC77070BD35887BBA6B3AC08479560, L_116); // AlgorithmIdentifier sha224AlgId = new AlgorithmIdentifier(NistObjectIdentifiers.IdSha224, DerNull.Instance); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_117 = ((NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields*)il2cpp_codegen_static_fields_for(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var))->get_IdSha224_5(); DerNull_t020168AF07318033108544C00C803CD7AEB97239 * L_118 = ((DerNull_t020168AF07318033108544C00C803CD7AEB97239_StaticFields*)il2cpp_codegen_static_fields_for(DerNull_t020168AF07318033108544C00C803CD7AEB97239_il2cpp_TypeInfo_var))->get_Instance_2(); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_119 = (AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 *)il2cpp_codegen_object_new(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9_il2cpp_TypeInfo_var); AlgorithmIdentifier__ctor_m942B7921A63CC0139DAD59B57D2B41BBA20EF608(L_119, L_117, L_118, /*hidden argument*/NULL); V_1 = L_119; // exParams.Add("SHA224WITHRSAANDMGF1", CreatePssParams(sha224AlgId, 28)); RuntimeObject* L_120 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_exParams_1(); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_121 = V_1; RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69 * L_122; L_122 = X509Utilities_CreatePssParams_mA29AEA87F037942C42652F2077C7CA8116C1FE52(L_121, ((int32_t)28), /*hidden argument*/NULL); NullCheck(L_120); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_120, _stringLiteral155A4BC12A234318BF135F4542D363DCE33CE8A5, L_122); // AlgorithmIdentifier sha256AlgId = new AlgorithmIdentifier(NistObjectIdentifiers.IdSha256, DerNull.Instance); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_123 = ((NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields*)il2cpp_codegen_static_fields_for(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var))->get_IdSha256_2(); DerNull_t020168AF07318033108544C00C803CD7AEB97239 * L_124 = ((DerNull_t020168AF07318033108544C00C803CD7AEB97239_StaticFields*)il2cpp_codegen_static_fields_for(DerNull_t020168AF07318033108544C00C803CD7AEB97239_il2cpp_TypeInfo_var))->get_Instance_2(); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_125 = (AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 *)il2cpp_codegen_object_new(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9_il2cpp_TypeInfo_var); AlgorithmIdentifier__ctor_m942B7921A63CC0139DAD59B57D2B41BBA20EF608(L_125, L_123, L_124, /*hidden argument*/NULL); V_2 = L_125; // exParams.Add("SHA256WITHRSAANDMGF1", CreatePssParams(sha256AlgId, 32)); RuntimeObject* L_126 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_exParams_1(); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_127 = V_2; RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69 * L_128; L_128 = X509Utilities_CreatePssParams_mA29AEA87F037942C42652F2077C7CA8116C1FE52(L_127, ((int32_t)32), /*hidden argument*/NULL); NullCheck(L_126); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_126, _stringLiteralB45413D5021961F635D2351C965C6FBA649B7EC9, L_128); // AlgorithmIdentifier sha384AlgId = new AlgorithmIdentifier(NistObjectIdentifiers.IdSha384, DerNull.Instance); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_129 = ((NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields*)il2cpp_codegen_static_fields_for(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var))->get_IdSha384_3(); DerNull_t020168AF07318033108544C00C803CD7AEB97239 * L_130 = ((DerNull_t020168AF07318033108544C00C803CD7AEB97239_StaticFields*)il2cpp_codegen_static_fields_for(DerNull_t020168AF07318033108544C00C803CD7AEB97239_il2cpp_TypeInfo_var))->get_Instance_2(); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_131 = (AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 *)il2cpp_codegen_object_new(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9_il2cpp_TypeInfo_var); AlgorithmIdentifier__ctor_m942B7921A63CC0139DAD59B57D2B41BBA20EF608(L_131, L_129, L_130, /*hidden argument*/NULL); V_3 = L_131; // exParams.Add("SHA384WITHRSAANDMGF1", CreatePssParams(sha384AlgId, 48)); RuntimeObject* L_132 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_exParams_1(); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_133 = V_3; RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69 * L_134; L_134 = X509Utilities_CreatePssParams_mA29AEA87F037942C42652F2077C7CA8116C1FE52(L_133, ((int32_t)48), /*hidden argument*/NULL); NullCheck(L_132); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_132, _stringLiteral40202E94CB94F4414051283AC5DD66540DCE9C28, L_134); // AlgorithmIdentifier sha512AlgId = new AlgorithmIdentifier(NistObjectIdentifiers.IdSha512, DerNull.Instance); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_135 = ((NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_StaticFields*)il2cpp_codegen_static_fields_for(NistObjectIdentifiers_t864BE36E669E4BE4DADC60354429C183F8BEE9AA_il2cpp_TypeInfo_var))->get_IdSha512_4(); DerNull_t020168AF07318033108544C00C803CD7AEB97239 * L_136 = ((DerNull_t020168AF07318033108544C00C803CD7AEB97239_StaticFields*)il2cpp_codegen_static_fields_for(DerNull_t020168AF07318033108544C00C803CD7AEB97239_il2cpp_TypeInfo_var))->get_Instance_2(); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_137 = (AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 *)il2cpp_codegen_object_new(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9_il2cpp_TypeInfo_var); AlgorithmIdentifier__ctor_m942B7921A63CC0139DAD59B57D2B41BBA20EF608(L_137, L_135, L_136, /*hidden argument*/NULL); V_4 = L_137; // exParams.Add("SHA512WITHRSAANDMGF1", CreatePssParams(sha512AlgId, 64)); RuntimeObject* L_138 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_exParams_1(); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_139 = V_4; RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69 * L_140; L_140 = X509Utilities_CreatePssParams_mA29AEA87F037942C42652F2077C7CA8116C1FE52(L_139, ((int32_t)64), /*hidden argument*/NULL); NullCheck(L_138); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_138, _stringLiteral2594D1B685BA6F00D4A64DE944F76318ED32B71E, L_140); // } return; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Utilities::CreatePssParams(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69 * X509Utilities_CreatePssParams_mA29AEA87F037942C42652F2077C7CA8116C1FE52 (AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___hashAlgId0, int32_t ___saltSize1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // return new RsassaPssParameters( // hashAlgId, // new AlgorithmIdentifier(PkcsObjectIdentifiers.IdMgf1, hashAlgId), // new DerInteger(saltSize), // new DerInteger(1)); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_0 = ___hashAlgId0; IL2CPP_RUNTIME_CLASS_INIT(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_1 = ((PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_StaticFields*)il2cpp_codegen_static_fields_for(PkcsObjectIdentifiers_t9908A5A7BF3619E91B97971111F49D6178D18516_il2cpp_TypeInfo_var))->get_IdMgf1_9(); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_2 = ___hashAlgId0; AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_3 = (AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 *)il2cpp_codegen_object_new(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9_il2cpp_TypeInfo_var); AlgorithmIdentifier__ctor_m942B7921A63CC0139DAD59B57D2B41BBA20EF608(L_3, L_1, L_2, /*hidden argument*/NULL); int32_t L_4 = ___saltSize1; DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * L_5 = (DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 *)il2cpp_codegen_object_new(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var); DerInteger__ctor_m014B0C2AADB00543E51D3621D5B93E030C47F6CA(L_5, L_4, /*hidden argument*/NULL); DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * L_6 = (DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 *)il2cpp_codegen_object_new(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var); DerInteger__ctor_m014B0C2AADB00543E51D3621D5B93E030C47F6CA(L_6, 1, /*hidden argument*/NULL); RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69 * L_7 = (RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69 *)il2cpp_codegen_object_new(RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69_il2cpp_TypeInfo_var); RsassaPssParameters__ctor_m7D750278B1EDDC3E337098DCC4DCC4BCE4F23027(L_7, L_0, L_3, L_5, L_6, /*hidden argument*/NULL); return L_7; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Utilities::GetAlgorithmOid(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * X509Utilities_GetAlgorithmOid_m9F775A603669DE9A5E4FDCC0A56F8C0B9F7DAEE4 (String_t* ___algorithmName0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // algorithmName = BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.ToUpperInvariant(algorithmName); String_t* L_0 = ___algorithmName0; IL2CPP_RUNTIME_CLASS_INIT(Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var); String_t* L_1; L_1 = Platform_ToUpperInvariant_m306E35263EC9F3B4FE0722C3173BAAFDB1B3E158(L_0, /*hidden argument*/NULL); ___algorithmName0 = L_1; // if (algorithms.Contains(algorithmName)) IL2CPP_RUNTIME_CLASS_INIT(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var); RuntimeObject* L_2 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_algorithms_0(); String_t* L_3 = ___algorithmName0; NullCheck(L_2); bool L_4; L_4 = InterfaceFuncInvoker1< bool, RuntimeObject * >::Invoke(4 /* System.Boolean System.Collections.IDictionary::Contains(System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_2, L_3); if (!L_4) { goto IL_0026; } } { // return (DerObjectIdentifier) algorithms[algorithmName]; IL2CPP_RUNTIME_CLASS_INIT(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var); RuntimeObject* L_5 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_algorithms_0(); String_t* L_6 = ___algorithmName0; NullCheck(L_5); RuntimeObject * L_7; L_7 = InterfaceFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IDictionary::get_Item(System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_5, L_6); return ((DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *)CastclassClass((RuntimeObject*)L_7, DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var)); } IL_0026: { // return new DerObjectIdentifier(algorithmName); String_t* L_8 = ___algorithmName0; DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_9 = (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *)il2cpp_codegen_object_new(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); DerObjectIdentifier__ctor_m8009342D7B2AD40B1E19E6AB958141979B7405CD(L_9, L_8, /*hidden argument*/NULL); return L_9; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Utilities::GetSigAlgID(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * X509Utilities_GetSigAlgID_mA149FCB12BE7F0FC7331A3234DAB2CCAEFB86F59 (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___sigOid0, String_t* ___algorithmName1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerNull_t020168AF07318033108544C00C803CD7AEB97239_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ISet_t5A23607F3EDC64EF08417F0C1A4212EB39469049_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (noParams.Contains(sigOid)) IL2CPP_RUNTIME_CLASS_INIT(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var); RuntimeObject* L_0 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_noParams_2(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_1 = ___sigOid0; NullCheck(L_0); bool L_2; L_2 = InterfaceFuncInvoker1< bool, RuntimeObject * >::Invoke(3 /* System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections.ISet::Contains(System.Object) */, ISet_t5A23607F3EDC64EF08417F0C1A4212EB39469049_il2cpp_TypeInfo_var, L_0, L_1); if (!L_2) { goto IL_0014; } } { // return new AlgorithmIdentifier(sigOid); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_3 = ___sigOid0; AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_4 = (AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 *)il2cpp_codegen_object_new(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9_il2cpp_TypeInfo_var); AlgorithmIdentifier__ctor_mA45787B3AB8C719957BA61423CD3FA852BFB5AE3(L_4, L_3, /*hidden argument*/NULL); return L_4; } IL_0014: { // algorithmName = BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.ToUpperInvariant(algorithmName); String_t* L_5 = ___algorithmName1; IL2CPP_RUNTIME_CLASS_INIT(Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var); String_t* L_6; L_6 = Platform_ToUpperInvariant_m306E35263EC9F3B4FE0722C3173BAAFDB1B3E158(L_5, /*hidden argument*/NULL); ___algorithmName1 = L_6; // if (exParams.Contains(algorithmName)) IL2CPP_RUNTIME_CLASS_INIT(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var); RuntimeObject* L_7 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_exParams_1(); String_t* L_8 = ___algorithmName1; NullCheck(L_7); bool L_9; L_9 = InterfaceFuncInvoker1< bool, RuntimeObject * >::Invoke(4 /* System.Boolean System.Collections.IDictionary::Contains(System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_7, L_8); if (!L_9) { goto IL_0040; } } { // return new AlgorithmIdentifier(sigOid, (Asn1Encodable) exParams[algorithmName]); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_10 = ___sigOid0; IL2CPP_RUNTIME_CLASS_INIT(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var); RuntimeObject* L_11 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_exParams_1(); String_t* L_12 = ___algorithmName1; NullCheck(L_11); RuntimeObject * L_13; L_13 = InterfaceFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IDictionary::get_Item(System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_11, L_12); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_14 = (AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 *)il2cpp_codegen_object_new(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9_il2cpp_TypeInfo_var); AlgorithmIdentifier__ctor_m942B7921A63CC0139DAD59B57D2B41BBA20EF608(L_14, L_10, ((Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *)CastclassClass((RuntimeObject*)L_13, Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); return L_14; } IL_0040: { // return new AlgorithmIdentifier(sigOid, DerNull.Instance); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_15 = ___sigOid0; IL2CPP_RUNTIME_CLASS_INIT(DerNull_t020168AF07318033108544C00C803CD7AEB97239_il2cpp_TypeInfo_var); DerNull_t020168AF07318033108544C00C803CD7AEB97239 * L_16 = ((DerNull_t020168AF07318033108544C00C803CD7AEB97239_StaticFields*)il2cpp_codegen_static_fields_for(DerNull_t020168AF07318033108544C00C803CD7AEB97239_il2cpp_TypeInfo_var))->get_Instance_2(); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_17 = (AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 *)il2cpp_codegen_object_new(AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9_il2cpp_TypeInfo_var); AlgorithmIdentifier__ctor_m942B7921A63CC0139DAD59B57D2B41BBA20EF608(L_17, L_15, L_16, /*hidden argument*/NULL); return L_17; } } // System.Collections.IEnumerable BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Utilities::GetAlgNames() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* X509Utilities_GetAlgNames_mD83E9C06473AD2CFCFB7ACF02458BB69AF429932 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EnumerableProxy_t026114E7F2A8CD4B2FA989282FE080341A4614E2_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // return new EnumerableProxy(algorithms.Keys); IL2CPP_RUNTIME_CLASS_INIT(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var); RuntimeObject* L_0 = ((X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_StaticFields*)il2cpp_codegen_static_fields_for(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var))->get_algorithms_0(); NullCheck(L_0); RuntimeObject* L_1; L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(2 /* System.Collections.ICollection System.Collections.IDictionary::get_Keys() */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_0); EnumerableProxy_t026114E7F2A8CD4B2FA989282FE080341A4614E2 * L_2 = (EnumerableProxy_t026114E7F2A8CD4B2FA989282FE080341A4614E2 *)il2cpp_codegen_object_new(EnumerableProxy_t026114E7F2A8CD4B2FA989282FE080341A4614E2_il2cpp_TypeInfo_var); EnumerableProxy__ctor_m3A29836DAA548DB5ADE9DF4D26EE061EF50B34F5(L_2, L_1, /*hidden argument*/NULL); return L_2; } } // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Utilities::GetSignatureForObject(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier,System.String,BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter,BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* X509Utilities_GetSignatureForObject_m57704A995906ABDD158E7B520106A65B6AA51640 (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___sigOid0, String_t* ___sigName1, AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * ___privateKey2, SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * ___random3, Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * ___ae4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ISigner_tCCA744D5676F335002A9182CD1A47660B2100EEA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ParametersWithRandom_t557A9B373F5F2998BE6C0461812FBE4EB73425AC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SignerUtilities_t85A42F8179A404E46148D49278854CCF5ED2FB13_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_1 = NULL; { // if (sigOid == null) DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_0 = ___sigOid0; if (L_0) { goto IL_000e; } } { // throw new ArgumentNullException("sigOid"); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9DB6D87A2478B86E6D5C778B2FA8E6BA2602EF0D)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X509Utilities_GetSignatureForObject_m57704A995906ABDD158E7B520106A65B6AA51640_RuntimeMethod_var))); } IL_000e: { // ISigner sig = SignerUtilities.GetSigner(sigName); String_t* L_2 = ___sigName1; IL2CPP_RUNTIME_CLASS_INIT(SignerUtilities_t85A42F8179A404E46148D49278854CCF5ED2FB13_il2cpp_TypeInfo_var); RuntimeObject* L_3; L_3 = SignerUtilities_GetSigner_mA7DA1E4D22BE302FDF5EA80A7226F44FF18C5F64(L_2, /*hidden argument*/NULL); V_0 = L_3; // if (random != null) SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * L_4 = ___random3; if (!L_4) { goto IL_0028; } } { // sig.Init(true, new ParametersWithRandom(privateKey, random)); RuntimeObject* L_5 = V_0; AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * L_6 = ___privateKey2; SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * L_7 = ___random3; ParametersWithRandom_t557A9B373F5F2998BE6C0461812FBE4EB73425AC * L_8 = (ParametersWithRandom_t557A9B373F5F2998BE6C0461812FBE4EB73425AC *)il2cpp_codegen_object_new(ParametersWithRandom_t557A9B373F5F2998BE6C0461812FBE4EB73425AC_il2cpp_TypeInfo_var); ParametersWithRandom__ctor_m9CC2D927A9DC93F6BED2DE101C93E19050FEDF97(L_8, L_6, L_7, /*hidden argument*/NULL); NullCheck(L_5); InterfaceActionInvoker2< bool, RuntimeObject* >::Invoke(1 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ISigner::Init(System.Boolean,BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ICipherParameters) */, ISigner_tCCA744D5676F335002A9182CD1A47660B2100EEA_il2cpp_TypeInfo_var, L_5, (bool)1, L_8); // } goto IL_0030; } IL_0028: { // sig.Init(true, privateKey); RuntimeObject* L_9 = V_0; AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * L_10 = ___privateKey2; NullCheck(L_9); InterfaceActionInvoker2< bool, RuntimeObject* >::Invoke(1 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ISigner::Init(System.Boolean,BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ICipherParameters) */, ISigner_tCCA744D5676F335002A9182CD1A47660B2100EEA_il2cpp_TypeInfo_var, L_9, (bool)1, L_10); } IL_0030: { // byte[] encoded = ae.GetDerEncoded(); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_11 = ___ae4; NullCheck(L_11); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_12; L_12 = Asn1Encodable_GetDerEncoded_m30F357C2B994910EAC405FACBB5CA88181B3CD4E(L_11, /*hidden argument*/NULL); V_1 = L_12; // sig.BlockUpdate(encoded, 0, encoded.Length); RuntimeObject* L_13 = V_0; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_14 = V_1; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_15 = V_1; NullCheck(L_15); NullCheck(L_13); InterfaceActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(3 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ISigner::BlockUpdate(System.Byte[],System.Int32,System.Int32) */, ISigner_tCCA744D5676F335002A9182CD1A47660B2100EEA_il2cpp_TypeInfo_var, L_13, L_14, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_15)->max_length)))); // return sig.GenerateSignature(); RuntimeObject* L_16 = V_0; NullCheck(L_16); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_17; L_17 = InterfaceFuncInvoker0< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* >::Invoke(4 /* System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ISigner::GenerateSignature() */, ISigner_tCCA744D5676F335002A9182CD1A47660B2100EEA_il2cpp_TypeInfo_var, L_16); return L_17; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Utilities::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509Utilities__ctor_mC34313DC5EA3838D175232849A6D6E947CC86B51 (X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9 * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V1CertificateGenerator::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V1CertificateGenerator__ctor_mBFCDFE3A5100F4921DAD39EF2DB62C4028E46D3E (X509V1CertificateGenerator_t010F8B11CD3F1A8AC4E596141AD1AFA3C02E9EE9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&V1TbsCertificateGenerator_t0C696954AC2E290683DA1581EA144E4EBB8D2D10_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public X509V1CertificateGenerator() Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); // tbsGen = new V1TbsCertificateGenerator(); V1TbsCertificateGenerator_t0C696954AC2E290683DA1581EA144E4EBB8D2D10 * L_0 = (V1TbsCertificateGenerator_t0C696954AC2E290683DA1581EA144E4EBB8D2D10 *)il2cpp_codegen_object_new(V1TbsCertificateGenerator_t0C696954AC2E290683DA1581EA144E4EBB8D2D10_il2cpp_TypeInfo_var); V1TbsCertificateGenerator__ctor_m6A19B9ACB50AF491A6F64A3790EE62A695F8D701(L_0, /*hidden argument*/NULL); __this->set_tbsGen_0(L_0); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V1CertificateGenerator::Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V1CertificateGenerator_Reset_m87CC9EC46078323F6A2A6D7A92A165986D96DBD9 (X509V1CertificateGenerator_t010F8B11CD3F1A8AC4E596141AD1AFA3C02E9EE9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&V1TbsCertificateGenerator_t0C696954AC2E290683DA1581EA144E4EBB8D2D10_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // tbsGen = new V1TbsCertificateGenerator(); V1TbsCertificateGenerator_t0C696954AC2E290683DA1581EA144E4EBB8D2D10 * L_0 = (V1TbsCertificateGenerator_t0C696954AC2E290683DA1581EA144E4EBB8D2D10 *)il2cpp_codegen_object_new(V1TbsCertificateGenerator_t0C696954AC2E290683DA1581EA144E4EBB8D2D10_il2cpp_TypeInfo_var); V1TbsCertificateGenerator__ctor_m6A19B9ACB50AF491A6F64A3790EE62A695F8D701(L_0, /*hidden argument*/NULL); __this->set_tbsGen_0(L_0); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V1CertificateGenerator::SetSerialNumber(BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V1CertificateGenerator_SetSerialNumber_m9B0F85F8711706608A253114C6A97D52AF48DCC4 (X509V1CertificateGenerator_t010F8B11CD3F1A8AC4E596141AD1AFA3C02E9EE9 * __this, BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___serialNumber0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (serialNumber.SignValue <= 0) BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_0 = ___serialNumber0; NullCheck(L_0); int32_t L_1; L_1 = BigInteger_get_SignValue_mD40EFBE0702F356758CE49796DD9743BF06E5199_inline(L_0, /*hidden argument*/NULL); if ((((int32_t)L_1) > ((int32_t)0))) { goto IL_0019; } } { // throw new ArgumentException("serial number must be a positive integer", "serialNumber"); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_2 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCD91C3A88929E5B8D90E8470FE3B58D30BBAF946)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCFD54298D28239D041E35594E7B01E17329A82C5)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X509V1CertificateGenerator_SetSerialNumber_m9B0F85F8711706608A253114C6A97D52AF48DCC4_RuntimeMethod_var))); } IL_0019: { // tbsGen.SetSerialNumber(new DerInteger(serialNumber)); V1TbsCertificateGenerator_t0C696954AC2E290683DA1581EA144E4EBB8D2D10 * L_3 = __this->get_tbsGen_0(); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_4 = ___serialNumber0; DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * L_5 = (DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 *)il2cpp_codegen_object_new(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var); DerInteger__ctor_m612C6B5423FEC812F2B14987AF4D153C141750F0(L_5, L_4, /*hidden argument*/NULL); NullCheck(L_3); V1TbsCertificateGenerator_SetSerialNumber_mA197E0BAF391F9117BA61BD90D7A11594B922C2F_inline(L_3, L_5, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V1CertificateGenerator::SetIssuerDN(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V1CertificateGenerator_SetIssuerDN_mDFF26498C6AEA67EC927B033458C9C349E5224A4 (X509V1CertificateGenerator_t010F8B11CD3F1A8AC4E596141AD1AFA3C02E9EE9 * __this, X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * ___issuer0, const RuntimeMethod* method) { { // tbsGen.SetIssuer(issuer); V1TbsCertificateGenerator_t0C696954AC2E290683DA1581EA144E4EBB8D2D10 * L_0 = __this->get_tbsGen_0(); X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * L_1 = ___issuer0; NullCheck(L_0); V1TbsCertificateGenerator_SetIssuer_mEA098B787E9A98E3B09901823D1580548A26ABB8_inline(L_0, L_1, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V1CertificateGenerator::SetNotBefore(System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V1CertificateGenerator_SetNotBefore_m27D7990C899C34500C7943D4D41DC489AB6C255B (X509V1CertificateGenerator_t010F8B11CD3F1A8AC4E596141AD1AFA3C02E9EE9 * __this, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___date0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Time_tD684B1785E755395701D46F89A97609911CD6DDE_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // tbsGen.SetStartDate(new Time(date)); V1TbsCertificateGenerator_t0C696954AC2E290683DA1581EA144E4EBB8D2D10 * L_0 = __this->get_tbsGen_0(); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_1 = ___date0; Time_tD684B1785E755395701D46F89A97609911CD6DDE * L_2 = (Time_tD684B1785E755395701D46F89A97609911CD6DDE *)il2cpp_codegen_object_new(Time_tD684B1785E755395701D46F89A97609911CD6DDE_il2cpp_TypeInfo_var); Time__ctor_mBC7631425BAF63401048865DBFD7CDE253FEB313(L_2, L_1, /*hidden argument*/NULL); NullCheck(L_0); V1TbsCertificateGenerator_SetStartDate_mC23C4EA59BDA548B589DBB07C3E884C4322376DB_inline(L_0, L_2, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V1CertificateGenerator::SetNotAfter(System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V1CertificateGenerator_SetNotAfter_m6D63DC01A28DFEC73124240C7ABC7C4A44A2808B (X509V1CertificateGenerator_t010F8B11CD3F1A8AC4E596141AD1AFA3C02E9EE9 * __this, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___date0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Time_tD684B1785E755395701D46F89A97609911CD6DDE_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // tbsGen.SetEndDate(new Time(date)); V1TbsCertificateGenerator_t0C696954AC2E290683DA1581EA144E4EBB8D2D10 * L_0 = __this->get_tbsGen_0(); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_1 = ___date0; Time_tD684B1785E755395701D46F89A97609911CD6DDE * L_2 = (Time_tD684B1785E755395701D46F89A97609911CD6DDE *)il2cpp_codegen_object_new(Time_tD684B1785E755395701D46F89A97609911CD6DDE_il2cpp_TypeInfo_var); Time__ctor_mBC7631425BAF63401048865DBFD7CDE253FEB313(L_2, L_1, /*hidden argument*/NULL); NullCheck(L_0); V1TbsCertificateGenerator_SetEndDate_mD95D21EC8E8D5C8AE1CFB42BC70FCEC9465957C6_inline(L_0, L_2, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V1CertificateGenerator::SetSubjectDN(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V1CertificateGenerator_SetSubjectDN_mE02AA4D4AC8F9D72490404BEF1F42D6447C2A902 (X509V1CertificateGenerator_t010F8B11CD3F1A8AC4E596141AD1AFA3C02E9EE9 * __this, X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * ___subject0, const RuntimeMethod* method) { { // tbsGen.SetSubject(subject); V1TbsCertificateGenerator_t0C696954AC2E290683DA1581EA144E4EBB8D2D10 * L_0 = __this->get_tbsGen_0(); X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * L_1 = ___subject0; NullCheck(L_0); V1TbsCertificateGenerator_SetSubject_m8D39D66BDCE270B41A3C97DF438D6F56B483D193_inline(L_0, L_1, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V1CertificateGenerator::SetPublicKey(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V1CertificateGenerator_SetPublicKey_m48225E192AD07EE7687C7B9FDA34BBF265D35180 (X509V1CertificateGenerator_t010F8B11CD3F1A8AC4E596141AD1AFA3C02E9EE9 * __this, AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * ___publicKey0, const RuntimeMethod* method) { Exception_t * V_0 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; IL_0000: try {// begin try (depth: 1) // tbsGen.SetSubjectPublicKeyInfo( // SubjectPublicKeyInfoFactory.CreateSubjectPublicKeyInfo(publicKey)); V1TbsCertificateGenerator_t0C696954AC2E290683DA1581EA144E4EBB8D2D10 * L_0 = __this->get_tbsGen_0(); AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * L_1 = ___publicKey0; SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB * L_2; L_2 = SubjectPublicKeyInfoFactory_CreateSubjectPublicKeyInfo_m05DEB0821C10550E622F69B5E83F1A285F4F857D(L_1, /*hidden argument*/NULL); NullCheck(L_0); V1TbsCertificateGenerator_SetSubjectPublicKeyInfo_m3736F7594AAA3F6482EE0387EBCE3AD84CED0CD0_inline(L_0, L_2, /*hidden argument*/NULL); // } goto IL_002a; }// 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_0013; } throw e; } CATCH_0013: {// begin catch(System.Exception) // catch (Exception e) V_0 = ((Exception_t *)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *)); // throw new ArgumentException("unable to process key - " + e.ToString()); Exception_t * L_3 = V_0; NullCheck(L_3); String_t* L_4; L_4 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_3); String_t* L_5; L_5 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7656E9310557F53848E366F4077B8B19B1EC3AC2)), 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_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_6, L_5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X509V1CertificateGenerator_SetPublicKey_m48225E192AD07EE7687C7B9FDA34BBF265D35180_RuntimeMethod_var))); }// end catch (depth: 1) IL_002a: { // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V1CertificateGenerator::SetSignatureAlgorithm(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V1CertificateGenerator_SetSignatureAlgorithm_mDE614B8BECC89DFC06BC4539DD780A5B67697A9E (X509V1CertificateGenerator_t010F8B11CD3F1A8AC4E596141AD1AFA3C02E9EE9 * __this, String_t* ___signatureAlgorithm0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; { // this.signatureAlgorithm = signatureAlgorithm; String_t* L_0 = ___signatureAlgorithm0; __this->set_signatureAlgorithm_3(L_0); } IL_0007: try {// begin try (depth: 1) // sigOID = X509Utilities.GetAlgorithmOid(signatureAlgorithm); String_t* L_1 = ___signatureAlgorithm0; IL2CPP_RUNTIME_CLASS_INIT(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_2; L_2 = X509Utilities_GetAlgorithmOid_m9F775A603669DE9A5E4FDCC0A56F8C0B9F7DAEE4(L_1, /*hidden argument*/NULL); __this->set_sigOID_1(L_2); // } goto IL_0026; }// 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_0015; } throw e; } CATCH_0015: {// begin catch(System.Exception) // catch (Exception) // throw new ArgumentException("Unknown signature type requested", "signatureAlgorithm"); 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_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2ECCF0272C09381DA599D0B70DB523A192791180)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral835935470BE3AD56EC53600D8D5427C4EB9EE754)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X509V1CertificateGenerator_SetSignatureAlgorithm_mDE614B8BECC89DFC06BC4539DD780A5B67697A9E_RuntimeMethod_var))); }// end catch (depth: 1) IL_0026: { // sigAlgId = X509Utilities.GetSigAlgID(sigOID, signatureAlgorithm); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_4 = __this->get_sigOID_1(); String_t* L_5 = ___signatureAlgorithm0; IL2CPP_RUNTIME_CLASS_INIT(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_6; L_6 = X509Utilities_GetSigAlgID_mA149FCB12BE7F0FC7331A3234DAB2CCAEFB86F59(L_4, L_5, /*hidden argument*/NULL); __this->set_sigAlgId_2(L_6); // tbsGen.SetSignature(sigAlgId); V1TbsCertificateGenerator_t0C696954AC2E290683DA1581EA144E4EBB8D2D10 * L_7 = __this->get_tbsGen_0(); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_8 = __this->get_sigAlgId_2(); NullCheck(L_7); V1TbsCertificateGenerator_SetSignature_mD7F4C5183C8737C11FCB2663AED92F33ED6BF6D5_inline(L_7, L_8, /*hidden argument*/NULL); // } return; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Certificate BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V1CertificateGenerator::Generate(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06 * X509V1CertificateGenerator_Generate_m97BED6973737E703907A85A4F73E21D4A3B87A97 (X509V1CertificateGenerator_t010F8B11CD3F1A8AC4E596141AD1AFA3C02E9EE9 * __this, AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * ___privateKey0, const RuntimeMethod* method) { { // return Generate(privateKey, null); AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * L_0 = ___privateKey0; X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06 * L_1; L_1 = X509V1CertificateGenerator_Generate_m5DEB74CBE16E6D4E9E75FFBCBEFF1157C1187092(__this, L_0, (SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 *)NULL, /*hidden argument*/NULL); return L_1; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Certificate BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V1CertificateGenerator::Generate(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter,BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06 * X509V1CertificateGenerator_Generate_m5DEB74CBE16E6D4E9E75FFBCBEFF1157C1187092 (X509V1CertificateGenerator_t010F8B11CD3F1A8AC4E596141AD1AFA3C02E9EE9 * __this, AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * ___privateKey0, SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * ___random1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Asn1SignatureFactory_t82880FE5F99692E8C940551308221AA7CAB2682A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // return Generate(new Asn1SignatureFactory(signatureAlgorithm, privateKey, random)); String_t* L_0 = __this->get_signatureAlgorithm_3(); AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * L_1 = ___privateKey0; SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * L_2 = ___random1; Asn1SignatureFactory_t82880FE5F99692E8C940551308221AA7CAB2682A * L_3 = (Asn1SignatureFactory_t82880FE5F99692E8C940551308221AA7CAB2682A *)il2cpp_codegen_object_new(Asn1SignatureFactory_t82880FE5F99692E8C940551308221AA7CAB2682A_il2cpp_TypeInfo_var); Asn1SignatureFactory__ctor_m3B76289916350A708ADF571E9FEE4A509E87E0E7(L_3, L_0, L_1, L_2, /*hidden argument*/NULL); X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06 * L_4; L_4 = X509V1CertificateGenerator_Generate_m8684CD91D3F87C6EF8F7374C91B4BA1F2E3AF367(__this, L_3, /*hidden argument*/NULL); return L_4; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Certificate BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V1CertificateGenerator::Generate(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ISignatureFactory) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06 * X509V1CertificateGenerator_Generate_m8684CD91D3F87C6EF8F7374C91B4BA1F2E3AF367 (X509V1CertificateGenerator_t010F8B11CD3F1A8AC4E596141AD1AFA3C02E9EE9 * __this, RuntimeObject* ___signatureCalculatorFactory0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBlockResult_t6A7C472F432343ADBA690B12778C4CF5FFB19CCE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ISignatureFactory_t1572BDBCE1A2741BB5DF8A6BE3FC219B7722135B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IStreamCalculator_t4F9460D63B0B76B77564036A39E861A0A03ABD07_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3 * V_0 = NULL; RuntimeObject* V_1 = NULL; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_2 = NULL; { // tbsGen.SetSignature ((AlgorithmIdentifier)signatureCalculatorFactory.AlgorithmDetails); V1TbsCertificateGenerator_t0C696954AC2E290683DA1581EA144E4EBB8D2D10 * L_0 = __this->get_tbsGen_0(); RuntimeObject* L_1 = ___signatureCalculatorFactory0; NullCheck(L_1); RuntimeObject * L_2; L_2 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ISignatureFactory::get_AlgorithmDetails() */, ISignatureFactory_t1572BDBCE1A2741BB5DF8A6BE3FC219B7722135B_il2cpp_TypeInfo_var, L_1); NullCheck(L_0); V1TbsCertificateGenerator_SetSignature_mD7F4C5183C8737C11FCB2663AED92F33ED6BF6D5_inline(L_0, ((AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 *)CastclassClass((RuntimeObject*)L_2, AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); // TbsCertificateStructure tbsCert = tbsGen.GenerateTbsCertificate(); V1TbsCertificateGenerator_t0C696954AC2E290683DA1581EA144E4EBB8D2D10 * L_3 = __this->get_tbsGen_0(); NullCheck(L_3); TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3 * L_4; L_4 = V1TbsCertificateGenerator_GenerateTbsCertificate_m37FF3D46083A1D55CFA8A765C3F50B7457B22D0C(L_3, /*hidden argument*/NULL); V_0 = L_4; // IStreamCalculator streamCalculator = signatureCalculatorFactory.CreateCalculator(); RuntimeObject* L_5 = ___signatureCalculatorFactory0; NullCheck(L_5); RuntimeObject* L_6; L_6 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IStreamCalculator BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ISignatureFactory::CreateCalculator() */, ISignatureFactory_t1572BDBCE1A2741BB5DF8A6BE3FC219B7722135B_il2cpp_TypeInfo_var, L_5); V_1 = L_6; // byte[] encoded = tbsCert.GetDerEncoded(); TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3 * L_7 = V_0; NullCheck(L_7); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_8; L_8 = Asn1Encodable_GetDerEncoded_m30F357C2B994910EAC405FACBB5CA88181B3CD4E(L_7, /*hidden argument*/NULL); V_2 = L_8; // streamCalculator.Stream.Write(encoded, 0, encoded.Length); RuntimeObject* L_9 = V_1; NullCheck(L_9); Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_10; L_10 = InterfaceFuncInvoker0< Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * >::Invoke(0 /* System.IO.Stream BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IStreamCalculator::get_Stream() */, IStreamCalculator_t4F9460D63B0B76B77564036A39E861A0A03ABD07_il2cpp_TypeInfo_var, L_9); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_11 = V_2; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_12 = V_2; NullCheck(L_12); NullCheck(L_10); VirtualActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(32 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_10, L_11, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)))); // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.Dispose(streamCalculator.Stream); RuntimeObject* L_13 = V_1; NullCheck(L_13); Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_14; L_14 = InterfaceFuncInvoker0< Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * >::Invoke(0 /* System.IO.Stream BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IStreamCalculator::get_Stream() */, IStreamCalculator_t4F9460D63B0B76B77564036A39E861A0A03ABD07_il2cpp_TypeInfo_var, L_13); IL2CPP_RUNTIME_CLASS_INIT(Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var); Platform_Dispose_m852AB0A263A990096BCE2A4230CB5723F873C1A2(L_14, /*hidden argument*/NULL); // return GenerateJcaObject(tbsCert, (AlgorithmIdentifier)signatureCalculatorFactory.AlgorithmDetails, ((IBlockResult)streamCalculator.GetResult()).Collect()); TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3 * L_15 = V_0; RuntimeObject* L_16 = ___signatureCalculatorFactory0; NullCheck(L_16); RuntimeObject * L_17; L_17 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ISignatureFactory::get_AlgorithmDetails() */, ISignatureFactory_t1572BDBCE1A2741BB5DF8A6BE3FC219B7722135B_il2cpp_TypeInfo_var, L_16); RuntimeObject* L_18 = V_1; NullCheck(L_18); RuntimeObject * L_19; L_19 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IStreamCalculator::GetResult() */, IStreamCalculator_t4F9460D63B0B76B77564036A39E861A0A03ABD07_il2cpp_TypeInfo_var, L_18); NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_19, IBlockResult_t6A7C472F432343ADBA690B12778C4CF5FFB19CCE_il2cpp_TypeInfo_var))); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_20; L_20 = InterfaceFuncInvoker0< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* >::Invoke(0 /* System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockResult::Collect() */, IBlockResult_t6A7C472F432343ADBA690B12778C4CF5FFB19CCE_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_19, IBlockResult_t6A7C472F432343ADBA690B12778C4CF5FFB19CCE_il2cpp_TypeInfo_var))); X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06 * L_21; L_21 = X509V1CertificateGenerator_GenerateJcaObject_mC0195A5CC68D0D73E5C98D1578F0E0050105B208(__this, L_15, ((AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 *)CastclassClass((RuntimeObject*)L_17, AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9_il2cpp_TypeInfo_var)), L_20, /*hidden argument*/NULL); return L_21; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Certificate BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V1CertificateGenerator::GenerateJcaObject(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateStructure,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06 * X509V1CertificateGenerator_GenerateJcaObject_mC0195A5CC68D0D73E5C98D1578F0E0050105B208 (X509V1CertificateGenerator_t010F8B11CD3F1A8AC4E596141AD1AFA3C02E9EE9 * __this, TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3 * ___tbsCert0, AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___sigAlg1, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___signature2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerBitString_t305465793A47445626D3541AB8CEDE347D874524_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509CertificateStructure_tD48237F907D1001604C98590613EFD6D720BEDE1_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // return new X509Certificate( // new X509CertificateStructure(tbsCert, sigAlg, new DerBitString(signature))); TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3 * L_0 = ___tbsCert0; AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_1 = ___sigAlg1; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = ___signature2; DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * L_3 = (DerBitString_t305465793A47445626D3541AB8CEDE347D874524 *)il2cpp_codegen_object_new(DerBitString_t305465793A47445626D3541AB8CEDE347D874524_il2cpp_TypeInfo_var); DerBitString__ctor_m97AF53404F6333EA146C0DB958DF3C483B71D94B(L_3, L_2, /*hidden argument*/NULL); X509CertificateStructure_tD48237F907D1001604C98590613EFD6D720BEDE1 * L_4 = (X509CertificateStructure_tD48237F907D1001604C98590613EFD6D720BEDE1 *)il2cpp_codegen_object_new(X509CertificateStructure_tD48237F907D1001604C98590613EFD6D720BEDE1_il2cpp_TypeInfo_var); X509CertificateStructure__ctor_mB983F7D54B4AF1C7A9B3F77E29427DE75BB2024E(L_4, L_0, L_1, L_3, /*hidden argument*/NULL); X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06 * L_5 = (X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06 *)il2cpp_codegen_object_new(X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06_il2cpp_TypeInfo_var); X509Certificate__ctor_m4535814BC74C5F8715C14327149914B85DB89C5B(L_5, L_4, /*hidden argument*/NULL); return L_5; } } // System.Collections.IEnumerable BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V1CertificateGenerator::get_SignatureAlgNames() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* X509V1CertificateGenerator_get_SignatureAlgNames_m61234F6F1FCA2F58D9B693E630C02621E9E7C67C (X509V1CertificateGenerator_t010F8B11CD3F1A8AC4E596141AD1AFA3C02E9EE9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // get { return X509Utilities.GetAlgNames(); } IL2CPP_RUNTIME_CLASS_INIT(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var); RuntimeObject* L_0; L_0 = X509Utilities_GetAlgNames_mD83E9C06473AD2CFCFB7ACF02458BB69AF429932(/*hidden argument*/NULL); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeCertificate BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificate::GetObject(System.IO.Stream) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 * X509V2AttributeCertificate_GetObject_mB379854757E0725E3E6A1F41CE6B847C8F02842B (Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___input0, const RuntimeMethod* method) { AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 * V_0 = NULL; Exception_t * V_1 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; IL_0000: try {// begin try (depth: 1) // return AttributeCertificate.GetInstance(Asn1Object.FromStream(input)); Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_0 = ___input0; Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * L_1; L_1 = Asn1Object_FromStream_m4BDFDC6ECEE5F8CBAC16ACEA0D2D4786C81C4A43(L_0, /*hidden argument*/NULL); AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 * L_2; L_2 = AttributeCertificate_GetInstance_m44F282F6BC1A20DF231B9680EFB85940F3D37F1D(L_1, /*hidden argument*/NULL); V_0 = L_2; goto IL_001c; }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_000e; } if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_000f; } throw e; } CATCH_000e: {// begin catch(System.IO.IOException) // throw e; IL2CPP_RAISE_MANAGED_EXCEPTION(((IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA *)IL2CPP_GET_ACTIVE_EXCEPTION(IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA *)), ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X509V2AttributeCertificate_GetObject_mB379854757E0725E3E6A1F41CE6B847C8F02842B_RuntimeMethod_var))); }// end catch (depth: 1) CATCH_000f: {// begin catch(System.Exception) // catch (Exception e) V_1 = ((Exception_t *)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *)); // throw new IOException("exception decoding certificate structure", e); Exception_t * L_3 = V_1; IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA * L_4 = (IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA_il2cpp_TypeInfo_var))); IOException__ctor_m6FEE731FB9201F8322FB67EFEE6F43D424DFE1E7(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBEDE5B38F0A36C656EFD739D528390E400FD7E4E)), L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X509V2AttributeCertificate_GetObject_mB379854757E0725E3E6A1F41CE6B847C8F02842B_RuntimeMethod_var))); }// end catch (depth: 1) IL_001c: { // } AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 * L_5 = V_0; return L_5; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificate::.ctor(System.IO.Stream) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V2AttributeCertificate__ctor_m606E94BB1A3B48366C758D2B9601BF2FCC468D31 (X509V2AttributeCertificate_t004E81AFB075D95CA954C1C9E84F0C63F27A56A3 * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___encIn0, const RuntimeMethod* method) { { // : this(GetObject(encIn)) Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_0 = ___encIn0; AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 * L_1; L_1 = X509V2AttributeCertificate_GetObject_mB379854757E0725E3E6A1F41CE6B847C8F02842B(L_0, /*hidden argument*/NULL); X509V2AttributeCertificate__ctor_mFE4BE06C834860627D03F6E242C656CB3B815554(__this, L_1, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificate::.ctor(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V2AttributeCertificate__ctor_m043F1BD056E82B72A88309C6CF465FFC21FF1625 (X509V2AttributeCertificate_t004E81AFB075D95CA954C1C9E84F0C63F27A56A3 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___encoded0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // : this(new MemoryStream(encoded, false)) ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___encoded0; MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_1 = (MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C *)il2cpp_codegen_object_new(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C_il2cpp_TypeInfo_var); MemoryStream__ctor_m27461F2CC712138C855A9C1CDCB211CC5BDBAC9A(L_1, L_0, (bool)0, /*hidden argument*/NULL); X509V2AttributeCertificate__ctor_m606E94BB1A3B48366C758D2B9601BF2FCC468D31(__this, L_1, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificate::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AttributeCertificate) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V2AttributeCertificate__ctor_mFE4BE06C834860627D03F6E242C656CB3B815554 (X509V2AttributeCertificate_t004E81AFB075D95CA954C1C9E84F0C63F27A56A3 * __this, AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 * ___cert0, const RuntimeMethod* method) { Exception_t * V_0 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; { // internal X509V2AttributeCertificate( // AttributeCertificate cert) X509ExtensionBase__ctor_m17C359C027031D09C61C27360069BA8328E0713F(__this, /*hidden argument*/NULL); // this.cert = cert; AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 * L_0 = ___cert0; __this->set_cert_0(L_0); } IL_000d: try {// begin try (depth: 1) // this.notAfter = cert.ACInfo.AttrCertValidityPeriod.NotAfterTime.ToDateTime(); AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 * L_1 = ___cert0; NullCheck(L_1); AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00 * L_2; L_2 = AttributeCertificate_get_ACInfo_m00F32F713F5C5408A358DEB8A787864FB08622AC_inline(L_1, /*hidden argument*/NULL); NullCheck(L_2); AttCertValidityPeriod_t02A425D4B6DBD563E99E6448C58680741D22B4EA * L_3; L_3 = AttributeCertificateInfo_get_AttrCertValidityPeriod_m27AE4D76FF3D8D3B5ED89C7A7AEF1F2642E5B313_inline(L_2, /*hidden argument*/NULL); NullCheck(L_3); DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 * L_4; L_4 = AttCertValidityPeriod_get_NotAfterTime_mCA3F315E21623799710C7C7618F90489E31234D9_inline(L_3, /*hidden argument*/NULL); NullCheck(L_4); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_5; L_5 = DerGeneralizedTime_ToDateTime_m39AFA523A5A7DC35778076EEB60F021AF24291C5(L_4, /*hidden argument*/NULL); __this->set_notAfter_2(L_5); // this.notBefore = cert.ACInfo.AttrCertValidityPeriod.NotBeforeTime.ToDateTime(); AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 * L_6 = ___cert0; NullCheck(L_6); AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00 * L_7; L_7 = AttributeCertificate_get_ACInfo_m00F32F713F5C5408A358DEB8A787864FB08622AC_inline(L_6, /*hidden argument*/NULL); NullCheck(L_7); AttCertValidityPeriod_t02A425D4B6DBD563E99E6448C58680741D22B4EA * L_8; L_8 = AttributeCertificateInfo_get_AttrCertValidityPeriod_m27AE4D76FF3D8D3B5ED89C7A7AEF1F2642E5B313_inline(L_7, /*hidden argument*/NULL); NullCheck(L_8); DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 * L_9; L_9 = AttCertValidityPeriod_get_NotBeforeTime_m63AB2C4F56E6B940CD21DBB63844E485921EEB07_inline(L_8, /*hidden argument*/NULL); NullCheck(L_9); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_10; L_10 = DerGeneralizedTime_ToDateTime_m39AFA523A5A7DC35778076EEB60F021AF24291C5(L_9, /*hidden argument*/NULL); __this->set_notBefore_1(L_10); // } goto IL_0052; }// 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_0045; } throw e; } CATCH_0045: {// begin catch(System.Exception) // catch (Exception e) V_0 = ((Exception_t *)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *)); // throw new IOException("invalid data structure in certificate!", e); Exception_t * L_11 = V_0; IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA * L_12 = (IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA_il2cpp_TypeInfo_var))); IOException__ctor_m6FEE731FB9201F8322FB67EFEE6F43D424DFE1E7(L_12, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB741A93561896DE4C43A52DCFA9AF9596110E331)), L_11, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X509V2AttributeCertificate__ctor_mFE4BE06C834860627D03F6E242C656CB3B815554_RuntimeMethod_var))); }// end catch (depth: 1) IL_0052: { // } return; } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificate::get_Version() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t X509V2AttributeCertificate_get_Version_m475CD003546E4894D33657E2CF1151B8F7CBC938 (X509V2AttributeCertificate_t004E81AFB075D95CA954C1C9E84F0C63F27A56A3 * __this, const RuntimeMethod* method) { { // get { return cert.ACInfo.Version.Value.IntValue + 1; } AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 * L_0 = __this->get_cert_0(); NullCheck(L_0); AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00 * L_1; L_1 = AttributeCertificate_get_ACInfo_m00F32F713F5C5408A358DEB8A787864FB08622AC_inline(L_0, /*hidden argument*/NULL); NullCheck(L_1); DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * L_2; L_2 = AttributeCertificateInfo_get_Version_mD32C69DC15BD4DE6F7E658CA4EAAE7EBAAF83E89_inline(L_1, /*hidden argument*/NULL); NullCheck(L_2); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_3; L_3 = DerInteger_get_Value_m8C263058A637AE123BD47291A36538E05E374478(L_2, /*hidden argument*/NULL); NullCheck(L_3); int32_t L_4; L_4 = BigInteger_get_IntValue_m6386348CAE8E75A68124AD1F36F497FC551F8144(L_3, /*hidden argument*/NULL); return ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)); } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificate::get_SerialNumber() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * X509V2AttributeCertificate_get_SerialNumber_mADF28A465989D2D3501175BD543A2D5B2EC91926 (X509V2AttributeCertificate_t004E81AFB075D95CA954C1C9E84F0C63F27A56A3 * __this, const RuntimeMethod* method) { { // get { return cert.ACInfo.SerialNumber.Value; } AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 * L_0 = __this->get_cert_0(); NullCheck(L_0); AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00 * L_1; L_1 = AttributeCertificate_get_ACInfo_m00F32F713F5C5408A358DEB8A787864FB08622AC_inline(L_0, /*hidden argument*/NULL); NullCheck(L_1); DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * L_2; L_2 = AttributeCertificateInfo_get_SerialNumber_m1F7898719A2CC52162B376BC8630F5D20D5787D7_inline(L_1, /*hidden argument*/NULL); NullCheck(L_2); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_3; L_3 = DerInteger_get_Value_m8C263058A637AE123BD47291A36538E05E374478(L_2, /*hidden argument*/NULL); return L_3; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.AttributeCertificateHolder BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificate::get_Holder() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeCertificateHolder_t84044880E63B3791FAAD143E5AE456CCAF5A283D * X509V2AttributeCertificate_get_Holder_mB65C7087DAF8A880AC41898DA24ED6036838C8DF (X509V2AttributeCertificate_t004E81AFB075D95CA954C1C9E84F0C63F27A56A3 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AttributeCertificateHolder_t84044880E63B3791FAAD143E5AE456CCAF5A283D_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // return new AttributeCertificateHolder((Asn1Sequence)cert.ACInfo.Holder.ToAsn1Object()); AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 * L_0 = __this->get_cert_0(); NullCheck(L_0); AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00 * L_1; L_1 = AttributeCertificate_get_ACInfo_m00F32F713F5C5408A358DEB8A787864FB08622AC_inline(L_0, /*hidden argument*/NULL); NullCheck(L_1); Holder_t64C922905238378DD56C273DE16BA7D09529E22A * L_2; L_2 = AttributeCertificateInfo_get_Holder_m373FBF0ABE7AB2ABAF0E2D66788BBFC1CFFA9646_inline(L_1, /*hidden argument*/NULL); NullCheck(L_2); Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * L_3; L_3 = VirtualFuncInvoker0< Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * >::Invoke(5 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Object BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable::ToAsn1Object() */, L_2); AttributeCertificateHolder_t84044880E63B3791FAAD143E5AE456CCAF5A283D * L_4 = (AttributeCertificateHolder_t84044880E63B3791FAAD143E5AE456CCAF5A283D *)il2cpp_codegen_object_new(AttributeCertificateHolder_t84044880E63B3791FAAD143E5AE456CCAF5A283D_il2cpp_TypeInfo_var); AttributeCertificateHolder__ctor_m1C4A3A9034787C092480EB76CE110B59D50F26F5(L_4, ((Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 *)CastclassClass((RuntimeObject*)L_3, Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); return L_4; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.AttributeCertificateIssuer BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificate::get_Issuer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeCertificateIssuer_t0CDFDFE49E5B87F38DDC1F1E13440FB7C1B394D4 * X509V2AttributeCertificate_get_Issuer_m8866D0C29186DCE94CD1DB2D4E3EC2F003F254CA (X509V2AttributeCertificate_t004E81AFB075D95CA954C1C9E84F0C63F27A56A3 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AttributeCertificateIssuer_t0CDFDFE49E5B87F38DDC1F1E13440FB7C1B394D4_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // return new AttributeCertificateIssuer(cert.ACInfo.Issuer); AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 * L_0 = __this->get_cert_0(); NullCheck(L_0); AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00 * L_1; L_1 = AttributeCertificate_get_ACInfo_m00F32F713F5C5408A358DEB8A787864FB08622AC_inline(L_0, /*hidden argument*/NULL); NullCheck(L_1); AttCertIssuer_tC2A63BCB19A64F1F5B6335B241ED80E5AAC1562A * L_2; L_2 = AttributeCertificateInfo_get_Issuer_mAAFB9EB7493596F3DA8799CB95680140B72A3B15_inline(L_1, /*hidden argument*/NULL); AttributeCertificateIssuer_t0CDFDFE49E5B87F38DDC1F1E13440FB7C1B394D4 * L_3 = (AttributeCertificateIssuer_t0CDFDFE49E5B87F38DDC1F1E13440FB7C1B394D4 *)il2cpp_codegen_object_new(AttributeCertificateIssuer_t0CDFDFE49E5B87F38DDC1F1E13440FB7C1B394D4_il2cpp_TypeInfo_var); AttributeCertificateIssuer__ctor_mD9F3DBE7A849448196F5B35485D0BDB6A87B2618(L_3, L_2, /*hidden argument*/NULL); return L_3; } } // System.DateTime BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificate::get_NotBefore() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 X509V2AttributeCertificate_get_NotBefore_m07159F6FBFABA62C4EA4237427FF635F5E1C1F75 (X509V2AttributeCertificate_t004E81AFB075D95CA954C1C9E84F0C63F27A56A3 * __this, const RuntimeMethod* method) { { // get { return notBefore; } DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_0 = __this->get_notBefore_1(); return L_0; } } // System.DateTime BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificate::get_NotAfter() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 X509V2AttributeCertificate_get_NotAfter_mBE69EA169CC3C6CE78504FE46FE8CFCF7AD51CC1 (X509V2AttributeCertificate_t004E81AFB075D95CA954C1C9E84F0C63F27A56A3 * __this, const RuntimeMethod* method) { { // get { return notAfter; } DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_0 = __this->get_notAfter_2(); return L_0; } } // System.Boolean[] BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificate::GetIssuerUniqueID() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* X509V2AttributeCertificate_GetIssuerUniqueID_m96215BA71C37FE7465ECB616860988250C60A4DA (X509V2AttributeCertificate_t004E81AFB075D95CA954C1C9E84F0C63F27A56A3 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * V_0 = NULL; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_1 = NULL; BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* V_2 = NULL; int32_t V_3 = 0; { // DerBitString id = cert.ACInfo.IssuerUniqueID; AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 * L_0 = __this->get_cert_0(); NullCheck(L_0); AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00 * L_1; L_1 = AttributeCertificate_get_ACInfo_m00F32F713F5C5408A358DEB8A787864FB08622AC_inline(L_0, /*hidden argument*/NULL); NullCheck(L_1); DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * L_2; L_2 = AttributeCertificateInfo_get_IssuerUniqueID_mF88B6C2A0C61D5D21988E3080D53D7579DE1440E_inline(L_1, /*hidden argument*/NULL); V_0 = L_2; // if (id != null) DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * L_3 = V_0; if (!L_3) { goto IL_0055; } } { // byte[] bytes = id.GetBytes(); DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * L_4 = V_0; NullCheck(L_4); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_5; L_5 = VirtualFuncInvoker0< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* >::Invoke(12 /* System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString::GetBytes() */, L_4); V_1 = L_5; // bool[] boolId = new bool[bytes.Length * 8 - id.PadBits]; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_6 = V_1; NullCheck(L_6); DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * L_7 = V_0; NullCheck(L_7); int32_t L_8; L_8 = VirtualFuncInvoker0< int32_t >::Invoke(13 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString::get_PadBits() */, L_7); BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* L_9 = (BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C*)(BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C*)SZArrayNew(BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length))), (int32_t)8)), (int32_t)L_8))); V_2 = L_9; // for (int i = 0; i != boolId.Length; i++) V_3 = 0; goto IL_004d; } IL_0031: { // boolId[i] = (bytes[i / 8] & (0x80 >> (i % 8))) != 0; BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* L_10 = V_2; int32_t L_11 = V_3; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_12 = V_1; int32_t L_13 = V_3; NullCheck(L_12); int32_t L_14 = ((int32_t)((int32_t)L_13/(int32_t)8)); uint8_t L_15 = (L_12)->GetAt(static_cast(L_14)); int32_t L_16 = V_3; NullCheck(L_10); (L_10)->SetAt(static_cast(L_11), (bool)((!(((uint32_t)((int32_t)((int32_t)L_15&(int32_t)((int32_t)((int32_t)((int32_t)128)>>(int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_16%(int32_t)8))&(int32_t)((int32_t)31)))))))) <= ((uint32_t)0)))? 1 : 0)); // for (int i = 0; i != boolId.Length; i++) int32_t L_17 = V_3; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1)); } IL_004d: { // for (int i = 0; i != boolId.Length; i++) int32_t L_18 = V_3; BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* L_19 = V_2; NullCheck(L_19); if ((!(((uint32_t)L_18) == ((uint32_t)((int32_t)((int32_t)(((RuntimeArray*)L_19)->max_length))))))) { goto IL_0031; } } { // return boolId; BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* L_20 = V_2; return L_20; } IL_0055: { // return null; return (BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C*)NULL; } } // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificate::get_IsValidNow() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool X509V2AttributeCertificate_get_IsValidNow_m8A3E6B128CAC44B7A444A2127682979DAA0E50A5 (X509V2AttributeCertificate_t004E81AFB075D95CA954C1C9E84F0C63F27A56A3 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // get { return IsValid(DateTime.UtcNow); } IL2CPP_RUNTIME_CLASS_INIT(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_0; L_0 = DateTime_get_UtcNow_m761E57F86226DDD94F0A2F4D98F0A8E27C74F090(/*hidden argument*/NULL); bool L_1; L_1 = VirtualFuncInvoker1< bool, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 >::Invoke(37 /* System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificate::IsValid(System.DateTime) */, __this, L_0); return L_1; } } // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificate::IsValid(System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool X509V2AttributeCertificate_IsValid_m55032F47C9E41BCA4BC0FAFC0F8AA2718187ACF1 (X509V2AttributeCertificate_t004E81AFB075D95CA954C1C9E84F0C63F27A56A3 * __this, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___date0, const RuntimeMethod* method) { { // return date.CompareTo(NotBefore) >= 0 && date.CompareTo(NotAfter) <= 0; DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_0; L_0 = VirtualFuncInvoker0< DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 >::Invoke(33 /* System.DateTime BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificate::get_NotBefore() */, __this); int32_t L_1; L_1 = DateTime_CompareTo_m2864B0ABAE4B8748D4092D1D16AE56EE0B248F93((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)(&___date0), L_0, /*hidden argument*/NULL); if ((((int32_t)L_1) < ((int32_t)0))) { goto IL_0024; } } { DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_2; L_2 = VirtualFuncInvoker0< DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 >::Invoke(34 /* System.DateTime BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificate::get_NotAfter() */, __this); int32_t L_3; L_3 = DateTime_CompareTo_m2864B0ABAE4B8748D4092D1D16AE56EE0B248F93((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)(&___date0), L_2, /*hidden argument*/NULL); return (bool)((((int32_t)((((int32_t)L_3) > ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_0024: { return (bool)0; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificate::CheckValidity() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V2AttributeCertificate_CheckValidity_m94C07F18FC732ECD3F5FCC703EA90F9998EB59BE (X509V2AttributeCertificate_t004E81AFB075D95CA954C1C9E84F0C63F27A56A3 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // this.CheckValidity(DateTime.UtcNow); IL2CPP_RUNTIME_CLASS_INIT(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_0; L_0 = DateTime_get_UtcNow_m761E57F86226DDD94F0A2F4D98F0A8E27C74F090(/*hidden argument*/NULL); VirtualActionInvoker1< DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 >::Invoke(39 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificate::CheckValidity(System.DateTime) */, __this, L_0); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificate::CheckValidity(System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V2AttributeCertificate_CheckValidity_mC6399715873F1E4A615566292B322E412E990D81 (X509V2AttributeCertificate_t004E81AFB075D95CA954C1C9E84F0C63F27A56A3 * __this, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___date0, const RuntimeMethod* method) { DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 V_0; memset((&V_0), 0, sizeof(V_0)); { // if (date.CompareTo(NotAfter) > 0) DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_0; L_0 = VirtualFuncInvoker0< DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 >::Invoke(34 /* System.DateTime BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificate::get_NotAfter() */, __this); int32_t L_1; L_1 = DateTime_CompareTo_m2864B0ABAE4B8748D4092D1D16AE56EE0B248F93((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)(&___date0), L_0, /*hidden argument*/NULL); if ((((int32_t)L_1) <= ((int32_t)0))) { goto IL_002e; } } { // throw new CertificateExpiredException("certificate expired on " + NotAfter); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_2; L_2 = VirtualFuncInvoker0< DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 >::Invoke(34 /* System.DateTime BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificate::get_NotAfter() */, __this); V_0 = L_2; String_t* L_3; L_3 = DateTime_ToString_m242888E500DFD8CD675BDC455BC696AF47813954((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)(&V_0), /*hidden argument*/NULL); String_t* L_4; L_4 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral024FCA0B8EB9668557C8B3AB9421E9B4005D6ECB)), L_3, /*hidden argument*/NULL); CertificateExpiredException_t05907054C3E1FC12C458807B83722B8477BD21B8 * L_5 = (CertificateExpiredException_t05907054C3E1FC12C458807B83722B8477BD21B8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CertificateExpiredException_t05907054C3E1FC12C458807B83722B8477BD21B8_il2cpp_TypeInfo_var))); CertificateExpiredException__ctor_mC3B987349E274E43ED9A03C166EFCC31C56D6CD6(L_5, L_4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X509V2AttributeCertificate_CheckValidity_mC6399715873F1E4A615566292B322E412E990D81_RuntimeMethod_var))); } IL_002e: { // if (date.CompareTo(NotBefore) < 0) DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_6; L_6 = VirtualFuncInvoker0< DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 >::Invoke(33 /* System.DateTime BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificate::get_NotBefore() */, __this); int32_t L_7; L_7 = DateTime_CompareTo_m2864B0ABAE4B8748D4092D1D16AE56EE0B248F93((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)(&___date0), L_6, /*hidden argument*/NULL); if ((((int32_t)L_7) >= ((int32_t)0))) { goto IL_005c; } } { // throw new CertificateNotYetValidException("certificate not valid until " + NotBefore); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_8; L_8 = VirtualFuncInvoker0< DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 >::Invoke(33 /* System.DateTime BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificate::get_NotBefore() */, __this); V_0 = L_8; String_t* L_9; L_9 = DateTime_ToString_m242888E500DFD8CD675BDC455BC696AF47813954((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)(&V_0), /*hidden argument*/NULL); String_t* L_10; L_10 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral423764DB752CB258879C0D2CBA55603EFCBBD556)), L_9, /*hidden argument*/NULL); CertificateNotYetValidException_t23D92E9FAB5FBCE6D961AAD0BDE9F2EB97F699AE * L_11 = (CertificateNotYetValidException_t23D92E9FAB5FBCE6D961AAD0BDE9F2EB97F699AE *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CertificateNotYetValidException_t23D92E9FAB5FBCE6D961AAD0BDE9F2EB97F699AE_il2cpp_TypeInfo_var))); CertificateNotYetValidException__ctor_m137C9334210635B00D13E77519A0590C2A957605(L_11, L_10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X509V2AttributeCertificate_CheckValidity_mC6399715873F1E4A615566292B322E412E990D81_RuntimeMethod_var))); } IL_005c: { // } return; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificate::get_SignatureAlgorithm() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * X509V2AttributeCertificate_get_SignatureAlgorithm_mD27AA8D80A2D7A9CEFDEEE47979F35418BB437A1 (X509V2AttributeCertificate_t004E81AFB075D95CA954C1C9E84F0C63F27A56A3 * __this, const RuntimeMethod* method) { { // get { return cert.SignatureAlgorithm; } AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 * L_0 = __this->get_cert_0(); NullCheck(L_0); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_1; L_1 = AttributeCertificate_get_SignatureAlgorithm_m4D0B9DD6A8DC43ED937F7A5DFF5221ABCB42A40D_inline(L_0, /*hidden argument*/NULL); return L_1; } } // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificate::GetSignature() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* X509V2AttributeCertificate_GetSignature_m9C5565E3C9D2C5F03FE233028231D5752E4188A7 (X509V2AttributeCertificate_t004E81AFB075D95CA954C1C9E84F0C63F27A56A3 * __this, const RuntimeMethod* method) { { // return cert.GetSignatureOctets(); AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 * L_0 = __this->get_cert_0(); NullCheck(L_0); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1; L_1 = AttributeCertificate_GetSignatureOctets_mC5A3D187C35A999DF252FBA9A8A581AA04DE5057(L_0, /*hidden argument*/NULL); return L_1; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificate::Verify(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V2AttributeCertificate_Verify_m798945FCF57FB784FC7F73132DA796AE996DB1E0 (X509V2AttributeCertificate_t004E81AFB075D95CA954C1C9E84F0C63F27A56A3 * __this, AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * ___key0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Asn1VerifierFactory_t7331A64CE68459C50FCE03C94BBA668180927CD4_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // CheckSignature(new Asn1VerifierFactory(cert.SignatureAlgorithm, key)); AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 * L_0 = __this->get_cert_0(); NullCheck(L_0); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_1; L_1 = AttributeCertificate_get_SignatureAlgorithm_m4D0B9DD6A8DC43ED937F7A5DFF5221ABCB42A40D_inline(L_0, /*hidden argument*/NULL); AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * L_2 = ___key0; Asn1VerifierFactory_t7331A64CE68459C50FCE03C94BBA668180927CD4 * L_3 = (Asn1VerifierFactory_t7331A64CE68459C50FCE03C94BBA668180927CD4 *)il2cpp_codegen_object_new(Asn1VerifierFactory_t7331A64CE68459C50FCE03C94BBA668180927CD4_il2cpp_TypeInfo_var); Asn1VerifierFactory__ctor_m45999C78ED6DB25313CB57C23947BE35B8909E9C(L_3, L_1, L_2, /*hidden argument*/NULL); VirtualActionInvoker1< RuntimeObject* >::Invoke(44 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificate::CheckSignature(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IVerifierFactory) */, __this, L_3); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificate::Verify(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IVerifierFactoryProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V2AttributeCertificate_Verify_mD8F66918A6F97CF5749F2EF06B1D465ECCE60F29 (X509V2AttributeCertificate_t004E81AFB075D95CA954C1C9E84F0C63F27A56A3 * __this, RuntimeObject* ___verifierProvider0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IVerifierFactoryProvider_tA6D5743A235196B76EBD51FFBA49A1C8C08DA539_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // CheckSignature(verifierProvider.CreateVerifierFactory(cert.SignatureAlgorithm)); RuntimeObject* L_0 = ___verifierProvider0; AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 * L_1 = __this->get_cert_0(); NullCheck(L_1); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_2; L_2 = AttributeCertificate_get_SignatureAlgorithm_m4D0B9DD6A8DC43ED937F7A5DFF5221ABCB42A40D_inline(L_1, /*hidden argument*/NULL); NullCheck(L_0); RuntimeObject* L_3; L_3 = InterfaceFuncInvoker1< RuntimeObject*, RuntimeObject * >::Invoke(0 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IVerifierFactory BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IVerifierFactoryProvider::CreateVerifierFactory(System.Object) */, IVerifierFactoryProvider_tA6D5743A235196B76EBD51FFBA49A1C8C08DA539_il2cpp_TypeInfo_var, L_0, L_2); VirtualActionInvoker1< RuntimeObject* >::Invoke(44 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificate::CheckSignature(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IVerifierFactory) */, __this, L_3); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificate::CheckSignature(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IVerifierFactory) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V2AttributeCertificate_CheckSignature_m8ED4D870354ED6A8DF5FA8FD35E6F165C4C0E1F2 (X509V2AttributeCertificate_t004E81AFB075D95CA954C1C9E84F0C63F27A56A3 * __this, RuntimeObject* ___verifier0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IStreamCalculator_t4F9460D63B0B76B77564036A39E861A0A03ABD07_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IVerifierFactory_t32298618FCE25BBB4B1B58D97DE26E1C64CA010F_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IVerifier_tCA7824E68A9E21FEA945B0FDD274BB1CAF9872B6_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_1 = NULL; IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA * V_2 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; { // if (!cert.SignatureAlgorithm.Equals(cert.ACInfo.Signature)) AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 * L_0 = __this->get_cert_0(); NullCheck(L_0); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_1; L_1 = AttributeCertificate_get_SignatureAlgorithm_m4D0B9DD6A8DC43ED937F7A5DFF5221ABCB42A40D_inline(L_0, /*hidden argument*/NULL); AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 * L_2 = __this->get_cert_0(); NullCheck(L_2); AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00 * L_3; L_3 = AttributeCertificate_get_ACInfo_m00F32F713F5C5408A358DEB8A787864FB08622AC_inline(L_2, /*hidden argument*/NULL); NullCheck(L_3); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_4; L_4 = AttributeCertificateInfo_get_Signature_m5B0759B9FB8731B69D44CC557DB09ECB1D4FF5C3_inline(L_3, /*hidden argument*/NULL); NullCheck(L_1); bool L_5; L_5 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_1, L_4); if (L_5) { goto IL_002d; } } { // throw new CertificateException("Signature algorithm in certificate info not same as outer certificate"); CertificateException_tB4C9EC1D72D2EB953B1A67314C641CA607912CCB * L_6 = (CertificateException_tB4C9EC1D72D2EB953B1A67314C641CA607912CCB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CertificateException_tB4C9EC1D72D2EB953B1A67314C641CA607912CCB_il2cpp_TypeInfo_var))); CertificateException__ctor_m398B660736A1863961155734E5883CDECCF07B32(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral12F053C351BC91F2DD597C0FD0E71FD69CF83C5E)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X509V2AttributeCertificate_CheckSignature_m8ED4D870354ED6A8DF5FA8FD35E6F165C4C0E1F2_RuntimeMethod_var))); } IL_002d: { // IStreamCalculator streamCalculator = verifier.CreateCalculator(); RuntimeObject* L_7 = ___verifier0; NullCheck(L_7); RuntimeObject* L_8; L_8 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IStreamCalculator BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IVerifierFactory::CreateCalculator() */, IVerifierFactory_t32298618FCE25BBB4B1B58D97DE26E1C64CA010F_il2cpp_TypeInfo_var, L_7); V_0 = L_8; } IL_0034: try {// begin try (depth: 1) // byte[] b = this.cert.ACInfo.GetEncoded(); AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 * L_9 = __this->get_cert_0(); NullCheck(L_9); AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00 * L_10; L_10 = AttributeCertificate_get_ACInfo_m00F32F713F5C5408A358DEB8A787864FB08622AC_inline(L_9, /*hidden argument*/NULL); NullCheck(L_10); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_11; L_11 = Asn1Encodable_GetEncoded_m896BCF72900F9B8B4CCA196988ACB61423A424AF(L_10, /*hidden argument*/NULL); V_1 = L_11; // streamCalculator.Stream.Write(b, 0, b.Length); RuntimeObject* L_12 = V_0; NullCheck(L_12); Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_13; L_13 = InterfaceFuncInvoker0< Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * >::Invoke(0 /* System.IO.Stream BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IStreamCalculator::get_Stream() */, IStreamCalculator_t4F9460D63B0B76B77564036A39E861A0A03ABD07_il2cpp_TypeInfo_var, L_12); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_14 = V_1; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_15 = V_1; NullCheck(L_15); NullCheck(L_13); VirtualActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(32 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_13, L_14, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_15)->max_length)))); // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.Dispose(streamCalculator.Stream); RuntimeObject* L_16 = V_0; NullCheck(L_16); Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_17; L_17 = InterfaceFuncInvoker0< Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * >::Invoke(0 /* System.IO.Stream BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IStreamCalculator::get_Stream() */, IStreamCalculator_t4F9460D63B0B76B77564036A39E861A0A03ABD07_il2cpp_TypeInfo_var, L_16); IL2CPP_RUNTIME_CLASS_INIT(Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var); Platform_Dispose_m852AB0A263A990096BCE2A4230CB5723F873C1A2(L_17, /*hidden argument*/NULL); // } goto IL_006f; }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0062; } throw e; } CATCH_0062: {// begin catch(System.IO.IOException) // catch (IOException e) V_2 = ((IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA *)IL2CPP_GET_ACTIVE_EXCEPTION(IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA *)); // throw new SignatureException("Exception encoding certificate info object", e); IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA * L_18 = V_2; SignatureException_t8646C7AB185E39DCCA9ED2BC70B36207BA5A8EBA * L_19 = (SignatureException_t8646C7AB185E39DCCA9ED2BC70B36207BA5A8EBA *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SignatureException_t8646C7AB185E39DCCA9ED2BC70B36207BA5A8EBA_il2cpp_TypeInfo_var))); SignatureException__ctor_mD46453FE2F643250E4D112F169DA73C6A0D48977(L_19, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF09B7E7F9F61EE97EB764460510C20DAF3ACB664)), L_18, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X509V2AttributeCertificate_CheckSignature_m8ED4D870354ED6A8DF5FA8FD35E6F165C4C0E1F2_RuntimeMethod_var))); }// end catch (depth: 1) IL_006f: { // if (!((IVerifier)streamCalculator.GetResult()).IsVerified(this.GetSignature())) RuntimeObject* L_20 = V_0; NullCheck(L_20); RuntimeObject * L_21; L_21 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IStreamCalculator::GetResult() */, IStreamCalculator_t4F9460D63B0B76B77564036A39E861A0A03ABD07_il2cpp_TypeInfo_var, L_20); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_22; L_22 = VirtualFuncInvoker0< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* >::Invoke(41 /* System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificate::GetSignature() */, __this); NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_21, IVerifier_tCA7824E68A9E21FEA945B0FDD274BB1CAF9872B6_il2cpp_TypeInfo_var))); bool L_23; L_23 = InterfaceFuncInvoker1< bool, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* >::Invoke(0 /* System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IVerifier::IsVerified(System.Byte[]) */, IVerifier_tCA7824E68A9E21FEA945B0FDD274BB1CAF9872B6_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_21, IVerifier_tCA7824E68A9E21FEA945B0FDD274BB1CAF9872B6_il2cpp_TypeInfo_var)), L_22); if (L_23) { goto IL_0092; } } { // throw new InvalidKeyException("Public key presented not for certificate signature"); InvalidKeyException_t7F19EE8EB26000BAFDF50186FB1DD59F13A7FD8A * L_24 = (InvalidKeyException_t7F19EE8EB26000BAFDF50186FB1DD59F13A7FD8A *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidKeyException_t7F19EE8EB26000BAFDF50186FB1DD59F13A7FD8A_il2cpp_TypeInfo_var))); InvalidKeyException__ctor_m8237DB4630E307D5BF4496918D1F5A07DC10E5CF(L_24, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE9B7CE2D02A510C205D00BA29627B382A319C706)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_24, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X509V2AttributeCertificate_CheckSignature_m8ED4D870354ED6A8DF5FA8FD35E6F165C4C0E1F2_RuntimeMethod_var))); } IL_0092: { // } return; } } // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificate::GetEncoded() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* X509V2AttributeCertificate_GetEncoded_m7899EA4CA05FABA82F19D4068F48F07562352B62 (X509V2AttributeCertificate_t004E81AFB075D95CA954C1C9E84F0C63F27A56A3 * __this, const RuntimeMethod* method) { { // return cert.GetEncoded(); AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 * L_0 = __this->get_cert_0(); NullCheck(L_0); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1; L_1 = Asn1Encodable_GetEncoded_m896BCF72900F9B8B4CCA196988ACB61423A424AF(L_0, /*hidden argument*/NULL); return L_1; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificate::GetX509Extensions() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F * X509V2AttributeCertificate_GetX509Extensions_m3CED53DFCE29CFE64A3E0EB271B3D0AD62D9D1B2 (X509V2AttributeCertificate_t004E81AFB075D95CA954C1C9E84F0C63F27A56A3 * __this, const RuntimeMethod* method) { { // return cert.ACInfo.Extensions; AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 * L_0 = __this->get_cert_0(); NullCheck(L_0); AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00 * L_1; L_1 = AttributeCertificate_get_ACInfo_m00F32F713F5C5408A358DEB8A787864FB08622AC_inline(L_0, /*hidden argument*/NULL); NullCheck(L_1); X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F * L_2; L_2 = AttributeCertificateInfo_get_Extensions_m2F790F39E1AB66AF2415D800C6A33686C1FBAC1D_inline(L_1, /*hidden argument*/NULL); return L_2; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Attribute[] BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificate::GetAttributes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509AttributeU5BU5D_tB7CB869D1933A59A13717C710F5F0ED2A833E042* X509V2AttributeCertificate_GetAttributes_m8DE7684FFDFB6FDFC1A68568EF9357C445DBB652 (X509V2AttributeCertificate_t004E81AFB075D95CA954C1C9E84F0C63F27A56A3 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509AttributeU5BU5D_tB7CB869D1933A59A13717C710F5F0ED2A833E042_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509Attribute_t81BD5B9B96782764FF136486088938EC85B61559_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * V_0 = NULL; X509AttributeU5BU5D_tB7CB869D1933A59A13717C710F5F0ED2A833E042* V_1 = NULL; int32_t V_2 = 0; { // Asn1Sequence seq = cert.ACInfo.Attributes; AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 * L_0 = __this->get_cert_0(); NullCheck(L_0); AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00 * L_1; L_1 = AttributeCertificate_get_ACInfo_m00F32F713F5C5408A358DEB8A787864FB08622AC_inline(L_0, /*hidden argument*/NULL); NullCheck(L_1); Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_2; L_2 = AttributeCertificateInfo_get_Attributes_mEE6BD725805254ADA35EAB78103EE6D1975E56CB_inline(L_1, /*hidden argument*/NULL); V_0 = L_2; // X509Attribute[] attrs = new X509Attribute[seq.Count]; Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_3 = V_0; NullCheck(L_3); int32_t L_4; L_4 = VirtualFuncInvoker0< int32_t >::Invoke(13 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Count() */, L_3); X509AttributeU5BU5D_tB7CB869D1933A59A13717C710F5F0ED2A833E042* L_5 = (X509AttributeU5BU5D_tB7CB869D1933A59A13717C710F5F0ED2A833E042*)(X509AttributeU5BU5D_tB7CB869D1933A59A13717C710F5F0ED2A833E042*)SZArrayNew(X509AttributeU5BU5D_tB7CB869D1933A59A13717C710F5F0ED2A833E042_il2cpp_TypeInfo_var, (uint32_t)L_4); V_1 = L_5; // for (int i = 0; i != seq.Count; i++) V_2 = 0; goto IL_0034; } IL_0021: { // attrs[i] = new X509Attribute((Asn1Encodable)seq[i]); X509AttributeU5BU5D_tB7CB869D1933A59A13717C710F5F0ED2A833E042* L_6 = V_1; int32_t L_7 = V_2; Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_8 = V_0; int32_t L_9 = V_2; NullCheck(L_8); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_10; L_10 = VirtualFuncInvoker1< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *, int32_t >::Invoke(12 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Item(System.Int32) */, L_8, L_9); X509Attribute_t81BD5B9B96782764FF136486088938EC85B61559 * L_11 = (X509Attribute_t81BD5B9B96782764FF136486088938EC85B61559 *)il2cpp_codegen_object_new(X509Attribute_t81BD5B9B96782764FF136486088938EC85B61559_il2cpp_TypeInfo_var); X509Attribute__ctor_m26F8B424230FEAD9A7F759A356177C29C33A98B6(L_11, L_10, /*hidden argument*/NULL); NullCheck(L_6); ArrayElementTypeCheck (L_6, L_11); (L_6)->SetAt(static_cast(L_7), (X509Attribute_t81BD5B9B96782764FF136486088938EC85B61559 *)L_11); // for (int i = 0; i != seq.Count; i++) int32_t L_12 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_0034: { // for (int i = 0; i != seq.Count; i++) int32_t L_13 = V_2; Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_14 = V_0; NullCheck(L_14); int32_t L_15; L_15 = VirtualFuncInvoker0< int32_t >::Invoke(13 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Count() */, L_14); if ((!(((uint32_t)L_13) == ((uint32_t)L_15)))) { goto IL_0021; } } { // return attrs; X509AttributeU5BU5D_tB7CB869D1933A59A13717C710F5F0ED2A833E042* L_16 = V_1; return L_16; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Attribute[] BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificate::GetAttributes(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509AttributeU5BU5D_tB7CB869D1933A59A13717C710F5F0ED2A833E042* X509V2AttributeCertificate_GetAttributes_mED3DD87EB31AAF0708F52EFEECD0D282A0211396 (X509V2AttributeCertificate_t004E81AFB075D95CA954C1C9E84F0C63F27A56A3 * __this, String_t* ___oid0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_tC1E1DED86C0A66845675392606B302452210D5DA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_tB15A9D6625D09661D6E47976BB626C703EC81910_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509AttributeU5BU5D_tB7CB869D1933A59A13717C710F5F0ED2A833E042_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509Attribute_t81BD5B9B96782764FF136486088938EC85B61559_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * V_0 = NULL; RuntimeObject* V_1 = NULL; X509AttributeU5BU5D_tB7CB869D1933A59A13717C710F5F0ED2A833E042* V_2 = NULL; int32_t V_3 = 0; X509Attribute_t81BD5B9B96782764FF136486088938EC85B61559 * V_4 = NULL; int32_t V_5 = 0; { // Asn1Sequence seq = cert.ACInfo.Attributes; AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 * L_0 = __this->get_cert_0(); NullCheck(L_0); AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00 * L_1; L_1 = AttributeCertificate_get_ACInfo_m00F32F713F5C5408A358DEB8A787864FB08622AC_inline(L_0, /*hidden argument*/NULL); NullCheck(L_1); Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_2; L_2 = AttributeCertificateInfo_get_Attributes_mEE6BD725805254ADA35EAB78103EE6D1975E56CB_inline(L_1, /*hidden argument*/NULL); V_0 = L_2; // IList list = BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.CreateArrayList(); IL2CPP_RUNTIME_CLASS_INIT(Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var); RuntimeObject* L_3; L_3 = Platform_CreateArrayList_mDA08F8A3BC566FA8E0753B97D8B06F3EF26A4143(/*hidden argument*/NULL); V_1 = L_3; // for (int i = 0; i != seq.Count; i++) V_3 = 0; goto IL_0045; } IL_001b: { // X509Attribute attr = new X509Attribute((Asn1Encodable)seq[i]); Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_4 = V_0; int32_t L_5 = V_3; NullCheck(L_4); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_6; L_6 = VirtualFuncInvoker1< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *, int32_t >::Invoke(12 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Item(System.Int32) */, L_4, L_5); X509Attribute_t81BD5B9B96782764FF136486088938EC85B61559 * L_7 = (X509Attribute_t81BD5B9B96782764FF136486088938EC85B61559 *)il2cpp_codegen_object_new(X509Attribute_t81BD5B9B96782764FF136486088938EC85B61559_il2cpp_TypeInfo_var); X509Attribute__ctor_m26F8B424230FEAD9A7F759A356177C29C33A98B6(L_7, L_6, /*hidden argument*/NULL); V_4 = L_7; // if (attr.Oid.Equals(oid)) X509Attribute_t81BD5B9B96782764FF136486088938EC85B61559 * L_8 = V_4; NullCheck(L_8); String_t* L_9; L_9 = X509Attribute_get_Oid_m5C2B8CD3F3FC8D127E9A76DA86E84DFECDAE2D64(L_8, /*hidden argument*/NULL); String_t* L_10 = ___oid0; NullCheck(L_9); bool L_11; L_11 = String_Equals_m8A062B96B61A7D652E7D73C9B3E904F6B0E5F41D(L_9, L_10, /*hidden argument*/NULL); if (!L_11) { goto IL_0041; } } { // list.Add(attr); RuntimeObject* L_12 = V_1; X509Attribute_t81BD5B9B96782764FF136486088938EC85B61559 * L_13 = V_4; NullCheck(L_12); int32_t L_14; L_14 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(2 /* System.Int32 System.Collections.IList::Add(System.Object) */, IList_tB15A9D6625D09661D6E47976BB626C703EC81910_il2cpp_TypeInfo_var, L_12, L_13); } IL_0041: { // for (int i = 0; i != seq.Count; i++) int32_t L_15 = V_3; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_0045: { // for (int i = 0; i != seq.Count; i++) int32_t L_16 = V_3; Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_17 = V_0; NullCheck(L_17); int32_t L_18; L_18 = VirtualFuncInvoker0< int32_t >::Invoke(13 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Count() */, L_17); if ((!(((uint32_t)L_16) == ((uint32_t)L_18)))) { goto IL_001b; } } { // if (list.Count < 1) RuntimeObject* L_19 = V_1; NullCheck(L_19); int32_t L_20; L_20 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_tC1E1DED86C0A66845675392606B302452210D5DA_il2cpp_TypeInfo_var, L_19); if ((((int32_t)L_20) >= ((int32_t)1))) { goto IL_0059; } } { // return null; return (X509AttributeU5BU5D_tB7CB869D1933A59A13717C710F5F0ED2A833E042*)NULL; } IL_0059: { // X509Attribute[] result = new X509Attribute[list.Count]; RuntimeObject* L_21 = V_1; NullCheck(L_21); int32_t L_22; L_22 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_tC1E1DED86C0A66845675392606B302452210D5DA_il2cpp_TypeInfo_var, L_21); X509AttributeU5BU5D_tB7CB869D1933A59A13717C710F5F0ED2A833E042* L_23 = (X509AttributeU5BU5D_tB7CB869D1933A59A13717C710F5F0ED2A833E042*)(X509AttributeU5BU5D_tB7CB869D1933A59A13717C710F5F0ED2A833E042*)SZArrayNew(X509AttributeU5BU5D_tB7CB869D1933A59A13717C710F5F0ED2A833E042_il2cpp_TypeInfo_var, (uint32_t)L_22); V_2 = L_23; // for (int i = 0; i < list.Count; ++i) V_5 = 0; goto IL_0081; } IL_006a: { // result[i] = (X509Attribute)list[i]; X509AttributeU5BU5D_tB7CB869D1933A59A13717C710F5F0ED2A833E042* L_24 = V_2; int32_t L_25 = V_5; RuntimeObject* L_26 = V_1; int32_t L_27 = V_5; NullCheck(L_26); RuntimeObject * L_28; L_28 = InterfaceFuncInvoker1< RuntimeObject *, int32_t >::Invoke(0 /* System.Object System.Collections.IList::get_Item(System.Int32) */, IList_tB15A9D6625D09661D6E47976BB626C703EC81910_il2cpp_TypeInfo_var, L_26, L_27); NullCheck(L_24); ArrayElementTypeCheck (L_24, ((X509Attribute_t81BD5B9B96782764FF136486088938EC85B61559 *)CastclassClass((RuntimeObject*)L_28, X509Attribute_t81BD5B9B96782764FF136486088938EC85B61559_il2cpp_TypeInfo_var))); (L_24)->SetAt(static_cast(L_25), (X509Attribute_t81BD5B9B96782764FF136486088938EC85B61559 *)((X509Attribute_t81BD5B9B96782764FF136486088938EC85B61559 *)CastclassClass((RuntimeObject*)L_28, X509Attribute_t81BD5B9B96782764FF136486088938EC85B61559_il2cpp_TypeInfo_var))); // for (int i = 0; i < list.Count; ++i) int32_t L_29 = V_5; V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_29, (int32_t)1)); } IL_0081: { // for (int i = 0; i < list.Count; ++i) int32_t L_30 = V_5; RuntimeObject* L_31 = V_1; NullCheck(L_31); int32_t L_32; L_32 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_tC1E1DED86C0A66845675392606B302452210D5DA_il2cpp_TypeInfo_var, L_31); if ((((int32_t)L_30) < ((int32_t)L_32))) { goto IL_006a; } } { // return result; X509AttributeU5BU5D_tB7CB869D1933A59A13717C710F5F0ED2A833E042* L_33 = V_2; return L_33; } } // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificate::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool X509V2AttributeCertificate_Equals_m617BC66D67578F1824A960B5A5FB2F6E71621C6C (X509V2AttributeCertificate_t004E81AFB075D95CA954C1C9E84F0C63F27A56A3 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509V2AttributeCertificate_t004E81AFB075D95CA954C1C9E84F0C63F27A56A3_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } X509V2AttributeCertificate_t004E81AFB075D95CA954C1C9E84F0C63F27A56A3 * V_0 = NULL; { // if (obj == this) RuntimeObject * L_0 = ___obj0; if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(X509V2AttributeCertificate_t004E81AFB075D95CA954C1C9E84F0C63F27A56A3 *)__this)))) { goto IL_0006; } } { // return true; return (bool)1; } IL_0006: { // X509V2AttributeCertificate other = obj as X509V2AttributeCertificate; RuntimeObject * L_1 = ___obj0; V_0 = ((X509V2AttributeCertificate_t004E81AFB075D95CA954C1C9E84F0C63F27A56A3 *)IsInstClass((RuntimeObject*)L_1, X509V2AttributeCertificate_t004E81AFB075D95CA954C1C9E84F0C63F27A56A3_il2cpp_TypeInfo_var)); // if (other == null) X509V2AttributeCertificate_t004E81AFB075D95CA954C1C9E84F0C63F27A56A3 * L_2 = V_0; if (L_2) { goto IL_0012; } } { // return false; return (bool)0; } IL_0012: { // return cert.Equals(other.cert); AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 * L_3 = __this->get_cert_0(); X509V2AttributeCertificate_t004E81AFB075D95CA954C1C9E84F0C63F27A56A3 * L_4 = V_0; NullCheck(L_4); AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 * L_5 = L_4->get_cert_0(); NullCheck(L_3); bool L_6; L_6 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_3, L_5); return L_6; } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificate::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t X509V2AttributeCertificate_GetHashCode_mAC7D0D5381BD87005EABE41567F166F80EA34D53 (X509V2AttributeCertificate_t004E81AFB075D95CA954C1C9E84F0C63F27A56A3 * __this, const RuntimeMethod* method) { { // return cert.GetHashCode(); AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 * L_0 = __this->get_cert_0(); NullCheck(L_0); int32_t L_1; L_1 = VirtualFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_0); return L_1; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificateGenerator::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V2AttributeCertificateGenerator__ctor_m20083D33FCA28ABAB99E172D61A6C6B32A8B9F7D (X509V2AttributeCertificateGenerator_t1D1AA3B97DC5936015611DA35A8759A26D6FF775 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // private readonly X509ExtensionsGenerator extGenerator = new X509ExtensionsGenerator(); X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017 * L_0 = (X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017 *)il2cpp_codegen_object_new(X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017_il2cpp_TypeInfo_var); X509ExtensionsGenerator__ctor_mB7D490ED4359DF50045F1879242A4A21948A2D9B(L_0, /*hidden argument*/NULL); __this->set_extGenerator_0(L_0); // public X509V2AttributeCertificateGenerator() Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); // acInfoGen = new V2AttributeCertificateInfoGenerator(); V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036 * L_1 = (V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036 *)il2cpp_codegen_object_new(V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036_il2cpp_TypeInfo_var); V2AttributeCertificateInfoGenerator__ctor_m3E3B4EDFF96244038B1B6D4B7DADCBE2A28F2C2D(L_1, /*hidden argument*/NULL); __this->set_acInfoGen_1(L_1); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificateGenerator::Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V2AttributeCertificateGenerator_Reset_m0110D3AA271A4AF4C13EBBF62F68821CBFA4C084 (X509V2AttributeCertificateGenerator_t1D1AA3B97DC5936015611DA35A8759A26D6FF775 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // acInfoGen = new V2AttributeCertificateInfoGenerator(); V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036 * L_0 = (V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036 *)il2cpp_codegen_object_new(V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036_il2cpp_TypeInfo_var); V2AttributeCertificateInfoGenerator__ctor_m3E3B4EDFF96244038B1B6D4B7DADCBE2A28F2C2D(L_0, /*hidden argument*/NULL); __this->set_acInfoGen_1(L_0); // extGenerator.Reset(); X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017 * L_1 = __this->get_extGenerator_0(); NullCheck(L_1); X509ExtensionsGenerator_Reset_mB0501EACA8C4B642DB7D75B7290946B01EDE3646(L_1, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificateGenerator::SetHolder(BestHTTP.SecureProtocol.Org.BouncyCastle.X509.AttributeCertificateHolder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V2AttributeCertificateGenerator_SetHolder_mB6ED36AA2C36DB90364739F6C44B58A2083547BE (X509V2AttributeCertificateGenerator_t1D1AA3B97DC5936015611DA35A8759A26D6FF775 * __this, AttributeCertificateHolder_t84044880E63B3791FAAD143E5AE456CCAF5A283D * ___holder0, const RuntimeMethod* method) { { // acInfoGen.SetHolder(holder.holder); V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036 * L_0 = __this->get_acInfoGen_1(); AttributeCertificateHolder_t84044880E63B3791FAAD143E5AE456CCAF5A283D * L_1 = ___holder0; NullCheck(L_1); Holder_t64C922905238378DD56C273DE16BA7D09529E22A * L_2 = L_1->get_holder_0(); NullCheck(L_0); V2AttributeCertificateInfoGenerator_SetHolder_mC59D66CA8AA6F0A2FA2588C150326603B998F604_inline(L_0, L_2, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificateGenerator::SetIssuer(BestHTTP.SecureProtocol.Org.BouncyCastle.X509.AttributeCertificateIssuer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V2AttributeCertificateGenerator_SetIssuer_mE63C121CE7E48C516CD7E66B9994EB458C73C3DE (X509V2AttributeCertificateGenerator_t1D1AA3B97DC5936015611DA35A8759A26D6FF775 * __this, AttributeCertificateIssuer_t0CDFDFE49E5B87F38DDC1F1E13440FB7C1B394D4 * ___issuer0, const RuntimeMethod* method) { { // acInfoGen.SetIssuer(AttCertIssuer.GetInstance(issuer.form)); V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036 * L_0 = __this->get_acInfoGen_1(); AttributeCertificateIssuer_t0CDFDFE49E5B87F38DDC1F1E13440FB7C1B394D4 * L_1 = ___issuer0; NullCheck(L_1); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_2 = L_1->get_form_0(); AttCertIssuer_tC2A63BCB19A64F1F5B6335B241ED80E5AAC1562A * L_3; L_3 = AttCertIssuer_GetInstance_mB0E77F42C07ADA78E03E8DD2EBA382606458FFDC(L_2, /*hidden argument*/NULL); NullCheck(L_0); V2AttributeCertificateInfoGenerator_SetIssuer_m4B620D36F125A835F42D0E492EE182264E5C4D0C_inline(L_0, L_3, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificateGenerator::SetSerialNumber(BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V2AttributeCertificateGenerator_SetSerialNumber_mBE07AA75C24486F9CFD08265FFA05C44DD9208F3 (X509V2AttributeCertificateGenerator_t1D1AA3B97DC5936015611DA35A8759A26D6FF775 * __this, BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___serialNumber0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // acInfoGen.SetSerialNumber(new DerInteger(serialNumber)); V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036 * L_0 = __this->get_acInfoGen_1(); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_1 = ___serialNumber0; DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * L_2 = (DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 *)il2cpp_codegen_object_new(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var); DerInteger__ctor_m612C6B5423FEC812F2B14987AF4D153C141750F0(L_2, L_1, /*hidden argument*/NULL); NullCheck(L_0); V2AttributeCertificateInfoGenerator_SetSerialNumber_m8BC58C228089EB8037BC91359A794A9E1881F6F5_inline(L_0, L_2, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificateGenerator::SetNotBefore(System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V2AttributeCertificateGenerator_SetNotBefore_m52ACEF63EA6AE667DFBECD29ECD73F7C11494861 (X509V2AttributeCertificateGenerator_t1D1AA3B97DC5936015611DA35A8759A26D6FF775 * __this, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___date0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // acInfoGen.SetStartDate(new DerGeneralizedTime(date)); V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036 * L_0 = __this->get_acInfoGen_1(); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_1 = ___date0; DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 * L_2 = (DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 *)il2cpp_codegen_object_new(DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0_il2cpp_TypeInfo_var); DerGeneralizedTime__ctor_mB2C53D4E1AF2AD5ED1B8F41D730875DD1EC48CA6(L_2, L_1, /*hidden argument*/NULL); NullCheck(L_0); V2AttributeCertificateInfoGenerator_SetStartDate_mB64874F432A6989CC4B5D3F9FE9644A3B1B13B7E_inline(L_0, L_2, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificateGenerator::SetNotAfter(System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V2AttributeCertificateGenerator_SetNotAfter_m09D329AD25FE68F27298C143F28A56463FECB26E (X509V2AttributeCertificateGenerator_t1D1AA3B97DC5936015611DA35A8759A26D6FF775 * __this, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___date0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // acInfoGen.SetEndDate(new DerGeneralizedTime(date)); V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036 * L_0 = __this->get_acInfoGen_1(); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_1 = ___date0; DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 * L_2 = (DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 *)il2cpp_codegen_object_new(DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0_il2cpp_TypeInfo_var); DerGeneralizedTime__ctor_mB2C53D4E1AF2AD5ED1B8F41D730875DD1EC48CA6(L_2, L_1, /*hidden argument*/NULL); NullCheck(L_0); V2AttributeCertificateInfoGenerator_SetEndDate_m33AC104849F62DEBF906F321BD385A1E5CAADE08_inline(L_0, L_2, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificateGenerator::SetSignatureAlgorithm(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V2AttributeCertificateGenerator_SetSignatureAlgorithm_m8AB316681BB5FA8C69797EC26A6DB6D8FA6596E2 (X509V2AttributeCertificateGenerator_t1D1AA3B97DC5936015611DA35A8759A26D6FF775 * __this, String_t* ___signatureAlgorithm0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; { // this.signatureAlgorithm = signatureAlgorithm; String_t* L_0 = ___signatureAlgorithm0; __this->set_signatureAlgorithm_4(L_0); } IL_0007: try {// begin try (depth: 1) // sigOID = X509Utilities.GetAlgorithmOid(signatureAlgorithm); String_t* L_1 = ___signatureAlgorithm0; IL2CPP_RUNTIME_CLASS_INIT(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_2; L_2 = X509Utilities_GetAlgorithmOid_m9F775A603669DE9A5E4FDCC0A56F8C0B9F7DAEE4(L_1, /*hidden argument*/NULL); __this->set_sigOID_2(L_2); // } goto IL_0021; }// 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_0015; } throw e; } CATCH_0015: {// begin catch(System.Exception) // catch (Exception) // throw new ArgumentException("Unknown signature type requested"); 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*)&_stringLiteral2ECCF0272C09381DA599D0B70DB523A192791180)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X509V2AttributeCertificateGenerator_SetSignatureAlgorithm_m8AB316681BB5FA8C69797EC26A6DB6D8FA6596E2_RuntimeMethod_var))); }// end catch (depth: 1) IL_0021: { // sigAlgId = X509Utilities.GetSigAlgID(sigOID, signatureAlgorithm); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_4 = __this->get_sigOID_2(); String_t* L_5 = ___signatureAlgorithm0; IL2CPP_RUNTIME_CLASS_INIT(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_6; L_6 = X509Utilities_GetSigAlgID_mA149FCB12BE7F0FC7331A3234DAB2CCAEFB86F59(L_4, L_5, /*hidden argument*/NULL); __this->set_sigAlgId_3(L_6); // acInfoGen.SetSignature(sigAlgId); V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036 * L_7 = __this->get_acInfoGen_1(); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_8 = __this->get_sigAlgId_3(); NullCheck(L_7); V2AttributeCertificateInfoGenerator_SetSignature_m315563D4C9DCE8E3BDF9C8475FE32F57ED3687A8_inline(L_7, L_8, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificateGenerator::AddAttribute(BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Attribute) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V2AttributeCertificateGenerator_AddAttribute_m9BAF8FC20256D43931BA3EA4F7F055FE1604A4FD (X509V2AttributeCertificateGenerator_t1D1AA3B97DC5936015611DA35A8759A26D6FF775 * __this, X509Attribute_t81BD5B9B96782764FF136486088938EC85B61559 * ___attribute0, const RuntimeMethod* method) { { // acInfoGen.AddAttribute(AttributeX509.GetInstance(attribute.ToAsn1Object())); V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036 * L_0 = __this->get_acInfoGen_1(); X509Attribute_t81BD5B9B96782764FF136486088938EC85B61559 * L_1 = ___attribute0; NullCheck(L_1); Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * L_2; L_2 = VirtualFuncInvoker0< Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * >::Invoke(5 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Object BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable::ToAsn1Object() */, L_1); AttributeX509_t63A4C9CCBF6EE24C795D436E493F4C56327185EA * L_3; L_3 = AttributeX509_GetInstance_m272981F027CB11EFB83AA0CF3BC8F835BCF3F6AF(L_2, /*hidden argument*/NULL); NullCheck(L_0); V2AttributeCertificateInfoGenerator_AddAttribute_m4F8AA103D04BBD7B9A0AFAB3FE86117D16CDD06A(L_0, L_3, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificateGenerator::SetIssuerUniqueId(System.Boolean[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V2AttributeCertificateGenerator_SetIssuerUniqueId_mFF8221F4F89429EDC07DED379DAF862B9F138E9F (X509V2AttributeCertificateGenerator_t1D1AA3B97DC5936015611DA35A8759A26D6FF775 * __this, BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* ___iui0, const RuntimeMethod* method) { { // throw BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.CreateNotImplementedException("SetIssuerUniqueId()"); IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var))); Exception_t * L_0; L_0 = Platform_CreateNotImplementedException_m354FC98BB8605016FF125C0BE509AB24921F6ED2(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF41B89FC23BF781B206EB07422CE9E5E94BF7B5A)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X509V2AttributeCertificateGenerator_SetIssuerUniqueId_mFF8221F4F89429EDC07DED379DAF862B9F138E9F_RuntimeMethod_var))); } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificateGenerator::AddExtension(System.String,System.Boolean,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V2AttributeCertificateGenerator_AddExtension_mACD286EAA22562A90949AE08FFE597535269B9D9 (X509V2AttributeCertificateGenerator_t1D1AA3B97DC5936015611DA35A8759A26D6FF775 * __this, String_t* ___oid0, bool ___critical1, Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * ___extensionValue2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // extGenerator.AddExtension(new DerObjectIdentifier(oid), critical, extensionValue); X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017 * L_0 = __this->get_extGenerator_0(); String_t* L_1 = ___oid0; DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_2 = (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *)il2cpp_codegen_object_new(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); DerObjectIdentifier__ctor_m8009342D7B2AD40B1E19E6AB958141979B7405CD(L_2, L_1, /*hidden argument*/NULL); bool L_3 = ___critical1; Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_4 = ___extensionValue2; NullCheck(L_0); X509ExtensionsGenerator_AddExtension_m33588CC2BBC5492493B179B7E4FA63DA5DC4B67D(L_0, L_2, L_3, L_4, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificateGenerator::AddExtension(System.String,System.Boolean,System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V2AttributeCertificateGenerator_AddExtension_mAC2F501C9ED312A5CF63392F05ED887231D05016 (X509V2AttributeCertificateGenerator_t1D1AA3B97DC5936015611DA35A8759A26D6FF775 * __this, String_t* ___oid0, bool ___critical1, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___extensionValue2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // extGenerator.AddExtension(new DerObjectIdentifier(oid), critical, extensionValue); X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017 * L_0 = __this->get_extGenerator_0(); String_t* L_1 = ___oid0; DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_2 = (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *)il2cpp_codegen_object_new(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); DerObjectIdentifier__ctor_m8009342D7B2AD40B1E19E6AB958141979B7405CD(L_2, L_1, /*hidden argument*/NULL); bool L_3 = ___critical1; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = ___extensionValue2; NullCheck(L_0); X509ExtensionsGenerator_AddExtension_m30534A347383AD1744D02A9E7AB42775EFA82C1B(L_0, L_2, L_3, L_4, /*hidden argument*/NULL); // } return; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.IX509AttributeCertificate BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificateGenerator::Generate(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* X509V2AttributeCertificateGenerator_Generate_m05CBF4FFFB638451A07EF168DC1A921BBC78F885 (X509V2AttributeCertificateGenerator_t1D1AA3B97DC5936015611DA35A8759A26D6FF775 * __this, AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * ___privateKey0, const RuntimeMethod* method) { { // return Generate(privateKey, null); AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * L_0 = ___privateKey0; RuntimeObject* L_1; L_1 = X509V2AttributeCertificateGenerator_Generate_m1C95A668C04DE39802F74D2DA808BACB525D3346(__this, L_0, (SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 *)NULL, /*hidden argument*/NULL); return L_1; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.IX509AttributeCertificate BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificateGenerator::Generate(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter,BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* X509V2AttributeCertificateGenerator_Generate_m1C95A668C04DE39802F74D2DA808BACB525D3346 (X509V2AttributeCertificateGenerator_t1D1AA3B97DC5936015611DA35A8759A26D6FF775 * __this, AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * ___privateKey0, SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * ___random1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Asn1SignatureFactory_t82880FE5F99692E8C940551308221AA7CAB2682A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // return Generate(new Asn1SignatureFactory(signatureAlgorithm, privateKey, random)); String_t* L_0 = __this->get_signatureAlgorithm_4(); AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * L_1 = ___privateKey0; SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * L_2 = ___random1; Asn1SignatureFactory_t82880FE5F99692E8C940551308221AA7CAB2682A * L_3 = (Asn1SignatureFactory_t82880FE5F99692E8C940551308221AA7CAB2682A *)il2cpp_codegen_object_new(Asn1SignatureFactory_t82880FE5F99692E8C940551308221AA7CAB2682A_il2cpp_TypeInfo_var); Asn1SignatureFactory__ctor_m3B76289916350A708ADF571E9FEE4A509E87E0E7(L_3, L_0, L_1, L_2, /*hidden argument*/NULL); RuntimeObject* L_4; L_4 = X509V2AttributeCertificateGenerator_Generate_m6F74A44069DAB28A3B24FBC988F70F6980C61B8D(__this, L_3, /*hidden argument*/NULL); return L_4; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.IX509AttributeCertificate BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificateGenerator::Generate(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ISignatureFactory) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* X509V2AttributeCertificateGenerator_Generate_m6F74A44069DAB28A3B24FBC988F70F6980C61B8D (X509V2AttributeCertificateGenerator_t1D1AA3B97DC5936015611DA35A8759A26D6FF775 * __this, RuntimeObject* ___signatureCalculatorFactory0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerBitString_t305465793A47445626D3541AB8CEDE347D874524_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBlockResult_t6A7C472F432343ADBA690B12778C4CF5FFB19CCE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ISignatureFactory_t1572BDBCE1A2741BB5DF8A6BE3FC219B7722135B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IStreamCalculator_t4F9460D63B0B76B77564036A39E861A0A03ABD07_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509V2AttributeCertificate_t004E81AFB075D95CA954C1C9E84F0C63F27A56A3_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * V_0 = NULL; AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00 * V_1 = NULL; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_2 = NULL; RuntimeObject* V_3 = NULL; DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * V_4 = NULL; RuntimeObject* V_5 = NULL; Exception_t * V_6 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; { // if (!extGenerator.IsEmpty) X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017 * L_0 = __this->get_extGenerator_0(); NullCheck(L_0); bool L_1; L_1 = X509ExtensionsGenerator_get_IsEmpty_m80C3FB668B6AFCC515B529A100626FF0F96A97C1(L_0, /*hidden argument*/NULL); if (L_1) { goto IL_0023; } } { // acInfoGen.SetExtensions(extGenerator.Generate()); V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036 * L_2 = __this->get_acInfoGen_1(); X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017 * L_3 = __this->get_extGenerator_0(); NullCheck(L_3); X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F * L_4; L_4 = X509ExtensionsGenerator_Generate_m6E3B33182C20F1F63B510DDBA98CBFB0724DBE7F(L_3, /*hidden argument*/NULL); NullCheck(L_2); V2AttributeCertificateInfoGenerator_SetExtensions_mF9DE6CAA40B5D9AEE104A8DC91309EB0B99C1CCD_inline(L_2, L_4, /*hidden argument*/NULL); } IL_0023: { // AlgorithmIdentifier sigAlgID = (AlgorithmIdentifier)signatureCalculatorFactory.AlgorithmDetails; RuntimeObject* L_5 = ___signatureCalculatorFactory0; NullCheck(L_5); RuntimeObject * L_6; L_6 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ISignatureFactory::get_AlgorithmDetails() */, ISignatureFactory_t1572BDBCE1A2741BB5DF8A6BE3FC219B7722135B_il2cpp_TypeInfo_var, L_5); V_0 = ((AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 *)CastclassClass((RuntimeObject*)L_6, AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9_il2cpp_TypeInfo_var)); // acInfoGen.SetSignature(sigAlgID); V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036 * L_7 = __this->get_acInfoGen_1(); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_8 = V_0; NullCheck(L_7); V2AttributeCertificateInfoGenerator_SetSignature_m315563D4C9DCE8E3BDF9C8475FE32F57ED3687A8_inline(L_7, L_8, /*hidden argument*/NULL); // AttributeCertificateInfo acInfo = acInfoGen.GenerateAttributeCertificateInfo(); V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036 * L_9 = __this->get_acInfoGen_1(); NullCheck(L_9); AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00 * L_10; L_10 = V2AttributeCertificateInfoGenerator_GenerateAttributeCertificateInfo_mED5707291FF4ECDD23FA6635B2E9414A594E27C2(L_9, /*hidden argument*/NULL); V_1 = L_10; // byte[] encoded = acInfo.GetDerEncoded(); AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00 * L_11 = V_1; NullCheck(L_11); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_12; L_12 = Asn1Encodable_GetDerEncoded_m30F357C2B994910EAC405FACBB5CA88181B3CD4E(L_11, /*hidden argument*/NULL); V_2 = L_12; // IStreamCalculator streamCalculator = signatureCalculatorFactory.CreateCalculator(); RuntimeObject* L_13 = ___signatureCalculatorFactory0; NullCheck(L_13); RuntimeObject* L_14; L_14 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IStreamCalculator BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ISignatureFactory::CreateCalculator() */, ISignatureFactory_t1572BDBCE1A2741BB5DF8A6BE3FC219B7722135B_il2cpp_TypeInfo_var, L_13); V_3 = L_14; // streamCalculator.Stream.Write(encoded, 0, encoded.Length); RuntimeObject* L_15 = V_3; NullCheck(L_15); Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_16; L_16 = InterfaceFuncInvoker0< Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * >::Invoke(0 /* System.IO.Stream BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IStreamCalculator::get_Stream() */, IStreamCalculator_t4F9460D63B0B76B77564036A39E861A0A03ABD07_il2cpp_TypeInfo_var, L_15); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_17 = V_2; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_18 = V_2; NullCheck(L_18); NullCheck(L_16); VirtualActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(32 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_16, L_17, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_18)->max_length)))); // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.Dispose(streamCalculator.Stream); RuntimeObject* L_19 = V_3; NullCheck(L_19); Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_20; L_20 = InterfaceFuncInvoker0< Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * >::Invoke(0 /* System.IO.Stream BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IStreamCalculator::get_Stream() */, IStreamCalculator_t4F9460D63B0B76B77564036A39E861A0A03ABD07_il2cpp_TypeInfo_var, L_19); IL2CPP_RUNTIME_CLASS_INIT(Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var); Platform_Dispose_m852AB0A263A990096BCE2A4230CB5723F873C1A2(L_20, /*hidden argument*/NULL); } IL_0070: try {// begin try (depth: 1) // DerBitString signatureValue = new DerBitString(((IBlockResult)streamCalculator.GetResult()).Collect()); RuntimeObject* L_21 = V_3; NullCheck(L_21); RuntimeObject * L_22; L_22 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IStreamCalculator::GetResult() */, IStreamCalculator_t4F9460D63B0B76B77564036A39E861A0A03ABD07_il2cpp_TypeInfo_var, L_21); NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_22, IBlockResult_t6A7C472F432343ADBA690B12778C4CF5FFB19CCE_il2cpp_TypeInfo_var))); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_23; L_23 = InterfaceFuncInvoker0< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* >::Invoke(0 /* System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockResult::Collect() */, IBlockResult_t6A7C472F432343ADBA690B12778C4CF5FFB19CCE_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_22, IBlockResult_t6A7C472F432343ADBA690B12778C4CF5FFB19CCE_il2cpp_TypeInfo_var))); DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * L_24 = (DerBitString_t305465793A47445626D3541AB8CEDE347D874524 *)il2cpp_codegen_object_new(DerBitString_t305465793A47445626D3541AB8CEDE347D874524_il2cpp_TypeInfo_var); DerBitString__ctor_m97AF53404F6333EA146C0DB958DF3C483B71D94B(L_24, L_23, /*hidden argument*/NULL); V_4 = L_24; // return new X509V2AttributeCertificate(new AttributeCertificate(acInfo, sigAlgID, signatureValue)); AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00 * L_25 = V_1; AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_26 = V_0; DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * L_27 = V_4; AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 * L_28 = (AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 *)il2cpp_codegen_object_new(AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31_il2cpp_TypeInfo_var); AttributeCertificate__ctor_mE71810CCDE8FF29C321DC1A3EDD02ADEA8599469(L_28, L_25, L_26, L_27, /*hidden argument*/NULL); X509V2AttributeCertificate_t004E81AFB075D95CA954C1C9E84F0C63F27A56A3 * L_29 = (X509V2AttributeCertificate_t004E81AFB075D95CA954C1C9E84F0C63F27A56A3 *)il2cpp_codegen_object_new(X509V2AttributeCertificate_t004E81AFB075D95CA954C1C9E84F0C63F27A56A3_il2cpp_TypeInfo_var); X509V2AttributeCertificate__ctor_mFE4BE06C834860627D03F6E242C656CB3B815554(L_29, L_28, /*hidden argument*/NULL); V_5 = L_29; goto IL_00a8; }// 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_0099; } throw e; } CATCH_0099: {// begin catch(System.Exception) // catch (Exception e) V_6 = ((Exception_t *)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *)); // throw new CertificateEncodingException("constructed invalid certificate", e); Exception_t * L_30 = V_6; CertificateEncodingException_t026647D46DEE106DCC9AD27DBFE50F50009B2D5D * L_31 = (CertificateEncodingException_t026647D46DEE106DCC9AD27DBFE50F50009B2D5D *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CertificateEncodingException_t026647D46DEE106DCC9AD27DBFE50F50009B2D5D_il2cpp_TypeInfo_var))); CertificateEncodingException__ctor_m5F42D10FF83095947D51D1A5995858DDAA080D10(L_31, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral32416F7E684240F18027249AB9871F2E020005D9)), L_30, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_31, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X509V2AttributeCertificateGenerator_Generate_m6F74A44069DAB28A3B24FBC988F70F6980C61B8D_RuntimeMethod_var))); }// end catch (depth: 1) IL_00a8: { // } RuntimeObject* L_32 = V_5; return L_32; } } // System.Collections.IEnumerable BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2AttributeCertificateGenerator::get_SignatureAlgNames() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* X509V2AttributeCertificateGenerator_get_SignatureAlgNames_mC486FDC67E00D589518F0FCCE80388755107ADEF (X509V2AttributeCertificateGenerator_t1D1AA3B97DC5936015611DA35A8759A26D6FF775 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // get { return X509Utilities.GetAlgNames(); } IL2CPP_RUNTIME_CLASS_INIT(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var); RuntimeObject* L_0; L_0 = X509Utilities_GetAlgNames_mD83E9C06473AD2CFCFB7ACF02458BB69AF429932(/*hidden argument*/NULL); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2CrlGenerator::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V2CrlGenerator__ctor_m9BBDA0714728724D0BB942AB8D940B6730F6EFC2 (X509V2CrlGenerator_tE24775033089328401498B8DB1FB8176B95EA09D * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&V2TbsCertListGenerator_tC7920E9D2AE505500F0D2338C49267713D9D76E3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // private readonly X509ExtensionsGenerator extGenerator = new X509ExtensionsGenerator(); X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017 * L_0 = (X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017 *)il2cpp_codegen_object_new(X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017_il2cpp_TypeInfo_var); X509ExtensionsGenerator__ctor_mB7D490ED4359DF50045F1879242A4A21948A2D9B(L_0, /*hidden argument*/NULL); __this->set_extGenerator_0(L_0); // public X509V2CrlGenerator() Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); // tbsGen = new V2TbsCertListGenerator(); V2TbsCertListGenerator_tC7920E9D2AE505500F0D2338C49267713D9D76E3 * L_1 = (V2TbsCertListGenerator_tC7920E9D2AE505500F0D2338C49267713D9D76E3 *)il2cpp_codegen_object_new(V2TbsCertListGenerator_tC7920E9D2AE505500F0D2338C49267713D9D76E3_il2cpp_TypeInfo_var); V2TbsCertListGenerator__ctor_m1AEBE1D896E27414362D5753D19219F3AFB7F0D2(L_1, /*hidden argument*/NULL); __this->set_tbsGen_1(L_1); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2CrlGenerator::Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V2CrlGenerator_Reset_mC4372CF8DFE9C57A67710040AD26BC4F1EA46378 (X509V2CrlGenerator_tE24775033089328401498B8DB1FB8176B95EA09D * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&V2TbsCertListGenerator_tC7920E9D2AE505500F0D2338C49267713D9D76E3_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // tbsGen = new V2TbsCertListGenerator(); V2TbsCertListGenerator_tC7920E9D2AE505500F0D2338C49267713D9D76E3 * L_0 = (V2TbsCertListGenerator_tC7920E9D2AE505500F0D2338C49267713D9D76E3 *)il2cpp_codegen_object_new(V2TbsCertListGenerator_tC7920E9D2AE505500F0D2338C49267713D9D76E3_il2cpp_TypeInfo_var); V2TbsCertListGenerator__ctor_m1AEBE1D896E27414362D5753D19219F3AFB7F0D2(L_0, /*hidden argument*/NULL); __this->set_tbsGen_1(L_0); // extGenerator.Reset(); X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017 * L_1 = __this->get_extGenerator_0(); NullCheck(L_1); X509ExtensionsGenerator_Reset_mB0501EACA8C4B642DB7D75B7290946B01EDE3646(L_1, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2CrlGenerator::SetIssuerDN(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V2CrlGenerator_SetIssuerDN_m985781C2E0C9E1FC08EDD51AC80399996B770E66 (X509V2CrlGenerator_tE24775033089328401498B8DB1FB8176B95EA09D * __this, X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * ___issuer0, const RuntimeMethod* method) { { // tbsGen.SetIssuer(issuer); V2TbsCertListGenerator_tC7920E9D2AE505500F0D2338C49267713D9D76E3 * L_0 = __this->get_tbsGen_1(); X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * L_1 = ___issuer0; NullCheck(L_0); V2TbsCertListGenerator_SetIssuer_mF810473205EDAFB06ADB4AA1E60010BFC9DAEDE6_inline(L_0, L_1, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2CrlGenerator::SetThisUpdate(System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V2CrlGenerator_SetThisUpdate_mF5CD4B869EDA819DBACABBC66C4043686C7672A2 (X509V2CrlGenerator_tE24775033089328401498B8DB1FB8176B95EA09D * __this, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___date0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Time_tD684B1785E755395701D46F89A97609911CD6DDE_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // tbsGen.SetThisUpdate(new Time(date)); V2TbsCertListGenerator_tC7920E9D2AE505500F0D2338C49267713D9D76E3 * L_0 = __this->get_tbsGen_1(); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_1 = ___date0; Time_tD684B1785E755395701D46F89A97609911CD6DDE * L_2 = (Time_tD684B1785E755395701D46F89A97609911CD6DDE *)il2cpp_codegen_object_new(Time_tD684B1785E755395701D46F89A97609911CD6DDE_il2cpp_TypeInfo_var); Time__ctor_mBC7631425BAF63401048865DBFD7CDE253FEB313(L_2, L_1, /*hidden argument*/NULL); NullCheck(L_0); V2TbsCertListGenerator_SetThisUpdate_mBF7FF8184C21C8C1F196223967CC99271CBDDB33_inline(L_0, L_2, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2CrlGenerator::SetNextUpdate(System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V2CrlGenerator_SetNextUpdate_mAFBB7DA4E15DECFC7544D2773A8C1713EE6EB815 (X509V2CrlGenerator_tE24775033089328401498B8DB1FB8176B95EA09D * __this, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___date0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Time_tD684B1785E755395701D46F89A97609911CD6DDE_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // tbsGen.SetNextUpdate(new Time(date)); V2TbsCertListGenerator_tC7920E9D2AE505500F0D2338C49267713D9D76E3 * L_0 = __this->get_tbsGen_1(); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_1 = ___date0; Time_tD684B1785E755395701D46F89A97609911CD6DDE * L_2 = (Time_tD684B1785E755395701D46F89A97609911CD6DDE *)il2cpp_codegen_object_new(Time_tD684B1785E755395701D46F89A97609911CD6DDE_il2cpp_TypeInfo_var); Time__ctor_mBC7631425BAF63401048865DBFD7CDE253FEB313(L_2, L_1, /*hidden argument*/NULL); NullCheck(L_0); V2TbsCertListGenerator_SetNextUpdate_m61986EBFD22FD06B319523ED36B9DBC06E958BE2_inline(L_0, L_2, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2CrlGenerator::AddCrlEntry(BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger,System.DateTime,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V2CrlGenerator_AddCrlEntry_mD64FA0CD2EF48CE2252835485443C1B915C22FDC (X509V2CrlGenerator_tE24775033089328401498B8DB1FB8176B95EA09D * __this, BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___userCertificate0, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___revocationDate1, int32_t ___reason2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Time_tD684B1785E755395701D46F89A97609911CD6DDE_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // tbsGen.AddCrlEntry(new DerInteger(userCertificate), new Time(revocationDate), reason); V2TbsCertListGenerator_tC7920E9D2AE505500F0D2338C49267713D9D76E3 * L_0 = __this->get_tbsGen_1(); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_1 = ___userCertificate0; DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * L_2 = (DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 *)il2cpp_codegen_object_new(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var); DerInteger__ctor_m612C6B5423FEC812F2B14987AF4D153C141750F0(L_2, L_1, /*hidden argument*/NULL); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_3 = ___revocationDate1; Time_tD684B1785E755395701D46F89A97609911CD6DDE * L_4 = (Time_tD684B1785E755395701D46F89A97609911CD6DDE *)il2cpp_codegen_object_new(Time_tD684B1785E755395701D46F89A97609911CD6DDE_il2cpp_TypeInfo_var); Time__ctor_mBC7631425BAF63401048865DBFD7CDE253FEB313(L_4, L_3, /*hidden argument*/NULL); int32_t L_5 = ___reason2; NullCheck(L_0); V2TbsCertListGenerator_AddCrlEntry_mA382B69EF13BFD0AF3F3B91244E4E1AF5C0B0C26(L_0, L_2, L_4, L_5, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2CrlGenerator::AddCrlEntry(BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger,System.DateTime,System.Int32,System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V2CrlGenerator_AddCrlEntry_m5C354F2AAF9B35ECA0D0C2012EA1CC3578DBB1B9 (X509V2CrlGenerator_tE24775033089328401498B8DB1FB8176B95EA09D * __this, BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___userCertificate0, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___revocationDate1, int32_t ___reason2, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___invalidityDate3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Time_tD684B1785E755395701D46F89A97609911CD6DDE_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // tbsGen.AddCrlEntry(new DerInteger(userCertificate), new Time(revocationDate), reason, new DerGeneralizedTime(invalidityDate)); V2TbsCertListGenerator_tC7920E9D2AE505500F0D2338C49267713D9D76E3 * L_0 = __this->get_tbsGen_1(); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_1 = ___userCertificate0; DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * L_2 = (DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 *)il2cpp_codegen_object_new(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var); DerInteger__ctor_m612C6B5423FEC812F2B14987AF4D153C141750F0(L_2, L_1, /*hidden argument*/NULL); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_3 = ___revocationDate1; Time_tD684B1785E755395701D46F89A97609911CD6DDE * L_4 = (Time_tD684B1785E755395701D46F89A97609911CD6DDE *)il2cpp_codegen_object_new(Time_tD684B1785E755395701D46F89A97609911CD6DDE_il2cpp_TypeInfo_var); Time__ctor_mBC7631425BAF63401048865DBFD7CDE253FEB313(L_4, L_3, /*hidden argument*/NULL); int32_t L_5 = ___reason2; DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_6 = ___invalidityDate3; DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 * L_7 = (DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 *)il2cpp_codegen_object_new(DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0_il2cpp_TypeInfo_var); DerGeneralizedTime__ctor_mB2C53D4E1AF2AD5ED1B8F41D730875DD1EC48CA6(L_7, L_6, /*hidden argument*/NULL); NullCheck(L_0); V2TbsCertListGenerator_AddCrlEntry_m23F96CFDDA7027082E211C13592C57C6D8CFCBE3(L_0, L_2, L_4, L_5, L_7, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2CrlGenerator::AddCrlEntry(BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger,System.DateTime,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Extensions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V2CrlGenerator_AddCrlEntry_m757089AF273C55607F624671CD7DA8A8EEB98DDF (X509V2CrlGenerator_tE24775033089328401498B8DB1FB8176B95EA09D * __this, BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___userCertificate0, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___revocationDate1, X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F * ___extensions2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Time_tD684B1785E755395701D46F89A97609911CD6DDE_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // tbsGen.AddCrlEntry(new DerInteger(userCertificate), new Time(revocationDate), extensions); V2TbsCertListGenerator_tC7920E9D2AE505500F0D2338C49267713D9D76E3 * L_0 = __this->get_tbsGen_1(); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_1 = ___userCertificate0; DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * L_2 = (DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 *)il2cpp_codegen_object_new(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var); DerInteger__ctor_m612C6B5423FEC812F2B14987AF4D153C141750F0(L_2, L_1, /*hidden argument*/NULL); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_3 = ___revocationDate1; Time_tD684B1785E755395701D46F89A97609911CD6DDE * L_4 = (Time_tD684B1785E755395701D46F89A97609911CD6DDE *)il2cpp_codegen_object_new(Time_tD684B1785E755395701D46F89A97609911CD6DDE_il2cpp_TypeInfo_var); Time__ctor_mBC7631425BAF63401048865DBFD7CDE253FEB313(L_4, L_3, /*hidden argument*/NULL); X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F * L_5 = ___extensions2; NullCheck(L_0); V2TbsCertListGenerator_AddCrlEntry_m04ED36F6641F62C24B0E9BDC468A24F56C295403(L_0, L_2, L_4, L_5, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2CrlGenerator::AddCrl(BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Crl) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V2CrlGenerator_AddCrl_mB14EFD46D0A00FFC9E364A1B99BCED2379E3C01F (X509V2CrlGenerator_tE24775033089328401498B8DB1FB8176B95EA09D * __this, X509Crl_t963C99FFAA5E9B3E8AE0BBB6F74D45D52C7BBB04 * ___other0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t47A618747A1BB2A868710316F7372094849163A2_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509CrlEntry_tFFC049C5DB24BF9B445A5E04A1B87F6A25FC844C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; RuntimeObject* V_1 = NULL; X509CrlEntry_tFFC049C5DB24BF9B445A5E04A1B87F6A25FC844C * V_2 = NULL; IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA * V_3 = NULL; RuntimeObject* V_4 = NULL; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; { // if (other == null) X509Crl_t963C99FFAA5E9B3E8AE0BBB6F74D45D52C7BBB04 * L_0 = ___other0; if (L_0) { goto IL_000e; } } { // throw new ArgumentNullException("other"); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF7933083B6BA56CBC6D7BCA0F30688A30D0368F6)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X509V2CrlGenerator_AddCrl_mB14EFD46D0A00FFC9E364A1B99BCED2379E3C01F_RuntimeMethod_var))); } IL_000e: { // ISet revocations = other.GetRevokedCertificates(); X509Crl_t963C99FFAA5E9B3E8AE0BBB6F74D45D52C7BBB04 * L_2 = ___other0; NullCheck(L_2); RuntimeObject* L_3; L_3 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(22 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Collections.ISet BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Crl::GetRevokedCertificates() */, L_2); V_0 = L_3; // if (revocations != null) RuntimeObject* L_4 = V_0; if (!L_4) { goto IL_0075; } } { // foreach (X509CrlEntry entry in revocations) RuntimeObject* L_5 = V_0; NullCheck(L_5); RuntimeObject* L_6; L_6 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t47A618747A1BB2A868710316F7372094849163A2_il2cpp_TypeInfo_var, L_5); V_1 = L_6; } IL_001f: try {// begin try (depth: 1) { goto IL_0057; } IL_0021: { // foreach (X509CrlEntry entry in revocations) RuntimeObject* L_7 = V_1; NullCheck(L_7); RuntimeObject * L_8; L_8 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_7); V_2 = ((X509CrlEntry_tFFC049C5DB24BF9B445A5E04A1B87F6A25FC844C *)CastclassClass((RuntimeObject*)L_8, X509CrlEntry_tFFC049C5DB24BF9B445A5E04A1B87F6A25FC844C_il2cpp_TypeInfo_var)); } IL_002d: try {// begin try (depth: 2) // tbsGen.AddCrlEntry( // Asn1Sequence.GetInstance( // Asn1Object.FromByteArray(entry.GetEncoded()))); V2TbsCertListGenerator_tC7920E9D2AE505500F0D2338C49267713D9D76E3 * L_9 = __this->get_tbsGen_1(); X509CrlEntry_tFFC049C5DB24BF9B445A5E04A1B87F6A25FC844C * L_10 = V_2; NullCheck(L_10); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_11; L_11 = X509CrlEntry_GetEncoded_m54F375ED55258333737FB794AD1EA3C663A29229(L_10, /*hidden argument*/NULL); Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * L_12; L_12 = Asn1Object_FromByteArray_m2DB00E0C5F68F2C4C3CA24B1F3075BC8DA9AD989(L_11, /*hidden argument*/NULL); Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_13; L_13 = Asn1Sequence_GetInstance_m53E4D5619D84F02123D6C3B6EA8E0EEEF86B244C(L_12, /*hidden argument*/NULL); NullCheck(L_9); V2TbsCertListGenerator_AddCrlEntry_m9E07ED427671C4C4E3B9EDDD6A46CAD6756EBB04(L_9, L_13, /*hidden argument*/NULL); // } goto IL_0057; }// end try (depth: 2) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_004a; } throw e; } CATCH_004a: {// begin catch(System.IO.IOException) // catch (IOException e) V_3 = ((IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA *)IL2CPP_GET_ACTIVE_EXCEPTION(IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA *)); // throw new CrlException("exception processing encoding of CRL", e); IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA * L_14 = V_3; CrlException_t4BF9F20E36202FA4390A2F1E9F10551D9A7ABEA1 * L_15 = (CrlException_t4BF9F20E36202FA4390A2F1E9F10551D9A7ABEA1 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CrlException_t4BF9F20E36202FA4390A2F1E9F10551D9A7ABEA1_il2cpp_TypeInfo_var))); CrlException__ctor_mA64B84F261EA429D9FDA6C33D3C99EEF70406644(L_15, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6F52D92A97708BF39FAB686966B0E807E08B8BC5)), L_14, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X509V2CrlGenerator_AddCrl_mB14EFD46D0A00FFC9E364A1B99BCED2379E3C01F_RuntimeMethod_var))); }// end catch (depth: 2) IL_0057: { // foreach (X509CrlEntry entry in revocations) RuntimeObject* L_16 = V_1; NullCheck(L_16); bool L_17; L_17 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_16); if (L_17) { goto IL_0021; } } IL_005f: { IL2CPP_LEAVE(0x75, FINALLY_0061); } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0061; } FINALLY_0061: {// begin finally (depth: 1) { RuntimeObject* L_18 = V_1; V_4 = ((RuntimeObject*)IsInst((RuntimeObject*)L_18, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var)); RuntimeObject* L_19 = V_4; if (!L_19) { goto IL_0074; } } IL_006d: { RuntimeObject* L_20 = V_4; NullCheck(L_20); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_20); } IL_0074: { IL2CPP_END_FINALLY(97) } }// end finally (depth: 1) IL2CPP_CLEANUP(97) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x75, IL_0075) } IL_0075: { // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2CrlGenerator::SetSignatureAlgorithm(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V2CrlGenerator_SetSignatureAlgorithm_m0F7C76B285A82A8C9A773C9193D58F5B9D10E960 (X509V2CrlGenerator_tE24775033089328401498B8DB1FB8176B95EA09D * __this, String_t* ___signatureAlgorithm0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Exception_t * V_0 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; { // this.signatureAlgorithm = signatureAlgorithm; String_t* L_0 = ___signatureAlgorithm0; __this->set_signatureAlgorithm_4(L_0); } IL_0007: try {// begin try (depth: 1) // sigOID = X509Utilities.GetAlgorithmOid(signatureAlgorithm); String_t* L_1 = ___signatureAlgorithm0; IL2CPP_RUNTIME_CLASS_INIT(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_2; L_2 = X509Utilities_GetAlgorithmOid_m9F775A603669DE9A5E4FDCC0A56F8C0B9F7DAEE4(L_1, /*hidden argument*/NULL); __this->set_sigOID_2(L_2); // } goto IL_0022; }// 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_0015; } throw e; } CATCH_0015: {// begin catch(System.Exception) // catch (Exception e) V_0 = ((Exception_t *)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *)); // throw new ArgumentException("Unknown signature type requested", e); Exception_t * L_3 = V_0; ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_4 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D82228EC0D314063BFC7BB308A43927D1D76852(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2ECCF0272C09381DA599D0B70DB523A192791180)), L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X509V2CrlGenerator_SetSignatureAlgorithm_m0F7C76B285A82A8C9A773C9193D58F5B9D10E960_RuntimeMethod_var))); }// end catch (depth: 1) IL_0022: { // sigAlgId = X509Utilities.GetSigAlgID(sigOID, signatureAlgorithm); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_5 = __this->get_sigOID_2(); String_t* L_6 = ___signatureAlgorithm0; IL2CPP_RUNTIME_CLASS_INIT(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_7; L_7 = X509Utilities_GetSigAlgID_mA149FCB12BE7F0FC7331A3234DAB2CCAEFB86F59(L_5, L_6, /*hidden argument*/NULL); __this->set_sigAlgId_3(L_7); // tbsGen.SetSignature(sigAlgId); V2TbsCertListGenerator_tC7920E9D2AE505500F0D2338C49267713D9D76E3 * L_8 = __this->get_tbsGen_1(); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_9 = __this->get_sigAlgId_3(); NullCheck(L_8); V2TbsCertListGenerator_SetSignature_m3E20DC34B51B688BA75A7BD5883968C10364504A_inline(L_8, L_9, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2CrlGenerator::AddExtension(System.String,System.Boolean,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V2CrlGenerator_AddExtension_mB9EB1F2C136F00C005853469B1D2DC1CD44CA73D (X509V2CrlGenerator_tE24775033089328401498B8DB1FB8176B95EA09D * __this, String_t* ___oid0, bool ___critical1, Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * ___extensionValue2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // extGenerator.AddExtension(new DerObjectIdentifier(oid), critical, extensionValue); X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017 * L_0 = __this->get_extGenerator_0(); String_t* L_1 = ___oid0; DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_2 = (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *)il2cpp_codegen_object_new(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); DerObjectIdentifier__ctor_m8009342D7B2AD40B1E19E6AB958141979B7405CD(L_2, L_1, /*hidden argument*/NULL); bool L_3 = ___critical1; Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_4 = ___extensionValue2; NullCheck(L_0); X509ExtensionsGenerator_AddExtension_m33588CC2BBC5492493B179B7E4FA63DA5DC4B67D(L_0, L_2, L_3, L_4, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2CrlGenerator::AddExtension(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Boolean,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V2CrlGenerator_AddExtension_m48A1D54577E9C76A933078FB40FEF6C0A0E670D9 (X509V2CrlGenerator_tE24775033089328401498B8DB1FB8176B95EA09D * __this, DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___oid0, bool ___critical1, Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * ___extensionValue2, const RuntimeMethod* method) { { // extGenerator.AddExtension(oid, critical, extensionValue); X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017 * L_0 = __this->get_extGenerator_0(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_1 = ___oid0; bool L_2 = ___critical1; Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_3 = ___extensionValue2; NullCheck(L_0); X509ExtensionsGenerator_AddExtension_m33588CC2BBC5492493B179B7E4FA63DA5DC4B67D(L_0, L_1, L_2, L_3, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2CrlGenerator::AddExtension(System.String,System.Boolean,System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V2CrlGenerator_AddExtension_mB0E69DE6AE701B73C31D4DB1F1757BDE80B94F20 (X509V2CrlGenerator_tE24775033089328401498B8DB1FB8176B95EA09D * __this, String_t* ___oid0, bool ___critical1, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___extensionValue2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // extGenerator.AddExtension(new DerObjectIdentifier(oid), critical, new DerOctetString(extensionValue)); X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017 * L_0 = __this->get_extGenerator_0(); String_t* L_1 = ___oid0; DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_2 = (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *)il2cpp_codegen_object_new(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); DerObjectIdentifier__ctor_m8009342D7B2AD40B1E19E6AB958141979B7405CD(L_2, L_1, /*hidden argument*/NULL); bool L_3 = ___critical1; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = ___extensionValue2; DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75 * L_5 = (DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75 *)il2cpp_codegen_object_new(DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75_il2cpp_TypeInfo_var); DerOctetString__ctor_mBD13EC2203DF652C61E5AB45AE95CC51A22F0AF2(L_5, L_4, /*hidden argument*/NULL); NullCheck(L_0); X509ExtensionsGenerator_AddExtension_m33588CC2BBC5492493B179B7E4FA63DA5DC4B67D(L_0, L_2, L_3, L_5, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2CrlGenerator::AddExtension(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Boolean,System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V2CrlGenerator_AddExtension_mEBA5772C7DB7314A6CD682401A9A0B18A44593B9 (X509V2CrlGenerator_tE24775033089328401498B8DB1FB8176B95EA09D * __this, DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___oid0, bool ___critical1, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___extensionValue2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // extGenerator.AddExtension(oid, critical, new DerOctetString(extensionValue)); X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017 * L_0 = __this->get_extGenerator_0(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_1 = ___oid0; bool L_2 = ___critical1; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_3 = ___extensionValue2; DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75 * L_4 = (DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75 *)il2cpp_codegen_object_new(DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75_il2cpp_TypeInfo_var); DerOctetString__ctor_mBD13EC2203DF652C61E5AB45AE95CC51A22F0AF2(L_4, L_3, /*hidden argument*/NULL); NullCheck(L_0); X509ExtensionsGenerator_AddExtension_m33588CC2BBC5492493B179B7E4FA63DA5DC4B67D(L_0, L_1, L_2, L_4, /*hidden argument*/NULL); // } return; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Crl BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2CrlGenerator::Generate(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Crl_t963C99FFAA5E9B3E8AE0BBB6F74D45D52C7BBB04 * X509V2CrlGenerator_Generate_mCF6E3A3B9AAD016241751DD162528EAA8169DB6A (X509V2CrlGenerator_tE24775033089328401498B8DB1FB8176B95EA09D * __this, AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * ___privateKey0, const RuntimeMethod* method) { { // return Generate(privateKey, null); AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * L_0 = ___privateKey0; X509Crl_t963C99FFAA5E9B3E8AE0BBB6F74D45D52C7BBB04 * L_1; L_1 = X509V2CrlGenerator_Generate_m558033C2B78C95536BF3C1E038E694405E244475(__this, L_0, (SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 *)NULL, /*hidden argument*/NULL); return L_1; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Crl BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2CrlGenerator::Generate(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter,BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Crl_t963C99FFAA5E9B3E8AE0BBB6F74D45D52C7BBB04 * X509V2CrlGenerator_Generate_m558033C2B78C95536BF3C1E038E694405E244475 (X509V2CrlGenerator_tE24775033089328401498B8DB1FB8176B95EA09D * __this, AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * ___privateKey0, SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * ___random1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Asn1SignatureFactory_t82880FE5F99692E8C940551308221AA7CAB2682A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // return Generate(new Asn1SignatureFactory(signatureAlgorithm, privateKey, random)); String_t* L_0 = __this->get_signatureAlgorithm_4(); AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * L_1 = ___privateKey0; SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * L_2 = ___random1; Asn1SignatureFactory_t82880FE5F99692E8C940551308221AA7CAB2682A * L_3 = (Asn1SignatureFactory_t82880FE5F99692E8C940551308221AA7CAB2682A *)il2cpp_codegen_object_new(Asn1SignatureFactory_t82880FE5F99692E8C940551308221AA7CAB2682A_il2cpp_TypeInfo_var); Asn1SignatureFactory__ctor_m3B76289916350A708ADF571E9FEE4A509E87E0E7(L_3, L_0, L_1, L_2, /*hidden argument*/NULL); X509Crl_t963C99FFAA5E9B3E8AE0BBB6F74D45D52C7BBB04 * L_4; L_4 = X509V2CrlGenerator_Generate_m41AF2B35CD1CB41CC832418FCD4910CD17F83B21(__this, L_3, /*hidden argument*/NULL); return L_4; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Crl BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2CrlGenerator::Generate(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ISignatureFactory) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Crl_t963C99FFAA5E9B3E8AE0BBB6F74D45D52C7BBB04 * X509V2CrlGenerator_Generate_m41AF2B35CD1CB41CC832418FCD4910CD17F83B21 (X509V2CrlGenerator_tE24775033089328401498B8DB1FB8176B95EA09D * __this, RuntimeObject* ___signatureCalculatorFactory0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBlockResult_t6A7C472F432343ADBA690B12778C4CF5FFB19CCE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ISignatureFactory_t1572BDBCE1A2741BB5DF8A6BE3FC219B7722135B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IStreamCalculator_t4F9460D63B0B76B77564036A39E861A0A03ABD07_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } TbsCertificateList_t1C345B12531EFE2A414CE6CF55DCEAF23B1A44B0 * V_0 = NULL; RuntimeObject* V_1 = NULL; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_2 = NULL; { // tbsGen.SetSignature((AlgorithmIdentifier)signatureCalculatorFactory.AlgorithmDetails); V2TbsCertListGenerator_tC7920E9D2AE505500F0D2338C49267713D9D76E3 * L_0 = __this->get_tbsGen_1(); RuntimeObject* L_1 = ___signatureCalculatorFactory0; NullCheck(L_1); RuntimeObject * L_2; L_2 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ISignatureFactory::get_AlgorithmDetails() */, ISignatureFactory_t1572BDBCE1A2741BB5DF8A6BE3FC219B7722135B_il2cpp_TypeInfo_var, L_1); NullCheck(L_0); V2TbsCertListGenerator_SetSignature_m3E20DC34B51B688BA75A7BD5883968C10364504A_inline(L_0, ((AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 *)CastclassClass((RuntimeObject*)L_2, AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); // TbsCertificateList tbsCertList = GenerateCertList(); TbsCertificateList_t1C345B12531EFE2A414CE6CF55DCEAF23B1A44B0 * L_3; L_3 = X509V2CrlGenerator_GenerateCertList_m98EC8458F66DDAC2455B644A8086C1AD086290AC(__this, /*hidden argument*/NULL); V_0 = L_3; // IStreamCalculator streamCalculator = signatureCalculatorFactory.CreateCalculator(); RuntimeObject* L_4 = ___signatureCalculatorFactory0; NullCheck(L_4); RuntimeObject* L_5; L_5 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IStreamCalculator BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ISignatureFactory::CreateCalculator() */, ISignatureFactory_t1572BDBCE1A2741BB5DF8A6BE3FC219B7722135B_il2cpp_TypeInfo_var, L_4); V_1 = L_5; // byte[] encoded = tbsCertList.GetDerEncoded(); TbsCertificateList_t1C345B12531EFE2A414CE6CF55DCEAF23B1A44B0 * L_6 = V_0; NullCheck(L_6); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_7; L_7 = Asn1Encodable_GetDerEncoded_m30F357C2B994910EAC405FACBB5CA88181B3CD4E(L_6, /*hidden argument*/NULL); V_2 = L_7; // streamCalculator.Stream.Write(encoded, 0, encoded.Length); RuntimeObject* L_8 = V_1; NullCheck(L_8); Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_9; L_9 = InterfaceFuncInvoker0< Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * >::Invoke(0 /* System.IO.Stream BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IStreamCalculator::get_Stream() */, IStreamCalculator_t4F9460D63B0B76B77564036A39E861A0A03ABD07_il2cpp_TypeInfo_var, L_8); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_10 = V_2; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_11 = V_2; NullCheck(L_11); NullCheck(L_9); VirtualActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(32 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_9, L_10, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_11)->max_length)))); // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.Dispose(streamCalculator.Stream); RuntimeObject* L_12 = V_1; NullCheck(L_12); Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_13; L_13 = InterfaceFuncInvoker0< Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * >::Invoke(0 /* System.IO.Stream BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IStreamCalculator::get_Stream() */, IStreamCalculator_t4F9460D63B0B76B77564036A39E861A0A03ABD07_il2cpp_TypeInfo_var, L_12); IL2CPP_RUNTIME_CLASS_INIT(Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var); Platform_Dispose_m852AB0A263A990096BCE2A4230CB5723F873C1A2(L_13, /*hidden argument*/NULL); // return GenerateJcaObject(tbsCertList, (AlgorithmIdentifier)signatureCalculatorFactory.AlgorithmDetails, ((IBlockResult)streamCalculator.GetResult()).Collect()); TbsCertificateList_t1C345B12531EFE2A414CE6CF55DCEAF23B1A44B0 * L_14 = V_0; RuntimeObject* L_15 = ___signatureCalculatorFactory0; NullCheck(L_15); RuntimeObject * L_16; L_16 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ISignatureFactory::get_AlgorithmDetails() */, ISignatureFactory_t1572BDBCE1A2741BB5DF8A6BE3FC219B7722135B_il2cpp_TypeInfo_var, L_15); RuntimeObject* L_17 = V_1; NullCheck(L_17); RuntimeObject * L_18; L_18 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IStreamCalculator::GetResult() */, IStreamCalculator_t4F9460D63B0B76B77564036A39E861A0A03ABD07_il2cpp_TypeInfo_var, L_17); NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_18, IBlockResult_t6A7C472F432343ADBA690B12778C4CF5FFB19CCE_il2cpp_TypeInfo_var))); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_19; L_19 = InterfaceFuncInvoker0< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* >::Invoke(0 /* System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockResult::Collect() */, IBlockResult_t6A7C472F432343ADBA690B12778C4CF5FFB19CCE_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_18, IBlockResult_t6A7C472F432343ADBA690B12778C4CF5FFB19CCE_il2cpp_TypeInfo_var))); X509Crl_t963C99FFAA5E9B3E8AE0BBB6F74D45D52C7BBB04 * L_20; L_20 = X509V2CrlGenerator_GenerateJcaObject_mE1E8F2ED3DCEA20B9933B8AC5C1A04F8C22A7668(__this, L_14, ((AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 *)CastclassClass((RuntimeObject*)L_16, AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9_il2cpp_TypeInfo_var)), L_19, /*hidden argument*/NULL); return L_20; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateList BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2CrlGenerator::GenerateCertList() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TbsCertificateList_t1C345B12531EFE2A414CE6CF55DCEAF23B1A44B0 * X509V2CrlGenerator_GenerateCertList_m98EC8458F66DDAC2455B644A8086C1AD086290AC (X509V2CrlGenerator_tE24775033089328401498B8DB1FB8176B95EA09D * __this, const RuntimeMethod* method) { { // if (!extGenerator.IsEmpty) X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017 * L_0 = __this->get_extGenerator_0(); NullCheck(L_0); bool L_1; L_1 = X509ExtensionsGenerator_get_IsEmpty_m80C3FB668B6AFCC515B529A100626FF0F96A97C1(L_0, /*hidden argument*/NULL); if (L_1) { goto IL_0023; } } { // tbsGen.SetExtensions(extGenerator.Generate()); V2TbsCertListGenerator_tC7920E9D2AE505500F0D2338C49267713D9D76E3 * L_2 = __this->get_tbsGen_1(); X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017 * L_3 = __this->get_extGenerator_0(); NullCheck(L_3); X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F * L_4; L_4 = X509ExtensionsGenerator_Generate_m6E3B33182C20F1F63B510DDBA98CBFB0724DBE7F(L_3, /*hidden argument*/NULL); NullCheck(L_2); V2TbsCertListGenerator_SetExtensions_mC2DBFA64FBF33E193BA82DFDEBB1F1C79591985A_inline(L_2, L_4, /*hidden argument*/NULL); } IL_0023: { // return tbsGen.GenerateTbsCertList(); V2TbsCertListGenerator_tC7920E9D2AE505500F0D2338C49267713D9D76E3 * L_5 = __this->get_tbsGen_1(); NullCheck(L_5); TbsCertificateList_t1C345B12531EFE2A414CE6CF55DCEAF23B1A44B0 * L_6; L_6 = V2TbsCertListGenerator_GenerateTbsCertList_m50EA3EC57BE92AF5ED6E01F9DE4BBB564FB119CF(L_5, /*hidden argument*/NULL); return L_6; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Crl BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2CrlGenerator::GenerateJcaObject(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateList,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Crl_t963C99FFAA5E9B3E8AE0BBB6F74D45D52C7BBB04 * X509V2CrlGenerator_GenerateJcaObject_mE1E8F2ED3DCEA20B9933B8AC5C1A04F8C22A7668 (X509V2CrlGenerator_tE24775033089328401498B8DB1FB8176B95EA09D * __this, TbsCertificateList_t1C345B12531EFE2A414CE6CF55DCEAF23B1A44B0 * ___tbsCrl0, AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___algId1, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___signature2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerBitString_t305465793A47445626D3541AB8CEDE347D874524_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509Crl_t963C99FFAA5E9B3E8AE0BBB6F74D45D52C7BBB04_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // return new X509Crl( // CertificateList.GetInstance( // new DerSequence(tbsCrl, algId, new DerBitString(signature)))); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_0 = (Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE*)(Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE*)SZArrayNew(Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE_il2cpp_TypeInfo_var, (uint32_t)3); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_1 = L_0; TbsCertificateList_t1C345B12531EFE2A414CE6CF55DCEAF23B1A44B0 * L_2 = ___tbsCrl0; NullCheck(L_1); ArrayElementTypeCheck (L_1, L_2); (L_1)->SetAt(static_cast(0), (Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *)L_2); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_3 = L_1; AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_4 = ___algId1; NullCheck(L_3); ArrayElementTypeCheck (L_3, L_4); (L_3)->SetAt(static_cast(1), (Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *)L_4); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_5 = L_3; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_6 = ___signature2; DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * L_7 = (DerBitString_t305465793A47445626D3541AB8CEDE347D874524 *)il2cpp_codegen_object_new(DerBitString_t305465793A47445626D3541AB8CEDE347D874524_il2cpp_TypeInfo_var); DerBitString__ctor_m97AF53404F6333EA146C0DB958DF3C483B71D94B(L_7, L_6, /*hidden argument*/NULL); NullCheck(L_5); ArrayElementTypeCheck (L_5, L_7); (L_5)->SetAt(static_cast(2), (Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *)L_7); DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 * L_8 = (DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 *)il2cpp_codegen_object_new(DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09_il2cpp_TypeInfo_var); DerSequence__ctor_m014F0386FA0EDB7F97747159963DC17F535AF0A2(L_8, L_5, /*hidden argument*/NULL); CertificateList_tC023E9119F567E5589711845D4A07A59F9F26B34 * L_9; L_9 = CertificateList_GetInstance_m05C22AC7F75E73B56558D8263D8E625B0E12243A(L_8, /*hidden argument*/NULL); X509Crl_t963C99FFAA5E9B3E8AE0BBB6F74D45D52C7BBB04 * L_10 = (X509Crl_t963C99FFAA5E9B3E8AE0BBB6F74D45D52C7BBB04 *)il2cpp_codegen_object_new(X509Crl_t963C99FFAA5E9B3E8AE0BBB6F74D45D52C7BBB04_il2cpp_TypeInfo_var); X509Crl__ctor_mCF0DB4A0B34DF5164A6A8759DDE7346755CC5052(L_10, L_9, /*hidden argument*/NULL); return L_10; } } // System.Collections.IEnumerable BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V2CrlGenerator::get_SignatureAlgNames() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* X509V2CrlGenerator_get_SignatureAlgNames_m3C765702D372EC1024334E24CD3E02F1FE25A1D2 (X509V2CrlGenerator_tE24775033089328401498B8DB1FB8176B95EA09D * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // get { return X509Utilities.GetAlgNames(); } IL2CPP_RUNTIME_CLASS_INIT(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var); RuntimeObject* L_0; L_0 = X509Utilities_GetAlgNames_mD83E9C06473AD2CFCFB7ACF02458BB69AF429932(/*hidden argument*/NULL); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V3CertificateGenerator::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V3CertificateGenerator__ctor_m23EF0BE650802EA5B1D567EC4B5233CDC6ACE9CA (X509V3CertificateGenerator_tB58451ED00FF86B307032EF7908726B9D601664E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // private readonly X509ExtensionsGenerator extGenerator = new X509ExtensionsGenerator(); X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017 * L_0 = (X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017 *)il2cpp_codegen_object_new(X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017_il2cpp_TypeInfo_var); X509ExtensionsGenerator__ctor_mB7D490ED4359DF50045F1879242A4A21948A2D9B(L_0, /*hidden argument*/NULL); __this->set_extGenerator_0(L_0); // public X509V3CertificateGenerator() Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); // tbsGen = new V3TbsCertificateGenerator(); V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3 * L_1 = (V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3 *)il2cpp_codegen_object_new(V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3_il2cpp_TypeInfo_var); V3TbsCertificateGenerator__ctor_mCDBDCEA344E65521338CBB4B20B07F6F5D781761(L_1, /*hidden argument*/NULL); __this->set_tbsGen_1(L_1); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V3CertificateGenerator::Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V3CertificateGenerator_Reset_m0B80D08B7F99AAFC4D404A44E390884E00FE6AF1 (X509V3CertificateGenerator_tB58451ED00FF86B307032EF7908726B9D601664E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // tbsGen = new V3TbsCertificateGenerator(); V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3 * L_0 = (V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3 *)il2cpp_codegen_object_new(V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3_il2cpp_TypeInfo_var); V3TbsCertificateGenerator__ctor_mCDBDCEA344E65521338CBB4B20B07F6F5D781761(L_0, /*hidden argument*/NULL); __this->set_tbsGen_1(L_0); // extGenerator.Reset(); X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017 * L_1 = __this->get_extGenerator_0(); NullCheck(L_1); X509ExtensionsGenerator_Reset_mB0501EACA8C4B642DB7D75B7290946B01EDE3646(L_1, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V3CertificateGenerator::SetSerialNumber(BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V3CertificateGenerator_SetSerialNumber_mB8A496ADD207B393A547BC03248048B01A5A0B63 (X509V3CertificateGenerator_tB58451ED00FF86B307032EF7908726B9D601664E * __this, BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___serialNumber0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (serialNumber.SignValue <= 0) BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_0 = ___serialNumber0; NullCheck(L_0); int32_t L_1; L_1 = BigInteger_get_SignValue_mD40EFBE0702F356758CE49796DD9743BF06E5199_inline(L_0, /*hidden argument*/NULL); if ((((int32_t)L_1) > ((int32_t)0))) { goto IL_0019; } } { // throw new ArgumentException("serial number must be a positive integer", "serialNumber"); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_2 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCD91C3A88929E5B8D90E8470FE3B58D30BBAF946)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCFD54298D28239D041E35594E7B01E17329A82C5)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X509V3CertificateGenerator_SetSerialNumber_mB8A496ADD207B393A547BC03248048B01A5A0B63_RuntimeMethod_var))); } IL_0019: { // tbsGen.SetSerialNumber(new DerInteger(serialNumber)); V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3 * L_3 = __this->get_tbsGen_1(); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_4 = ___serialNumber0; DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * L_5 = (DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 *)il2cpp_codegen_object_new(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var); DerInteger__ctor_m612C6B5423FEC812F2B14987AF4D153C141750F0(L_5, L_4, /*hidden argument*/NULL); NullCheck(L_3); V3TbsCertificateGenerator_SetSerialNumber_m2CDC7AEAF8049B8579DAC90208FBB554A8E292B7_inline(L_3, L_5, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V3CertificateGenerator::SetIssuerDN(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V3CertificateGenerator_SetIssuerDN_m9DD0E1E77096018665506B5D378858867D060761 (X509V3CertificateGenerator_tB58451ED00FF86B307032EF7908726B9D601664E * __this, X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * ___issuer0, const RuntimeMethod* method) { { // tbsGen.SetIssuer(issuer); V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3 * L_0 = __this->get_tbsGen_1(); X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * L_1 = ___issuer0; NullCheck(L_0); V3TbsCertificateGenerator_SetIssuer_m7F6F62D2294081149D9C72AE407BF76CB6A94C2D_inline(L_0, L_1, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V3CertificateGenerator::SetNotBefore(System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V3CertificateGenerator_SetNotBefore_m648C8F89B5F2A4F010B75EC75EFAB05E740E622B (X509V3CertificateGenerator_tB58451ED00FF86B307032EF7908726B9D601664E * __this, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___date0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Time_tD684B1785E755395701D46F89A97609911CD6DDE_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // tbsGen.SetStartDate(new Time(date)); V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3 * L_0 = __this->get_tbsGen_1(); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_1 = ___date0; Time_tD684B1785E755395701D46F89A97609911CD6DDE * L_2 = (Time_tD684B1785E755395701D46F89A97609911CD6DDE *)il2cpp_codegen_object_new(Time_tD684B1785E755395701D46F89A97609911CD6DDE_il2cpp_TypeInfo_var); Time__ctor_mBC7631425BAF63401048865DBFD7CDE253FEB313(L_2, L_1, /*hidden argument*/NULL); NullCheck(L_0); V3TbsCertificateGenerator_SetStartDate_mEC85C60DC1D0260BC78E33EBB8C04B12757B5D85_inline(L_0, L_2, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V3CertificateGenerator::SetNotAfter(System.DateTime) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V3CertificateGenerator_SetNotAfter_mE21B3D13CADBFE0A23D828B16578E7E782D39C13 (X509V3CertificateGenerator_tB58451ED00FF86B307032EF7908726B9D601664E * __this, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___date0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Time_tD684B1785E755395701D46F89A97609911CD6DDE_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // tbsGen.SetEndDate(new Time(date)); V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3 * L_0 = __this->get_tbsGen_1(); DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_1 = ___date0; Time_tD684B1785E755395701D46F89A97609911CD6DDE * L_2 = (Time_tD684B1785E755395701D46F89A97609911CD6DDE *)il2cpp_codegen_object_new(Time_tD684B1785E755395701D46F89A97609911CD6DDE_il2cpp_TypeInfo_var); Time__ctor_mBC7631425BAF63401048865DBFD7CDE253FEB313(L_2, L_1, /*hidden argument*/NULL); NullCheck(L_0); V3TbsCertificateGenerator_SetEndDate_mF30DEFBEE68B06F21FA3B927F59AAD651A0D5ACF_inline(L_0, L_2, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V3CertificateGenerator::SetSubjectDN(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.X509Name) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V3CertificateGenerator_SetSubjectDN_m51E78B95D071D62891217946BF69E77EE8A111EE (X509V3CertificateGenerator_tB58451ED00FF86B307032EF7908726B9D601664E * __this, X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * ___subject0, const RuntimeMethod* method) { { // tbsGen.SetSubject(subject); V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3 * L_0 = __this->get_tbsGen_1(); X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * L_1 = ___subject0; NullCheck(L_0); V3TbsCertificateGenerator_SetSubject_m94538E1AC4673A9CE33FA4F2FE7678970DD1180C_inline(L_0, L_1, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V3CertificateGenerator::SetPublicKey(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V3CertificateGenerator_SetPublicKey_m2C9046BE97F371D4F7ED209706C18F356CD6AD22 (X509V3CertificateGenerator_tB58451ED00FF86B307032EF7908726B9D601664E * __this, AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * ___publicKey0, const RuntimeMethod* method) { { // tbsGen.SetSubjectPublicKeyInfo(SubjectPublicKeyInfoFactory.CreateSubjectPublicKeyInfo(publicKey)); V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3 * L_0 = __this->get_tbsGen_1(); AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * L_1 = ___publicKey0; SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB * L_2; L_2 = SubjectPublicKeyInfoFactory_CreateSubjectPublicKeyInfo_m05DEB0821C10550E622F69B5E83F1A285F4F857D(L_1, /*hidden argument*/NULL); NullCheck(L_0); V3TbsCertificateGenerator_SetSubjectPublicKeyInfo_mE200C5B040FD06E0B73D679AB7F28CD86E500DF7_inline(L_0, L_2, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V3CertificateGenerator::SetSignatureAlgorithm(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V3CertificateGenerator_SetSignatureAlgorithm_m5FC5D98E31294E025FE20847715B0315011FF116 (X509V3CertificateGenerator_tB58451ED00FF86B307032EF7908726B9D601664E * __this, String_t* ___signatureAlgorithm0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; { // this.signatureAlgorithm = signatureAlgorithm; String_t* L_0 = ___signatureAlgorithm0; __this->set_signatureAlgorithm_4(L_0); } IL_0007: try {// begin try (depth: 1) // sigOid = X509Utilities.GetAlgorithmOid(signatureAlgorithm); String_t* L_1 = ___signatureAlgorithm0; IL2CPP_RUNTIME_CLASS_INIT(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_2; L_2 = X509Utilities_GetAlgorithmOid_m9F775A603669DE9A5E4FDCC0A56F8C0B9F7DAEE4(L_1, /*hidden argument*/NULL); __this->set_sigOid_2(L_2); // } goto IL_0027; }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0015; } throw e; } CATCH_0015: {// begin catch(System.Exception) // catch (Exception) // throw new ArgumentException("Unknown signature type requested: " + signatureAlgorithm); String_t* L_3 = ___signatureAlgorithm0; String_t* L_4; L_4 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral23DA32641C4151068AE4FEDAB66753C8754FE52A)), L_3, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_5 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_5, L_4, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X509V3CertificateGenerator_SetSignatureAlgorithm_m5FC5D98E31294E025FE20847715B0315011FF116_RuntimeMethod_var))); }// end catch (depth: 1) IL_0027: { // sigAlgId = X509Utilities.GetSigAlgID(sigOid, signatureAlgorithm); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_6 = __this->get_sigOid_2(); String_t* L_7 = ___signatureAlgorithm0; IL2CPP_RUNTIME_CLASS_INIT(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_8; L_8 = X509Utilities_GetSigAlgID_mA149FCB12BE7F0FC7331A3234DAB2CCAEFB86F59(L_6, L_7, /*hidden argument*/NULL); __this->set_sigAlgId_3(L_8); // tbsGen.SetSignature(sigAlgId); V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3 * L_9 = __this->get_tbsGen_1(); AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_10 = __this->get_sigAlgId_3(); NullCheck(L_9); V3TbsCertificateGenerator_SetSignature_m8631ACE4BE9E2A684DB332E5839646F301F8FD6B_inline(L_9, L_10, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V3CertificateGenerator::SetSubjectUniqueID(System.Boolean[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V3CertificateGenerator_SetSubjectUniqueID_m2B0145EBF1773DD6A789BC8D62C406BA12EEAC8A (X509V3CertificateGenerator_tB58451ED00FF86B307032EF7908726B9D601664E * __this, BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* ___uniqueID0, const RuntimeMethod* method) { { // tbsGen.SetSubjectUniqueID(booleanToBitString(uniqueID)); V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3 * L_0 = __this->get_tbsGen_1(); BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* L_1 = ___uniqueID0; DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * L_2; L_2 = X509V3CertificateGenerator_booleanToBitString_m5215DC7DAC4F74ECA53C7250D37531FA2F9201A0(__this, L_1, /*hidden argument*/NULL); NullCheck(L_0); V3TbsCertificateGenerator_SetSubjectUniqueID_m05EB74331C6639104928F48C0175C551C4F090B6_inline(L_0, L_2, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V3CertificateGenerator::SetIssuerUniqueID(System.Boolean[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V3CertificateGenerator_SetIssuerUniqueID_m324D3EFC8329D399A9153532D3FBB3782005ED5D (X509V3CertificateGenerator_tB58451ED00FF86B307032EF7908726B9D601664E * __this, BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* ___uniqueID0, const RuntimeMethod* method) { { // tbsGen.SetIssuerUniqueID(booleanToBitString(uniqueID)); V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3 * L_0 = __this->get_tbsGen_1(); BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* L_1 = ___uniqueID0; DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * L_2; L_2 = X509V3CertificateGenerator_booleanToBitString_m5215DC7DAC4F74ECA53C7250D37531FA2F9201A0(__this, L_1, /*hidden argument*/NULL); NullCheck(L_0); V3TbsCertificateGenerator_SetIssuerUniqueID_m12B7C7C963AB25C6D256677B7D95FF1562B9F312_inline(L_0, L_2, /*hidden argument*/NULL); // } return; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V3CertificateGenerator::booleanToBitString(System.Boolean[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * X509V3CertificateGenerator_booleanToBitString_m5215DC7DAC4F74ECA53C7250D37531FA2F9201A0 (X509V3CertificateGenerator_tB58451ED00FF86B307032EF7908726B9D601664E * __this, BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* ___id0, 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*)&DerBitString_t305465793A47445626D3541AB8CEDE347D874524_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; { // byte[] bytes = new byte[(id.Length + 7) / 8]; BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* L_0 = ___id0; NullCheck(L_0); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))), (int32_t)7))/(int32_t)8))); V_0 = L_1; // for (int i = 0; i != id.Length; i++) V_2 = 0; goto IL_0033; } IL_0011: { // if (id[i]) BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* L_2 = ___id0; int32_t L_3 = V_2; NullCheck(L_2); int32_t L_4 = L_3; uint8_t L_5 = (uint8_t)(L_2)->GetAt(static_cast(L_4)); if (!L_5) { goto IL_002f; } } { // bytes[i / 8] |= (byte)(1 << ((7 - (i % 8)))); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_6 = V_0; int32_t L_7 = V_2; NullCheck(L_6); uint8_t* L_8 = ((L_6)->GetAddressAt(static_cast(((int32_t)((int32_t)L_7/(int32_t)8))))); int32_t L_9 = *((uint8_t*)L_8); int32_t L_10 = V_2; *((int8_t*)L_8) = (int8_t)((int32_t)((uint8_t)((int32_t)((int32_t)L_9|(int32_t)((int32_t)((uint8_t)((int32_t)((int32_t)1<<(int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)7, (int32_t)((int32_t)((int32_t)L_10%(int32_t)8))))&(int32_t)((int32_t)31))))))))))); } IL_002f: { // for (int i = 0; i != id.Length; i++) int32_t L_11 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)); } IL_0033: { // for (int i = 0; i != id.Length; i++) int32_t L_12 = V_2; BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* L_13 = ___id0; NullCheck(L_13); if ((!(((uint32_t)L_12) == ((uint32_t)((int32_t)((int32_t)(((RuntimeArray*)L_13)->max_length))))))) { goto IL_0011; } } { // int pad = id.Length % 8; BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* L_14 = ___id0; NullCheck(L_14); V_1 = ((int32_t)((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_14)->max_length)))%(int32_t)8)); // if (pad == 0) int32_t L_15 = V_1; if (L_15) { goto IL_0049; } } { // return new DerBitString(bytes); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_16 = V_0; DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * L_17 = (DerBitString_t305465793A47445626D3541AB8CEDE347D874524 *)il2cpp_codegen_object_new(DerBitString_t305465793A47445626D3541AB8CEDE347D874524_il2cpp_TypeInfo_var); DerBitString__ctor_m97AF53404F6333EA146C0DB958DF3C483B71D94B(L_17, L_16, /*hidden argument*/NULL); return L_17; } IL_0049: { // return new DerBitString(bytes, 8 - pad); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_18 = V_0; int32_t L_19 = V_1; DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * L_20 = (DerBitString_t305465793A47445626D3541AB8CEDE347D874524 *)il2cpp_codegen_object_new(DerBitString_t305465793A47445626D3541AB8CEDE347D874524_il2cpp_TypeInfo_var); DerBitString__ctor_m3873220573E98B131BF69FFBD42E0A63D738BE17(L_20, L_18, ((int32_t)il2cpp_codegen_subtract((int32_t)8, (int32_t)L_19)), /*hidden argument*/NULL); return L_20; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V3CertificateGenerator::AddExtension(System.String,System.Boolean,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V3CertificateGenerator_AddExtension_m4FD5AC8210AAD9DB0C0631B449A55CF6B3A94BB0 (X509V3CertificateGenerator_tB58451ED00FF86B307032EF7908726B9D601664E * __this, String_t* ___oid0, bool ___critical1, Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * ___extensionValue2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // extGenerator.AddExtension(new DerObjectIdentifier(oid), critical, extensionValue); X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017 * L_0 = __this->get_extGenerator_0(); String_t* L_1 = ___oid0; DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_2 = (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *)il2cpp_codegen_object_new(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); DerObjectIdentifier__ctor_m8009342D7B2AD40B1E19E6AB958141979B7405CD(L_2, L_1, /*hidden argument*/NULL); bool L_3 = ___critical1; Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_4 = ___extensionValue2; NullCheck(L_0); X509ExtensionsGenerator_AddExtension_m33588CC2BBC5492493B179B7E4FA63DA5DC4B67D(L_0, L_2, L_3, L_4, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V3CertificateGenerator::AddExtension(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Boolean,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V3CertificateGenerator_AddExtension_mAB8681F918515ECFD9487BFEC3A2E862D49D1E12 (X509V3CertificateGenerator_tB58451ED00FF86B307032EF7908726B9D601664E * __this, DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___oid0, bool ___critical1, Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * ___extensionValue2, const RuntimeMethod* method) { { // extGenerator.AddExtension(oid, critical, extensionValue); X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017 * L_0 = __this->get_extGenerator_0(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_1 = ___oid0; bool L_2 = ___critical1; Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_3 = ___extensionValue2; NullCheck(L_0); X509ExtensionsGenerator_AddExtension_m33588CC2BBC5492493B179B7E4FA63DA5DC4B67D(L_0, L_1, L_2, L_3, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V3CertificateGenerator::AddExtension(System.String,System.Boolean,System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V3CertificateGenerator_AddExtension_m71C75CDB222C1052AB9449945AAD3067AEAFA4CF (X509V3CertificateGenerator_tB58451ED00FF86B307032EF7908726B9D601664E * __this, String_t* ___oid0, bool ___critical1, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___extensionValue2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // extGenerator.AddExtension(new DerObjectIdentifier(oid), critical, new DerOctetString(extensionValue)); X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017 * L_0 = __this->get_extGenerator_0(); String_t* L_1 = ___oid0; DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_2 = (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *)il2cpp_codegen_object_new(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); DerObjectIdentifier__ctor_m8009342D7B2AD40B1E19E6AB958141979B7405CD(L_2, L_1, /*hidden argument*/NULL); bool L_3 = ___critical1; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = ___extensionValue2; DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75 * L_5 = (DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75 *)il2cpp_codegen_object_new(DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75_il2cpp_TypeInfo_var); DerOctetString__ctor_mBD13EC2203DF652C61E5AB45AE95CC51A22F0AF2(L_5, L_4, /*hidden argument*/NULL); NullCheck(L_0); X509ExtensionsGenerator_AddExtension_m33588CC2BBC5492493B179B7E4FA63DA5DC4B67D(L_0, L_2, L_3, L_5, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V3CertificateGenerator::AddExtension(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Boolean,System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V3CertificateGenerator_AddExtension_mC258039DFDA15E8810B66515392D680E3BADB52F (X509V3CertificateGenerator_tB58451ED00FF86B307032EF7908726B9D601664E * __this, DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___oid0, bool ___critical1, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___extensionValue2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // extGenerator.AddExtension(oid, critical, new DerOctetString(extensionValue)); X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017 * L_0 = __this->get_extGenerator_0(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_1 = ___oid0; bool L_2 = ___critical1; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_3 = ___extensionValue2; DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75 * L_4 = (DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75 *)il2cpp_codegen_object_new(DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75_il2cpp_TypeInfo_var); DerOctetString__ctor_mBD13EC2203DF652C61E5AB45AE95CC51A22F0AF2(L_4, L_3, /*hidden argument*/NULL); NullCheck(L_0); X509ExtensionsGenerator_AddExtension_m33588CC2BBC5492493B179B7E4FA63DA5DC4B67D(L_0, L_1, L_2, L_4, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V3CertificateGenerator::CopyAndAddExtension(System.String,System.Boolean,BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Certificate) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V3CertificateGenerator_CopyAndAddExtension_mA7EF06B07B6BE3E14961F808715CA7997BC991E6 (X509V3CertificateGenerator_tB58451ED00FF86B307032EF7908726B9D601664E * __this, String_t* ___oid0, bool ___critical1, X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06 * ___cert2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // CopyAndAddExtension(new DerObjectIdentifier(oid), critical, cert); String_t* L_0 = ___oid0; DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_1 = (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *)il2cpp_codegen_object_new(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); DerObjectIdentifier__ctor_m8009342D7B2AD40B1E19E6AB958141979B7405CD(L_1, L_0, /*hidden argument*/NULL); bool L_2 = ___critical1; X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06 * L_3 = ___cert2; X509V3CertificateGenerator_CopyAndAddExtension_m46924751BD2E0AFD9C796A75DA17E855F603C488(__this, L_1, L_2, L_3, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V3CertificateGenerator::CopyAndAddExtension(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Boolean,BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Certificate) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X509V3CertificateGenerator_CopyAndAddExtension_m46924751BD2E0AFD9C796A75DA17E855F603C488 (X509V3CertificateGenerator_tB58451ED00FF86B307032EF7908726B9D601664E * __this, DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___oid0, bool ___critical1, X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06 * ___cert2, const RuntimeMethod* method) { Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * V_0 = NULL; Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * V_1 = NULL; Exception_t * V_2 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * G_B3_0 = NULL; String_t* G_B3_1 = NULL; DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * G_B2_0 = NULL; String_t* G_B2_1 = NULL; String_t* G_B4_0 = NULL; String_t* G_B4_1 = NULL; { // Asn1OctetString extValue = cert.GetExtensionValue(oid); X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06 * L_0 = ___cert2; DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_1 = ___oid0; NullCheck(L_0); Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * L_2; L_2 = VirtualFuncInvoker1< Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 *, DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * >::Invoke(12 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509ExtensionBase::GetExtensionValue(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier) */, L_0, L_1); V_0 = L_2; // if (extValue == null) Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * L_3 = V_0; if (L_3) { goto IL_002d; } } { // throw new CertificateParsingException("extension " + oid + " not present"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_4 = ___oid0; DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_5 = L_4; G_B2_0 = L_5; G_B2_1 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral94E977427483D7BD69B6F085D621728CDC022FB8)); if (L_5) { G_B3_0 = L_5; G_B3_1 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral94E977427483D7BD69B6F085D621728CDC022FB8)); goto IL_0018; } } { G_B4_0 = ((String_t*)(NULL)); G_B4_1 = G_B2_1; goto IL_001d; } IL_0018: { NullCheck(G_B3_0); String_t* L_6; L_6 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, G_B3_0); G_B4_0 = L_6; G_B4_1 = G_B3_1; } IL_001d: { String_t* L_7; L_7 = String_Concat_m89EAB4C6A96B0E5C3F87300D6BE78D386B9EFC44(G_B4_1, G_B4_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4B32F882FFCCB657C01DC249EEA2507016576D10)), /*hidden argument*/NULL); CertificateParsingException_t5CE1769C4F94B5791C7D12C168E7BC8509C97778 * L_8 = (CertificateParsingException_t5CE1769C4F94B5791C7D12C168E7BC8509C97778 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CertificateParsingException_t5CE1769C4F94B5791C7D12C168E7BC8509C97778_il2cpp_TypeInfo_var))); CertificateParsingException__ctor_m589FDDF39DC94212A0E6A7A445702928F6C0488B(L_8, L_7, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X509V3CertificateGenerator_CopyAndAddExtension_m46924751BD2E0AFD9C796A75DA17E855F603C488_RuntimeMethod_var))); } IL_002d: { } IL_002e: try {// begin try (depth: 1) // Asn1Encodable value = X509ExtensionUtilities.FromExtensionValue(extValue); Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * L_9 = V_0; Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * L_10; L_10 = X509ExtensionUtilities_FromExtensionValue_mB3EF41D2786974D71033FD2A97181A5C5C75CAAD(L_9, /*hidden argument*/NULL); V_1 = L_10; // this.AddExtension(oid, critical, value); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_11 = ___oid0; bool L_12 = ___critical1; Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_13 = V_1; X509V3CertificateGenerator_AddExtension_mAB8681F918515ECFD9487BFEC3A2E862D49D1E12(__this, L_11, L_12, L_13, /*hidden argument*/NULL); // } goto IL_004e; }// 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_0040; } throw e; } CATCH_0040: {// begin catch(System.Exception) // catch (Exception e) V_2 = ((Exception_t *)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *)); // throw new CertificateParsingException(e.Message, e); Exception_t * L_14 = V_2; NullCheck(L_14); String_t* L_15; L_15 = VirtualFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Exception::get_Message() */, L_14); Exception_t * L_16 = V_2; CertificateParsingException_t5CE1769C4F94B5791C7D12C168E7BC8509C97778 * L_17 = (CertificateParsingException_t5CE1769C4F94B5791C7D12C168E7BC8509C97778 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CertificateParsingException_t5CE1769C4F94B5791C7D12C168E7BC8509C97778_il2cpp_TypeInfo_var))); CertificateParsingException__ctor_m76E5CC629670B0430C0DA78C11BD33EDA840331D(L_17, L_15, L_16, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X509V3CertificateGenerator_CopyAndAddExtension_m46924751BD2E0AFD9C796A75DA17E855F603C488_RuntimeMethod_var))); }// end catch (depth: 1) IL_004e: { // } return; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Certificate BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V3CertificateGenerator::Generate(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06 * X509V3CertificateGenerator_Generate_mC010BDA2FA7FC5FACEA0CB35736AF999ED3F9B3F (X509V3CertificateGenerator_tB58451ED00FF86B307032EF7908726B9D601664E * __this, AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * ___privateKey0, const RuntimeMethod* method) { { // return Generate(privateKey, null); AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * L_0 = ___privateKey0; X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06 * L_1; L_1 = X509V3CertificateGenerator_Generate_m65BD10E4A699BDDD15E9D7D5213D436907AB5658(__this, L_0, (SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 *)NULL, /*hidden argument*/NULL); return L_1; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Certificate BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V3CertificateGenerator::Generate(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.AsymmetricKeyParameter,BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06 * X509V3CertificateGenerator_Generate_m65BD10E4A699BDDD15E9D7D5213D436907AB5658 (X509V3CertificateGenerator_tB58451ED00FF86B307032EF7908726B9D601664E * __this, AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * ___privateKey0, SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * ___random1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Asn1SignatureFactory_t82880FE5F99692E8C940551308221AA7CAB2682A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // return Generate(new Asn1SignatureFactory(signatureAlgorithm, privateKey, random)); String_t* L_0 = __this->get_signatureAlgorithm_4(); AsymmetricKeyParameter_t99E15FA54F59DFD554A3211C73037A0F5E85374A * L_1 = ___privateKey0; SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * L_2 = ___random1; Asn1SignatureFactory_t82880FE5F99692E8C940551308221AA7CAB2682A * L_3 = (Asn1SignatureFactory_t82880FE5F99692E8C940551308221AA7CAB2682A *)il2cpp_codegen_object_new(Asn1SignatureFactory_t82880FE5F99692E8C940551308221AA7CAB2682A_il2cpp_TypeInfo_var); Asn1SignatureFactory__ctor_m3B76289916350A708ADF571E9FEE4A509E87E0E7(L_3, L_0, L_1, L_2, /*hidden argument*/NULL); X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06 * L_4; L_4 = X509V3CertificateGenerator_Generate_m4D125C14FDB3A5DC545D7CF089ED99FA2EBD423D(__this, L_3, /*hidden argument*/NULL); return L_4; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Certificate BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V3CertificateGenerator::Generate(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ISignatureFactory) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06 * X509V3CertificateGenerator_Generate_m4D125C14FDB3A5DC545D7CF089ED99FA2EBD423D (X509V3CertificateGenerator_tB58451ED00FF86B307032EF7908726B9D601664E * __this, RuntimeObject* ___signatureCalculatorFactory0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBlockResult_t6A7C472F432343ADBA690B12778C4CF5FFB19CCE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ISignatureFactory_t1572BDBCE1A2741BB5DF8A6BE3FC219B7722135B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IStreamCalculator_t4F9460D63B0B76B77564036A39E861A0A03ABD07_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3 * V_0 = NULL; RuntimeObject* V_1 = NULL; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_2 = NULL; { // tbsGen.SetSignature ((AlgorithmIdentifier)signatureCalculatorFactory.AlgorithmDetails); V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3 * L_0 = __this->get_tbsGen_1(); RuntimeObject* L_1 = ___signatureCalculatorFactory0; NullCheck(L_1); RuntimeObject * L_2; L_2 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ISignatureFactory::get_AlgorithmDetails() */, ISignatureFactory_t1572BDBCE1A2741BB5DF8A6BE3FC219B7722135B_il2cpp_TypeInfo_var, L_1); NullCheck(L_0); V3TbsCertificateGenerator_SetSignature_m8631ACE4BE9E2A684DB332E5839646F301F8FD6B_inline(L_0, ((AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 *)CastclassClass((RuntimeObject*)L_2, AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); // if (!extGenerator.IsEmpty) X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017 * L_3 = __this->get_extGenerator_0(); NullCheck(L_3); bool L_4; L_4 = X509ExtensionsGenerator_get_IsEmpty_m80C3FB668B6AFCC515B529A100626FF0F96A97C1(L_3, /*hidden argument*/NULL); if (L_4) { goto IL_0039; } } { // tbsGen.SetExtensions(extGenerator.Generate()); V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3 * L_5 = __this->get_tbsGen_1(); X509ExtensionsGenerator_t0E6624960695AD84C9A9E03780B502BD525E6017 * L_6 = __this->get_extGenerator_0(); NullCheck(L_6); X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F * L_7; L_7 = X509ExtensionsGenerator_Generate_m6E3B33182C20F1F63B510DDBA98CBFB0724DBE7F(L_6, /*hidden argument*/NULL); NullCheck(L_5); V3TbsCertificateGenerator_SetExtensions_m7D39B71D09D40EA817BCC233C37EFD81DD050FE1(L_5, L_7, /*hidden argument*/NULL); } IL_0039: { // TbsCertificateStructure tbsCert = tbsGen.GenerateTbsCertificate(); V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3 * L_8 = __this->get_tbsGen_1(); NullCheck(L_8); TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3 * L_9; L_9 = V3TbsCertificateGenerator_GenerateTbsCertificate_m8A3FEFCFD6D6FDF58B94777393212B8E5F671429(L_8, /*hidden argument*/NULL); V_0 = L_9; // IStreamCalculator streamCalculator = signatureCalculatorFactory.CreateCalculator(); RuntimeObject* L_10 = ___signatureCalculatorFactory0; NullCheck(L_10); RuntimeObject* L_11; L_11 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IStreamCalculator BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ISignatureFactory::CreateCalculator() */, ISignatureFactory_t1572BDBCE1A2741BB5DF8A6BE3FC219B7722135B_il2cpp_TypeInfo_var, L_10); V_1 = L_11; // byte[] encoded = tbsCert.GetDerEncoded(); TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3 * L_12 = V_0; NullCheck(L_12); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_13; L_13 = Asn1Encodable_GetDerEncoded_m30F357C2B994910EAC405FACBB5CA88181B3CD4E(L_12, /*hidden argument*/NULL); V_2 = L_13; // streamCalculator.Stream.Write(encoded, 0, encoded.Length); RuntimeObject* L_14 = V_1; NullCheck(L_14); Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_15; L_15 = InterfaceFuncInvoker0< Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * >::Invoke(0 /* System.IO.Stream BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IStreamCalculator::get_Stream() */, IStreamCalculator_t4F9460D63B0B76B77564036A39E861A0A03ABD07_il2cpp_TypeInfo_var, L_14); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_16 = V_2; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_17 = V_2; NullCheck(L_17); NullCheck(L_15); VirtualActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(32 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_15, L_16, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length)))); // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.Dispose(streamCalculator.Stream); RuntimeObject* L_18 = V_1; NullCheck(L_18); Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_19; L_19 = InterfaceFuncInvoker0< Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * >::Invoke(0 /* System.IO.Stream BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IStreamCalculator::get_Stream() */, IStreamCalculator_t4F9460D63B0B76B77564036A39E861A0A03ABD07_il2cpp_TypeInfo_var, L_18); IL2CPP_RUNTIME_CLASS_INIT(Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var); Platform_Dispose_m852AB0A263A990096BCE2A4230CB5723F873C1A2(L_19, /*hidden argument*/NULL); // return GenerateJcaObject(tbsCert, (AlgorithmIdentifier)signatureCalculatorFactory.AlgorithmDetails, ((IBlockResult)streamCalculator.GetResult()).Collect()); TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3 * L_20 = V_0; RuntimeObject* L_21 = ___signatureCalculatorFactory0; NullCheck(L_21); RuntimeObject * L_22; L_22 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ISignatureFactory::get_AlgorithmDetails() */, ISignatureFactory_t1572BDBCE1A2741BB5DF8A6BE3FC219B7722135B_il2cpp_TypeInfo_var, L_21); RuntimeObject* L_23 = V_1; NullCheck(L_23); RuntimeObject * L_24; L_24 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IStreamCalculator::GetResult() */, IStreamCalculator_t4F9460D63B0B76B77564036A39E861A0A03ABD07_il2cpp_TypeInfo_var, L_23); NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_24, IBlockResult_t6A7C472F432343ADBA690B12778C4CF5FFB19CCE_il2cpp_TypeInfo_var))); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_25; L_25 = InterfaceFuncInvoker0< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* >::Invoke(0 /* System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockResult::Collect() */, IBlockResult_t6A7C472F432343ADBA690B12778C4CF5FFB19CCE_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_24, IBlockResult_t6A7C472F432343ADBA690B12778C4CF5FFB19CCE_il2cpp_TypeInfo_var))); X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06 * L_26; L_26 = X509V3CertificateGenerator_GenerateJcaObject_m601AFE2CF8859D31C11D820CF531D6F3A23FF57F(__this, L_20, ((AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 *)CastclassClass((RuntimeObject*)L_22, AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9_il2cpp_TypeInfo_var)), L_25, /*hidden argument*/NULL); return L_26; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509Certificate BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V3CertificateGenerator::GenerateJcaObject(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.TbsCertificateStructure,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06 * X509V3CertificateGenerator_GenerateJcaObject_m601AFE2CF8859D31C11D820CF531D6F3A23FF57F (X509V3CertificateGenerator_tB58451ED00FF86B307032EF7908726B9D601664E * __this, TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3 * ___tbsCert0, AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___sigAlg1, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___signature2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerBitString_t305465793A47445626D3541AB8CEDE347D874524_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509CertificateStructure_tD48237F907D1001604C98590613EFD6D720BEDE1_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // return new X509Certificate( // new X509CertificateStructure(tbsCert, sigAlg, new DerBitString(signature))); TbsCertificateStructure_t01EE51D1D9FF6763C618258225D3B5403E9800A3 * L_0 = ___tbsCert0; AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_1 = ___sigAlg1; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = ___signature2; DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * L_3 = (DerBitString_t305465793A47445626D3541AB8CEDE347D874524 *)il2cpp_codegen_object_new(DerBitString_t305465793A47445626D3541AB8CEDE347D874524_il2cpp_TypeInfo_var); DerBitString__ctor_m97AF53404F6333EA146C0DB958DF3C483B71D94B(L_3, L_2, /*hidden argument*/NULL); X509CertificateStructure_tD48237F907D1001604C98590613EFD6D720BEDE1 * L_4 = (X509CertificateStructure_tD48237F907D1001604C98590613EFD6D720BEDE1 *)il2cpp_codegen_object_new(X509CertificateStructure_tD48237F907D1001604C98590613EFD6D720BEDE1_il2cpp_TypeInfo_var); X509CertificateStructure__ctor_mB983F7D54B4AF1C7A9B3F77E29427DE75BB2024E(L_4, L_0, L_1, L_3, /*hidden argument*/NULL); X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06 * L_5 = (X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06 *)il2cpp_codegen_object_new(X509Certificate_t02D6D61F4D1C5E290A63DED5B388F0EEEFA9AA06_il2cpp_TypeInfo_var); X509Certificate__ctor_m4535814BC74C5F8715C14327149914B85DB89C5B(L_5, L_4, /*hidden argument*/NULL); return L_5; } } // System.Collections.IEnumerable BestHTTP.SecureProtocol.Org.BouncyCastle.X509.X509V3CertificateGenerator::get_SignatureAlgNames() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* X509V3CertificateGenerator_get_SignatureAlgNames_m6375C9F3ACDEDDEE49F3684ADF7B8589D90966F2 (X509V3CertificateGenerator_tB58451ED00FF86B307032EF7908726B9D601664E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // get { return X509Utilities.GetAlgNames(); } IL2CPP_RUNTIME_CLASS_INIT(X509Utilities_t66841E88DD6510FEF43631CF9E02B65EB92F85C9_il2cpp_TypeInfo_var); RuntimeObject* L_0; L_0 = X509Utilities_GetAlgNames_mD83E9C06473AD2CFCFB7ACF02458BB69AF429932(/*hidden argument*/NULL); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Paddings.X923Padding::Init(BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X923Padding_Init_m8D63147D1BF336AAE202BD7A775A21606E75FFCE (X923Padding_t1226C4D23EC385127EA29971778309857A87FA0C * __this, SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * ___random0, const RuntimeMethod* method) { { // this.random = random; SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * L_0 = ___random0; __this->set_random_0(L_0); // } return; } } // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Paddings.X923Padding::get_PaddingName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* X923Padding_get_PaddingName_m6B80EF3138F3E34D7D1F3C2891FAF569BEFC4DC2 (X923Padding_t1226C4D23EC385127EA29971778309857A87FA0C * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0803454762BF3842C62A2A9A2B7C99CD51D8BB17); s_Il2CppMethodInitialized = true; } { // get { return "X9.23"; } return _stringLiteral0803454762BF3842C62A2A9A2B7C99CD51D8BB17; } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Paddings.X923Padding::AddPadding(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t X923Padding_AddPadding_mCD8A402C6C958D4287B385EFAE840E83A92D47AF (X923Padding_t1226C4D23EC385127EA29971778309857A87FA0C * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___input0, int32_t ___inOff1, const RuntimeMethod* method) { uint8_t V_0 = 0x0; { // byte code = (byte)(input.Length - inOff); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___input0; NullCheck(L_0); int32_t L_1 = ___inOff1; V_0 = (uint8_t)((int32_t)((uint8_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))), (int32_t)L_1)))); goto IL_002b; } IL_0009: { // if (random == null) SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * L_2 = __this->get_random_0(); if (L_2) { goto IL_0017; } } { // input[inOff] = 0; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_3 = ___input0; int32_t L_4 = ___inOff1; NullCheck(L_3); (L_3)->SetAt(static_cast(L_4), (uint8_t)0); // } goto IL_0026; } IL_0017: { // input[inOff] = (byte)random.NextInt(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_5 = ___input0; int32_t L_6 = ___inOff1; SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * L_7 = __this->get_random_0(); NullCheck(L_7); int32_t L_8; L_8 = VirtualFuncInvoker0< int32_t >::Invoke(14 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom::NextInt() */, L_7); NullCheck(L_5); (L_5)->SetAt(static_cast(L_6), (uint8_t)((int32_t)((uint8_t)L_8))); } IL_0026: { // inOff++; int32_t L_9 = ___inOff1; ___inOff1 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1)); } IL_002b: { // while (inOff < input.Length - 1) int32_t L_10 = ___inOff1; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_11 = ___input0; NullCheck(L_11); if ((((int32_t)L_10) < ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_11)->max_length))), (int32_t)1))))) { goto IL_0009; } } { // input[inOff] = code; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_12 = ___input0; int32_t L_13 = ___inOff1; uint8_t L_14 = V_0; NullCheck(L_12); (L_12)->SetAt(static_cast(L_13), (uint8_t)L_14); // return code; uint8_t L_15 = V_0; return L_15; } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Paddings.X923Padding::PadCount(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t X923Padding_PadCount_m1A2CAC1249690F2857D64DB67F7113D44AD10B03 (X923Padding_t1226C4D23EC385127EA29971778309857A87FA0C * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___input0, const RuntimeMethod* method) { int32_t G_B2_0 = 0; int32_t G_B1_0 = 0; { // int count = input[input.Length - 1] & 0xff; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___input0; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = ___input0; NullCheck(L_1); NullCheck(L_0); int32_t L_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length))), (int32_t)1)); uint8_t L_3 = (L_0)->GetAt(static_cast(L_2)); // if (count > input.Length) int32_t L_4 = ((int32_t)((int32_t)L_3&(int32_t)((int32_t)255))); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_5 = ___input0; NullCheck(L_5); G_B1_0 = L_4; if ((((int32_t)L_4) <= ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length)))))) { G_B2_0 = L_4; goto IL_001e; } } { // throw new InvalidCipherTextException("pad block corrupted"); InvalidCipherTextException_tCB4102F353576109DF6723BAD28806C82D61BC8D * L_6 = (InvalidCipherTextException_tCB4102F353576109DF6723BAD28806C82D61BC8D *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCipherTextException_tCB4102F353576109DF6723BAD28806C82D61BC8D_il2cpp_TypeInfo_var))); InvalidCipherTextException__ctor_m17000A09278358915AC0F74D4227FA7AC7C72043(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0EBC566A72F985E28DD57BC09180A1E5FDF54E41)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X923Padding_PadCount_m1A2CAC1249690F2857D64DB67F7113D44AD10B03_RuntimeMethod_var))); } IL_001e: { // return count; return G_B2_0; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Paddings.X923Padding::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X923Padding__ctor_mB87415AC7DC9A66B225159EAC8FDBE6AC4C3BE28 (X923Padding_t1226C4D23EC385127EA29971778309857A87FA0C * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.X931Rng::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher,System.Byte[],BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IEntropySource) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X931Rng__ctor_m356068EFD51FC25FCA6A5961A45D49C82FE04A9C (X931Rng_t7B9242C1A220EC8F7036A04EB335B10EE7E26800 * __this, RuntimeObject* ___engine0, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___dateTimeVector1, RuntimeObject* ___entropySource2, 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*)&IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // private long mReseedCounter = 1; __this->set_mReseedCounter_10(((int64_t)((int64_t)1))); // internal X931Rng(IBlockCipher engine, byte[] dateTimeVector, IEntropySource entropySource) Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); // this.mEngine = engine; RuntimeObject* L_0 = ___engine0; __this->set_mEngine_4(L_0); // this.mEntropySource = entropySource; RuntimeObject* L_1 = ___entropySource2; __this->set_mEntropySource_5(L_1); // this.mDT = new byte[engine.GetBlockSize()]; RuntimeObject* L_2 = ___engine0; NullCheck(L_2); int32_t L_3; L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::GetBlockSize() */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_2); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)L_3); __this->set_mDT_6(L_4); // Array.Copy(dateTimeVector, 0, mDT, 0, mDT.Length); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_5 = ___dateTimeVector1; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_6 = __this->get_mDT_6(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_7 = __this->get_mDT_6(); NullCheck(L_7); Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_5, 0, (RuntimeArray *)(RuntimeArray *)L_6, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length))), /*hidden argument*/NULL); // this.mI = new byte[engine.GetBlockSize()]; RuntimeObject* L_8 = ___engine0; NullCheck(L_8); int32_t L_9; L_9 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::GetBlockSize() */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_8); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_10 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)L_9); __this->set_mI_7(L_10); // this.mR = new byte[engine.GetBlockSize()]; RuntimeObject* L_11 = ___engine0; NullCheck(L_11); int32_t L_12; L_12 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::GetBlockSize() */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_11); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_13 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)L_12); __this->set_mR_8(L_13); // } return; } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.X931Rng::Generate(System.Byte[],System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t X931Rng_Generate_mD78CE28093A367EE4D5828DD4057BB1B50482FBA (X931Rng_t7B9242C1A220EC8F7036A04EB335B10EE7E26800 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___output0, bool ___predictionResistant1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEntropySource_tB5D9DE195690CD14EA3F129F3F30B2B6A8B21CCE_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; { // if (mR.Length == 8) // 64 bit block size ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = __this->get_mR_8(); NullCheck(L_0); if ((!(((uint32_t)((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length)))) == ((uint32_t)8)))) { goto IL_004a; } } { // if (mReseedCounter > BLOCK64_RESEED_MAX) int64_t L_1 = __this->get_mReseedCounter_10(); if ((((int64_t)L_1) <= ((int64_t)((int64_t)((int64_t)((int32_t)32768)))))) { goto IL_001b; } } { // return -1; return (-1); } IL_001b: { // if (IsTooLarge(output, BLOCK64_MAX_BITS_REQUEST / 8)) ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = ___output0; bool L_3; L_3 = X931Rng_IsTooLarge_m48FCDFE35CDCB4C39B9CBDDCFC4F3E87BCF2EE7A(L_2, ((int32_t)512), /*hidden argument*/NULL); if (!L_3) { goto IL_0089; } } { // throw new ArgumentException("Number of bits per request limited to " + BLOCK64_MAX_BITS_REQUEST, "output"); V_2 = ((int32_t)4096); String_t* L_4; L_4 = Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411((int32_t*)(&V_2), /*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*)&X931Rng_Generate_mD78CE28093A367EE4D5828DD4057BB1B50482FBA_RuntimeMethod_var))); } IL_004a: { // if (mReseedCounter > BLOCK128_RESEED_MAX) int64_t L_7 = __this->get_mReseedCounter_10(); if ((((int64_t)L_7) <= ((int64_t)((int64_t)((int64_t)((int32_t)8388608)))))) { goto IL_005a; } } { // return -1; return (-1); } IL_005a: { // if (IsTooLarge(output, BLOCK128_MAX_BITS_REQUEST / 8)) ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_8 = ___output0; bool L_9; L_9 = X931Rng_IsTooLarge_m48FCDFE35CDCB4C39B9CBDDCFC4F3E87BCF2EE7A(L_8, ((int32_t)32768), /*hidden argument*/NULL); if (!L_9) { goto IL_0089; } } { // throw new ArgumentException("Number of bits per request limited to " + BLOCK128_MAX_BITS_REQUEST, "output"); V_2 = ((int32_t)262144); String_t* L_10; L_10 = Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411((int32_t*)(&V_2), /*hidden argument*/NULL); String_t* L_11; L_11 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB3FAA66308461F1BC7771CA107A7DF8D0F9D66CD)), L_10, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_12 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_12, L_11, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral71443AC7CF5CC108984A138188DE915E32441BB2)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X931Rng_Generate_mD78CE28093A367EE4D5828DD4057BB1B50482FBA_RuntimeMethod_var))); } IL_0089: { // if (predictionResistant || mV == null) bool L_13 = ___predictionResistant1; if (L_13) { goto IL_0094; } } { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_14 = __this->get_mV_9(); if (L_14) { goto IL_00c5; } } IL_0094: { // mV = mEntropySource.GetEntropy(); RuntimeObject* L_15 = __this->get_mEntropySource_5(); NullCheck(L_15); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_16; L_16 = InterfaceFuncInvoker0< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* >::Invoke(1 /* System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IEntropySource::GetEntropy() */, IEntropySource_tB5D9DE195690CD14EA3F129F3F30B2B6A8B21CCE_il2cpp_TypeInfo_var, L_15); __this->set_mV_9(L_16); // if (mV.Length != mEngine.GetBlockSize()) ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_17 = __this->get_mV_9(); NullCheck(L_17); RuntimeObject* L_18 = __this->get_mEngine_4(); NullCheck(L_18); int32_t L_19; L_19 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::GetBlockSize() */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_18); if ((((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length)))) == ((int32_t)L_19))) { goto IL_00c5; } } { // throw new InvalidOperationException("Insufficient entropy returned"); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_20 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_20, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral43BDBEC92BA93D7B0B4BD665543E16F35289F63A)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X931Rng_Generate_mD78CE28093A367EE4D5828DD4057BB1B50482FBA_RuntimeMethod_var))); } IL_00c5: { // int m = output.Length / mR.Length; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_21 = ___output0; NullCheck(L_21); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_22 = __this->get_mR_8(); NullCheck(L_22); V_0 = ((int32_t)((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_21)->max_length)))/(int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_22)->max_length))))); // for (int i = 0; i < m; i++) V_3 = 0; goto IL_014f; } IL_00d6: { // mEngine.ProcessBlock(mDT, 0, mI, 0); RuntimeObject* L_23 = __this->get_mEngine_4(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_24 = __this->get_mDT_6(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_25 = __this->get_mI_7(); NullCheck(L_23); int32_t L_26; L_26 = InterfaceFuncInvoker4< int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t >::Invoke(4 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32) */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_23, L_24, 0, L_25, 0); // Process(mR, mI, mV); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_27 = __this->get_mR_8(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_28 = __this->get_mI_7(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_29 = __this->get_mV_9(); X931Rng_Process_mFAFBFFB89645DFD204721894527A01267BA00DA3(__this, L_27, L_28, L_29, /*hidden argument*/NULL); // Process(mV, mR, mI); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_30 = __this->get_mV_9(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_31 = __this->get_mR_8(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_32 = __this->get_mI_7(); X931Rng_Process_mFAFBFFB89645DFD204721894527A01267BA00DA3(__this, L_30, L_31, L_32, /*hidden argument*/NULL); // Array.Copy(mR, 0, output, i * mR.Length, mR.Length); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_33 = __this->get_mR_8(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_34 = ___output0; int32_t L_35 = V_3; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_36 = __this->get_mR_8(); NullCheck(L_36); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_37 = __this->get_mR_8(); NullCheck(L_37); Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_33, 0, (RuntimeArray *)(RuntimeArray *)L_34, ((int32_t)il2cpp_codegen_multiply((int32_t)L_35, (int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_36)->max_length))))), ((int32_t)((int32_t)(((RuntimeArray*)L_37)->max_length))), /*hidden argument*/NULL); // Increment(mDT); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_38 = __this->get_mDT_6(); X931Rng_Increment_m78B0BC148C5F7DA516661A6B2F5981A468F855B7(__this, L_38, /*hidden argument*/NULL); // for (int i = 0; i < m; i++) int32_t L_39 = V_3; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_39, (int32_t)1)); } IL_014f: { // for (int i = 0; i < m; i++) int32_t L_40 = V_3; int32_t L_41 = V_0; if ((((int32_t)L_40) < ((int32_t)L_41))) { goto IL_00d6; } } { // int bytesToCopy = (output.Length - m * mR.Length); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_42 = ___output0; NullCheck(L_42); int32_t L_43 = V_0; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_44 = __this->get_mR_8(); NullCheck(L_44); V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_42)->max_length))), (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_43, (int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_44)->max_length))))))); // if (bytesToCopy > 0) int32_t L_45 = V_1; if ((((int32_t)L_45) <= ((int32_t)0))) { goto IL_01d4; } } { // mEngine.ProcessBlock(mDT, 0, mI, 0); RuntimeObject* L_46 = __this->get_mEngine_4(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_47 = __this->get_mDT_6(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_48 = __this->get_mI_7(); NullCheck(L_46); int32_t L_49; L_49 = InterfaceFuncInvoker4< int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t >::Invoke(4 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32) */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_46, L_47, 0, L_48, 0); // Process(mR, mI, mV); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_50 = __this->get_mR_8(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_51 = __this->get_mI_7(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_52 = __this->get_mV_9(); X931Rng_Process_mFAFBFFB89645DFD204721894527A01267BA00DA3(__this, L_50, L_51, L_52, /*hidden argument*/NULL); // Process(mV, mR, mI); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_53 = __this->get_mV_9(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_54 = __this->get_mR_8(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_55 = __this->get_mI_7(); X931Rng_Process_mFAFBFFB89645DFD204721894527A01267BA00DA3(__this, L_53, L_54, L_55, /*hidden argument*/NULL); // Array.Copy(mR, 0, output, m * mR.Length, bytesToCopy); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_56 = __this->get_mR_8(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_57 = ___output0; int32_t L_58 = V_0; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_59 = __this->get_mR_8(); NullCheck(L_59); int32_t L_60 = V_1; Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_56, 0, (RuntimeArray *)(RuntimeArray *)L_57, ((int32_t)il2cpp_codegen_multiply((int32_t)L_58, (int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_59)->max_length))))), L_60, /*hidden argument*/NULL); // Increment(mDT); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_61 = __this->get_mDT_6(); X931Rng_Increment_m78B0BC148C5F7DA516661A6B2F5981A468F855B7(__this, L_61, /*hidden argument*/NULL); } IL_01d4: { // mReseedCounter++; int64_t L_62 = __this->get_mReseedCounter_10(); __this->set_mReseedCounter_10(((int64_t)il2cpp_codegen_add((int64_t)L_62, (int64_t)((int64_t)((int64_t)1))))); // return output.Length; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_63 = ___output0; NullCheck(L_63); return ((int32_t)((int32_t)(((RuntimeArray*)L_63)->max_length))); } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.X931Rng::Reseed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X931Rng_Reseed_mAC9142359C3303BFE899BA7405C52898102BAF13 (X931Rng_t7B9242C1A220EC8F7036A04EB335B10EE7E26800 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEntropySource_tB5D9DE195690CD14EA3F129F3F30B2B6A8B21CCE_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // mV = mEntropySource.GetEntropy(); RuntimeObject* L_0 = __this->get_mEntropySource_5(); 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); __this->set_mV_9(L_1); // if (mV.Length != mEngine.GetBlockSize()) ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = __this->get_mV_9(); NullCheck(L_2); RuntimeObject* L_3 = __this->get_mEngine_4(); NullCheck(L_3); int32_t L_4; L_4 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::GetBlockSize() */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_3); if ((((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))) == ((int32_t)L_4))) { goto IL_0031; } } { // throw new InvalidOperationException("Insufficient entropy returned"); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_5 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral43BDBEC92BA93D7B0B4BD665543E16F35289F63A)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X931Rng_Reseed_mAC9142359C3303BFE899BA7405C52898102BAF13_RuntimeMethod_var))); } IL_0031: { // mReseedCounter = 1; __this->set_mReseedCounter_10(((int64_t)((int64_t)1))); // } return; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IEntropySource BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.X931Rng::get_EntropySource() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* X931Rng_get_EntropySource_m3FDD635940DB47E54ECFB24194860DB9033DFF94 (X931Rng_t7B9242C1A220EC8F7036A04EB335B10EE7E26800 * __this, const RuntimeMethod* method) { { // get { return mEntropySource; } RuntimeObject* L_0 = __this->get_mEntropySource_5(); return L_0; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.X931Rng::Process(System.Byte[],System.Byte[],System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X931Rng_Process_mFAFBFFB89645DFD204721894527A01267BA00DA3 (X931Rng_t7B9242C1A220EC8F7036A04EB335B10EE7E26800 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___res0, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___a1, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___b2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { // for (int i = 0; i != res.Length; i++) V_0 = 0; goto IL_0013; } IL_0004: { // res[i] = (byte)(a[i] ^ b[i]); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___res0; int32_t L_1 = V_0; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = ___a1; int32_t L_3 = V_0; NullCheck(L_2); int32_t L_4 = L_3; uint8_t L_5 = (L_2)->GetAt(static_cast(L_4)); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_6 = ___b2; int32_t L_7 = V_0; NullCheck(L_6); int32_t L_8 = L_7; uint8_t L_9 = (L_6)->GetAt(static_cast(L_8)); NullCheck(L_0); (L_0)->SetAt(static_cast(L_1), (uint8_t)((int32_t)((uint8_t)((int32_t)((int32_t)L_5^(int32_t)L_9))))); // for (int i = 0; i != res.Length; i++) int32_t L_10 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1)); } IL_0013: { // for (int i = 0; i != res.Length; i++) int32_t L_11 = V_0; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_12 = ___res0; NullCheck(L_12); if ((!(((uint32_t)L_11) == ((uint32_t)((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length))))))) { goto IL_0004; } } { // mEngine.ProcessBlock(res, 0, res, 0); RuntimeObject* L_13 = __this->get_mEngine_4(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_14 = ___res0; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_15 = ___res0; NullCheck(L_13); int32_t L_16; L_16 = InterfaceFuncInvoker4< int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t >::Invoke(4 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32) */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_13, L_14, 0, L_15, 0); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.X931Rng::Increment(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X931Rng_Increment_m78B0BC148C5F7DA516661A6B2F5981A468F855B7 (X931Rng_t7B9242C1A220EC8F7036A04EB335B10EE7E26800 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___val0, const RuntimeMethod* method) { int32_t V_0 = 0; uint8_t V_1 = 0x0; { // for (int i = val.Length - 1; i >= 0; i--) ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___val0; NullCheck(L_0); V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))), (int32_t)1)); goto IL_001e; } IL_0008: { // if (++val[i] != 0) ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = ___val0; int32_t L_2 = V_0; NullCheck(L_1); uint8_t* L_3 = ((L_1)->GetAddressAt(static_cast(L_2))); int32_t L_4 = *((uint8_t*)L_3); V_1 = (uint8_t)((int32_t)((uint8_t)((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)))); uint8_t L_5 = V_1; *((int8_t*)L_3) = (int8_t)L_5; uint8_t L_6 = V_1; if (L_6) { goto IL_0022; } } { // for (int i = val.Length - 1; i >= 0; i--) int32_t L_7 = V_0; V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)1)); } IL_001e: { // for (int i = val.Length - 1; i >= 0; i--) int32_t L_8 = V_0; if ((((int32_t)L_8) >= ((int32_t)0))) { goto IL_0008; } } IL_0022: { // } return; } } // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.X931Rng::IsTooLarge(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool X931Rng_IsTooLarge_m48FCDFE35CDCB4C39B9CBDDCFC4F3E87BCF2EE7A (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___bytes0, int32_t ___maxBytes1, const RuntimeMethod* method) { { // return bytes != null && bytes.Length > maxBytes; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___bytes0; if (!L_0) { goto IL_000a; } } { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = ___bytes0; NullCheck(L_1); int32_t L_2 = ___maxBytes1; return (bool)((((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length)))) > ((int32_t)L_2))? 1 : 0); } IL_000a: { return (bool)0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.X931SecureRandom::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom,BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.X931Rng,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X931SecureRandom__ctor_mAEDD695EBC25C436E8F87D3E425040925985EAF1 (X931SecureRandom_t71D569F8B9A4EDFE82BF4FA1A5864AB8FD348935 * __this, SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * ___randomSource0, X931Rng_t7B9242C1A220EC8F7036A04EB335B10EE7E26800 * ___drbg1, bool ___predictionResistant2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // : base((IRandomGenerator)null) IL2CPP_RUNTIME_CLASS_INIT(SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28_il2cpp_TypeInfo_var); SecureRandom__ctor_mBC48F9C486B163A0E057AB069CF7718EEE1FE277(__this, (RuntimeObject*)NULL, /*hidden argument*/NULL); // this.mRandomSource = randomSource; SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * L_0 = ___randomSource0; __this->set_mRandomSource_8(L_0); // this.mDrbg = drbg; X931Rng_t7B9242C1A220EC8F7036A04EB335B10EE7E26800 * L_1 = ___drbg1; __this->set_mDrbg_9(L_1); // this.mPredictionResistant = predictionResistant; bool L_2 = ___predictionResistant2; __this->set_mPredictionResistant_7(L_2); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.X931SecureRandom::SetSeed(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X931SecureRandom_SetSeed_mB011D193F54C6F2572F402DFEFF8634013ED44E5 (X931SecureRandom_t71D569F8B9A4EDFE82BF4FA1A5864AB8FD348935 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___seed0, const RuntimeMethod* method) { X931SecureRandom_t71D569F8B9A4EDFE82BF4FA1A5864AB8FD348935 * V_0 = NULL; bool V_1 = false; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; { // lock (this) V_0 = __this; V_1 = (bool)0; } IL_0004: try {// begin try (depth: 1) { X931SecureRandom_t71D569F8B9A4EDFE82BF4FA1A5864AB8FD348935 * L_0 = V_0; Monitor_Enter_mBEB6CC84184B46F26375EC3FC8921D16E48EA4C4(L_0, (bool*)(&V_1), /*hidden argument*/NULL); // if (mRandomSource != null) SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * L_1 = __this->get_mRandomSource_8(); if (!L_1) { goto IL_0020; } } IL_0014: { // this.mRandomSource.SetSeed(seed); SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * L_2 = __this->get_mRandomSource_8(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_3 = ___seed0; NullCheck(L_2); VirtualActionInvoker1< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* >::Invoke(11 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom::SetSeed(System.Byte[]) */, L_2, L_3); } IL_0020: { // } IL2CPP_LEAVE(0x2C, FINALLY_0022); } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0022; } FINALLY_0022: {// begin finally (depth: 1) { bool L_4 = V_1; if (!L_4) { goto IL_002b; } } IL_0025: { X931SecureRandom_t71D569F8B9A4EDFE82BF4FA1A5864AB8FD348935 * L_5 = V_0; Monitor_Exit_mA776B403DA88AC77CDEEF67AB9F0D0E77ABD254A(L_5, /*hidden argument*/NULL); } IL_002b: { IL2CPP_END_FINALLY(34) } }// end finally (depth: 1) IL2CPP_CLEANUP(34) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x2C, IL_002c) } IL_002c: { // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.X931SecureRandom::SetSeed(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X931SecureRandom_SetSeed_m01F317413EF3D48C0FC67CA403CFB9BC6C328CE3 (X931SecureRandom_t71D569F8B9A4EDFE82BF4FA1A5864AB8FD348935 * __this, int64_t ___seed0, const RuntimeMethod* method) { X931SecureRandom_t71D569F8B9A4EDFE82BF4FA1A5864AB8FD348935 * V_0 = NULL; bool V_1 = false; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; { // lock (this) V_0 = __this; V_1 = (bool)0; } IL_0004: try {// begin try (depth: 1) { X931SecureRandom_t71D569F8B9A4EDFE82BF4FA1A5864AB8FD348935 * L_0 = V_0; Monitor_Enter_mBEB6CC84184B46F26375EC3FC8921D16E48EA4C4(L_0, (bool*)(&V_1), /*hidden argument*/NULL); // if (mRandomSource != null) SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * L_1 = __this->get_mRandomSource_8(); if (!L_1) { goto IL_0020; } } IL_0014: { // this.mRandomSource.SetSeed(seed); SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * L_2 = __this->get_mRandomSource_8(); int64_t L_3 = ___seed0; NullCheck(L_2); VirtualActionInvoker1< int64_t >::Invoke(12 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom::SetSeed(System.Int64) */, L_2, L_3); } IL_0020: { // } IL2CPP_LEAVE(0x2C, FINALLY_0022); } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0022; } FINALLY_0022: {// begin finally (depth: 1) { bool L_4 = V_1; if (!L_4) { goto IL_002b; } } IL_0025: { X931SecureRandom_t71D569F8B9A4EDFE82BF4FA1A5864AB8FD348935 * L_5 = V_0; Monitor_Exit_mA776B403DA88AC77CDEEF67AB9F0D0E77ABD254A(L_5, /*hidden argument*/NULL); } IL_002b: { IL2CPP_END_FINALLY(34) } }// end finally (depth: 1) IL2CPP_CLEANUP(34) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x2C, IL_002c) } IL_002c: { // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.X931SecureRandom::NextBytes(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X931SecureRandom_NextBytes_m36A499FB01495FDD4178251122BD3AA33861295F (X931SecureRandom_t71D569F8B9A4EDFE82BF4FA1A5864AB8FD348935 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___bytes0, const RuntimeMethod* method) { X931SecureRandom_t71D569F8B9A4EDFE82BF4FA1A5864AB8FD348935 * V_0 = NULL; bool V_1 = false; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; { // lock (this) V_0 = __this; V_1 = (bool)0; } IL_0004: try {// begin try (depth: 1) { X931SecureRandom_t71D569F8B9A4EDFE82BF4FA1A5864AB8FD348935 * L_0 = V_0; Monitor_Enter_mBEB6CC84184B46F26375EC3FC8921D16E48EA4C4(L_0, (bool*)(&V_1), /*hidden argument*/NULL); // if (mDrbg.Generate(bytes, mPredictionResistant) < 0) X931Rng_t7B9242C1A220EC8F7036A04EB335B10EE7E26800 * L_1 = __this->get_mDrbg_9(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = ___bytes0; bool L_3 = __this->get_mPredictionResistant_7(); NullCheck(L_1); int32_t L_4; L_4 = X931Rng_Generate_mD78CE28093A367EE4D5828DD4057BB1B50482FBA(L_1, L_2, L_3, /*hidden argument*/NULL); if ((((int32_t)L_4) >= ((int32_t)0))) { goto IL_003f; } } IL_0021: { // mDrbg.Reseed(); X931Rng_t7B9242C1A220EC8F7036A04EB335B10EE7E26800 * L_5 = __this->get_mDrbg_9(); NullCheck(L_5); X931Rng_Reseed_mAC9142359C3303BFE899BA7405C52898102BAF13(L_5, /*hidden argument*/NULL); // mDrbg.Generate(bytes, mPredictionResistant); X931Rng_t7B9242C1A220EC8F7036A04EB335B10EE7E26800 * L_6 = __this->get_mDrbg_9(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_7 = ___bytes0; bool L_8 = __this->get_mPredictionResistant_7(); NullCheck(L_6); int32_t L_9; L_9 = X931Rng_Generate_mD78CE28093A367EE4D5828DD4057BB1B50482FBA(L_6, L_7, L_8, /*hidden argument*/NULL); } IL_003f: { // } IL2CPP_LEAVE(0x4B, FINALLY_0041); } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0041; } FINALLY_0041: {// begin finally (depth: 1) { bool L_10 = V_1; if (!L_10) { goto IL_004a; } } IL_0044: { X931SecureRandom_t71D569F8B9A4EDFE82BF4FA1A5864AB8FD348935 * L_11 = V_0; Monitor_Exit_mA776B403DA88AC77CDEEF67AB9F0D0E77ABD254A(L_11, /*hidden argument*/NULL); } IL_004a: { IL2CPP_END_FINALLY(65) } }// end finally (depth: 1) IL2CPP_CLEANUP(65) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x4B, IL_004b) } IL_004b: { // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.X931SecureRandom::NextBytes(System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X931SecureRandom_NextBytes_mCCFC788AFAE5CCA4C95DC86D7CA72FC95A5AD142 (X931SecureRandom_t71D569F8B9A4EDFE82BF4FA1A5864AB8FD348935 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___buf0, int32_t ___off1, int32_t ___len2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_0 = NULL; { // byte[] bytes = new byte[len]; int32_t L_0 = ___len2; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)L_0); V_0 = L_1; // NextBytes(bytes); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = V_0; VirtualActionInvoker1< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* >::Invoke(9 /* System.Void System.Random::NextBytes(System.Byte[]) */, __this, L_2); // Array.Copy(bytes, 0, buf, off, len); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_3 = V_0; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = ___buf0; int32_t L_5 = ___off1; int32_t L_6 = ___len2; Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_3, 0, (RuntimeArray *)(RuntimeArray *)L_4, L_5, L_6, /*hidden argument*/NULL); // } return; } } // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.X931SecureRandom::GenerateSeed(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* X931SecureRandom_GenerateSeed_m2AE2312A5629D5F43B77838CBCC5DC13A99184CA (X931SecureRandom_t71D569F8B9A4EDFE82BF4FA1A5864AB8FD348935 * __this, int32_t ___numBytes0, const RuntimeMethod* method) { { // return EntropyUtilities.GenerateSeed(mDrbg.EntropySource, numBytes); X931Rng_t7B9242C1A220EC8F7036A04EB335B10EE7E26800 * L_0 = __this->get_mDrbg_9(); NullCheck(L_0); RuntimeObject* L_1; L_1 = X931Rng_get_EntropySource_m3FDD635940DB47E54ECFB24194860DB9033DFF94_inline(L_0, /*hidden argument*/NULL); int32_t L_2 = ___numBytes0; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_3; L_3 = EntropyUtilities_GenerateSeed_mD47AFF2A8054904072F26A1E6FC40DE3F45B2280(L_1, L_2, /*hidden argument*/NULL); return L_3; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.X931SecureRandomBuilder::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X931SecureRandomBuilder__ctor_mA23E943712F2119D1E567D00884A61075C774150 (X931SecureRandomBuilder_tF2FF9454E4C0A76A4297D2D1E0A3F1E48A85E5A7 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // : this(new SecureRandom(), false) SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * L_0 = (SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 *)il2cpp_codegen_object_new(SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28_il2cpp_TypeInfo_var); SecureRandom__ctor_mAD42803A2428614D1F961A8BCC228B22958C978A(L_0, /*hidden argument*/NULL); X931SecureRandomBuilder__ctor_mF59243B34F48A20C6A35E8A8014589BED07D0161(__this, L_0, (bool)0, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.X931SecureRandomBuilder::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Security.SecureRandom,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X931SecureRandomBuilder__ctor_mF59243B34F48A20C6A35E8A8014589BED07D0161 (X931SecureRandomBuilder_tF2FF9454E4C0A76A4297D2D1E0A3F1E48A85E5A7 * __this, SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * ___entropySource0, bool ___predictionResistant1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BasicEntropySourceProvider_t6F0E2E503BBA509525A672616B82C23B8927D01E_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public X931SecureRandomBuilder(SecureRandom entropySource, bool predictionResistant) Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); // this.mRandom = entropySource; SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * L_0 = ___entropySource0; __this->set_mRandom_0(L_0); // this.mEntropySourceProvider = new BasicEntropySourceProvider(mRandom, predictionResistant); SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * L_1 = __this->get_mRandom_0(); bool L_2 = ___predictionResistant1; BasicEntropySourceProvider_t6F0E2E503BBA509525A672616B82C23B8927D01E * L_3 = (BasicEntropySourceProvider_t6F0E2E503BBA509525A672616B82C23B8927D01E *)il2cpp_codegen_object_new(BasicEntropySourceProvider_t6F0E2E503BBA509525A672616B82C23B8927D01E_il2cpp_TypeInfo_var); BasicEntropySourceProvider__ctor_mBF8E1C969A2B77433C19FEECA563FE46309AAE66(L_3, L_1, L_2, /*hidden argument*/NULL); __this->set_mEntropySourceProvider_1(L_3); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.X931SecureRandomBuilder::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IEntropySourceProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X931SecureRandomBuilder__ctor_m15F221E9B523AA4977C5B70F7164C564FF830137 (X931SecureRandomBuilder_tF2FF9454E4C0A76A4297D2D1E0A3F1E48A85E5A7 * __this, RuntimeObject* ___entropySourceProvider0, const RuntimeMethod* method) { { // public X931SecureRandomBuilder(IEntropySourceProvider entropySourceProvider) Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); // this.mRandom = null; __this->set_mRandom_0((SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 *)NULL); // this.mEntropySourceProvider = entropySourceProvider; RuntimeObject* L_0 = ___entropySourceProvider0; __this->set_mEntropySourceProvider_1(L_0); // } return; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.X931SecureRandomBuilder BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.X931SecureRandomBuilder::SetDateTimeVector(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X931SecureRandomBuilder_tF2FF9454E4C0A76A4297D2D1E0A3F1E48A85E5A7 * X931SecureRandomBuilder_SetDateTimeVector_m03196504ACC0D1EF1D45EF8FC2C1423471B84C2B (X931SecureRandomBuilder_tF2FF9454E4C0A76A4297D2D1E0A3F1E48A85E5A7 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___dateTimeVector0, const RuntimeMethod* method) { { // this.mDateTimeVector = dateTimeVector; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___dateTimeVector0; __this->set_mDateTimeVector_2(L_0); // return this; return __this; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.X931SecureRandom BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Prng.X931SecureRandomBuilder::Build(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher,BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters.KeyParameter,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X931SecureRandom_t71D569F8B9A4EDFE82BF4FA1A5864AB8FD348935 * X931SecureRandomBuilder_Build_mFBD2CF1BEF63924C175832D5719C2AD07E42BC4B (X931SecureRandomBuilder_tF2FF9454E4C0A76A4297D2D1E0A3F1E48A85E5A7 * __this, RuntimeObject* ___engine0, KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * ___key1, 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*)&DateTimeUtilities_t648A151F813B53590155F85F0F7EE722B161873A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEntropySourceProvider_tDE331167214177ED45CF1390CC28B1BEDE00F2AD_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X931Rng_t7B9242C1A220EC8F7036A04EB335B10EE7E26800_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X931SecureRandom_t71D569F8B9A4EDFE82BF4FA1A5864AB8FD348935_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (mDateTimeVector == null) ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = __this->get_mDateTimeVector_2(); if (L_0) { goto IL_002a; } } { // mDateTimeVector = new byte[engine.GetBlockSize()]; RuntimeObject* L_1 = ___engine0; NullCheck(L_1); int32_t L_2; L_2 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::GetBlockSize() */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_1); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_3 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)L_2); __this->set_mDateTimeVector_2(L_3); // Pack.UInt64_To_BE((ulong)DateTimeUtilities.CurrentUnixMs(), mDateTimeVector, 0); IL2CPP_RUNTIME_CLASS_INIT(DateTimeUtilities_t648A151F813B53590155F85F0F7EE722B161873A_il2cpp_TypeInfo_var); int64_t L_4; L_4 = DateTimeUtilities_CurrentUnixMs_m8AB8AE654BFF0AF3CEDEFF82D3EB1FF5CD7F3030(/*hidden argument*/NULL); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_5 = __this->get_mDateTimeVector_2(); Pack_UInt64_To_BE_m6EF0A74CAAA26254B6183938E10E79998CA4EA60(L_4, L_5, 0, /*hidden argument*/NULL); } IL_002a: { // engine.Init(true, key); RuntimeObject* L_6 = ___engine0; KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * L_7 = ___key1; NullCheck(L_6); InterfaceActionInvoker2< bool, RuntimeObject* >::Invoke(1 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::Init(System.Boolean,BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ICipherParameters) */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_6, (bool)1, L_7); // return new X931SecureRandom(mRandom, new X931Rng(engine, mDateTimeVector, mEntropySourceProvider.Get(engine.GetBlockSize() * 8)), predictionResistant); SecureRandom_t9625E4D95ED6174D321E8A8CB7DA3E264B11DC28 * L_8 = __this->get_mRandom_0(); RuntimeObject* L_9 = ___engine0; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_10 = __this->get_mDateTimeVector_2(); RuntimeObject* L_11 = __this->get_mEntropySourceProvider_1(); RuntimeObject* L_12 = ___engine0; NullCheck(L_12); int32_t L_13; L_13 = InterfaceFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IBlockCipher::GetBlockSize() */, IBlockCipher_t4FA7EA6D085ACCAA4231532AE167B550195B1CAA_il2cpp_TypeInfo_var, L_12); NullCheck(L_11); RuntimeObject* L_14; L_14 = InterfaceFuncInvoker1< RuntimeObject*, int32_t >::Invoke(0 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IEntropySource BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IEntropySourceProvider::Get(System.Int32) */, IEntropySourceProvider_tDE331167214177ED45CF1390CC28B1BEDE00F2AD_il2cpp_TypeInfo_var, L_11, ((int32_t)il2cpp_codegen_multiply((int32_t)L_13, (int32_t)8))); X931Rng_t7B9242C1A220EC8F7036A04EB335B10EE7E26800 * L_15 = (X931Rng_t7B9242C1A220EC8F7036A04EB335B10EE7E26800 *)il2cpp_codegen_object_new(X931Rng_t7B9242C1A220EC8F7036A04EB335B10EE7E26800_il2cpp_TypeInfo_var); X931Rng__ctor_m356068EFD51FC25FCA6A5961A45D49C82FE04A9C(L_15, L_9, L_10, L_14, /*hidden argument*/NULL); bool L_16 = ___predictionResistant2; X931SecureRandom_t71D569F8B9A4EDFE82BF4FA1A5864AB8FD348935 * L_17 = (X931SecureRandom_t71D569F8B9A4EDFE82BF4FA1A5864AB8FD348935 *)il2cpp_codegen_object_new(X931SecureRandom_t71D569F8B9A4EDFE82BF4FA1A5864AB8FD348935_il2cpp_TypeInfo_var); X931SecureRandom__ctor_mAEDD695EBC25C436E8F87D3E425040925985EAF1(L_17, L_8, L_15, L_16, /*hidden argument*/NULL); return L_17; } } #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 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Signers.X931Signer::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IAsymmetricBlockCipher,BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IDigest,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X931Signer__ctor_m7E254D09534F8491F229938BC2AB7B08485335AE (X931Signer_t0C97B2C6A01B4D8F252321BA5CD572D7D1FF2D6B * __this, RuntimeObject* ___cipher0, RuntimeObject* ___digest1, bool ___isImplicit2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IsoTrailers_tA4B23CEB50D0726674607B15C5A68976D3577A55_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public X931Signer(IAsymmetricBlockCipher cipher, IDigest digest, bool isImplicit) Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); // this.cipher = cipher; RuntimeObject* L_0 = ___cipher0; __this->set_cipher_10(L_0); // this.digest = digest; RuntimeObject* L_1 = ___digest1; __this->set_digest_9(L_1); // if (isImplicit) bool L_2 = ___isImplicit2; if (!L_2) { goto IL_0023; } } { // trailer = IsoTrailers.TRAILER_IMPLICIT; __this->set_trailer_12(((int32_t)188)); // } return; } IL_0023: { // else if (IsoTrailers.NoTrailerAvailable(digest)) RuntimeObject* L_3 = ___digest1; IL2CPP_RUNTIME_CLASS_INIT(IsoTrailers_tA4B23CEB50D0726674607B15C5A68976D3577A55_il2cpp_TypeInfo_var); bool L_4; L_4 = IsoTrailers_NoTrailerAvailable_m553E9B3F985FC1A55A175582446DEA3512AE9761(L_3, /*hidden argument*/NULL); if (!L_4) { goto IL_003b; } } { // throw new ArgumentException("no valid trailer", "digest"); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_5 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6B2AC9CFE2D6F41D65B35B350A18C43C77B033D9)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC60811AD65D0557EF69DFB2F66D9621903D5B62A)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X931Signer__ctor_m7E254D09534F8491F229938BC2AB7B08485335AE_RuntimeMethod_var))); } IL_003b: { // trailer = IsoTrailers.GetTrailer(digest); RuntimeObject* L_6 = ___digest1; IL2CPP_RUNTIME_CLASS_INIT(IsoTrailers_tA4B23CEB50D0726674607B15C5A68976D3577A55_il2cpp_TypeInfo_var); int32_t L_7; L_7 = IsoTrailers_GetTrailer_m345EDE6E4FD1A7F3977F5B33266FC7F765B8694F(L_6, /*hidden argument*/NULL); __this->set_trailer_12(L_7); // } return; } } // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Signers.X931Signer::get_AlgorithmName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* X931Signer_get_AlgorithmName_mF709E7804644D875026EB3A15BB876DC094AB456 (X931Signer_t0C97B2C6A01B4D8F252321BA5CD572D7D1FF2D6B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IAsymmetricBlockCipher_tD85974B803F5DD17452DA8A4405647D1B2942F23_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDigest_tB278FE56BD588CA024BB5476E2A7468F836C78C6_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7B2EE195BDAC749E6440849654D6F73CDDABD46D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB6765A3F403DC14EACF320351BFC019F1605A13A); s_Il2CppMethodInitialized = true; } { // get { return digest.AlgorithmName + "with" + cipher.AlgorithmName + "/X9.31"; } RuntimeObject* L_0 = __this->get_digest_9(); NullCheck(L_0); String_t* L_1; L_1 = InterfaceFuncInvoker0< String_t* >::Invoke(0 /* System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IDigest::get_AlgorithmName() */, IDigest_tB278FE56BD588CA024BB5476E2A7468F836C78C6_il2cpp_TypeInfo_var, L_0); RuntimeObject* L_2 = __this->get_cipher_10(); NullCheck(L_2); String_t* L_3; L_3 = InterfaceFuncInvoker0< String_t* >::Invoke(0 /* System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IAsymmetricBlockCipher::get_AlgorithmName() */, IAsymmetricBlockCipher_tD85974B803F5DD17452DA8A4405647D1B2942F23_il2cpp_TypeInfo_var, L_2); String_t* L_4; L_4 = String_Concat_m37A5BF26F8F8F1892D60D727303B23FB604FEE78(L_1, _stringLiteralB6765A3F403DC14EACF320351BFC019F1605A13A, L_3, _stringLiteral7B2EE195BDAC749E6440849654D6F73CDDABD46D, /*hidden argument*/NULL); return L_4; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Signers.X931Signer::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IAsymmetricBlockCipher,BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IDigest) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X931Signer__ctor_m17A84B1437CC21C75CA01CFE02A96A9C63F75857 (X931Signer_t0C97B2C6A01B4D8F252321BA5CD572D7D1FF2D6B * __this, RuntimeObject* ___cipher0, RuntimeObject* ___digest1, const RuntimeMethod* method) { { // : this(cipher, digest, false) RuntimeObject* L_0 = ___cipher0; RuntimeObject* L_1 = ___digest1; X931Signer__ctor_m7E254D09534F8491F229938BC2AB7B08485335AE(__this, L_0, L_1, (bool)0, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Signers.X931Signer::Init(System.Boolean,BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ICipherParameters) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X931Signer_Init_m48D5751CBF74867E1172908D1AE4ADD42700EF2F (X931Signer_t0C97B2C6A01B4D8F252321BA5CD572D7D1FF2D6B * __this, bool ___forSigning0, RuntimeObject* ___parameters1, 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*)&IAsymmetricBlockCipher_tD85974B803F5DD17452DA8A4405647D1B2942F23_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RsaKeyParameters_t5CEAA6F9B92D2B6F1225DFF7C089B43146012801_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // kParam = (RsaKeyParameters)parameters; RuntimeObject* L_0 = ___parameters1; __this->set_kParam_11(((RsaKeyParameters_t5CEAA6F9B92D2B6F1225DFF7C089B43146012801 *)CastclassClass((RuntimeObject*)L_0, RsaKeyParameters_t5CEAA6F9B92D2B6F1225DFF7C089B43146012801_il2cpp_TypeInfo_var))); // cipher.Init(forSigning, kParam); RuntimeObject* L_1 = __this->get_cipher_10(); bool L_2 = ___forSigning0; RsaKeyParameters_t5CEAA6F9B92D2B6F1225DFF7C089B43146012801 * L_3 = __this->get_kParam_11(); NullCheck(L_1); InterfaceActionInvoker2< bool, RuntimeObject* >::Invoke(1 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IAsymmetricBlockCipher::Init(System.Boolean,BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ICipherParameters) */, IAsymmetricBlockCipher_tD85974B803F5DD17452DA8A4405647D1B2942F23_il2cpp_TypeInfo_var, L_1, L_2, L_3); // keyBits = kParam.Modulus.BitLength; RsaKeyParameters_t5CEAA6F9B92D2B6F1225DFF7C089B43146012801 * L_4 = __this->get_kParam_11(); NullCheck(L_4); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_5; L_5 = RsaKeyParameters_get_Modulus_m8C8BDA5DBD2FF688103C0B23BF5C7C320F31C41C_inline(L_4, /*hidden argument*/NULL); NullCheck(L_5); int32_t L_6; L_6 = BigInteger_get_BitLength_m6B5FE0A610DA07F883412F1DE1BCCFA2EED7244C(L_5, /*hidden argument*/NULL); __this->set_keyBits_13(L_6); // block = new byte[(keyBits + 7) / 8]; int32_t L_7 = __this->get_keyBits_13(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_8 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)7))/(int32_t)8))); __this->set_block_14(L_8); // Reset(); VirtualActionInvoker0::Invoke(15 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Signers.X931Signer::Reset() */, __this); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Signers.X931Signer::ClearBlock(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X931Signer_ClearBlock_mDAAE35591C27C906317E2BAE939D42EC8BE88310 (X931Signer_t0C97B2C6A01B4D8F252321BA5CD572D7D1FF2D6B * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___block0, const RuntimeMethod* method) { { // Array.Clear(block, 0, block.Length); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___block0; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = ___block0; NullCheck(L_1); Array_Clear_mEB42D172C5E0825D340F6209F28578BDDDDCE34F((RuntimeArray *)(RuntimeArray *)L_0, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length))), /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Signers.X931Signer::Update(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X931Signer_Update_m52F43B54429E7618B9CFEB503C929C7711665D85 (X931Signer_t0C97B2C6A01B4D8F252321BA5CD572D7D1FF2D6B * __this, uint8_t ___b0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDigest_tB278FE56BD588CA024BB5476E2A7468F836C78C6_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // digest.Update(b); RuntimeObject* L_0 = __this->get_digest_9(); uint8_t L_1 = ___b0; NullCheck(L_0); InterfaceActionInvoker1< uint8_t >::Invoke(3 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IDigest::Update(System.Byte) */, IDigest_tB278FE56BD588CA024BB5476E2A7468F836C78C6_il2cpp_TypeInfo_var, L_0, L_1); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Signers.X931Signer::BlockUpdate(System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X931Signer_BlockUpdate_m9DD06571C0ECE5AB47894CA6CB009DCEB5D81608 (X931Signer_t0C97B2C6A01B4D8F252321BA5CD572D7D1FF2D6B * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___input0, int32_t ___off1, int32_t ___len2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDigest_tB278FE56BD588CA024BB5476E2A7468F836C78C6_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // digest.BlockUpdate(input, off, len); RuntimeObject* L_0 = __this->get_digest_9(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = ___input0; int32_t L_2 = ___off1; int32_t L_3 = ___len2; NullCheck(L_0); InterfaceActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(4 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IDigest::BlockUpdate(System.Byte[],System.Int32,System.Int32) */, IDigest_tB278FE56BD588CA024BB5476E2A7468F836C78C6_il2cpp_TypeInfo_var, L_0, L_1, L_2, L_3); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Signers.X931Signer::Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X931Signer_Reset_mDC6520657011A1BAA0AE42CAD92E6AF8C9ABABF9 (X931Signer_t0C97B2C6A01B4D8F252321BA5CD572D7D1FF2D6B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDigest_tB278FE56BD588CA024BB5476E2A7468F836C78C6_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // digest.Reset(); RuntimeObject* L_0 = __this->get_digest_9(); NullCheck(L_0); InterfaceActionInvoker0::Invoke(6 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IDigest::Reset() */, IDigest_tB278FE56BD588CA024BB5476E2A7468F836C78C6_il2cpp_TypeInfo_var, L_0); // } return; } } // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Signers.X931Signer::GenerateSignature() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* X931Signer_GenerateSignature_m4FF9ECC5F53B7948F54F52AA4D12C8C767BFE73D (X931Signer_t0C97B2C6A01B4D8F252321BA5CD572D7D1FF2D6B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IAsymmetricBlockCipher_tD85974B803F5DD17452DA8A4405647D1B2942F23_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * V_0 = NULL; { // CreateSignatureBlock(); X931Signer_CreateSignatureBlock_mDE69037C0B1BB69E85C6F2129F966152E9EEB6E2(__this, /*hidden argument*/NULL); // BigInteger t = new BigInteger(1, cipher.ProcessBlock(block, 0, block.Length)); RuntimeObject* L_0 = __this->get_cipher_10(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = __this->get_block_14(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = __this->get_block_14(); NullCheck(L_2); NullCheck(L_0); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_3; L_3 = InterfaceFuncInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(4 /* System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IAsymmetricBlockCipher::ProcessBlock(System.Byte[],System.Int32,System.Int32) */, IAsymmetricBlockCipher_tD85974B803F5DD17452DA8A4405647D1B2942F23_il2cpp_TypeInfo_var, L_0, L_1, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_4 = (BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 *)il2cpp_codegen_object_new(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_il2cpp_TypeInfo_var); BigInteger__ctor_m2790E6F992AE637CEB82161CD2D56E1E0008F81A(L_4, 1, L_3, /*hidden argument*/NULL); V_0 = L_4; // ClearBlock(block); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_5 = __this->get_block_14(); X931Signer_ClearBlock_mDAAE35591C27C906317E2BAE939D42EC8BE88310(__this, L_5, /*hidden argument*/NULL); // t = t.Min(kParam.Modulus.Subtract(t)); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_6 = V_0; RsaKeyParameters_t5CEAA6F9B92D2B6F1225DFF7C089B43146012801 * L_7 = __this->get_kParam_11(); NullCheck(L_7); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_8; L_8 = RsaKeyParameters_get_Modulus_m8C8BDA5DBD2FF688103C0B23BF5C7C320F31C41C_inline(L_7, /*hidden argument*/NULL); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_9 = V_0; NullCheck(L_8); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_10; L_10 = BigInteger_Subtract_m533D42A73362CE69891C408AC3587038EB6B883C(L_8, L_9, /*hidden argument*/NULL); NullCheck(L_6); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_11; L_11 = BigInteger_Min_m56721C44E96B8996F79B8E42C367CC66316B52D5(L_6, L_10, /*hidden argument*/NULL); V_0 = L_11; // int size = BigIntegers.GetUnsignedByteLength(kParam.Modulus); RsaKeyParameters_t5CEAA6F9B92D2B6F1225DFF7C089B43146012801 * L_12 = __this->get_kParam_11(); NullCheck(L_12); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_13; L_13 = RsaKeyParameters_get_Modulus_m8C8BDA5DBD2FF688103C0B23BF5C7C320F31C41C_inline(L_12, /*hidden argument*/NULL); int32_t L_14; L_14 = BigIntegers_GetUnsignedByteLength_m8C4AECCC452A2F6845304DFC6FB2BFE00D276148(L_13, /*hidden argument*/NULL); // return BigIntegers.AsUnsignedByteArray(size, t); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_15 = V_0; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_16; L_16 = BigIntegers_AsUnsignedByteArray_mBECE598E3ED13CE9ED432BF265638BEF19A5B755(L_14, L_15, /*hidden argument*/NULL); return L_16; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Signers.X931Signer::CreateSignatureBlock() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X931Signer_CreateSignatureBlock_mDE69037C0B1BB69E85C6F2129F966152E9EEB6E2 (X931Signer_t0C97B2C6A01B4D8F252321BA5CD572D7D1FF2D6B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDigest_tB278FE56BD588CA024BB5476E2A7468F836C78C6_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { // int digSize = digest.GetDigestSize(); RuntimeObject* L_0 = __this->get_digest_9(); NullCheck(L_0); int32_t L_1; L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IDigest::GetDigestSize() */, IDigest_tB278FE56BD588CA024BB5476E2A7468F836C78C6_il2cpp_TypeInfo_var, L_0); V_0 = L_1; // if (trailer == IsoTrailers.TRAILER_IMPLICIT) int32_t L_2 = __this->get_trailer_12(); if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)188))))) { goto IL_0051; } } { // delta = block.Length - digSize - 1; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_3 = __this->get_block_14(); NullCheck(L_3); int32_t L_4 = V_0; V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length))), (int32_t)L_4)), (int32_t)1)); // digest.DoFinal(block, delta); RuntimeObject* L_5 = __this->get_digest_9(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_6 = __this->get_block_14(); int32_t L_7 = V_1; NullCheck(L_5); int32_t L_8; L_8 = InterfaceFuncInvoker2< int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t >::Invoke(5 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IDigest::DoFinal(System.Byte[],System.Int32) */, IDigest_tB278FE56BD588CA024BB5476E2A7468F836C78C6_il2cpp_TypeInfo_var, L_5, L_6, L_7); // block[block.Length - 1] = (byte)IsoTrailers.TRAILER_IMPLICIT; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_9 = __this->get_block_14(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_10 = __this->get_block_14(); NullCheck(L_10); NullCheck(L_9); (L_9)->SetAt(static_cast(((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length))), (int32_t)1))), (uint8_t)((int32_t)188)); // } goto IL_00a3; } IL_0051: { // delta = block.Length - digSize - 2; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_11 = __this->get_block_14(); NullCheck(L_11); int32_t L_12 = V_0; V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_11)->max_length))), (int32_t)L_12)), (int32_t)2)); // digest.DoFinal(block, delta); RuntimeObject* L_13 = __this->get_digest_9(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_14 = __this->get_block_14(); int32_t L_15 = V_1; NullCheck(L_13); int32_t L_16; L_16 = InterfaceFuncInvoker2< int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t >::Invoke(5 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IDigest::DoFinal(System.Byte[],System.Int32) */, IDigest_tB278FE56BD588CA024BB5476E2A7468F836C78C6_il2cpp_TypeInfo_var, L_13, L_14, L_15); // block[block.Length - 2] = (byte)(trailer >> 8); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_17 = __this->get_block_14(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_18 = __this->get_block_14(); NullCheck(L_18); int32_t L_19 = __this->get_trailer_12(); NullCheck(L_17); (L_17)->SetAt(static_cast(((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_18)->max_length))), (int32_t)2))), (uint8_t)((int32_t)((uint8_t)((int32_t)((int32_t)L_19>>(int32_t)8))))); // block[block.Length - 1] = (byte)trailer; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_20 = __this->get_block_14(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_21 = __this->get_block_14(); NullCheck(L_21); int32_t L_22 = __this->get_trailer_12(); NullCheck(L_20); (L_20)->SetAt(static_cast(((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_21)->max_length))), (int32_t)1))), (uint8_t)((int32_t)((uint8_t)L_22))); } IL_00a3: { // block[0] = 0x6b; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_23 = __this->get_block_14(); NullCheck(L_23); (L_23)->SetAt(static_cast(0), (uint8_t)((int32_t)107)); // for (int i = delta - 2; i != 0; i--) int32_t L_24 = V_1; V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_24, (int32_t)2)); goto IL_00c4; } IL_00b3: { // block[i] = (byte)0xbb; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_25 = __this->get_block_14(); int32_t L_26 = V_2; NullCheck(L_25); (L_25)->SetAt(static_cast(L_26), (uint8_t)((int32_t)187)); // for (int i = delta - 2; i != 0; i--) int32_t L_27 = V_2; V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_27, (int32_t)1)); } IL_00c4: { // for (int i = delta - 2; i != 0; i--) int32_t L_28 = V_2; if (L_28) { goto IL_00b3; } } { // block[delta - 1] = (byte)0xba; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_29 = __this->get_block_14(); int32_t L_30 = V_1; NullCheck(L_29); (L_29)->SetAt(static_cast(((int32_t)il2cpp_codegen_subtract((int32_t)L_30, (int32_t)1))), (uint8_t)((int32_t)186)); // } return; } } // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Signers.X931Signer::VerifySignature(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool X931Signer_VerifySignature_mBE5D3017EE1A55FA273AAD881742EC8210B6D2AE (X931Signer_t0C97B2C6A01B4D8F252321BA5CD572D7D1FF2D6B * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___signature0, 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*)&BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IAsymmetricBlockCipher_tD85974B803F5DD17452DA8A4405647D1B2942F23_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * V_0 = NULL; BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * V_1 = NULL; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_2 = NULL; bool V_3 = false; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; IL_0000: try {// begin try (depth: 1) // block = cipher.ProcessBlock(signature, 0, signature.Length); RuntimeObject* L_0 = __this->get_cipher_10(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = ___signature0; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = ___signature0; NullCheck(L_2); NullCheck(L_0); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_3; L_3 = InterfaceFuncInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(4 /* System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.IAsymmetricBlockCipher::ProcessBlock(System.Byte[],System.Int32,System.Int32) */, IAsymmetricBlockCipher_tD85974B803F5DD17452DA8A4405647D1B2942F23_il2cpp_TypeInfo_var, L_0, L_1, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))); __this->set_block_14(L_3); // } goto IL_001d; }// 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_0018; } throw e; } CATCH_0018: {// begin catch(System.Exception) // catch (Exception) // return false; V_3 = (bool)0; IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_0095; }// end catch (depth: 1) IL_001d: { // BigInteger t = new BigInteger(1, block); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = __this->get_block_14(); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_5 = (BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 *)il2cpp_codegen_object_new(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_il2cpp_TypeInfo_var); BigInteger__ctor_m2790E6F992AE637CEB82161CD2D56E1E0008F81A(L_5, 1, L_4, /*hidden argument*/NULL); V_0 = L_5; // if ((t.IntValue & 15) == 12) BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_6 = V_0; NullCheck(L_6); int32_t L_7; L_7 = BigInteger_get_IntValue_m6386348CAE8E75A68124AD1F36F497FC551F8144(L_6, /*hidden argument*/NULL); if ((!(((uint32_t)((int32_t)((int32_t)L_7&(int32_t)((int32_t)15)))) == ((uint32_t)((int32_t)12))))) { goto IL_003b; } } { // f = t; BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_8 = V_0; V_1 = L_8; // } goto IL_0060; } IL_003b: { // t = kParam.Modulus.Subtract(t); RsaKeyParameters_t5CEAA6F9B92D2B6F1225DFF7C089B43146012801 * L_9 = __this->get_kParam_11(); NullCheck(L_9); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_10; L_10 = RsaKeyParameters_get_Modulus_m8C8BDA5DBD2FF688103C0B23BF5C7C320F31C41C_inline(L_9, /*hidden argument*/NULL); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_11 = V_0; NullCheck(L_10); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_12; L_12 = BigInteger_Subtract_m533D42A73362CE69891C408AC3587038EB6B883C(L_10, L_11, /*hidden argument*/NULL); V_0 = L_12; // if ((t.IntValue & 15) == 12) BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_13 = V_0; NullCheck(L_13); int32_t L_14; L_14 = BigInteger_get_IntValue_m6386348CAE8E75A68124AD1F36F497FC551F8144(L_13, /*hidden argument*/NULL); if ((!(((uint32_t)((int32_t)((int32_t)L_14&(int32_t)((int32_t)15)))) == ((uint32_t)((int32_t)12))))) { goto IL_005e; } } { // f = t; BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_15 = V_0; V_1 = L_15; // } goto IL_0060; } IL_005e: { // return false; return (bool)0; } IL_0060: { // CreateSignatureBlock(); X931Signer_CreateSignatureBlock_mDE69037C0B1BB69E85C6F2129F966152E9EEB6E2(__this, /*hidden argument*/NULL); // byte[] fBlock = BigIntegers.AsUnsignedByteArray(block.Length, f); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_16 = __this->get_block_14(); NullCheck(L_16); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_17 = V_1; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_18; L_18 = BigIntegers_AsUnsignedByteArray_mBECE598E3ED13CE9ED432BF265638BEF19A5B755(((int32_t)((int32_t)(((RuntimeArray*)L_16)->max_length))), L_17, /*hidden argument*/NULL); V_2 = L_18; // bool rv = Arrays.ConstantTimeAreEqual(block, fBlock); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_19 = __this->get_block_14(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_20 = V_2; IL2CPP_RUNTIME_CLASS_INIT(Arrays_t7CFD09DA7425047721E193958DAC5AB0FCFF67BF_il2cpp_TypeInfo_var); bool L_21; L_21 = Arrays_ConstantTimeAreEqual_mA8B0D8A56AE0903D0723D146FD1777A01E2014E4(L_19, L_20, /*hidden argument*/NULL); // ClearBlock(block); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_22 = __this->get_block_14(); X931Signer_ClearBlock_mDAAE35591C27C906317E2BAE939D42EC8BE88310(__this, L_22, /*hidden argument*/NULL); // ClearBlock(fBlock); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_23 = V_2; X931Signer_ClearBlock_mDAAE35591C27C906317E2BAE939D42EC8BE88310(__this, L_23, /*hidden argument*/NULL); // return rv; return L_21; } IL_0095: { // } bool L_24 = V_3; return L_24; } } #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 BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X962NamedCurves__ctor_mE06DAFB11DA17DB2EF4D799B85931A2C63DC99CF (X962NamedCurves_tBB2BFD74E2BCFB26E51F7D9F5BD8F9AF6C4E610C * __this, const RuntimeMethod* method) { { // private X962NamedCurves() Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves::DefineCurve(System.String,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParametersHolder) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X962NamedCurves_DefineCurve_m7719C80600358F3811B56362D2793DB639FBED72 (String_t* ___name0, DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___oid1, X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * ___holder2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X962NamedCurves_tBB2BFD74E2BCFB26E51F7D9F5BD8F9AF6C4E610C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // objIds.Add(BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.ToUpperInvariant(name), oid); IL2CPP_RUNTIME_CLASS_INIT(X962NamedCurves_tBB2BFD74E2BCFB26E51F7D9F5BD8F9AF6C4E610C_il2cpp_TypeInfo_var); RuntimeObject* L_0 = ((X962NamedCurves_tBB2BFD74E2BCFB26E51F7D9F5BD8F9AF6C4E610C_StaticFields*)il2cpp_codegen_static_fields_for(X962NamedCurves_tBB2BFD74E2BCFB26E51F7D9F5BD8F9AF6C4E610C_il2cpp_TypeInfo_var))->get_objIds_0(); String_t* L_1 = ___name0; IL2CPP_RUNTIME_CLASS_INIT(Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var); String_t* L_2; L_2 = Platform_ToUpperInvariant_m306E35263EC9F3B4FE0722C3173BAAFDB1B3E158(L_1, /*hidden argument*/NULL); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_3 = ___oid1; NullCheck(L_0); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_0, L_2, L_3); // names.Add(oid, name); RuntimeObject* L_4 = ((X962NamedCurves_tBB2BFD74E2BCFB26E51F7D9F5BD8F9AF6C4E610C_StaticFields*)il2cpp_codegen_static_fields_for(X962NamedCurves_tBB2BFD74E2BCFB26E51F7D9F5BD8F9AF6C4E610C_il2cpp_TypeInfo_var))->get_names_2(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_5 = ___oid1; String_t* L_6 = ___name0; NullCheck(L_4); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_4, L_5, L_6); // curves.Add(oid, holder); RuntimeObject* L_7 = ((X962NamedCurves_tBB2BFD74E2BCFB26E51F7D9F5BD8F9AF6C4E610C_StaticFields*)il2cpp_codegen_static_fields_for(X962NamedCurves_tBB2BFD74E2BCFB26E51F7D9F5BD8F9AF6C4E610C_il2cpp_TypeInfo_var))->get_curves_1(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_8 = ___oid1; X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * L_9 = ___holder2; NullCheck(L_7); InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(5 /* System.Void System.Collections.IDictionary::Add(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_7, L_8, L_9); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X962NamedCurves__cctor_mC69E97C793E0F39D180991D46330B35E929E0611 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&C2pnb163v1Holder_t14404B5C4F247A6FC55F523428FEAE71BD17356E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&C2pnb163v2Holder_t4024F93EAAA6797CB7971874C3317CB2A1D30B51_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&C2pnb163v3Holder_t1C07A36DEFFB5AB9856D1F4FF36DD90BFFF98D2D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&C2pnb176w1Holder_tBEF5160BAD0DB37BA6D68F7652D63D100BCB0FA9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&C2pnb208w1Holder_tE2F80B7558866023258E8CBC01B139962E8255F8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&C2pnb272w1Holder_tCD74D325AAA8916FFECBC5948276D3A64BF83B7E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&C2pnb304w1Holder_t27D27503DAB760C2417A929CFF0D295E8B4C21AC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&C2pnb368w1Holder_tCFEE7AD795ADDE9FA7099095984035BF603EF526_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&C2tnb191v1Holder_tDC5C03DB24B41228D59938EB78416A87ECD6F282_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&C2tnb191v2Holder_tAB6EC306E891B275CB0C71D3EDA6BA346904E674_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&C2tnb191v3Holder_tE37AA2BE610F1E5FC1335A58B06C407C0F891584_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&C2tnb239v1Holder_t8B4686F28C4A8771FE0CBA85A8A3EC9E30FD499A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&C2tnb239v2Holder_tA4E988012BF3EA5F2CD89187D47B2908DDB47EAD_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&C2tnb239v3Holder_t4B94D7A891E3046E3690DA34860C17C40B947604_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&C2tnb359v1Holder_tDAF3A97122802D04EC904C5416B7E02C267FD2A6_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&C2tnb431r1Holder_tE2F8B784758E3C2B77A17A464C69D212F357A2CA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Prime192v1Holder_t43C50E88A5EF475977296B3AE5F66499ADADADF0_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Prime192v2Holder_tE9D04436BCAC89FF0ECCBCD0FCADA8933DADDC30_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Prime192v3Holder_t28351D53441067C55ABCAD0C8243164988CB226D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Prime239v1Holder_t105BAABEE61136A694461EB7BF72FCEE62E72A4E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Prime239v2Holder_tB1B1A0EF22267E909203936B1964E4458F7FDAE8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Prime239v3Holder_t16E1A407861C84C0A7F7ECCB571B84D5B6AFA1F7_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Prime256v1Holder_tDC56A4ECD9A19F80AA476CA23F85B69C29E2D57E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X962NamedCurves_tBB2BFD74E2BCFB26E51F7D9F5BD8F9AF6C4E610C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral03A22D2949FD2326A177E5C99A250EB95B8D6FBA); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0F0049B7E5A6666DD84454AA082984FE5BDFF948); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral191CC63A85897671780393FA3266BF6F658D4111); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral228B48E1A9A3F026BD0FDFCC1C31D0FA2AF44767); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral29D6C5E594BD686D07CE8241383224FD09EAF4B0); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral48F748BEDF1BBDC3AC0D68E6CD9DDD2A2B1EFFC0); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4A9003876B2369E378E58E064047EEA2FC1969EE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4D1DBF1A17F5789AFEF860392403A3538393B6F1); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4ED82D35A56DDE609C2E1DD0307D565E2D4D2D6D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4FDC7FB7C422A052CB76D274DFDEBA76C8127E6D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5A32E41FF6844BFD07B06337D464958F14B832C5); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5D25D48E4A8C1FBE3AA0B744867D20DC87685419); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral618D14E62AC3BD00FA4A1C3217EAFA621FD629A6); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral637247DE4248B012DD7877FC9F9C7F3B3F024DF3); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6B278DFEDC0223E2D824E4EF55F9B4F79CD9AFCE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral790562C2B0CF75907073DD8438EA8FA7AF1B8D9E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8D6C301F7F9BEB27A65180FC3B3E5F7487F3383D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9208EF708351490ACDEE32FF93FCEF860D7FC47F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9B9CCB190BE9B31C27B26944C213095BD83A4032); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9D449255DADFB9B9614756478DEF9529E8C90FF2); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9EE1A72192464AF687D8F00523F17A91657278EE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD6ADF19E4F79C19E3F5D5806BA6D4AF4E5A6E68D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA492D95C1D553FB766B5566E22DDAA59E901970); s_Il2CppMethodInitialized = true; } { // private static readonly IDictionary objIds = BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.CreateHashtable(); IL2CPP_RUNTIME_CLASS_INIT(Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var); RuntimeObject* L_0; L_0 = Platform_CreateHashtable_mC95944AF156429BA5DCBC1173539FC65A7782B06(/*hidden argument*/NULL); ((X962NamedCurves_tBB2BFD74E2BCFB26E51F7D9F5BD8F9AF6C4E610C_StaticFields*)il2cpp_codegen_static_fields_for(X962NamedCurves_tBB2BFD74E2BCFB26E51F7D9F5BD8F9AF6C4E610C_il2cpp_TypeInfo_var))->set_objIds_0(L_0); // private static readonly IDictionary curves = BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.CreateHashtable(); RuntimeObject* L_1; L_1 = Platform_CreateHashtable_mC95944AF156429BA5DCBC1173539FC65A7782B06(/*hidden argument*/NULL); ((X962NamedCurves_tBB2BFD74E2BCFB26E51F7D9F5BD8F9AF6C4E610C_StaticFields*)il2cpp_codegen_static_fields_for(X962NamedCurves_tBB2BFD74E2BCFB26E51F7D9F5BD8F9AF6C4E610C_il2cpp_TypeInfo_var))->set_curves_1(L_1); // private static readonly IDictionary names = BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.CreateHashtable(); RuntimeObject* L_2; L_2 = Platform_CreateHashtable_mC95944AF156429BA5DCBC1173539FC65A7782B06(/*hidden argument*/NULL); ((X962NamedCurves_tBB2BFD74E2BCFB26E51F7D9F5BD8F9AF6C4E610C_StaticFields*)il2cpp_codegen_static_fields_for(X962NamedCurves_tBB2BFD74E2BCFB26E51F7D9F5BD8F9AF6C4E610C_il2cpp_TypeInfo_var))->set_names_2(L_2); // DefineCurve("prime192v1", X9ObjectIdentifiers.Prime192v1, Prime192v1Holder.Instance); IL2CPP_RUNTIME_CLASS_INIT(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_3 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_Prime192v1_42(); IL2CPP_RUNTIME_CLASS_INIT(Prime192v1Holder_t43C50E88A5EF475977296B3AE5F66499ADADADF0_il2cpp_TypeInfo_var); X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * L_4 = ((Prime192v1Holder_t43C50E88A5EF475977296B3AE5F66499ADADADF0_StaticFields*)il2cpp_codegen_static_fields_for(Prime192v1Holder_t43C50E88A5EF475977296B3AE5F66499ADADADF0_il2cpp_TypeInfo_var))->get_Instance_1(); X962NamedCurves_DefineCurve_m7719C80600358F3811B56362D2793DB639FBED72(_stringLiteral0F0049B7E5A6666DD84454AA082984FE5BDFF948, L_3, L_4, /*hidden argument*/NULL); // DefineCurve("prime192v2", X9ObjectIdentifiers.Prime192v2, Prime192v2Holder.Instance); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_5 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_Prime192v2_43(); IL2CPP_RUNTIME_CLASS_INIT(Prime192v2Holder_tE9D04436BCAC89FF0ECCBCD0FCADA8933DADDC30_il2cpp_TypeInfo_var); X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * L_6 = ((Prime192v2Holder_tE9D04436BCAC89FF0ECCBCD0FCADA8933DADDC30_StaticFields*)il2cpp_codegen_static_fields_for(Prime192v2Holder_tE9D04436BCAC89FF0ECCBCD0FCADA8933DADDC30_il2cpp_TypeInfo_var))->get_Instance_1(); X962NamedCurves_DefineCurve_m7719C80600358F3811B56362D2793DB639FBED72(_stringLiteral5D25D48E4A8C1FBE3AA0B744867D20DC87685419, L_5, L_6, /*hidden argument*/NULL); // DefineCurve("prime192v3", X9ObjectIdentifiers.Prime192v3, Prime192v3Holder.Instance); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_7 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_Prime192v3_44(); IL2CPP_RUNTIME_CLASS_INIT(Prime192v3Holder_t28351D53441067C55ABCAD0C8243164988CB226D_il2cpp_TypeInfo_var); X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * L_8 = ((Prime192v3Holder_t28351D53441067C55ABCAD0C8243164988CB226D_StaticFields*)il2cpp_codegen_static_fields_for(Prime192v3Holder_t28351D53441067C55ABCAD0C8243164988CB226D_il2cpp_TypeInfo_var))->get_Instance_1(); X962NamedCurves_DefineCurve_m7719C80600358F3811B56362D2793DB639FBED72(_stringLiteralD6ADF19E4F79C19E3F5D5806BA6D4AF4E5A6E68D, L_7, L_8, /*hidden argument*/NULL); // DefineCurve("prime239v1", X9ObjectIdentifiers.Prime239v1, Prime239v1Holder.Instance); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_9 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_Prime239v1_45(); IL2CPP_RUNTIME_CLASS_INIT(Prime239v1Holder_t105BAABEE61136A694461EB7BF72FCEE62E72A4E_il2cpp_TypeInfo_var); X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * L_10 = ((Prime239v1Holder_t105BAABEE61136A694461EB7BF72FCEE62E72A4E_StaticFields*)il2cpp_codegen_static_fields_for(Prime239v1Holder_t105BAABEE61136A694461EB7BF72FCEE62E72A4E_il2cpp_TypeInfo_var))->get_Instance_1(); X962NamedCurves_DefineCurve_m7719C80600358F3811B56362D2793DB639FBED72(_stringLiteral790562C2B0CF75907073DD8438EA8FA7AF1B8D9E, L_9, L_10, /*hidden argument*/NULL); // DefineCurve("prime239v2", X9ObjectIdentifiers.Prime239v2, Prime239v2Holder.Instance); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_11 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_Prime239v2_46(); IL2CPP_RUNTIME_CLASS_INIT(Prime239v2Holder_tB1B1A0EF22267E909203936B1964E4458F7FDAE8_il2cpp_TypeInfo_var); X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * L_12 = ((Prime239v2Holder_tB1B1A0EF22267E909203936B1964E4458F7FDAE8_StaticFields*)il2cpp_codegen_static_fields_for(Prime239v2Holder_tB1B1A0EF22267E909203936B1964E4458F7FDAE8_il2cpp_TypeInfo_var))->get_Instance_1(); X962NamedCurves_DefineCurve_m7719C80600358F3811B56362D2793DB639FBED72(_stringLiteral29D6C5E594BD686D07CE8241383224FD09EAF4B0, L_11, L_12, /*hidden argument*/NULL); // DefineCurve("prime239v3", X9ObjectIdentifiers.Prime239v3, Prime239v3Holder.Instance); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_13 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_Prime239v3_47(); IL2CPP_RUNTIME_CLASS_INIT(Prime239v3Holder_t16E1A407861C84C0A7F7ECCB571B84D5B6AFA1F7_il2cpp_TypeInfo_var); X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * L_14 = ((Prime239v3Holder_t16E1A407861C84C0A7F7ECCB571B84D5B6AFA1F7_StaticFields*)il2cpp_codegen_static_fields_for(Prime239v3Holder_t16E1A407861C84C0A7F7ECCB571B84D5B6AFA1F7_il2cpp_TypeInfo_var))->get_Instance_1(); X962NamedCurves_DefineCurve_m7719C80600358F3811B56362D2793DB639FBED72(_stringLiteral4FDC7FB7C422A052CB76D274DFDEBA76C8127E6D, L_13, L_14, /*hidden argument*/NULL); // DefineCurve("prime256v1", X9ObjectIdentifiers.Prime256v1, Prime256v1Holder.Instance); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_15 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_Prime256v1_48(); IL2CPP_RUNTIME_CLASS_INIT(Prime256v1Holder_tDC56A4ECD9A19F80AA476CA23F85B69C29E2D57E_il2cpp_TypeInfo_var); X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * L_16 = ((Prime256v1Holder_tDC56A4ECD9A19F80AA476CA23F85B69C29E2D57E_StaticFields*)il2cpp_codegen_static_fields_for(Prime256v1Holder_tDC56A4ECD9A19F80AA476CA23F85B69C29E2D57E_il2cpp_TypeInfo_var))->get_Instance_1(); X962NamedCurves_DefineCurve_m7719C80600358F3811B56362D2793DB639FBED72(_stringLiteral4A9003876B2369E378E58E064047EEA2FC1969EE, L_15, L_16, /*hidden argument*/NULL); // DefineCurve("c2pnb163v1", X9ObjectIdentifiers.C2Pnb163v1, C2pnb163v1Holder.Instance); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_17 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_C2Pnb163v1_21(); IL2CPP_RUNTIME_CLASS_INIT(C2pnb163v1Holder_t14404B5C4F247A6FC55F523428FEAE71BD17356E_il2cpp_TypeInfo_var); X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * L_18 = ((C2pnb163v1Holder_t14404B5C4F247A6FC55F523428FEAE71BD17356E_StaticFields*)il2cpp_codegen_static_fields_for(C2pnb163v1Holder_t14404B5C4F247A6FC55F523428FEAE71BD17356E_il2cpp_TypeInfo_var))->get_Instance_1(); X962NamedCurves_DefineCurve_m7719C80600358F3811B56362D2793DB639FBED72(_stringLiteral5A32E41FF6844BFD07B06337D464958F14B832C5, L_17, L_18, /*hidden argument*/NULL); // DefineCurve("c2pnb163v2", X9ObjectIdentifiers.C2Pnb163v2, C2pnb163v2Holder.Instance); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_19 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_C2Pnb163v2_22(); IL2CPP_RUNTIME_CLASS_INIT(C2pnb163v2Holder_t4024F93EAAA6797CB7971874C3317CB2A1D30B51_il2cpp_TypeInfo_var); X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * L_20 = ((C2pnb163v2Holder_t4024F93EAAA6797CB7971874C3317CB2A1D30B51_StaticFields*)il2cpp_codegen_static_fields_for(C2pnb163v2Holder_t4024F93EAAA6797CB7971874C3317CB2A1D30B51_il2cpp_TypeInfo_var))->get_Instance_1(); X962NamedCurves_DefineCurve_m7719C80600358F3811B56362D2793DB639FBED72(_stringLiteralDA492D95C1D553FB766B5566E22DDAA59E901970, L_19, L_20, /*hidden argument*/NULL); // DefineCurve("c2pnb163v3", X9ObjectIdentifiers.C2Pnb163v3, C2pnb163v3Holder.Instance); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_21 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_C2Pnb163v3_23(); IL2CPP_RUNTIME_CLASS_INIT(C2pnb163v3Holder_t1C07A36DEFFB5AB9856D1F4FF36DD90BFFF98D2D_il2cpp_TypeInfo_var); X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * L_22 = ((C2pnb163v3Holder_t1C07A36DEFFB5AB9856D1F4FF36DD90BFFF98D2D_StaticFields*)il2cpp_codegen_static_fields_for(C2pnb163v3Holder_t1C07A36DEFFB5AB9856D1F4FF36DD90BFFF98D2D_il2cpp_TypeInfo_var))->get_Instance_1(); X962NamedCurves_DefineCurve_m7719C80600358F3811B56362D2793DB639FBED72(_stringLiteral191CC63A85897671780393FA3266BF6F658D4111, L_21, L_22, /*hidden argument*/NULL); // DefineCurve("c2pnb176w1", X9ObjectIdentifiers.C2Pnb176w1, C2pnb176w1Holder.Instance); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_23 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_C2Pnb176w1_24(); IL2CPP_RUNTIME_CLASS_INIT(C2pnb176w1Holder_tBEF5160BAD0DB37BA6D68F7652D63D100BCB0FA9_il2cpp_TypeInfo_var); X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * L_24 = ((C2pnb176w1Holder_tBEF5160BAD0DB37BA6D68F7652D63D100BCB0FA9_StaticFields*)il2cpp_codegen_static_fields_for(C2pnb176w1Holder_tBEF5160BAD0DB37BA6D68F7652D63D100BCB0FA9_il2cpp_TypeInfo_var))->get_Instance_1(); X962NamedCurves_DefineCurve_m7719C80600358F3811B56362D2793DB639FBED72(_stringLiteral9208EF708351490ACDEE32FF93FCEF860D7FC47F, L_23, L_24, /*hidden argument*/NULL); // DefineCurve("c2tnb191v1", X9ObjectIdentifiers.C2Tnb191v1, C2tnb191v1Holder.Instance); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_25 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_C2Tnb191v1_25(); IL2CPP_RUNTIME_CLASS_INIT(C2tnb191v1Holder_tDC5C03DB24B41228D59938EB78416A87ECD6F282_il2cpp_TypeInfo_var); X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * L_26 = ((C2tnb191v1Holder_tDC5C03DB24B41228D59938EB78416A87ECD6F282_StaticFields*)il2cpp_codegen_static_fields_for(C2tnb191v1Holder_tDC5C03DB24B41228D59938EB78416A87ECD6F282_il2cpp_TypeInfo_var))->get_Instance_1(); X962NamedCurves_DefineCurve_m7719C80600358F3811B56362D2793DB639FBED72(_stringLiteral4ED82D35A56DDE609C2E1DD0307D565E2D4D2D6D, L_25, L_26, /*hidden argument*/NULL); // DefineCurve("c2tnb191v2", X9ObjectIdentifiers.C2Tnb191v2, C2tnb191v2Holder.Instance); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_27 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_C2Tnb191v2_26(); IL2CPP_RUNTIME_CLASS_INIT(C2tnb191v2Holder_tAB6EC306E891B275CB0C71D3EDA6BA346904E674_il2cpp_TypeInfo_var); X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * L_28 = ((C2tnb191v2Holder_tAB6EC306E891B275CB0C71D3EDA6BA346904E674_StaticFields*)il2cpp_codegen_static_fields_for(C2tnb191v2Holder_tAB6EC306E891B275CB0C71D3EDA6BA346904E674_il2cpp_TypeInfo_var))->get_Instance_1(); X962NamedCurves_DefineCurve_m7719C80600358F3811B56362D2793DB639FBED72(_stringLiteral6B278DFEDC0223E2D824E4EF55F9B4F79CD9AFCE, L_27, L_28, /*hidden argument*/NULL); // DefineCurve("c2tnb191v3", X9ObjectIdentifiers.C2Tnb191v3, C2tnb191v3Holder.Instance); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_29 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_C2Tnb191v3_27(); IL2CPP_RUNTIME_CLASS_INIT(C2tnb191v3Holder_tE37AA2BE610F1E5FC1335A58B06C407C0F891584_il2cpp_TypeInfo_var); X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * L_30 = ((C2tnb191v3Holder_tE37AA2BE610F1E5FC1335A58B06C407C0F891584_StaticFields*)il2cpp_codegen_static_fields_for(C2tnb191v3Holder_tE37AA2BE610F1E5FC1335A58B06C407C0F891584_il2cpp_TypeInfo_var))->get_Instance_1(); X962NamedCurves_DefineCurve_m7719C80600358F3811B56362D2793DB639FBED72(_stringLiteral228B48E1A9A3F026BD0FDFCC1C31D0FA2AF44767, L_29, L_30, /*hidden argument*/NULL); // DefineCurve("c2pnb208w1", X9ObjectIdentifiers.C2Pnb208w1, C2pnb208w1Holder.Instance); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_31 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_C2Pnb208w1_30(); IL2CPP_RUNTIME_CLASS_INIT(C2pnb208w1Holder_tE2F80B7558866023258E8CBC01B139962E8255F8_il2cpp_TypeInfo_var); X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * L_32 = ((C2pnb208w1Holder_tE2F80B7558866023258E8CBC01B139962E8255F8_StaticFields*)il2cpp_codegen_static_fields_for(C2pnb208w1Holder_tE2F80B7558866023258E8CBC01B139962E8255F8_il2cpp_TypeInfo_var))->get_Instance_1(); X962NamedCurves_DefineCurve_m7719C80600358F3811B56362D2793DB639FBED72(_stringLiteral03A22D2949FD2326A177E5C99A250EB95B8D6FBA, L_31, L_32, /*hidden argument*/NULL); // DefineCurve("c2tnb239v1", X9ObjectIdentifiers.C2Tnb239v1, C2tnb239v1Holder.Instance); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_33 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_C2Tnb239v1_31(); IL2CPP_RUNTIME_CLASS_INIT(C2tnb239v1Holder_t8B4686F28C4A8771FE0CBA85A8A3EC9E30FD499A_il2cpp_TypeInfo_var); X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * L_34 = ((C2tnb239v1Holder_t8B4686F28C4A8771FE0CBA85A8A3EC9E30FD499A_StaticFields*)il2cpp_codegen_static_fields_for(C2tnb239v1Holder_t8B4686F28C4A8771FE0CBA85A8A3EC9E30FD499A_il2cpp_TypeInfo_var))->get_Instance_1(); X962NamedCurves_DefineCurve_m7719C80600358F3811B56362D2793DB639FBED72(_stringLiteral637247DE4248B012DD7877FC9F9C7F3B3F024DF3, L_33, L_34, /*hidden argument*/NULL); // DefineCurve("c2tnb239v2", X9ObjectIdentifiers.C2Tnb239v2, C2tnb239v2Holder.Instance); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_35 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_C2Tnb239v2_32(); IL2CPP_RUNTIME_CLASS_INIT(C2tnb239v2Holder_tA4E988012BF3EA5F2CD89187D47B2908DDB47EAD_il2cpp_TypeInfo_var); X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * L_36 = ((C2tnb239v2Holder_tA4E988012BF3EA5F2CD89187D47B2908DDB47EAD_StaticFields*)il2cpp_codegen_static_fields_for(C2tnb239v2Holder_tA4E988012BF3EA5F2CD89187D47B2908DDB47EAD_il2cpp_TypeInfo_var))->get_Instance_1(); X962NamedCurves_DefineCurve_m7719C80600358F3811B56362D2793DB639FBED72(_stringLiteral4D1DBF1A17F5789AFEF860392403A3538393B6F1, L_35, L_36, /*hidden argument*/NULL); // DefineCurve("c2tnb239v3", X9ObjectIdentifiers.C2Tnb239v3, C2tnb239v3Holder.Instance); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_37 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_C2Tnb239v3_33(); IL2CPP_RUNTIME_CLASS_INIT(C2tnb239v3Holder_t4B94D7A891E3046E3690DA34860C17C40B947604_il2cpp_TypeInfo_var); X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * L_38 = ((C2tnb239v3Holder_t4B94D7A891E3046E3690DA34860C17C40B947604_StaticFields*)il2cpp_codegen_static_fields_for(C2tnb239v3Holder_t4B94D7A891E3046E3690DA34860C17C40B947604_il2cpp_TypeInfo_var))->get_Instance_1(); X962NamedCurves_DefineCurve_m7719C80600358F3811B56362D2793DB639FBED72(_stringLiteral9D449255DADFB9B9614756478DEF9529E8C90FF2, L_37, L_38, /*hidden argument*/NULL); // DefineCurve("c2pnb272w1", X9ObjectIdentifiers.C2Pnb272w1, C2pnb272w1Holder.Instance); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_39 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_C2Pnb272w1_36(); IL2CPP_RUNTIME_CLASS_INIT(C2pnb272w1Holder_tCD74D325AAA8916FFECBC5948276D3A64BF83B7E_il2cpp_TypeInfo_var); X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * L_40 = ((C2pnb272w1Holder_tCD74D325AAA8916FFECBC5948276D3A64BF83B7E_StaticFields*)il2cpp_codegen_static_fields_for(C2pnb272w1Holder_tCD74D325AAA8916FFECBC5948276D3A64BF83B7E_il2cpp_TypeInfo_var))->get_Instance_1(); X962NamedCurves_DefineCurve_m7719C80600358F3811B56362D2793DB639FBED72(_stringLiteral618D14E62AC3BD00FA4A1C3217EAFA621FD629A6, L_39, L_40, /*hidden argument*/NULL); // DefineCurve("c2pnb304w1", X9ObjectIdentifiers.C2Pnb304w1, C2pnb304w1Holder.Instance); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_41 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_C2Pnb304w1_37(); IL2CPP_RUNTIME_CLASS_INIT(C2pnb304w1Holder_t27D27503DAB760C2417A929CFF0D295E8B4C21AC_il2cpp_TypeInfo_var); X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * L_42 = ((C2pnb304w1Holder_t27D27503DAB760C2417A929CFF0D295E8B4C21AC_StaticFields*)il2cpp_codegen_static_fields_for(C2pnb304w1Holder_t27D27503DAB760C2417A929CFF0D295E8B4C21AC_il2cpp_TypeInfo_var))->get_Instance_1(); X962NamedCurves_DefineCurve_m7719C80600358F3811B56362D2793DB639FBED72(_stringLiteral9EE1A72192464AF687D8F00523F17A91657278EE, L_41, L_42, /*hidden argument*/NULL); // DefineCurve("c2tnb359v1", X9ObjectIdentifiers.C2Tnb359v1, C2tnb359v1Holder.Instance); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_43 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_C2Tnb359v1_38(); IL2CPP_RUNTIME_CLASS_INIT(C2tnb359v1Holder_tDAF3A97122802D04EC904C5416B7E02C267FD2A6_il2cpp_TypeInfo_var); X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * L_44 = ((C2tnb359v1Holder_tDAF3A97122802D04EC904C5416B7E02C267FD2A6_StaticFields*)il2cpp_codegen_static_fields_for(C2tnb359v1Holder_tDAF3A97122802D04EC904C5416B7E02C267FD2A6_il2cpp_TypeInfo_var))->get_Instance_1(); X962NamedCurves_DefineCurve_m7719C80600358F3811B56362D2793DB639FBED72(_stringLiteral48F748BEDF1BBDC3AC0D68E6CD9DDD2A2B1EFFC0, L_43, L_44, /*hidden argument*/NULL); // DefineCurve("c2pnb368w1", X9ObjectIdentifiers.C2Pnb368w1, C2pnb368w1Holder.Instance); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_45 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_C2Pnb368w1_39(); IL2CPP_RUNTIME_CLASS_INIT(C2pnb368w1Holder_tCFEE7AD795ADDE9FA7099095984035BF603EF526_il2cpp_TypeInfo_var); X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * L_46 = ((C2pnb368w1Holder_tCFEE7AD795ADDE9FA7099095984035BF603EF526_StaticFields*)il2cpp_codegen_static_fields_for(C2pnb368w1Holder_tCFEE7AD795ADDE9FA7099095984035BF603EF526_il2cpp_TypeInfo_var))->get_Instance_1(); X962NamedCurves_DefineCurve_m7719C80600358F3811B56362D2793DB639FBED72(_stringLiteral9B9CCB190BE9B31C27B26944C213095BD83A4032, L_45, L_46, /*hidden argument*/NULL); // DefineCurve("c2tnb431r1", X9ObjectIdentifiers.C2Tnb431r1, C2tnb431r1Holder.Instance); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_47 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_C2Tnb431r1_40(); IL2CPP_RUNTIME_CLASS_INIT(C2tnb431r1Holder_tE2F8B784758E3C2B77A17A464C69D212F357A2CA_il2cpp_TypeInfo_var); X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * L_48 = ((C2tnb431r1Holder_tE2F8B784758E3C2B77A17A464C69D212F357A2CA_StaticFields*)il2cpp_codegen_static_fields_for(C2tnb431r1Holder_tE2F8B784758E3C2B77A17A464C69D212F357A2CA_il2cpp_TypeInfo_var))->get_Instance_1(); X962NamedCurves_DefineCurve_m7719C80600358F3811B56362D2793DB639FBED72(_stringLiteral8D6C301F7F9BEB27A65180FC3B3E5F7487F3383D, L_47, L_48, /*hidden argument*/NULL); // } return; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParameters BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves::GetByName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639 * X962NamedCurves_GetByName_m69F2641A253B5BCB449115FE2327CEBE0E9FB2C6 (String_t* ___name0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X962NamedCurves_tBB2BFD74E2BCFB26E51F7D9F5BD8F9AF6C4E610C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * V_0 = NULL; { // DerObjectIdentifier oid = GetOid(name); String_t* L_0 = ___name0; IL2CPP_RUNTIME_CLASS_INIT(X962NamedCurves_tBB2BFD74E2BCFB26E51F7D9F5BD8F9AF6C4E610C_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_1; L_1 = X962NamedCurves_GetOid_m0605E47CF09A208750F55A057AA962FE28D1E160(L_0, /*hidden argument*/NULL); V_0 = L_1; // return oid == null ? null : GetByOid(oid); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_2 = V_0; if (!L_2) { goto IL_0011; } } { DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_3 = V_0; IL2CPP_RUNTIME_CLASS_INIT(X962NamedCurves_tBB2BFD74E2BCFB26E51F7D9F5BD8F9AF6C4E610C_il2cpp_TypeInfo_var); X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639 * L_4; L_4 = X962NamedCurves_GetByOid_m6932EC493771F9F532B9928368C093C405F29C7E(L_3, /*hidden argument*/NULL); return L_4; } IL_0011: { return (X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639 *)NULL; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParameters BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves::GetByOid(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639 * X962NamedCurves_GetByOid_m6932EC493771F9F532B9928368C093C405F29C7E (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___oid0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X962NamedCurves_tBB2BFD74E2BCFB26E51F7D9F5BD8F9AF6C4E610C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * V_0 = NULL; { // X9ECParametersHolder holder = (X9ECParametersHolder)curves[oid]; IL2CPP_RUNTIME_CLASS_INIT(X962NamedCurves_tBB2BFD74E2BCFB26E51F7D9F5BD8F9AF6C4E610C_il2cpp_TypeInfo_var); RuntimeObject* L_0 = ((X962NamedCurves_tBB2BFD74E2BCFB26E51F7D9F5BD8F9AF6C4E610C_StaticFields*)il2cpp_codegen_static_fields_for(X962NamedCurves_tBB2BFD74E2BCFB26E51F7D9F5BD8F9AF6C4E610C_il2cpp_TypeInfo_var))->get_curves_1(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_1 = ___oid0; NullCheck(L_0); RuntimeObject * L_2; L_2 = InterfaceFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IDictionary::get_Item(System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_0, L_1); V_0 = ((X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC *)CastclassClass((RuntimeObject*)L_2, X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC_il2cpp_TypeInfo_var)); // return holder == null ? null : holder.Parameters; X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * L_3 = V_0; if (!L_3) { goto IL_001b; } } { X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * L_4 = V_0; NullCheck(L_4); X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639 * L_5; L_5 = X9ECParametersHolder_get_Parameters_mB00729430BDF213E3441EB5FB1562DCD11D65D6A(L_4, /*hidden argument*/NULL); return L_5; } IL_001b: { return (X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639 *)NULL; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves::GetOid(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * X962NamedCurves_GetOid_m0605E47CF09A208750F55A057AA962FE28D1E160 (String_t* ___name0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X962NamedCurves_tBB2BFD74E2BCFB26E51F7D9F5BD8F9AF6C4E610C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // return (DerObjectIdentifier)objIds[BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.ToUpperInvariant(name)]; IL2CPP_RUNTIME_CLASS_INIT(X962NamedCurves_tBB2BFD74E2BCFB26E51F7D9F5BD8F9AF6C4E610C_il2cpp_TypeInfo_var); RuntimeObject* L_0 = ((X962NamedCurves_tBB2BFD74E2BCFB26E51F7D9F5BD8F9AF6C4E610C_StaticFields*)il2cpp_codegen_static_fields_for(X962NamedCurves_tBB2BFD74E2BCFB26E51F7D9F5BD8F9AF6C4E610C_il2cpp_TypeInfo_var))->get_objIds_0(); String_t* L_1 = ___name0; IL2CPP_RUNTIME_CLASS_INIT(Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var); String_t* L_2; L_2 = Platform_ToUpperInvariant_m306E35263EC9F3B4FE0722C3173BAAFDB1B3E158(L_1, /*hidden argument*/NULL); NullCheck(L_0); RuntimeObject * L_3; L_3 = InterfaceFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IDictionary::get_Item(System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_0, L_2); return ((DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *)CastclassClass((RuntimeObject*)L_3, DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var)); } } // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves::GetName(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* X962NamedCurves_GetName_m898DCE7C1FFE980BE41286B00A8344E7F570CBCA (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___oid0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X962NamedCurves_tBB2BFD74E2BCFB26E51F7D9F5BD8F9AF6C4E610C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // return (string)names[oid]; IL2CPP_RUNTIME_CLASS_INIT(X962NamedCurves_tBB2BFD74E2BCFB26E51F7D9F5BD8F9AF6C4E610C_il2cpp_TypeInfo_var); RuntimeObject* L_0 = ((X962NamedCurves_tBB2BFD74E2BCFB26E51F7D9F5BD8F9AF6C4E610C_StaticFields*)il2cpp_codegen_static_fields_for(X962NamedCurves_tBB2BFD74E2BCFB26E51F7D9F5BD8F9AF6C4E610C_il2cpp_TypeInfo_var))->get_names_2(); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_1 = ___oid0; NullCheck(L_0); RuntimeObject * L_2; L_2 = InterfaceFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IDictionary::get_Item(System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_0, L_1); return ((String_t*)CastclassSealed((RuntimeObject*)L_2, String_t_il2cpp_TypeInfo_var)); } } // System.Collections.IEnumerable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962NamedCurves::get_Names() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* X962NamedCurves_get_Names_mF9CE31E5610E68253A80F36F756CF558392477B9 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EnumerableProxy_t026114E7F2A8CD4B2FA989282FE080341A4614E2_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X962NamedCurves_tBB2BFD74E2BCFB26E51F7D9F5BD8F9AF6C4E610C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // get { return new EnumerableProxy(names.Values); } IL2CPP_RUNTIME_CLASS_INIT(X962NamedCurves_tBB2BFD74E2BCFB26E51F7D9F5BD8F9AF6C4E610C_il2cpp_TypeInfo_var); RuntimeObject* L_0 = ((X962NamedCurves_tBB2BFD74E2BCFB26E51F7D9F5BD8F9AF6C4E610C_StaticFields*)il2cpp_codegen_static_fields_for(X962NamedCurves_tBB2BFD74E2BCFB26E51F7D9F5BD8F9AF6C4E610C_il2cpp_TypeInfo_var))->get_names_2(); NullCheck(L_0); RuntimeObject* L_1; L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(3 /* System.Collections.ICollection System.Collections.IDictionary::get_Values() */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_0); EnumerableProxy_t026114E7F2A8CD4B2FA989282FE080341A4614E2 * L_2 = (EnumerableProxy_t026114E7F2A8CD4B2FA989282FE080341A4614E2 *)il2cpp_codegen_object_new(EnumerableProxy_t026114E7F2A8CD4B2FA989282FE080341A4614E2_il2cpp_TypeInfo_var); EnumerableProxy__ctor_m3A29836DAA548DB5ADE9DF4D26EE061EF50B34F5(L_2, L_1, /*hidden argument*/NULL); return L_2; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962Parameters BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962Parameters::GetInstance(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X962Parameters_t4E41A769BDB21B21ECE217D5D99FA9DBBFFAE7E4 * X962Parameters_GetInstance_mEC0346C936B50B75ACDEB93CE2A5723C3E92C87F (RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X962Parameters_t4E41A769BDB21B21ECE217D5D99FA9DBBFFAE7E4_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } X962Parameters_t4E41A769BDB21B21ECE217D5D99FA9DBBFFAE7E4 * V_0 = NULL; Exception_t * V_1 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; { // if (obj == null || obj is X962Parameters) RuntimeObject * L_0 = ___obj0; if (!L_0) { goto IL_000b; } } { RuntimeObject * L_1 = ___obj0; if (!((X962Parameters_t4E41A769BDB21B21ECE217D5D99FA9DBBFFAE7E4 *)IsInstClass((RuntimeObject*)L_1, X962Parameters_t4E41A769BDB21B21ECE217D5D99FA9DBBFFAE7E4_il2cpp_TypeInfo_var))) { goto IL_0012; } } IL_000b: { // return (X962Parameters)obj; RuntimeObject * L_2 = ___obj0; return ((X962Parameters_t4E41A769BDB21B21ECE217D5D99FA9DBBFFAE7E4 *)CastclassClass((RuntimeObject*)L_2, X962Parameters_t4E41A769BDB21B21ECE217D5D99FA9DBBFFAE7E4_il2cpp_TypeInfo_var)); } IL_0012: { // if (obj is Asn1Object) RuntimeObject * L_3 = ___obj0; if (!((Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC *)IsInstClass((RuntimeObject*)L_3, Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC_il2cpp_TypeInfo_var))) { goto IL_0026; } } { // return new X962Parameters((Asn1Object)obj); RuntimeObject * L_4 = ___obj0; X962Parameters_t4E41A769BDB21B21ECE217D5D99FA9DBBFFAE7E4 * L_5 = (X962Parameters_t4E41A769BDB21B21ECE217D5D99FA9DBBFFAE7E4 *)il2cpp_codegen_object_new(X962Parameters_t4E41A769BDB21B21ECE217D5D99FA9DBBFFAE7E4_il2cpp_TypeInfo_var); X962Parameters__ctor_mBC048A62BC3210E60C257A731E2884B14EAD33A0(L_5, ((Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC *)CastclassClass((RuntimeObject*)L_4, Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); return L_5; } IL_0026: { // if (obj is byte[]) RuntimeObject * L_6 = ___obj0; if (!((ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)IsInst((RuntimeObject*)L_6, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var))) { goto IL_0059; } } IL_002e: try {// begin try (depth: 1) // return new X962Parameters(Asn1Object.FromByteArray((byte[])obj)); RuntimeObject * L_7 = ___obj0; Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * L_8; L_8 = Asn1Object_FromByteArray_m2DB00E0C5F68F2C4C3CA24B1F3075BC8DA9AD989(((ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)Castclass((RuntimeObject*)L_7, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); X962Parameters_t4E41A769BDB21B21ECE217D5D99FA9DBBFFAE7E4 * L_9 = (X962Parameters_t4E41A769BDB21B21ECE217D5D99FA9DBBFFAE7E4 *)il2cpp_codegen_object_new(X962Parameters_t4E41A769BDB21B21ECE217D5D99FA9DBBFFAE7E4_il2cpp_TypeInfo_var); X962Parameters__ctor_mBC048A62BC3210E60C257A731E2884B14EAD33A0(L_9, L_8, /*hidden argument*/NULL); V_0 = L_9; goto IL_0064; }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0041; } throw e; } CATCH_0041: {// begin catch(System.Exception) // catch (Exception e) V_1 = ((Exception_t *)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *)); // throw new ArgumentException("unable to parse encoded data: " + e.Message, e); Exception_t * L_10 = V_1; NullCheck(L_10); String_t* L_11; L_11 = VirtualFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Exception::get_Message() */, L_10); String_t* L_12; L_12 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral822F301AC43CBC3A1E7B34B4CE3ED438E51A2609)), L_11, /*hidden argument*/NULL); Exception_t * L_13 = V_1; ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_14 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D82228EC0D314063BFC7BB308A43927D1D76852(L_14, L_12, L_13, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X962Parameters_GetInstance_mEC0346C936B50B75ACDEB93CE2A5723C3E92C87F_RuntimeMethod_var))); }// end catch (depth: 1) IL_0059: { // throw new ArgumentException("unknown object in getInstance()"); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_15 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_15, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral81A270B8DC466236688F0772045BCC1C51FBAF32)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X962Parameters_GetInstance_mEC0346C936B50B75ACDEB93CE2A5723C3E92C87F_RuntimeMethod_var))); } IL_0064: { // } X962Parameters_t4E41A769BDB21B21ECE217D5D99FA9DBBFFAE7E4 * L_16 = V_0; return L_16; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962Parameters::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParameters) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X962Parameters__ctor_m4DE8ED618D8BB420CC848D7F675C755BDD081EC6 (X962Parameters_t4E41A769BDB21B21ECE217D5D99FA9DBBFFAE7E4 * __this, X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639 * ___ecParameters0, const RuntimeMethod* method) { { // public X962Parameters( // X9ECParameters ecParameters) Asn1Encodable__ctor_mF956C9DAF4A126B7B4406E2DD0EED16E64ABA126(__this, /*hidden argument*/NULL); // this._params = ecParameters.ToAsn1Object(); X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639 * L_0 = ___ecParameters0; NullCheck(L_0); Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * L_1; L_1 = VirtualFuncInvoker0< Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * >::Invoke(5 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Object BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable::ToAsn1Object() */, L_0); __this->set__params_2(L_1); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962Parameters::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X962Parameters__ctor_mD3B89752B5D32419E3A3AB6DB54D79358BE4C96B (X962Parameters_t4E41A769BDB21B21ECE217D5D99FA9DBBFFAE7E4 * __this, DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * ___namedCurve0, const RuntimeMethod* method) { { // public X962Parameters( // DerObjectIdentifier namedCurve) Asn1Encodable__ctor_mF956C9DAF4A126B7B4406E2DD0EED16E64ABA126(__this, /*hidden argument*/NULL); // this._params = namedCurve; DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_0 = ___namedCurve0; __this->set__params_2(L_0); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962Parameters::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X962Parameters__ctor_mBC048A62BC3210E60C257A731E2884B14EAD33A0 (X962Parameters_t4E41A769BDB21B21ECE217D5D99FA9DBBFFAE7E4 * __this, Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * ___obj0, const RuntimeMethod* method) { { // public X962Parameters( // Asn1Object obj) Asn1Encodable__ctor_mF956C9DAF4A126B7B4406E2DD0EED16E64ABA126(__this, /*hidden argument*/NULL); // this._params = obj; Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * L_0 = ___obj0; __this->set__params_2(L_0); // } return; } } // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962Parameters::get_IsNamedCurve() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool X962Parameters_get_IsNamedCurve_mDA51FA776C5A2D7CC5E79DDECD05B09541777AC2 (X962Parameters_t4E41A769BDB21B21ECE217D5D99FA9DBBFFAE7E4 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // get { return (_params is DerObjectIdentifier); } Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * L_0 = __this->get__params_2(); return (bool)((!(((RuntimeObject*)(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *)((DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *)IsInstClass((RuntimeObject*)L_0, DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0); } } // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962Parameters::get_IsImplicitlyCA() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool X962Parameters_get_IsImplicitlyCA_m63C26ED1B5AC58CB898199661D17B6A961BC0FB4 (X962Parameters_t4E41A769BDB21B21ECE217D5D99FA9DBBFFAE7E4 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Asn1Null_t5D40C5C3674510061A0C219CEB9849A5EF6492BC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // get { return (_params is Asn1Null); } Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * L_0 = __this->get__params_2(); return (bool)((!(((RuntimeObject*)(Asn1Null_t5D40C5C3674510061A0C219CEB9849A5EF6492BC *)((Asn1Null_t5D40C5C3674510061A0C219CEB9849A5EF6492BC *)IsInstClass((RuntimeObject*)L_0, Asn1Null_t5D40C5C3674510061A0C219CEB9849A5EF6492BC_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0); } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Object BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962Parameters::get_Parameters() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * X962Parameters_get_Parameters_m53F3B85361AF69D1687CA8BC4F665F9ECA5E1A1F (X962Parameters_t4E41A769BDB21B21ECE217D5D99FA9DBBFFAE7E4 * __this, const RuntimeMethod* method) { { // get { return _params; } Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * L_0 = __this->get__params_2(); return L_0; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Object BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X962Parameters::ToAsn1Object() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * X962Parameters_ToAsn1Object_m9D9564D23A931E7008EA18BA1B741AB38A2F866D (X962Parameters_t4E41A769BDB21B21ECE217D5D99FA9DBBFFAE7E4 * __this, const RuntimeMethod* method) { { // return _params; Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * L_0 = __this->get__params_2(); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9Curve::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECCurve) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X9Curve__ctor_mB5B48978D1691167FE52437337B073D1A52032F2 (X9Curve_tE05684E0E4B3A1C4AC7B6DD81F6D6D20973C3AC9 * __this, ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * ___curve0, const RuntimeMethod* method) { { // : this(curve, null) ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * L_0 = ___curve0; X9Curve__ctor_m633F4D1ABDE4E23226E61E707C979247A44C5AF1(__this, L_0, (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)NULL, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9Curve::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECCurve,System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X9Curve__ctor_m633F4D1ABDE4E23226E61E707C979247A44C5AF1 (X9Curve_tE05684E0E4B3A1C4AC7B6DD81F6D6D20973C3AC9 * __this, ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * ___curve0, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___seed1, 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*)&X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public X9Curve( // ECCurve curve, // byte[] seed) Asn1Encodable__ctor_mF956C9DAF4A126B7B4406E2DD0EED16E64ABA126(__this, /*hidden argument*/NULL); // if (curve == null) ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * L_0 = ___curve0; if (L_0) { goto IL_0014; } } { // throw new ArgumentNullException("curve"); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6C9DED8087C891AE33ACFFCE806DBFF63795F56F)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X9Curve__ctor_m633F4D1ABDE4E23226E61E707C979247A44C5AF1_RuntimeMethod_var))); } IL_0014: { // this.curve = curve; ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * L_2 = ___curve0; __this->set_curve_2(L_2); // this.seed = Arrays.Clone(seed); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_3 = ___seed1; IL2CPP_RUNTIME_CLASS_INIT(Arrays_t7CFD09DA7425047721E193958DAC5AB0FCFF67BF_il2cpp_TypeInfo_var); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4; L_4 = Arrays_Clone_m362B6E8EAA394ABF566EABAF08A37C8232D398D8(L_3, /*hidden argument*/NULL); __this->set_seed_3(L_4); // if (ECAlgorithms.IsFpCurve(curve)) ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * L_5 = ___curve0; bool L_6; L_6 = ECAlgorithms_IsFpCurve_mA01474701D54E9F861242D8FE202EC606F08BD4B(L_5, /*hidden argument*/NULL); if (!L_6) { goto IL_003b; } } { // this.fieldIdentifier = X9ObjectIdentifiers.PrimeField; IL2CPP_RUNTIME_CLASS_INIT(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_7 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_PrimeField_3(); __this->set_fieldIdentifier_4(L_7); // } return; } IL_003b: { // else if (ECAlgorithms.IsF2mCurve(curve)) ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * L_8 = ___curve0; bool L_9; L_9 = ECAlgorithms_IsF2mCurve_mBC2B648E300361FD94E128150D3275471E177161(L_8, /*hidden argument*/NULL); if (!L_9) { goto IL_004f; } } { // this.fieldIdentifier = X9ObjectIdentifiers.CharacteristicTwoField; IL2CPP_RUNTIME_CLASS_INIT(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_10 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_CharacteristicTwoField_4(); __this->set_fieldIdentifier_4(L_10); // } return; } IL_004f: { // throw new ArgumentException("This type of ECCurve is not implemented"); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_11 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_11, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral79A2D8261FC12941628D2F7ED862D40859EB89A7)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X9Curve__ctor_m633F4D1ABDE4E23226E61E707C979247A44C5AF1_RuntimeMethod_var))); } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9Curve::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9FieldID,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X9Curve__ctor_m54F64987CA94BA6CDE8F63EBD1334D682B7ECFBA (X9Curve_tE05684E0E4B3A1C4AC7B6DD81F6D6D20973C3AC9 * __this, X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8 * ___fieldID0, Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * ___seq1, const RuntimeMethod* method) { { // : this(fieldID, null, null, seq) X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8 * L_0 = ___fieldID0; Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_1 = ___seq1; X9Curve__ctor_m954B3F1B487573FF81CFF93B026D5D4BC6E0FC0D(__this, L_0, (BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 *)NULL, (BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 *)NULL, L_1, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9Curve::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9FieldID,BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger,BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X9Curve__ctor_m954B3F1B487573FF81CFF93B026D5D4BC6E0FC0D (X9Curve_tE05684E0E4B3A1C4AC7B6DD81F6D6D20973C3AC9 * __this, X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8 * ___fieldID0, BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___order1, BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___cofactor2, Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * ___seq3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerBitString_t305465793A47445626D3541AB8CEDE347D874524_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&F2mCurve_t2D35B6577B3DDFE26FC95C22B4281D005BD97C15_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FpCurve_t9368FE54C52A7B5966A8B814B739D287356B93B8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * V_0 = NULL; BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * V_1 = NULL; BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * V_2 = NULL; DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 * V_3 = NULL; int32_t V_4 = 0; int32_t V_5 = 0; int32_t V_6 = 0; int32_t V_7 = 0; BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * V_8 = NULL; BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * V_9 = NULL; { // public X9Curve( // X9FieldID fieldID, // BigInteger order, // BigInteger cofactor, // Asn1Sequence seq) Asn1Encodable__ctor_mF956C9DAF4A126B7B4406E2DD0EED16E64ABA126(__this, /*hidden argument*/NULL); // if (fieldID == null) X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8 * L_0 = ___fieldID0; if (L_0) { goto IL_0014; } } { // throw new ArgumentNullException("fieldID"); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE30A91CF21B67330B38E23371BABF6F6E47663D9)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X9Curve__ctor_m954B3F1B487573FF81CFF93B026D5D4BC6E0FC0D_RuntimeMethod_var))); } IL_0014: { // if (seq == null) Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_2 = ___seq3; if (L_2) { goto IL_0023; } } { // throw new ArgumentNullException("seq"); ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_3 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral24C049E512CD1B48036BD162FF63700A57CA3469)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X9Curve__ctor_m954B3F1B487573FF81CFF93B026D5D4BC6E0FC0D_RuntimeMethod_var))); } IL_0023: { // this.fieldIdentifier = fieldID.Identifier; X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8 * L_4 = ___fieldID0; NullCheck(L_4); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_5; L_5 = X9FieldID_get_Identifier_m52E0EDC4A4D718C161CDA5314A3E0383419FB264_inline(L_4, /*hidden argument*/NULL); __this->set_fieldIdentifier_4(L_5); // if (fieldIdentifier.Equals(X9ObjectIdentifiers.PrimeField)) DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_6 = __this->get_fieldIdentifier_4(); IL2CPP_RUNTIME_CLASS_INIT(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_7 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_PrimeField_3(); NullCheck(L_6); bool L_8; L_8 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_6, L_7); if (!L_8) { goto IL_0099; } } { // BigInteger p = ((DerInteger)fieldID.Parameters).Value; X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8 * L_9 = ___fieldID0; NullCheck(L_9); Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * L_10; L_10 = X9FieldID_get_Parameters_m12B808F857010B95FBDBD07DF02747E277D0CF8B_inline(L_9, /*hidden argument*/NULL); NullCheck(((DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 *)CastclassClass((RuntimeObject*)L_10, DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var))); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_11; L_11 = DerInteger_get_Value_m8C263058A637AE123BD47291A36538E05E374478(((DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 *)CastclassClass((RuntimeObject*)L_10, DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); V_0 = L_11; // BigInteger A = new BigInteger(1, Asn1OctetString.GetInstance(seq[0]).GetOctets()); Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_12 = ___seq3; NullCheck(L_12); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_13; L_13 = VirtualFuncInvoker1< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *, int32_t >::Invoke(12 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Item(System.Int32) */, L_12, 0); Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * L_14; L_14 = Asn1OctetString_GetInstance_mF572FFBA88CFF4772B2AF3E70E05EB0E8066A3C9(L_13, /*hidden argument*/NULL); NullCheck(L_14); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_15; L_15 = VirtualFuncInvoker0< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* >::Invoke(10 /* System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString::GetOctets() */, L_14); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_16 = (BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 *)il2cpp_codegen_object_new(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_il2cpp_TypeInfo_var); BigInteger__ctor_m2790E6F992AE637CEB82161CD2D56E1E0008F81A(L_16, 1, L_15, /*hidden argument*/NULL); V_1 = L_16; // BigInteger B = new BigInteger(1, Asn1OctetString.GetInstance(seq[1]).GetOctets()); Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_17 = ___seq3; NullCheck(L_17); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_18; L_18 = VirtualFuncInvoker1< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *, int32_t >::Invoke(12 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Item(System.Int32) */, L_17, 1); Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * L_19; L_19 = Asn1OctetString_GetInstance_mF572FFBA88CFF4772B2AF3E70E05EB0E8066A3C9(L_18, /*hidden argument*/NULL); NullCheck(L_19); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_20; L_20 = VirtualFuncInvoker0< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* >::Invoke(10 /* System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString::GetOctets() */, L_19); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_21 = (BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 *)il2cpp_codegen_object_new(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_il2cpp_TypeInfo_var); BigInteger__ctor_m2790E6F992AE637CEB82161CD2D56E1E0008F81A(L_21, 1, L_20, /*hidden argument*/NULL); V_2 = L_21; // curve = new FpCurve(p, A, B, order, cofactor); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_22 = V_0; BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_23 = V_1; BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_24 = V_2; BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_25 = ___order1; BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_26 = ___cofactor2; FpCurve_t9368FE54C52A7B5966A8B814B739D287356B93B8 * L_27 = (FpCurve_t9368FE54C52A7B5966A8B814B739D287356B93B8 *)il2cpp_codegen_object_new(FpCurve_t9368FE54C52A7B5966A8B814B739D287356B93B8_il2cpp_TypeInfo_var); FpCurve__ctor_m2BBC566CAC9C3F165A2311D6287A1E639468ED67(L_27, L_22, L_23, L_24, L_25, L_26, /*hidden argument*/NULL); __this->set_curve_2(L_27); // } goto IL_01ba; } IL_0099: { // else if (fieldIdentifier.Equals(X9ObjectIdentifiers.CharacteristicTwoField)) DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_28 = __this->get_fieldIdentifier_4(); IL2CPP_RUNTIME_CLASS_INIT(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_29 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_CharacteristicTwoField_4(); NullCheck(L_28); bool L_30; L_30 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_28, L_29); if (!L_30) { goto IL_01af; } } { // DerSequence parameters = (DerSequence)fieldID.Parameters; X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8 * L_31 = ___fieldID0; NullCheck(L_31); Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * L_32; L_32 = X9FieldID_get_Parameters_m12B808F857010B95FBDBD07DF02747E277D0CF8B_inline(L_31, /*hidden argument*/NULL); V_3 = ((DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 *)CastclassClass((RuntimeObject*)L_32, DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09_il2cpp_TypeInfo_var)); // int m = ((DerInteger)parameters[0]).Value.IntValue; DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 * L_33 = V_3; NullCheck(L_33); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_34; L_34 = VirtualFuncInvoker1< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *, int32_t >::Invoke(12 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Item(System.Int32) */, L_33, 0); NullCheck(((DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 *)CastclassClass((RuntimeObject*)L_34, DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var))); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_35; L_35 = DerInteger_get_Value_m8C263058A637AE123BD47291A36538E05E374478(((DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 *)CastclassClass((RuntimeObject*)L_34, DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); NullCheck(L_35); int32_t L_36; L_36 = BigInteger_get_IntValue_m6386348CAE8E75A68124AD1F36F497FC551F8144(L_35, /*hidden argument*/NULL); V_4 = L_36; // DerObjectIdentifier representation // = (DerObjectIdentifier)parameters[1]; DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 * L_37 = V_3; NullCheck(L_37); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_38; L_38 = VirtualFuncInvoker1< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *, int32_t >::Invoke(12 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Item(System.Int32) */, L_37, 1); // int k1 = 0; V_5 = 0; // int k2 = 0; V_6 = 0; // int k3 = 0; V_7 = 0; // if (representation.Equals(X9ObjectIdentifiers.TPBasis)) IL2CPP_RUNTIME_CLASS_INIT(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_39 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_TPBasis_6(); NullCheck(((DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *)CastclassClass((RuntimeObject*)L_38, DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var))); bool L_40; L_40 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, ((DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *)CastclassClass((RuntimeObject*)L_38, DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var)), L_39); if (!L_40) { goto IL_010d; } } { // k1 = ((DerInteger)parameters[2]).Value.IntValue; DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 * L_41 = V_3; NullCheck(L_41); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_42; L_42 = VirtualFuncInvoker1< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *, int32_t >::Invoke(12 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Item(System.Int32) */, L_41, 2); NullCheck(((DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 *)CastclassClass((RuntimeObject*)L_42, DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var))); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_43; L_43 = DerInteger_get_Value_m8C263058A637AE123BD47291A36538E05E374478(((DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 *)CastclassClass((RuntimeObject*)L_42, DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); NullCheck(L_43); int32_t L_44; L_44 = BigInteger_get_IntValue_m6386348CAE8E75A68124AD1F36F497FC551F8144(L_43, /*hidden argument*/NULL); V_5 = L_44; // } goto IL_0160; } IL_010d: { // DerSequence pentanomial = (DerSequence) parameters[2]; DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 * L_45 = V_3; NullCheck(L_45); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_46; L_46 = VirtualFuncInvoker1< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *, int32_t >::Invoke(12 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Item(System.Int32) */, L_45, 2); // k1 = ((DerInteger) pentanomial[0]).Value.IntValue; DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 * L_47 = ((DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 *)CastclassClass((RuntimeObject*)L_46, DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09_il2cpp_TypeInfo_var)); NullCheck(L_47); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_48; L_48 = VirtualFuncInvoker1< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *, int32_t >::Invoke(12 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Item(System.Int32) */, L_47, 0); NullCheck(((DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 *)CastclassClass((RuntimeObject*)L_48, DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var))); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_49; L_49 = DerInteger_get_Value_m8C263058A637AE123BD47291A36538E05E374478(((DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 *)CastclassClass((RuntimeObject*)L_48, DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); NullCheck(L_49); int32_t L_50; L_50 = BigInteger_get_IntValue_m6386348CAE8E75A68124AD1F36F497FC551F8144(L_49, /*hidden argument*/NULL); V_5 = L_50; // k2 = ((DerInteger) pentanomial[1]).Value.IntValue; DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 * L_51 = L_47; NullCheck(L_51); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_52; L_52 = VirtualFuncInvoker1< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *, int32_t >::Invoke(12 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Item(System.Int32) */, L_51, 1); NullCheck(((DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 *)CastclassClass((RuntimeObject*)L_52, DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var))); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_53; L_53 = DerInteger_get_Value_m8C263058A637AE123BD47291A36538E05E374478(((DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 *)CastclassClass((RuntimeObject*)L_52, DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); NullCheck(L_53); int32_t L_54; L_54 = BigInteger_get_IntValue_m6386348CAE8E75A68124AD1F36F497FC551F8144(L_53, /*hidden argument*/NULL); V_6 = L_54; // k3 = ((DerInteger) pentanomial[2]).Value.IntValue; NullCheck(L_51); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_55; L_55 = VirtualFuncInvoker1< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *, int32_t >::Invoke(12 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Item(System.Int32) */, L_51, 2); NullCheck(((DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 *)CastclassClass((RuntimeObject*)L_55, DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var))); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_56; L_56 = DerInteger_get_Value_m8C263058A637AE123BD47291A36538E05E374478(((DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 *)CastclassClass((RuntimeObject*)L_55, DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); NullCheck(L_56); int32_t L_57; L_57 = BigInteger_get_IntValue_m6386348CAE8E75A68124AD1F36F497FC551F8144(L_56, /*hidden argument*/NULL); V_7 = L_57; } IL_0160: { // BigInteger A = new BigInteger(1, Asn1OctetString.GetInstance(seq[0]).GetOctets()); Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_58 = ___seq3; NullCheck(L_58); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_59; L_59 = VirtualFuncInvoker1< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *, int32_t >::Invoke(12 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Item(System.Int32) */, L_58, 0); Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * L_60; L_60 = Asn1OctetString_GetInstance_mF572FFBA88CFF4772B2AF3E70E05EB0E8066A3C9(L_59, /*hidden argument*/NULL); NullCheck(L_60); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_61; L_61 = VirtualFuncInvoker0< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* >::Invoke(10 /* System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString::GetOctets() */, L_60); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_62 = (BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 *)il2cpp_codegen_object_new(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_il2cpp_TypeInfo_var); BigInteger__ctor_m2790E6F992AE637CEB82161CD2D56E1E0008F81A(L_62, 1, L_61, /*hidden argument*/NULL); V_8 = L_62; // BigInteger B = new BigInteger(1, Asn1OctetString.GetInstance(seq[1]).GetOctets()); Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_63 = ___seq3; NullCheck(L_63); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_64; L_64 = VirtualFuncInvoker1< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *, int32_t >::Invoke(12 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Item(System.Int32) */, L_63, 1); Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * L_65; L_65 = Asn1OctetString_GetInstance_mF572FFBA88CFF4772B2AF3E70E05EB0E8066A3C9(L_64, /*hidden argument*/NULL); NullCheck(L_65); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_66; L_66 = VirtualFuncInvoker0< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* >::Invoke(10 /* System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString::GetOctets() */, L_65); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_67 = (BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 *)il2cpp_codegen_object_new(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_il2cpp_TypeInfo_var); BigInteger__ctor_m2790E6F992AE637CEB82161CD2D56E1E0008F81A(L_67, 1, L_66, /*hidden argument*/NULL); V_9 = L_67; // curve = new F2mCurve(m, k1, k2, k3, A, B, order, cofactor); int32_t L_68 = V_4; int32_t L_69 = V_5; int32_t L_70 = V_6; int32_t L_71 = V_7; BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_72 = V_8; BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_73 = V_9; BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_74 = ___order1; BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_75 = ___cofactor2; F2mCurve_t2D35B6577B3DDFE26FC95C22B4281D005BD97C15 * L_76 = (F2mCurve_t2D35B6577B3DDFE26FC95C22B4281D005BD97C15 *)il2cpp_codegen_object_new(F2mCurve_t2D35B6577B3DDFE26FC95C22B4281D005BD97C15_il2cpp_TypeInfo_var); F2mCurve__ctor_mD221CFD31823473493B30851458AF95C4AC0B33B(L_76, L_68, L_69, L_70, L_71, L_72, L_73, L_74, L_75, /*hidden argument*/NULL); __this->set_curve_2(L_76); // } goto IL_01ba; } IL_01af: { // throw new ArgumentException("This type of ECCurve is not implemented"); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_77 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_77, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral79A2D8261FC12941628D2F7ED862D40859EB89A7)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_77, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X9Curve__ctor_m954B3F1B487573FF81CFF93B026D5D4BC6E0FC0D_RuntimeMethod_var))); } IL_01ba: { // if (seq.Count == 3) Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_78 = ___seq3; NullCheck(L_78); int32_t L_79; L_79 = VirtualFuncInvoker0< int32_t >::Invoke(13 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Count() */, L_78); if ((!(((uint32_t)L_79) == ((uint32_t)3)))) { goto IL_01dc; } } { // seed = ((DerBitString)seq[2]).GetBytes(); Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_80 = ___seq3; NullCheck(L_80); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_81; L_81 = VirtualFuncInvoker1< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *, int32_t >::Invoke(12 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Item(System.Int32) */, L_80, 2); NullCheck(((DerBitString_t305465793A47445626D3541AB8CEDE347D874524 *)CastclassClass((RuntimeObject*)L_81, DerBitString_t305465793A47445626D3541AB8CEDE347D874524_il2cpp_TypeInfo_var))); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_82; L_82 = VirtualFuncInvoker0< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* >::Invoke(12 /* System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerBitString::GetBytes() */, ((DerBitString_t305465793A47445626D3541AB8CEDE347D874524 *)CastclassClass((RuntimeObject*)L_81, DerBitString_t305465793A47445626D3541AB8CEDE347D874524_il2cpp_TypeInfo_var))); __this->set_seed_3(L_82); } IL_01dc: { // } return; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECCurve BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9Curve::get_Curve() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * X9Curve_get_Curve_mB57D18E227BF3B54F3E0B14A8E12EBBA90E6EA31 (X9Curve_tE05684E0E4B3A1C4AC7B6DD81F6D6D20973C3AC9 * __this, const RuntimeMethod* method) { { // get { return curve; } ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * L_0 = __this->get_curve_2(); return L_0; } } // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9Curve::GetSeed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* X9Curve_GetSeed_m03DD8A3A2738B50E662C423147B03748DF95D7C1 (X9Curve_tE05684E0E4B3A1C4AC7B6DD81F6D6D20973C3AC9 * __this, 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; } { // return Arrays.Clone(seed); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = __this->get_seed_3(); IL2CPP_RUNTIME_CLASS_INIT(Arrays_t7CFD09DA7425047721E193958DAC5AB0FCFF67BF_il2cpp_TypeInfo_var); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1; L_1 = Arrays_Clone_m362B6E8EAA394ABF566EABAF08A37C8232D398D8(L_0, /*hidden argument*/NULL); return L_1; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Object BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9Curve::ToAsn1Object() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * X9Curve_ToAsn1Object_m646E3017DFAB7B949EEB6C131BCC893FB48D3FB3 (X9Curve_tE05684E0E4B3A1C4AC7B6DD81F6D6D20973C3AC9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Array_Empty_TisAsn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC_m6133560D3294995A1E65C8837F69C407350CD6DB_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerBitString_t305465793A47445626D3541AB8CEDE347D874524_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X9FieldElement_t153792155C814A48E98DBBBF3BF3B5055CC18EA2_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 * V_0 = NULL; { // Asn1EncodableVector v = new Asn1EncodableVector(); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_0; L_0 = Array_Empty_TisAsn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC_m6133560D3294995A1E65C8837F69C407350CD6DB_inline(/*hidden argument*/Array_Empty_TisAsn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC_m6133560D3294995A1E65C8837F69C407350CD6DB_RuntimeMethod_var); Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 * L_1 = (Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 *)il2cpp_codegen_object_new(Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3_il2cpp_TypeInfo_var); Asn1EncodableVector__ctor_m1306EB1064C0D4EEC59EA15F8DFF81952B7AE7DE(L_1, L_0, /*hidden argument*/NULL); V_0 = L_1; // if (fieldIdentifier.Equals(X9ObjectIdentifiers.PrimeField) // || fieldIdentifier.Equals(X9ObjectIdentifiers.CharacteristicTwoField)) DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_2 = __this->get_fieldIdentifier_4(); IL2CPP_RUNTIME_CLASS_INIT(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_3 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_PrimeField_3(); NullCheck(L_2); bool L_4; L_4 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_2, L_3); if (L_4) { goto IL_002f; } } { DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_5 = __this->get_fieldIdentifier_4(); IL2CPP_RUNTIME_CLASS_INIT(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_6 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_CharacteristicTwoField_4(); NullCheck(L_5); bool L_7; L_7 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_5, L_6); if (!L_7) { goto IL_0077; } } IL_002f: { // v.Add(new X9FieldElement(curve.A).ToAsn1Object()); Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 * L_8 = V_0; Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_9 = (Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE*)(Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE*)SZArrayNew(Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE_il2cpp_TypeInfo_var, (uint32_t)1); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_10 = L_9; ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * L_11 = __this->get_curve_2(); NullCheck(L_11); ECFieldElement_t5B3E4EB355D81F73F6FAC09A042BE908A9631117 * L_12; L_12 = VirtualFuncInvoker0< ECFieldElement_t5B3E4EB355D81F73F6FAC09A042BE908A9631117 * >::Invoke(24 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECFieldElement BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECCurve::get_A() */, L_11); X9FieldElement_t153792155C814A48E98DBBBF3BF3B5055CC18EA2 * L_13 = (X9FieldElement_t153792155C814A48E98DBBBF3BF3B5055CC18EA2 *)il2cpp_codegen_object_new(X9FieldElement_t153792155C814A48E98DBBBF3BF3B5055CC18EA2_il2cpp_TypeInfo_var); X9FieldElement__ctor_m243BD1924ED249F96FB776A62AACCC4EA150D1CF(L_13, L_12, /*hidden argument*/NULL); NullCheck(L_13); Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * L_14; L_14 = VirtualFuncInvoker0< Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * >::Invoke(5 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Object BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable::ToAsn1Object() */, L_13); NullCheck(L_10); ArrayElementTypeCheck (L_10, L_14); (L_10)->SetAt(static_cast(0), (Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *)L_14); NullCheck(L_8); Asn1EncodableVector_Add_m6EF01E6775CA3C122AC78B760B5C8AB13AC83EA8(L_8, L_10, /*hidden argument*/NULL); // v.Add(new X9FieldElement(curve.B).ToAsn1Object()); Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 * L_15 = V_0; Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_16 = (Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE*)(Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE*)SZArrayNew(Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE_il2cpp_TypeInfo_var, (uint32_t)1); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_17 = L_16; ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * L_18 = __this->get_curve_2(); NullCheck(L_18); ECFieldElement_t5B3E4EB355D81F73F6FAC09A042BE908A9631117 * L_19; L_19 = VirtualFuncInvoker0< ECFieldElement_t5B3E4EB355D81F73F6FAC09A042BE908A9631117 * >::Invoke(25 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECFieldElement BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECCurve::get_B() */, L_18); X9FieldElement_t153792155C814A48E98DBBBF3BF3B5055CC18EA2 * L_20 = (X9FieldElement_t153792155C814A48E98DBBBF3BF3B5055CC18EA2 *)il2cpp_codegen_object_new(X9FieldElement_t153792155C814A48E98DBBBF3BF3B5055CC18EA2_il2cpp_TypeInfo_var); X9FieldElement__ctor_m243BD1924ED249F96FB776A62AACCC4EA150D1CF(L_20, L_19, /*hidden argument*/NULL); NullCheck(L_20); Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * L_21; L_21 = VirtualFuncInvoker0< Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * >::Invoke(5 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Object BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable::ToAsn1Object() */, L_20); NullCheck(L_17); ArrayElementTypeCheck (L_17, L_21); (L_17)->SetAt(static_cast(0), (Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *)L_21); NullCheck(L_15); Asn1EncodableVector_Add_m6EF01E6775CA3C122AC78B760B5C8AB13AC83EA8(L_15, L_17, /*hidden argument*/NULL); } IL_0077: { // if (seed != null) ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_22 = __this->get_seed_3(); if (!L_22) { goto IL_0099; } } { // v.Add(new DerBitString(seed)); Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 * L_23 = V_0; Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_24 = (Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE*)(Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE*)SZArrayNew(Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE_il2cpp_TypeInfo_var, (uint32_t)1); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_25 = L_24; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_26 = __this->get_seed_3(); DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * L_27 = (DerBitString_t305465793A47445626D3541AB8CEDE347D874524 *)il2cpp_codegen_object_new(DerBitString_t305465793A47445626D3541AB8CEDE347D874524_il2cpp_TypeInfo_var); DerBitString__ctor_m97AF53404F6333EA146C0DB958DF3C483B71D94B(L_27, L_26, /*hidden argument*/NULL); NullCheck(L_25); ArrayElementTypeCheck (L_25, L_27); (L_25)->SetAt(static_cast(0), (Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *)L_27); NullCheck(L_23); Asn1EncodableVector_Add_m6EF01E6775CA3C122AC78B760B5C8AB13AC83EA8(L_23, L_25, /*hidden argument*/NULL); } IL_0099: { // return new DerSequence(v); Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 * L_28 = V_0; DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 * L_29 = (DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 *)il2cpp_codegen_object_new(DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09_il2cpp_TypeInfo_var); DerSequence__ctor_mC969ECDC21E6B8169D0B78BE04B3A08192E13164(L_29, L_28, /*hidden argument*/NULL); return L_29; } } #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 // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParameters BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParameters::GetInstance(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639 * X9ECParameters_GetInstance_m40D6FA9C683109BAC225C4794F8F5CADD13EB442 (RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (obj is X9ECParameters) RuntimeObject * L_0 = ___obj0; if (!((X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639 *)IsInstClass((RuntimeObject*)L_0, X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639_il2cpp_TypeInfo_var))) { goto IL_000f; } } { // return (X9ECParameters)obj; RuntimeObject * L_1 = ___obj0; return ((X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639 *)CastclassClass((RuntimeObject*)L_1, X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639_il2cpp_TypeInfo_var)); } IL_000f: { // if (obj != null) RuntimeObject * L_2 = ___obj0; if (!L_2) { goto IL_001e; } } { // return new X9ECParameters(Asn1Sequence.GetInstance(obj)); RuntimeObject * L_3 = ___obj0; Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_4; L_4 = Asn1Sequence_GetInstance_m53E4D5619D84F02123D6C3B6EA8E0EEEF86B244C(L_3, /*hidden argument*/NULL); X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639 * L_5 = (X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639 *)il2cpp_codegen_object_new(X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639_il2cpp_TypeInfo_var); X9ECParameters__ctor_m1BFE3A055B96908B6FB3DDFBE623F4F26C9B4D1B(L_5, L_4, /*hidden argument*/NULL); return L_5; } IL_001e: { // return null; return (X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639 *)NULL; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParameters::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X9ECParameters__ctor_m1BFE3A055B96908B6FB3DDFBE623F4F26C9B4D1B (X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639 * __this, Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * ___seq0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X9Curve_tE05684E0E4B3A1C4AC7B6DD81F6D6D20973C3AC9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X9ECPoint_t06D47967D73B459616A01610E0E5D88AB08BDF71_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } X9Curve_tE05684E0E4B3A1C4AC7B6DD81F6D6D20973C3AC9 * V_0 = NULL; RuntimeObject * V_1 = NULL; { // public X9ECParameters( // Asn1Sequence seq) Asn1Encodable__ctor_mF956C9DAF4A126B7B4406E2DD0EED16E64ABA126(__this, /*hidden argument*/NULL); // if (!(seq[0] is DerInteger) // || !((DerInteger)seq[0]).Value.Equals(BigInteger.One)) Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_0 = ___seq0; NullCheck(L_0); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_1; L_1 = VirtualFuncInvoker1< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *, int32_t >::Invoke(12 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Item(System.Int32) */, L_0, 0); if (!((DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 *)IsInstClass((RuntimeObject*)L_1, DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var))) { goto IL_0031; } } { Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_2 = ___seq0; NullCheck(L_2); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_3; L_3 = VirtualFuncInvoker1< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *, int32_t >::Invoke(12 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Item(System.Int32) */, L_2, 0); NullCheck(((DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 *)CastclassClass((RuntimeObject*)L_3, DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var))); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_4; L_4 = DerInteger_get_Value_m8C263058A637AE123BD47291A36538E05E374478(((DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 *)CastclassClass((RuntimeObject*)L_3, DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_il2cpp_TypeInfo_var); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_5 = ((BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_StaticFields*)il2cpp_codegen_static_fields_for(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_il2cpp_TypeInfo_var))->get_One_8(); NullCheck(L_4); bool L_6; L_6 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_4, L_5); if (L_6) { goto IL_003c; } } IL_0031: { // throw new ArgumentException("bad version in X9ECParameters"); 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*)&_stringLiteral675D79C0F519ECB971940EF19740A0B518D09B84)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X9ECParameters__ctor_m1BFE3A055B96908B6FB3DDFBE623F4F26C9B4D1B_RuntimeMethod_var))); } IL_003c: { // this.n = ((DerInteger)seq[4]).Value; Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_8 = ___seq0; NullCheck(L_8); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_9; L_9 = VirtualFuncInvoker1< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *, int32_t >::Invoke(12 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Item(System.Int32) */, L_8, 4); NullCheck(((DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 *)CastclassClass((RuntimeObject*)L_9, DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var))); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_10; L_10 = DerInteger_get_Value_m8C263058A637AE123BD47291A36538E05E374478(((DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 *)CastclassClass((RuntimeObject*)L_9, DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); __this->set_n_5(L_10); // if (seq.Count == 6) Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_11 = ___seq0; NullCheck(L_11); int32_t L_12; L_12 = VirtualFuncInvoker0< int32_t >::Invoke(13 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Count() */, L_11); if ((!(((uint32_t)L_12) == ((uint32_t)6)))) { goto IL_0073; } } { // this.h = ((DerInteger)seq[5]).Value; Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_13 = ___seq0; NullCheck(L_13); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_14; L_14 = VirtualFuncInvoker1< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *, int32_t >::Invoke(12 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Item(System.Int32) */, L_13, 5); NullCheck(((DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 *)CastclassClass((RuntimeObject*)L_14, DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var))); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_15; L_15 = DerInteger_get_Value_m8C263058A637AE123BD47291A36538E05E374478(((DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 *)CastclassClass((RuntimeObject*)L_14, DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); __this->set_h_6(L_15); } IL_0073: { // X9Curve x9c = new X9Curve( // X9FieldID.GetInstance(seq[1]), n, h, // Asn1Sequence.GetInstance(seq[2])); Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_16 = ___seq0; NullCheck(L_16); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_17; L_17 = VirtualFuncInvoker1< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *, int32_t >::Invoke(12 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Item(System.Int32) */, L_16, 1); X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8 * L_18; L_18 = X9FieldID_GetInstance_m183D9843C96D8877516F8D93BA6F38D7A71FF45A(L_17, /*hidden argument*/NULL); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_19 = __this->get_n_5(); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_20 = __this->get_h_6(); Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_21 = ___seq0; NullCheck(L_21); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_22; L_22 = VirtualFuncInvoker1< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *, int32_t >::Invoke(12 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Item(System.Int32) */, L_21, 2); Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_23; L_23 = Asn1Sequence_GetInstance_m53E4D5619D84F02123D6C3B6EA8E0EEEF86B244C(L_22, /*hidden argument*/NULL); X9Curve_tE05684E0E4B3A1C4AC7B6DD81F6D6D20973C3AC9 * L_24 = (X9Curve_tE05684E0E4B3A1C4AC7B6DD81F6D6D20973C3AC9 *)il2cpp_codegen_object_new(X9Curve_tE05684E0E4B3A1C4AC7B6DD81F6D6D20973C3AC9_il2cpp_TypeInfo_var); X9Curve__ctor_m954B3F1B487573FF81CFF93B026D5D4BC6E0FC0D(L_24, L_18, L_19, L_20, L_23, /*hidden argument*/NULL); V_0 = L_24; // this.curve = x9c.Curve; X9Curve_tE05684E0E4B3A1C4AC7B6DD81F6D6D20973C3AC9 * L_25 = V_0; NullCheck(L_25); ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * L_26; L_26 = X9Curve_get_Curve_mB57D18E227BF3B54F3E0B14A8E12EBBA90E6EA31_inline(L_25, /*hidden argument*/NULL); __this->set_curve_3(L_26); // object p = seq[3]; Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_27 = ___seq0; NullCheck(L_27); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_28; L_28 = VirtualFuncInvoker1< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *, int32_t >::Invoke(12 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Item(System.Int32) */, L_27, 3); V_1 = L_28; // if (p is X9ECPoint) RuntimeObject * L_29 = V_1; if (!((X9ECPoint_t06D47967D73B459616A01610E0E5D88AB08BDF71 *)IsInstClass((RuntimeObject*)L_29, X9ECPoint_t06D47967D73B459616A01610E0E5D88AB08BDF71_il2cpp_TypeInfo_var))) { goto IL_00c7; } } { // this.g = (X9ECPoint)p; RuntimeObject * L_30 = V_1; __this->set_g_4(((X9ECPoint_t06D47967D73B459616A01610E0E5D88AB08BDF71 *)CastclassClass((RuntimeObject*)L_30, X9ECPoint_t06D47967D73B459616A01610E0E5D88AB08BDF71_il2cpp_TypeInfo_var))); // } goto IL_00de; } IL_00c7: { // this.g = new X9ECPoint(curve, (Asn1OctetString)p); ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * L_31 = __this->get_curve_3(); RuntimeObject * L_32 = V_1; X9ECPoint_t06D47967D73B459616A01610E0E5D88AB08BDF71 * L_33 = (X9ECPoint_t06D47967D73B459616A01610E0E5D88AB08BDF71 *)il2cpp_codegen_object_new(X9ECPoint_t06D47967D73B459616A01610E0E5D88AB08BDF71_il2cpp_TypeInfo_var); X9ECPoint__ctor_m7820177D023F11B8B4312A923BCDD5B7218CD1AE(L_33, L_31, ((Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 *)CastclassClass((RuntimeObject*)L_32, Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); __this->set_g_4(L_33); } IL_00de: { // this.seed = x9c.GetSeed(); X9Curve_tE05684E0E4B3A1C4AC7B6DD81F6D6D20973C3AC9 * L_34 = V_0; NullCheck(L_34); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_35; L_35 = X9Curve_GetSeed_m03DD8A3A2738B50E662C423147B03748DF95D7C1(L_34, /*hidden argument*/NULL); __this->set_seed_7(L_35); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParameters::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECCurve,BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint,BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X9ECParameters__ctor_m0C2EEFC7CA848AE5E327E1AAD506AA8E3124623E (X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639 * __this, ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * ___curve0, ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * ___g1, BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___n2, const RuntimeMethod* method) { { // : this(curve, g, n, null, null) ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * L_0 = ___curve0; ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * L_1 = ___g1; BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_2 = ___n2; X9ECParameters__ctor_mA737D6CBEE1E58B420EECB33C2649E948857F032(__this, L_0, L_1, L_2, (BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 *)NULL, (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)NULL, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParameters::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECCurve,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECPoint,BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger,BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X9ECParameters__ctor_m6E1353B3F7A7076BDD522DB784F25C56F378EC02 (X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639 * __this, ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * ___curve0, X9ECPoint_t06D47967D73B459616A01610E0E5D88AB08BDF71 * ___g1, BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___n2, BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___h3, const RuntimeMethod* method) { { // : this(curve, g, n, h, null) ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * L_0 = ___curve0; X9ECPoint_t06D47967D73B459616A01610E0E5D88AB08BDF71 * L_1 = ___g1; BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_2 = ___n2; BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_3 = ___h3; X9ECParameters__ctor_m6A7AF27CFE350EE199022E32754A845EBF2E4D0C(__this, L_0, L_1, L_2, L_3, (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)NULL, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParameters::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECCurve,BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint,BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger,BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X9ECParameters__ctor_m67757DAE7E44122F91C73B64513962A39CAF99EE (X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639 * __this, ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * ___curve0, ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * ___g1, BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___n2, BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___h3, const RuntimeMethod* method) { { // : this(curve, g, n, h, null) ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * L_0 = ___curve0; ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * L_1 = ___g1; BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_2 = ___n2; BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_3 = ___h3; X9ECParameters__ctor_mA737D6CBEE1E58B420EECB33C2649E948857F032(__this, L_0, L_1, L_2, L_3, (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)NULL, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParameters::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECCurve,BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint,BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger,BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger,System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X9ECParameters__ctor_mA737D6CBEE1E58B420EECB33C2649E948857F032 (X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639 * __this, ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * ___curve0, ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * ___g1, BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___n2, BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___h3, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___seed4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X9ECPoint_t06D47967D73B459616A01610E0E5D88AB08BDF71_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // : this(curve, new X9ECPoint(g), n, h, seed) ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * L_0 = ___curve0; ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * L_1 = ___g1; X9ECPoint_t06D47967D73B459616A01610E0E5D88AB08BDF71 * L_2 = (X9ECPoint_t06D47967D73B459616A01610E0E5D88AB08BDF71 *)il2cpp_codegen_object_new(X9ECPoint_t06D47967D73B459616A01610E0E5D88AB08BDF71_il2cpp_TypeInfo_var); X9ECPoint__ctor_mEB05BDEE85557A89A5933164DA476D3B982A51A0(L_2, L_1, /*hidden argument*/NULL); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_3 = ___n2; BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_4 = ___h3; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_5 = ___seed4; X9ECParameters__ctor_m6A7AF27CFE350EE199022E32754A845EBF2E4D0C(__this, L_0, L_2, L_3, L_4, L_5, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParameters::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECCurve,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECPoint,BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger,BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger,System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X9ECParameters__ctor_m6A7AF27CFE350EE199022E32754A845EBF2E4D0C (X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639 * __this, ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * ___curve0, X9ECPoint_t06D47967D73B459616A01610E0E5D88AB08BDF71 * ___g1, BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___n2, BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___h3, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___seed4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IFiniteField_t93F742CE2136665713411FB881C26BD6E901868C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPolynomialExtensionField_t969265F2B050C50E58B08B2FF8C6390DEE0895D7_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPolynomial_t32E76F737ABA75130C2897D9222256285C455755_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* V_0 = NULL; { // public X9ECParameters( // ECCurve curve, // X9ECPoint g, // BigInteger n, // BigInteger h, // byte[] seed) Asn1Encodable__ctor_mF956C9DAF4A126B7B4406E2DD0EED16E64ABA126(__this, /*hidden argument*/NULL); // this.curve = curve; ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * L_0 = ___curve0; __this->set_curve_3(L_0); // this.g = g; X9ECPoint_t06D47967D73B459616A01610E0E5D88AB08BDF71 * L_1 = ___g1; __this->set_g_4(L_1); // this.n = n; BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_2 = ___n2; __this->set_n_5(L_2); // this.h = h; BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_3 = ___h3; __this->set_h_6(L_3); // this.seed = seed; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = ___seed4; __this->set_seed_7(L_4); // if (ECAlgorithms.IsFpCurve(curve)) ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * L_5 = ___curve0; bool L_6; L_6 = ECAlgorithms_IsFpCurve_mA01474701D54E9F861242D8FE202EC606F08BD4B(L_5, /*hidden argument*/NULL); if (!L_6) { goto IL_004a; } } { // this.fieldID = new X9FieldID(curve.Field.Characteristic); ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * L_7 = ___curve0; NullCheck(L_7); RuntimeObject* L_8; L_8 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(23 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Math.Field.IFiniteField BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECCurve::get_Field() */, L_7); NullCheck(L_8); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_9; L_9 = InterfaceFuncInvoker0< BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * >::Invoke(0 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Math.Field.IFiniteField::get_Characteristic() */, IFiniteField_t93F742CE2136665713411FB881C26BD6E901868C_il2cpp_TypeInfo_var, L_8); X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8 * L_10 = (X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8 *)il2cpp_codegen_object_new(X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8_il2cpp_TypeInfo_var); X9FieldID__ctor_m0E2D2D63DA2D3D6F6143D54276FE02FEA178FA24(L_10, L_9, /*hidden argument*/NULL); __this->set_fieldID_2(L_10); // } return; } IL_004a: { // else if (ECAlgorithms.IsF2mCurve(curve)) ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * L_11 = ___curve0; bool L_12; L_12 = ECAlgorithms_IsF2mCurve_mBC2B648E300361FD94E128150D3275471E177161(L_11, /*hidden argument*/NULL); if (!L_12) { goto IL_00a9; } } { // IPolynomialExtensionField field = (IPolynomialExtensionField)curve.Field; ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * L_13 = ___curve0; NullCheck(L_13); RuntimeObject* L_14; L_14 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(23 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Math.Field.IFiniteField BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECCurve::get_Field() */, L_13); // int[] exponents = field.MinimalPolynomial.GetExponentsPresent(); NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_14, IPolynomialExtensionField_t969265F2B050C50E58B08B2FF8C6390DEE0895D7_il2cpp_TypeInfo_var))); RuntimeObject* L_15; L_15 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Math.Field.IPolynomial BestHTTP.SecureProtocol.Org.BouncyCastle.Math.Field.IPolynomialExtensionField::get_MinimalPolynomial() */, IPolynomialExtensionField_t969265F2B050C50E58B08B2FF8C6390DEE0895D7_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_14, IPolynomialExtensionField_t969265F2B050C50E58B08B2FF8C6390DEE0895D7_il2cpp_TypeInfo_var))); NullCheck(L_15); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_16; L_16 = InterfaceFuncInvoker0< Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* >::Invoke(1 /* System.Int32[] BestHTTP.SecureProtocol.Org.BouncyCastle.Math.Field.IPolynomial::GetExponentsPresent() */, IPolynomial_t32E76F737ABA75130C2897D9222256285C455755_il2cpp_TypeInfo_var, L_15); V_0 = L_16; // if (exponents.Length == 3) Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_17 = V_0; NullCheck(L_17); if ((!(((uint32_t)((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length)))) == ((uint32_t)3)))) { goto IL_0080; } } { // this.fieldID = new X9FieldID(exponents[2], exponents[1]); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_18 = V_0; NullCheck(L_18); int32_t L_19 = 2; int32_t L_20 = (L_18)->GetAt(static_cast(L_19)); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_21 = V_0; NullCheck(L_21); int32_t L_22 = 1; int32_t L_23 = (L_21)->GetAt(static_cast(L_22)); X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8 * L_24 = (X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8 *)il2cpp_codegen_object_new(X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8_il2cpp_TypeInfo_var); X9FieldID__ctor_mA5C5B78442E310E5C1A89BA8BBF2442ED9EA019F(L_24, L_20, L_23, /*hidden argument*/NULL); __this->set_fieldID_2(L_24); // } return; } IL_0080: { // else if (exponents.Length == 5) Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_25 = V_0; NullCheck(L_25); if ((!(((uint32_t)((int32_t)((int32_t)(((RuntimeArray*)L_25)->max_length)))) == ((uint32_t)5)))) { goto IL_009e; } } { // this.fieldID = new X9FieldID(exponents[4], exponents[1], exponents[2], exponents[3]); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_26 = V_0; NullCheck(L_26); int32_t L_27 = 4; int32_t L_28 = (L_26)->GetAt(static_cast(L_27)); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_29 = V_0; NullCheck(L_29); int32_t L_30 = 1; int32_t L_31 = (L_29)->GetAt(static_cast(L_30)); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_32 = V_0; NullCheck(L_32); int32_t L_33 = 2; int32_t L_34 = (L_32)->GetAt(static_cast(L_33)); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_35 = V_0; NullCheck(L_35); int32_t L_36 = 3; int32_t L_37 = (L_35)->GetAt(static_cast(L_36)); X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8 * L_38 = (X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8 *)il2cpp_codegen_object_new(X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8_il2cpp_TypeInfo_var); X9FieldID__ctor_mF506790D5BB59536539E54AD472B25614F541B93(L_38, L_28, L_31, L_34, L_37, /*hidden argument*/NULL); __this->set_fieldID_2(L_38); // } return; } IL_009e: { // throw new ArgumentException("Only trinomial and pentomial curves are supported"); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_39 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_39, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDB77F5662969C68C9C6D5ECF666ADD5C9D634441)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_39, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X9ECParameters__ctor_m6A7AF27CFE350EE199022E32754A845EBF2E4D0C_RuntimeMethod_var))); } IL_00a9: { // throw new ArgumentException("'curve' is of an unsupported type"); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_40 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_40, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral70E489F8299BDFFB0840F122BA07A5BEF2A1A604)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_40, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X9ECParameters__ctor_m6A7AF27CFE350EE199022E32754A845EBF2E4D0C_RuntimeMethod_var))); } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECCurve BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParameters::get_Curve() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * X9ECParameters_get_Curve_m1BC4F848F8E72563287A1FA9395C9E3ECD2FCD23 (X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639 * __this, const RuntimeMethod* method) { { // get { return curve; } ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * L_0 = __this->get_curve_3(); return L_0; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParameters::get_G() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * X9ECParameters_get_G_m3E5E2F14805084623F3ABD4B9A98CDB8A72D2C71 (X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639 * __this, const RuntimeMethod* method) { { // get { return g.Point; } X9ECPoint_t06D47967D73B459616A01610E0E5D88AB08BDF71 * L_0 = __this->get_g_4(); NullCheck(L_0); ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * L_1; L_1 = X9ECPoint_get_Point_mCCB3B52E0B2A6160E36C9582B39E2117C3E572DE(L_0, /*hidden argument*/NULL); return L_1; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParameters::get_N() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * X9ECParameters_get_N_mA5FBAFD92C027D5B545F8CBD8D9C77A01B950EAA (X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639 * __this, const RuntimeMethod* method) { { // get { return n; } BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_0 = __this->get_n_5(); return L_0; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParameters::get_H() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * X9ECParameters_get_H_m14081C62E77B14A1088C1A3494E8BCB77BB0564C (X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639 * __this, const RuntimeMethod* method) { { // get { return h; } BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_0 = __this->get_h_6(); return L_0; } } // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParameters::GetSeed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* X9ECParameters_GetSeed_mBF568758D960F3414ED0AF05FA4C66DFE46ED05C (X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639 * __this, const RuntimeMethod* method) { { // return seed; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = __this->get_seed_7(); return L_0; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9Curve BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParameters::get_CurveEntry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X9Curve_tE05684E0E4B3A1C4AC7B6DD81F6D6D20973C3AC9 * X9ECParameters_get_CurveEntry_m4883BB22E02D26EFE5D92CE649506DB2EE70BC19 (X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X9Curve_tE05684E0E4B3A1C4AC7B6DD81F6D6D20973C3AC9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // get { return new X9Curve(curve, seed); } ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * L_0 = __this->get_curve_3(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = __this->get_seed_7(); X9Curve_tE05684E0E4B3A1C4AC7B6DD81F6D6D20973C3AC9 * L_2 = (X9Curve_tE05684E0E4B3A1C4AC7B6DD81F6D6D20973C3AC9 *)il2cpp_codegen_object_new(X9Curve_tE05684E0E4B3A1C4AC7B6DD81F6D6D20973C3AC9_il2cpp_TypeInfo_var); X9Curve__ctor_m633F4D1ABDE4E23226E61E707C979247A44C5AF1(L_2, L_0, L_1, /*hidden argument*/NULL); return L_2; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9FieldID BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParameters::get_FieldIDEntry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8 * X9ECParameters_get_FieldIDEntry_m549F966F1D867815E71E4768732DBEA4AFA4BF9A (X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639 * __this, const RuntimeMethod* method) { { // get { return fieldID; } X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8 * L_0 = __this->get_fieldID_2(); return L_0; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECPoint BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParameters::get_BaseEntry() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X9ECPoint_t06D47967D73B459616A01610E0E5D88AB08BDF71 * X9ECParameters_get_BaseEntry_mAFD350E01A71F9731F756C0017329C9765A7F0B8 (X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639 * __this, const RuntimeMethod* method) { { // get { return g; } X9ECPoint_t06D47967D73B459616A01610E0E5D88AB08BDF71 * L_0 = __this->get_g_4(); return L_0; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Object BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParameters::ToAsn1Object() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * X9ECParameters_ToAsn1Object_m88DA2705214E5D6699E7B710CFBC383534A71BA3 (X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X9Curve_tE05684E0E4B3A1C4AC7B6DD81F6D6D20973C3AC9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 * V_0 = NULL; { // Asn1EncodableVector v = new Asn1EncodableVector( // new DerInteger(BigInteger.One), // fieldID, // new X9Curve(curve, seed), // g, // new DerInteger(n)); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_0 = (Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE*)(Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE*)SZArrayNew(Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE_il2cpp_TypeInfo_var, (uint32_t)5); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_1 = L_0; IL2CPP_RUNTIME_CLASS_INIT(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_il2cpp_TypeInfo_var); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_2 = ((BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_StaticFields*)il2cpp_codegen_static_fields_for(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_il2cpp_TypeInfo_var))->get_One_8(); DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * L_3 = (DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 *)il2cpp_codegen_object_new(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var); DerInteger__ctor_m612C6B5423FEC812F2B14987AF4D153C141750F0(L_3, L_2, /*hidden argument*/NULL); NullCheck(L_1); ArrayElementTypeCheck (L_1, L_3); (L_1)->SetAt(static_cast(0), (Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *)L_3); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_4 = L_1; X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8 * L_5 = __this->get_fieldID_2(); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_5); (L_4)->SetAt(static_cast(1), (Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *)L_5); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_6 = L_4; ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * L_7 = __this->get_curve_3(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_8 = __this->get_seed_7(); X9Curve_tE05684E0E4B3A1C4AC7B6DD81F6D6D20973C3AC9 * L_9 = (X9Curve_tE05684E0E4B3A1C4AC7B6DD81F6D6D20973C3AC9 *)il2cpp_codegen_object_new(X9Curve_tE05684E0E4B3A1C4AC7B6DD81F6D6D20973C3AC9_il2cpp_TypeInfo_var); X9Curve__ctor_m633F4D1ABDE4E23226E61E707C979247A44C5AF1(L_9, L_7, L_8, /*hidden argument*/NULL); NullCheck(L_6); ArrayElementTypeCheck (L_6, L_9); (L_6)->SetAt(static_cast(2), (Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *)L_9); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_10 = L_6; X9ECPoint_t06D47967D73B459616A01610E0E5D88AB08BDF71 * L_11 = __this->get_g_4(); NullCheck(L_10); ArrayElementTypeCheck (L_10, L_11); (L_10)->SetAt(static_cast(3), (Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *)L_11); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_12 = L_10; BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_13 = __this->get_n_5(); DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * L_14 = (DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 *)il2cpp_codegen_object_new(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var); DerInteger__ctor_m612C6B5423FEC812F2B14987AF4D153C141750F0(L_14, L_13, /*hidden argument*/NULL); NullCheck(L_12); ArrayElementTypeCheck (L_12, L_14); (L_12)->SetAt(static_cast(4), (Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *)L_14); Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 * L_15 = (Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 *)il2cpp_codegen_object_new(Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3_il2cpp_TypeInfo_var); Asn1EncodableVector__ctor_m1306EB1064C0D4EEC59EA15F8DFF81952B7AE7DE(L_15, L_12, /*hidden argument*/NULL); V_0 = L_15; // if (h != null) BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_16 = __this->get_h_6(); if (!L_16) { goto IL_006f; } } { // v.Add(new DerInteger(h)); Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 * L_17 = V_0; Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_18 = (Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE*)(Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE*)SZArrayNew(Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE_il2cpp_TypeInfo_var, (uint32_t)1); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_19 = L_18; BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_20 = __this->get_h_6(); DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * L_21 = (DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 *)il2cpp_codegen_object_new(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var); DerInteger__ctor_m612C6B5423FEC812F2B14987AF4D153C141750F0(L_21, L_20, /*hidden argument*/NULL); NullCheck(L_19); ArrayElementTypeCheck (L_19, L_21); (L_19)->SetAt(static_cast(0), (Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *)L_21); NullCheck(L_17); Asn1EncodableVector_Add_m6EF01E6775CA3C122AC78B760B5C8AB13AC83EA8(L_17, L_19, /*hidden argument*/NULL); } IL_006f: { // return new DerSequence(v); Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 * L_22 = V_0; DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 * L_23 = (DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 *)il2cpp_codegen_object_new(DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09_il2cpp_TypeInfo_var); DerSequence__ctor_mC969ECDC21E6B8169D0B78BE04B3A08192E13164(L_23, L_22, /*hidden argument*/NULL); return L_23; } } #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 // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParameters BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParametersHolder::get_Parameters() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639 * X9ECParametersHolder_get_Parameters_mB00729430BDF213E3441EB5FB1562DCD11D65D6A (X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * __this, const RuntimeMethod* method) { X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * V_0 = NULL; bool V_1 = false; X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639 * V_2 = NULL; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; { // lock (this) V_0 = __this; V_1 = (bool)0; } IL_0004: try {// begin try (depth: 1) { X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * L_0 = V_0; Monitor_Enter_mBEB6CC84184B46F26375EC3FC8921D16E48EA4C4(L_0, (bool*)(&V_1), /*hidden argument*/NULL); // if (parameters == null) X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639 * L_1 = __this->get_parameters_0(); if (L_1) { goto IL_0020; } } IL_0014: { // parameters = CreateParameters(); X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639 * L_2; L_2 = VirtualFuncInvoker0< X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639 * >::Invoke(4 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParameters BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParametersHolder::CreateParameters() */, __this); __this->set_parameters_0(L_2); } IL_0020: { // return parameters; X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639 * L_3 = __this->get_parameters_0(); V_2 = L_3; IL2CPP_LEAVE(0x33, FINALLY_0029); } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0029; } FINALLY_0029: {// begin finally (depth: 1) { bool L_4 = V_1; if (!L_4) { goto IL_0032; } } IL_002c: { X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * L_5 = V_0; Monitor_Exit_mA776B403DA88AC77CDEEF67AB9F0D0E77ABD254A(L_5, /*hidden argument*/NULL); } IL_0032: { IL2CPP_END_FINALLY(41) } }// end finally (depth: 1) IL2CPP_CLEANUP(41) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x33, IL_0033) } IL_0033: { // } X9ECParameters_tB28B6062173497FECD7BE710F3F948B2F968D639 * L_6 = V_2; return L_6; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECParametersHolder::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X9ECParametersHolder__ctor_m52A8D51881A4012562D94187793B1AB29ACD02C9 (X9ECParametersHolder_tAAD67EA00A8E7DC7C6F765BD065892EF235EDEFC * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECPoint::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X9ECPoint__ctor_mEB05BDEE85557A89A5933164DA476D3B982A51A0 (X9ECPoint_t06D47967D73B459616A01610E0E5D88AB08BDF71 * __this, ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * ___p0, const RuntimeMethod* method) { { // : this(p, false) ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * L_0 = ___p0; X9ECPoint__ctor_mDB1886F4D4B353A2CFA958D78AD2C4A2A50FDCC6(__this, L_0, (bool)0, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECPoint::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X9ECPoint__ctor_mDB1886F4D4B353A2CFA958D78AD2C4A2A50FDCC6 (X9ECPoint_t06D47967D73B459616A01610E0E5D88AB08BDF71 * __this, ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * ___p0, bool ___compressed1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public X9ECPoint(ECPoint p, bool compressed) Asn1Encodable__ctor_mF956C9DAF4A126B7B4406E2DD0EED16E64ABA126(__this, /*hidden argument*/NULL); // this.p = p.Normalize(); ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * L_0 = ___p0; NullCheck(L_0); ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * L_1; L_1 = VirtualFuncInvoker0< ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * >::Invoke(17 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint::Normalize() */, L_0); __this->set_p_4(L_1); // this.encoding = new DerOctetString(p.GetEncoded(compressed)); ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * L_2 = ___p0; bool L_3 = ___compressed1; NullCheck(L_2); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4; L_4 = VirtualFuncInvoker1< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, bool >::Invoke(24 /* System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint::GetEncoded(System.Boolean) */, L_2, L_3); DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75 * L_5 = (DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75 *)il2cpp_codegen_object_new(DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75_il2cpp_TypeInfo_var); DerOctetString__ctor_mBD13EC2203DF652C61E5AB45AE95CC51A22F0AF2(L_5, L_4, /*hidden argument*/NULL); __this->set_encoding_2(L_5); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECPoint::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECCurve,System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X9ECPoint__ctor_mF5AFC1B759EE7CC4B9EF5E474819892C76A8D7EB (X9ECPoint_t06D47967D73B459616A01610E0E5D88AB08BDF71 * __this, ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * ___c0, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___encoding1, 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*)&DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public X9ECPoint(ECCurve c, byte[] encoding) Asn1Encodable__ctor_mF956C9DAF4A126B7B4406E2DD0EED16E64ABA126(__this, /*hidden argument*/NULL); // this.c = c; ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * L_0 = ___c0; __this->set_c_3(L_0); // this.encoding = new DerOctetString(Arrays.Clone(encoding)); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = ___encoding1; IL2CPP_RUNTIME_CLASS_INIT(Arrays_t7CFD09DA7425047721E193958DAC5AB0FCFF67BF_il2cpp_TypeInfo_var); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2; L_2 = Arrays_Clone_m362B6E8EAA394ABF566EABAF08A37C8232D398D8(L_1, /*hidden argument*/NULL); DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75 * L_3 = (DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75 *)il2cpp_codegen_object_new(DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75_il2cpp_TypeInfo_var); DerOctetString__ctor_mBD13EC2203DF652C61E5AB45AE95CC51A22F0AF2(L_3, L_2, /*hidden argument*/NULL); __this->set_encoding_2(L_3); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECPoint::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECCurve,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X9ECPoint__ctor_m7820177D023F11B8B4312A923BCDD5B7218CD1AE (X9ECPoint_t06D47967D73B459616A01610E0E5D88AB08BDF71 * __this, ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * ___c0, Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * ___s1, const RuntimeMethod* method) { { // : this(c, s.GetOctets()) ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * L_0 = ___c0; Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * L_1 = ___s1; NullCheck(L_1); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2; L_2 = VirtualFuncInvoker0< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* >::Invoke(10 /* System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString::GetOctets() */, L_1); X9ECPoint__ctor_mF5AFC1B759EE7CC4B9EF5E474819892C76A8D7EB(__this, L_0, L_2, /*hidden argument*/NULL); // } return; } } // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECPoint::GetPointEncoding() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* X9ECPoint_GetPointEncoding_m21CFBF26D376FD1C0798F655B2D9590EBC1CA456 (X9ECPoint_t06D47967D73B459616A01610E0E5D88AB08BDF71 * __this, 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; } { // return Arrays.Clone(encoding.GetOctets()); Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * L_0 = __this->get_encoding_2(); NullCheck(L_0); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1; L_1 = VirtualFuncInvoker0< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* >::Invoke(10 /* System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString::GetOctets() */, L_0); IL2CPP_RUNTIME_CLASS_INIT(Arrays_t7CFD09DA7425047721E193958DAC5AB0FCFF67BF_il2cpp_TypeInfo_var); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2; L_2 = Arrays_Clone_m362B6E8EAA394ABF566EABAF08A37C8232D398D8(L_1, /*hidden argument*/NULL); return L_2; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECPoint::get_Point() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * X9ECPoint_get_Point_mCCB3B52E0B2A6160E36C9582B39E2117C3E572DE (X9ECPoint_t06D47967D73B459616A01610E0E5D88AB08BDF71 * __this, const RuntimeMethod* method) { { // if (p == null) ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * L_0 = __this->get_p_4(); if (L_0) { goto IL_0029; } } { // p = c.DecodePoint(encoding.GetOctets()).Normalize(); ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * L_1 = __this->get_c_3(); Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * L_2 = __this->get_encoding_2(); NullCheck(L_2); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_3; L_3 = VirtualFuncInvoker0< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* >::Invoke(10 /* System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString::GetOctets() */, L_2); NullCheck(L_1); ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * L_4; L_4 = VirtualFuncInvoker1< ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA *, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* >::Invoke(37 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECCurve::DecodePoint(System.Byte[]) */, L_1, L_3); NullCheck(L_4); ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * L_5; L_5 = VirtualFuncInvoker0< ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * >::Invoke(17 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint::Normalize() */, L_4); __this->set_p_4(L_5); } IL_0029: { // return p; ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * L_6 = __this->get_p_4(); return L_6; } } // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECPoint::get_IsPointCompressed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool X9ECPoint_get_IsPointCompressed_m976293E18C04D68CB6E0AAA1EBE4CB9C1D8DF9A8 (X9ECPoint_t06D47967D73B459616A01610E0E5D88AB08BDF71 * __this, const RuntimeMethod* method) { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_0 = NULL; { // byte[] octets = encoding.GetOctets(); Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * L_0 = __this->get_encoding_2(); NullCheck(L_0); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1; L_1 = VirtualFuncInvoker0< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* >::Invoke(10 /* System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString::GetOctets() */, L_0); V_0 = L_1; // return octets != null && octets.Length > 0 && (octets[0] == 2 || octets[0] == 3); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = V_0; if (!L_2) { goto IL_0022; } } { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_3 = V_0; NullCheck(L_3); if (!(((RuntimeArray*)L_3)->max_length)) { goto IL_0022; } } { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = V_0; NullCheck(L_4); int32_t L_5 = 0; uint8_t L_6 = (L_4)->GetAt(static_cast(L_5)); if ((((int32_t)L_6) == ((int32_t)2))) { goto IL_0020; } } { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_7 = V_0; NullCheck(L_7); int32_t L_8 = 0; uint8_t L_9 = (L_7)->GetAt(static_cast(L_8)); return (bool)((((int32_t)L_9) == ((int32_t)3))? 1 : 0); } IL_0020: { return (bool)1; } IL_0022: { return (bool)0; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Object BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ECPoint::ToAsn1Object() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * X9ECPoint_ToAsn1Object_mA8BC16E1EB20E3186E25AB8BF95996E75C922FD4 (X9ECPoint_t06D47967D73B459616A01610E0E5D88AB08BDF71 * __this, const RuntimeMethod* method) { { // return encoding; Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * L_0 = __this->get_encoding_2(); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9FieldElement::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECFieldElement) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X9FieldElement__ctor_m243BD1924ED249F96FB776A62AACCC4EA150D1CF (X9FieldElement_t153792155C814A48E98DBBBF3BF3B5055CC18EA2 * __this, ECFieldElement_t5B3E4EB355D81F73F6FAC09A042BE908A9631117 * ___f0, const RuntimeMethod* method) { { // public X9FieldElement( // ECFieldElement f) Asn1Encodable__ctor_mF956C9DAF4A126B7B4406E2DD0EED16E64ABA126(__this, /*hidden argument*/NULL); // this.f = f; ECFieldElement_t5B3E4EB355D81F73F6FAC09A042BE908A9631117 * L_0 = ___f0; __this->set_f_2(L_0); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9FieldElement::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X9FieldElement__ctor_m8F27B32AFE26A55A5C5FE6830D8827D7E0FF0680 (X9FieldElement_t153792155C814A48E98DBBBF3BF3B5055CC18EA2 * __this, BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___p0, Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * ___s1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FpFieldElement_t14F5497CB64CC40A592A8313C210D3CBA9C54629_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // : this(new FpFieldElement(p, new BigInteger(1, s.GetOctets()))) BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_0 = ___p0; Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * L_1 = ___s1; NullCheck(L_1); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2; L_2 = VirtualFuncInvoker0< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* >::Invoke(10 /* System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString::GetOctets() */, L_1); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_3 = (BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 *)il2cpp_codegen_object_new(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_il2cpp_TypeInfo_var); BigInteger__ctor_m2790E6F992AE637CEB82161CD2D56E1E0008F81A(L_3, 1, L_2, /*hidden argument*/NULL); FpFieldElement_t14F5497CB64CC40A592A8313C210D3CBA9C54629 * L_4 = (FpFieldElement_t14F5497CB64CC40A592A8313C210D3CBA9C54629 *)il2cpp_codegen_object_new(FpFieldElement_t14F5497CB64CC40A592A8313C210D3CBA9C54629_il2cpp_TypeInfo_var); FpFieldElement__ctor_m0146BB80200DFE870E614FD943241DAAC611C81C(L_4, L_0, L_3, /*hidden argument*/NULL); X9FieldElement__ctor_m243BD1924ED249F96FB776A62AACCC4EA150D1CF(__this, L_4, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9FieldElement::.ctor(System.Int32,System.Int32,System.Int32,System.Int32,BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X9FieldElement__ctor_m80B81E247A3F10D66E5D64C71D2C10415B71BF44 (X9FieldElement_t153792155C814A48E98DBBBF3BF3B5055CC18EA2 * __this, int32_t ___m0, int32_t ___k11, int32_t ___k22, int32_t ___k33, Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * ___s4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&F2mFieldElement_t3C569642A15A78530B72B61257476BF41C52797E_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // : this(new F2mFieldElement(m, k1, k2, k3, new BigInteger(1, s.GetOctets()))) int32_t L_0 = ___m0; int32_t L_1 = ___k11; int32_t L_2 = ___k22; int32_t L_3 = ___k33; Asn1OctetString_t7DE556419EB1B1398F915CE1EC7F0CB1D8FC85B8 * L_4 = ___s4; NullCheck(L_4); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_5; L_5 = VirtualFuncInvoker0< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* >::Invoke(10 /* System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1OctetString::GetOctets() */, L_4); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_6 = (BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 *)il2cpp_codegen_object_new(BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9_il2cpp_TypeInfo_var); BigInteger__ctor_m2790E6F992AE637CEB82161CD2D56E1E0008F81A(L_6, 1, L_5, /*hidden argument*/NULL); F2mFieldElement_t3C569642A15A78530B72B61257476BF41C52797E * L_7 = (F2mFieldElement_t3C569642A15A78530B72B61257476BF41C52797E *)il2cpp_codegen_object_new(F2mFieldElement_t3C569642A15A78530B72B61257476BF41C52797E_il2cpp_TypeInfo_var); F2mFieldElement__ctor_mC4A74CB5ED87786552AAB52286ED16156A21014C(L_7, L_0, L_1, L_2, L_3, L_6, /*hidden argument*/NULL); X9FieldElement__ctor_m243BD1924ED249F96FB776A62AACCC4EA150D1CF(__this, L_7, /*hidden argument*/NULL); // } return; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECFieldElement BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9FieldElement::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ECFieldElement_t5B3E4EB355D81F73F6FAC09A042BE908A9631117 * X9FieldElement_get_Value_m2B0FE401FE26F4E55DAA357AE863D7EC0003291F (X9FieldElement_t153792155C814A48E98DBBBF3BF3B5055CC18EA2 * __this, const RuntimeMethod* method) { { // get { return f; } ECFieldElement_t5B3E4EB355D81F73F6FAC09A042BE908A9631117 * L_0 = __this->get_f_2(); return L_0; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Object BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9FieldElement::ToAsn1Object() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * X9FieldElement_ToAsn1Object_m013231960953A333A85092E5C7758F45460AE4D7 (X9FieldElement_t153792155C814A48E98DBBBF3BF3B5055CC18EA2 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { // int byteCount = X9IntegerConverter.GetByteLength(f); ECFieldElement_t5B3E4EB355D81F73F6FAC09A042BE908A9631117 * L_0 = __this->get_f_2(); int32_t L_1; L_1 = X9IntegerConverter_GetByteLength_m931E94479D6C0483754814793EE42F604F2ED7BC(L_0, /*hidden argument*/NULL); V_0 = L_1; // byte[] paddedBigInteger = X9IntegerConverter.IntegerToBytes(f.ToBigInteger(), byteCount); ECFieldElement_t5B3E4EB355D81F73F6FAC09A042BE908A9631117 * L_2 = __this->get_f_2(); NullCheck(L_2); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_3; L_3 = VirtualFuncInvoker0< BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * >::Invoke(4 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECFieldElement::ToBigInteger() */, L_2); int32_t L_4 = V_0; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_5; L_5 = X9IntegerConverter_IntegerToBytes_m192434ABE05AFFEA0C3F144E169BA2D46965AEC9(L_3, L_4, /*hidden argument*/NULL); // return new DerOctetString(paddedBigInteger); DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75 * L_6 = (DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75 *)il2cpp_codegen_object_new(DerOctetString_t9D28DB59640EE83613D10BEE46D828C25E4B3F75_il2cpp_TypeInfo_var); DerOctetString__ctor_mBD13EC2203DF652C61E5AB45AE95CC51A22F0AF2(L_6, L_5, /*hidden argument*/NULL); return L_6; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9FieldID::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X9FieldID__ctor_m0E2D2D63DA2D3D6F6143D54276FE02FEA178FA24 (X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8 * __this, BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___primeP0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public X9FieldID( // BigInteger primeP) Asn1Encodable__ctor_mF956C9DAF4A126B7B4406E2DD0EED16E64ABA126(__this, /*hidden argument*/NULL); // this.id = X9ObjectIdentifiers.PrimeField; IL2CPP_RUNTIME_CLASS_INIT(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_0 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_PrimeField_3(); __this->set_id_2(L_0); // this.parameters = new DerInteger(primeP); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_1 = ___primeP0; DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * L_2 = (DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 *)il2cpp_codegen_object_new(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var); DerInteger__ctor_m612C6B5423FEC812F2B14987AF4D153C141750F0(L_2, L_1, /*hidden argument*/NULL); __this->set_parameters_3(L_2); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9FieldID::.ctor(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X9FieldID__ctor_mA5C5B78442E310E5C1A89BA8BBF2442ED9EA019F (X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8 * __this, int32_t ___m0, int32_t ___k11, const RuntimeMethod* method) { { // : this(m, k1, 0, 0) int32_t L_0 = ___m0; int32_t L_1 = ___k11; X9FieldID__ctor_mF506790D5BB59536539E54AD472B25614F541B93(__this, L_0, L_1, 0, 0, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9FieldID::.ctor(System.Int32,System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X9FieldID__ctor_mF506790D5BB59536539E54AD472B25614F541B93 (X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8 * __this, int32_t ___m0, int32_t ___k11, int32_t ___k22, int32_t ___k33, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 * V_0 = NULL; { // public X9FieldID( // int m, // int k1, // int k2, // int k3) Asn1Encodable__ctor_mF956C9DAF4A126B7B4406E2DD0EED16E64ABA126(__this, /*hidden argument*/NULL); // this.id = X9ObjectIdentifiers.CharacteristicTwoField; IL2CPP_RUNTIME_CLASS_INIT(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_0 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_CharacteristicTwoField_4(); __this->set_id_2(L_0); // Asn1EncodableVector fieldIdParams = new Asn1EncodableVector(new DerInteger(m)); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_1 = (Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE*)(Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE*)SZArrayNew(Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE_il2cpp_TypeInfo_var, (uint32_t)1); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_2 = L_1; int32_t L_3 = ___m0; DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * L_4 = (DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 *)il2cpp_codegen_object_new(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var); DerInteger__ctor_m014B0C2AADB00543E51D3621D5B93E030C47F6CA(L_4, L_3, /*hidden argument*/NULL); NullCheck(L_2); ArrayElementTypeCheck (L_2, L_4); (L_2)->SetAt(static_cast(0), (Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *)L_4); Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 * L_5 = (Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 *)il2cpp_codegen_object_new(Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3_il2cpp_TypeInfo_var); Asn1EncodableVector__ctor_m1306EB1064C0D4EEC59EA15F8DFF81952B7AE7DE(L_5, L_2, /*hidden argument*/NULL); V_0 = L_5; // if (k2 == 0) int32_t L_6 = ___k22; if (L_6) { goto IL_0057; } } { // if (k3 != 0) int32_t L_7 = ___k33; if (!L_7) { goto IL_0038; } } { // throw new ArgumentException("inconsistent k values"); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_8 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_8, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral603DF3B218370B957A3573A69F9CEB44F896AC74)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X9FieldID__ctor_mF506790D5BB59536539E54AD472B25614F541B93_RuntimeMethod_var))); } IL_0038: { // fieldIdParams.Add( // X9ObjectIdentifiers.TPBasis, // new DerInteger(k1)); Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 * L_9 = V_0; Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_10 = (Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE*)(Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE*)SZArrayNew(Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE_il2cpp_TypeInfo_var, (uint32_t)2); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_11 = L_10; IL2CPP_RUNTIME_CLASS_INIT(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_12 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_TPBasis_6(); NullCheck(L_11); ArrayElementTypeCheck (L_11, L_12); (L_11)->SetAt(static_cast(0), (Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *)L_12); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_13 = L_11; int32_t L_14 = ___k11; DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * L_15 = (DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 *)il2cpp_codegen_object_new(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var); DerInteger__ctor_m014B0C2AADB00543E51D3621D5B93E030C47F6CA(L_15, L_14, /*hidden argument*/NULL); NullCheck(L_13); ArrayElementTypeCheck (L_13, L_15); (L_13)->SetAt(static_cast(1), (Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *)L_15); NullCheck(L_9); Asn1EncodableVector_Add_m6EF01E6775CA3C122AC78B760B5C8AB13AC83EA8(L_9, L_13, /*hidden argument*/NULL); // } goto IL_00a9; } IL_0057: { // if (k2 <= k1 || k3 <= k2) int32_t L_16 = ___k22; int32_t L_17 = ___k11; if ((((int32_t)L_16) <= ((int32_t)L_17))) { goto IL_0060; } } { int32_t L_18 = ___k33; int32_t L_19 = ___k22; if ((((int32_t)L_18) > ((int32_t)L_19))) { goto IL_006b; } } IL_0060: { // throw new ArgumentException("inconsistent k values"); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_20 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_20, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral603DF3B218370B957A3573A69F9CEB44F896AC74)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&X9FieldID__ctor_mF506790D5BB59536539E54AD472B25614F541B93_RuntimeMethod_var))); } IL_006b: { // fieldIdParams.Add( // X9ObjectIdentifiers.PPBasis, // new DerSequence( // new DerInteger(k1), // new DerInteger(k2), // new DerInteger(k3))); Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 * L_21 = V_0; Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_22 = (Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE*)(Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE*)SZArrayNew(Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE_il2cpp_TypeInfo_var, (uint32_t)2); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_23 = L_22; IL2CPP_RUNTIME_CLASS_INIT(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_24 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_PPBasis_7(); NullCheck(L_23); ArrayElementTypeCheck (L_23, L_24); (L_23)->SetAt(static_cast(0), (Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *)L_24); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_25 = L_23; Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_26 = (Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE*)(Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE*)SZArrayNew(Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE_il2cpp_TypeInfo_var, (uint32_t)3); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_27 = L_26; int32_t L_28 = ___k11; DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * L_29 = (DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 *)il2cpp_codegen_object_new(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var); DerInteger__ctor_m014B0C2AADB00543E51D3621D5B93E030C47F6CA(L_29, L_28, /*hidden argument*/NULL); NullCheck(L_27); ArrayElementTypeCheck (L_27, L_29); (L_27)->SetAt(static_cast(0), (Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *)L_29); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_30 = L_27; int32_t L_31 = ___k22; DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * L_32 = (DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 *)il2cpp_codegen_object_new(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var); DerInteger__ctor_m014B0C2AADB00543E51D3621D5B93E030C47F6CA(L_32, L_31, /*hidden argument*/NULL); NullCheck(L_30); ArrayElementTypeCheck (L_30, L_32); (L_30)->SetAt(static_cast(1), (Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *)L_32); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_33 = L_30; int32_t L_34 = ___k33; DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * L_35 = (DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 *)il2cpp_codegen_object_new(DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157_il2cpp_TypeInfo_var); DerInteger__ctor_m014B0C2AADB00543E51D3621D5B93E030C47F6CA(L_35, L_34, /*hidden argument*/NULL); NullCheck(L_33); ArrayElementTypeCheck (L_33, L_35); (L_33)->SetAt(static_cast(2), (Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *)L_35); DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 * L_36 = (DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 *)il2cpp_codegen_object_new(DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09_il2cpp_TypeInfo_var); DerSequence__ctor_m014F0386FA0EDB7F97747159963DC17F535AF0A2(L_36, L_33, /*hidden argument*/NULL); NullCheck(L_25); ArrayElementTypeCheck (L_25, L_36); (L_25)->SetAt(static_cast(1), (Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *)L_36); NullCheck(L_21); Asn1EncodableVector_Add_m6EF01E6775CA3C122AC78B760B5C8AB13AC83EA8(L_21, L_25, /*hidden argument*/NULL); } IL_00a9: { // this.parameters = new DerSequence(fieldIdParams); Asn1EncodableVector_t7D6E9FB73A814E2472F7EAC6EC0CCCB5A3C93BD3 * L_37 = V_0; DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 * L_38 = (DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 *)il2cpp_codegen_object_new(DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09_il2cpp_TypeInfo_var); DerSequence__ctor_mC969ECDC21E6B8169D0B78BE04B3A08192E13164(L_38, L_37, /*hidden argument*/NULL); __this->set_parameters_3(L_38); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9FieldID::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X9FieldID__ctor_m7076F9CDA740565C112FC3AD682CED181DDD7BBF (X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8 * __this, Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * ___seq0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // private X9FieldID(Asn1Sequence seq) Asn1Encodable__ctor_mF956C9DAF4A126B7B4406E2DD0EED16E64ABA126(__this, /*hidden argument*/NULL); // this.id = DerObjectIdentifier.GetInstance(seq[0]); Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_0 = ___seq0; NullCheck(L_0); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_1; L_1 = VirtualFuncInvoker1< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *, int32_t >::Invoke(12 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Item(System.Int32) */, L_0, 0); IL2CPP_RUNTIME_CLASS_INIT(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_2; L_2 = DerObjectIdentifier_GetInstance_mBE1F50C71CFA8B210307AFD39E62F8AF4D5E34FF(L_1, /*hidden argument*/NULL); __this->set_id_2(L_2); // this.parameters = seq[1].ToAsn1Object(); Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_3 = ___seq0; NullCheck(L_3); Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC * L_4; L_4 = VirtualFuncInvoker1< Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *, int32_t >::Invoke(12 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Sequence::get_Item(System.Int32) */, L_3, 1); NullCheck(L_4); Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * L_5; L_5 = VirtualFuncInvoker0< Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * >::Invoke(5 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Object BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Encodable::ToAsn1Object() */, L_4); __this->set_parameters_3(L_5); // } return; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9FieldID BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9FieldID::GetInstance(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8 * X9FieldID_GetInstance_m183D9843C96D8877516F8D93BA6F38D7A71FF45A (RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (obj is X9FieldID) RuntimeObject * L_0 = ___obj0; if (!((X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8 *)IsInstClass((RuntimeObject*)L_0, X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8_il2cpp_TypeInfo_var))) { goto IL_000f; } } { // return (X9FieldID)obj; RuntimeObject * L_1 = ___obj0; return ((X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8 *)CastclassClass((RuntimeObject*)L_1, X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8_il2cpp_TypeInfo_var)); } IL_000f: { // if (obj == null) RuntimeObject * L_2 = ___obj0; if (L_2) { goto IL_0014; } } { // return null; return (X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8 *)NULL; } IL_0014: { // return new X9FieldID(Asn1Sequence.GetInstance(obj)); RuntimeObject * L_3 = ___obj0; Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_4; L_4 = Asn1Sequence_GetInstance_m53E4D5619D84F02123D6C3B6EA8E0EEEF86B244C(L_3, /*hidden argument*/NULL); X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8 * L_5 = (X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8 *)il2cpp_codegen_object_new(X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8_il2cpp_TypeInfo_var); X9FieldID__ctor_m7076F9CDA740565C112FC3AD682CED181DDD7BBF(L_5, L_4, /*hidden argument*/NULL); return L_5; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9FieldID::get_Identifier() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * X9FieldID_get_Identifier_m52E0EDC4A4D718C161CDA5314A3E0383419FB264 (X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8 * __this, const RuntimeMethod* method) { { // get { return id; } DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_0 = __this->get_id_2(); return L_0; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Object BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9FieldID::get_Parameters() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * X9FieldID_get_Parameters_m12B808F857010B95FBDBD07DF02747E277D0CF8B (X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8 * __this, const RuntimeMethod* method) { { // get { return parameters; } Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * L_0 = __this->get_parameters_3(); return L_0; } } // BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Object BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9FieldID::ToAsn1Object() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * X9FieldID_ToAsn1Object_m826E94E23188B4B2C12437258DEAC69D978F7340 (X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // return new DerSequence(id, parameters); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_0 = (Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE*)(Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE*)SZArrayNew(Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE_il2cpp_TypeInfo_var, (uint32_t)2); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_1 = L_0; DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_2 = __this->get_id_2(); NullCheck(L_1); ArrayElementTypeCheck (L_1, L_2); (L_1)->SetAt(static_cast(0), (Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *)L_2); Asn1EncodableU5BU5D_t64E34B1D2A460B8FA8D1BC14E7CFEB7B897191CE* L_3 = L_1; Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * L_4 = __this->get_parameters_3(); NullCheck(L_3); ArrayElementTypeCheck (L_3, L_4); (L_3)->SetAt(static_cast(1), (Asn1Encodable_tCA51194A73D6D9585045A4D23CF12B939BF7F6EC *)L_4); DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 * L_5 = (DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09 *)il2cpp_codegen_object_new(DerSequence_t29D35AAD253161C53C8C83F576DEA1F28B8DFF09_il2cpp_TypeInfo_var); DerSequence__ctor_m014F0386FA0EDB7F97747159963DC17F535AF0A2(L_5, L_3, /*hidden argument*/NULL); return L_5; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9IntegerConverter::GetByteLength(BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECFieldElement) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t X9IntegerConverter_GetByteLength_m931E94479D6C0483754814793EE42F604F2ED7BC (ECFieldElement_t5B3E4EB355D81F73F6FAC09A042BE908A9631117 * ___fe0, const RuntimeMethod* method) { { // return (fe.FieldSize + 7) / 8; ECFieldElement_t5B3E4EB355D81F73F6FAC09A042BE908A9631117 * L_0 = ___fe0; NullCheck(L_0); int32_t L_1; L_1 = VirtualFuncInvoker0< int32_t >::Invoke(6 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECFieldElement::get_FieldSize() */, L_0); return ((int32_t)((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)7))/(int32_t)8)); } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9IntegerConverter::GetByteLength(BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECCurve) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t X9IntegerConverter_GetByteLength_m19D8AD488C4EF8DA72A4206B700557A6027DA2B7 (ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * ___c0, const RuntimeMethod* method) { { // return (c.FieldSize + 7) / 8; ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * L_0 = ___c0; NullCheck(L_0); int32_t L_1; L_1 = VirtualFuncInvoker0< int32_t >::Invoke(4 /* System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECCurve::get_FieldSize() */, L_0); return ((int32_t)((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)7))/(int32_t)8)); } } // System.Byte[] BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9IntegerConverter::IntegerToBytes(BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* X9IntegerConverter_IntegerToBytes_m192434ABE05AFFEA0C3F144E169BA2D46965AEC9 (BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___s0, int32_t ___qLength1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_0 = NULL; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_1 = NULL; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_2 = NULL; { // byte[] bytes = s.ToByteArrayUnsigned(); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_0 = ___s0; NullCheck(L_0); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1; L_1 = BigInteger_ToByteArrayUnsigned_mA50192424BCADACC368E6DC187BF5C8E9DB1DE27(L_0, /*hidden argument*/NULL); V_0 = L_1; // if (qLength < bytes.Length) int32_t L_2 = ___qLength1; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_3 = V_0; NullCheck(L_3); if ((((int32_t)L_2) >= ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))) { goto IL_0028; } } { // byte[] tmp = new byte[qLength]; int32_t L_4 = ___qLength1; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_5 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)L_4); V_1 = L_5; // Array.Copy(bytes, bytes.Length - tmp.Length, tmp, 0, tmp.Length); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_6 = V_0; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_7 = V_0; NullCheck(L_7); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_8 = V_1; NullCheck(L_8); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_9 = V_1; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_10 = V_1; NullCheck(L_10); Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_6, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length))), (int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length))))), (RuntimeArray *)(RuntimeArray *)L_9, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length))), /*hidden argument*/NULL); // return tmp; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_11 = V_1; return L_11; } IL_0028: { // else if (qLength > bytes.Length) int32_t L_12 = ___qLength1; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_13 = V_0; NullCheck(L_13); if ((((int32_t)L_12) <= ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_13)->max_length)))))) { goto IL_0049; } } { // byte[] tmp = new byte[qLength]; int32_t L_14 = ___qLength1; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_15 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)L_14); V_2 = L_15; // Array.Copy(bytes, 0, tmp, tmp.Length - bytes.Length, bytes.Length); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_16 = V_0; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_17 = V_2; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_18 = V_2; NullCheck(L_18); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_19 = V_0; NullCheck(L_19); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_20 = V_0; NullCheck(L_20); Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_16, 0, (RuntimeArray *)(RuntimeArray *)L_17, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_18)->max_length))), (int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_19)->max_length))))), ((int32_t)((int32_t)(((RuntimeArray*)L_20)->max_length))), /*hidden argument*/NULL); // return tmp; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_21 = V_2; return L_21; } IL_0049: { // return bytes; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_22 = V_0; return L_22; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9IntegerConverter::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X9IntegerConverter__ctor_m6280FB2F809AE45A3DBA65D8B35F959F9534B08E (X9IntegerConverter_t809A7A8949520D9F6EA5F8C7AC94BE04E9496C7E * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X9ObjectIdentifiers__ctor_m4CF2C4DD8E986A0D32054190317FEE4EE3BE357D (X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void X9ObjectIdentifiers__cctor_m093B6197F3668892581DFD9CA0B421ECDFEBD039 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1330FBB7E4E078A3269D7217A21129F4728C78C7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral13451B7216BC16C8E6A7ADA10BAB5AA1BE011664); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral15A8EE2E7A32C06E91552CE409D01810AA49BEB2); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1AA1790AE1BC157DD7BC2E8E7D142CB22C2346A8); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2064F80F811DB79A33C4E51C10221454E30C74AE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral21ED4C7AF50D987589A9029FC0422151BE3A0FC2); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral25D74BC981E6316A5E3CAEEA0BAF3C438F5C94DA); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2F7234099CCD07F9C0939ACCC13D7F7F6E95DBAD); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral521FB55423CC068B92B5E8453A36DF0D6CBDD93F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral65C91159DE73AB664AD579C104F3EE3E6A5B9308); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7402F76B2D6078A455F77607AF6E7350B6DE019E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7454695E25D304C65D0C1333D8008E862569CAE9); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral816238D2C5B664EF76E039079E40C1492ADCF0EC); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral95172EC2A9C2136A247F7460DD301F9FF51A8C5D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA006FCB4201934135FE5378132B66888869CBF16); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA1F8C30AF9A614832E6AEAE94C81E0CB4D21FA81); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA72F811C6B453DBDDE052A965464A79F8D3E04B4); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAA4DA1A93F07E2E4B09F8D5E2C45905E26A45E79); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB16CF3324CA15FF0851B0F99DD86AC638C3E0CAE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB9E15D36DACFA970D8917F8A2D25B3E56074B572); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC47E7F7AEF16F78CE7B3D75756F38A67794AF4D0); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD5C0F4A27D61AABF6B271E6015FA08AF7962AB6B); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDED62960F661FD03A2D508CA0B59F660758A058A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE74AFAFAF4B7AA04C0FD03472697F86784E2E977); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE91FE173F59B063D620A934CE1A010F2B114C1F3); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEF7FC24B5117DE7A50326EB54B70AF5BAC17A774); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF7DDF59B44DDF9253B657C54053522CF694D3FBE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF8591E019243177659D36C84E0F0DD536C62D029); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF859CAA74FC4BD45E85F9AFF276F614AE47D3DA2); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF944DCD635F9801F7AC90A407FBC479964DEC024); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFF01C47ABD568A459C8EA38273E930831E0F8561); s_Il2CppMethodInitialized = true; } { // public static readonly DerObjectIdentifier ansi_X9_62 = new DerObjectIdentifier(AnsiX962); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_0 = (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *)il2cpp_codegen_object_new(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); DerObjectIdentifier__ctor_m8009342D7B2AD40B1E19E6AB958141979B7405CD(L_0, _stringLiteralA72F811C6B453DBDDE052A965464A79F8D3E04B4, /*hidden argument*/NULL); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_ansi_X9_62_1(L_0); // public static readonly DerObjectIdentifier IdFieldType = ansi_X9_62.Branch("1"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_1 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_ansi_X9_62_1(); NullCheck(L_1); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_2; L_2 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_1, _stringLiteralE91FE173F59B063D620A934CE1A010F2B114C1F3); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_IdFieldType_2(L_2); // public static readonly DerObjectIdentifier PrimeField = IdFieldType.Branch("1"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_3 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_IdFieldType_2(); NullCheck(L_3); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_4; L_4 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_3, _stringLiteralE91FE173F59B063D620A934CE1A010F2B114C1F3); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_PrimeField_3(L_4); // public static readonly DerObjectIdentifier CharacteristicTwoField = IdFieldType.Branch("2"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_5 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_IdFieldType_2(); NullCheck(L_5); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_6; L_6 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_5, _stringLiteral21ED4C7AF50D987589A9029FC0422151BE3A0FC2); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_CharacteristicTwoField_4(L_6); // public static readonly DerObjectIdentifier GNBasis = CharacteristicTwoField.Branch("3.1"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_7 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_CharacteristicTwoField_4(); NullCheck(L_7); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_8; L_8 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_7, _stringLiteral1330FBB7E4E078A3269D7217A21129F4728C78C7); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_GNBasis_5(L_8); // public static readonly DerObjectIdentifier TPBasis = CharacteristicTwoField.Branch("3.2"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_9 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_CharacteristicTwoField_4(); NullCheck(L_9); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_10; L_10 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_9, _stringLiteral15A8EE2E7A32C06E91552CE409D01810AA49BEB2); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_TPBasis_6(L_10); // public static readonly DerObjectIdentifier PPBasis = CharacteristicTwoField.Branch("3.3"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_11 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_CharacteristicTwoField_4(); NullCheck(L_11); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_12; L_12 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_11, _stringLiteralDED62960F661FD03A2D508CA0B59F660758A058A); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_PPBasis_7(L_12); // public static readonly DerObjectIdentifier id_ecSigType = ansi_X9_62.Branch("4"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_13 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_ansi_X9_62_1(); NullCheck(L_13); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_14; L_14 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_13, _stringLiteral7454695E25D304C65D0C1333D8008E862569CAE9); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_id_ecSigType_9(L_14); // public static readonly DerObjectIdentifier ECDsaWithSha1 = id_ecSigType.Branch("1"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_15 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_id_ecSigType_9(); NullCheck(L_15); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_16; L_16 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_15, _stringLiteralE91FE173F59B063D620A934CE1A010F2B114C1F3); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_ECDsaWithSha1_10(L_16); // public static readonly DerObjectIdentifier id_publicKeyType = ansi_X9_62.Branch("2"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_17 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_ansi_X9_62_1(); NullCheck(L_17); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_18; L_18 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_17, _stringLiteral21ED4C7AF50D987589A9029FC0422151BE3A0FC2); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_id_publicKeyType_12(L_18); // public static readonly DerObjectIdentifier IdECPublicKey = id_publicKeyType.Branch("1"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_19 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_id_publicKeyType_12(); NullCheck(L_19); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_20; L_20 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_19, _stringLiteralE91FE173F59B063D620A934CE1A010F2B114C1F3); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_IdECPublicKey_13(L_20); // public static readonly DerObjectIdentifier ECDsaWithSha2 = id_ecSigType.Branch("3"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_21 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_id_ecSigType_9(); NullCheck(L_21); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_22; L_22 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_21, _stringLiteral2064F80F811DB79A33C4E51C10221454E30C74AE); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_ECDsaWithSha2_14(L_22); // public static readonly DerObjectIdentifier ECDsaWithSha224 = ECDsaWithSha2.Branch("1"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_23 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_ECDsaWithSha2_14(); NullCheck(L_23); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_24; L_24 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_23, _stringLiteralE91FE173F59B063D620A934CE1A010F2B114C1F3); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_ECDsaWithSha224_15(L_24); // public static readonly DerObjectIdentifier ECDsaWithSha256 = ECDsaWithSha2.Branch("2"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_25 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_ECDsaWithSha2_14(); NullCheck(L_25); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_26; L_26 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_25, _stringLiteral21ED4C7AF50D987589A9029FC0422151BE3A0FC2); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_ECDsaWithSha256_16(L_26); // public static readonly DerObjectIdentifier ECDsaWithSha384 = ECDsaWithSha2.Branch("3"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_27 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_ECDsaWithSha2_14(); NullCheck(L_27); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_28; L_28 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_27, _stringLiteral2064F80F811DB79A33C4E51C10221454E30C74AE); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_ECDsaWithSha384_17(L_28); // public static readonly DerObjectIdentifier ECDsaWithSha512 = ECDsaWithSha2.Branch("4"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_29 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_ECDsaWithSha2_14(); NullCheck(L_29); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_30; L_30 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_29, _stringLiteral7454695E25D304C65D0C1333D8008E862569CAE9); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_ECDsaWithSha512_18(L_30); // public static readonly DerObjectIdentifier EllipticCurve = ansi_X9_62.Branch("3"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_31 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_ansi_X9_62_1(); NullCheck(L_31); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_32; L_32 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_31, _stringLiteral2064F80F811DB79A33C4E51C10221454E30C74AE); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_EllipticCurve_19(L_32); // public static readonly DerObjectIdentifier CTwoCurve = EllipticCurve.Branch("0"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_33 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_EllipticCurve_19(); NullCheck(L_33); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_34; L_34 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_33, _stringLiteralF944DCD635F9801F7AC90A407FBC479964DEC024); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_CTwoCurve_20(L_34); // public static readonly DerObjectIdentifier C2Pnb163v1 = CTwoCurve.Branch("1"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_35 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_CTwoCurve_20(); NullCheck(L_35); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_36; L_36 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_35, _stringLiteralE91FE173F59B063D620A934CE1A010F2B114C1F3); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_C2Pnb163v1_21(L_36); // public static readonly DerObjectIdentifier C2Pnb163v2 = CTwoCurve.Branch("2"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_37 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_CTwoCurve_20(); NullCheck(L_37); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_38; L_38 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_37, _stringLiteral21ED4C7AF50D987589A9029FC0422151BE3A0FC2); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_C2Pnb163v2_22(L_38); // public static readonly DerObjectIdentifier C2Pnb163v3 = CTwoCurve.Branch("3"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_39 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_CTwoCurve_20(); NullCheck(L_39); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_40; L_40 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_39, _stringLiteral2064F80F811DB79A33C4E51C10221454E30C74AE); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_C2Pnb163v3_23(L_40); // public static readonly DerObjectIdentifier C2Pnb176w1 = CTwoCurve.Branch("4"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_41 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_CTwoCurve_20(); NullCheck(L_41); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_42; L_42 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_41, _stringLiteral7454695E25D304C65D0C1333D8008E862569CAE9); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_C2Pnb176w1_24(L_42); // public static readonly DerObjectIdentifier C2Tnb191v1 = CTwoCurve.Branch("5"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_43 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_CTwoCurve_20(); NullCheck(L_43); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_44; L_44 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_43, _stringLiteralF7DDF59B44DDF9253B657C54053522CF694D3FBE); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_C2Tnb191v1_25(L_44); // public static readonly DerObjectIdentifier C2Tnb191v2 = CTwoCurve.Branch("6"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_45 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_CTwoCurve_20(); NullCheck(L_45); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_46; L_46 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_45, _stringLiteral2F7234099CCD07F9C0939ACCC13D7F7F6E95DBAD); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_C2Tnb191v2_26(L_46); // public static readonly DerObjectIdentifier C2Tnb191v3 = CTwoCurve.Branch("7"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_47 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_CTwoCurve_20(); NullCheck(L_47); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_48; L_48 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_47, _stringLiteral7402F76B2D6078A455F77607AF6E7350B6DE019E); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_C2Tnb191v3_27(L_48); // public static readonly DerObjectIdentifier C2Onb191v4 = CTwoCurve.Branch("8"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_49 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_CTwoCurve_20(); NullCheck(L_49); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_50; L_50 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_49, _stringLiteralB16CF3324CA15FF0851B0F99DD86AC638C3E0CAE); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_C2Onb191v4_28(L_50); // public static readonly DerObjectIdentifier C2Onb191v5 = CTwoCurve.Branch("9"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_51 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_CTwoCurve_20(); NullCheck(L_51); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_52; L_52 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_51, _stringLiteral25D74BC981E6316A5E3CAEEA0BAF3C438F5C94DA); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_C2Onb191v5_29(L_52); // public static readonly DerObjectIdentifier C2Pnb208w1 = CTwoCurve.Branch("10"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_53 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_CTwoCurve_20(); NullCheck(L_53); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_54; L_54 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_53, _stringLiteralAA4DA1A93F07E2E4B09F8D5E2C45905E26A45E79); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_C2Pnb208w1_30(L_54); // public static readonly DerObjectIdentifier C2Tnb239v1 = CTwoCurve.Branch("11"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_55 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_CTwoCurve_20(); NullCheck(L_55); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_56; L_56 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_55, _stringLiteral816238D2C5B664EF76E039079E40C1492ADCF0EC); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_C2Tnb239v1_31(L_56); // public static readonly DerObjectIdentifier C2Tnb239v2 = CTwoCurve.Branch("12"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_57 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_CTwoCurve_20(); NullCheck(L_57); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_58; L_58 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_57, _stringLiteralB9E15D36DACFA970D8917F8A2D25B3E56074B572); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_C2Tnb239v2_32(L_58); // public static readonly DerObjectIdentifier C2Tnb239v3 = CTwoCurve.Branch("13"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_59 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_CTwoCurve_20(); NullCheck(L_59); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_60; L_60 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_59, _stringLiteral1AA1790AE1BC157DD7BC2E8E7D142CB22C2346A8); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_C2Tnb239v3_33(L_60); // public static readonly DerObjectIdentifier C2Onb239v4 = CTwoCurve.Branch("14"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_61 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_CTwoCurve_20(); NullCheck(L_61); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_62; L_62 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_61, _stringLiteralC47E7F7AEF16F78CE7B3D75756F38A67794AF4D0); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_C2Onb239v4_34(L_62); // public static readonly DerObjectIdentifier C2Onb239v5 = CTwoCurve.Branch("15"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_63 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_CTwoCurve_20(); NullCheck(L_63); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_64; L_64 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_63, _stringLiteralF8591E019243177659D36C84E0F0DD536C62D029); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_C2Onb239v5_35(L_64); // public static readonly DerObjectIdentifier C2Pnb272w1 = CTwoCurve.Branch("16"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_65 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_CTwoCurve_20(); NullCheck(L_65); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_66; L_66 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_65, _stringLiteralFF01C47ABD568A459C8EA38273E930831E0F8561); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_C2Pnb272w1_36(L_66); // public static readonly DerObjectIdentifier C2Pnb304w1 = CTwoCurve.Branch("17"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_67 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_CTwoCurve_20(); NullCheck(L_67); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_68; L_68 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_67, _stringLiteralEF7FC24B5117DE7A50326EB54B70AF5BAC17A774); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_C2Pnb304w1_37(L_68); // public static readonly DerObjectIdentifier C2Tnb359v1 = CTwoCurve.Branch("18"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_69 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_CTwoCurve_20(); NullCheck(L_69); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_70; L_70 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_69, _stringLiteralF859CAA74FC4BD45E85F9AFF276F614AE47D3DA2); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_C2Tnb359v1_38(L_70); // public static readonly DerObjectIdentifier C2Pnb368w1 = CTwoCurve.Branch("19"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_71 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_CTwoCurve_20(); NullCheck(L_71); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_72; L_72 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_71, _stringLiteralA1F8C30AF9A614832E6AEAE94C81E0CB4D21FA81); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_C2Pnb368w1_39(L_72); // public static readonly DerObjectIdentifier C2Tnb431r1 = CTwoCurve.Branch("20"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_73 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_CTwoCurve_20(); NullCheck(L_73); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_74; L_74 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_73, _stringLiteral521FB55423CC068B92B5E8453A36DF0D6CBDD93F); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_C2Tnb431r1_40(L_74); // public static readonly DerObjectIdentifier PrimeCurve = EllipticCurve.Branch("1"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_75 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_EllipticCurve_19(); NullCheck(L_75); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_76; L_76 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_75, _stringLiteralE91FE173F59B063D620A934CE1A010F2B114C1F3); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_PrimeCurve_41(L_76); // public static readonly DerObjectIdentifier Prime192v1 = PrimeCurve.Branch("1"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_77 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_PrimeCurve_41(); NullCheck(L_77); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_78; L_78 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_77, _stringLiteralE91FE173F59B063D620A934CE1A010F2B114C1F3); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_Prime192v1_42(L_78); // public static readonly DerObjectIdentifier Prime192v2 = PrimeCurve.Branch("2"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_79 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_PrimeCurve_41(); NullCheck(L_79); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_80; L_80 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_79, _stringLiteral21ED4C7AF50D987589A9029FC0422151BE3A0FC2); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_Prime192v2_43(L_80); // public static readonly DerObjectIdentifier Prime192v3 = PrimeCurve.Branch("3"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_81 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_PrimeCurve_41(); NullCheck(L_81); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_82; L_82 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_81, _stringLiteral2064F80F811DB79A33C4E51C10221454E30C74AE); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_Prime192v3_44(L_82); // public static readonly DerObjectIdentifier Prime239v1 = PrimeCurve.Branch("4"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_83 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_PrimeCurve_41(); NullCheck(L_83); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_84; L_84 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_83, _stringLiteral7454695E25D304C65D0C1333D8008E862569CAE9); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_Prime239v1_45(L_84); // public static readonly DerObjectIdentifier Prime239v2 = PrimeCurve.Branch("5"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_85 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_PrimeCurve_41(); NullCheck(L_85); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_86; L_86 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_85, _stringLiteralF7DDF59B44DDF9253B657C54053522CF694D3FBE); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_Prime239v2_46(L_86); // public static readonly DerObjectIdentifier Prime239v3 = PrimeCurve.Branch("6"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_87 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_PrimeCurve_41(); NullCheck(L_87); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_88; L_88 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_87, _stringLiteral2F7234099CCD07F9C0939ACCC13D7F7F6E95DBAD); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_Prime239v3_47(L_88); // public static readonly DerObjectIdentifier Prime256v1 = PrimeCurve.Branch("7"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_89 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_PrimeCurve_41(); NullCheck(L_89); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_90; L_90 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_89, _stringLiteral7402F76B2D6078A455F77607AF6E7350B6DE019E); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_Prime256v1_48(L_90); // public static readonly DerObjectIdentifier IdDsa = new DerObjectIdentifier("1.2.840.10040.4.1"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_91 = (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *)il2cpp_codegen_object_new(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); DerObjectIdentifier__ctor_m8009342D7B2AD40B1E19E6AB958141979B7405CD(L_91, _stringLiteral65C91159DE73AB664AD579C104F3EE3E6A5B9308, /*hidden argument*/NULL); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_IdDsa_49(L_91); // public static readonly DerObjectIdentifier IdDsaWithSha1 = new DerObjectIdentifier("1.2.840.10040.4.3"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_92 = (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *)il2cpp_codegen_object_new(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); DerObjectIdentifier__ctor_m8009342D7B2AD40B1E19E6AB958141979B7405CD(L_92, _stringLiteralA006FCB4201934135FE5378132B66888869CBF16, /*hidden argument*/NULL); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_IdDsaWithSha1_50(L_92); // public static readonly DerObjectIdentifier X9x63Scheme = new DerObjectIdentifier("1.3.133.16.840.63.0"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_93 = (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *)il2cpp_codegen_object_new(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); DerObjectIdentifier__ctor_m8009342D7B2AD40B1E19E6AB958141979B7405CD(L_93, _stringLiteral95172EC2A9C2136A247F7460DD301F9FF51A8C5D, /*hidden argument*/NULL); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_X9x63Scheme_51(L_93); // public static readonly DerObjectIdentifier DHSinglePassStdDHSha1KdfScheme = X9x63Scheme.Branch("2"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_94 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_X9x63Scheme_51(); NullCheck(L_94); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_95; L_95 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_94, _stringLiteral21ED4C7AF50D987589A9029FC0422151BE3A0FC2); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_DHSinglePassStdDHSha1KdfScheme_52(L_95); // public static readonly DerObjectIdentifier DHSinglePassCofactorDHSha1KdfScheme = X9x63Scheme.Branch("3"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_96 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_X9x63Scheme_51(); NullCheck(L_96); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_97; L_97 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_96, _stringLiteral2064F80F811DB79A33C4E51C10221454E30C74AE); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_DHSinglePassCofactorDHSha1KdfScheme_53(L_97); // public static readonly DerObjectIdentifier MqvSinglePassSha1KdfScheme = X9x63Scheme.Branch("16"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_98 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_X9x63Scheme_51(); NullCheck(L_98); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_99; L_99 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_98, _stringLiteralFF01C47ABD568A459C8EA38273E930831E0F8561); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_MqvSinglePassSha1KdfScheme_54(L_99); // public static readonly DerObjectIdentifier ansi_x9_42 = new DerObjectIdentifier("1.2.840.10046"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_100 = (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *)il2cpp_codegen_object_new(DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8_il2cpp_TypeInfo_var); DerObjectIdentifier__ctor_m8009342D7B2AD40B1E19E6AB958141979B7405CD(L_100, _stringLiteralE74AFAFAF4B7AA04C0FD03472697F86784E2E977, /*hidden argument*/NULL); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_ansi_x9_42_55(L_100); // public static readonly DerObjectIdentifier DHPublicNumber = ansi_x9_42.Branch("2.1"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_101 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_ansi_x9_42_55(); NullCheck(L_101); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_102; L_102 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_101, _stringLiteral13451B7216BC16C8E6A7ADA10BAB5AA1BE011664); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_DHPublicNumber_56(L_102); // public static readonly DerObjectIdentifier X9x42Schemes = ansi_x9_42.Branch("2.3"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_103 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_ansi_x9_42_55(); NullCheck(L_103); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_104; L_104 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_103, _stringLiteralD5C0F4A27D61AABF6B271E6015FA08AF7962AB6B); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_X9x42Schemes_57(L_104); // public static readonly DerObjectIdentifier DHStatic = X9x42Schemes.Branch("1"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_105 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_X9x42Schemes_57(); NullCheck(L_105); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_106; L_106 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_105, _stringLiteralE91FE173F59B063D620A934CE1A010F2B114C1F3); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_DHStatic_58(L_106); // public static readonly DerObjectIdentifier DHEphem = X9x42Schemes.Branch("2"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_107 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_X9x42Schemes_57(); NullCheck(L_107); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_108; L_108 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_107, _stringLiteral21ED4C7AF50D987589A9029FC0422151BE3A0FC2); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_DHEphem_59(L_108); // public static readonly DerObjectIdentifier DHOneFlow = X9x42Schemes.Branch("3"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_109 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_X9x42Schemes_57(); NullCheck(L_109); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_110; L_110 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_109, _stringLiteral2064F80F811DB79A33C4E51C10221454E30C74AE); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_DHOneFlow_60(L_110); // public static readonly DerObjectIdentifier DHHybrid1 = X9x42Schemes.Branch("4"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_111 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_X9x42Schemes_57(); NullCheck(L_111); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_112; L_112 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_111, _stringLiteral7454695E25D304C65D0C1333D8008E862569CAE9); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_DHHybrid1_61(L_112); // public static readonly DerObjectIdentifier DHHybrid2 = X9x42Schemes.Branch("5"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_113 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_X9x42Schemes_57(); NullCheck(L_113); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_114; L_114 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_113, _stringLiteralF7DDF59B44DDF9253B657C54053522CF694D3FBE); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_DHHybrid2_62(L_114); // public static readonly DerObjectIdentifier DHHybridOneFlow = X9x42Schemes.Branch("6"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_115 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_X9x42Schemes_57(); NullCheck(L_115); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_116; L_116 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_115, _stringLiteral2F7234099CCD07F9C0939ACCC13D7F7F6E95DBAD); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_DHHybridOneFlow_63(L_116); // public static readonly DerObjectIdentifier Mqv2 = X9x42Schemes.Branch("7"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_117 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_X9x42Schemes_57(); NullCheck(L_117); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_118; L_118 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_117, _stringLiteral7402F76B2D6078A455F77607AF6E7350B6DE019E); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_Mqv2_64(L_118); // public static readonly DerObjectIdentifier Mqv1 = X9x42Schemes.Branch("8"); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_119 = ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->get_X9x42Schemes_57(); NullCheck(L_119); DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_120; L_120 = VirtualFuncInvoker1< DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 *, String_t* >::Invoke(9 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String) */, L_119, _stringLiteralB16CF3324CA15FF0851B0F99DD86AC638C3E0CAE); ((X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_StaticFields*)il2cpp_codegen_static_fields_for(X9ObjectIdentifiers_tFE605F82328A16338A4B238AECBE2E470F42F42E_il2cpp_TypeInfo_var))->set_Mqv1_65(L_120); 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 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Engines.XSalsa20Engine::get_AlgorithmName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XSalsa20Engine_get_AlgorithmName_m9C23B7633ACE42CE0300E8F11DAE04517A646773 (XSalsa20Engine_tC0EFC0018B12DF0F89158A81A2358AF6E14C6678 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC89858D824AC4A3F2216B74EEFEA4A867D131078); s_Il2CppMethodInitialized = true; } { // get { return "XSalsa20"; } return _stringLiteralC89858D824AC4A3F2216B74EEFEA4A867D131078; } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Engines.XSalsa20Engine::get_NonceSize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XSalsa20Engine_get_NonceSize_m0AC3F294F8ADEA453B1A16EAFF1F72ED7AFF574A (XSalsa20Engine_tC0EFC0018B12DF0F89158A81A2358AF6E14C6678 * __this, const RuntimeMethod* method) { { // get { return 24; } return ((int32_t)24); } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Engines.XSalsa20Engine::SetKey(System.Byte[],System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XSalsa20Engine_SetKey_mA21F40A2F3A1FE656CD067347CD44EEA711D8625 (XSalsa20Engine_tC0EFC0018B12DF0F89158A81A2358AF6E14C6678 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___keyBytes0, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___ivBytes1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Salsa20Engine_t661640C461D9868FAA0FE0F7765F0380147FEC66_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* V_0 = NULL; { // if (keyBytes == null) ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___keyBytes0; if (L_0) { goto IL_0019; } } { // throw new ArgumentException(AlgorithmName + " doesn't support re-init with null key"); String_t* L_1; L_1 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Engines.Salsa20Engine::get_AlgorithmName() */, __this); String_t* L_2; L_2 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5F1F4A58853B31A2075544F5A704FD9361EB7986)), /*hidden argument*/NULL); 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, L_2, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XSalsa20Engine_SetKey_mA21F40A2F3A1FE656CD067347CD44EEA711D8625_RuntimeMethod_var))); } IL_0019: { // if (keyBytes.Length != 32) ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = ___keyBytes0; NullCheck(L_4); if ((((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))) == ((int32_t)((int32_t)32)))) { goto IL_0036; } } { // throw new ArgumentException(AlgorithmName + " requires a 256 bit key"); String_t* L_5; L_5 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Engines.Salsa20Engine::get_AlgorithmName() */, __this); String_t* L_6; L_6 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral83298FB9C35B736FC1AE3C68DC4C4157F50AD0C4)), /*hidden argument*/NULL); 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, L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XSalsa20Engine_SetKey_mA21F40A2F3A1FE656CD067347CD44EEA711D8625_RuntimeMethod_var))); } IL_0036: { // base.SetKey(keyBytes, ivBytes); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_8 = ___keyBytes0; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_9 = ___ivBytes1; Salsa20Engine_SetKey_m9C1977B49DCE7B6B795F1B472706A21E0DE620CF(__this, L_8, L_9, /*hidden argument*/NULL); // Pack.LE_To_UInt32(ivBytes, 8, engineState, 8, 2); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_10 = ___ivBytes1; UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_11 = ((Salsa20Engine_t661640C461D9868FAA0FE0F7765F0380147FEC66 *)__this)->get_engineState_7(); Pack_LE_To_UInt32_mBBCA4BA6D7B002E80F95D10BEF88002C1B27FBE8(L_10, 8, L_11, 8, 2, /*hidden argument*/NULL); // uint[] hsalsa20Out = new uint[engineState.Length]; UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_12 = ((Salsa20Engine_t661640C461D9868FAA0FE0F7765F0380147FEC66 *)__this)->get_engineState_7(); NullCheck(L_12); UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_13 = (UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF*)(UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF*)SZArrayNew(UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF_il2cpp_TypeInfo_var, (uint32_t)((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)))); V_0 = L_13; // SalsaCore(20, engineState, hsalsa20Out); UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_14 = ((Salsa20Engine_t661640C461D9868FAA0FE0F7765F0380147FEC66 *)__this)->get_engineState_7(); UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_15 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Salsa20Engine_t661640C461D9868FAA0FE0F7765F0380147FEC66_il2cpp_TypeInfo_var); Salsa20Engine_SalsaCore_mF39E4B89B8552D8575E6F9AEF5295E12680BFA75(((int32_t)20), L_14, L_15, /*hidden argument*/NULL); // engineState[1] = hsalsa20Out[0] - engineState[0]; UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_16 = ((Salsa20Engine_t661640C461D9868FAA0FE0F7765F0380147FEC66 *)__this)->get_engineState_7(); UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_17 = V_0; NullCheck(L_17); int32_t L_18 = 0; uint32_t L_19 = (L_17)->GetAt(static_cast(L_18)); UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_20 = ((Salsa20Engine_t661640C461D9868FAA0FE0F7765F0380147FEC66 *)__this)->get_engineState_7(); NullCheck(L_20); int32_t L_21 = 0; uint32_t L_22 = (L_20)->GetAt(static_cast(L_21)); NullCheck(L_16); (L_16)->SetAt(static_cast(1), (uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)L_22))); // engineState[2] = hsalsa20Out[5] - engineState[5]; UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_23 = ((Salsa20Engine_t661640C461D9868FAA0FE0F7765F0380147FEC66 *)__this)->get_engineState_7(); UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_24 = V_0; NullCheck(L_24); int32_t L_25 = 5; uint32_t L_26 = (L_24)->GetAt(static_cast(L_25)); UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_27 = ((Salsa20Engine_t661640C461D9868FAA0FE0F7765F0380147FEC66 *)__this)->get_engineState_7(); NullCheck(L_27); int32_t L_28 = 5; uint32_t L_29 = (L_27)->GetAt(static_cast(L_28)); NullCheck(L_23); (L_23)->SetAt(static_cast(2), (uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_26, (int32_t)L_29))); // engineState[3] = hsalsa20Out[10] - engineState[10]; UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_30 = ((Salsa20Engine_t661640C461D9868FAA0FE0F7765F0380147FEC66 *)__this)->get_engineState_7(); UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_31 = V_0; NullCheck(L_31); int32_t L_32 = ((int32_t)10); uint32_t L_33 = (L_31)->GetAt(static_cast(L_32)); UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_34 = ((Salsa20Engine_t661640C461D9868FAA0FE0F7765F0380147FEC66 *)__this)->get_engineState_7(); NullCheck(L_34); int32_t L_35 = ((int32_t)10); uint32_t L_36 = (L_34)->GetAt(static_cast(L_35)); NullCheck(L_30); (L_30)->SetAt(static_cast(3), (uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_33, (int32_t)L_36))); // engineState[4] = hsalsa20Out[15] - engineState[15]; UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_37 = ((Salsa20Engine_t661640C461D9868FAA0FE0F7765F0380147FEC66 *)__this)->get_engineState_7(); UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_38 = V_0; NullCheck(L_38); int32_t L_39 = ((int32_t)15); uint32_t L_40 = (L_38)->GetAt(static_cast(L_39)); UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_41 = ((Salsa20Engine_t661640C461D9868FAA0FE0F7765F0380147FEC66 *)__this)->get_engineState_7(); NullCheck(L_41); int32_t L_42 = ((int32_t)15); uint32_t L_43 = (L_41)->GetAt(static_cast(L_42)); NullCheck(L_37); (L_37)->SetAt(static_cast(4), (uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_40, (int32_t)L_43))); // engineState[11] = hsalsa20Out[6] - engineState[6]; UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_44 = ((Salsa20Engine_t661640C461D9868FAA0FE0F7765F0380147FEC66 *)__this)->get_engineState_7(); UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_45 = V_0; NullCheck(L_45); int32_t L_46 = 6; uint32_t L_47 = (L_45)->GetAt(static_cast(L_46)); UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_48 = ((Salsa20Engine_t661640C461D9868FAA0FE0F7765F0380147FEC66 *)__this)->get_engineState_7(); NullCheck(L_48); int32_t L_49 = 6; uint32_t L_50 = (L_48)->GetAt(static_cast(L_49)); NullCheck(L_44); (L_44)->SetAt(static_cast(((int32_t)11)), (uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_47, (int32_t)L_50))); // engineState[12] = hsalsa20Out[7] - engineState[7]; UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_51 = ((Salsa20Engine_t661640C461D9868FAA0FE0F7765F0380147FEC66 *)__this)->get_engineState_7(); UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_52 = V_0; NullCheck(L_52); int32_t L_53 = 7; uint32_t L_54 = (L_52)->GetAt(static_cast(L_53)); UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_55 = ((Salsa20Engine_t661640C461D9868FAA0FE0F7765F0380147FEC66 *)__this)->get_engineState_7(); NullCheck(L_55); int32_t L_56 = 7; uint32_t L_57 = (L_55)->GetAt(static_cast(L_56)); NullCheck(L_51); (L_51)->SetAt(static_cast(((int32_t)12)), (uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_54, (int32_t)L_57))); // engineState[13] = hsalsa20Out[8] - engineState[8]; UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_58 = ((Salsa20Engine_t661640C461D9868FAA0FE0F7765F0380147FEC66 *)__this)->get_engineState_7(); UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_59 = V_0; NullCheck(L_59); int32_t L_60 = 8; uint32_t L_61 = (L_59)->GetAt(static_cast(L_60)); UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_62 = ((Salsa20Engine_t661640C461D9868FAA0FE0F7765F0380147FEC66 *)__this)->get_engineState_7(); NullCheck(L_62); int32_t L_63 = 8; uint32_t L_64 = (L_62)->GetAt(static_cast(L_63)); NullCheck(L_58); (L_58)->SetAt(static_cast(((int32_t)13)), (uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_61, (int32_t)L_64))); // engineState[14] = hsalsa20Out[9] - engineState[9]; UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_65 = ((Salsa20Engine_t661640C461D9868FAA0FE0F7765F0380147FEC66 *)__this)->get_engineState_7(); UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_66 = V_0; NullCheck(L_66); int32_t L_67 = ((int32_t)9); uint32_t L_68 = (L_66)->GetAt(static_cast(L_67)); UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_69 = ((Salsa20Engine_t661640C461D9868FAA0FE0F7765F0380147FEC66 *)__this)->get_engineState_7(); NullCheck(L_69); int32_t L_70 = ((int32_t)9); uint32_t L_71 = (L_69)->GetAt(static_cast(L_70)); NullCheck(L_65); (L_65)->SetAt(static_cast(((int32_t)14)), (uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_68, (int32_t)L_71))); // Pack.LE_To_UInt32(ivBytes, 16, engineState, 6, 2); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_72 = ___ivBytes1; UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_73 = ((Salsa20Engine_t661640C461D9868FAA0FE0F7765F0380147FEC66 *)__this)->get_engineState_7(); Pack_LE_To_UInt32_mBBCA4BA6D7B002E80F95D10BEF88002C1B27FBE8(L_72, ((int32_t)16), L_73, 6, 2, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Engines.XSalsa20Engine::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XSalsa20Engine__ctor_m5017164D453FD3386EB508E910C6A08F076EC605 (XSalsa20Engine_tC0EFC0018B12DF0F89158A81A2358AF6E14C6678 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Salsa20Engine_t661640C461D9868FAA0FE0F7765F0380147FEC66_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(Salsa20Engine_t661640C461D9868FAA0FE0F7765F0380147FEC66_il2cpp_TypeInfo_var); Salsa20Engine__ctor_m7A3B8728EA88D12E579CC94128053C95DE2AD974(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Engines.XteaEngine::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XteaEngine__ctor_mCAB2432487E24E628510FF8C7C78FE98B82144A7 (XteaEngine_t1B9C763912FA90CC6C1F877687C08C15F3E2C6DE * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // private uint[] _S = new uint[4], UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_0 = (UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF*)(UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF*)SZArrayNew(UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF_il2cpp_TypeInfo_var, (uint32_t)4); __this->set__S_3(L_0); // _sum0 = new uint[32], UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_1 = (UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF*)(UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF*)SZArrayNew(UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF_il2cpp_TypeInfo_var, (uint32_t)((int32_t)32)); __this->set__sum0_4(L_1); // _sum1 = new uint[32]; UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_2 = (UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF*)(UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF*)SZArrayNew(UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF_il2cpp_TypeInfo_var, (uint32_t)((int32_t)32)); __this->set__sum1_5(L_2); // public XteaEngine() Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); // _initialised = false; __this->set__initialised_6((bool)0); // } return; } } // System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Engines.XteaEngine::get_AlgorithmName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* XteaEngine_get_AlgorithmName_m29D992AE811C4FFF093B6701F1B12BAB3268700B (XteaEngine_t1B9C763912FA90CC6C1F877687C08C15F3E2C6DE * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral78DCF8BE751904E2F2302AEBBAF7BA625943E2EB); s_Il2CppMethodInitialized = true; } { // get { return "XTEA"; } return _stringLiteral78DCF8BE751904E2F2302AEBBAF7BA625943E2EB; } } // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Engines.XteaEngine::get_IsPartialBlockOkay() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool XteaEngine_get_IsPartialBlockOkay_m88DA1018E022DF2DC51166A0C8E845EEEB4AE3C7 (XteaEngine_t1B9C763912FA90CC6C1F877687C08C15F3E2C6DE * __this, const RuntimeMethod* method) { { // get { return false; } return (bool)0; } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Engines.XteaEngine::GetBlockSize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XteaEngine_GetBlockSize_mE3D76F4ADFBA6F28072C2B4321BC5461B65D0BFE (XteaEngine_t1B9C763912FA90CC6C1F877687C08C15F3E2C6DE * __this, const RuntimeMethod* method) { { // return block_size; return 8; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Engines.XteaEngine::Init(System.Boolean,BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.ICipherParameters) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XteaEngine_Init_m260A7421CEBAA318605D7DECAF2D77C703CCCC17 (XteaEngine_t1B9C763912FA90CC6C1F877687C08C15F3E2C6DE * __this, bool ___forEncryption0, RuntimeObject* ___parameters1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * V_0 = NULL; { // if (!(parameters is KeyParameter)) RuntimeObject* L_0 = ___parameters1; if (((KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC *)IsInstClass((RuntimeObject*)L_0, KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC_il2cpp_TypeInfo_var))) { goto IL_001e; } } { // throw new ArgumentException("invalid parameter passed to TEA init - " // + BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.GetTypeName(parameters)); RuntimeObject* L_1 = ___parameters1; IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var))); String_t* L_2; L_2 = Platform_GetTypeName_m6EE4C5C80014DB651B39EAA755D394E21009EADB(L_1, /*hidden argument*/NULL); String_t* L_3; L_3 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD187D665853B8D7EA2432DDF6CBF2E65DC3BA81D)), L_2, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_4 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_4, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XteaEngine_Init_m260A7421CEBAA318605D7DECAF2D77C703CCCC17_RuntimeMethod_var))); } IL_001e: { // _forEncryption = forEncryption; bool L_5 = ___forEncryption0; __this->set__forEncryption_7(L_5); // _initialised = true; __this->set__initialised_6((bool)1); // KeyParameter p = (KeyParameter) parameters; RuntimeObject* L_6 = ___parameters1; V_0 = ((KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC *)CastclassClass((RuntimeObject*)L_6, KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC_il2cpp_TypeInfo_var)); // setKey(p.GetKey()); KeyParameter_t5407FA53F46E5481A5F286DE11652FC49C78A7FC * L_7 = V_0; NullCheck(L_7); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_8; L_8 = KeyParameter_GetKey_mCA2C132B43F669063C426602DD5A8A672531385A(L_7, /*hidden argument*/NULL); XteaEngine_setKey_m02BDF8481CF785F6D210B0139149B72058BF92D1(__this, L_8, /*hidden argument*/NULL); // } return; } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Engines.XteaEngine::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XteaEngine_ProcessBlock_m37E443C11588C84B5B2F6E463BF7075B7090C98C (XteaEngine_t1B9C763912FA90CC6C1F877687C08C15F3E2C6DE * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___inBytes0, int32_t ___inOff1, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___outBytes2, int32_t ___outOff3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2F851A80AFDF46DB1A689F30C8AD9B5960FA47F2); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB4B7C0DD1031D01D1D525A2AFE11B0C544BA74ED); s_Il2CppMethodInitialized = true; } { // if (!_initialised) bool L_0 = __this->get__initialised_6(); if (L_0) { goto IL_001e; } } { // throw new InvalidOperationException(AlgorithmName + " not initialised"); String_t* L_1; L_1 = VirtualFuncInvoker0< String_t* >::Invoke(10 /* System.String BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Engines.XteaEngine::get_AlgorithmName() */, __this); String_t* L_2; L_2 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF54C61EA654A453F853B81CE072DEC048FBB4991)), /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, L_2, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&XteaEngine_ProcessBlock_m37E443C11588C84B5B2F6E463BF7075B7090C98C_RuntimeMethod_var))); } IL_001e: { // Check.DataLength(inBytes, inOff, block_size, "input buffer too short"); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = ___inBytes0; int32_t L_5 = ___inOff1; Check_DataLength_m987B9B6E75E7F5711F99C2B1EFC990B922ECAB3F(L_4, L_5, 8, _stringLiteralB4B7C0DD1031D01D1D525A2AFE11B0C544BA74ED, /*hidden argument*/NULL); // Check.OutputLength(outBytes, outOff, block_size, "output buffer too short"); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_6 = ___outBytes2; int32_t L_7 = ___outOff3; Check_OutputLength_mFF38F66673647A1F0F8806CDF8FAD6B168B951B6(L_6, L_7, 8, _stringLiteral2F851A80AFDF46DB1A689F30C8AD9B5960FA47F2, /*hidden argument*/NULL); // return _forEncryption // ? encryptBlock(inBytes, inOff, outBytes, outOff) // : decryptBlock(inBytes, inOff, outBytes, outOff); bool L_8 = __this->get__forEncryption_7(); if (L_8) { goto IL_004d; } } { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_9 = ___inBytes0; int32_t L_10 = ___inOff1; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_11 = ___outBytes2; int32_t L_12 = ___outOff3; int32_t L_13; L_13 = XteaEngine_decryptBlock_m197E1AC6BD2CADC380A2B298BE8F1B145C832E43(__this, L_9, L_10, L_11, L_12, /*hidden argument*/NULL); return L_13; } IL_004d: { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_14 = ___inBytes0; int32_t L_15 = ___inOff1; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_16 = ___outBytes2; int32_t L_17 = ___outOff3; int32_t L_18; L_18 = XteaEngine_encryptBlock_mDCBBD881AC93C18E81B18A044BC032C85B845540(__this, L_14, L_15, L_16, L_17, /*hidden argument*/NULL); return L_18; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Engines.XteaEngine::Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XteaEngine_Reset_m94893C8ADCAAEF59BD2D48D80572DA2EF638DE06 (XteaEngine_t1B9C763912FA90CC6C1F877687C08C15F3E2C6DE * __this, const RuntimeMethod* method) { { // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Engines.XteaEngine::setKey(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XteaEngine_setKey_m02BDF8481CF785F6D210B0139149B72058BF92D1 (XteaEngine_t1B9C763912FA90CC6C1F877687C08C15F3E2C6DE * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___key0, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { // for (i = j = 0; i < 4; i++,j+=4) int32_t L_0 = 0; V_1 = L_0; V_0 = L_0; goto IL_001d; } IL_0006: { // _S[i] = Pack.BE_To_UInt32(key, j); UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_1 = __this->get__S_3(); int32_t L_2 = V_0; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_3 = ___key0; int32_t L_4 = V_1; uint32_t L_5; L_5 = Pack_BE_To_UInt32_m12CE84088675F71E264FA24F5DD4ED29AB44254C(L_3, L_4, /*hidden argument*/NULL); NullCheck(L_1); (L_1)->SetAt(static_cast(L_2), (uint32_t)L_5); // for (i = j = 0; i < 4; i++,j+=4) int32_t L_6 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1)); // for (i = j = 0; i < 4; i++,j+=4) int32_t L_7 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)4)); } IL_001d: { // for (i = j = 0; i < 4; i++,j+=4) int32_t L_8 = V_0; if ((((int32_t)L_8) < ((int32_t)4))) { goto IL_0006; } } { // for (i = j = 0; i < rounds; i++) int32_t L_9 = 0; V_1 = L_9; V_0 = L_9; goto IL_005e; } IL_0027: { // _sum0[i] = ((uint)j + _S[j & 3]); UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_10 = __this->get__sum0_4(); int32_t L_11 = V_0; int32_t L_12 = V_1; UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_13 = __this->get__S_3(); int32_t L_14 = V_1; NullCheck(L_13); int32_t L_15 = ((int32_t)((int32_t)L_14&(int32_t)3)); uint32_t L_16 = (L_13)->GetAt(static_cast(L_15)); NullCheck(L_10); (L_10)->SetAt(static_cast(L_11), (uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)L_16))); // j += delta; int32_t L_17 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)((int32_t)-1640531527))); // _sum1[i] = ((uint)j + _S[j >> 11 & 3]); UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_18 = __this->get__sum1_5(); int32_t L_19 = V_0; int32_t L_20 = V_1; UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_21 = __this->get__S_3(); int32_t L_22 = V_1; NullCheck(L_21); int32_t L_23 = ((int32_t)((int32_t)((int32_t)((int32_t)L_22>>(int32_t)((int32_t)11)))&(int32_t)3)); uint32_t L_24 = (L_21)->GetAt(static_cast(L_23)); NullCheck(L_18); (L_18)->SetAt(static_cast(L_19), (uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)L_24))); // for (i = j = 0; i < rounds; i++) int32_t L_25 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1)); } IL_005e: { // for (i = j = 0; i < rounds; i++) int32_t L_26 = V_0; if ((((int32_t)L_26) < ((int32_t)((int32_t)32)))) { goto IL_0027; } } { // } return; } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Engines.XteaEngine::encryptBlock(System.Byte[],System.Int32,System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XteaEngine_encryptBlock_mDCBBD881AC93C18E81B18A044BC032C85B845540 (XteaEngine_t1B9C763912FA90CC6C1F877687C08C15F3E2C6DE * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___inBytes0, int32_t ___inOff1, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___outBytes2, int32_t ___outOff3, const RuntimeMethod* method) { uint32_t V_0 = 0; uint32_t V_1 = 0; int32_t V_2 = 0; { // uint v0 = Pack.BE_To_UInt32(inBytes, inOff); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___inBytes0; int32_t L_1 = ___inOff1; uint32_t L_2; L_2 = Pack_BE_To_UInt32_m12CE84088675F71E264FA24F5DD4ED29AB44254C(L_0, L_1, /*hidden argument*/NULL); V_0 = L_2; // uint v1 = Pack.BE_To_UInt32(inBytes, inOff + 4); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_3 = ___inBytes0; int32_t L_4 = ___inOff1; uint32_t L_5; L_5 = Pack_BE_To_UInt32_m12CE84088675F71E264FA24F5DD4ED29AB44254C(L_3, ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)4)), /*hidden argument*/NULL); V_1 = L_5; // for (int i = 0; i < rounds; i++) V_2 = 0; goto IL_0044; } IL_0016: { // v0 += ((v1 << 4 ^ v1 >> 5) + v1) ^ _sum0[i]; uint32_t L_6 = V_0; uint32_t L_7 = V_1; uint32_t L_8 = V_1; uint32_t L_9 = V_1; UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_10 = __this->get__sum0_4(); int32_t L_11 = V_2; NullCheck(L_10); int32_t L_12 = L_11; uint32_t L_13 = (L_10)->GetAt(static_cast(L_12)); V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_7<<(int32_t)4))^(int32_t)((int32_t)((uint32_t)L_8>>5)))), (int32_t)L_9))^(int32_t)L_13)))); // v1 += ((v0 << 4 ^ v0 >> 5) + v0) ^ _sum1[i]; uint32_t L_14 = V_1; uint32_t L_15 = V_0; uint32_t L_16 = V_0; uint32_t L_17 = V_0; UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_18 = __this->get__sum1_5(); int32_t L_19 = V_2; NullCheck(L_18); int32_t L_20 = L_19; uint32_t L_21 = (L_18)->GetAt(static_cast(L_20)); V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_15<<(int32_t)4))^(int32_t)((int32_t)((uint32_t)L_16>>5)))), (int32_t)L_17))^(int32_t)L_21)))); // for (int i = 0; i < rounds; i++) int32_t L_22 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_22, (int32_t)1)); } IL_0044: { // for (int i = 0; i < rounds; i++) int32_t L_23 = V_2; if ((((int32_t)L_23) < ((int32_t)((int32_t)32)))) { goto IL_0016; } } { // Pack.UInt32_To_BE(v0, outBytes, outOff); uint32_t L_24 = V_0; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_25 = ___outBytes2; int32_t L_26 = ___outOff3; Pack_UInt32_To_BE_m5560F9EA8F3737406E7B760897168AA1B797B2C5(L_24, L_25, L_26, /*hidden argument*/NULL); // Pack.UInt32_To_BE(v1, outBytes, outOff + 4); uint32_t L_27 = V_1; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_28 = ___outBytes2; int32_t L_29 = ___outOff3; Pack_UInt32_To_BE_m5560F9EA8F3737406E7B760897168AA1B797B2C5(L_27, L_28, ((int32_t)il2cpp_codegen_add((int32_t)L_29, (int32_t)4)), /*hidden argument*/NULL); // return block_size; return 8; } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Engines.XteaEngine::decryptBlock(System.Byte[],System.Int32,System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t XteaEngine_decryptBlock_m197E1AC6BD2CADC380A2B298BE8F1B145C832E43 (XteaEngine_t1B9C763912FA90CC6C1F877687C08C15F3E2C6DE * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___inBytes0, int32_t ___inOff1, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___outBytes2, int32_t ___outOff3, const RuntimeMethod* method) { uint32_t V_0 = 0; uint32_t V_1 = 0; int32_t V_2 = 0; { // uint v0 = Pack.BE_To_UInt32(inBytes, inOff); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___inBytes0; int32_t L_1 = ___inOff1; uint32_t L_2; L_2 = Pack_BE_To_UInt32_m12CE84088675F71E264FA24F5DD4ED29AB44254C(L_0, L_1, /*hidden argument*/NULL); V_0 = L_2; // uint v1 = Pack.BE_To_UInt32(inBytes, inOff + 4); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_3 = ___inBytes0; int32_t L_4 = ___inOff1; uint32_t L_5; L_5 = Pack_BE_To_UInt32_m12CE84088675F71E264FA24F5DD4ED29AB44254C(L_3, ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)4)), /*hidden argument*/NULL); V_1 = L_5; // for (int i = rounds-1; i >= 0; i--) V_2 = ((int32_t)31); goto IL_0045; } IL_0017: { // v1 -= ((v0 << 4 ^ v0 >> 5) + v0) ^ _sum1[i]; uint32_t L_6 = V_1; uint32_t L_7 = V_0; uint32_t L_8 = V_0; uint32_t L_9 = V_0; UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_10 = __this->get__sum1_5(); int32_t L_11 = V_2; NullCheck(L_10); int32_t L_12 = L_11; uint32_t L_13 = (L_10)->GetAt(static_cast(L_12)); V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_7<<(int32_t)4))^(int32_t)((int32_t)((uint32_t)L_8>>5)))), (int32_t)L_9))^(int32_t)L_13)))); // v0 -= ((v1 << 4 ^ v1 >> 5) + v1) ^ _sum0[i]; uint32_t L_14 = V_0; uint32_t L_15 = V_1; uint32_t L_16 = V_1; uint32_t L_17 = V_1; UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_18 = __this->get__sum0_4(); int32_t L_19 = V_2; NullCheck(L_18); int32_t L_20 = L_19; uint32_t L_21 = (L_18)->GetAt(static_cast(L_20)); V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_14, (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_15<<(int32_t)4))^(int32_t)((int32_t)((uint32_t)L_16>>5)))), (int32_t)L_17))^(int32_t)L_21)))); // for (int i = rounds-1; i >= 0; i--) int32_t L_22 = V_2; V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_22, (int32_t)1)); } IL_0045: { // for (int i = rounds-1; i >= 0; i--) int32_t L_23 = V_2; if ((((int32_t)L_23) >= ((int32_t)0))) { goto IL_0017; } } { // Pack.UInt32_To_BE(v0, outBytes, outOff); uint32_t L_24 = V_0; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_25 = ___outBytes2; int32_t L_26 = ___outOff3; Pack_UInt32_To_BE_m5560F9EA8F3737406E7B760897168AA1B797B2C5(L_24, L_25, L_26, /*hidden argument*/NULL); // Pack.UInt32_To_BE(v1, outBytes, outOff + 4); uint32_t L_27 = V_1; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_28 = ___outBytes2; int32_t L_29 = ___outOff3; Pack_UInt32_To_BE_m5560F9EA8F3737406E7B760897168AA1B797B2C5(L_27, L_28, ((int32_t)il2cpp_codegen_add((int32_t)L_29, (int32_t)4)), /*hidden argument*/NULL); // return block_size; return 8; } } #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 Yeji::SetFlyHeight(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Yeji_SetFlyHeight_mF016E2493DAAB0488A3FC6B77F32886255D92559 (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * __this, float ___value0, const RuntimeMethod* method) { float V_0 = 0.0f; { // if (toFlyHeight.Equals(float.NaN)) toFlyHeight = value; float* L_0 = __this->get_address_of_toFlyHeight_11(); bool L_1; L_1 = Single_Equals_m298A3A849F30B9900813BE6DD98AE6810CDBE914((float*)L_0, (std::numeric_limits::quiet_NaN()), /*hidden argument*/NULL); if (!L_1) { goto IL_0019; } } { // if (toFlyHeight.Equals(float.NaN)) toFlyHeight = value; float L_2 = ___value0; __this->set_toFlyHeight_11(L_2); } IL_0019: { // currentHeight = value; float L_3 = ___value0; __this->set_currentHeight_10(L_3); // float agentBaseOffset = value - flyPlaneHeight; float L_4 = ___value0; float L_5 = __this->get_flyPlaneHeight_9(); V_0 = ((float)il2cpp_codegen_subtract((float)L_4, (float)L_5)); // this.agent.baseOffset = agentBaseOffset / GetScaleY();//??agent?baseoffset?????scale?? NavMeshAgent_tB9746B6C38013341DB63973CA7ED657494EFB41B * L_6 = __this->get_agent_6(); float L_7 = V_0; float L_8; L_8 = Yeji_GetScaleY_m4DEB2F42B791F306F2C4774E4187F88F4E4256C1(__this, /*hidden argument*/NULL); NullCheck(L_6); NavMeshAgent_set_baseOffset_mBB3E1826FC47E1A52F3CF46F59015732AA0FD5DE(L_6, ((float)((float)L_7/(float)L_8)), /*hidden argument*/NULL); // if (_firstSetFlyHeight) { bool L_9 = __this->get__firstSetFlyHeight_12(); if (!L_9) { goto IL_0064; } } { // _firstSetFlyHeight = false; __this->set__firstSetFlyHeight_12((bool)0); // state.flying = currentHeight > GetLandHeight(); State_t908756508036982A4DF72593F6016F3C51C610B7 * L_10 = __this->get_state_26(); float L_11 = __this->get_currentHeight_10(); float L_12; L_12 = Yeji_GetLandHeight_mECD04216F8343B8EDDFFE838EA7625A15B059093(__this, /*hidden argument*/NULL); NullCheck(L_10); State_set_flying_mC1A25D43DA68DCEBD1C98F96E54D3250ABA3C928(L_10, (bool)((((float)L_11) > ((float)L_12))? 1 : 0), /*hidden argument*/NULL); } IL_0064: { // } return; } } // System.Single Yeji::GetLandHeight() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Yeji_GetLandHeight_mECD04216F8343B8EDDFFE838EA7625A15B059093 (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (stoneRecorder.IsStoneLocker(this)) return stoneRecorder.GetStoneYOffLand(); IL2CPP_RUNTIME_CLASS_INIT(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var); StoneRecorder_tBA3376B07C34D8BDC00CAC5B96BDC69A6EC4DB4D * L_0 = ((Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_StaticFields*)il2cpp_codegen_static_fields_for(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var))->get_stoneRecorder_30(); NullCheck(L_0); bool L_1; L_1 = StoneRecorder_IsStoneLocker_m7C9D7F458478B183D7D09CF84B47BE70264CCED8(L_0, __this, /*hidden argument*/NULL); if (!L_1) { goto IL_0018; } } { // if (stoneRecorder.IsStoneLocker(this)) return stoneRecorder.GetStoneYOffLand(); IL2CPP_RUNTIME_CLASS_INIT(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var); StoneRecorder_tBA3376B07C34D8BDC00CAC5B96BDC69A6EC4DB4D * L_2 = ((Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_StaticFields*)il2cpp_codegen_static_fields_for(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var))->get_stoneRecorder_30(); NullCheck(L_2); float L_3; L_3 = StoneRecorder_GetStoneYOffLand_m65054E5ECE4FA7CF32D81B7E119196128BD2523B(L_2, /*hidden argument*/NULL); return L_3; } IL_0018: { // return 0f; return (0.0f); } } // System.Single Yeji::GetScaleY() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Yeji_GetScaleY_m4DEB2F42B791F306F2C4774E4187F88F4E4256C1 (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * __this, const RuntimeMethod* method) { { // if (_scaleY < 0) _scaleY = transform.localScale.y; float L_0 = __this->get__scaleY_13(); if ((!(((float)L_0) < ((float)(0.0f))))) { goto IL_0023; } } { // if (_scaleY < 0) _scaleY = transform.localScale.y; Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_1; L_1 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(__this, /*hidden argument*/NULL); NullCheck(L_1); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_2; L_2 = Transform_get_localScale_mD9DF6CA81108C2A6002B5EA2BE25A6CD2723D046(L_1, /*hidden argument*/NULL); float L_3 = L_2.get_y_3(); __this->set__scaleY_13(L_3); } IL_0023: { // return _scaleY; float L_4 = __this->get__scaleY_13(); return L_4; } } // System.Void Yeji::Awake() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Yeji_Awake_m517B25F6965E92F6254A024F25B845A4468581F6 (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Component_GetComponent_TisAnimator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149_mF86B79BED8570481BDFC54EAEF1F692E0508BA38_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Component_GetComponent_TisNavMeshAgent_tB9746B6C38013341DB63973CA7ED657494EFB41B_mEB498E1E05ECE05CF007D68E3C83DABA9E7CC819_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Add_mB2893D629DB29C34964971EA0FE8DA9A28411FA5_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&State_t908756508036982A4DF72593F6016F3C51C610B7_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // yejiSet.Add(this); IL2CPP_RUNTIME_CLASS_INIT(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var); HashSet_1_t47ED9A0606C5D93A2045DE3AACBA2CD73C930023 * L_0 = ((Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_StaticFields*)il2cpp_codegen_static_fields_for(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var))->get_yejiSet_28(); NullCheck(L_0); bool L_1; L_1 = HashSet_1_Add_mB2893D629DB29C34964971EA0FE8DA9A28411FA5(L_0, __this, /*hidden argument*/HashSet_1_Add_mB2893D629DB29C34964971EA0FE8DA9A28411FA5_RuntimeMethod_var); // state = new State(); State_t908756508036982A4DF72593F6016F3C51C610B7 * L_2 = (State_t908756508036982A4DF72593F6016F3C51C610B7 *)il2cpp_codegen_object_new(State_t908756508036982A4DF72593F6016F3C51C610B7_il2cpp_TypeInfo_var); State__ctor_m45E3577C80B243CB10EBAADCE529F6635ABF9D78(L_2, /*hidden argument*/NULL); __this->set_state_26(L_2); // state.animal = this; State_t908756508036982A4DF72593F6016F3C51C610B7 * L_3 = __this->get_state_26(); NullCheck(L_3); L_3->set_animal_7(__this); // animator = GetComponent(); Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * L_4; L_4 = Component_GetComponent_TisAnimator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149_mF86B79BED8570481BDFC54EAEF1F692E0508BA38(__this, /*hidden argument*/Component_GetComponent_TisAnimator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149_mF86B79BED8570481BDFC54EAEF1F692E0508BA38_RuntimeMethod_var); __this->set_animator_5(L_4); // agent = GetComponent(); NavMeshAgent_tB9746B6C38013341DB63973CA7ED657494EFB41B * L_5; L_5 = Component_GetComponent_TisNavMeshAgent_tB9746B6C38013341DB63973CA7ED657494EFB41B_mEB498E1E05ECE05CF007D68E3C83DABA9E7CC819(__this, /*hidden argument*/Component_GetComponent_TisNavMeshAgent_tB9746B6C38013341DB63973CA7ED657494EFB41B_mEB498E1E05ECE05CF007D68E3C83DABA9E7CC819_RuntimeMethod_var); __this->set_agent_6(L_5); // this.agent.avoidancePriority = avoidancePriority; NavMeshAgent_tB9746B6C38013341DB63973CA7ED657494EFB41B * L_6 = __this->get_agent_6(); int32_t L_7; L_7 = Yeji_get_avoidancePriority_mF35CC71D96F2726B85FEE38E59D6A4A7550BA22B(/*hidden argument*/NULL); NullCheck(L_6); NavMeshAgent_set_avoidancePriority_mEBC1EE92C76289E3F1CD4551871D3E2C7B379A7B(L_6, L_7, /*hidden argument*/NULL); // this.onlineHandler.InitOnAwake(this); OnlineHandler_t0EEA4F8C0170610DD9F19AE15F12F6A4C74E3587 * L_8 = __this->get_onlineHandler_29(); NullCheck(L_8); OnlineHandler_InitOnAwake_mC86B99678A5DD5EA2F69D3750F9D4FE6FD0EA311(L_8, __this, /*hidden argument*/NULL); // } return; } } // System.Int32 Yeji::get_avoidancePriority() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Yeji_get_avoidancePriority_mF35CC71D96F2726B85FEE38E59D6A4A7550BA22B (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (_avoidancePriority < 50) { IL2CPP_RUNTIME_CLASS_INIT(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var); int32_t L_0 = ((Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_StaticFields*)il2cpp_codegen_static_fields_for(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var))->get__avoidancePriority_14(); if ((((int32_t)L_0) >= ((int32_t)((int32_t)50)))) { goto IL_0017; } } { // _avoidancePriority++; IL2CPP_RUNTIME_CLASS_INIT(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var); int32_t L_1 = ((Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_StaticFields*)il2cpp_codegen_static_fields_for(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var))->get__avoidancePriority_14(); ((Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_StaticFields*)il2cpp_codegen_static_fields_for(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var))->set__avoidancePriority_14(((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)1))); // } else { goto IL_001d; } IL_0017: { // _avoidancePriority = 1; IL2CPP_RUNTIME_CLASS_INIT(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var); ((Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_StaticFields*)il2cpp_codegen_static_fields_for(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var))->set__avoidancePriority_14(1); } IL_001d: { // return _avoidancePriority; IL2CPP_RUNTIME_CLASS_INIT(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var); int32_t L_2 = ((Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_StaticFields*)il2cpp_codegen_static_fields_for(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var))->get__avoidancePriority_14(); return L_2; } } // System.Void Yeji::OnDestroy() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Yeji_OnDestroy_mC2CE5ECD79B6F9F96D47B8295DDDF8E2405E974B (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Remove_m4AA89D9FE720A131C066D96CBCC54F06E6AC48C3_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // yejiSet.Remove(this); IL2CPP_RUNTIME_CLASS_INIT(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var); HashSet_1_t47ED9A0606C5D93A2045DE3AACBA2CD73C930023 * L_0 = ((Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_StaticFields*)il2cpp_codegen_static_fields_for(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var))->get_yejiSet_28(); NullCheck(L_0); bool L_1; L_1 = HashSet_1_Remove_m4AA89D9FE720A131C066D96CBCC54F06E6AC48C3(L_0, __this, /*hidden argument*/HashSet_1_Remove_m4AA89D9FE720A131C066D96CBCC54F06E6AC48C3_RuntimeMethod_var); // tryReleaseOccupyTree(); Yeji_tryReleaseOccupyTree_mAE086656FC652E287ACA3FC243A2D0456F475A77(__this, /*hidden argument*/NULL); // ReleasePreHeight(this); Yeji_ReleasePreHeight_m942933600988E1C41597DABCA0E83405C9EAB624(__this, /*hidden argument*/NULL); // stoneRecorder.TryRelease(this); StoneRecorder_tBA3376B07C34D8BDC00CAC5B96BDC69A6EC4DB4D * L_2 = ((Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_StaticFields*)il2cpp_codegen_static_fields_for(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var))->get_stoneRecorder_30(); NullCheck(L_2); bool L_3; L_3 = StoneRecorder_TryRelease_m53DB4666470A4740D7A00DA846DC93787B4653D8(L_2, __this, /*hidden argument*/NULL); // } return; } } // System.Void Yeji::Update() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Yeji_Update_m63E1040460780B39D5A59BAE96BC16E55440595A (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * __this, const RuntimeMethod* method) { { // this.onlineHandler.Update(); OnlineHandler_t0EEA4F8C0170610DD9F19AE15F12F6A4C74E3587 * L_0 = __this->get_onlineHandler_29(); NullCheck(L_0); OnlineHandler_Update_m2F8FF5D8A08C4316EDA9E6B6C9CB055520D1FA78(L_0, /*hidden argument*/NULL); // if (this.onlineHandler.isMirror) return; OnlineHandler_t0EEA4F8C0170610DD9F19AE15F12F6A4C74E3587 * L_1 = __this->get_onlineHandler_29(); NullCheck(L_1); bool L_2 = L_1->get_isMirror_2(); if (!L_2) { goto IL_0019; } } { // if (this.onlineHandler.isMirror) return; return; } IL_0019: { // if (HasCloseToDestination()) { bool L_3; L_3 = Yeji_HasCloseToDestination_mAC121055A7794D02BE490B5428EE148C3EED8E3E(__this, /*hidden argument*/NULL); if (!L_3) { goto IL_0029; } } { // OnReachDestination(); Yeji_OnReachDestination_mCFB3D8EB0DE27FF1C7C0C3A01E8447EC376B15E3(__this, /*hidden argument*/NULL); // } else { goto IL_002f; } IL_0029: { // OnMovingToDestination(); Yeji_OnMovingToDestination_mEAC5A32BB5EDC0B263B94886486E165241EDB624(__this, /*hidden argument*/NULL); } IL_002f: { // UpdateAutoStrategy(); Yeji_UpdateAutoStrategy_m6D3D9813D3E7D9F7DBB160C9FB4E30609F7AB539(__this, /*hidden argument*/NULL); // } return; } } // System.Void Yeji::OnHit(Arrow,UnityEngine.Vector3,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Yeji_OnHit_mF3F43F9B833BCD8F147CF9A1E4250D6A8032186B (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * __this, Arrow_t98BA45BD73ADFAD1B38830B6D6D48588A96AC86A * ___arrow0, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___hitPoint1, String_t* ___partName2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC18C9BB6DF0D5C60CE5A5D2D3D6111BEB6F8CCEB); s_Il2CppMethodInitialized = true; } { // arrow.Head().position = hitPoint + arrow.transform.forward * 0.1f; Arrow_t98BA45BD73ADFAD1B38830B6D6D48588A96AC86A * L_0 = ___arrow0; NullCheck(L_0); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_1; L_1 = Arrow_Head_m0B04E8E5BCECF6693A2480674F9E8A57D6F3CD9D(L_0, /*hidden argument*/NULL); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_2 = ___hitPoint1; Arrow_t98BA45BD73ADFAD1B38830B6D6D48588A96AC86A * L_3 = ___arrow0; NullCheck(L_3); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_4; L_4 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(L_3, /*hidden argument*/NULL); NullCheck(L_4); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_5; L_5 = Transform_get_forward_mD850B9ECF892009E3485408DC0D375165B7BF053(L_4, /*hidden argument*/NULL); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_6; L_6 = Vector3_op_Multiply_m9EA3D18290418D7B410C7D11C4788C13BFD2C30A_inline(L_5, (0.100000001f), /*hidden argument*/NULL); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_7; L_7 = Vector3_op_Addition_mEE4F672B923CCB184C39AABCA33443DB218E50E0_inline(L_2, L_6, /*hidden argument*/NULL); NullCheck(L_1); Transform_set_position_mB169E52D57EEAC1E3F22C5395968714E4F00AC91(L_1, L_7, /*hidden argument*/NULL); // arrow.Hit(); Arrow_t98BA45BD73ADFAD1B38830B6D6D48588A96AC86A * L_8 = ___arrow0; NullCheck(L_8); Arrow_Hit_mA3F0062DD2EA390E347370BF91B818767178724A(L_8, /*hidden argument*/NULL); // if (onlineHandler.isMirror) { OnlineHandler_t0EEA4F8C0170610DD9F19AE15F12F6A4C74E3587 * L_9 = __this->get_onlineHandler_29(); NullCheck(L_9); bool L_10 = L_9->get_isMirror_2(); if (!L_10) { goto IL_0060; } } { // onlineHandler.onHitData = onlineHandler.uid.ToString() + "," + partName; OnlineHandler_t0EEA4F8C0170610DD9F19AE15F12F6A4C74E3587 * L_11 = __this->get_onlineHandler_29(); OnlineHandler_t0EEA4F8C0170610DD9F19AE15F12F6A4C74E3587 * L_12 = __this->get_onlineHandler_29(); NullCheck(L_12); int32_t* L_13 = L_12->get_address_of_uid_1(); String_t* L_14; L_14 = Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411((int32_t*)L_13, /*hidden argument*/NULL); String_t* L_15 = ___partName2; String_t* L_16; L_16 = String_Concat_m89EAB4C6A96B0E5C3F87300D6BE78D386B9EFC44(L_14, _stringLiteralC18C9BB6DF0D5C60CE5A5D2D3D6111BEB6F8CCEB, L_15, /*hidden argument*/NULL); NullCheck(L_11); L_11->set_onHitData_11(L_16); // return; return; } IL_0060: { // OnHitLogic(arrow, partName); Arrow_t98BA45BD73ADFAD1B38830B6D6D48588A96AC86A * L_17 = ___arrow0; String_t* L_18 = ___partName2; Yeji_OnHitLogic_m19CDBC46C73322CD58C6061ED6718D31FDD0B3EF(__this, L_17, L_18, /*hidden argument*/NULL); // } return; } } // System.Void Yeji::OnHitLogic(Arrow,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Yeji_OnHitLogic_m19CDBC46C73322CD58C6061ED6718D31FDD0B3EF (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * __this, Arrow_t98BA45BD73ADFAD1B38830B6D6D48588A96AC86A * ___arrow0, String_t* ___partName1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_Invoke_mE1893FFB3965F3DA39977325B195FF6F8DB9E3DA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral121B3060A7B0A984E273BA5B47B399D1268552E1); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral75E98C78538157035E0D0E268C0A2C76D23211BA); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8DD8D6FCBA1E38E53530F55F7B9061E65C123321); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; Action_2_t2ED3ACC0CD5AF36EDBA73683487219F1ADB37DBD * G_B8_0 = NULL; Action_2_t2ED3ACC0CD5AF36EDBA73683487219F1ADB37DBD * G_B7_0 = NULL; { // int hurtValue = 0; V_0 = 0; // if (partName == "Wing") { String_t* L_0 = ___partName1; bool L_1; L_1 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_0, _stringLiteral121B3060A7B0A984E273BA5B47B399D1268552E1, /*hidden argument*/NULL); if (!L_1) { goto IL_0013; } } { // hurtValue = 1; V_0 = 1; // } goto IL_0033; } IL_0013: { // else if (partName == "Body") hurtValue = 2; String_t* L_2 = ___partName1; bool L_3; L_3 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_2, _stringLiteral75E98C78538157035E0D0E268C0A2C76D23211BA, /*hidden argument*/NULL); if (!L_3) { goto IL_0024; } } { // else if (partName == "Body") hurtValue = 2; V_0 = 2; goto IL_0033; } IL_0024: { // else if (partName == "Head") hurtValue = 3; String_t* L_4 = ___partName1; bool L_5; L_5 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_4, _stringLiteral8DD8D6FCBA1E38E53530F55F7B9061E65C123321, /*hidden argument*/NULL); if (!L_5) { goto IL_0033; } } { // else if (partName == "Head") hurtValue = 3; V_0 = 3; } IL_0033: { // hp -= hurtValue; int32_t L_6 = __this->get_hp_7(); int32_t L_7 = V_0; __this->set_hp_7(((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)L_7))); // GameEventCenter.ins.onTargetAnimalHurt?.Invoke(this, hurtValue); GameEventCenter_tB2B27C459DC3B44364D1B694E8FBDA2EA24E6190 * L_8; L_8 = GameEventCenter_get_ins_mCD62A907C8D59054C6EAE08FC950A452D344C6E3(/*hidden argument*/NULL); NullCheck(L_8); Action_2_t2ED3ACC0CD5AF36EDBA73683487219F1ADB37DBD * L_9 = L_8->get_onTargetAnimalHurt_5(); Action_2_t2ED3ACC0CD5AF36EDBA73683487219F1ADB37DBD * L_10 = L_9; G_B7_0 = L_10; if (L_10) { G_B8_0 = L_10; goto IL_0051; } } { goto IL_0058; } IL_0051: { int32_t L_11 = V_0; NullCheck(G_B8_0); Action_2_Invoke_mE1893FFB3965F3DA39977325B195FF6F8DB9E3DA(G_B8_0, __this, L_11, /*hidden argument*/Action_2_Invoke_mE1893FFB3965F3DA39977325B195FF6F8DB9E3DA_RuntimeMethod_var); } IL_0058: { // if (hp <= 0) { int32_t L_12 = __this->get_hp_7(); if ((((int32_t)L_12) > ((int32_t)0))) { goto IL_0069; } } { // Die(arrow); Arrow_t98BA45BD73ADFAD1B38830B6D6D48588A96AC86A * L_13 = ___arrow0; Yeji_Die_m415C12DDC543DC3B24C7E0973241207D3B6E728F(__this, L_13, /*hidden argument*/NULL); // } else { return; } IL_0069: { // Hurt(); Yeji_Hurt_m2782AF9A8142FA91DA6C47E60B8927A1DC0AD0C5(__this, /*hidden argument*/NULL); // } return; } } // System.Void Yeji::Die(Arrow) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Yeji_Die_m415C12DDC543DC3B24C7E0973241207D3B6E728F (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * __this, Arrow_t98BA45BD73ADFAD1B38830B6D6D48588A96AC86A * ___arrow0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_Invoke_mA2954E8501AB156BB108CEC3D4DC74780BFC3FA9_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AudioMgr_t37818C35286C2FF09D8B8FFF7E74D479D3817DA0_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Yeji_U3CDieU3Eb__20_0_m5BE3B62FC235E4163B39C0EEAA36409A0E08ED24_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE4EA996178DF2EDD616A772D8B33560D1E771B56); s_Il2CppMethodInitialized = true; } Action_1_t1B7004A16BED5066BEB03C343CA7F4B5EE772A10 * G_B7_0 = NULL; Action_1_t1B7004A16BED5066BEB03C343CA7F4B5EE772A10 * G_B6_0 = NULL; { // if (state.dead) return; State_t908756508036982A4DF72593F6016F3C51C610B7 * L_0 = __this->get_state_26(); NullCheck(L_0); bool L_1; L_1 = State_get_dead_m87C8693FDECCAA1D6E39374E15FF1CE156374CB7_inline(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_000e; } } { // if (state.dead) return; return; } IL_000e: { // if (arrow != null) { Arrow_t98BA45BD73ADFAD1B38830B6D6D48588A96AC86A * L_2 = ___arrow0; IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_3; L_3 = Object_op_Inequality_mE1F187520BD83FB7D86A6D850710C4D42B864E90(L_2, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_3) { goto IL_003b; } } { // arrow.onDoNextShoot += delegate() { // Destroy(this.gameObject); // }; Arrow_t98BA45BD73ADFAD1B38830B6D6D48588A96AC86A * L_4 = ___arrow0; Arrow_t98BA45BD73ADFAD1B38830B6D6D48588A96AC86A * L_5 = L_4; NullCheck(L_5); Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * L_6 = L_5->get_onDoNextShoot_17(); Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * L_7 = (Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 *)il2cpp_codegen_object_new(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6_il2cpp_TypeInfo_var); Action__ctor_m07BE5EE8A629FBBA52AE6356D57A0D371BE2574B(L_7, __this, (intptr_t)((intptr_t)Yeji_U3CDieU3Eb__20_0_m5BE3B62FC235E4163B39C0EEAA36409A0E08ED24_RuntimeMethod_var), /*hidden argument*/NULL); Delegate_t * L_8; L_8 = Delegate_Combine_m631D10D6CFF81AB4F237B9D549B235A54F45FA55(L_6, L_7, /*hidden argument*/NULL); NullCheck(L_5); L_5->set_onDoNextShoot_17(((Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 *)CastclassSealed((RuntimeObject*)L_8, Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6_il2cpp_TypeInfo_var))); // } else { goto IL_0047; } IL_003b: { // onlineHandler.onDoNextShootWillDestroy = true; OnlineHandler_t0EEA4F8C0170610DD9F19AE15F12F6A4C74E3587 * L_9 = __this->get_onlineHandler_29(); NullCheck(L_9); L_9->set_onDoNextShootWillDestroy_12((bool)1); } IL_0047: { // this.animator.speed = 1; Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * L_10 = __this->get_animator_5(); NullCheck(L_10); Animator_set_speed_m632FF62E0D6B668C55190B3579B12684316C4041(L_10, (1.0f), /*hidden argument*/NULL); // state.dead = true; State_t908756508036982A4DF72593F6016F3C51C610B7 * L_11 = __this->get_state_26(); NullCheck(L_11); State_set_dead_m5392BEF144571EBB0044391E6814104640AD776B(L_11, (bool)1, /*hidden argument*/NULL); // this.agent.enabled = false; NavMeshAgent_tB9746B6C38013341DB63973CA7ED657494EFB41B * L_12 = __this->get_agent_6(); NullCheck(L_12); Behaviour_set_enabled_mDE415591B28853D1CD764C53CB499A2142247F32(L_12, (bool)0, /*hidden argument*/NULL); // ReleasePreHeight(this); IL2CPP_RUNTIME_CLASS_INIT(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var); Yeji_ReleasePreHeight_m942933600988E1C41597DABCA0E83405C9EAB624(__this, /*hidden argument*/NULL); // onDie?.Invoke(this); Action_1_t1B7004A16BED5066BEB03C343CA7F4B5EE772A10 * L_13 = __this->get_onDie_27(); Action_1_t1B7004A16BED5066BEB03C343CA7F4B5EE772A10 * L_14 = L_13; G_B6_0 = L_14; if (L_14) { G_B7_0 = L_14; goto IL_0081; } } { goto IL_0087; } IL_0081: { NullCheck(G_B7_0); Action_1_Invoke_mA2954E8501AB156BB108CEC3D4DC74780BFC3FA9(G_B7_0, __this, /*hidden argument*/Action_1_Invoke_mA2954E8501AB156BB108CEC3D4DC74780BFC3FA9_RuntimeMethod_var); } IL_0087: { // AudioMgr.ins.PlayAnimalEffect("bird_injured", AudioMgr.GetAudioSource(this.gameObject)); AudioMgr_t37818C35286C2FF09D8B8FFF7E74D479D3817DA0 * L_15 = ((AudioMgr_t37818C35286C2FF09D8B8FFF7E74D479D3817DA0_StaticFields*)il2cpp_codegen_static_fields_for(AudioMgr_t37818C35286C2FF09D8B8FFF7E74D479D3817DA0_il2cpp_TypeInfo_var))->get_ins_5(); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_16; L_16 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B(__this, /*hidden argument*/NULL); AudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B * L_17; L_17 = AudioMgr_GetAudioSource_m95F117594154AC0E3082545053633814AC03265F(L_16, /*hidden argument*/NULL); NullCheck(L_15); AudioMgr_PlayAnimalEffect_m868C5178CAB612E24222E2B9F563CB0EAB1A4EB9(L_15, _stringLiteralE4EA996178DF2EDD616A772D8B33560D1E771B56, L_17, /*hidden argument*/NULL); // this.onlineHandler.injuredID++; OnlineHandler_t0EEA4F8C0170610DD9F19AE15F12F6A4C74E3587 * L_18 = __this->get_onlineHandler_29(); OnlineHandler_t0EEA4F8C0170610DD9F19AE15F12F6A4C74E3587 * L_19 = L_18; NullCheck(L_19); int32_t L_20 = L_19->get_injuredID_13(); NullCheck(L_19); L_19->set_injuredID_13(((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1))); // if (currentHeight < 1.5f) { float L_21 = __this->get_currentHeight_10(); if ((!(((float)L_21) < ((float)(1.5f))))) { goto IL_00dc; } } { // if (arrow != null) arrow.arrowCameraComp.arrowCameraTemplate.SendMsg(0, null); Arrow_t98BA45BD73ADFAD1B38830B6D6D48588A96AC86A * L_22 = ___arrow0; IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_23; L_23 = Object_op_Inequality_mE1F187520BD83FB7D86A6D850710C4D42B864E90(L_22, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_23) { goto IL_00dc; } } { // if (arrow != null) arrow.arrowCameraComp.arrowCameraTemplate.SendMsg(0, null); Arrow_t98BA45BD73ADFAD1B38830B6D6D48588A96AC86A * L_24 = ___arrow0; NullCheck(L_24); ArrowCamera_t793154C45EDFAED3729D4987BA58D315612380FB * L_25 = L_24->get_arrowCameraComp_16(); NullCheck(L_25); ArrowCameraTemplate_tFE88182B75A9486E4D72B88A48F2D1EC6327475B * L_26 = L_25->get_arrowCameraTemplate_5(); NullCheck(L_26); VirtualActionInvoker2< int32_t, RuntimeObject * >::Invoke(6 /* System.Void ArrowCameraTemplate::SendMsg(System.Int32,System.Object) */, L_26, 0, NULL); } IL_00dc: { // } return; } } // System.Void Yeji::Hurt() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Yeji_Hurt_m2782AF9A8142FA91DA6C47E60B8927A1DC0AD0C5 (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AudioMgr_t37818C35286C2FF09D8B8FFF7E74D479D3817DA0_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE4EA996178DF2EDD616A772D8B33560D1E771B56); s_Il2CppMethodInitialized = true; } { // CancelStand(); Yeji_CancelStand_mA97104D40AE52FDF898DB63E4425B823934E3B04(__this, /*hidden argument*/NULL); // CancelFlyStay(); Yeji_CancelFlyStay_mAA82F28242788291FC26624435DCF9ED4B8E3320(__this, /*hidden argument*/NULL); // AudioMgr.ins.PlayAnimalEffect("bird_injured", AudioMgr.GetAudioSource(this.gameObject)); AudioMgr_t37818C35286C2FF09D8B8FFF7E74D479D3817DA0 * L_0 = ((AudioMgr_t37818C35286C2FF09D8B8FFF7E74D479D3817DA0_StaticFields*)il2cpp_codegen_static_fields_for(AudioMgr_t37818C35286C2FF09D8B8FFF7E74D479D3817DA0_il2cpp_TypeInfo_var))->get_ins_5(); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_1; L_1 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B(__this, /*hidden argument*/NULL); AudioSource_tC4BF65AF8CDCAA63724BB3CA59A7A29249269E6B * L_2; L_2 = AudioMgr_GetAudioSource_m95F117594154AC0E3082545053633814AC03265F(L_1, /*hidden argument*/NULL); NullCheck(L_0); AudioMgr_PlayAnimalEffect_m868C5178CAB612E24222E2B9F563CB0EAB1A4EB9(L_0, _stringLiteralE4EA996178DF2EDD616A772D8B33560D1E771B56, L_2, /*hidden argument*/NULL); // this.onlineHandler.injuredID++; OnlineHandler_t0EEA4F8C0170610DD9F19AE15F12F6A4C74E3587 * L_3 = __this->get_onlineHandler_29(); OnlineHandler_t0EEA4F8C0170610DD9F19AE15F12F6A4C74E3587 * L_4 = L_3; NullCheck(L_4); int32_t L_5 = L_4->get_injuredID_13(); NullCheck(L_4); L_4->set_injuredID_13(((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1))); // } return; } } // System.Boolean Yeji::get_moving() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Yeji_get_moving_m7689D372EF476603C2F47C39D9867510EE431F71 (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * __this, const RuntimeMethod* method) { { // get { return _moving; } bool L_0 = __this->get__moving_15(); return L_0; } } // System.Void Yeji::set_moving(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Yeji_set_moving_m1091FE9964B14F4DACCF01BBD33FCA8F1219CA60 (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * __this, bool ___value0, const RuntimeMethod* method) { { // movingTime = 0; __this->set_movingTime_16((0.0f)); // _moving = value; bool L_0 = ___value0; __this->set__moving_15(L_0); // } return; } } // System.Void Yeji::SetDestination(UnityEngine.Vector3) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Yeji_SetDestination_m2DE83CD0199761141D05B1A557013FCF70B54408 (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * __this, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___pos0, const RuntimeMethod* method) { { // moving = true; Yeji_set_moving_m1091FE9964B14F4DACCF01BBD33FCA8F1219CA60(__this, (bool)1, /*hidden argument*/NULL); // this.agent.destination = pos; NavMeshAgent_tB9746B6C38013341DB63973CA7ED657494EFB41B * L_0 = __this->get_agent_6(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_1 = ___pos0; NullCheck(L_0); NavMeshAgent_set_destination_m0EC1C668AD85AC1B26AABF54337D7D0849F760E7(L_0, L_1, /*hidden argument*/NULL); // } return; } } // System.Void Yeji::OnMovingToDestination() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Yeji_OnMovingToDestination_mEAC5A32BB5EDC0B263B94886486E165241EDB624 (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * __this, const RuntimeMethod* method) { { // if (!moving) return; bool L_0; L_0 = Yeji_get_moving_m7689D372EF476603C2F47C39D9867510EE431F71_inline(__this, /*hidden argument*/NULL); if (L_0) { goto IL_0009; } } { // if (!moving) return; return; } IL_0009: { // movingTime += Time.deltaTime; float L_1 = __this->get_movingTime_16(); float L_2; L_2 = Time_get_deltaTime_mCC15F147DA67F38C74CE408FB5D7FF4A87DA2290(/*hidden argument*/NULL); __this->set_movingTime_16(((float)il2cpp_codegen_add((float)L_1, (float)L_2))); // } return; } } // System.Void Yeji::OnReachDestination() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Yeji_OnReachDestination_mCFB3D8EB0DE27FF1C7C0C3A01E8447EC376B15E3 (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * __this, const RuntimeMethod* method) { { // if (!moving) return; bool L_0; L_0 = Yeji_get_moving_m7689D372EF476603C2F47C39D9867510EE431F71_inline(__this, /*hidden argument*/NULL); if (L_0) { goto IL_0009; } } { // if (!moving) return; return; } IL_0009: { // moving = false; Yeji_set_moving_m1091FE9964B14F4DACCF01BBD33FCA8F1219CA60(__this, (bool)0, /*hidden argument*/NULL); // } return; } } // System.Boolean Yeji::HasCloseToDestination() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Yeji_HasCloseToDestination_mAC121055A7794D02BE490B5428EE148C3EED8E3E (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * __this, const RuntimeMethod* method) { Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E V_0; memset((&V_0), 0, sizeof(V_0)); { // if (!moving) return true; bool L_0; L_0 = Yeji_get_moving_m7689D372EF476603C2F47C39D9867510EE431F71_inline(__this, /*hidden argument*/NULL); if (L_0) { goto IL_000a; } } { // if (!moving) return true; return (bool)1; } IL_000a: { // return movingTime > 0.1 && this.agent.velocity.magnitude < 0.05f; float L_1 = __this->get_movingTime_16(); if ((!(((double)((double)((double)L_1))) > ((double)(0.10000000000000001))))) { goto IL_0037; } } { NavMeshAgent_tB9746B6C38013341DB63973CA7ED657494EFB41B * L_2 = __this->get_agent_6(); NullCheck(L_2); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_3; L_3 = NavMeshAgent_get_velocity_mA6F25F6B38D5092BBE6DECD77F8FDB93D5C515C9(L_2, /*hidden argument*/NULL); V_0 = L_3; float L_4; L_4 = Vector3_get_magnitude_mDDD40612220D8104E77E993E18A101A69A944991((Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E *)(&V_0), /*hidden argument*/NULL); return (bool)((((float)L_4) < ((float)(0.0500000007f)))? 1 : 0); } IL_0037: { return (bool)0; } } // System.Void Yeji::StopNavigation() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Yeji_StopNavigation_m66C346CC8F74871881E6B0356F2502A2E20C4F40 (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * __this, const RuntimeMethod* method) { { // if (!moving) return; bool L_0; L_0 = Yeji_get_moving_m7689D372EF476603C2F47C39D9867510EE431F71_inline(__this, /*hidden argument*/NULL); if (L_0) { goto IL_0009; } } { // if (!moving) return; return; } IL_0009: { // this.agent.destination = this.agent.nextPosition; NavMeshAgent_tB9746B6C38013341DB63973CA7ED657494EFB41B * L_1 = __this->get_agent_6(); NavMeshAgent_tB9746B6C38013341DB63973CA7ED657494EFB41B * L_2 = __this->get_agent_6(); NullCheck(L_2); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_3; L_3 = NavMeshAgent_get_nextPosition_m0402CBC5B44EFD58FBEEF19D10EF7DBC82CF1FB3(L_2, /*hidden argument*/NULL); NullCheck(L_1); NavMeshAgent_set_destination_m0EC1C668AD85AC1B26AABF54337D7D0849F760E7(L_1, L_3, /*hidden argument*/NULL); // this.agent.velocity = Vector3.zero; NavMeshAgent_tB9746B6C38013341DB63973CA7ED657494EFB41B * L_4 = __this->get_agent_6(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_5; L_5 = Vector3_get_zero_m1A8F7993167785F750B6B01762D22C2597C84EF6(/*hidden argument*/NULL); NullCheck(L_4); NavMeshAgent_set_velocity_m3CFD57C08562A9A79AC501773050A18EA0FC791A(L_4, L_5, /*hidden argument*/NULL); // this.transform.position = this.agent.destination; Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_6; L_6 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(__this, /*hidden argument*/NULL); NavMeshAgent_tB9746B6C38013341DB63973CA7ED657494EFB41B * L_7 = __this->get_agent_6(); NullCheck(L_7); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_8; L_8 = NavMeshAgent_get_destination_m0FDF371CBF97028F28416675134875122F13AD2F(L_7, /*hidden argument*/NULL); NullCheck(L_6); Transform_set_position_mB169E52D57EEAC1E3F22C5395968714E4F00AC91(L_6, L_8, /*hidden argument*/NULL); // OnReachDestination(); Yeji_OnReachDestination_mCFB3D8EB0DE27FF1C7C0C3A01E8447EC376B15E3(__this, /*hidden argument*/NULL); // } return; } } // System.Void Yeji::UpdateAutoStrategy() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Yeji_UpdateAutoStrategy_m6D3D9813D3E7D9F7DBB160C9FB4E30609F7AB539 (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * __this, const RuntimeMethod* method) { { // if (state.dead) return; State_t908756508036982A4DF72593F6016F3C51C610B7 * L_0 = __this->get_state_26(); NullCheck(L_0); bool L_1; L_1 = State_get_dead_m87C8693FDECCAA1D6E39374E15FF1CE156374CB7_inline(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_000e; } } { // if (state.dead) return; return; } IL_000e: { // UpdateFlyUpDown(); Yeji_UpdateFlyUpDown_m7363397CD9EC1C89CB66F48AD341AA0581C46657(__this, /*hidden argument*/NULL); // UpdateBehavior(); Yeji_UpdateBehavior_mB1E4FC43A6FDC2E9C853980B613E8A9746D22E44(__this, /*hidden argument*/NULL); // } return; } } // System.Void Yeji::UpdateFlyUpDown() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Yeji_UpdateFlyUpDown_m7363397CD9EC1C89CB66F48AD341AA0581C46657 (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral570445B5D038FF01F81B846A72EE63849EB18527); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral983DAE9D83E12DCA5C80D08CECA81E69518EBFEC); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF99BCBBB4B8C3C02F6F76F631A6637B4DE59088E); s_Il2CppMethodInitialized = true; } AnimatorStateInfo_t052E146D2DB1EC155950ECA45734BF57134258AA V_0; memset((&V_0), 0, sizeof(V_0)); float V_1 = 0.0f; float V_2 = 0.0f; float V_3 = 0.0f; float V_4 = 0.0f; AnimatorStateInfo_t052E146D2DB1EC155950ECA45734BF57134258AA V_5; memset((&V_5), 0, sizeof(V_5)); { // if (state.up && state.landing) { //???? State_t908756508036982A4DF72593F6016F3C51C610B7 * L_0 = __this->get_state_26(); NullCheck(L_0); bool L_1; L_1 = State_get_up_m0F4AB7FD7FCD93A130206581A914E880A70F9BFA_inline(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_0061; } } { State_t908756508036982A4DF72593F6016F3C51C610B7 * L_2 = __this->get_state_26(); NullCheck(L_2); bool L_3; L_3 = State_get_landing_m9ECE9E707B82751FC91FDACDB04DA1488098D510_inline(L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_0061; } } { // AnimatorStateInfo animatorStateInfo = animator.GetCurrentAnimatorStateInfo(0); Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * L_4 = __this->get_animator_5(); NullCheck(L_4); AnimatorStateInfo_t052E146D2DB1EC155950ECA45734BF57134258AA L_5; L_5 = Animator_GetCurrentAnimatorStateInfo_m562250C74BF8C626B5227FE840D6CB739B5F8314(L_4, 0, /*hidden argument*/NULL); V_0 = L_5; // bool isTakeOff = animatorStateInfo.IsName("FlyFromGround"); bool L_6; L_6 = AnimatorStateInfo_IsName_mF1263FB1F2AB142CFEB61B375D6EEBCFD53F9428((AnimatorStateInfo_t052E146D2DB1EC155950ECA45734BF57134258AA *)(&V_0), _stringLiteralF99BCBBB4B8C3C02F6F76F631A6637B4DE59088E, /*hidden argument*/NULL); // if (isTakeOff) { if (!L_6) { goto IL_0060; } } { // if (animatorStateInfo.normalizedTime >= 1.0) { float L_7; L_7 = AnimatorStateInfo_get_normalizedTime_mC951C5D83749FC2AE37DCC75A022383C578F3B40((AnimatorStateInfo_t052E146D2DB1EC155950ECA45734BF57134258AA *)(&V_0), /*hidden argument*/NULL); if ((!(((double)((double)((double)L_7))) >= ((double)(1.0))))) { goto IL_0060; } } { // state.landing = false; State_t908756508036982A4DF72593F6016F3C51C610B7 * L_8 = __this->get_state_26(); NullCheck(L_8); State_set_landing_mF12D5A6313995AE9453FB8B4C6031B30C56C1A94(L_8, (bool)0, /*hidden argument*/NULL); // state.flying = true; State_t908756508036982A4DF72593F6016F3C51C610B7 * L_9 = __this->get_state_26(); NullCheck(L_9); State_set_flying_mC1A25D43DA68DCEBD1C98F96E54D3250ABA3C928(L_9, (bool)1, /*hidden argument*/NULL); } IL_0060: { // return; return; } IL_0061: { // if (state.up && state.flying) { //???? State_t908756508036982A4DF72593F6016F3C51C610B7 * L_10 = __this->get_state_26(); NullCheck(L_10); bool L_11; L_11 = State_get_up_m0F4AB7FD7FCD93A130206581A914E880A70F9BFA_inline(L_10, /*hidden argument*/NULL); if (!L_11) { goto IL_00fa; } } { State_t908756508036982A4DF72593F6016F3C51C610B7 * L_12 = __this->get_state_26(); NullCheck(L_12); bool L_13; L_13 = State_get_flying_m66E87FC4D722C4B7EC8E7C2256A0352ADB69419C_inline(L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_00fa; } } { // float surplusHeight = toFlyHeight - currentHeight; float L_14 = __this->get_toFlyHeight_11(); float L_15 = __this->get_currentHeight_10(); // float smoothValue = surplusHeight / toFlyHeight; float L_16 = __this->get_toFlyHeight_11(); V_1 = ((float)((float)((float)il2cpp_codegen_subtract((float)L_14, (float)L_15))/(float)L_16)); // float nextFlyHeight = currentHeight + Time.deltaTime * (1f + 2.5f * smoothValue); float L_17 = __this->get_currentHeight_10(); float L_18; L_18 = Time_get_deltaTime_mCC15F147DA67F38C74CE408FB5D7FF4A87DA2290(/*hidden argument*/NULL); float L_19 = V_1; V_2 = ((float)il2cpp_codegen_add((float)L_17, (float)((float)il2cpp_codegen_multiply((float)L_18, (float)((float)il2cpp_codegen_add((float)(1.0f), (float)((float)il2cpp_codegen_multiply((float)(2.5f), (float)L_19)))))))); // this.animator.speed = 1f + 2f * smoothValue; Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * L_20 = __this->get_animator_5(); float L_21 = V_1; NullCheck(L_20); Animator_set_speed_m632FF62E0D6B668C55190B3579B12684316C4041(L_20, ((float)il2cpp_codegen_add((float)(1.0f), (float)((float)il2cpp_codegen_multiply((float)(2.0f), (float)L_21)))), /*hidden argument*/NULL); // if (nextFlyHeight >= toFlyHeight) { //???? float L_22 = V_2; float L_23 = __this->get_toFlyHeight_11(); if ((!(((float)L_22) >= ((float)L_23)))) { goto IL_00f2; } } { // nextFlyHeight = toFlyHeight; float L_24 = __this->get_toFlyHeight_11(); V_2 = L_24; // this.animator.speed = 1; Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * L_25 = __this->get_animator_5(); NullCheck(L_25); Animator_set_speed_m632FF62E0D6B668C55190B3579B12684316C4041(L_25, (1.0f), /*hidden argument*/NULL); // state.up = false; State_t908756508036982A4DF72593F6016F3C51C610B7 * L_26 = __this->get_state_26(); NullCheck(L_26); State_set_up_mD620CCB7A40F41C65CA9197076BE97836E63E0F5(L_26, (bool)0, /*hidden argument*/NULL); } IL_00f2: { // SetFlyHeight(nextFlyHeight); float L_27 = V_2; Yeji_SetFlyHeight_mF016E2493DAAB0488A3FC6B77F32886255D92559(__this, L_27, /*hidden argument*/NULL); // return; return; } IL_00fa: { // if (state.down && state.flying) { //???? State_t908756508036982A4DF72593F6016F3C51C610B7 * L_28 = __this->get_state_26(); NullCheck(L_28); bool L_29; L_29 = State_get_down_m9DA09F0259CE287B2F3C6292DA3127CE14A0BA19_inline(L_28, /*hidden argument*/NULL); if (!L_29) { goto IL_015d; } } { State_t908756508036982A4DF72593F6016F3C51C610B7 * L_30 = __this->get_state_26(); NullCheck(L_30); bool L_31; L_31 = State_get_flying_m66E87FC4D722C4B7EC8E7C2256A0352ADB69419C_inline(L_30, /*hidden argument*/NULL); if (!L_31) { goto IL_015d; } } { // float nextH = currentHeight - Time.deltaTime * downSpeed; float L_32 = __this->get_currentHeight_10(); float L_33; L_33 = Time_get_deltaTime_mCC15F147DA67F38C74CE408FB5D7FF4A87DA2290(/*hidden argument*/NULL); V_3 = ((float)il2cpp_codegen_subtract((float)L_32, (float)((float)il2cpp_codegen_multiply((float)L_33, (float)(2.0f))))); // float minH = GetLandHeight(); float L_34; L_34 = Yeji_GetLandHeight_mECD04216F8343B8EDDFFE838EA7625A15B059093(__this, /*hidden argument*/NULL); V_4 = L_34; // if (nextH <= minH) { //???? float L_35 = V_3; float L_36 = V_4; if ((!(((float)L_35) <= ((float)L_36)))) { goto IL_0155; } } { // nextH = minH; float L_37 = V_4; V_3 = L_37; // state.landing = true; State_t908756508036982A4DF72593F6016F3C51C610B7 * L_38 = __this->get_state_26(); NullCheck(L_38); State_set_landing_mF12D5A6313995AE9453FB8B4C6031B30C56C1A94(L_38, (bool)1, /*hidden argument*/NULL); // state.flying = false; State_t908756508036982A4DF72593F6016F3C51C610B7 * L_39 = __this->get_state_26(); NullCheck(L_39); State_set_flying_mC1A25D43DA68DCEBD1C98F96E54D3250ABA3C928(L_39, (bool)0, /*hidden argument*/NULL); // StopNavigation(); Yeji_StopNavigation_m66C346CC8F74871881E6B0356F2502A2E20C4F40(__this, /*hidden argument*/NULL); } IL_0155: { // SetFlyHeight(nextH); float L_40 = V_3; Yeji_SetFlyHeight_mF016E2493DAAB0488A3FC6B77F32886255D92559(__this, L_40, /*hidden argument*/NULL); // return; return; } IL_015d: { // if (state.down && state.landing) { //???? State_t908756508036982A4DF72593F6016F3C51C610B7 * L_41 = __this->get_state_26(); NullCheck(L_41); bool L_42; L_42 = State_get_down_m9DA09F0259CE287B2F3C6292DA3127CE14A0BA19_inline(L_41, /*hidden argument*/NULL); if (!L_42) { goto IL_01ee; } } { State_t908756508036982A4DF72593F6016F3C51C610B7 * L_43 = __this->get_state_26(); NullCheck(L_43); bool L_44; L_44 = State_get_landing_m9ECE9E707B82751FC91FDACDB04DA1488098D510_inline(L_43, /*hidden argument*/NULL); if (!L_44) { goto IL_01ee; } } { // AnimatorStateInfo animatorStateInfo = animator.GetCurrentAnimatorStateInfo(0); Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * L_45 = __this->get_animator_5(); NullCheck(L_45); AnimatorStateInfo_t052E146D2DB1EC155950ECA45734BF57134258AA L_46; L_46 = Animator_GetCurrentAnimatorStateInfo_m562250C74BF8C626B5227FE840D6CB739B5F8314(L_45, 0, /*hidden argument*/NULL); V_5 = L_46; // bool isLand = animatorStateInfo.IsName("LandOnGround"); bool L_47; L_47 = AnimatorStateInfo_IsName_mF1263FB1F2AB142CFEB61B375D6EEBCFD53F9428((AnimatorStateInfo_t052E146D2DB1EC155950ECA45734BF57134258AA *)(&V_5), _stringLiteral570445B5D038FF01F81B846A72EE63849EB18527, /*hidden argument*/NULL); // if (isLand) { if (!L_47) { goto IL_01ed; } } { // if (animatorStateInfo.normalizedTime >= 1.0) { float L_48; L_48 = AnimatorStateInfo_get_normalizedTime_mC951C5D83749FC2AE37DCC75A022383C578F3B40((AnimatorStateInfo_t052E146D2DB1EC155950ECA45734BF57134258AA *)(&V_5), /*hidden argument*/NULL); if ((!(((double)((double)((double)L_48))) >= ((double)(1.0))))) { goto IL_01ed; } } { // state.down = false; State_t908756508036982A4DF72593F6016F3C51C610B7 * L_49 = __this->get_state_26(); NullCheck(L_49); State_set_down_m9D72C153E24A407503BC8565C7F538F2884FBDB2(L_49, (bool)0, /*hidden argument*/NULL); // state.standing = true; State_t908756508036982A4DF72593F6016F3C51C610B7 * L_50 = __this->get_state_26(); NullCheck(L_50); L_50->set_standing_0((bool)1); // canStandTime = 8f + Random.value * 2f; float L_51; L_51 = Random_get_value_m9AEBC7DF0BB6C57C928B0798349A7D3C0B3FB872(/*hidden argument*/NULL); __this->set_canStandTime_17(((float)il2cpp_codegen_add((float)(8.0f), (float)((float)il2cpp_codegen_multiply((float)L_51, (float)(2.0f)))))); // animator.CrossFade("IdleOnGround2", 0.2f); Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * L_52 = __this->get_animator_5(); NullCheck(L_52); Animator_CrossFade_mD3F99D6835AA415C0B32AE0C574B1815CC07586F(L_52, _stringLiteral983DAE9D83E12DCA5C80D08CECA81E69518EBFEC, (0.200000003f), /*hidden argument*/NULL); } IL_01ed: { // return; return; } IL_01ee: { // } return; } } // System.Void Yeji::UpdateBehavior() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Yeji_UpdateBehavior_mB1E4FC43A6FDC2E9C853980B613E8A9746D22E44 (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ComparerAreaInfosByDistance_t9EA8762959531B367A90185F6213B51755EEBD68_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3878219245B0473A7CD218AB963BB98671D661E5); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral57660C993DD537E0138CBFB71EB6333EB13D0842); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5913EBCD9B8B054009F6001A1FE6EFB6A46EDA58); s_Il2CppMethodInitialized = true; } AnimatorStateInfo_t052E146D2DB1EC155950ECA45734BF57134258AA V_0; memset((&V_0), 0, sizeof(V_0)); bool V_1 = false; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E V_2; memset((&V_2), 0, sizeof(V_2)); AreaInfoU5BU5D_tDB8FCFB9A63CBA4F532B013A8702761BB2E7BA27* V_3 = NULL; int32_t V_4 = 0; AreaInfo_t23BDB3108537E7181ACFB654B90B389AE8FAC781 * V_5 = NULL; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E V_6; memset((&V_6), 0, sizeof(V_6)); float V_7 = 0.0f; float V_8 = 0.0f; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E V_9; memset((&V_9), 0, sizeof(V_9)); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E V_10; memset((&V_10), 0, sizeof(V_10)); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E V_11; memset((&V_11), 0, sizeof(V_11)); int32_t V_12 = 0; { // if (state.flyStaying) { State_t908756508036982A4DF72593F6016F3C51C610B7 * L_0 = __this->get_state_26(); NullCheck(L_0); bool L_1; L_1 = State_get_flyStaying_m0A23626B875E5285019BDC680B80BC0AC6A043AE_inline(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_0039; } } { // canFlyStayTime -= Time.deltaTime; float L_2 = __this->get_canFlyStayTime_18(); float L_3; L_3 = Time_get_deltaTime_mCC15F147DA67F38C74CE408FB5D7FF4A87DA2290(/*hidden argument*/NULL); __this->set_canFlyStayTime_18(((float)il2cpp_codegen_subtract((float)L_2, (float)L_3))); // if (canFlyStayTime <= 0) { float L_4 = __this->get_canFlyStayTime_18(); if ((!(((float)L_4) <= ((float)(0.0f))))) { goto IL_0038; } } { // state.flyStaying = false; State_t908756508036982A4DF72593F6016F3C51C610B7 * L_5 = __this->get_state_26(); NullCheck(L_5); State_set_flyStaying_m56942DE74B12AA87979BB87B85ECBB16FB4A2926(L_5, (bool)0, /*hidden argument*/NULL); } IL_0038: { // return; return; } IL_0039: { // if (state.standing) { State_t908756508036982A4DF72593F6016F3C51C610B7 * L_6 = __this->get_state_26(); NullCheck(L_6); bool L_7 = L_6->get_standing_0(); if (!L_7) { goto IL_006c; } } { // canStandTime -= Time.deltaTime; float L_8 = __this->get_canStandTime_17(); float L_9; L_9 = Time_get_deltaTime_mCC15F147DA67F38C74CE408FB5D7FF4A87DA2290(/*hidden argument*/NULL); __this->set_canStandTime_17(((float)il2cpp_codegen_subtract((float)L_8, (float)L_9))); // if (canStandTime <= 0) { float L_10 = __this->get_canStandTime_17(); if ((!(((float)L_10) <= ((float)(0.0f))))) { goto IL_006b; } } { // CancelStand(); Yeji_CancelStand_mA97104D40AE52FDF898DB63E4425B823934E3B04(__this, /*hidden argument*/NULL); } IL_006b: { // return; return; } IL_006c: { // if (state.landing) return; State_t908756508036982A4DF72593F6016F3C51C610B7 * L_11 = __this->get_state_26(); NullCheck(L_11); bool L_12; L_12 = State_get_landing_m9ECE9E707B82751FC91FDACDB04DA1488098D510_inline(L_11, /*hidden argument*/NULL); if (!L_12) { goto IL_007a; } } { // if (state.landing) return; return; } IL_007a: { // if (state.flying && !state.down && !state.up) { State_t908756508036982A4DF72593F6016F3C51C610B7 * L_13 = __this->get_state_26(); NullCheck(L_13); bool L_14; L_14 = State_get_flying_m66E87FC4D722C4B7EC8E7C2256A0352ADB69419C_inline(L_13, /*hidden argument*/NULL); if (!L_14) { goto IL_0158; } } { State_t908756508036982A4DF72593F6016F3C51C610B7 * L_15 = __this->get_state_26(); NullCheck(L_15); bool L_16; L_16 = State_get_down_m9DA09F0259CE287B2F3C6292DA3127CE14A0BA19_inline(L_15, /*hidden argument*/NULL); if (L_16) { goto IL_0158; } } { State_t908756508036982A4DF72593F6016F3C51C610B7 * L_17 = __this->get_state_26(); NullCheck(L_17); bool L_18; L_18 = State_get_up_m0F4AB7FD7FCD93A130206581A914E880A70F9BFA_inline(L_17, /*hidden argument*/NULL); if (L_18) { goto IL_0158; } } { // if (needCheckFlyDown) { bool L_19 = __this->get_needCheckFlyDown_22(); if (!L_19) { goto IL_0158; } } { // float downNeedTime = currentHeight / downSpeed; float L_20 = __this->get_currentHeight_10(); V_7 = ((float)((float)L_20/(float)(2.0f))); // float keyDistance = this.agent.speed * downNeedTime; //??????????? NavMeshAgent_tB9746B6C38013341DB63973CA7ED657494EFB41B * L_21 = __this->get_agent_6(); NullCheck(L_21); float L_22; L_22 = NavMeshAgent_get_speed_m5AA9A1B23412A8F5CE24A5312F6E6D4BA282B173(L_21, /*hidden argument*/NULL); float L_23 = V_7; V_8 = ((float)il2cpp_codegen_multiply((float)L_22, (float)L_23)); // Vector3 myP = this.transform.position; Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_24; L_24 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(__this, /*hidden argument*/NULL); NullCheck(L_24); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_25; L_25 = Transform_get_position_m40A8A9895568D56FFC687B57F30E8D53CB5EA341(L_24, /*hidden argument*/NULL); V_9 = L_25; // Vector3 desP = this.agent.destination; NavMeshAgent_tB9746B6C38013341DB63973CA7ED657494EFB41B * L_26 = __this->get_agent_6(); NullCheck(L_26); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_27; L_27 = NavMeshAgent_get_destination_m0FDF371CBF97028F28416675134875122F13AD2F(L_26, /*hidden argument*/NULL); V_10 = L_27; // desP.y = myP.y; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_28 = V_9; float L_29 = L_28.get_y_3(); (&V_10)->set_y_3(L_29); // float distance = Vector3.Distance(myP, desP); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_30 = V_9; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_31 = V_10; float L_32; L_32 = Vector3_Distance_mB648A79E4A1BAAFBF7B029644638C0D715480677(L_30, L_31, /*hidden argument*/NULL); // if (distance < keyDistance) { float L_33 = V_8; if ((!(((float)L_32) < ((float)L_33)))) { goto IL_0158; } } { // needCheckFlyDown = false; __this->set_needCheckFlyDown_22((bool)0); // if (stoneRecorder.IsStoneLocker(this)) { IL2CPP_RUNTIME_CLASS_INIT(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var); StoneRecorder_tBA3376B07C34D8BDC00CAC5B96BDC69A6EC4DB4D * L_34 = ((Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_StaticFields*)il2cpp_codegen_static_fields_for(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var))->get_stoneRecorder_30(); NullCheck(L_34); bool L_35; L_35 = StoneRecorder_IsStoneLocker_m7C9D7F458478B183D7D09CF84B47BE70264CCED8(L_34, __this, /*hidden argument*/NULL); if (!L_35) { goto IL_012a; } } { // state.down = true; State_t908756508036982A4DF72593F6016F3C51C610B7 * L_36 = __this->get_state_26(); NullCheck(L_36); State_set_down_m9D72C153E24A407503BC8565C7F538F2884FBDB2(L_36, (bool)1, /*hidden argument*/NULL); // } else if (Random.value < 0.5 && tryOccupyTree()) { goto IL_0158; } IL_012a: { // } else if (Random.value < 0.5 && tryOccupyTree()) { float L_37; L_37 = Random_get_value_m9AEBC7DF0BB6C57C928B0798349A7D3C0B3FB872(/*hidden argument*/NULL); if ((!(((double)((double)((double)L_37))) < ((double)(0.5))))) { goto IL_0151; } } { bool L_38; L_38 = Yeji_tryOccupyTree_m0D5C056A0582573B7D8F4B8F728CDA0226E71B54(__this, /*hidden argument*/NULL); if (!L_38) { goto IL_0151; } } { // state.down = true; State_t908756508036982A4DF72593F6016F3C51C610B7 * L_39 = __this->get_state_26(); NullCheck(L_39); State_set_down_m9D72C153E24A407503BC8565C7F538F2884FBDB2(L_39, (bool)1, /*hidden argument*/NULL); // } else { goto IL_0158; } IL_0151: { // willStayOnTree = true; __this->set_willStayOnTree_23((bool)1); } IL_0158: { // if (moving) return; bool L_40; L_40 = Yeji_get_moving_m7689D372EF476603C2F47C39D9867510EE431F71_inline(__this, /*hidden argument*/NULL); if (!L_40) { goto IL_0161; } } { // if (moving) return; return; } IL_0161: { // if (willStayOnTree) { bool L_41 = __this->get_willStayOnTree_23(); if (!L_41) { goto IL_0194; } } { // willStayOnTree = false; __this->set_willStayOnTree_23((bool)0); // state.flyStaying = true; State_t908756508036982A4DF72593F6016F3C51C610B7 * L_42 = __this->get_state_26(); NullCheck(L_42); State_set_flyStaying_m56942DE74B12AA87979BB87B85ECBB16FB4A2926(L_42, (bool)1, /*hidden argument*/NULL); // canFlyStayTime = 9f + Random.value * 1f; float L_43; L_43 = Random_get_value_m9AEBC7DF0BB6C57C928B0798349A7D3C0B3FB872(/*hidden argument*/NULL); __this->set_canFlyStayTime_18(((float)il2cpp_codegen_add((float)(9.0f), (float)((float)il2cpp_codegen_multiply((float)L_43, (float)(1.0f)))))); // return; return; } IL_0194: { // AnimatorStateInfo animatorStateInfo = animator.GetCurrentAnimatorStateInfo(0); Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * L_44 = __this->get_animator_5(); NullCheck(L_44); AnimatorStateInfo_t052E146D2DB1EC155950ECA45734BF57134258AA L_45; L_45 = Animator_GetCurrentAnimatorStateInfo_m562250C74BF8C626B5227FE840D6CB739B5F8314(L_44, 0, /*hidden argument*/NULL); V_0 = L_45; // if (animatorStateInfo.IsName("Yeji Fly Form Tree") || animatorStateInfo.IsName("Yeji Idle On Tree 01") || animatorStateInfo.IsName("Yeji Land On Tree")) { bool L_46; L_46 = AnimatorStateInfo_IsName_mF1263FB1F2AB142CFEB61B375D6EEBCFD53F9428((AnimatorStateInfo_t052E146D2DB1EC155950ECA45734BF57134258AA *)(&V_0), _stringLiteral57660C993DD537E0138CBFB71EB6333EB13D0842, /*hidden argument*/NULL); if (L_46) { goto IL_01cb; } } { bool L_47; L_47 = AnimatorStateInfo_IsName_mF1263FB1F2AB142CFEB61B375D6EEBCFD53F9428((AnimatorStateInfo_t052E146D2DB1EC155950ECA45734BF57134258AA *)(&V_0), _stringLiteral3878219245B0473A7CD218AB963BB98671D661E5, /*hidden argument*/NULL); if (L_47) { goto IL_01cb; } } { bool L_48; L_48 = AnimatorStateInfo_IsName_mF1263FB1F2AB142CFEB61B375D6EEBCFD53F9428((AnimatorStateInfo_t052E146D2DB1EC155950ECA45734BF57134258AA *)(&V_0), _stringLiteral5913EBCD9B8B054009F6001A1FE6EFB6A46EDA58, /*hidden argument*/NULL); if (!L_48) { goto IL_01cc; } } IL_01cb: { // return; return; } IL_01cc: { // bool isOnStone = stoneRecorder.IsOnStone(this); IL2CPP_RUNTIME_CLASS_INIT(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var); StoneRecorder_tBA3376B07C34D8BDC00CAC5B96BDC69A6EC4DB4D * L_49 = ((Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_StaticFields*)il2cpp_codegen_static_fields_for(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var))->get_stoneRecorder_30(); NullCheck(L_49); bool L_50; L_50 = StoneRecorder_IsOnStone_m0DBC683001DD1D2A97DEDC46A915CD5297C0CF76(L_49, __this, /*hidden argument*/NULL); V_1 = L_50; // if (!isOnStone && Random.value < 0.7f && stoneRecorder.TryLock(this)) { bool L_51 = V_1; if (L_51) { goto IL_021c; } } { float L_52; L_52 = Random_get_value_m9AEBC7DF0BB6C57C928B0798349A7D3C0B3FB872(/*hidden argument*/NULL); if ((!(((float)L_52) < ((float)(0.699999988f))))) { goto IL_021c; } } { IL2CPP_RUNTIME_CLASS_INIT(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var); StoneRecorder_tBA3376B07C34D8BDC00CAC5B96BDC69A6EC4DB4D * L_53 = ((Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_StaticFields*)il2cpp_codegen_static_fields_for(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var))->get_stoneRecorder_30(); NullCheck(L_53); bool L_54; L_54 = StoneRecorder_TryLock_m99B0374FEE655FF67600F6BD8056BEFDAE439993(L_53, __this, /*hidden argument*/NULL); if (!L_54) { goto IL_021c; } } { // var newPos1 = stoneRecorder.GetLockPosition(animalsBaseT, flyPlaneHeight); IL2CPP_RUNTIME_CLASS_INIT(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var); StoneRecorder_tBA3376B07C34D8BDC00CAC5B96BDC69A6EC4DB4D * L_55 = ((Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_StaticFields*)il2cpp_codegen_static_fields_for(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var))->get_stoneRecorder_30(); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_56; L_56 = TargetAnimal_get_animalsBaseT_mE5467EA9ADE65B1ACF1422C90B1DEAEEF0CF0BC7(__this, /*hidden argument*/NULL); float L_57 = __this->get_flyPlaneHeight_9(); NullCheck(L_55); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_58; L_58 = StoneRecorder_GetLockPosition_m83F00C70C3C64D4D6C5DAEAC1BBBD4DE8AF60599(L_55, L_56, L_57, /*hidden argument*/NULL); V_11 = L_58; // SetDestination(newPos1); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_59 = V_11; Yeji_SetDestination_m2DE83CD0199761141D05B1A557013FCF70B54408(__this, L_59, /*hidden argument*/NULL); // needCheckFlyDown = true; __this->set_needCheckFlyDown_22((bool)1); // return; return; } IL_021c: { // Vector3 myPos = this.transform.position; Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_60; L_60 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(__this, /*hidden argument*/NULL); NullCheck(L_60); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_61; L_61 = Transform_get_position_m40A8A9895568D56FFC687B57F30E8D53CB5EA341(L_60, /*hidden argument*/NULL); V_2 = L_61; // TreeAreaRecorder.AreaInfo[] areaInfos = treeAreaRecorder.copyAreaInfos(canFlyTreeCount); TreeAreaRecorder_tAE9063D38B62DF6BE86781A700F0D349C2E43B37 * L_62 = __this->get_treeAreaRecorder_8(); int32_t L_63 = __this->get_canFlyTreeCount_19(); NullCheck(L_62); AreaInfoU5BU5D_tDB8FCFB9A63CBA4F532B013A8702761BB2E7BA27* L_64; L_64 = TreeAreaRecorder_copyAreaInfos_m8B8B34E3597D1F2772BEA8F0CA64562D69374D80(L_62, L_63, /*hidden argument*/NULL); V_3 = L_64; // for (int i = 0; i < canFlyTreeCount; i++) { V_12 = 0; goto IL_0258; } IL_023f: { // areaInfos[i].teamCompareValue = areaInfos[i].distanceInHorizontal(myPos); AreaInfoU5BU5D_tDB8FCFB9A63CBA4F532B013A8702761BB2E7BA27* L_65 = V_3; int32_t L_66 = V_12; NullCheck(L_65); int32_t L_67 = L_66; AreaInfo_t23BDB3108537E7181ACFB654B90B389AE8FAC781 * L_68 = (L_65)->GetAt(static_cast(L_67)); AreaInfoU5BU5D_tDB8FCFB9A63CBA4F532B013A8702761BB2E7BA27* L_69 = V_3; int32_t L_70 = V_12; NullCheck(L_69); int32_t L_71 = L_70; AreaInfo_t23BDB3108537E7181ACFB654B90B389AE8FAC781 * L_72 = (L_69)->GetAt(static_cast(L_71)); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_73 = V_2; NullCheck(L_72); float L_74; L_74 = AreaInfo_distanceInHorizontal_mD24F5E8B35D84C7F700C9C99D03810094D9DBEFA(L_72, L_73, /*hidden argument*/NULL); NullCheck(L_68); L_68->set_teamCompareValue_4(L_74); // for (int i = 0; i < canFlyTreeCount; i++) { int32_t L_75 = V_12; V_12 = ((int32_t)il2cpp_codegen_add((int32_t)L_75, (int32_t)1)); } IL_0258: { // for (int i = 0; i < canFlyTreeCount; i++) { int32_t L_76 = V_12; int32_t L_77 = __this->get_canFlyTreeCount_19(); if ((((int32_t)L_76) < ((int32_t)L_77))) { goto IL_023f; } } { // System.Array.Sort(areaInfos, new ComparerAreaInfosByDistance()); AreaInfoU5BU5D_tDB8FCFB9A63CBA4F532B013A8702761BB2E7BA27* L_78 = V_3; ComparerAreaInfosByDistance_t9EA8762959531B367A90185F6213B51755EEBD68 * L_79 = (ComparerAreaInfosByDistance_t9EA8762959531B367A90185F6213B51755EEBD68 *)il2cpp_codegen_object_new(ComparerAreaInfosByDistance_t9EA8762959531B367A90185F6213B51755EEBD68_il2cpp_TypeInfo_var); ComparerAreaInfosByDistance__ctor_m3C4201B9593318668B83D34DA862354D3AFA36E6(L_79, /*hidden argument*/NULL); Array_Sort_m9FEF5C0ACA74C23E8B3336E14872E4E6FE89B90D((RuntimeArray *)(RuntimeArray *)L_78, L_79, /*hidden argument*/NULL); // int treeFindStartIndex = 1; V_4 = 1; // if (isOnStone) treeFindStartIndex = 0; bool L_80 = V_1; if (!L_80) { goto IL_0276; } } { // if (isOnStone) treeFindStartIndex = 0; V_4 = 0; } IL_0276: { // TreeAreaRecorder.AreaInfo areaInfo = areaInfos[Random.Range(treeFindStartIndex, canFlyTreeCount)]; AreaInfoU5BU5D_tDB8FCFB9A63CBA4F532B013A8702761BB2E7BA27* L_81 = V_3; int32_t L_82 = V_4; int32_t L_83 = __this->get_canFlyTreeCount_19(); int32_t L_84; L_84 = Random_Range_m4B3A0037ACA057F33C94508F908546B9317D996A(L_82, L_83, /*hidden argument*/NULL); NullCheck(L_81); int32_t L_85 = L_84; AreaInfo_t23BDB3108537E7181ACFB654B90B389AE8FAC781 * L_86 = (L_81)->GetAt(static_cast(L_85)); V_5 = L_86; // Vector3 newPos = YejiHuntGameMode.CalculateNewPosByTreePos(animalsBaseT, flyPlaneHeight, areaInfo); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_87; L_87 = TargetAnimal_get_animalsBaseT_mE5467EA9ADE65B1ACF1422C90B1DEAEEF0CF0BC7(__this, /*hidden argument*/NULL); float L_88 = __this->get_flyPlaneHeight_9(); AreaInfo_t23BDB3108537E7181ACFB654B90B389AE8FAC781 * L_89 = V_5; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_90; L_90 = YejiHuntGameMode_CalculateNewPosByTreePos_mEB9505358138A8143F6F7AADF07C1DB5937CBC37(L_87, L_88, L_89, /*hidden argument*/NULL); V_6 = L_90; // SetDestination(newPos); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_91 = V_6; Yeji_SetDestination_m2DE83CD0199761141D05B1A557013FCF70B54408(__this, L_91, /*hidden argument*/NULL); // targetAreaInfo = areaInfo; AreaInfo_t23BDB3108537E7181ACFB654B90B389AE8FAC781 * L_92 = V_5; __this->set_targetAreaInfo_21(L_92); // needCheckFlyDown = true; __this->set_needCheckFlyDown_22((bool)1); // } return; } } // System.Void Yeji::CancelStand() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Yeji_CancelStand_mA97104D40AE52FDF898DB63E4425B823934E3B04 (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF99BCBBB4B8C3C02F6F76F631A6637B4DE59088E); s_Il2CppMethodInitialized = true; } { // if (!state.standing) return; State_t908756508036982A4DF72593F6016F3C51C610B7 * L_0 = __this->get_state_26(); NullCheck(L_0); bool L_1 = L_0->get_standing_0(); if (L_1) { goto IL_000e; } } { // if (!state.standing) return; return; } IL_000e: { // state.standing = false; State_t908756508036982A4DF72593F6016F3C51C610B7 * L_2 = __this->get_state_26(); NullCheck(L_2); L_2->set_standing_0((bool)0); // state.up = true; State_t908756508036982A4DF72593F6016F3C51C610B7 * L_3 = __this->get_state_26(); NullCheck(L_3); State_set_up_mD620CCB7A40F41C65CA9197076BE97836E63E0F5(L_3, (bool)1, /*hidden argument*/NULL); // animator.CrossFade("FlyFromGround", 0.1f); Animator_t9DD1D43680A61D65A3C98C6EFF559709DC9CE149 * L_4 = __this->get_animator_5(); NullCheck(L_4); Animator_CrossFade_mD3F99D6835AA415C0B32AE0C574B1815CC07586F(L_4, _stringLiteralF99BCBBB4B8C3C02F6F76F631A6637B4DE59088E, (0.100000001f), /*hidden argument*/NULL); // tryReleaseOccupyTree(); Yeji_tryReleaseOccupyTree_mAE086656FC652E287ACA3FC243A2D0456F475A77(__this, /*hidden argument*/NULL); // stoneRecorder.TryRelease(this); IL2CPP_RUNTIME_CLASS_INIT(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var); StoneRecorder_tBA3376B07C34D8BDC00CAC5B96BDC69A6EC4DB4D * L_5 = ((Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_StaticFields*)il2cpp_codegen_static_fields_for(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var))->get_stoneRecorder_30(); NullCheck(L_5); bool L_6; L_6 = StoneRecorder_TryRelease_m53DB4666470A4740D7A00DA846DC93787B4653D8(L_5, __this, /*hidden argument*/NULL); // } return; } } // System.Void Yeji::CancelFlyStay() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Yeji_CancelFlyStay_mAA82F28242788291FC26624435DCF9ED4B8E3320 (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * __this, const RuntimeMethod* method) { { // if (!state.flyStaying) return; State_t908756508036982A4DF72593F6016F3C51C610B7 * L_0 = __this->get_state_26(); NullCheck(L_0); bool L_1; L_1 = State_get_flyStaying_m0A23626B875E5285019BDC680B80BC0AC6A043AE_inline(L_0, /*hidden argument*/NULL); if (L_1) { goto IL_000e; } } { // if (!state.flyStaying) return; return; } IL_000e: { // canFlyStayTime = 0; __this->set_canFlyStayTime_18((0.0f)); // } return; } } // System.Boolean Yeji::tryOccupyTree() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Yeji_tryOccupyTree_m0D5C056A0582573B7D8F4B8F728CDA0226E71B54 (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * __this, const RuntimeMethod* method) { { // if (targetAreaInfo == null) return false; AreaInfo_t23BDB3108537E7181ACFB654B90B389AE8FAC781 * L_0 = __this->get_targetAreaInfo_21(); if (L_0) { goto IL_000a; } } { // if (targetAreaInfo == null) return false; return (bool)0; } IL_000a: { // if (targetAreaInfo.occupy != null) return false; AreaInfo_t23BDB3108537E7181ACFB654B90B389AE8FAC781 * L_1 = __this->get_targetAreaInfo_21(); NullCheck(L_1); RuntimeObject * L_2 = L_1->get_occupy_5(); if (!L_2) { goto IL_0019; } } { // if (targetAreaInfo.occupy != null) return false; return (bool)0; } IL_0019: { // targetAreaInfo.occupy = this; AreaInfo_t23BDB3108537E7181ACFB654B90B389AE8FAC781 * L_3 = __this->get_targetAreaInfo_21(); NullCheck(L_3); L_3->set_occupy_5(__this); // return true; return (bool)1; } } // System.Void Yeji::tryReleaseOccupyTree() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Yeji_tryReleaseOccupyTree_mAE086656FC652E287ACA3FC243A2D0456F475A77 (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * __this, const RuntimeMethod* method) { { // if (targetAreaInfo != null && targetAreaInfo.occupy != null && targetAreaInfo.occupy.Equals(this)) { AreaInfo_t23BDB3108537E7181ACFB654B90B389AE8FAC781 * L_0 = __this->get_targetAreaInfo_21(); if (!L_0) { goto IL_0034; } } { AreaInfo_t23BDB3108537E7181ACFB654B90B389AE8FAC781 * L_1 = __this->get_targetAreaInfo_21(); NullCheck(L_1); RuntimeObject * L_2 = L_1->get_occupy_5(); if (!L_2) { goto IL_0034; } } { AreaInfo_t23BDB3108537E7181ACFB654B90B389AE8FAC781 * L_3 = __this->get_targetAreaInfo_21(); NullCheck(L_3); RuntimeObject * L_4 = L_3->get_occupy_5(); NullCheck(L_4); bool L_5; L_5 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_4, __this); if (!L_5) { goto IL_0034; } } { // targetAreaInfo.occupy = null; AreaInfo_t23BDB3108537E7181ACFB654B90B389AE8FAC781 * L_6 = __this->get_targetAreaInfo_21(); NullCheck(L_6); L_6->set_occupy_5(NULL); } IL_0034: { // } return; } } // System.Void Yeji::InitPreHeights() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Yeji_InitPreHeights_m62DB6279C3515B4F2FE57F30D132AC5C0B373D9C (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // preFlyHeights = new float[]{1.3f, 2.3f}; SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* L_0 = (SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA*)(SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA*)SZArrayNew(SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA_il2cpp_TypeInfo_var, (uint32_t)2); SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* L_1 = L_0; NullCheck(L_1); (L_1)->SetAt(static_cast(0), (float)(1.29999995f)); SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* L_2 = L_1; NullCheck(L_2); (L_2)->SetAt(static_cast(1), (float)(2.29999995f)); IL2CPP_RUNTIME_CLASS_INIT(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var); ((Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_StaticFields*)il2cpp_codegen_static_fields_for(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var))->set_preFlyHeights_24(L_2); // preFlyHeightCools = new object[]{null, null}; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_3 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)2); ((Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_StaticFields*)il2cpp_codegen_static_fields_for(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var))->set_preFlyHeightCools_25(L_3); // } return; } } // System.Single Yeji::RandomOnePreHeight(Yeji) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Yeji_RandomOnePreHeight_m6CC96A623F2BDF8C321B2399008AB36F99793847 (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * ___yeji0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { // for (int i = 0; i < preFlyHeightCools.Length; i++) { V_0 = 0; goto IL_0021; } IL_0004: { // if (preFlyHeightCools[i] == null) { IL2CPP_RUNTIME_CLASS_INIT(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = ((Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_StaticFields*)il2cpp_codegen_static_fields_for(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var))->get_preFlyHeightCools_25(); int32_t L_1 = V_0; NullCheck(L_0); int32_t L_2 = L_1; RuntimeObject * L_3 = (L_0)->GetAt(static_cast(L_2)); if (L_3) { goto IL_001d; } } { // preFlyHeightCools[i] = yeji; IL2CPP_RUNTIME_CLASS_INIT(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_4 = ((Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_StaticFields*)il2cpp_codegen_static_fields_for(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var))->get_preFlyHeightCools_25(); int32_t L_5 = V_0; Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * L_6 = ___yeji0; NullCheck(L_4); ArrayElementTypeCheck (L_4, L_6); (L_4)->SetAt(static_cast(L_5), (RuntimeObject *)L_6); // return preFlyHeights[i]; SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* L_7 = ((Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_StaticFields*)il2cpp_codegen_static_fields_for(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var))->get_preFlyHeights_24(); int32_t L_8 = V_0; NullCheck(L_7); int32_t L_9 = L_8; float L_10 = (L_7)->GetAt(static_cast(L_9)); return L_10; } IL_001d: { // for (int i = 0; i < preFlyHeightCools.Length; i++) { int32_t L_11 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)); } IL_0021: { // for (int i = 0; i < preFlyHeightCools.Length; i++) { int32_t L_12 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_13 = ((Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_StaticFields*)il2cpp_codegen_static_fields_for(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var))->get_preFlyHeightCools_25(); NullCheck(L_13); if ((((int32_t)L_12) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_13)->max_length)))))) { goto IL_0004; } } { // return 2.5f; return (2.5f); } } // System.Void Yeji::ReleasePreHeight(Yeji) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Yeji_ReleasePreHeight_m942933600988E1C41597DABCA0E83405C9EAB624 (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * ___yeji0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { // for (int i = 0; i < preFlyHeightCools.Length; i++) { V_0 = 0; goto IL_001f; } IL_0004: { // if (yeji.Equals(preFlyHeightCools[i])) { Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * L_0 = ___yeji0; IL2CPP_RUNTIME_CLASS_INIT(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = ((Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_StaticFields*)il2cpp_codegen_static_fields_for(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var))->get_preFlyHeightCools_25(); int32_t L_2 = V_0; NullCheck(L_1); int32_t L_3 = L_2; RuntimeObject * L_4 = (L_1)->GetAt(static_cast(L_3)); NullCheck(L_0); bool L_5; L_5 = VirtualFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_0, L_4); if (!L_5) { goto IL_001b; } } { // preFlyHeightCools[i] = null; IL2CPP_RUNTIME_CLASS_INIT(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_6 = ((Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_StaticFields*)il2cpp_codegen_static_fields_for(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var))->get_preFlyHeightCools_25(); int32_t L_7 = V_0; NullCheck(L_6); ArrayElementTypeCheck (L_6, NULL); (L_6)->SetAt(static_cast(L_7), (RuntimeObject *)NULL); } IL_001b: { // for (int i = 0; i < preFlyHeightCools.Length; i++) { int32_t L_8 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1)); } IL_001f: { // for (int i = 0; i < preFlyHeightCools.Length; i++) { int32_t L_9 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_10 = ((Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_StaticFields*)il2cpp_codegen_static_fields_for(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var))->get_preFlyHeightCools_25(); NullCheck(L_10); if ((((int32_t)L_9) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))))) { goto IL_0004; } } { // } return; } } // System.Int32 Yeji::GetOnlineID() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Yeji_GetOnlineID_m5E1CCD664332C4BB1116B6EF8FEE660BE135C889 (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * __this, const RuntimeMethod* method) { { // return onlineHandler.uid; OnlineHandler_t0EEA4F8C0170610DD9F19AE15F12F6A4C74E3587 * L_0 = __this->get_onlineHandler_29(); NullCheck(L_0); int32_t L_1 = L_0->get_uid_1(); return L_1; } } // System.Void Yeji::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Yeji__ctor_mB0514E722690D33B723B424A2EEE0372A08BEC6F (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OnlineHandler_t0EEA4F8C0170610DD9F19AE15F12F6A4C74E3587_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // [System.NonSerialized] public int hp = 3; __this->set_hp_7(3); // [System.NonSerialized] public float flyPlaneHeight = 5; __this->set_flyPlaneHeight_9((5.0f)); // float toFlyHeight = float.NaN; __this->set_toFlyHeight_11((std::numeric_limits::quiet_NaN())); // bool _firstSetFlyHeight = true; __this->set__firstSetFlyHeight_12((bool)1); // float _scaleY = -1; __this->set__scaleY_13((-1.0f)); // float canStandTime = 3f; __this->set_canStandTime_17((3.0f)); // float canFlyStayTime = 3f; __this->set_canFlyStayTime_18((3.0f)); // [System.NonSerialized] public int canFlyTreeCount = 2; __this->set_canFlyTreeCount_19(2); // public OnlineHandler onlineHandler = new OnlineHandler(); OnlineHandler_t0EEA4F8C0170610DD9F19AE15F12F6A4C74E3587 * L_0 = (OnlineHandler_t0EEA4F8C0170610DD9F19AE15F12F6A4C74E3587 *)il2cpp_codegen_object_new(OnlineHandler_t0EEA4F8C0170610DD9F19AE15F12F6A4C74E3587_il2cpp_TypeInfo_var); OnlineHandler__ctor_mF21CFE3806B954D39CD726694B0A80B7A92C4EC4(L_0, /*hidden argument*/NULL); __this->set_onlineHandler_29(L_0); TargetAnimal__ctor_m79849190AD1B15ECC1D5A486410B8F065AC64324(__this, /*hidden argument*/NULL); return; } } // System.Void Yeji::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Yeji__cctor_m372CF8956E1446EAEAAAB94F80ECB43CE2CC22BB (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1__ctor_mC25BB3DE4DB6E4BCC672FEAFDE153725ECE2B82E_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_t47ED9A0606C5D93A2045DE3AACBA2CD73C930023_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StoneRecorder_tBA3376B07C34D8BDC00CAC5B96BDC69A6EC4DB4D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // static int _avoidancePriority = 0; ((Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_StaticFields*)il2cpp_codegen_static_fields_for(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var))->set__avoidancePriority_14(0); // public static HashSet yejiSet = new HashSet(); HashSet_1_t47ED9A0606C5D93A2045DE3AACBA2CD73C930023 * L_0 = (HashSet_1_t47ED9A0606C5D93A2045DE3AACBA2CD73C930023 *)il2cpp_codegen_object_new(HashSet_1_t47ED9A0606C5D93A2045DE3AACBA2CD73C930023_il2cpp_TypeInfo_var); HashSet_1__ctor_mC25BB3DE4DB6E4BCC672FEAFDE153725ECE2B82E(L_0, /*hidden argument*/HashSet_1__ctor_mC25BB3DE4DB6E4BCC672FEAFDE153725ECE2B82E_RuntimeMethod_var); ((Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_StaticFields*)il2cpp_codegen_static_fields_for(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var))->set_yejiSet_28(L_0); // static StoneRecorder stoneRecorder = new StoneRecorder(); StoneRecorder_tBA3376B07C34D8BDC00CAC5B96BDC69A6EC4DB4D * L_1 = (StoneRecorder_tBA3376B07C34D8BDC00CAC5B96BDC69A6EC4DB4D *)il2cpp_codegen_object_new(StoneRecorder_tBA3376B07C34D8BDC00CAC5B96BDC69A6EC4DB4D_il2cpp_TypeInfo_var); StoneRecorder__ctor_mAD285EF264838269824753952863E81C9A7CD389(L_1, /*hidden argument*/NULL); ((Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_StaticFields*)il2cpp_codegen_static_fields_for(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var))->set_stoneRecorder_30(L_1); return; } } // System.Void Yeji::b__20_0() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Yeji_U3CDieU3Eb__20_0_m5BE3B62FC235E4163B39C0EEAA36409A0E08ED24 (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // Destroy(this.gameObject); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_0; L_0 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); Object_Destroy_m3EEDB6ECD49A541EC826EA8E1C8B599F7AF67D30(L_0, /*hidden argument*/NULL); // }; return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void YejiHuntGameMode::.ctor(GameMgr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void YejiHuntGameMode__ctor_mF3B44093FFCB45C3693B48848211EF8D00295D61 (YejiHuntGameMode_tC7B3AEEF3616DD293F13F32FC974BC22C561D563 * __this, GameMgr_tE3D60AE9C96D966787437C5F15D3477A9E948950 * ___gameMgr0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Component_GetComponentInChildren_TisTreeAreaRecorder_tAE9063D38B62DF6BE86781A700F0D349C2E43B37_m9D8A8EF527631BE85E2C2F35C95A33BDD8B134D9_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral447271DE5F13DD003CF556E844B5709E5912B891); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBB0D7DEB0469D32740BC8AFB9C4FD264AF0796E6); s_Il2CppMethodInitialized = true; } { // public int createCountMax = 2; __this->set_createCountMax_19(2); // public YejiHuntGameMode(GameMgr gameMgr) : base(gameMgr) { GameMgr_tE3D60AE9C96D966787437C5F15D3477A9E948950 * L_0 = ___gameMgr0; ChallengeGameMode__ctor_m502BABF831A061D84C572BB46CC6B6D125A7FBF0(__this, L_0, /*hidden argument*/NULL); // this.animalTypeID = 1; ((ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B *)__this)->set_animalTypeID_2(1); // animalPrefab = animalsBaseT.Find("Yeji").gameObject; Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_1 = ((ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B *)__this)->get_animalsBaseT_5(); NullCheck(L_1); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_2; L_2 = Transform_Find_mB1687901A4FB0D562C44A93CC67CD35DCFCAABA1(L_1, _stringLiteral447271DE5F13DD003CF556E844B5709E5912B891, /*hidden argument*/NULL); NullCheck(L_2); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_3; L_3 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B(L_2, /*hidden argument*/NULL); ((ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B *)__this)->set_animalPrefab_3(L_3); // this.flyPlaneHeight = gameMgr.transform.Find("FlyPlane").localPosition.y; GameMgr_tE3D60AE9C96D966787437C5F15D3477A9E948950 * L_4 = ___gameMgr0; NullCheck(L_4); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_5; L_5 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(L_4, /*hidden argument*/NULL); NullCheck(L_5); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_6; L_6 = Transform_Find_mB1687901A4FB0D562C44A93CC67CD35DCFCAABA1(L_5, _stringLiteralBB0D7DEB0469D32740BC8AFB9C4FD264AF0796E6, /*hidden argument*/NULL); NullCheck(L_6); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_7; L_7 = Transform_get_localPosition_m527B8B5B625DA9A61E551E0FBCD3BE8CA4539FC2(L_6, /*hidden argument*/NULL); float L_8 = L_7.get_y_3(); __this->set_flyPlaneHeight_17(L_8); // treeAreaRecorder = gameMgr.transform.GetComponentInChildren().InitAndGet(); GameMgr_tE3D60AE9C96D966787437C5F15D3477A9E948950 * L_9 = ___gameMgr0; NullCheck(L_9); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_10; L_10 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(L_9, /*hidden argument*/NULL); NullCheck(L_10); TreeAreaRecorder_tAE9063D38B62DF6BE86781A700F0D349C2E43B37 * L_11; L_11 = Component_GetComponentInChildren_TisTreeAreaRecorder_tAE9063D38B62DF6BE86781A700F0D349C2E43B37_m9D8A8EF527631BE85E2C2F35C95A33BDD8B134D9(L_10, /*hidden argument*/Component_GetComponentInChildren_TisTreeAreaRecorder_tAE9063D38B62DF6BE86781A700F0D349C2E43B37_m9D8A8EF527631BE85E2C2F35C95A33BDD8B134D9_RuntimeMethod_var); NullCheck(L_11); TreeAreaRecorder_tAE9063D38B62DF6BE86781A700F0D349C2E43B37 * L_12; L_12 = TreeAreaRecorder_InitAndGet_m15946B29565E5E2F0159453CCE7028EB0BDDC039(L_11, /*hidden argument*/NULL); __this->set_treeAreaRecorder_18(L_12); // BanBowReady(); GameMode_BanBowReady_m57C84639E4B8C579B98D72BD5E4A4E6A84EF2948(__this, /*hidden argument*/NULL); // } return; } } // System.Void YejiHuntGameMode::Start() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void YejiHuntGameMode_Start_mFBF2D47550605AB6692B43558C671A6A5D1F4A08 (YejiHuntGameMode_tC7B3AEEF3616DD293F13F32FC974BC22C561D563 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // UnbanBowReady(); GameMode_UnbanBowReady_m789DA8EC4F079B37F821519FC95DA76EF389A928(__this, /*hidden argument*/NULL); // Yeji.InitPreHeights(); IL2CPP_RUNTIME_CLASS_INIT(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var); Yeji_InitPreHeights_m62DB6279C3515B4F2FE57F30D132AC5C0B373D9C(/*hidden argument*/NULL); // if (nextLevel != null) { String_t* L_0 = ((ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B *)__this)->get_nextLevel_15(); if (!L_0) { goto IL_002b; } } { // SetLevel(int.Parse(nextLevel)); String_t* L_1 = ((ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B *)__this)->get_nextLevel_15(); int32_t L_2; L_2 = Int32_Parse_mE5D220FEA7F0BFB1B220B2A30797D7DD83ACF22C(L_1, /*hidden argument*/NULL); VirtualActionInvoker1< int32_t >::Invoke(12 /* System.Void ChallengeGameMode::SetLevel(System.Int32) */, __this, L_2); // AddHuntGameView(); ChallengeGameMode_AddHuntGameView_mC6CC5267FBBC58D9F888E4224F29B1E057C023AC(__this, /*hidden argument*/NULL); // } else { return; } IL_002b: { // AddSelectLevelView(); ChallengeGameMode_AddSelectLevelView_mB751386829E80493A51AA0B9A0CA0D45B0AE8638(__this, /*hidden argument*/NULL); // } return; } } // System.Void YejiHuntGameMode::SetLevel(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void YejiHuntGameMode_SetLevel_m9F5532ECD5D6BD9587B6BA36588B78D80638BE48 (YejiHuntGameMode_tC7B3AEEF3616DD293F13F32FC974BC22C561D563 * __this, int32_t ___level0, const RuntimeMethod* method) { int32_t V_0 = 0; { // currentlevel = level; int32_t L_0 = ___level0; ((ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B *)__this)->set_currentlevel_13(L_0); // createCountMax = level + 1; int32_t L_1 = ___level0; __this->set_createCountMax_19(((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)1))); // animalCountMax = animalCount = createCountMax; int32_t L_2 = __this->get_createCountMax_19(); int32_t L_3 = L_2; V_0 = L_3; ((ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B *)__this)->set_animalCount_8(L_3); int32_t L_4 = V_0; ((ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B *)__this)->set_animalCountMax_9(L_4); // arrowCountMax = arrowCount = animalCountMax * 3 * 2; int32_t L_5 = ((ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B *)__this)->get_animalCountMax_9(); int32_t L_6 = ((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_5, (int32_t)3)), (int32_t)2)); V_0 = L_6; ((ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B *)__this)->set_arrowCount_10(L_6); int32_t L_7 = V_0; ((ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B *)__this)->set_arrowCountMax_11(L_7); // time = arrowCountMax * 10; int32_t L_8 = ((ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B *)__this)->get_arrowCountMax_11(); ((ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B *)__this)->set_time_12(((float)((float)((int32_t)il2cpp_codegen_multiply((int32_t)L_8, (int32_t)((int32_t)10)))))); // CreateAnimal(); YejiHuntGameMode_CreateAnimal_m50A84D5502FCFE43217BA3774FD66F0E2502CEA9(__this, /*hidden argument*/NULL); // } return; } } // System.Void YejiHuntGameMode::CreateAnimal() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void YejiHuntGameMode_CreateAnimal_m50A84D5502FCFE43217BA3774FD66F0E2502CEA9 (YejiHuntGameMode_tC7B3AEEF3616DD293F13F32FC974BC22C561D563 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1__ctor_m7AAF677F8C357E5D7DD63D87EC0EA2B47FF37C61_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_t1B7004A16BED5066BEB03C343CA7F4B5EE772A10_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GameObject_GetComponent_TisYeji_tE6BD925F837340572A36DAC8B0F636034B696A81_m82CE4619411D4E631989E5433534C4474AF0ADED_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Add_m703FB10019FF453F25D4AA1F74C549F547466497_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_get_Count_m19BDF71BBAFEE3DADC4089E8DCF0F13D4838B415_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_Instantiate_TisGameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319_mBD93211DA0D7B29006CFA30014093BAFEFB1BA21_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&YejiHuntGameMode_U3CCreateAnimalU3Eb__8_0_m730EB0E05FCFECD971A9EDAE41E2C7F7BF782E3F_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; AreaInfo_t23BDB3108537E7181ACFB654B90B389AE8FAC781 * V_1 = NULL; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E V_2; memset((&V_2), 0, sizeof(V_2)); Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * V_3 = NULL; float V_4 = 0.0f; { // if (banCreateAnimal) return; bool L_0 = __this->get_banCreateAnimal_21(); if (!L_0) { goto IL_0009; } } { // if (banCreateAnimal) return; return; } IL_0009: { // if (createAnimalIndex >= createCountMax) return; int32_t L_1 = __this->get_createAnimalIndex_20(); int32_t L_2 = __this->get_createCountMax_19(); if ((((int32_t)L_1) < ((int32_t)L_2))) { goto IL_0018; } } { // if (createAnimalIndex >= createCountMax) return; return; } IL_0018: { // int createNearTreeIndex = 0; V_0 = 0; // createNearTreeIndex = createAnimalIndex % 2; int32_t L_3 = __this->get_createAnimalIndex_20(); V_0 = ((int32_t)((int32_t)L_3%(int32_t)2)); // TreeAreaRecorder.AreaInfo areaInfo = treeAreaRecorder.getValidAreaInfo(createNearTreeIndex); TreeAreaRecorder_tAE9063D38B62DF6BE86781A700F0D349C2E43B37 * L_4 = __this->get_treeAreaRecorder_18(); int32_t L_5 = V_0; NullCheck(L_4); AreaInfo_t23BDB3108537E7181ACFB654B90B389AE8FAC781 * L_6; L_6 = TreeAreaRecorder_getValidAreaInfo_m70A8AF7912CD5D132B651AF5EBDA1587DB626CA7(L_4, L_5, /*hidden argument*/NULL); V_1 = L_6; // Vector3 newPos = CalculateNewPosByTreePos(animalsBaseT, flyPlaneHeight, areaInfo); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_7 = ((ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B *)__this)->get_animalsBaseT_5(); float L_8 = __this->get_flyPlaneHeight_17(); AreaInfo_t23BDB3108537E7181ACFB654B90B389AE8FAC781 * L_9 = V_1; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_10; L_10 = YejiHuntGameMode_CalculateNewPosByTreePos_mEB9505358138A8143F6F7AADF07C1DB5937CBC37(L_7, L_8, L_9, /*hidden argument*/NULL); V_2 = L_10; // GameObject animalObject = GameObject.Instantiate(animalPrefab, newPos, Quaternion.identity, animalsBaseT); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_11 = ((ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B *)__this)->get_animalPrefab_3(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_12 = V_2; Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 L_13; L_13 = Quaternion_get_identity_mF2E565DBCE793A1AE6208056D42CA7C59D83A702(/*hidden argument*/NULL); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_14 = ((ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B *)__this)->get_animalsBaseT_5(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_15; L_15 = Object_Instantiate_TisGameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319_mBD93211DA0D7B29006CFA30014093BAFEFB1BA21(L_11, L_12, L_13, L_14, /*hidden argument*/Object_Instantiate_TisGameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319_mBD93211DA0D7B29006CFA30014093BAFEFB1BA21_RuntimeMethod_var); // animalObject.SetActive(true); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_16 = L_15; NullCheck(L_16); GameObject_SetActive_mCF1EEF2A314F3AE85DA581FF52EB06ACEF2FFF86(L_16, (bool)1, /*hidden argument*/NULL); // Yeji yeji = animalObject.GetComponent(); NullCheck(L_16); Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * L_17; L_17 = GameObject_GetComponent_TisYeji_tE6BD925F837340572A36DAC8B0F636034B696A81_m82CE4619411D4E631989E5433534C4474AF0ADED(L_16, /*hidden argument*/GameObject_GetComponent_TisYeji_tE6BD925F837340572A36DAC8B0F636034B696A81_m82CE4619411D4E631989E5433534C4474AF0ADED_RuntimeMethod_var); V_3 = L_17; // yeji.onlineHandler.uid = createAnimalIndex + 1; Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * L_18 = V_3; NullCheck(L_18); OnlineHandler_t0EEA4F8C0170610DD9F19AE15F12F6A4C74E3587 * L_19 = L_18->get_onlineHandler_29(); int32_t L_20 = __this->get_createAnimalIndex_20(); NullCheck(L_19); L_19->set_uid_1(((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1))); // yeji.treeAreaRecorder = treeAreaRecorder; Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * L_21 = V_3; TreeAreaRecorder_tAE9063D38B62DF6BE86781A700F0D349C2E43B37 * L_22 = __this->get_treeAreaRecorder_18(); NullCheck(L_21); L_21->set_treeAreaRecorder_8(L_22); // yeji.flyPlaneHeight = flyPlaneHeight; Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * L_23 = V_3; float L_24 = __this->get_flyPlaneHeight_17(); NullCheck(L_23); L_23->set_flyPlaneHeight_9(L_24); // float baseFlyHeight = Yeji.RandomOnePreHeight(yeji); Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * L_25 = V_3; IL2CPP_RUNTIME_CLASS_INIT(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var); float L_26; L_26 = Yeji_RandomOnePreHeight_m6CC96A623F2BDF8C321B2399008AB36F99793847(L_25, /*hidden argument*/NULL); V_4 = L_26; // yeji.SetFlyHeight(baseFlyHeight); Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * L_27 = V_3; float L_28 = V_4; NullCheck(L_27); Yeji_SetFlyHeight_mF016E2493DAAB0488A3FC6B77F32886255D92559(L_27, L_28, /*hidden argument*/NULL); // yeji.RotateByWorldY(Random.value * 360); Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * L_29 = V_3; float L_30; L_30 = Random_get_value_m9AEBC7DF0BB6C57C928B0798349A7D3C0B3FB872(/*hidden argument*/NULL); NullCheck(L_29); TargetAnimal_RotateByWorldY_mD022A909C02A641C33F792A108940BB0AF26ADC5(L_29, ((float)il2cpp_codegen_multiply((float)L_30, (float)(360.0f))), /*hidden argument*/NULL); // yeji.onDie += delegate(Yeji yeji) { // animalCount--; // animalSet.Remove(yeji); // //????????????????????????????? // Sequence seq = DOTween.Sequence(); // seq.AppendInterval(1.0f); // seq.AppendCallback(CreateAnimal); // }; Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * L_31 = V_3; Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * L_32 = L_31; NullCheck(L_32); Action_1_t1B7004A16BED5066BEB03C343CA7F4B5EE772A10 * L_33 = L_32->get_onDie_27(); Action_1_t1B7004A16BED5066BEB03C343CA7F4B5EE772A10 * L_34 = (Action_1_t1B7004A16BED5066BEB03C343CA7F4B5EE772A10 *)il2cpp_codegen_object_new(Action_1_t1B7004A16BED5066BEB03C343CA7F4B5EE772A10_il2cpp_TypeInfo_var); Action_1__ctor_m7AAF677F8C357E5D7DD63D87EC0EA2B47FF37C61(L_34, __this, (intptr_t)((intptr_t)YejiHuntGameMode_U3CCreateAnimalU3Eb__8_0_m730EB0E05FCFECD971A9EDAE41E2C7F7BF782E3F_RuntimeMethod_var), /*hidden argument*/Action_1__ctor_m7AAF677F8C357E5D7DD63D87EC0EA2B47FF37C61_RuntimeMethod_var); Delegate_t * L_35; L_35 = Delegate_Combine_m631D10D6CFF81AB4F237B9D549B235A54F45FA55(L_33, L_34, /*hidden argument*/NULL); NullCheck(L_32); L_32->set_onDie_27(((Action_1_t1B7004A16BED5066BEB03C343CA7F4B5EE772A10 *)CastclassSealed((RuntimeObject*)L_35, Action_1_t1B7004A16BED5066BEB03C343CA7F4B5EE772A10_il2cpp_TypeInfo_var))); // animalSet.Add(yeji); HashSet_1_tBBDF351960AC909F90DBEEF112FAB92D79FAB089 * L_36 = ((ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B *)__this)->get_animalSet_6(); Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * L_37 = V_3; NullCheck(L_36); bool L_38; L_38 = HashSet_1_Add_m703FB10019FF453F25D4AA1F74C549F547466497(L_36, L_37, /*hidden argument*/HashSet_1_Add_m703FB10019FF453F25D4AA1F74C549F547466497_RuntimeMethod_var); // createAnimalIndex++; int32_t L_39 = __this->get_createAnimalIndex_20(); __this->set_createAnimalIndex_20(((int32_t)il2cpp_codegen_add((int32_t)L_39, (int32_t)1))); // if (animalSet.Count < maxAnimalCountAtTheSameTime) { HashSet_1_tBBDF351960AC909F90DBEEF112FAB92D79FAB089 * L_40 = ((ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B *)__this)->get_animalSet_6(); NullCheck(L_40); int32_t L_41; L_41 = HashSet_1_get_Count_m19BDF71BBAFEE3DADC4089E8DCF0F13D4838B415_inline(L_40, /*hidden argument*/HashSet_1_get_Count_m19BDF71BBAFEE3DADC4089E8DCF0F13D4838B415_RuntimeMethod_var); int32_t L_42 = ((ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B *)__this)->get_maxAnimalCountAtTheSameTime_7(); if ((((int32_t)L_41) >= ((int32_t)L_42))) { goto IL_0109; } } { // CreateAnimal(); YejiHuntGameMode_CreateAnimal_m50A84D5502FCFE43217BA3774FD66F0E2502CEA9(__this, /*hidden argument*/NULL); } IL_0109: { // } return; } } // UnityEngine.Vector3 YejiHuntGameMode::CalculateNewPosByTreePos(UnityEngine.Transform,System.Single,TreeAreaRecorder/AreaInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E YejiHuntGameMode_CalculateNewPosByTreePos_mEB9505358138A8143F6F7AADF07C1DB5937CBC37 (Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___animalsBaseT0, float ___flyPlaneHeight1, AreaInfo_t23BDB3108537E7181ACFB654B90B389AE8FAC781 * ___areaInfo2, const RuntimeMethod* method) { Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E V_0; memset((&V_0), 0, sizeof(V_0)); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E V_1; memset((&V_1), 0, sizeof(V_1)); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E V_2; memset((&V_2), 0, sizeof(V_2)); float V_3 = 0.0f; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E V_4; memset((&V_4), 0, sizeof(V_4)); { // Vector3 animalsBasePos = animalsBaseT.position; Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_0 = ___animalsBaseT0; NullCheck(L_0); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_1; L_1 = Transform_get_position_m40A8A9895568D56FFC687B57F30E8D53CB5EA341(L_0, /*hidden argument*/NULL); V_0 = L_1; // Vector3 treePos = areaInfo.transform.position; AreaInfo_t23BDB3108537E7181ACFB654B90B389AE8FAC781 * L_2 = ___areaInfo2; NullCheck(L_2); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_3 = L_2->get_transform_0(); NullCheck(L_3); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_4; L_4 = Transform_get_position_m40A8A9895568D56FFC687B57F30E8D53CB5EA341(L_3, /*hidden argument*/NULL); V_1 = L_4; // treePos.y = animalsBasePos.y; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_5 = V_0; float L_6 = L_5.get_y_3(); (&V_1)->set_y_3(L_6); // Vector3 vecAnimalsBaseToTree = treePos - animalsBasePos; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_7 = V_1; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_8 = V_0; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_9; L_9 = Vector3_op_Subtraction_m2725C96965D5C0B1F9715797E51762B13A5FED58_inline(L_7, L_8, /*hidden argument*/NULL); V_2 = L_9; // float distanceH = vecAnimalsBaseToTree.magnitude; float L_10; L_10 = Vector3_get_magnitude_mDDD40612220D8104E77E993E18A101A69A944991((Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E *)(&V_2), /*hidden argument*/NULL); // float newDistanceH = distanceH - areaInfo.radius - 1f; AreaInfo_t23BDB3108537E7181ACFB654B90B389AE8FAC781 * L_11 = ___areaInfo2; NullCheck(L_11); float L_12 = L_11->get_radius_2(); V_3 = ((float)il2cpp_codegen_subtract((float)((float)il2cpp_codegen_subtract((float)L_10, (float)L_12)), (float)(1.0f))); // Vector3 displace = vecAnimalsBaseToTree.normalized * newDistanceH; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_13; L_13 = Vector3_get_normalized_m2FA6DF38F97BDA4CCBDAE12B9FE913A241DAC8D5((Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E *)(&V_2), /*hidden argument*/NULL); float L_14 = V_3; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_15; L_15 = Vector3_op_Multiply_m9EA3D18290418D7B410C7D11C4788C13BFD2C30A_inline(L_13, L_14, /*hidden argument*/NULL); V_4 = L_15; // displace.y += flyPlaneHeight; float* L_16 = (&V_4)->get_address_of_y_3(); float* L_17 = L_16; float L_18 = *((float*)L_17); float L_19 = ___flyPlaneHeight1; *((float*)L_17) = (float)((float)il2cpp_codegen_add((float)L_18, (float)L_19)); // Vector3 newPos = animalsBaseT.position + displace; Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_20 = ___animalsBaseT0; NullCheck(L_20); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_21; L_21 = Transform_get_position_m40A8A9895568D56FFC687B57F30E8D53CB5EA341(L_20, /*hidden argument*/NULL); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_22 = V_4; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_23; L_23 = Vector3_op_Addition_mEE4F672B923CCB184C39AABCA33443DB218E50E0_inline(L_21, L_22, /*hidden argument*/NULL); // return newPos; return L_23; } } // System.Void YejiHuntGameMode::b__8_0(Yeji) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void YejiHuntGameMode_U3CCreateAnimalU3Eb__8_0_m730EB0E05FCFECD971A9EDAE41E2C7F7BF782E3F (YejiHuntGameMode_tC7B3AEEF3616DD293F13F32FC974BC22C561D563 * __this, Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * ___yeji0, 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*)&HashSet_1_Remove_mC768C51F031F7135EF36B0E02875D7F6B489B436_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&YejiHuntGameMode_CreateAnimal_m50A84D5502FCFE43217BA3774FD66F0E2502CEA9_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // animalCount--; int32_t L_0 = ((ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B *)__this)->get_animalCount_8(); ((ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B *)__this)->set_animalCount_8(((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)1))); // animalSet.Remove(yeji); HashSet_1_tBBDF351960AC909F90DBEEF112FAB92D79FAB089 * L_1 = ((ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B *)__this)->get_animalSet_6(); Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * L_2 = ___yeji0; NullCheck(L_1); bool L_3; L_3 = HashSet_1_Remove_mC768C51F031F7135EF36B0E02875D7F6B489B436(L_1, L_2, /*hidden argument*/HashSet_1_Remove_mC768C51F031F7135EF36B0E02875D7F6B489B436_RuntimeMethod_var); // Sequence seq = DOTween.Sequence(); IL2CPP_RUNTIME_CLASS_INIT(DOTween_t7BE7AEC9D5268B0C5F1193D8F20B01B7F18CC203_il2cpp_TypeInfo_var); Sequence_tE01FFFCA34A537CE2FF32EDAF451CDEC55A1399E * L_4; L_4 = DOTween_Sequence_m83221E315CE42CCE7B80D126A549114C86BC388D(/*hidden argument*/NULL); // seq.AppendInterval(1.0f); Sequence_tE01FFFCA34A537CE2FF32EDAF451CDEC55A1399E * L_5 = L_4; Sequence_tE01FFFCA34A537CE2FF32EDAF451CDEC55A1399E * L_6; L_6 = TweenSettingsExtensions_AppendInterval_m20E76B7FD0B9E0FD85D5E55444177E412D2A39FE(L_5, (1.0f), /*hidden argument*/NULL); // seq.AppendCallback(CreateAnimal); TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB * L_7 = (TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB *)il2cpp_codegen_object_new(TweenCallback_tCAA7F86252EC47FCDD15C81B4AEE6EEA72DC15CB_il2cpp_TypeInfo_var); TweenCallback__ctor_m595231CFB0B8CD35F6377EA2A88CB98A8E905662(L_7, __this, (intptr_t)((intptr_t)YejiHuntGameMode_CreateAnimal_m50A84D5502FCFE43217BA3774FD66F0E2502CEA9_RuntimeMethod_var), /*hidden argument*/NULL); Sequence_tE01FFFCA34A537CE2FF32EDAF451CDEC55A1399E * L_8; L_8 = TweenSettingsExtensions_AppendCallback_m056A9F025C67DB07A403E70BED916DCDDF8671E6(L_5, L_7, /*hidden argument*/NULL); // }; return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void YejiHuntGameMode_LocalPK::.ctor(GameMgr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void YejiHuntGameMode_LocalPK__ctor_m6B5625B3DC44DC91F69C4DC5F9AA200B7E7C1E66 (YejiHuntGameMode_LocalPK_t7B829CAB564B93A939025B2593348F8B65D5E229 * __this, GameMgr_tE3D60AE9C96D966787437C5F15D3477A9E948950 * ___gameMgr0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HunterGamePlayerScoreCounter_t4CFF1912DB681348618492344B5C63984D1CCDD7_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // float singleShootReadyTime = 30f; __this->set_singleShootReadyTime_23((30.0f)); // float singleShootReadyTimeMax = 30f; __this->set_singleShootReadyTimeMax_24((30.0f)); // public YejiHuntGameMode_LocalPK(GameMgr gameMgr) : base(gameMgr) { GameMgr_tE3D60AE9C96D966787437C5F15D3477A9E948950 * L_0 = ___gameMgr0; YejiHuntGameMode__ctor_mF3B44093FFCB45C3693B48848211EF8D00295D61(__this, L_0, /*hidden argument*/NULL); // hunterGamePlayerScoreCounter = new HunterGamePlayerScoreCounter(this); HunterGamePlayerScoreCounter_t4CFF1912DB681348618492344B5C63984D1CCDD7 * L_1 = (HunterGamePlayerScoreCounter_t4CFF1912DB681348618492344B5C63984D1CCDD7 *)il2cpp_codegen_object_new(HunterGamePlayerScoreCounter_t4CFF1912DB681348618492344B5C63984D1CCDD7_il2cpp_TypeInfo_var); HunterGamePlayerScoreCounter__ctor_m2B99EDB91B51DD090D7F15A399B5D20E765ABC14(L_1, __this, /*hidden argument*/NULL); __this->set_hunterGamePlayerScoreCounter_25(L_1); // } return; } } // System.Void YejiHuntGameMode_LocalPK::Start() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void YejiHuntGameMode_LocalPK_Start_mFC6509DC010BE55877EBFE81E22454E58AF468D9 (YejiHuntGameMode_LocalPK_t7B829CAB564B93A939025B2593348F8B65D5E229 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFA228A166C8AB08C7AA7D26E2EC88C52F25923F6); s_Il2CppMethodInitialized = true; } { // Yeji.InitPreHeights(); IL2CPP_RUNTIME_CLASS_INIT(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var); Yeji_InitPreHeights_m62DB6279C3515B4F2FE57F30D132AC5C0B373D9C(/*hidden argument*/NULL); // SetLevel(5); VirtualActionInvoker1< int32_t >::Invoke(12 /* System.Void ChallengeGameMode::SetLevel(System.Int32) */, __this, 5); // AddHuntGameView(); ChallengeGameMode_AddHuntGameView_mC6CC5267FBBC58D9F888E4224F29B1E057C023AC(__this, /*hidden argument*/NULL); // this.gameMgr.transform.Find("HunterGameView_LocalPK").gameObject.SetActive(true); GameMgr_tE3D60AE9C96D966787437C5F15D3477A9E948950 * L_0 = ((GameMode_t3635427B8DF6A50F9EAE8955955887AD0D098C82 *)__this)->get_gameMgr_0(); NullCheck(L_0); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_1; L_1 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(L_0, /*hidden argument*/NULL); NullCheck(L_1); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_2; L_2 = Transform_Find_mB1687901A4FB0D562C44A93CC67CD35DCFCAABA1(L_1, _stringLiteralFA228A166C8AB08C7AA7D26E2EC88C52F25923F6, /*hidden argument*/NULL); NullCheck(L_2); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_3; L_3 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B(L_2, /*hidden argument*/NULL); NullCheck(L_3); GameObject_SetActive_mCF1EEF2A314F3AE85DA581FF52EB06ACEF2FFF86(L_3, (bool)1, /*hidden argument*/NULL); // AddReadyView(); YejiHuntGameMode_LocalPK_AddReadyView_mADDD502F89A9570FD83A7AC797D2A629C9F6A1E6(__this, /*hidden argument*/NULL); // } return; } } // System.Boolean YejiHuntGameMode_LocalPK::DoNextShoot() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool YejiHuntGameMode_LocalPK_DoNextShoot_mD50B6E7D82BD7CD8F8110411B083C03BBAF92452 (YejiHuntGameMode_LocalPK_t7B829CAB564B93A939025B2593348F8B65D5E229 * __this, const RuntimeMethod* method) { bool G_B2_0 = false; bool G_B1_0 = false; { // bool canDo = base.DoNextShoot(); bool L_0; L_0 = ChallengeGameMode_DoNextShoot_mA0A04818D4028FEF2C6D4456A5B0628EA312E030(__this, /*hidden argument*/NULL); // if (canDo) { bool L_1 = L_0; G_B1_0 = L_1; if (!L_1) { G_B2_0 = L_1; goto IL_000f; } } { // NextPlayerFinal(); YejiHuntGameMode_LocalPK_NextPlayerFinal_mDE552218071ADA58E488434E984D70CDB7D554E2(__this, /*hidden argument*/NULL); G_B2_0 = G_B1_0; } IL_000f: { // return canDo; return G_B2_0; } } // System.Void YejiHuntGameMode_LocalPK::AddReadyView() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void YejiHuntGameMode_LocalPK_AddReadyView_mADDD502F89A9570FD83A7AC797D2A629C9F6A1E6 (YejiHuntGameMode_LocalPK_t7B829CAB564B93A939025B2593348F8B65D5E229 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GameObject_GetComponent_TisPKGameReadyView_Challenge_t422FE0ED7612BCE36D96961918D3245CA322AB93_mF7DB01D2F056AE063C822F451E1F4BE1638C438A_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_Instantiate_TisGameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319_m85FD3AD1E7C2C143E7D5491BBB781F1C3DA22B85_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Resources_Load_TisGameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319_mC871EF6B25D0F9AEDCB7D64F3A113DDB587A49D6_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7CC025E138704F688F8D1E8261B03C31E8BAA465); s_Il2CppMethodInitialized = true; } { // GameObject view = Resources.Load("Prefabs/Views/PKGameReadyView_Challenge"); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_0; L_0 = Resources_Load_TisGameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319_mC871EF6B25D0F9AEDCB7D64F3A113DDB587A49D6(_stringLiteral7CC025E138704F688F8D1E8261B03C31E8BAA465, /*hidden argument*/Resources_Load_TisGameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319_mC871EF6B25D0F9AEDCB7D64F3A113DDB587A49D6_RuntimeMethod_var); // GameObject o = GameObject.Instantiate(view); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_1; L_1 = Object_Instantiate_TisGameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319_m85FD3AD1E7C2C143E7D5491BBB781F1C3DA22B85(L_0, /*hidden argument*/Object_Instantiate_TisGameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319_m85FD3AD1E7C2C143E7D5491BBB781F1C3DA22B85_RuntimeMethod_var); // PKGameReadyView_Challenge script = o.GetComponent(); NullCheck(L_1); PKGameReadyView_Challenge_t422FE0ED7612BCE36D96961918D3245CA322AB93 * L_2; L_2 = GameObject_GetComponent_TisPKGameReadyView_Challenge_t422FE0ED7612BCE36D96961918D3245CA322AB93_mF7DB01D2F056AE063C822F451E1F4BE1638C438A(L_1, /*hidden argument*/GameObject_GetComponent_TisPKGameReadyView_Challenge_t422FE0ED7612BCE36D96961918D3245CA322AB93_mF7DB01D2F056AE063C822F451E1F4BE1638C438A_RuntimeMethod_var); // script.currentPlayerIndex = currentPlayerIndex; int32_t L_3 = __this->get_currentPlayerIndex_22(); NullCheck(L_2); L_2->set_currentPlayerIndex_5(L_3); // } return; } } // System.Void YejiHuntGameMode_LocalPK::NextPlayerFinal() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void YejiHuntGameMode_LocalPK_NextPlayerFinal_mDE552218071ADA58E488434E984D70CDB7D554E2 (YejiHuntGameMode_LocalPK_t7B829CAB564B93A939025B2593348F8B65D5E229 * __this, const RuntimeMethod* method) { { // NextPlayer(); YejiHuntGameMode_LocalPK_NextPlayer_m57348D9F10233B3060045AC5070730C7FEE39D44(__this, /*hidden argument*/NULL); // BanBowReady(); GameMode_BanBowReady_m57C84639E4B8C579B98D72BD5E4A4E6A84EF2948(__this, /*hidden argument*/NULL); // AddReadyView(); YejiHuntGameMode_LocalPK_AddReadyView_mADDD502F89A9570FD83A7AC797D2A629C9F6A1E6(__this, /*hidden argument*/NULL); // } return; } } // System.Void YejiHuntGameMode_LocalPK::NextPlayer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void YejiHuntGameMode_LocalPK_NextPlayer_m57348D9F10233B3060045AC5070730C7FEE39D44 (YejiHuntGameMode_LocalPK_t7B829CAB564B93A939025B2593348F8B65D5E229 * __this, const RuntimeMethod* method) { { // currentPlayerIndex++; int32_t L_0 = __this->get_currentPlayerIndex_22(); __this->set_currentPlayerIndex_22(((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)1))); // currentPlayerIndex %= 2; int32_t L_1 = __this->get_currentPlayerIndex_22(); __this->set_currentPlayerIndex_22(((int32_t)((int32_t)L_1%(int32_t)2))); // singleShootReadyTime = singleShootReadyTimeMax; float L_2 = __this->get_singleShootReadyTimeMax_24(); __this->set_singleShootReadyTime_23(L_2); // } return; } } // System.Void YejiHuntGameMode_LocalPK::Update() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void YejiHuntGameMode_LocalPK_Update_m6CE35509BE64CDF970AA1B81C7B03905CD0D1B6A (YejiHuntGameMode_LocalPK_t7B829CAB564B93A939025B2593348F8B65D5E229 * __this, const RuntimeMethod* method) { { // base.Update(); ChallengeGameMode_Update_m45BA884BD74209A6F55A1AA181A8068F417AC57B(__this, /*hidden argument*/NULL); // if (gameMgr.gameOver || pauseTimeCounting) return; GameMgr_tE3D60AE9C96D966787437C5F15D3477A9E948950 * L_0 = ((GameMode_t3635427B8DF6A50F9EAE8955955887AD0D098C82 *)__this)->get_gameMgr_0(); NullCheck(L_0); bool L_1 = L_0->get_gameOver_7(); if (L_1) { goto IL_001b; } } { bool L_2; L_2 = GameMode_get_pauseTimeCounting_mA658E4A5B5E237CAE4627B5550C8B68E99850E35(__this, /*hidden argument*/NULL); if (!L_2) { goto IL_001c; } } IL_001b: { // if (gameMgr.gameOver || pauseTimeCounting) return; return; } IL_001c: { // singleShootReadyTime -= Time.deltaTime; float L_3 = __this->get_singleShootReadyTime_23(); float L_4; L_4 = Time_get_deltaTime_mCC15F147DA67F38C74CE408FB5D7FF4A87DA2290(/*hidden argument*/NULL); __this->set_singleShootReadyTime_23(((float)il2cpp_codegen_subtract((float)L_3, (float)L_4))); // if (singleShootReadyTime <= 0) { float L_5 = __this->get_singleShootReadyTime_23(); if ((!(((float)L_5) <= ((float)(0.0f))))) { goto IL_004b; } } { // ArmBow.ins.readyShoot(); ArmBow_tB6B0B80BF49B5CD1F51E828D121AF6CBE42F74E4 * L_6; L_6 = ArmBow_get_ins_m261AF5740D1B1BD167FE8AC1AA1308701DD4D864(/*hidden argument*/NULL); NullCheck(L_6); ArmBow_readyShoot_m8D7E225EEC4E8F92D0D2AE066368E865CC4FC652(L_6, /*hidden argument*/NULL); // NextPlayerFinal(); YejiHuntGameMode_LocalPK_NextPlayerFinal_mDE552218071ADA58E488434E984D70CDB7D554E2(__this, /*hidden argument*/NULL); } IL_004b: { // } return; } } // System.Int32 YejiHuntGameMode_LocalPK::GetCurrentPlayIndex() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t YejiHuntGameMode_LocalPK_GetCurrentPlayIndex_mC044CD6FB812BAB227CFEC96C311E8D4E15E6BE1 (YejiHuntGameMode_LocalPK_t7B829CAB564B93A939025B2593348F8B65D5E229 * __this, const RuntimeMethod* method) { { // return currentPlayerIndex; int32_t L_0 = __this->get_currentPlayerIndex_22(); return L_0; } } // System.ValueTuple`2 YejiHuntGameMode_LocalPK::GetSingleShootReadyTime() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueTuple_2_t8A744F446B0F7B478AD1F3F16A38F910E3329FC8 YejiHuntGameMode_LocalPK_GetSingleShootReadyTime_m977686A13C05B5A66DFA893E76F6EEBF825CE2B7 (YejiHuntGameMode_LocalPK_t7B829CAB564B93A939025B2593348F8B65D5E229 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueTuple_2__ctor_mB8133ACA310169B397397A43169A5CB56FCEE9D6_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // return (singleShootReadyTime, singleShootReadyTimeMax); float L_0 = __this->get_singleShootReadyTime_23(); float L_1 = __this->get_singleShootReadyTimeMax_24(); ValueTuple_2_t8A744F446B0F7B478AD1F3F16A38F910E3329FC8 L_2; memset((&L_2), 0, sizeof(L_2)); ValueTuple_2__ctor_mB8133ACA310169B397397A43169A5CB56FCEE9D6((&L_2), L_0, L_1, /*hidden argument*/ValueTuple_2__ctor_mB8133ACA310169B397397A43169A5CB56FCEE9D6_RuntimeMethod_var); return L_2; } } // HunterGamePlayerScoreCounter YejiHuntGameMode_LocalPK::getHunterGamePlayerScoreCounter() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HunterGamePlayerScoreCounter_t4CFF1912DB681348618492344B5C63984D1CCDD7 * YejiHuntGameMode_LocalPK_getHunterGamePlayerScoreCounter_m045F1E0E9B239A5D8246C4F5969A60527FF01CB7 (YejiHuntGameMode_LocalPK_t7B829CAB564B93A939025B2593348F8B65D5E229 * __this, const RuntimeMethod* method) { { // return hunterGamePlayerScoreCounter; HunterGamePlayerScoreCounter_t4CFF1912DB681348618492344B5C63984D1CCDD7 * L_0 = __this->get_hunterGamePlayerScoreCounter_25(); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void YejiHuntGameMode_OnlinePK::.ctor(GameMgr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void YejiHuntGameMode_OnlinePK__ctor_m317DE41CC1D7F6522E9758356307CD59E62997D7 (YejiHuntGameMode_OnlinePK_tDDA2472446AEB0BB1728C88EE9B5DBE80B4CDCAA * __this, GameMgr_tE3D60AE9C96D966787437C5F15D3477A9E948950 * ___gameMgr0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HunterGamePlayerScoreCounter_t4CFF1912DB681348618492344B5C63984D1CCDD7_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OnlineHelper_t2E4F71841FE6F0B13C9845579D42E94EE517115B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // float singleShootReadyTime = 30f; __this->set_singleShootReadyTime_23((30.0f)); // float singleShootReadyTimeMax = 30f; __this->set_singleShootReadyTimeMax_24((30.0f)); // public YejiHuntGameMode_OnlinePK(GameMgr gameMgr) : base(gameMgr) { GameMgr_tE3D60AE9C96D966787437C5F15D3477A9E948950 * L_0 = ___gameMgr0; YejiHuntGameMode__ctor_mF3B44093FFCB45C3693B48848211EF8D00295D61(__this, L_0, /*hidden argument*/NULL); // onlineHelper = new OnlineHelper(this); OnlineHelper_t2E4F71841FE6F0B13C9845579D42E94EE517115B * L_1 = (OnlineHelper_t2E4F71841FE6F0B13C9845579D42E94EE517115B *)il2cpp_codegen_object_new(OnlineHelper_t2E4F71841FE6F0B13C9845579D42E94EE517115B_il2cpp_TypeInfo_var); OnlineHelper__ctor_m3DC6D3A8595889F3AE4A225B9D16F68A85B0D8CE(L_1, __this, /*hidden argument*/NULL); __this->set_onlineHelper_26(L_1); // hunterGamePlayerScoreCounter = new HunterGamePlayerScoreCounter(this); HunterGamePlayerScoreCounter_t4CFF1912DB681348618492344B5C63984D1CCDD7 * L_2 = (HunterGamePlayerScoreCounter_t4CFF1912DB681348618492344B5C63984D1CCDD7 *)il2cpp_codegen_object_new(HunterGamePlayerScoreCounter_t4CFF1912DB681348618492344B5C63984D1CCDD7_il2cpp_TypeInfo_var); HunterGamePlayerScoreCounter__ctor_m2B99EDB91B51DD090D7F15A399B5D20E765ABC14(L_2, __this, /*hidden argument*/NULL); __this->set_hunterGamePlayerScoreCounter_25(L_2); // } return; } } // System.Void YejiHuntGameMode_OnlinePK::Start() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void YejiHuntGameMode_OnlinePK_Start_m9B7379B3B504160F0F5CC2D0E4CD1FD5C96097AA (YejiHuntGameMode_OnlinePK_tDDA2472446AEB0BB1728C88EE9B5DBE80B4CDCAA * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&YejiHuntGameMode_OnlinePK_OnStart_m14F2B08B4497E057DAB417830C21DB7431A13485_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // onlineHelper.InitSocketPlayer(OnStart); OnlineHelper_t2E4F71841FE6F0B13C9845579D42E94EE517115B * L_0 = __this->get_onlineHelper_26(); Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * L_1 = (Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 *)il2cpp_codegen_object_new(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6_il2cpp_TypeInfo_var); Action__ctor_m07BE5EE8A629FBBA52AE6356D57A0D371BE2574B(L_1, __this, (intptr_t)((intptr_t)YejiHuntGameMode_OnlinePK_OnStart_m14F2B08B4497E057DAB417830C21DB7431A13485_RuntimeMethod_var), /*hidden argument*/NULL); NullCheck(L_0); OnlineHelper_InitSocketPlayer_m94E0981577B421DBB93CD00919DDD303CE76B022(L_0, L_1, /*hidden argument*/NULL); // } return; } } // System.Void YejiHuntGameMode_OnlinePK::OnStart() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void YejiHuntGameMode_OnlinePK_OnStart_m14F2B08B4497E057DAB417830C21DB7431A13485 (YejiHuntGameMode_OnlinePK_tDDA2472446AEB0BB1728C88EE9B5DBE80B4CDCAA * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFA228A166C8AB08C7AA7D26E2EC88C52F25923F6); s_Il2CppMethodInitialized = true; } { // banCreateAnimal = onlineHelper.IsCopyHost(); OnlineHelper_t2E4F71841FE6F0B13C9845579D42E94EE517115B * L_0 = __this->get_onlineHelper_26(); NullCheck(L_0); bool L_1; L_1 = OnlineHelper_IsCopyHost_mE06BD43A87D1F03A6E0E2655482BED30A762203E(L_0, /*hidden argument*/NULL); ((YejiHuntGameMode_tC7B3AEEF3616DD293F13F32FC974BC22C561D563 *)__this)->set_banCreateAnimal_21(L_1); // banOnBowArrowShootOut = onlineHelper.IsCopyHost(); OnlineHelper_t2E4F71841FE6F0B13C9845579D42E94EE517115B * L_2 = __this->get_onlineHelper_26(); NullCheck(L_2); bool L_3; L_3 = OnlineHelper_IsCopyHost_mE06BD43A87D1F03A6E0E2655482BED30A762203E(L_2, /*hidden argument*/NULL); ((ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B *)__this)->set_banOnBowArrowShootOut_16(L_3); // Yeji.InitPreHeights(); IL2CPP_RUNTIME_CLASS_INIT(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var); Yeji_InitPreHeights_m62DB6279C3515B4F2FE57F30D132AC5C0B373D9C(/*hidden argument*/NULL); // SetLevel(5); VirtualActionInvoker1< int32_t >::Invoke(12 /* System.Void ChallengeGameMode::SetLevel(System.Int32) */, __this, 5); // AddHuntGameView(); ChallengeGameMode_AddHuntGameView_mC6CC5267FBBC58D9F888E4224F29B1E057C023AC(__this, /*hidden argument*/NULL); // this.gameMgr.transform.Find("HunterGameView_LocalPK").gameObject.SetActive(true); GameMgr_tE3D60AE9C96D966787437C5F15D3477A9E948950 * L_4 = ((GameMode_t3635427B8DF6A50F9EAE8955955887AD0D098C82 *)__this)->get_gameMgr_0(); NullCheck(L_4); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_5; L_5 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(L_4, /*hidden argument*/NULL); NullCheck(L_5); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_6; L_6 = Transform_Find_mB1687901A4FB0D562C44A93CC67CD35DCFCAABA1(L_5, _stringLiteralFA228A166C8AB08C7AA7D26E2EC88C52F25923F6, /*hidden argument*/NULL); NullCheck(L_6); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_7; L_7 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B(L_6, /*hidden argument*/NULL); NullCheck(L_7); GameObject_SetActive_mCF1EEF2A314F3AE85DA581FF52EB06ACEF2FFF86(L_7, (bool)1, /*hidden argument*/NULL); // } return; } } // System.Void YejiHuntGameMode_OnlinePK::onBowShoot() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void YejiHuntGameMode_OnlinePK_onBowShoot_m0BA6A4DCC87BFA5A326B5264DDAB1BC84688DE0E (YejiHuntGameMode_OnlinePK_tDDA2472446AEB0BB1728C88EE9B5DBE80B4CDCAA * __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*)&_stringLiteralDD28D20543989F54A4DB90E000211D64618E6DC2); s_Il2CppMethodInitialized = true; } { // if (onlineHelper.IsCopyHost()) { OnlineHelper_t2E4F71841FE6F0B13C9845579D42E94EE517115B * L_0 = __this->get_onlineHelper_26(); NullCheck(L_0); bool L_1; L_1 = OnlineHelper_IsCopyHost_mE06BD43A87D1F03A6E0E2655482BED30A762203E(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_0027; } } { // onlineHelper.socketPlayer.UploadPKGameData("onBowShoot", ""); OnlineHelper_t2E4F71841FE6F0B13C9845579D42E94EE517115B * L_2 = __this->get_onlineHelper_26(); NullCheck(L_2); SocketPlayer_t3D341EF990F6F99AFA174DF42451ECD05E909D29 * L_3 = L_2->get_socketPlayer_1(); NullCheck(L_3); SocketPlayer_UploadPKGameData_m1BCE80C56A4293EE2C50D3606091DE4E101AE921(L_3, _stringLiteralDD28D20543989F54A4DB90E000211D64618E6DC2, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, /*hidden argument*/NULL); } IL_0027: { // } return; } } // System.Boolean YejiHuntGameMode_OnlinePK::DoNextShoot() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool YejiHuntGameMode_OnlinePK_DoNextShoot_mD747C7EFEC419ED8C24C2E56960AEB3F2CAB04BA (YejiHuntGameMode_OnlinePK_tDDA2472446AEB0BB1728C88EE9B5DBE80B4CDCAA * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m5ABD8882ABDC6E2E298E2E25FC07464C6C960B96_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_mB5A16792F59459BD7201172EF4DA7A224BD20424_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m9F1D001319885B4142FC8737B2F53BFC5D05B902_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_GetEnumerator_mCB0A1EBB995E9BA3FB805ACCB3B078ED8C0A7ABA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBB8FB7C40046CAE7C8959AAE24AD38D8BBB78A2E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709); s_Il2CppMethodInitialized = true; } Enumerator_t56EDF8026DFAAE04A48416483FAB75F1CAF73061 V_0; memset((&V_0), 0, sizeof(V_0)); Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * V_1 = NULL; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; bool G_B11_0 = false; bool G_B10_0 = false; { // if (onlineHelper.IsCopyHost()) { OnlineHelper_t2E4F71841FE6F0B13C9845579D42E94EE517115B * L_0 = __this->get_onlineHelper_26(); NullCheck(L_0); bool L_1; L_1 = OnlineHelper_IsCopyHost_mE06BD43A87D1F03A6E0E2655482BED30A762203E(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_0029; } } { // onlineHelper.socketPlayer.UploadPKGameData("DoNextShoot", ""); OnlineHelper_t2E4F71841FE6F0B13C9845579D42E94EE517115B * L_2 = __this->get_onlineHelper_26(); NullCheck(L_2); SocketPlayer_t3D341EF990F6F99AFA174DF42451ECD05E909D29 * L_3 = L_2->get_socketPlayer_1(); NullCheck(L_3); SocketPlayer_UploadPKGameData_m1BCE80C56A4293EE2C50D3606091DE4E101AE921(L_3, _stringLiteralBB8FB7C40046CAE7C8959AAE24AD38D8BBB78A2E, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, /*hidden argument*/NULL); // return false; return (bool)0; } IL_0029: { // foreach (var item in Yeji.yejiSet) { IL2CPP_RUNTIME_CLASS_INIT(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var); HashSet_1_t47ED9A0606C5D93A2045DE3AACBA2CD73C930023 * L_4 = ((Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_StaticFields*)il2cpp_codegen_static_fields_for(Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81_il2cpp_TypeInfo_var))->get_yejiSet_28(); NullCheck(L_4); Enumerator_t56EDF8026DFAAE04A48416483FAB75F1CAF73061 L_5; L_5 = HashSet_1_GetEnumerator_mCB0A1EBB995E9BA3FB805ACCB3B078ED8C0A7ABA(L_4, /*hidden argument*/HashSet_1_GetEnumerator_mCB0A1EBB995E9BA3FB805ACCB3B078ED8C0A7ABA_RuntimeMethod_var); V_0 = L_5; } IL_0034: try {// begin try (depth: 1) { goto IL_0056; } IL_0036: { // foreach (var item in Yeji.yejiSet) { Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * L_6; L_6 = Enumerator_get_Current_m9F1D001319885B4142FC8737B2F53BFC5D05B902_inline((Enumerator_t56EDF8026DFAAE04A48416483FAB75F1CAF73061 *)(&V_0), /*hidden argument*/Enumerator_get_Current_m9F1D001319885B4142FC8737B2F53BFC5D05B902_RuntimeMethod_var); V_1 = L_6; // if (item.onlineHandler.onDoNextShootWillDestroy) { Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * L_7 = V_1; NullCheck(L_7); OnlineHandler_t0EEA4F8C0170610DD9F19AE15F12F6A4C74E3587 * L_8 = L_7->get_onlineHandler_29(); NullCheck(L_8); bool L_9 = L_8->get_onDoNextShootWillDestroy_12(); if (!L_9) { goto IL_0056; } } IL_004b: { // GameObject.Destroy(item.gameObject); Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * L_10 = V_1; NullCheck(L_10); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_11; L_11 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B(L_10, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); Object_Destroy_m3EEDB6ECD49A541EC826EA8E1C8B599F7AF67D30(L_11, /*hidden argument*/NULL); } IL_0056: { // foreach (var item in Yeji.yejiSet) { bool L_12; L_12 = Enumerator_MoveNext_mB5A16792F59459BD7201172EF4DA7A224BD20424((Enumerator_t56EDF8026DFAAE04A48416483FAB75F1CAF73061 *)(&V_0), /*hidden argument*/Enumerator_MoveNext_mB5A16792F59459BD7201172EF4DA7A224BD20424_RuntimeMethod_var); if (L_12) { goto IL_0036; } } IL_005f: { IL2CPP_LEAVE(0x6F, FINALLY_0061); } }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0061; } FINALLY_0061: {// begin finally (depth: 1) Enumerator_Dispose_m5ABD8882ABDC6E2E298E2E25FC07464C6C960B96((Enumerator_t56EDF8026DFAAE04A48416483FAB75F1CAF73061 *)(&V_0), /*hidden argument*/Enumerator_Dispose_m5ABD8882ABDC6E2E298E2E25FC07464C6C960B96_RuntimeMethod_var); IL2CPP_END_FINALLY(97) }// end finally (depth: 1) IL2CPP_CLEANUP(97) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x6F, IL_006f) } IL_006f: { // bool canDo = base.DoNextShoot(); bool L_13; L_13 = ChallengeGameMode_DoNextShoot_mA0A04818D4028FEF2C6D4456A5B0628EA312E030(__this, /*hidden argument*/NULL); // if (canDo) { bool L_14 = L_13; G_B10_0 = L_14; if (!L_14) { G_B11_0 = L_14; goto IL_007e; } } { // NextPlayerFinal(); YejiHuntGameMode_OnlinePK_NextPlayerFinal_m6501922113923B0B37D2BED4CFA21E7F541B7658(__this, /*hidden argument*/NULL); G_B11_0 = G_B10_0; } IL_007e: { // return canDo; return G_B11_0; } } // System.Void YejiHuntGameMode_OnlinePK::AddReadyView() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void YejiHuntGameMode_OnlinePK_AddReadyView_mF076B29B6504A9080F87C51A31865CEC9AFB5891 (YejiHuntGameMode_OnlinePK_tDDA2472446AEB0BB1728C88EE9B5DBE80B4CDCAA * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GameObject_GetComponent_TisPKGameReadyView_Challenge_t422FE0ED7612BCE36D96961918D3245CA322AB93_mF7DB01D2F056AE063C822F451E1F4BE1638C438A_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_Instantiate_TisGameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319_m85FD3AD1E7C2C143E7D5491BBB781F1C3DA22B85_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Resources_Load_TisGameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319_mC871EF6B25D0F9AEDCB7D64F3A113DDB587A49D6_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7CC025E138704F688F8D1E8261B03C31E8BAA465); s_Il2CppMethodInitialized = true; } { // GameObject view = Resources.Load("Prefabs/Views/PKGameReadyView_Challenge"); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_0; L_0 = Resources_Load_TisGameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319_mC871EF6B25D0F9AEDCB7D64F3A113DDB587A49D6(_stringLiteral7CC025E138704F688F8D1E8261B03C31E8BAA465, /*hidden argument*/Resources_Load_TisGameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319_mC871EF6B25D0F9AEDCB7D64F3A113DDB587A49D6_RuntimeMethod_var); // GameObject o = GameObject.Instantiate(view); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_1; L_1 = Object_Instantiate_TisGameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319_m85FD3AD1E7C2C143E7D5491BBB781F1C3DA22B85(L_0, /*hidden argument*/Object_Instantiate_TisGameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319_m85FD3AD1E7C2C143E7D5491BBB781F1C3DA22B85_RuntimeMethod_var); // PKGameReadyView_Challenge script = o.GetComponent(); NullCheck(L_1); PKGameReadyView_Challenge_t422FE0ED7612BCE36D96961918D3245CA322AB93 * L_2; L_2 = GameObject_GetComponent_TisPKGameReadyView_Challenge_t422FE0ED7612BCE36D96961918D3245CA322AB93_mF7DB01D2F056AE063C822F451E1F4BE1638C438A(L_1, /*hidden argument*/GameObject_GetComponent_TisPKGameReadyView_Challenge_t422FE0ED7612BCE36D96961918D3245CA322AB93_mF7DB01D2F056AE063C822F451E1F4BE1638C438A_RuntimeMethod_var); // script.currentPlayerIndex = currentPlayerIndex; int32_t L_3 = __this->get_currentPlayerIndex_22(); NullCheck(L_2); L_2->set_currentPlayerIndex_5(L_3); // } return; } } // System.Void YejiHuntGameMode_OnlinePK::NextPlayerFinal() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void YejiHuntGameMode_OnlinePK_NextPlayerFinal_m6501922113923B0B37D2BED4CFA21E7F541B7658 (YejiHuntGameMode_OnlinePK_tDDA2472446AEB0BB1728C88EE9B5DBE80B4CDCAA * __this, const RuntimeMethod* method) { { // NextPlayer(); YejiHuntGameMode_OnlinePK_NextPlayer_mDF2D9F81BB9AE1735F95A83C1DD37518E3A93480(__this, /*hidden argument*/NULL); // } return; } } // System.Void YejiHuntGameMode_OnlinePK::NextPlayer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void YejiHuntGameMode_OnlinePK_NextPlayer_mDF2D9F81BB9AE1735F95A83C1DD37518E3A93480 (YejiHuntGameMode_OnlinePK_tDDA2472446AEB0BB1728C88EE9B5DBE80B4CDCAA * __this, const RuntimeMethod* method) { { // currentPlayerIndex++; int32_t L_0 = __this->get_currentPlayerIndex_22(); __this->set_currentPlayerIndex_22(((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)1))); // currentPlayerIndex %= 2; int32_t L_1 = __this->get_currentPlayerIndex_22(); __this->set_currentPlayerIndex_22(((int32_t)((int32_t)L_1%(int32_t)2))); // singleShootReadyTime = singleShootReadyTimeMax; float L_2 = __this->get_singleShootReadyTimeMax_24(); __this->set_singleShootReadyTime_23(L_2); // onlineHelper.roundID++; OnlineHelper_t2E4F71841FE6F0B13C9845579D42E94EE517115B * L_3 = __this->get_onlineHelper_26(); OnlineHelper_t2E4F71841FE6F0B13C9845579D42E94EE517115B * L_4 = L_3; NullCheck(L_4); int32_t L_5 = L_4->get_roundID_3(); NullCheck(L_4); L_4->set_roundID_3(((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1))); // } return; } } // System.Void YejiHuntGameMode_OnlinePK::Update() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void YejiHuntGameMode_OnlinePK_Update_m4F652403A91A1BDD4CB5A7CDC4C71E84A6A2F95D (YejiHuntGameMode_OnlinePK_tDDA2472446AEB0BB1728C88EE9B5DBE80B4CDCAA * __this, const RuntimeMethod* method) { { // if (!onlineHelper.IsMyPlayerInited()) return; OnlineHelper_t2E4F71841FE6F0B13C9845579D42E94EE517115B * L_0 = __this->get_onlineHelper_26(); NullCheck(L_0); bool L_1; L_1 = OnlineHelper_IsMyPlayerInited_mBAE96D77DFA28286786911F6C6F747BB00DE97BD(L_0, /*hidden argument*/NULL); if (L_1) { goto IL_000e; } } { // if (!onlineHelper.IsMyPlayerInited()) return; return; } IL_000e: { // if (!onlineHelper.IsMainHost()) return; OnlineHelper_t2E4F71841FE6F0B13C9845579D42E94EE517115B * L_2 = __this->get_onlineHelper_26(); NullCheck(L_2); bool L_3; L_3 = OnlineHelper_IsMainHost_mD3FF65F8D02458A1BB50454AFF258BBFC1D5E3BF(L_2, /*hidden argument*/NULL); if (L_3) { goto IL_001c; } } { // if (!onlineHelper.IsMainHost()) return; return; } IL_001c: { // if (!onlineHelper.IsMyPlayerRunning()) return; OnlineHelper_t2E4F71841FE6F0B13C9845579D42E94EE517115B * L_4 = __this->get_onlineHelper_26(); NullCheck(L_4); bool L_5; L_5 = OnlineHelper_IsMyPlayerRunning_mE051938A176F104C581384FB1DBD6C58A126CA02(L_4, /*hidden argument*/NULL); if (L_5) { goto IL_002a; } } { // if (!onlineHelper.IsMyPlayerRunning()) return; return; } IL_002a: { // OnUpdate(Time.deltaTime, pauseTimeCounting); float L_6; L_6 = Time_get_deltaTime_mCC15F147DA67F38C74CE408FB5D7FF4A87DA2290(/*hidden argument*/NULL); bool L_7; L_7 = GameMode_get_pauseTimeCounting_mA658E4A5B5E237CAE4627B5550C8B68E99850E35(__this, /*hidden argument*/NULL); YejiHuntGameMode_OnlinePK_OnUpdate_mF27346E6902940B90598C1640D5900B0B1274EA8(__this, L_6, L_7, /*hidden argument*/NULL); // } return; } } // System.Void YejiHuntGameMode_OnlinePK::OnUpdate(System.Single,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void YejiHuntGameMode_OnlinePK_OnUpdate_mF27346E6902940B90598C1640D5900B0B1274EA8 (YejiHuntGameMode_OnlinePK_tDDA2472446AEB0BB1728C88EE9B5DBE80B4CDCAA * __this, float ___dt0, bool ____pauseTimeCounting1, const RuntimeMethod* method) { { // if (gameMgr.gameOver || _pauseTimeCounting) return; GameMgr_tE3D60AE9C96D966787437C5F15D3477A9E948950 * L_0 = ((GameMode_t3635427B8DF6A50F9EAE8955955887AD0D098C82 *)__this)->get_gameMgr_0(); NullCheck(L_0); bool L_1 = L_0->get_gameOver_7(); bool L_2 = ____pauseTimeCounting1; if (!((int32_t)((int32_t)L_1|(int32_t)L_2))) { goto IL_0010; } } { // if (gameMgr.gameOver || _pauseTimeCounting) return; return; } IL_0010: { // if (this.time > 0) { float L_3 = ((ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B *)__this)->get_time_12(); if ((!(((float)L_3) > ((float)(0.0f))))) { goto IL_002d; } } { // this.time -= dt; float L_4 = ((ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B *)__this)->get_time_12(); float L_5 = ___dt0; ((ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B *)__this)->set_time_12(((float)il2cpp_codegen_subtract((float)L_4, (float)L_5))); // } else { goto IL_003e; } IL_002d: { // this.time = 0; ((ChallengeGameMode_tBEE3EA8F275D49B06B7D5E9743E0F17CF4F0418B *)__this)->set_time_12((0.0f)); // AnnounceGameOver(); ChallengeGameMode_AnnounceGameOver_mD74B0505B1B30B98B1C3F93235436F03F3788264(__this, /*hidden argument*/NULL); } IL_003e: { // if (gameMgr.gameOver || _pauseTimeCounting) return; GameMgr_tE3D60AE9C96D966787437C5F15D3477A9E948950 * L_6 = ((GameMode_t3635427B8DF6A50F9EAE8955955887AD0D098C82 *)__this)->get_gameMgr_0(); NullCheck(L_6); bool L_7 = L_6->get_gameOver_7(); bool L_8 = ____pauseTimeCounting1; if (!((int32_t)((int32_t)L_7|(int32_t)L_8))) { goto IL_004e; } } { // if (gameMgr.gameOver || _pauseTimeCounting) return; return; } IL_004e: { // singleShootReadyTime -= dt; float L_9 = __this->get_singleShootReadyTime_23(); float L_10 = ___dt0; __this->set_singleShootReadyTime_23(((float)il2cpp_codegen_subtract((float)L_9, (float)L_10))); // if (singleShootReadyTime <= 0) { float L_11 = __this->get_singleShootReadyTime_23(); if ((!(((float)L_11) <= ((float)(0.0f))))) { goto IL_0079; } } { // ArmBow.ins.readyShoot(); ArmBow_tB6B0B80BF49B5CD1F51E828D121AF6CBE42F74E4 * L_12; L_12 = ArmBow_get_ins_m261AF5740D1B1BD167FE8AC1AA1308701DD4D864(/*hidden argument*/NULL); NullCheck(L_12); ArmBow_readyShoot_m8D7E225EEC4E8F92D0D2AE066368E865CC4FC652(L_12, /*hidden argument*/NULL); // NextPlayerFinal(); YejiHuntGameMode_OnlinePK_NextPlayerFinal_m6501922113923B0B37D2BED4CFA21E7F541B7658(__this, /*hidden argument*/NULL); } IL_0079: { // } return; } } // System.Void YejiHuntGameMode_OnlinePK::FrameUpdate() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void YejiHuntGameMode_OnlinePK_FrameUpdate_m2CB7A5E74B6665AEEE5ED50E150C04F2B3B05495 (YejiHuntGameMode_OnlinePK_tDDA2472446AEB0BB1728C88EE9B5DBE80B4CDCAA * __this, const RuntimeMethod* method) { { // onlineHelper.OnFrameUpdate(); OnlineHelper_t2E4F71841FE6F0B13C9845579D42E94EE517115B * L_0 = __this->get_onlineHelper_26(); NullCheck(L_0); OnlineHelper_OnFrameUpdate_m6FFD323B542F2CBDC78ACB7495AACB71368FA8F0(L_0, /*hidden argument*/NULL); // } return; } } // System.Int32 YejiHuntGameMode_OnlinePK::GetCurrentPlayIndex() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t YejiHuntGameMode_OnlinePK_GetCurrentPlayIndex_mE157617D1664415FAF804925EE2C281DE99721FA (YejiHuntGameMode_OnlinePK_tDDA2472446AEB0BB1728C88EE9B5DBE80B4CDCAA * __this, const RuntimeMethod* method) { { // return currentPlayerIndex; int32_t L_0 = __this->get_currentPlayerIndex_22(); return L_0; } } // System.ValueTuple`2 YejiHuntGameMode_OnlinePK::GetSingleShootReadyTime() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueTuple_2_t8A744F446B0F7B478AD1F3F16A38F910E3329FC8 YejiHuntGameMode_OnlinePK_GetSingleShootReadyTime_m8BB1FE24ABACD6A147EFAF9E4787D0D194BF1D41 (YejiHuntGameMode_OnlinePK_tDDA2472446AEB0BB1728C88EE9B5DBE80B4CDCAA * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueTuple_2__ctor_mB8133ACA310169B397397A43169A5CB56FCEE9D6_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // return (singleShootReadyTime, singleShootReadyTimeMax); float L_0 = __this->get_singleShootReadyTime_23(); float L_1 = __this->get_singleShootReadyTimeMax_24(); ValueTuple_2_t8A744F446B0F7B478AD1F3F16A38F910E3329FC8 L_2; memset((&L_2), 0, sizeof(L_2)); ValueTuple_2__ctor_mB8133ACA310169B397397A43169A5CB56FCEE9D6((&L_2), L_0, L_1, /*hidden argument*/ValueTuple_2__ctor_mB8133ACA310169B397397A43169A5CB56FCEE9D6_RuntimeMethod_var); return L_2; } } // HunterGamePlayerScoreCounter YejiHuntGameMode_OnlinePK::getHunterGamePlayerScoreCounter() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HunterGamePlayerScoreCounter_t4CFF1912DB681348618492344B5C63984D1CCDD7 * YejiHuntGameMode_OnlinePK_getHunterGamePlayerScoreCounter_m6AF00600208BD094C0E416A249CC9BD17F14CD46 (YejiHuntGameMode_OnlinePK_tDDA2472446AEB0BB1728C88EE9B5DBE80B4CDCAA * __this, const RuntimeMethod* method) { { // return hunterGamePlayerScoreCounter; HunterGamePlayerScoreCounter_t4CFF1912DB681348618492344B5C63984D1CCDD7 * L_0 = __this->get_hunterGamePlayerScoreCounter_25(); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void YejiSyncData::SetData(Yeji) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void YejiSyncData_SetData_m0DF9399EFC4592651E1744746A62BE6D1A61E3D9 (YejiSyncData_t4FF903A600E64371DFF4510B3D1C308A95B38BA8 * __this, Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * ___yeji0, 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*)&_stringLiteral6EFD1A3638C8E2B5AF3CCE72B415F2F498F48707); s_Il2CppMethodInitialized = true; } Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 V_0; memset((&V_0), 0, sizeof(V_0)); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E V_1; memset((&V_1), 0, sizeof(V_1)); { // id = yeji.onlineHandler.uid; Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * L_0 = ___yeji0; NullCheck(L_0); OnlineHandler_t0EEA4F8C0170610DD9F19AE15F12F6A4C74E3587 * L_1 = L_0->get_onlineHandler_29(); NullCheck(L_1); int32_t L_2 = L_1->get_uid_1(); __this->set_id_0(L_2); // Quaternion r = yeji.transform.rotation; Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * L_3 = ___yeji0; NullCheck(L_3); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_4; L_4 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(L_3, /*hidden argument*/NULL); NullCheck(L_4); Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 L_5; L_5 = Transform_get_rotation_m4AA3858C00DF4C9614B80352558C4C37D08D2200(L_4, /*hidden argument*/NULL); V_0 = L_5; // Vector3 p = yeji.transform.position; Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * L_6 = ___yeji0; NullCheck(L_6); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_7; L_7 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(L_6, /*hidden argument*/NULL); NullCheck(L_7); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_8; L_8 = Transform_get_position_m40A8A9895568D56FFC687B57F30E8D53CB5EA341(L_7, /*hidden argument*/NULL); V_1 = L_8; // rx = r.x; Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 L_9 = V_0; float L_10 = L_9.get_x_0(); __this->set_rx_1(L_10); // ry = r.y; Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 L_11 = V_0; float L_12 = L_11.get_y_1(); __this->set_ry_2(L_12); // rz = r.z; Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 L_13 = V_0; float L_14 = L_13.get_z_2(); __this->set_rz_3(L_14); // rw = r.w; Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 L_15 = V_0; float L_16 = L_15.get_w_3(); __this->set_rw_4(L_16); // px = p.x; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_17 = V_1; float L_18 = L_17.get_x_2(); __this->set_px_5(L_18); // py = p.y; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_19 = V_1; float L_20 = L_19.get_y_3(); __this->set_py_6(L_20); // pz = p.z; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_21 = V_1; float L_22 = L_21.get_z_4(); __this->set_pz_7(L_22); // ms = yeji.onlineHandler.mirrorState; Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * L_23 = ___yeji0; NullCheck(L_23); OnlineHandler_t0EEA4F8C0170610DD9F19AE15F12F6A4C74E3587 * L_24 = L_23->get_onlineHandler_29(); NullCheck(L_24); int32_t L_25 = L_24->get_mirrorState_3(); __this->set_ms_8(L_25); // ii = yeji.onlineHandler.injuredID; Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * L_26 = ___yeji0; NullCheck(L_26); OnlineHandler_t0EEA4F8C0170610DD9F19AE15F12F6A4C74E3587 * L_27 = L_26->get_onlineHandler_29(); NullCheck(L_27); int32_t L_28 = L_27->get_injuredID_13(); __this->set_ii_9(L_28); // asp = yeji.onlineHandler.animatroSpeed; Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * L_29 = ___yeji0; NullCheck(L_29); OnlineHandler_t0EEA4F8C0170610DD9F19AE15F12F6A4C74E3587 * L_30 = L_29->get_onlineHandler_29(); NullCheck(L_30); float L_31 = L_30->get_animatroSpeed_4(); __this->set_asp_11(L_31); // if (id == 0) { int32_t L_32 = __this->get_id_0(); if (L_32) { goto IL_00c2; } } { // Debug.Log("UID????"); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_Log_mC26E5AD0D8D156C7FFD173AA15827F69225E9DB8(_stringLiteral6EFD1A3638C8E2B5AF3CCE72B415F2F498F48707, /*hidden argument*/NULL); } IL_00c2: { // } return; } } // System.Void YejiSyncData::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void YejiSyncData__ctor_mBE75D52518F7984C8DA619E086B4255C4290DD61 (YejiSyncData_t4FF903A600E64371DFF4510B3D1C308A95B38BA8 * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZDeflaterOutputStream::.ctor(System.IO.Stream) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZDeflaterOutputStream__ctor_m5BD214CF59E6614C51DA7AF2C5B371E1CF259D02 (ZDeflaterOutputStream_tC29A2BAF5FCC76E4CDAB81E0BFA933D413B00A83 * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___outp0, const RuntimeMethod* method) { { // public ZDeflaterOutputStream(Stream outp) : this(outp, 6, false) { Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_0 = ___outp0; ZDeflaterOutputStream__ctor_m7B11B8F6DD1B3BB2FECE7A7E352AA7FACAB07432(__this, L_0, 6, (bool)0, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZDeflaterOutputStream::.ctor(System.IO.Stream,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZDeflaterOutputStream__ctor_m8D180C0B908AFAAD695D8A0FB99C720CF9E3B164 (ZDeflaterOutputStream_tC29A2BAF5FCC76E4CDAB81E0BFA933D413B00A83 * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___outp0, int32_t ___level1, const RuntimeMethod* method) { { // public ZDeflaterOutputStream(Stream outp, int level) : this(outp, level, false) { Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_0 = ___outp0; int32_t L_1 = ___level1; ZDeflaterOutputStream__ctor_m7B11B8F6DD1B3BB2FECE7A7E352AA7FACAB07432(__this, L_0, L_1, (bool)0, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZDeflaterOutputStream::.ctor(System.IO.Stream,System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZDeflaterOutputStream__ctor_m7B11B8F6DD1B3BB2FECE7A7E352AA7FACAB07432 (ZDeflaterOutputStream_tC29A2BAF5FCC76E4CDAB81E0BFA933D413B00A83 * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___outp0, int32_t ___level1, bool ___nowrap2, 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*)&Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // protected ZStream z=new ZStream(); ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_0 = (ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C *)il2cpp_codegen_object_new(ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C_il2cpp_TypeInfo_var); ZStream__ctor_m789EC02A4065E8AA186254DD18DEB20CB878FC40(L_0, /*hidden argument*/NULL); __this->set_z_5(L_0); // protected byte[] buf=new byte[BUFSIZE]; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)((int32_t)4192)); __this->set_buf_8(L_1); // private byte[] buf1=new byte[1]; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)1); __this->set_buf1_9(L_2); // public ZDeflaterOutputStream(Stream outp, int level, bool nowrap) { IL2CPP_RUNTIME_CLASS_INIT(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_il2cpp_TypeInfo_var); Stream__ctor_m5EB0B4BCC014E7D1F18FE0E72B2D6D0C5C13D5C4(__this, /*hidden argument*/NULL); // this.outp=outp; Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_3 = ___outp0; __this->set_outp_10(L_3); // z.deflateInit(level, nowrap); ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_4 = __this->get_z_5(); int32_t L_5 = ___level1; bool L_6 = ___nowrap2; NullCheck(L_4); int32_t L_7; L_7 = ZStream_deflateInit_mA37B4F5F7AB971B7D5DD3EE980EE109A2B17A82D(L_4, L_5, L_6, /*hidden argument*/NULL); // } return; } } // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZDeflaterOutputStream::get_CanRead() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ZDeflaterOutputStream_get_CanRead_mD9F4527C151CC47D2799D604905C5E7B5E92ADB3 (ZDeflaterOutputStream_tC29A2BAF5FCC76E4CDAB81E0BFA933D413B00A83 * __this, const RuntimeMethod* method) { { // return false; return (bool)0; } } // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZDeflaterOutputStream::get_CanSeek() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ZDeflaterOutputStream_get_CanSeek_m2F455BB166005DA5C2570DBF264657190B958630 (ZDeflaterOutputStream_tC29A2BAF5FCC76E4CDAB81E0BFA933D413B00A83 * __this, const RuntimeMethod* method) { { // return false; return (bool)0; } } // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZDeflaterOutputStream::get_CanWrite() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ZDeflaterOutputStream_get_CanWrite_m53BB9538912AA75F1010E5D195DF0756630A86A2 (ZDeflaterOutputStream_tC29A2BAF5FCC76E4CDAB81E0BFA933D413B00A83 * __this, const RuntimeMethod* method) { { // return true; return (bool)1; } } // System.Int64 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZDeflaterOutputStream::get_Length() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t ZDeflaterOutputStream_get_Length_m92B4A046EF46A088893BD59C7DD0B27E9FE6804D (ZDeflaterOutputStream_tC29A2BAF5FCC76E4CDAB81E0BFA933D413B00A83 * __this, const RuntimeMethod* method) { { // return 0; return ((int64_t)((int64_t)0)); } } // System.Int64 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZDeflaterOutputStream::get_Position() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t ZDeflaterOutputStream_get_Position_mCE8B89F2141AC7A760694F15E1BD6ABA878B430D (ZDeflaterOutputStream_tC29A2BAF5FCC76E4CDAB81E0BFA933D413B00A83 * __this, const RuntimeMethod* method) { { // return 0; return ((int64_t)((int64_t)0)); } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZDeflaterOutputStream::set_Position(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZDeflaterOutputStream_set_Position_m6192409C6858A41DFD22B76E29EDBB77456F7363 (ZDeflaterOutputStream_tC29A2BAF5FCC76E4CDAB81E0BFA933D413B00A83 * __this, int64_t ___value0, const RuntimeMethod* method) { { // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZDeflaterOutputStream::Write(System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZDeflaterOutputStream_Write_m28054D7C2E4EA2EAAD138DEACA154DB61FA680EA (ZDeflaterOutputStream_tC29A2BAF5FCC76E4CDAB81E0BFA933D413B00A83 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___b0, int32_t ___off1, int32_t ___len2, const RuntimeMethod* method) { { // if(len==0) int32_t L_0 = ___len2; if (L_0) { goto IL_0004; } } { // return; return; } IL_0004: { // z.next_in=b; ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_1 = __this->get_z_5(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = ___b0; NullCheck(L_1); L_1->set_next_in_17(L_2); // z.next_in_index=off; ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_3 = __this->get_z_5(); int32_t L_4 = ___off1; NullCheck(L_3); L_3->set_next_in_index_18(L_4); // z.avail_in=len; ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_5 = __this->get_z_5(); int32_t L_6 = ___len2; NullCheck(L_5); L_5->set_avail_in_19(L_6); } IL_0028: { // z.next_out=buf; ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_7 = __this->get_z_5(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_8 = __this->get_buf_8(); NullCheck(L_7); L_7->set_next_out_21(L_8); // z.next_out_index=0; ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_9 = __this->get_z_5(); NullCheck(L_9); L_9->set_next_out_index_22(0); // z.avail_out=BUFSIZE; ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_10 = __this->get_z_5(); NullCheck(L_10); L_10->set_avail_out_23(((int32_t)4192)); // err=z.deflate(flushLevel); ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_11 = __this->get_z_5(); int32_t L_12 = __this->get_flushLevel_6(); NullCheck(L_11); int32_t L_13; L_13 = ZStream_deflate_m6A8BBBC2E2974E7E5FD360EC48BCFB40282E14FB(L_11, L_12, /*hidden argument*/NULL); // if(err!=JZlib.Z_OK) if (!L_13) { goto IL_0083; } } { // throw new IOException("deflating: "+z.msg); ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_14 = __this->get_z_5(); NullCheck(L_14); String_t* L_15 = L_14->get_msg_25(); String_t* L_16; L_16 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE8843DC4A33316C1A7FC9E28CF5D334C24196060)), L_15, /*hidden argument*/NULL); IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA * L_17 = (IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA_il2cpp_TypeInfo_var))); IOException__ctor_m208E01C02FF2C1D6C5AA661A5816C744804E1690(L_17, L_16, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ZDeflaterOutputStream_Write_m28054D7C2E4EA2EAAD138DEACA154DB61FA680EA_RuntimeMethod_var))); } IL_0083: { // if (z.avail_out < BUFSIZE) ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_18 = __this->get_z_5(); NullCheck(L_18); int32_t L_19 = L_18->get_avail_out_23(); if ((((int32_t)L_19) >= ((int32_t)((int32_t)4192)))) { goto IL_00b8; } } { // outp.Write(buf, 0, BUFSIZE-z.avail_out); Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_20 = __this->get_outp_10(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_21 = __this->get_buf_8(); ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_22 = __this->get_z_5(); NullCheck(L_22); int32_t L_23 = L_22->get_avail_out_23(); NullCheck(L_20); VirtualActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(32 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_20, L_21, 0, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)4192), (int32_t)L_23))); } IL_00b8: { // while(z.avail_in>0 || z.avail_out==0); ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_24 = __this->get_z_5(); NullCheck(L_24); int32_t L_25 = L_24->get_avail_in_19(); if ((((int32_t)L_25) > ((int32_t)0))) { goto IL_0028; } } { ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_26 = __this->get_z_5(); NullCheck(L_26); int32_t L_27 = L_26->get_avail_out_23(); if (!L_27) { goto IL_0028; } } { // } return; } } // System.Int64 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZDeflaterOutputStream::Seek(System.Int64,System.IO.SeekOrigin) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t ZDeflaterOutputStream_Seek_mF7CCB3CC5493BB8A94C2848B2E72C9307D9112C0 (ZDeflaterOutputStream_tC29A2BAF5FCC76E4CDAB81E0BFA933D413B00A83 * __this, int64_t ___offset0, int32_t ___origin1, const RuntimeMethod* method) { { // return 0; return ((int64_t)((int64_t)0)); } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZDeflaterOutputStream::SetLength(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZDeflaterOutputStream_SetLength_mB945F17CF177428EBD0EECDEBEE77C95FABBC3EB (ZDeflaterOutputStream_tC29A2BAF5FCC76E4CDAB81E0BFA933D413B00A83 * __this, int64_t ___value0, const RuntimeMethod* method) { { // } return; } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZDeflaterOutputStream::Read(System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ZDeflaterOutputStream_Read_mF340F9FF81632D237C1903001FB5D366E836D2AE (ZDeflaterOutputStream_tC29A2BAF5FCC76E4CDAB81E0BFA933D413B00A83 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___buffer0, int32_t ___offset1, int32_t ___count2, const RuntimeMethod* method) { { // return 0; return 0; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZDeflaterOutputStream::Flush() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZDeflaterOutputStream_Flush_m2FD5927F51B56535F5EF09E47E0B88362BD5C284 (ZDeflaterOutputStream_tC29A2BAF5FCC76E4CDAB81E0BFA933D413B00A83 * __this, const RuntimeMethod* method) { { // outp.Flush(); Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_0 = __this->get_outp_10(); NullCheck(L_0); VirtualActionInvoker0::Invoke(20 /* System.Void System.IO.Stream::Flush() */, L_0); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZDeflaterOutputStream::WriteByte(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZDeflaterOutputStream_WriteByte_m01103353AF36AFF532E466C630BB8B6EA3D8CD3B (ZDeflaterOutputStream_tC29A2BAF5FCC76E4CDAB81E0BFA933D413B00A83 * __this, uint8_t ___b0, const RuntimeMethod* method) { { // buf1[0]=(byte)b; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = __this->get_buf1_9(); uint8_t L_1 = ___b0; NullCheck(L_0); (L_0)->SetAt(static_cast(0), (uint8_t)L_1); // Write(buf1, 0, 1); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = __this->get_buf1_9(); VirtualActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(32 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, __this, L_2, 0, 1); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZDeflaterOutputStream::Finish() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZDeflaterOutputStream_Finish_mED3E8EAF8799F956AE5601F42D3ECF7512AF7C46 (ZDeflaterOutputStream_tC29A2BAF5FCC76E4CDAB81E0BFA933D413B00A83 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; IL_0000: { // z.next_out=buf; ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_0 = __this->get_z_5(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = __this->get_buf_8(); NullCheck(L_0); L_0->set_next_out_21(L_1); // z.next_out_index=0; ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_2 = __this->get_z_5(); NullCheck(L_2); L_2->set_next_out_index_22(0); // z.avail_out=BUFSIZE; ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_3 = __this->get_z_5(); NullCheck(L_3); L_3->set_avail_out_23(((int32_t)4192)); // err=z.deflate(JZlib.Z_FINISH); ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_4 = __this->get_z_5(); NullCheck(L_4); int32_t L_5; L_5 = ZStream_deflate_m6A8BBBC2E2974E7E5FD360EC48BCFB40282E14FB(L_4, 4, /*hidden argument*/NULL); V_0 = L_5; // if(err!=JZlib.Z_STREAM_END && err != JZlib.Z_OK) int32_t L_6 = V_0; if ((((int32_t)L_6) == ((int32_t)1))) { goto IL_005c; } } { int32_t L_7 = V_0; if (!L_7) { goto IL_005c; } } { // throw new IOException("deflating: "+z.msg); ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_8 = __this->get_z_5(); NullCheck(L_8); String_t* L_9 = L_8->get_msg_25(); String_t* L_10; L_10 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE8843DC4A33316C1A7FC9E28CF5D334C24196060)), L_9, /*hidden argument*/NULL); IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA * L_11 = (IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA_il2cpp_TypeInfo_var))); IOException__ctor_m208E01C02FF2C1D6C5AA661A5816C744804E1690(L_11, L_10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ZDeflaterOutputStream_Finish_mED3E8EAF8799F956AE5601F42D3ECF7512AF7C46_RuntimeMethod_var))); } IL_005c: { // if(BUFSIZE-z.avail_out>0){ ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_12 = __this->get_z_5(); NullCheck(L_12); int32_t L_13 = L_12->get_avail_out_23(); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)4192), (int32_t)L_13))) <= ((int32_t)0))) { goto IL_0093; } } { // outp.Write(buf, 0, BUFSIZE-z.avail_out); Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_14 = __this->get_outp_10(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_15 = __this->get_buf_8(); ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_16 = __this->get_z_5(); NullCheck(L_16); int32_t L_17 = L_16->get_avail_out_23(); NullCheck(L_14); VirtualActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(32 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_14, L_15, 0, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)4192), (int32_t)L_17))); } IL_0093: { // while(z.avail_in>0 || z.avail_out==0); ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_18 = __this->get_z_5(); NullCheck(L_18); int32_t L_19 = L_18->get_avail_in_19(); if ((((int32_t)L_19) > ((int32_t)0))) { goto IL_0000; } } { ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_20 = __this->get_z_5(); NullCheck(L_20); int32_t L_21 = L_20->get_avail_out_23(); if (!L_21) { goto IL_0000; } } { // Flush(); VirtualActionInvoker0::Invoke(20 /* System.Void System.IO.Stream::Flush() */, __this); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZDeflaterOutputStream::End() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZDeflaterOutputStream_End_m577B2D33ED81ADB727C42FBED99B992BCE365AE1 (ZDeflaterOutputStream_tC29A2BAF5FCC76E4CDAB81E0BFA933D413B00A83 * __this, const RuntimeMethod* method) { { // if(z==null) ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_0 = __this->get_z_5(); if (L_0) { goto IL_0009; } } { // return; return; } IL_0009: { // z.deflateEnd(); ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_1 = __this->get_z_5(); NullCheck(L_1); int32_t L_2; L_2 = ZStream_deflateEnd_mAEA3E0B55B061F47645BE253556DCCA5E0E921A2(L_1, /*hidden argument*/NULL); // z.free(); ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_3 = __this->get_z_5(); NullCheck(L_3); ZStream_free_m19D754EEAB35C33A21FF80EFB42F9BB39CB520F7(L_3, /*hidden argument*/NULL); // z=null; __this->set_z_5((ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C *)NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZDeflaterOutputStream::Close() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZDeflaterOutputStream_Close_m602B4039C14B4674D313F978CE34E83B2A539082 (ZDeflaterOutputStream_tC29A2BAF5FCC76E4CDAB81E0BFA933D413B00A83 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; IL_0000: try {// begin try (depth: 1) try {// begin try (depth: 2) // try{Finish();} ZDeflaterOutputStream_Finish_mED3E8EAF8799F956AE5601F42D3ECF7512AF7C46(__this, /*hidden argument*/NULL); // try{Finish();} IL2CPP_LEAVE(0x24, FINALLY_000b); }// end try (depth: 2) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0008; } throw e; } CATCH_0008: {// begin catch(System.IO.IOException) // catch (IOException) {} // catch (IOException) {} IL2CPP_POP_ACTIVE_EXCEPTION(); IL2CPP_LEAVE(0x24, FINALLY_000b); }// end catch (depth: 2) }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_000b; } FINALLY_000b: {// begin finally (depth: 1) // End(); ZDeflaterOutputStream_End_m577B2D33ED81ADB727C42FBED99B992BCE365AE1(__this, /*hidden argument*/NULL); // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.Dispose(outp); Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_0 = __this->get_outp_10(); IL2CPP_RUNTIME_CLASS_INIT(Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var); Platform_Dispose_m852AB0A263A990096BCE2A4230CB5723F873C1A2(L_0, /*hidden argument*/NULL); // outp=null; __this->set_outp_10((Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB *)NULL); // } IL2CPP_END_FINALLY(11) }// end finally (depth: 1) IL2CPP_CLEANUP(11) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x24, IL_0024) } IL_0024: { // base.Close(); Stream_Close_mC34AF5832AD2E47C5E8F9D44E969C45F6F0A9A13(__this, /*hidden argument*/NULL); // } return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInflaterInputStream::.ctor(System.IO.Stream) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZInflaterInputStream__ctor_m429F079B1B10FCA7B170D8ACB934C10FA64E31FB (ZInflaterInputStream_t187D375253406A691AA32C6281FD0979F5C26224 * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___inp0, const RuntimeMethod* method) { { // public ZInflaterInputStream(Stream inp) : this(inp, false) { Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_0 = ___inp0; ZInflaterInputStream__ctor_mEF83FAC93BAD45EAF1479E45036C7D630823E882(__this, L_0, (bool)0, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInflaterInputStream::.ctor(System.IO.Stream,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZInflaterInputStream__ctor_mEF83FAC93BAD45EAF1479E45036C7D630823E882 (ZInflaterInputStream_t187D375253406A691AA32C6281FD0979F5C26224 * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___inp0, bool ___nowrap1, 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*)&Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // protected ZStream z=new ZStream(); ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_0 = (ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C *)il2cpp_codegen_object_new(ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C_il2cpp_TypeInfo_var); ZStream__ctor_m789EC02A4065E8AA186254DD18DEB20CB878FC40(L_0, /*hidden argument*/NULL); __this->set_z_5(L_0); // protected byte[] buf=new byte[BUFSIZE]; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)((int32_t)4192)); __this->set_buf_8(L_1); // private byte[] buf1=new byte[1]; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)1); __this->set_buf1_9(L_2); // public ZInflaterInputStream(Stream inp, bool nowrap) { IL2CPP_RUNTIME_CLASS_INIT(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_il2cpp_TypeInfo_var); Stream__ctor_m5EB0B4BCC014E7D1F18FE0E72B2D6D0C5C13D5C4(__this, /*hidden argument*/NULL); // this.inp=inp; Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_3 = ___inp0; __this->set_inp_10(L_3); // z.inflateInit(nowrap); ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_4 = __this->get_z_5(); bool L_5 = ___nowrap1; NullCheck(L_4); int32_t L_6; L_6 = ZStream_inflateInit_m3ABA5FDA26B3A77684E43CB2702248EF06C4279C(L_4, L_5, /*hidden argument*/NULL); // z.next_in=buf; ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_7 = __this->get_z_5(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_8 = __this->get_buf_8(); NullCheck(L_7); L_7->set_next_in_17(L_8); // z.next_in_index=0; ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_9 = __this->get_z_5(); NullCheck(L_9); L_9->set_next_in_index_18(0); // z.avail_in=0; ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_10 = __this->get_z_5(); NullCheck(L_10); L_10->set_avail_in_19(0); // } return; } } // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInflaterInputStream::get_CanRead() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ZInflaterInputStream_get_CanRead_m5530E31E7F2E205BECDDA753628ABA4C951398EE (ZInflaterInputStream_t187D375253406A691AA32C6281FD0979F5C26224 * __this, const RuntimeMethod* method) { { // return true; return (bool)1; } } // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInflaterInputStream::get_CanSeek() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ZInflaterInputStream_get_CanSeek_m4180F9C631460BACB0F3DAC8634E645E6EC394E4 (ZInflaterInputStream_t187D375253406A691AA32C6281FD0979F5C26224 * __this, const RuntimeMethod* method) { { // return false; return (bool)0; } } // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInflaterInputStream::get_CanWrite() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ZInflaterInputStream_get_CanWrite_mDD19C910567EB85F751993AC891DBAECA6D3E9AD (ZInflaterInputStream_t187D375253406A691AA32C6281FD0979F5C26224 * __this, const RuntimeMethod* method) { { // return false; return (bool)0; } } // System.Int64 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInflaterInputStream::get_Length() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t ZInflaterInputStream_get_Length_mEA63DAC21243C55112C4AD0685A9661102DDF1C0 (ZInflaterInputStream_t187D375253406A691AA32C6281FD0979F5C26224 * __this, const RuntimeMethod* method) { { // return 0; return ((int64_t)((int64_t)0)); } } // System.Int64 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInflaterInputStream::get_Position() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t ZInflaterInputStream_get_Position_m2D126E7AB18462C5D47E107B53CF62FFA6807303 (ZInflaterInputStream_t187D375253406A691AA32C6281FD0979F5C26224 * __this, const RuntimeMethod* method) { { // return 0; return ((int64_t)((int64_t)0)); } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInflaterInputStream::set_Position(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZInflaterInputStream_set_Position_m6E37C2FE208106336637881916C47F976F787611 (ZInflaterInputStream_t187D375253406A691AA32C6281FD0979F5C26224 * __this, int64_t ___value0, const RuntimeMethod* method) { { // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInflaterInputStream::Write(System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZInflaterInputStream_Write_m28D7592227CC4BFD448234A6EFB3DA2736E331CB (ZInflaterInputStream_t187D375253406A691AA32C6281FD0979F5C26224 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___b0, int32_t ___off1, int32_t ___len2, const RuntimeMethod* method) { { // } return; } } // System.Int64 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInflaterInputStream::Seek(System.Int64,System.IO.SeekOrigin) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t ZInflaterInputStream_Seek_m2EF5509C707D18C218B1647D67C4B25446246F94 (ZInflaterInputStream_t187D375253406A691AA32C6281FD0979F5C26224 * __this, int64_t ___offset0, int32_t ___origin1, const RuntimeMethod* method) { { // return 0; return ((int64_t)((int64_t)0)); } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInflaterInputStream::SetLength(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZInflaterInputStream_SetLength_m04637B8EE46354A04D82F16BD208B2E0B646942A (ZInflaterInputStream_t187D375253406A691AA32C6281FD0979F5C26224 * __this, int64_t ___value0, const RuntimeMethod* method) { { // } return; } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInflaterInputStream::Read(System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ZInflaterInputStream_Read_m6C2C145DCFEA7FA4F303715859E988D6C07EBE87 (ZInflaterInputStream_t187D375253406A691AA32C6281FD0979F5C26224 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___b0, int32_t ___off1, int32_t ___len2, const RuntimeMethod* method) { int32_t V_0 = 0; { // if(len==0) int32_t L_0 = ___len2; if (L_0) { goto IL_0005; } } { // return(0); return 0; } IL_0005: { // z.next_out=b; ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_1 = __this->get_z_5(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = ___b0; NullCheck(L_1); L_1->set_next_out_21(L_2); // z.next_out_index=off; ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_3 = __this->get_z_5(); int32_t L_4 = ___off1; NullCheck(L_3); L_3->set_next_out_index_22(L_4); // z.avail_out=len; ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_5 = __this->get_z_5(); int32_t L_6 = ___len2; NullCheck(L_5); L_5->set_avail_out_23(L_6); } IL_0029: { // if((z.avail_in==0)&&(!nomoreinput)) { // if buffer is empty and more input is avaiable, refill it ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_7 = __this->get_z_5(); NullCheck(L_7); int32_t L_8 = L_7->get_avail_in_19(); if (L_8) { goto IL_008d; } } { bool L_9 = __this->get_nomoreinput_11(); if (L_9) { goto IL_008d; } } { // z.next_in_index=0; ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_10 = __this->get_z_5(); NullCheck(L_10); L_10->set_next_in_index_18(0); // z.avail_in=inp.Read(buf, 0, BUFSIZE);//(BUFSIZEget_z_5(); Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_12 = __this->get_inp_10(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_13 = __this->get_buf_8(); NullCheck(L_12); int32_t L_14; L_14 = VirtualFuncInvoker3< int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(30 /* System.Int32 System.IO.Stream::Read(System.Byte[],System.Int32,System.Int32) */, L_12, L_13, 0, ((int32_t)4192)); NullCheck(L_11); L_11->set_avail_in_19(L_14); // if(z.avail_in<=0) { ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_15 = __this->get_z_5(); NullCheck(L_15); int32_t L_16 = L_15->get_avail_in_19(); if ((((int32_t)L_16) > ((int32_t)0))) { goto IL_008d; } } { // z.avail_in=0; ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_17 = __this->get_z_5(); NullCheck(L_17); L_17->set_avail_in_19(0); // nomoreinput=true; __this->set_nomoreinput_11((bool)1); } IL_008d: { // err=z.inflate(flushLevel); ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_18 = __this->get_z_5(); int32_t L_19 = __this->get_flushLevel_6(); NullCheck(L_18); int32_t L_20; L_20 = ZStream_inflate_mC0AE6609A7E141336EAB1F130549944AD25B9B24(L_18, L_19, /*hidden argument*/NULL); V_0 = L_20; // if(nomoreinput&&(err==JZlib.Z_BUF_ERROR)) bool L_21 = __this->get_nomoreinput_11(); if (!L_21) { goto IL_00ae; } } { int32_t L_22 = V_0; if ((!(((uint32_t)L_22) == ((uint32_t)((int32_t)-5))))) { goto IL_00ae; } } { // return(0); return 0; } IL_00ae: { // if(err!=JZlib.Z_OK && err!=JZlib.Z_STREAM_END) int32_t L_23 = V_0; if (!L_23) { goto IL_00d0; } } { int32_t L_24 = V_0; if ((((int32_t)L_24) == ((int32_t)1))) { goto IL_00d0; } } { // throw new IOException("inflating: "+z.msg); ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_25 = __this->get_z_5(); NullCheck(L_25); String_t* L_26 = L_25->get_msg_25(); String_t* L_27; L_27 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral592B57574AD389221A373888A91FE244D8A61AD4)), L_26, /*hidden argument*/NULL); IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA * L_28 = (IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA_il2cpp_TypeInfo_var))); IOException__ctor_m208E01C02FF2C1D6C5AA661A5816C744804E1690(L_28, L_27, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_28, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ZInflaterInputStream_Read_m6C2C145DCFEA7FA4F303715859E988D6C07EBE87_RuntimeMethod_var))); } IL_00d0: { // if((nomoreinput||err==JZlib.Z_STREAM_END)&&(z.avail_out==len)) bool L_29 = __this->get_nomoreinput_11(); if (L_29) { goto IL_00dc; } } { int32_t L_30 = V_0; if ((!(((uint32_t)L_30) == ((uint32_t)1)))) { goto IL_00ec; } } IL_00dc: { ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_31 = __this->get_z_5(); NullCheck(L_31); int32_t L_32 = L_31->get_avail_out_23(); int32_t L_33 = ___len2; if ((!(((uint32_t)L_32) == ((uint32_t)L_33)))) { goto IL_00ec; } } { // return(0); return 0; } IL_00ec: { // while(z.avail_out==len&&err==JZlib.Z_OK); ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_34 = __this->get_z_5(); NullCheck(L_34); int32_t L_35 = L_34->get_avail_out_23(); int32_t L_36 = ___len2; if ((!(((uint32_t)L_35) == ((uint32_t)L_36)))) { goto IL_0100; } } { int32_t L_37 = V_0; if (!L_37) { goto IL_0029; } } IL_0100: { // return(len-z.avail_out); int32_t L_38 = ___len2; ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_39 = __this->get_z_5(); NullCheck(L_39); int32_t L_40 = L_39->get_avail_out_23(); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_38, (int32_t)L_40)); } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInflaterInputStream::Flush() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZInflaterInputStream_Flush_m025BE4F2ED469A8ED8B8AC98323C4D4209FAE0ED (ZInflaterInputStream_t187D375253406A691AA32C6281FD0979F5C26224 * __this, const RuntimeMethod* method) { { // inp.Flush(); Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_0 = __this->get_inp_10(); NullCheck(L_0); VirtualActionInvoker0::Invoke(20 /* System.Void System.IO.Stream::Flush() */, L_0); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInflaterInputStream::WriteByte(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZInflaterInputStream_WriteByte_mA1A99C90D49611D9F0C9B41B73C0E16F5F8774C3 (ZInflaterInputStream_t187D375253406A691AA32C6281FD0979F5C26224 * __this, uint8_t ___b0, const RuntimeMethod* method) { { // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInflaterInputStream::Close() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZInflaterInputStream_Close_m562EE49B750AC7B076C0306D83FECE4B3F07EB34 (ZInflaterInputStream_t187D375253406A691AA32C6281FD0979F5C26224 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.Dispose(inp); Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_0 = __this->get_inp_10(); IL2CPP_RUNTIME_CLASS_INIT(Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var); Platform_Dispose_m852AB0A263A990096BCE2A4230CB5723F873C1A2(L_0, /*hidden argument*/NULL); // base.Close(); Stream_Close_mC34AF5832AD2E47C5E8F9D44E969C45F6F0A9A13(__this, /*hidden argument*/NULL); // } return; } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInflaterInputStream::ReadByte() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ZInflaterInputStream_ReadByte_m4347F895EF45D76D995EC9FD7793E86DA30C07A5 (ZInflaterInputStream_t187D375253406A691AA32C6281FD0979F5C26224 * __this, const RuntimeMethod* method) { { // if(Read(buf1, 0, 1)<=0) ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = __this->get_buf1_9(); int32_t L_1; L_1 = VirtualFuncInvoker3< int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(30 /* System.Int32 System.IO.Stream::Read(System.Byte[],System.Int32,System.Int32) */, __this, L_0, 0, 1); if ((((int32_t)L_1) > ((int32_t)0))) { goto IL_0013; } } { // return -1; return (-1); } IL_0013: { // return(buf1[0]&0xFF); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = __this->get_buf1_9(); NullCheck(L_2); int32_t L_3 = 0; uint8_t L_4 = (L_2)->GetAt(static_cast(L_3)); return ((int32_t)((int32_t)L_4&(int32_t)((int32_t)255))); } } #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 // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInputStream::GetDefaultZStream(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * ZInputStream_GetDefaultZStream_mF691710B1B7561E91BB4314575D09C77899C61E4 (bool ___nowrap0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // ZStream z = new ZStream(); ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_0 = (ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C *)il2cpp_codegen_object_new(ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C_il2cpp_TypeInfo_var); ZStream__ctor_m789EC02A4065E8AA186254DD18DEB20CB878FC40(L_0, /*hidden argument*/NULL); // z.inflateInit(nowrap); ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_1 = L_0; bool L_2 = ___nowrap0; NullCheck(L_1); int32_t L_3; L_3 = ZStream_inflateInit_m3ABA5FDA26B3A77684E43CB2702248EF06C4279C(L_1, L_2, /*hidden argument*/NULL); // return z; return L_1; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInputStream::.ctor(System.IO.Stream) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZInputStream__ctor_m583B0F20B722E628BBD668587182D55B6A6E62E2 (ZInputStream_t2D5C611F3CB82738E6B107F6DD9F5BF0486E5C4D * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___input0, const RuntimeMethod* method) { { // : this(input, false) Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_0 = ___input0; ZInputStream__ctor_m27F5DEF2B14FAA754C989667659213B30752D155(__this, L_0, (bool)0, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInputStream::.ctor(System.IO.Stream,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZInputStream__ctor_m27F5DEF2B14FAA754C989667659213B30752D155 (ZInputStream_t2D5C611F3CB82738E6B107F6DD9F5BF0486E5C4D * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___input0, bool ___nowrap1, const RuntimeMethod* method) { { // : this(input, GetDefaultZStream(nowrap)) Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_0 = ___input0; bool L_1 = ___nowrap1; ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_2; L_2 = ZInputStream_GetDefaultZStream_mF691710B1B7561E91BB4314575D09C77899C61E4(L_1, /*hidden argument*/NULL); ZInputStream__ctor_m52975274EFC6BDA8F8C94EECD9870DD1BD10FB27(__this, L_0, L_2, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInputStream::.ctor(System.IO.Stream,BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZInputStream__ctor_m52975274EFC6BDA8F8C94EECD9870DD1BD10FB27 (ZInputStream_t2D5C611F3CB82738E6B107F6DD9F5BF0486E5C4D * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___input0, ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * ___z1, 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*)&Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // protected byte[] buf = new byte[BufferSize]; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)((int32_t)512)); __this->set_buf_8(L_0); // protected byte[] buf1 = new byte[1]; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)1); __this->set_buf1_9(L_1); // : base() IL2CPP_RUNTIME_CLASS_INIT(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_il2cpp_TypeInfo_var); Stream__ctor_m5EB0B4BCC014E7D1F18FE0E72B2D6D0C5C13D5C4(__this, /*hidden argument*/NULL); // if (z == null) ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_2 = ___z1; if (L_2) { goto IL_002c; } } { // z = new ZStream(); ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_3 = (ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C *)il2cpp_codegen_object_new(ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C_il2cpp_TypeInfo_var); ZStream__ctor_m789EC02A4065E8AA186254DD18DEB20CB878FC40(L_3, /*hidden argument*/NULL); ___z1 = L_3; } IL_002c: { // if (z.istate == null && z.dstate == null) ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_4 = ___z1; NullCheck(L_4); Inflate_tA57633237054BCAD6EDC8DBC06F34D50C1680638 * L_5 = L_4->get_istate_27(); if (L_5) { goto IL_0043; } } { ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_6 = ___z1; NullCheck(L_6); Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_7 = L_6->get_dstate_26(); if (L_7) { goto IL_0043; } } { // z.inflateInit(); ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_8 = ___z1; NullCheck(L_8); int32_t L_9; L_9 = ZStream_inflateInit_m9EC1B8A6E4C5DD3F1AB27A3334641E5368E53A4A(L_8, /*hidden argument*/NULL); } IL_0043: { // this.input = input; Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_10 = ___input0; __this->set_input_11(L_10); // this.compress = (z.istate == null); ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_11 = ___z1; NullCheck(L_11); Inflate_tA57633237054BCAD6EDC8DBC06F34D50C1680638 * L_12 = L_11->get_istate_27(); __this->set_compress_10((bool)((((RuntimeObject*)(Inflate_tA57633237054BCAD6EDC8DBC06F34D50C1680638 *)L_12) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0)); // this.z = z; ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_13 = ___z1; __this->set_z_6(L_13); // this.z.next_in = buf; ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_14 = __this->get_z_6(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_15 = __this->get_buf_8(); NullCheck(L_14); L_14->set_next_in_17(L_15); // this.z.next_in_index = 0; ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_16 = __this->get_z_6(); NullCheck(L_16); L_16->set_next_in_index_18(0); // this.z.avail_in = 0; ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_17 = __this->get_z_6(); NullCheck(L_17); L_17->set_avail_in_19(0); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInputStream::.ctor(System.IO.Stream,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZInputStream__ctor_m1F10027383A64FF4F44E86527ED2F6D100BA95DA (ZInputStream_t2D5C611F3CB82738E6B107F6DD9F5BF0486E5C4D * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___input0, int32_t ___level1, const RuntimeMethod* method) { { // : this(input, level, false) Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_0 = ___input0; int32_t L_1 = ___level1; ZInputStream__ctor_m518B8F72878F054AFF8600D294B9E2667D291B4C(__this, L_0, L_1, (bool)0, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInputStream::.ctor(System.IO.Stream,System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZInputStream__ctor_m518B8F72878F054AFF8600D294B9E2667D291B4C (ZInputStream_t2D5C611F3CB82738E6B107F6DD9F5BF0486E5C4D * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___input0, int32_t ___level1, bool ___nowrap2, 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*)&Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // protected byte[] buf = new byte[BufferSize]; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)((int32_t)512)); __this->set_buf_8(L_0); // protected byte[] buf1 = new byte[1]; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)1); __this->set_buf1_9(L_1); // public ZInputStream(Stream input, int level, bool nowrap) IL2CPP_RUNTIME_CLASS_INIT(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_il2cpp_TypeInfo_var); Stream__ctor_m5EB0B4BCC014E7D1F18FE0E72B2D6D0C5C13D5C4(__this, /*hidden argument*/NULL); // this.input = input; Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_2 = ___input0; __this->set_input_11(L_2); // this.compress = true; __this->set_compress_10((bool)1); // this.z = new ZStream(); ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_3 = (ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C *)il2cpp_codegen_object_new(ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C_il2cpp_TypeInfo_var); ZStream__ctor_m789EC02A4065E8AA186254DD18DEB20CB878FC40(L_3, /*hidden argument*/NULL); __this->set_z_6(L_3); // this.z.deflateInit(level, nowrap); ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_4 = __this->get_z_6(); int32_t L_5 = ___level1; bool L_6 = ___nowrap2; NullCheck(L_4); int32_t L_7; L_7 = ZStream_deflateInit_mA37B4F5F7AB971B7D5DD3EE980EE109A2B17A82D(L_4, L_5, L_6, /*hidden argument*/NULL); // this.z.next_in = buf; ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_8 = __this->get_z_6(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_9 = __this->get_buf_8(); NullCheck(L_8); L_8->set_next_in_17(L_9); // this.z.next_in_index = 0; ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_10 = __this->get_z_6(); NullCheck(L_10); L_10->set_next_in_index_18(0); // this.z.avail_in = 0; ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_11 = __this->get_z_6(); NullCheck(L_11); L_11->set_avail_in_19(0); // } return; } } // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInputStream::get_CanRead() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ZInputStream_get_CanRead_m99A8F9C47143888644C0D1CFA687E578102B0B18 (ZInputStream_t2D5C611F3CB82738E6B107F6DD9F5BF0486E5C4D * __this, const RuntimeMethod* method) { { // public sealed override bool CanRead { get { return !closed; } } bool L_0 = __this->get_closed_12(); return (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0); } } // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInputStream::get_CanSeek() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ZInputStream_get_CanSeek_m2BEAAB6575613EA957B84DFD498703929228F608 (ZInputStream_t2D5C611F3CB82738E6B107F6DD9F5BF0486E5C4D * __this, const RuntimeMethod* method) { { // public sealed override bool CanSeek { get { return false; } } return (bool)0; } } // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInputStream::get_CanWrite() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ZInputStream_get_CanWrite_m0F0D2885353EC972C8571AE0015CA8B0347F21E6 (ZInputStream_t2D5C611F3CB82738E6B107F6DD9F5BF0486E5C4D * __this, const RuntimeMethod* method) { { // public sealed override bool CanWrite { get { return false; } } return (bool)0; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInputStream::Close() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZInputStream_Close_m0D3519803B45FFBF0DF47942FAEA01C9C9B966B8 (ZInputStream_t2D5C611F3CB82738E6B107F6DD9F5BF0486E5C4D * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (closed) bool L_0 = __this->get_closed_12(); if (!L_0) { goto IL_0009; } } { // return; return; } IL_0009: { // closed = true; __this->set_closed_12((bool)1); // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.Dispose(input); Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_1 = __this->get_input_11(); IL2CPP_RUNTIME_CLASS_INIT(Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var); Platform_Dispose_m852AB0A263A990096BCE2A4230CB5723F873C1A2(L_1, /*hidden argument*/NULL); // base.Close(); Stream_Close_mC34AF5832AD2E47C5E8F9D44E969C45F6F0A9A13(__this, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInputStream::Flush() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZInputStream_Flush_m9C434276D178B6722D76C2C12549DEB89196A429 (ZInputStream_t2D5C611F3CB82738E6B107F6DD9F5BF0486E5C4D * __this, const RuntimeMethod* method) { { // public sealed override void Flush() {} return; } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInputStream::get_FlushMode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ZInputStream_get_FlushMode_m390DDFC37508F6BF8EDC67CCBB4567860D7E2596 (ZInputStream_t2D5C611F3CB82738E6B107F6DD9F5BF0486E5C4D * __this, const RuntimeMethod* method) { { // get { return flushLevel; } int32_t L_0 = __this->get_flushLevel_7(); return L_0; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInputStream::set_FlushMode(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZInputStream_set_FlushMode_m2FD2CE8993D9E6D4AF9BBB832751E0A2ECE21484 (ZInputStream_t2D5C611F3CB82738E6B107F6DD9F5BF0486E5C4D * __this, int32_t ___value0, const RuntimeMethod* method) { { // set { this.flushLevel = value; } int32_t L_0 = ___value0; __this->set_flushLevel_7(L_0); // set { this.flushLevel = value; } return; } } // System.Int64 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInputStream::get_Length() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t ZInputStream_get_Length_m0E162B2C5AF2C779459F52F5C6D152EC89B6ED4C (ZInputStream_t2D5C611F3CB82738E6B107F6DD9F5BF0486E5C4D * __this, const RuntimeMethod* method) { { // public sealed override long Length { get { throw new NotSupportedException(); } } NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var))); NotSupportedException__ctor_m3EA81A5B209A87C3ADA47443F2AFFF735E5256EE(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ZInputStream_get_Length_m0E162B2C5AF2C779459F52F5C6D152EC89B6ED4C_RuntimeMethod_var))); } } // System.Int64 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInputStream::get_Position() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t ZInputStream_get_Position_mCC5D9D8AB7D3440B5C9AED756B85D04AAD177A82 (ZInputStream_t2D5C611F3CB82738E6B107F6DD9F5BF0486E5C4D * __this, const RuntimeMethod* method) { { // get { throw new NotSupportedException(); } NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var))); NotSupportedException__ctor_m3EA81A5B209A87C3ADA47443F2AFFF735E5256EE(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ZInputStream_get_Position_mCC5D9D8AB7D3440B5C9AED756B85D04AAD177A82_RuntimeMethod_var))); } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInputStream::set_Position(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZInputStream_set_Position_mA03BBB0B468CC3FFF45A114A63D0DE7912A351FC (ZInputStream_t2D5C611F3CB82738E6B107F6DD9F5BF0486E5C4D * __this, int64_t ___value0, const RuntimeMethod* method) { { // set { throw new NotSupportedException(); } NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var))); NotSupportedException__ctor_m3EA81A5B209A87C3ADA47443F2AFFF735E5256EE(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ZInputStream_set_Position_mA03BBB0B468CC3FFF45A114A63D0DE7912A351FC_RuntimeMethod_var))); } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInputStream::Read(System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ZInputStream_Read_mC39489FD8E17C1B7C7DEF279B1EFFB6546B8A330 (ZInputStream_t2D5C611F3CB82738E6B107F6DD9F5BF0486E5C4D * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___b0, int32_t ___off1, int32_t ___len2, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t G_B10_0 = 0; String_t* G_B18_0 = NULL; { // if (len==0) int32_t L_0 = ___len2; if (L_0) { goto IL_0005; } } { // return 0; return 0; } IL_0005: { // z.next_out = b; ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_1 = __this->get_z_6(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = ___b0; NullCheck(L_1); L_1->set_next_out_21(L_2); // z.next_out_index = off; ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_3 = __this->get_z_6(); int32_t L_4 = ___off1; NullCheck(L_3); L_3->set_next_out_index_22(L_4); // z.avail_out = len; ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_5 = __this->get_z_6(); int32_t L_6 = ___len2; NullCheck(L_5); L_5->set_avail_out_23(L_6); } IL_0029: { // if (z.avail_in == 0 && !nomoreinput) ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_7 = __this->get_z_6(); NullCheck(L_7); int32_t L_8 = L_7->get_avail_in_19(); if (L_8) { goto IL_0090; } } { bool L_9 = __this->get_nomoreinput_13(); if (L_9) { goto IL_0090; } } { // z.next_in_index = 0; ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_10 = __this->get_z_6(); NullCheck(L_10); L_10->set_next_in_index_18(0); // z.avail_in = input.Read(buf, 0, buf.Length); //(bufsizeget_z_6(); Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_12 = __this->get_input_11(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_13 = __this->get_buf_8(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_14 = __this->get_buf_8(); NullCheck(L_14); NullCheck(L_12); int32_t L_15; L_15 = VirtualFuncInvoker3< int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(30 /* System.Int32 System.IO.Stream::Read(System.Byte[],System.Int32,System.Int32) */, L_12, L_13, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_14)->max_length)))); NullCheck(L_11); L_11->set_avail_in_19(L_15); // if (z.avail_in <= 0) ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_16 = __this->get_z_6(); NullCheck(L_16); int32_t L_17 = L_16->get_avail_in_19(); if ((((int32_t)L_17) > ((int32_t)0))) { goto IL_0090; } } { // z.avail_in = 0; ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_18 = __this->get_z_6(); NullCheck(L_18); L_18->set_avail_in_19(0); // nomoreinput = true; __this->set_nomoreinput_13((bool)1); } IL_0090: { // err = compress // ? z.deflate(flushLevel) // : z.inflate(flushLevel); bool L_19 = __this->get_compress_10(); if (L_19) { goto IL_00ab; } } { ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_20 = __this->get_z_6(); int32_t L_21 = __this->get_flushLevel_7(); NullCheck(L_20); int32_t L_22; L_22 = ZStream_inflate_mC0AE6609A7E141336EAB1F130549944AD25B9B24(L_20, L_21, /*hidden argument*/NULL); G_B10_0 = L_22; goto IL_00bc; } IL_00ab: { ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_23 = __this->get_z_6(); int32_t L_24 = __this->get_flushLevel_7(); NullCheck(L_23); int32_t L_25; L_25 = ZStream_deflate_m6A8BBBC2E2974E7E5FD360EC48BCFB40282E14FB(L_23, L_24, /*hidden argument*/NULL); G_B10_0 = L_25; } IL_00bc: { V_0 = G_B10_0; // if (nomoreinput && err == JZlib.Z_BUF_ERROR) bool L_26 = __this->get_nomoreinput_13(); if (!L_26) { goto IL_00cc; } } { int32_t L_27 = V_0; if ((!(((uint32_t)L_27) == ((uint32_t)((int32_t)-5))))) { goto IL_00cc; } } { // return 0; return 0; } IL_00cc: { // if (err != JZlib.Z_OK && err != JZlib.Z_STREAM_END) int32_t L_28 = V_0; if (!L_28) { goto IL_0102; } } { int32_t L_29 = V_0; if ((((int32_t)L_29) == ((int32_t)1))) { goto IL_0102; } } { // throw new IOException((compress ? "de" : "in") + "flating: " + z.msg); bool L_30 = __this->get_compress_10(); if (L_30) { goto IL_00e2; } } { G_B18_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC1E0482ABDB4530F47C01C2A81FB06ED6E98A110)); goto IL_00e7; } IL_00e2: { G_B18_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDC4A06A0DE599F745DBDD44A6FDE6212859D3A5F)); } IL_00e7: { ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_31 = __this->get_z_6(); NullCheck(L_31); String_t* L_32 = L_31->get_msg_25(); String_t* L_33; L_33 = String_Concat_m89EAB4C6A96B0E5C3F87300D6BE78D386B9EFC44(G_B18_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral81B54C81CE5770A2FB716FE3138FA18CE998793D)), L_32, /*hidden argument*/NULL); IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA * L_34 = (IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA_il2cpp_TypeInfo_var))); IOException__ctor_m208E01C02FF2C1D6C5AA661A5816C744804E1690(L_34, L_33, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_34, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ZInputStream_Read_mC39489FD8E17C1B7C7DEF279B1EFFB6546B8A330_RuntimeMethod_var))); } IL_0102: { // if ((nomoreinput || err == JZlib.Z_STREAM_END) && z.avail_out == len) bool L_35 = __this->get_nomoreinput_13(); if (L_35) { goto IL_010e; } } { int32_t L_36 = V_0; if ((!(((uint32_t)L_36) == ((uint32_t)1)))) { goto IL_011e; } } IL_010e: { ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_37 = __this->get_z_6(); NullCheck(L_37); int32_t L_38 = L_37->get_avail_out_23(); int32_t L_39 = ___len2; if ((!(((uint32_t)L_38) == ((uint32_t)L_39)))) { goto IL_011e; } } { // return 0; return 0; } IL_011e: { // while(z.avail_out == len && err == JZlib.Z_OK); ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_40 = __this->get_z_6(); NullCheck(L_40); int32_t L_41 = L_40->get_avail_out_23(); int32_t L_42 = ___len2; if ((!(((uint32_t)L_41) == ((uint32_t)L_42)))) { goto IL_0132; } } { int32_t L_43 = V_0; if (!L_43) { goto IL_0029; } } IL_0132: { // return len - z.avail_out; int32_t L_44 = ___len2; ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_45 = __this->get_z_6(); NullCheck(L_45); int32_t L_46 = L_45->get_avail_out_23(); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_44, (int32_t)L_46)); } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInputStream::ReadByte() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ZInputStream_ReadByte_m655344C06E3CFDC164978EDDE13A87309260C05E (ZInputStream_t2D5C611F3CB82738E6B107F6DD9F5BF0486E5C4D * __this, const RuntimeMethod* method) { { // if (Read(buf1, 0, 1) <= 0) ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = __this->get_buf1_9(); int32_t L_1; L_1 = VirtualFuncInvoker3< int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(30 /* System.Int32 System.IO.Stream::Read(System.Byte[],System.Int32,System.Int32) */, __this, L_0, 0, 1); if ((((int32_t)L_1) > ((int32_t)0))) { goto IL_0013; } } { // return -1; return (-1); } IL_0013: { // return buf1[0]; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = __this->get_buf1_9(); NullCheck(L_2); int32_t L_3 = 0; uint8_t L_4 = (L_2)->GetAt(static_cast(L_3)); return L_4; } } // System.Int64 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInputStream::Seek(System.Int64,System.IO.SeekOrigin) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t ZInputStream_Seek_mDD9C059AD9B89BFD01FB8FE1BC3C327920153301 (ZInputStream_t2D5C611F3CB82738E6B107F6DD9F5BF0486E5C4D * __this, int64_t ___offset0, int32_t ___origin1, const RuntimeMethod* method) { { // public sealed override long Seek(long offset, SeekOrigin origin) { throw new NotSupportedException(); } NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var))); NotSupportedException__ctor_m3EA81A5B209A87C3ADA47443F2AFFF735E5256EE(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ZInputStream_Seek_mDD9C059AD9B89BFD01FB8FE1BC3C327920153301_RuntimeMethod_var))); } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInputStream::SetLength(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZInputStream_SetLength_mC24153722653280F2B1039F30C452007983245B7 (ZInputStream_t2D5C611F3CB82738E6B107F6DD9F5BF0486E5C4D * __this, int64_t ___value0, const RuntimeMethod* method) { { // public sealed override void SetLength(long value) { throw new NotSupportedException(); } NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var))); NotSupportedException__ctor_m3EA81A5B209A87C3ADA47443F2AFFF735E5256EE(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ZInputStream_SetLength_mC24153722653280F2B1039F30C452007983245B7_RuntimeMethod_var))); } } // System.Int64 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInputStream::get_TotalIn() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t ZInputStream_get_TotalIn_mF7EDF17FC644CF61A32471007E03E6572F709FC6 (ZInputStream_t2D5C611F3CB82738E6B107F6DD9F5BF0486E5C4D * __this, const RuntimeMethod* method) { { // get { return z.total_in; } ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_0 = __this->get_z_6(); NullCheck(L_0); int64_t L_1 = L_0->get_total_in_20(); return L_1; } } // System.Int64 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInputStream::get_TotalOut() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t ZInputStream_get_TotalOut_mE2768083DF8D2D116D06C3C68A73D5F95718D669 (ZInputStream_t2D5C611F3CB82738E6B107F6DD9F5BF0486E5C4D * __this, const RuntimeMethod* method) { { // get { return z.total_out; } ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_0 = __this->get_z_6(); NullCheck(L_0); int64_t L_1 = L_0->get_total_out_24(); return L_1; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZInputStream::Write(System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZInputStream_Write_m019D295B88B1B02549FB5BE74E0D5048F8089CD5 (ZInputStream_t2D5C611F3CB82738E6B107F6DD9F5BF0486E5C4D * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___buffer0, int32_t ___offset1, int32_t ___count2, const RuntimeMethod* method) { { // public sealed override void Write(byte[] buffer, int offset, int count) { throw new NotSupportedException(); } NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var))); NotSupportedException__ctor_m3EA81A5B209A87C3ADA47443F2AFFF735E5256EE(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ZInputStream_Write_m019D295B88B1B02549FB5BE74E0D5048F8089CD5_RuntimeMethod_var))); } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZOutputStream::GetDefaultZStream(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * ZOutputStream_GetDefaultZStream_m455DF026B4DB810AF8EBDFD6EA0FA431D140A63F (bool ___nowrap0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // ZStream z = new ZStream(); ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_0 = (ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C *)il2cpp_codegen_object_new(ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C_il2cpp_TypeInfo_var); ZStream__ctor_m789EC02A4065E8AA186254DD18DEB20CB878FC40(L_0, /*hidden argument*/NULL); // z.inflateInit(nowrap); ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_1 = L_0; bool L_2 = ___nowrap0; NullCheck(L_1); int32_t L_3; L_3 = ZStream_inflateInit_m3ABA5FDA26B3A77684E43CB2702248EF06C4279C(L_1, L_2, /*hidden argument*/NULL); // return z; return L_1; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZOutputStream::.ctor(System.IO.Stream) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZOutputStream__ctor_mDEDCBB6BB17B8592CE210DFE89E8CEDB2AF49030 (ZOutputStream_tC18E76CC9549F21AC543491E55ACCD9A7C76D5D5 * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___output0, const RuntimeMethod* method) { { // : this(output, false) Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_0 = ___output0; ZOutputStream__ctor_mDA8792013D10254F9BF2D3617C43E9D2400DCE6C(__this, L_0, (bool)0, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZOutputStream::.ctor(System.IO.Stream,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZOutputStream__ctor_mDA8792013D10254F9BF2D3617C43E9D2400DCE6C (ZOutputStream_tC18E76CC9549F21AC543491E55ACCD9A7C76D5D5 * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___output0, bool ___nowrap1, const RuntimeMethod* method) { { // : this(output, GetDefaultZStream(nowrap)) Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_0 = ___output0; bool L_1 = ___nowrap1; ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_2; L_2 = ZOutputStream_GetDefaultZStream_m455DF026B4DB810AF8EBDFD6EA0FA431D140A63F(L_1, /*hidden argument*/NULL); ZOutputStream__ctor_m2C7230AFA7590A058E16524F25CABEDFCF219B5C(__this, L_0, L_2, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZOutputStream::.ctor(System.IO.Stream,BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZOutputStream__ctor_m2C7230AFA7590A058E16524F25CABEDFCF219B5C (ZOutputStream_tC18E76CC9549F21AC543491E55ACCD9A7C76D5D5 * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___output0, ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * ___z1, 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*)&Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // protected byte[] buf = new byte[BufferSize]; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)((int32_t)512)); __this->set_buf_8(L_0); // protected byte[] buf1 = new byte[1]; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)1); __this->set_buf1_9(L_1); // : base() IL2CPP_RUNTIME_CLASS_INIT(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_il2cpp_TypeInfo_var); Stream__ctor_m5EB0B4BCC014E7D1F18FE0E72B2D6D0C5C13D5C4(__this, /*hidden argument*/NULL); // if (z == null) ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_2 = ___z1; if (L_2) { goto IL_002c; } } { // z = new ZStream(); ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_3 = (ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C *)il2cpp_codegen_object_new(ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C_il2cpp_TypeInfo_var); ZStream__ctor_m789EC02A4065E8AA186254DD18DEB20CB878FC40(L_3, /*hidden argument*/NULL); ___z1 = L_3; } IL_002c: { // if (z.istate == null && z.dstate == null) ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_4 = ___z1; NullCheck(L_4); Inflate_tA57633237054BCAD6EDC8DBC06F34D50C1680638 * L_5 = L_4->get_istate_27(); if (L_5) { goto IL_0043; } } { ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_6 = ___z1; NullCheck(L_6); Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_7 = L_6->get_dstate_26(); if (L_7) { goto IL_0043; } } { // z.inflateInit(); ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_8 = ___z1; NullCheck(L_8); int32_t L_9; L_9 = ZStream_inflateInit_m9EC1B8A6E4C5DD3F1AB27A3334641E5368E53A4A(L_8, /*hidden argument*/NULL); } IL_0043: { // this.output = output; Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_10 = ___output0; __this->set_output_11(L_10); // this.compress = (z.istate == null); ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_11 = ___z1; NullCheck(L_11); Inflate_tA57633237054BCAD6EDC8DBC06F34D50C1680638 * L_12 = L_11->get_istate_27(); __this->set_compress_10((bool)((((RuntimeObject*)(Inflate_tA57633237054BCAD6EDC8DBC06F34D50C1680638 *)L_12) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0)); // this.z = z; ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_13 = ___z1; __this->set_z_6(L_13); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZOutputStream::.ctor(System.IO.Stream,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZOutputStream__ctor_m11A962A9C2D58B7BD1A65E0C8C307234FFC1C3A7 (ZOutputStream_tC18E76CC9549F21AC543491E55ACCD9A7C76D5D5 * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___output0, int32_t ___level1, const RuntimeMethod* method) { { // : this(output, level, false) Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_0 = ___output0; int32_t L_1 = ___level1; ZOutputStream__ctor_mA7578A5AED4CD1B289FCADE940D8E8F59DFAA47B(__this, L_0, L_1, (bool)0, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZOutputStream::.ctor(System.IO.Stream,System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZOutputStream__ctor_mA7578A5AED4CD1B289FCADE940D8E8F59DFAA47B (ZOutputStream_tC18E76CC9549F21AC543491E55ACCD9A7C76D5D5 * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___output0, int32_t ___level1, bool ___nowrap2, 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*)&Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // protected byte[] buf = new byte[BufferSize]; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)((int32_t)512)); __this->set_buf_8(L_0); // protected byte[] buf1 = new byte[1]; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)1); __this->set_buf1_9(L_1); // : base() IL2CPP_RUNTIME_CLASS_INIT(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_il2cpp_TypeInfo_var); Stream__ctor_m5EB0B4BCC014E7D1F18FE0E72B2D6D0C5C13D5C4(__this, /*hidden argument*/NULL); // this.output = output; Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_2 = ___output0; __this->set_output_11(L_2); // this.compress = true; __this->set_compress_10((bool)1); // this.z = new ZStream(); ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_3 = (ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C *)il2cpp_codegen_object_new(ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C_il2cpp_TypeInfo_var); ZStream__ctor_m789EC02A4065E8AA186254DD18DEB20CB878FC40(L_3, /*hidden argument*/NULL); __this->set_z_6(L_3); // this.z.deflateInit(level, nowrap); ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_4 = __this->get_z_6(); int32_t L_5 = ___level1; bool L_6 = ___nowrap2; NullCheck(L_4); int32_t L_7; L_7 = ZStream_deflateInit_mA37B4F5F7AB971B7D5DD3EE980EE109A2B17A82D(L_4, L_5, L_6, /*hidden argument*/NULL); // } return; } } // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZOutputStream::get_CanRead() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ZOutputStream_get_CanRead_mA2210AB29EE790D404635AB274ECC498A6A4AFC5 (ZOutputStream_tC18E76CC9549F21AC543491E55ACCD9A7C76D5D5 * __this, const RuntimeMethod* method) { { // public sealed override bool CanRead { get { return false; } } return (bool)0; } } // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZOutputStream::get_CanSeek() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ZOutputStream_get_CanSeek_m5E6B30269D7869C5DF1CAA74A576395806C561B7 (ZOutputStream_tC18E76CC9549F21AC543491E55ACCD9A7C76D5D5 * __this, const RuntimeMethod* method) { { // public sealed override bool CanSeek { get { return false; } } return (bool)0; } } // System.Boolean BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZOutputStream::get_CanWrite() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ZOutputStream_get_CanWrite_m4BBAF8BFD0921F20224F2DED9CE792C57A80EC83 (ZOutputStream_tC18E76CC9549F21AC543491E55ACCD9A7C76D5D5 * __this, const RuntimeMethod* method) { { // public sealed override bool CanWrite { get { return !closed; } } bool L_0 = __this->get_closed_12(); return (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0); } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZOutputStream::Close() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZOutputStream_Close_m516B6321179E70E656EF4405CC51A8260A59328D (ZOutputStream_tC18E76CC9549F21AC543491E55ACCD9A7C76D5D5 * __this, const RuntimeMethod* method) { { // if (closed) bool L_0 = __this->get_closed_12(); if (!L_0) { goto IL_0009; } } { // return; return; } IL_0009: { // DoClose(); ZOutputStream_DoClose_m56C0A89A26F076A65555DE69C03AD13E7F839E4E(__this, /*hidden argument*/NULL); // base.Close(); Stream_Close_mC34AF5832AD2E47C5E8F9D44E969C45F6F0A9A13(__this, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZOutputStream::DoClose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZOutputStream_DoClose_m56C0A89A26F076A65555DE69C03AD13E7F839E4E (ZOutputStream_tC18E76CC9549F21AC543491E55ACCD9A7C76D5D5 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; IL_0000: try {// begin try (depth: 1) try {// begin try (depth: 2) // Finish(); VirtualActionInvoker0::Invoke(35 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZOutputStream::Finish() */, __this); // } IL2CPP_LEAVE(0x2B, FINALLY_000b); }// end try (depth: 2) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0008; } throw e; } CATCH_0008: {// begin catch(System.IO.IOException) // catch (IOException) // } IL2CPP_POP_ACTIVE_EXCEPTION(); IL2CPP_LEAVE(0x2B, FINALLY_000b); }// end catch (depth: 2) }// end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_000b; } FINALLY_000b: {// begin finally (depth: 1) // this.closed = true; __this->set_closed_12((bool)1); // End(); VirtualActionInvoker0::Invoke(34 /* System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZOutputStream::End() */, __this); // BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.Dispose(output); Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_0 = __this->get_output_11(); IL2CPP_RUNTIME_CLASS_INIT(Platform_t0EFEB39A6344675D077C7B85E0F7F00BDD996804_il2cpp_TypeInfo_var); Platform_Dispose_m852AB0A263A990096BCE2A4230CB5723F873C1A2(L_0, /*hidden argument*/NULL); // output = null; __this->set_output_11((Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB *)NULL); // } IL2CPP_END_FINALLY(11) }// end finally (depth: 1) IL2CPP_CLEANUP(11) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x2B, IL_002b) } IL_002b: { // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZOutputStream::End() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZOutputStream_End_m7661E03AF3CDC629CBB2B0B71175D791D1939BEF (ZOutputStream_tC18E76CC9549F21AC543491E55ACCD9A7C76D5D5 * __this, const RuntimeMethod* method) { { // if (z == null) ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_0 = __this->get_z_6(); if (L_0) { goto IL_0009; } } { // return; return; } IL_0009: { // if (compress) bool L_1 = __this->get_compress_10(); if (!L_1) { goto IL_001f; } } { // z.deflateEnd(); ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_2 = __this->get_z_6(); NullCheck(L_2); int32_t L_3; L_3 = ZStream_deflateEnd_mAEA3E0B55B061F47645BE253556DCCA5E0E921A2(L_2, /*hidden argument*/NULL); goto IL_002b; } IL_001f: { // z.inflateEnd(); ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_4 = __this->get_z_6(); NullCheck(L_4); int32_t L_5; L_5 = ZStream_inflateEnd_m85C85ED154B56ADFBDC2228BDD66E5C376B63E25(L_4, /*hidden argument*/NULL); } IL_002b: { // z.free(); ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_6 = __this->get_z_6(); NullCheck(L_6); ZStream_free_m19D754EEAB35C33A21FF80EFB42F9BB39CB520F7(L_6, /*hidden argument*/NULL); // z = null; __this->set_z_6((ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C *)NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZOutputStream::Finish() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZOutputStream_Finish_m357AD7FA39B01F3BCEF602123F2DFC6E28B06DAC (ZOutputStream_tC18E76CC9549F21AC543491E55ACCD9A7C76D5D5 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; int32_t G_B3_0 = 0; String_t* G_B8_0 = NULL; IL_0000: { // z.next_out = buf; ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_0 = __this->get_z_6(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = __this->get_buf_8(); NullCheck(L_0); L_0->set_next_out_21(L_1); // z.next_out_index = 0; ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_2 = __this->get_z_6(); NullCheck(L_2); L_2->set_next_out_index_22(0); // z.avail_out = buf.Length; ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_3 = __this->get_z_6(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = __this->get_buf_8(); NullCheck(L_4); NullCheck(L_3); L_3->set_avail_out_23(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))); // int err = compress // ? z.deflate(JZlib.Z_FINISH) // : z.inflate(JZlib.Z_FINISH); bool L_5 = __this->get_compress_10(); if (L_5) { goto IL_0046; } } { ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_6 = __this->get_z_6(); NullCheck(L_6); int32_t L_7; L_7 = ZStream_inflate_mC0AE6609A7E141336EAB1F130549944AD25B9B24(L_6, 4, /*hidden argument*/NULL); G_B3_0 = L_7; goto IL_0052; } IL_0046: { ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_8 = __this->get_z_6(); NullCheck(L_8); int32_t L_9; L_9 = ZStream_deflate_m6A8BBBC2E2974E7E5FD360EC48BCFB40282E14FB(L_8, 4, /*hidden argument*/NULL); G_B3_0 = L_9; } IL_0052: { V_0 = G_B3_0; // if (err != JZlib.Z_STREAM_END && err != JZlib.Z_OK) int32_t L_10 = V_0; if ((((int32_t)L_10) == ((int32_t)1))) { goto IL_0089; } } { int32_t L_11 = V_0; if (!L_11) { goto IL_0089; } } { // throw new IOException((compress ? "de" : "in") + "flating: " + z.msg); bool L_12 = __this->get_compress_10(); if (L_12) { goto IL_0069; } } { G_B8_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC1E0482ABDB4530F47C01C2A81FB06ED6E98A110)); goto IL_006e; } IL_0069: { G_B8_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDC4A06A0DE599F745DBDD44A6FDE6212859D3A5F)); } IL_006e: { ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_13 = __this->get_z_6(); NullCheck(L_13); String_t* L_14 = L_13->get_msg_25(); String_t* L_15; L_15 = String_Concat_m89EAB4C6A96B0E5C3F87300D6BE78D386B9EFC44(G_B8_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral81B54C81CE5770A2FB716FE3138FA18CE998793D)), L_14, /*hidden argument*/NULL); IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA * L_16 = (IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA_il2cpp_TypeInfo_var))); IOException__ctor_m208E01C02FF2C1D6C5AA661A5816C744804E1690(L_16, L_15, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ZOutputStream_Finish_m357AD7FA39B01F3BCEF602123F2DFC6E28B06DAC_RuntimeMethod_var))); } IL_0089: { // int count = buf.Length - z.avail_out; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_17 = __this->get_buf_8(); NullCheck(L_17); ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_18 = __this->get_z_6(); NullCheck(L_18); int32_t L_19 = L_18->get_avail_out_23(); V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length))), (int32_t)L_19)); // if (count > 0) int32_t L_20 = V_1; if ((((int32_t)L_20) <= ((int32_t)0))) { goto IL_00b5; } } { // output.Write(buf, 0, count); Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_21 = __this->get_output_11(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_22 = __this->get_buf_8(); int32_t L_23 = V_1; NullCheck(L_21); VirtualActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(32 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_21, L_22, 0, L_23); } IL_00b5: { // while (z.avail_in > 0 || z.avail_out == 0); ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_24 = __this->get_z_6(); NullCheck(L_24); int32_t L_25 = L_24->get_avail_in_19(); if ((((int32_t)L_25) > ((int32_t)0))) { goto IL_0000; } } { ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_26 = __this->get_z_6(); NullCheck(L_26); int32_t L_27 = L_26->get_avail_out_23(); if (!L_27) { goto IL_0000; } } { // Flush(); VirtualActionInvoker0::Invoke(20 /* System.Void System.IO.Stream::Flush() */, __this); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZOutputStream::Flush() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZOutputStream_Flush_m4678429A94BFE4984E3B17D76AF3CD12AC9528D1 (ZOutputStream_tC18E76CC9549F21AC543491E55ACCD9A7C76D5D5 * __this, const RuntimeMethod* method) { { // output.Flush(); Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_0 = __this->get_output_11(); NullCheck(L_0); VirtualActionInvoker0::Invoke(20 /* System.Void System.IO.Stream::Flush() */, L_0); // } return; } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZOutputStream::get_FlushMode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ZOutputStream_get_FlushMode_mC5D7AC5813DEFCD0793F03A25F3D0581A3E8EB57 (ZOutputStream_tC18E76CC9549F21AC543491E55ACCD9A7C76D5D5 * __this, const RuntimeMethod* method) { { // get { return flushLevel; } int32_t L_0 = __this->get_flushLevel_7(); return L_0; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZOutputStream::set_FlushMode(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZOutputStream_set_FlushMode_m901645E39B2CB276D8077E6D5428BDCC1A879E23 (ZOutputStream_tC18E76CC9549F21AC543491E55ACCD9A7C76D5D5 * __this, int32_t ___value0, const RuntimeMethod* method) { { // set { this.flushLevel = value; } int32_t L_0 = ___value0; __this->set_flushLevel_7(L_0); // set { this.flushLevel = value; } return; } } // System.Int64 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZOutputStream::get_Length() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t ZOutputStream_get_Length_m2EA192C004E6EAFACA0DC154A38F04B2D35AD0D8 (ZOutputStream_tC18E76CC9549F21AC543491E55ACCD9A7C76D5D5 * __this, const RuntimeMethod* method) { { // public sealed override long Length { get { throw new NotSupportedException(); } } NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var))); NotSupportedException__ctor_m3EA81A5B209A87C3ADA47443F2AFFF735E5256EE(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ZOutputStream_get_Length_m2EA192C004E6EAFACA0DC154A38F04B2D35AD0D8_RuntimeMethod_var))); } } // System.Int64 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZOutputStream::get_Position() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t ZOutputStream_get_Position_mC24068C865DE023846D6EBC568D9A337F0348B3D (ZOutputStream_tC18E76CC9549F21AC543491E55ACCD9A7C76D5D5 * __this, const RuntimeMethod* method) { { // get { throw new NotSupportedException(); } NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var))); NotSupportedException__ctor_m3EA81A5B209A87C3ADA47443F2AFFF735E5256EE(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ZOutputStream_get_Position_mC24068C865DE023846D6EBC568D9A337F0348B3D_RuntimeMethod_var))); } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZOutputStream::set_Position(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZOutputStream_set_Position_m7D5C7553B2ACEC151DCCB00980AF8653660E3B43 (ZOutputStream_tC18E76CC9549F21AC543491E55ACCD9A7C76D5D5 * __this, int64_t ___value0, const RuntimeMethod* method) { { // set { throw new NotSupportedException(); } NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var))); NotSupportedException__ctor_m3EA81A5B209A87C3ADA47443F2AFFF735E5256EE(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ZOutputStream_set_Position_m7D5C7553B2ACEC151DCCB00980AF8653660E3B43_RuntimeMethod_var))); } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZOutputStream::Read(System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ZOutputStream_Read_m95257492E95638A3C63DC663C1049070FD315307 (ZOutputStream_tC18E76CC9549F21AC543491E55ACCD9A7C76D5D5 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___buffer0, int32_t ___offset1, int32_t ___count2, const RuntimeMethod* method) { { // public sealed override int Read(byte[] buffer, int offset, int count) { throw new NotSupportedException(); } NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var))); NotSupportedException__ctor_m3EA81A5B209A87C3ADA47443F2AFFF735E5256EE(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ZOutputStream_Read_m95257492E95638A3C63DC663C1049070FD315307_RuntimeMethod_var))); } } // System.Int64 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZOutputStream::Seek(System.Int64,System.IO.SeekOrigin) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t ZOutputStream_Seek_m40D0523F3E61F4A31967C22B6AE32933AE8742BE (ZOutputStream_tC18E76CC9549F21AC543491E55ACCD9A7C76D5D5 * __this, int64_t ___offset0, int32_t ___origin1, const RuntimeMethod* method) { { // public sealed override long Seek(long offset, SeekOrigin origin) { throw new NotSupportedException(); } NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var))); NotSupportedException__ctor_m3EA81A5B209A87C3ADA47443F2AFFF735E5256EE(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ZOutputStream_Seek_m40D0523F3E61F4A31967C22B6AE32933AE8742BE_RuntimeMethod_var))); } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZOutputStream::SetLength(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZOutputStream_SetLength_m55701E8EB5FB955206CD4C17FD375055F2CE4991 (ZOutputStream_tC18E76CC9549F21AC543491E55ACCD9A7C76D5D5 * __this, int64_t ___value0, const RuntimeMethod* method) { { // public sealed override void SetLength(long value) { throw new NotSupportedException(); } NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var))); NotSupportedException__ctor_m3EA81A5B209A87C3ADA47443F2AFFF735E5256EE(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ZOutputStream_SetLength_m55701E8EB5FB955206CD4C17FD375055F2CE4991_RuntimeMethod_var))); } } // System.Int64 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZOutputStream::get_TotalIn() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t ZOutputStream_get_TotalIn_mD1203A4A89E2D20F88DDA96DB4B813CDC16229B9 (ZOutputStream_tC18E76CC9549F21AC543491E55ACCD9A7C76D5D5 * __this, const RuntimeMethod* method) { { // get { return z.total_in; } ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_0 = __this->get_z_6(); NullCheck(L_0); int64_t L_1 = L_0->get_total_in_20(); return L_1; } } // System.Int64 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZOutputStream::get_TotalOut() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t ZOutputStream_get_TotalOut_mB11453BDF66945CF83FE912AB1B941D876461BD8 (ZOutputStream_tC18E76CC9549F21AC543491E55ACCD9A7C76D5D5 * __this, const RuntimeMethod* method) { { // get { return z.total_out; } ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_0 = __this->get_z_6(); NullCheck(L_0); int64_t L_1 = L_0->get_total_out_24(); return L_1; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZOutputStream::Write(System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZOutputStream_Write_mFCC3668AFEBB36607C20702B943C9F577FAEAC4E (ZOutputStream_tC18E76CC9549F21AC543491E55ACCD9A7C76D5D5 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___b0, int32_t ___off1, int32_t ___len2, const RuntimeMethod* method) { int32_t G_B6_0 = 0; String_t* G_B10_0 = NULL; { // if (len == 0) int32_t L_0 = ___len2; if (L_0) { goto IL_0004; } } { // return; return; } IL_0004: { // z.next_in = b; ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_1 = __this->get_z_6(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = ___b0; NullCheck(L_1); L_1->set_next_in_17(L_2); // z.next_in_index = off; ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_3 = __this->get_z_6(); int32_t L_4 = ___off1; NullCheck(L_3); L_3->set_next_in_index_18(L_4); // z.avail_in = len; ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_5 = __this->get_z_6(); int32_t L_6 = ___len2; NullCheck(L_5); L_5->set_avail_in_19(L_6); } IL_0028: { // z.next_out = buf; ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_7 = __this->get_z_6(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_8 = __this->get_buf_8(); NullCheck(L_7); L_7->set_next_out_21(L_8); // z.next_out_index = 0; ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_9 = __this->get_z_6(); NullCheck(L_9); L_9->set_next_out_index_22(0); // z.avail_out = buf.Length; ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_10 = __this->get_z_6(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_11 = __this->get_buf_8(); NullCheck(L_11); NullCheck(L_10); L_10->set_avail_out_23(((int32_t)((int32_t)(((RuntimeArray*)L_11)->max_length)))); // int err = compress // ? z.deflate(flushLevel) // : z.inflate(flushLevel); bool L_12 = __this->get_compress_10(); if (L_12) { goto IL_0073; } } { ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_13 = __this->get_z_6(); int32_t L_14 = __this->get_flushLevel_7(); NullCheck(L_13); int32_t L_15; L_15 = ZStream_inflate_mC0AE6609A7E141336EAB1F130549944AD25B9B24(L_13, L_14, /*hidden argument*/NULL); G_B6_0 = L_15; goto IL_0084; } IL_0073: { ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_16 = __this->get_z_6(); int32_t L_17 = __this->get_flushLevel_7(); NullCheck(L_16); int32_t L_18; L_18 = ZStream_deflate_m6A8BBBC2E2974E7E5FD360EC48BCFB40282E14FB(L_16, L_17, /*hidden argument*/NULL); G_B6_0 = L_18; } IL_0084: { // if (err != JZlib.Z_OK) if (!G_B6_0) { goto IL_00b5; } } { // throw new IOException((compress ? "de" : "in") + "flating: " + z.msg); bool L_19 = __this->get_compress_10(); if (L_19) { goto IL_0095; } } { G_B10_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC1E0482ABDB4530F47C01C2A81FB06ED6E98A110)); goto IL_009a; } IL_0095: { G_B10_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDC4A06A0DE599F745DBDD44A6FDE6212859D3A5F)); } IL_009a: { ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_20 = __this->get_z_6(); NullCheck(L_20); String_t* L_21 = L_20->get_msg_25(); String_t* L_22; L_22 = String_Concat_m89EAB4C6A96B0E5C3F87300D6BE78D386B9EFC44(G_B10_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral81B54C81CE5770A2FB716FE3138FA18CE998793D)), L_21, /*hidden argument*/NULL); IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA * L_23 = (IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA_il2cpp_TypeInfo_var))); IOException__ctor_m208E01C02FF2C1D6C5AA661A5816C744804E1690(L_23, L_22, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_23, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ZOutputStream_Write_mFCC3668AFEBB36607C20702B943C9F577FAEAC4E_RuntimeMethod_var))); } IL_00b5: { // output.Write(buf, 0, buf.Length - z.avail_out); Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_24 = __this->get_output_11(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_25 = __this->get_buf_8(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_26 = __this->get_buf_8(); NullCheck(L_26); ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_27 = __this->get_z_6(); NullCheck(L_27); int32_t L_28 = L_27->get_avail_out_23(); NullCheck(L_24); VirtualActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(32 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_24, L_25, 0, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_26)->max_length))), (int32_t)L_28))); // while (z.avail_in > 0 || z.avail_out == 0); ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_29 = __this->get_z_6(); NullCheck(L_29); int32_t L_30 = L_29->get_avail_in_19(); if ((((int32_t)L_30) > ((int32_t)0))) { goto IL_0028; } } { ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * L_31 = __this->get_z_6(); NullCheck(L_31); int32_t L_32 = L_31->get_avail_out_23(); if (!L_32) { goto IL_0028; } } { // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZOutputStream::WriteByte(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZOutputStream_WriteByte_m7DAD9B3749011583FC38DA443D7651FCB7F8B019 (ZOutputStream_tC18E76CC9549F21AC543491E55ACCD9A7C76D5D5 * __this, uint8_t ___b0, const RuntimeMethod* method) { { // buf1[0] = b; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = __this->get_buf1_9(); uint8_t L_1 = ___b0; NullCheck(L_0); (L_0)->SetAt(static_cast(0), (uint8_t)L_1); // Write(buf1, 0, 1); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = __this->get_buf1_9(); VirtualActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(32 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, __this, L_2, 0, 1); // } return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.Multiplier.ZSignedDigitL2RMultiplier::MultiplyPositive(BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint,BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * ZSignedDigitL2RMultiplier_MultiplyPositive_mF1660039787C385E374DA04ECCDE5B455A128B41 (ZSignedDigitL2RMultiplier_t8B0E2D2F725F6F74BCC0CF7BF6882FAC95DFBBF1 * __this, ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * ___p0, BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___k1, const RuntimeMethod* method) { ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * V_0 = NULL; ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * V_1 = NULL; ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * V_2 = NULL; int32_t V_3 = 0; int32_t V_4 = 0; ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * G_B3_0 = NULL; ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * G_B2_0 = NULL; ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * G_B4_0 = NULL; ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * G_B4_1 = NULL; { // ECPoint addP = p.Normalize(), subP = addP.Negate(); ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * L_0 = ___p0; NullCheck(L_0); ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * L_1; L_1 = VirtualFuncInvoker0< ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * >::Invoke(17 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint::Normalize() */, L_0); V_0 = L_1; // ECPoint addP = p.Normalize(), subP = addP.Negate(); ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * L_2 = V_0; NullCheck(L_2); ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * L_3; L_3 = VirtualFuncInvoker0< ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * >::Invoke(28 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint::Negate() */, L_2); V_1 = L_3; // ECPoint R0 = addP; ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * L_4 = V_0; V_2 = L_4; // int n = k.BitLength; BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_5 = ___k1; NullCheck(L_5); int32_t L_6; L_6 = BigInteger_get_BitLength_m6B5FE0A610DA07F883412F1DE1BCCFA2EED7244C(L_5, /*hidden argument*/NULL); // int s = k.GetLowestSetBit(); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_7 = ___k1; NullCheck(L_7); int32_t L_8; L_8 = BigInteger_GetLowestSetBit_m14F7AAE33B37CC165ADB622C41783C78FA5918C8(L_7, /*hidden argument*/NULL); V_3 = L_8; // int i = n; V_4 = L_6; goto IL_0036; } IL_0021: { // R0 = R0.TwicePlus(k.TestBit(i) ? addP : subP); ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * L_9 = V_2; BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_10 = ___k1; int32_t L_11 = V_4; NullCheck(L_10); bool L_12; L_12 = BigInteger_TestBit_mC6B170A76F955C7A3839E85559A34EF0D9276D36(L_10, L_11, /*hidden argument*/NULL); G_B2_0 = L_9; if (L_12) { G_B3_0 = L_9; goto IL_002f; } } { ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * L_13 = V_1; G_B4_0 = L_13; G_B4_1 = G_B2_0; goto IL_0030; } IL_002f: { ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * L_14 = V_0; G_B4_0 = L_14; G_B4_1 = G_B3_0; } IL_0030: { NullCheck(G_B4_1); ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * L_15; L_15 = VirtualFuncInvoker1< ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA *, ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * >::Invoke(32 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint::TwicePlus(BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint) */, G_B4_1, G_B4_0); V_2 = L_15; } IL_0036: { // while (--i > s) int32_t L_16 = V_4; int32_t L_17 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_16, (int32_t)1)); V_4 = L_17; int32_t L_18 = V_3; if ((((int32_t)L_17) > ((int32_t)L_18))) { goto IL_0021; } } { // R0 = R0.TimesPow2(s); ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * L_19 = V_2; int32_t L_20 = V_3; NullCheck(L_19); ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * L_21; L_21 = VirtualFuncInvoker1< ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA *, int32_t >::Invoke(29 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint::TimesPow2(System.Int32) */, L_19, L_20); V_2 = L_21; // return R0; ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * L_22 = V_2; return L_22; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.Multiplier.ZSignedDigitL2RMultiplier::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZSignedDigitL2RMultiplier__ctor_m1A61D0FA2A06DCA2F1DB7FFAE2FCA1945B968A13 (ZSignedDigitL2RMultiplier_t8B0E2D2F725F6F74BCC0CF7BF6882FAC95DFBBF1 * __this, const RuntimeMethod* method) { { AbstractECMultiplier__ctor_m898F1EE1A85F4E552860CB418F1D64A0B33C0C01(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.Multiplier.ZSignedDigitR2LMultiplier::MultiplyPositive(BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint,BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * ZSignedDigitR2LMultiplier_MultiplyPositive_m9BF5D8D3132E2DAACD42619106D462EA6A8999E3 (ZSignedDigitR2LMultiplier_t2CD05C5CD8FDC0C2DAC5C41591EC942B321A0B1C * __this, ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * ___p0, BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___k1, const RuntimeMethod* method) { ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * V_0 = NULL; ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * V_1 = NULL; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * G_B3_0 = NULL; ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * G_B2_0 = NULL; ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * G_B4_0 = NULL; ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * G_B4_1 = NULL; { // ECPoint R0 = p.Curve.Infinity, R1 = p; ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * L_0 = ___p0; NullCheck(L_0); ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * L_1; L_1 = VirtualFuncInvoker0< ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * >::Invoke(6 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECCurve BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint::get_Curve() */, L_0); NullCheck(L_1); ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * L_2; L_2 = VirtualFuncInvoker0< ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * >::Invoke(22 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECCurve::get_Infinity() */, L_1); V_0 = L_2; // ECPoint R0 = p.Curve.Infinity, R1 = p; ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * L_3 = ___p0; V_1 = L_3; // int n = k.BitLength; BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_4 = ___k1; NullCheck(L_4); int32_t L_5; L_5 = BigInteger_get_BitLength_m6B5FE0A610DA07F883412F1DE1BCCFA2EED7244C(L_4, /*hidden argument*/NULL); V_2 = L_5; // int s = k.GetLowestSetBit(); BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_6 = ___k1; NullCheck(L_6); int32_t L_7; L_7 = BigInteger_GetLowestSetBit_m14F7AAE33B37CC165ADB622C41783C78FA5918C8(L_6, /*hidden argument*/NULL); V_3 = L_7; // R1 = R1.TimesPow2(s); ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * L_8 = V_1; int32_t L_9 = V_3; NullCheck(L_8); ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * L_10; L_10 = VirtualFuncInvoker1< ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA *, int32_t >::Invoke(29 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint::TimesPow2(System.Int32) */, L_8, L_9); V_1 = L_10; // int i = s; int32_t L_11 = V_3; V_4 = L_11; goto IL_004a; } IL_0029: { // R0 = R0.Add(k.TestBit(i) ? R1 : R1.Negate()); ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * L_12 = V_0; BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_13 = ___k1; int32_t L_14 = V_4; NullCheck(L_13); bool L_15; L_15 = BigInteger_TestBit_mC6B170A76F955C7A3839E85559A34EF0D9276D36(L_13, L_14, /*hidden argument*/NULL); G_B2_0 = L_12; if (L_15) { G_B3_0 = L_12; goto IL_003c; } } { ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * L_16 = V_1; NullCheck(L_16); ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * L_17; L_17 = VirtualFuncInvoker0< ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * >::Invoke(28 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint::Negate() */, L_16); G_B4_0 = L_17; G_B4_1 = G_B2_0; goto IL_003d; } IL_003c: { ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * L_18 = V_1; G_B4_0 = L_18; G_B4_1 = G_B3_0; } IL_003d: { NullCheck(G_B4_1); ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * L_19; L_19 = VirtualFuncInvoker1< ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA *, ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * >::Invoke(26 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint::Add(BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint) */, G_B4_1, G_B4_0); V_0 = L_19; // R1 = R1.Twice(); ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * L_20 = V_1; NullCheck(L_20); ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * L_21; L_21 = VirtualFuncInvoker0< ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * >::Invoke(30 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint::Twice() */, L_20); V_1 = L_21; } IL_004a: { // while (++i < n) int32_t L_22 = V_4; int32_t L_23 = ((int32_t)il2cpp_codegen_add((int32_t)L_22, (int32_t)1)); V_4 = L_23; int32_t L_24 = V_2; if ((((int32_t)L_23) < ((int32_t)L_24))) { goto IL_0029; } } { // R0 = R0.Add(R1); ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * L_25 = V_0; ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * L_26 = V_1; NullCheck(L_25); ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * L_27; L_27 = VirtualFuncInvoker1< ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA *, ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * >::Invoke(26 /* BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint::Add(BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.ECPoint) */, L_25, L_26); V_0 = L_27; // return R0; ECPoint_tB125EF230297BF796402D7C2818D0ADF6328B6EA * L_28 = V_0; return L_28; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.Multiplier.ZSignedDigitR2LMultiplier::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZSignedDigitR2LMultiplier__ctor_m12EB3B301312CC9D0CC1F1B10E0E7B84C2BDB2E0 (ZSignedDigitR2LMultiplier_t2CD05C5CD8FDC0C2DAC5C41591EC942B321A0B1C * __this, const RuntimeMethod* method) { { AbstractECMultiplier__ctor_m898F1EE1A85F4E552860CB418F1D64A0B33C0C01(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream::inflateInit() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ZStream_inflateInit_m9EC1B8A6E4C5DD3F1AB27A3334641E5368E53A4A (ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * __this, const RuntimeMethod* method) { { // return inflateInit(DEF_WBITS); int32_t L_0; L_0 = ZStream_inflateInit_m19846C60F86EAA016A842E3BBA2D12F324D6DB00(__this, ((int32_t)15), /*hidden argument*/NULL); return L_0; } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream::inflateInit(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ZStream_inflateInit_m3ABA5FDA26B3A77684E43CB2702248EF06C4279C (ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * __this, bool ___nowrap0, const RuntimeMethod* method) { { // return inflateInit(DEF_WBITS, nowrap); bool L_0 = ___nowrap0; int32_t L_1; L_1 = ZStream_inflateInit_m2BB7550CD1092E3E0152CD95EEBE8717AE25A779(__this, ((int32_t)15), L_0, /*hidden argument*/NULL); return L_1; } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream::inflateInit(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ZStream_inflateInit_m19846C60F86EAA016A842E3BBA2D12F324D6DB00 (ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * __this, int32_t ___w0, const RuntimeMethod* method) { { // return inflateInit(w, false); int32_t L_0 = ___w0; int32_t L_1; L_1 = ZStream_inflateInit_m2BB7550CD1092E3E0152CD95EEBE8717AE25A779(__this, L_0, (bool)0, /*hidden argument*/NULL); return L_1; } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream::inflateInit(System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ZStream_inflateInit_m2BB7550CD1092E3E0152CD95EEBE8717AE25A779 (ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * __this, int32_t ___w0, bool ___nowrap1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Inflate_tA57633237054BCAD6EDC8DBC06F34D50C1680638_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * G_B2_0 = NULL; Inflate_tA57633237054BCAD6EDC8DBC06F34D50C1680638 * G_B2_1 = NULL; ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * G_B1_0 = NULL; Inflate_tA57633237054BCAD6EDC8DBC06F34D50C1680638 * G_B1_1 = NULL; int32_t G_B3_0 = 0; ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * G_B3_1 = NULL; Inflate_tA57633237054BCAD6EDC8DBC06F34D50C1680638 * G_B3_2 = NULL; { // istate=new Inflate(); Inflate_tA57633237054BCAD6EDC8DBC06F34D50C1680638 * L_0 = (Inflate_tA57633237054BCAD6EDC8DBC06F34D50C1680638 *)il2cpp_codegen_object_new(Inflate_tA57633237054BCAD6EDC8DBC06F34D50C1680638_il2cpp_TypeInfo_var); Inflate__ctor_mAA64F9B7AA817493D257F8F2E1BB592B9350C703(L_0, /*hidden argument*/NULL); __this->set_istate_27(L_0); // return istate.inflateInit(this, nowrap?-w:w); Inflate_tA57633237054BCAD6EDC8DBC06F34D50C1680638 * L_1 = __this->get_istate_27(); bool L_2 = ___nowrap1; G_B1_0 = __this; G_B1_1 = L_1; if (L_2) { G_B2_0 = __this; G_B2_1 = L_1; goto IL_0018; } } { int32_t L_3 = ___w0; G_B3_0 = L_3; G_B3_1 = G_B1_0; G_B3_2 = G_B1_1; goto IL_001a; } IL_0018: { int32_t L_4 = ___w0; G_B3_0 = ((-L_4)); G_B3_1 = G_B2_0; G_B3_2 = G_B2_1; } IL_001a: { NullCheck(G_B3_2); int32_t L_5; L_5 = Inflate_inflateInit_mEB7B5392F9994E653DC48D29B939904A8F0992CB(G_B3_2, G_B3_1, G_B3_0, /*hidden argument*/NULL); return L_5; } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream::inflate(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ZStream_inflate_mC0AE6609A7E141336EAB1F130549944AD25B9B24 (ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * __this, int32_t ___f0, const RuntimeMethod* method) { { // if(istate==null) return Z_STREAM_ERROR; Inflate_tA57633237054BCAD6EDC8DBC06F34D50C1680638 * L_0 = __this->get_istate_27(); if (L_0) { goto IL_000b; } } { // if(istate==null) return Z_STREAM_ERROR; return ((int32_t)-2); } IL_000b: { // return istate.inflate(this, f); Inflate_tA57633237054BCAD6EDC8DBC06F34D50C1680638 * L_1 = __this->get_istate_27(); int32_t L_2 = ___f0; NullCheck(L_1); int32_t L_3; L_3 = Inflate_inflate_mF9F1556B60DEA95586916C698786F0A53EB6072B(L_1, __this, L_2, /*hidden argument*/NULL); return L_3; } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream::inflateEnd() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ZStream_inflateEnd_m85C85ED154B56ADFBDC2228BDD66E5C376B63E25 (ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * __this, const RuntimeMethod* method) { { // if(istate==null) return Z_STREAM_ERROR; Inflate_tA57633237054BCAD6EDC8DBC06F34D50C1680638 * L_0 = __this->get_istate_27(); if (L_0) { goto IL_000b; } } { // if(istate==null) return Z_STREAM_ERROR; return ((int32_t)-2); } IL_000b: { // int ret=istate.inflateEnd(this); Inflate_tA57633237054BCAD6EDC8DBC06F34D50C1680638 * L_1 = __this->get_istate_27(); NullCheck(L_1); int32_t L_2; L_2 = Inflate_inflateEnd_mF2F9D4B1405608F7D438879D86A1424BEC787133(L_1, __this, /*hidden argument*/NULL); // istate = null; __this->set_istate_27((Inflate_tA57633237054BCAD6EDC8DBC06F34D50C1680638 *)NULL); // return ret; return L_2; } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream::inflateSync() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ZStream_inflateSync_mD2FCD691C28D79EBFF84E706345E5AEC2567C464 (ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * __this, const RuntimeMethod* method) { { // if(istate == null) Inflate_tA57633237054BCAD6EDC8DBC06F34D50C1680638 * L_0 = __this->get_istate_27(); if (L_0) { goto IL_000b; } } { // return Z_STREAM_ERROR; return ((int32_t)-2); } IL_000b: { // return istate.inflateSync(this); Inflate_tA57633237054BCAD6EDC8DBC06F34D50C1680638 * L_1 = __this->get_istate_27(); NullCheck(L_1); int32_t L_2; L_2 = Inflate_inflateSync_m9494D494845122B32C6A7890B101B4E409C2B4C6(L_1, __this, /*hidden argument*/NULL); return L_2; } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream::inflateSetDictionary(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ZStream_inflateSetDictionary_mCB90A1311094A6C8AC201DBD1CE5FA62DC47B343 (ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___dictionary0, int32_t ___dictLength1, const RuntimeMethod* method) { { // if(istate == null) Inflate_tA57633237054BCAD6EDC8DBC06F34D50C1680638 * L_0 = __this->get_istate_27(); if (L_0) { goto IL_000b; } } { // return Z_STREAM_ERROR; return ((int32_t)-2); } IL_000b: { // return istate.inflateSetDictionary(this, dictionary, dictLength); Inflate_tA57633237054BCAD6EDC8DBC06F34D50C1680638 * L_1 = __this->get_istate_27(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = ___dictionary0; int32_t L_3 = ___dictLength1; NullCheck(L_1); int32_t L_4; L_4 = Inflate_inflateSetDictionary_mD2BEC0515DFED328AF1336F05D095DF9D46DBAD4(L_1, __this, L_2, L_3, /*hidden argument*/NULL); return L_4; } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream::deflateInit(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ZStream_deflateInit_m77240EC6F6D04747F3306F9E4F267C9640F0D8A2 (ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * __this, int32_t ___level0, const RuntimeMethod* method) { { // return deflateInit(level, MAX_WBITS); int32_t L_0 = ___level0; int32_t L_1; L_1 = ZStream_deflateInit_m44074EE2C4900585A18C8472BF42DF749E8F808C(__this, L_0, ((int32_t)15), /*hidden argument*/NULL); return L_1; } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream::deflateInit(System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ZStream_deflateInit_mA37B4F5F7AB971B7D5DD3EE980EE109A2B17A82D (ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * __this, int32_t ___level0, bool ___nowrap1, const RuntimeMethod* method) { { // return deflateInit(level, MAX_WBITS, nowrap); int32_t L_0 = ___level0; bool L_1 = ___nowrap1; int32_t L_2; L_2 = ZStream_deflateInit_m0C9994FF64893A0B1907BF99E09BCF3BA77F79F9(__this, L_0, ((int32_t)15), L_1, /*hidden argument*/NULL); return L_2; } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream::deflateInit(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ZStream_deflateInit_m44074EE2C4900585A18C8472BF42DF749E8F808C (ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * __this, int32_t ___level0, int32_t ___bits1, const RuntimeMethod* method) { { // return deflateInit(level, bits, false); int32_t L_0 = ___level0; int32_t L_1 = ___bits1; int32_t L_2; L_2 = ZStream_deflateInit_m0C9994FF64893A0B1907BF99E09BCF3BA77F79F9(__this, L_0, L_1, (bool)0, /*hidden argument*/NULL); return L_2; } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream::deflateInit(System.Int32,System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ZStream_deflateInit_m0C9994FF64893A0B1907BF99E09BCF3BA77F79F9 (ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * __this, int32_t ___level0, int32_t ___bits1, bool ___nowrap2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t G_B2_0 = 0; ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * G_B2_1 = NULL; Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * G_B2_2 = NULL; int32_t G_B1_0 = 0; ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * G_B1_1 = NULL; Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * G_B1_2 = NULL; int32_t G_B3_0 = 0; int32_t G_B3_1 = 0; ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * G_B3_2 = NULL; Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * G_B3_3 = NULL; { // dstate=new Deflate(); Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_0 = (Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 *)il2cpp_codegen_object_new(Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169_il2cpp_TypeInfo_var); Deflate__ctor_m6F6F3CA51FF84ECC85DF7EBE4E309DD03AF57109(L_0, /*hidden argument*/NULL); __this->set_dstate_26(L_0); // return dstate.deflateInit(this, level, nowrap?-bits:bits); Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_1 = __this->get_dstate_26(); int32_t L_2 = ___level0; bool L_3 = ___nowrap2; G_B1_0 = L_2; G_B1_1 = __this; G_B1_2 = L_1; if (L_3) { G_B2_0 = L_2; G_B2_1 = __this; G_B2_2 = L_1; goto IL_0019; } } { int32_t L_4 = ___bits1; G_B3_0 = L_4; G_B3_1 = G_B1_0; G_B3_2 = G_B1_1; G_B3_3 = G_B1_2; goto IL_001b; } IL_0019: { int32_t L_5 = ___bits1; G_B3_0 = ((-L_5)); G_B3_1 = G_B2_0; G_B3_2 = G_B2_1; G_B3_3 = G_B2_2; } IL_001b: { NullCheck(G_B3_3); int32_t L_6; L_6 = Deflate_deflateInit_m1CBA4503047AD136616CC5E79194C9DBBCCF1271(G_B3_3, G_B3_2, G_B3_1, G_B3_0, /*hidden argument*/NULL); return L_6; } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream::deflate(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ZStream_deflate_m6A8BBBC2E2974E7E5FD360EC48BCFB40282E14FB (ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * __this, int32_t ___flush0, const RuntimeMethod* method) { { // if(dstate==null){ Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_0 = __this->get_dstate_26(); if (L_0) { goto IL_000b; } } { // return Z_STREAM_ERROR; return ((int32_t)-2); } IL_000b: { // return dstate.deflate(this, flush); Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_1 = __this->get_dstate_26(); int32_t L_2 = ___flush0; NullCheck(L_1); int32_t L_3; L_3 = Deflate_deflate_m3337AA1E4638956947006D7DDD807A14FF2B3F5E(L_1, __this, L_2, /*hidden argument*/NULL); return L_3; } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream::deflateEnd() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ZStream_deflateEnd_mAEA3E0B55B061F47645BE253556DCCA5E0E921A2 (ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * __this, const RuntimeMethod* method) { { // if(dstate==null) return Z_STREAM_ERROR; Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_0 = __this->get_dstate_26(); if (L_0) { goto IL_000b; } } { // if(dstate==null) return Z_STREAM_ERROR; return ((int32_t)-2); } IL_000b: { // int ret=dstate.deflateEnd(); Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_1 = __this->get_dstate_26(); NullCheck(L_1); int32_t L_2; L_2 = Deflate_deflateEnd_m432D866E15237609FBB128E97732F99F7B7610A6(L_1, /*hidden argument*/NULL); // dstate=null; __this->set_dstate_26((Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 *)NULL); // return ret; return L_2; } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream::deflateParams(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ZStream_deflateParams_mF429BEBAF05BAC431551AFA7AA48CBC7320FB626 (ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * __this, int32_t ___level0, int32_t ___strategy1, const RuntimeMethod* method) { { // if(dstate==null) return Z_STREAM_ERROR; Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_0 = __this->get_dstate_26(); if (L_0) { goto IL_000b; } } { // if(dstate==null) return Z_STREAM_ERROR; return ((int32_t)-2); } IL_000b: { // return dstate.deflateParams(this, level, strategy); Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_1 = __this->get_dstate_26(); int32_t L_2 = ___level0; int32_t L_3 = ___strategy1; NullCheck(L_1); int32_t L_4; L_4 = Deflate_deflateParams_m159D644C2275FBC4A8806EB5592F9C3C93ACC349(L_1, __this, L_2, L_3, /*hidden argument*/NULL); return L_4; } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream::deflateSetDictionary(System.Byte[],System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ZStream_deflateSetDictionary_m3277B75A805ECCE8A452965E49FE3CD63C4F9FF3 (ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___dictionary0, int32_t ___dictLength1, const RuntimeMethod* method) { { // if(dstate == null) Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_0 = __this->get_dstate_26(); if (L_0) { goto IL_000b; } } { // return Z_STREAM_ERROR; return ((int32_t)-2); } IL_000b: { // return dstate.deflateSetDictionary(this, dictionary, dictLength); Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_1 = __this->get_dstate_26(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = ___dictionary0; int32_t L_3 = ___dictLength1; NullCheck(L_1); int32_t L_4; L_4 = Deflate_deflateSetDictionary_mA2E240655B9BD61D17B389725422C63439708A99(L_1, __this, L_2, L_3, /*hidden argument*/NULL); return L_4; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream::flush_pending() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZStream_flush_pending_mB9CE183791566291990E2E3F408F6C1DD20BD378 (ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { // int len=dstate.pending; Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_0 = __this->get_dstate_26(); NullCheck(L_0); int32_t L_1 = L_0->get_pending_61(); V_0 = L_1; // if(len>avail_out) len=avail_out; int32_t L_2 = V_0; int32_t L_3 = __this->get_avail_out_23(); if ((((int32_t)L_2) <= ((int32_t)L_3))) { goto IL_001c; } } { // if(len>avail_out) len=avail_out; int32_t L_4 = __this->get_avail_out_23(); V_0 = L_4; } IL_001c: { // if(len==0) return; int32_t L_5 = V_0; if (L_5) { goto IL_0020; } } { // if(len==0) return; return; } IL_0020: { // if(dstate.pending_buf.Length<=dstate.pending_out || // next_out.Length<=next_out_index || // dstate.pending_buf.Length<(dstate.pending_out+len) || // next_out.Length<(next_out_index+len)){ Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_6 = __this->get_dstate_26(); NullCheck(L_6); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_7 = L_6->get_pending_buf_58(); NullCheck(L_7); Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_8 = __this->get_dstate_26(); NullCheck(L_8); int32_t L_9 = L_8->get_pending_out_60(); if ((((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length)))) <= ((int32_t)L_9))) { goto IL_0078; } } { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_10 = __this->get_next_out_21(); NullCheck(L_10); int32_t L_11 = __this->get_next_out_index_22(); if ((((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))) <= ((int32_t)L_11))) { goto IL_0078; } } { Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_12 = __this->get_dstate_26(); NullCheck(L_12); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_13 = L_12->get_pending_buf_58(); NullCheck(L_13); Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_14 = __this->get_dstate_26(); NullCheck(L_14); int32_t L_15 = L_14->get_pending_out_60(); int32_t L_16 = V_0; if ((((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_13)->max_length)))) < ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)L_16))))) { goto IL_0078; } } { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_17 = __this->get_next_out_21(); NullCheck(L_17); int32_t L_18 = __this->get_next_out_index_22(); int32_t L_19 = V_0; } IL_0078: { // System.Array.Copy(dstate.pending_buf, dstate.pending_out, // next_out, next_out_index, len); Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_20 = __this->get_dstate_26(); NullCheck(L_20); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_21 = L_20->get_pending_buf_58(); Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_22 = __this->get_dstate_26(); NullCheck(L_22); int32_t L_23 = L_22->get_pending_out_60(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_24 = __this->get_next_out_21(); int32_t L_25 = __this->get_next_out_index_22(); int32_t L_26 = V_0; Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_21, L_23, (RuntimeArray *)(RuntimeArray *)L_24, L_25, L_26, /*hidden argument*/NULL); // next_out_index+=len; int32_t L_27 = __this->get_next_out_index_22(); int32_t L_28 = V_0; __this->set_next_out_index_22(((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)L_28))); // dstate.pending_out+=len; Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_29 = __this->get_dstate_26(); Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_30 = L_29; NullCheck(L_30); int32_t L_31 = L_30->get_pending_out_60(); int32_t L_32 = V_0; NullCheck(L_30); L_30->set_pending_out_60(((int32_t)il2cpp_codegen_add((int32_t)L_31, (int32_t)L_32))); // total_out+=len; int64_t L_33 = __this->get_total_out_24(); int32_t L_34 = V_0; __this->set_total_out_24(((int64_t)il2cpp_codegen_add((int64_t)L_33, (int64_t)((int64_t)((int64_t)L_34))))); // avail_out-=len; int32_t L_35 = __this->get_avail_out_23(); int32_t L_36 = V_0; __this->set_avail_out_23(((int32_t)il2cpp_codegen_subtract((int32_t)L_35, (int32_t)L_36))); // dstate.pending-=len; Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_37 = __this->get_dstate_26(); Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_38 = L_37; NullCheck(L_38); int32_t L_39 = L_38->get_pending_61(); int32_t L_40 = V_0; NullCheck(L_38); L_38->set_pending_61(((int32_t)il2cpp_codegen_subtract((int32_t)L_39, (int32_t)L_40))); // if(dstate.pending==0){ Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_41 = __this->get_dstate_26(); NullCheck(L_41); int32_t L_42 = L_41->get_pending_61(); if (L_42) { goto IL_010a; } } { // dstate.pending_out=0; Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_43 = __this->get_dstate_26(); NullCheck(L_43); L_43->set_pending_out_60(0); } IL_010a: { // } return; } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream::read_buf(System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ZStream_read_buf_m34481AA3D0F3A6AC0117C25FE3B10BDB2BCA1642 (ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___buf0, int32_t ___start1, int32_t ___size2, const RuntimeMethod* method) { int32_t V_0 = 0; { // int len=avail_in; int32_t L_0 = __this->get_avail_in_19(); V_0 = L_0; // if(len>size) len=size; int32_t L_1 = V_0; int32_t L_2 = ___size2; if ((((int32_t)L_1) <= ((int32_t)L_2))) { goto IL_000d; } } { // if(len>size) len=size; int32_t L_3 = ___size2; V_0 = L_3; } IL_000d: { // if(len==0) return 0; int32_t L_4 = V_0; if (L_4) { goto IL_0012; } } { // if(len==0) return 0; return 0; } IL_0012: { // avail_in-=len; int32_t L_5 = __this->get_avail_in_19(); int32_t L_6 = V_0; __this->set_avail_in_19(((int32_t)il2cpp_codegen_subtract((int32_t)L_5, (int32_t)L_6))); // if(dstate.noheader==0) { Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_7 = __this->get_dstate_26(); NullCheck(L_7); int32_t L_8 = L_7->get_noheader_62(); if (L_8) { goto IL_0051; } } { // adler=_adler.adler32(adler, next_in, next_in_index, len); Adler32_tA7FF29BBF4C9B4738DDE9CA1F7F5B6457DDF5EC2 * L_9 = __this->get__adler_30(); int64_t L_10 = __this->get_adler_29(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_11 = __this->get_next_in_17(); int32_t L_12 = __this->get_next_in_index_18(); int32_t L_13 = V_0; NullCheck(L_9); int64_t L_14; L_14 = Adler32_adler32_m506946C8B2C6E8BF8B37F1AA9193044841485DA8(L_9, L_10, L_11, L_12, L_13, /*hidden argument*/NULL); __this->set_adler_29(L_14); } IL_0051: { // System.Array.Copy(next_in, next_in_index, buf, start, len); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_15 = __this->get_next_in_17(); int32_t L_16 = __this->get_next_in_index_18(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_17 = ___buf0; int32_t L_18 = ___start1; int32_t L_19 = V_0; Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_15, L_16, (RuntimeArray *)(RuntimeArray *)L_17, L_18, L_19, /*hidden argument*/NULL); // next_in_index += len; int32_t L_20 = __this->get_next_in_index_18(); int32_t L_21 = V_0; __this->set_next_in_index_18(((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)L_21))); // total_in += len; int64_t L_22 = __this->get_total_in_20(); int32_t L_23 = V_0; __this->set_total_in_20(((int64_t)il2cpp_codegen_add((int64_t)L_22, (int64_t)((int64_t)((int64_t)L_23))))); // return len; int32_t L_24 = V_0; return L_24; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream::free() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZStream_free_m19D754EEAB35C33A21FF80EFB42F9BB39CB520F7 (ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * __this, const RuntimeMethod* method) { { // next_in=null; __this->set_next_in_17((ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)NULL); // next_out=null; __this->set_next_out_21((ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)NULL); // msg=null; __this->set_msg_25((String_t*)NULL); // _adler=null; __this->set__adler_30((Adler32_tA7FF29BBF4C9B4738DDE9CA1F7F5B6457DDF5EC2 *)NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZStream::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZStream__ctor_m789EC02A4065E8AA186254DD18DEB20CB878FC40 (ZStream_t1AFB5AE350EA0636F3469177D2983CD12DA2CC3C * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Adler32_tA7FF29BBF4C9B4738DDE9CA1F7F5B6457DDF5EC2_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // internal Adler32 _adler=new Adler32(); Adler32_tA7FF29BBF4C9B4738DDE9CA1F7F5B6457DDF5EC2 * L_0 = (Adler32_tA7FF29BBF4C9B4738DDE9CA1F7F5B6457DDF5EC2 *)il2cpp_codegen_object_new(Adler32_tA7FF29BBF4C9B4738DDE9CA1F7F5B6457DDF5EC2_il2cpp_TypeInfo_var); Adler32__ctor_m983BEEF538610DDD988E03C908F07D255C72DA6F(L_0, /*hidden argument*/NULL); __this->set__adler_30(L_0); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC.Abc.ZTauElement::.ctor(BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger,BestHTTP.SecureProtocol.Org.BouncyCastle.Math.BigInteger) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZTauElement__ctor_mE95399087FE4AC1160FA25347D8F9EE2474BD62D (ZTauElement_t30903D25EED314C82D8D5182265B2BAAEF7CDD1C * __this, BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___u0, BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * ___v1, const RuntimeMethod* method) { { // public ZTauElement(BigInteger u, BigInteger v) Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); // this.u = u; BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_0 = ___u0; __this->set_u_0(L_0); // this.v = v; BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_1 = ___v1; __this->set_v_1(L_1); // } return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Int32 BestHTTP.Decompression.Zlib.ZTree::DistanceCode(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ZTree_DistanceCode_m698F79F75EC538C83648B2F06AD694AC2402AD1B (int32_t ___dist0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // return (dist < 256) // ? _dist_code[dist] // : _dist_code[256 + SharedUtils.URShift(dist, 7)]; int32_t L_0 = ___dist0; if ((((int32_t)L_0) < ((int32_t)((int32_t)256)))) { goto IL_001c; } } { IL2CPP_RUNTIME_CLASS_INIT(ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF_il2cpp_TypeInfo_var); SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7* L_1 = ((ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF_StaticFields*)il2cpp_codegen_static_fields_for(ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF_il2cpp_TypeInfo_var))->get__dist_code_6(); int32_t L_2 = ___dist0; int32_t L_3; L_3 = SharedUtils_URShift_m12B0EAE7147B478194B0B530407D220E9DA800B6(L_2, 7, /*hidden argument*/NULL); NullCheck(L_1); int32_t L_4 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)256), (int32_t)L_3)); int8_t L_5 = (L_1)->GetAt(static_cast(L_4)); return L_5; } IL_001c: { IL2CPP_RUNTIME_CLASS_INIT(ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF_il2cpp_TypeInfo_var); SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7* L_6 = ((ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF_StaticFields*)il2cpp_codegen_static_fields_for(ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF_il2cpp_TypeInfo_var))->get__dist_code_6(); int32_t L_7 = ___dist0; NullCheck(L_6); int32_t L_8 = L_7; int8_t L_9 = (L_6)->GetAt(static_cast(L_8)); return L_9; } } // System.Void BestHTTP.Decompression.Zlib.ZTree::gen_bitlen(BestHTTP.Decompression.Zlib.DeflateManager) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZTree_gen_bitlen_m3B368C863CDBEEB1E07429708796718DD6C0AE0C (ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF * __this, DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * ___s0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InternalConstants_t08B73D46FBB46D9AD4963A68BDEACB31F06B5388_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* V_0 = NULL; Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* V_1 = NULL; Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* V_2 = NULL; int32_t V_3 = 0; int32_t V_4 = 0; int32_t V_5 = 0; int32_t V_6 = 0; int32_t V_7 = 0; int32_t V_8 = 0; int32_t V_9 = 0; int16_t V_10 = 0; int32_t V_11 = 0; { // short[] tree = dyn_tree; Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_0 = __this->get_dyn_tree_10(); V_0 = L_0; // short[] stree = staticTree.treeCodes; StaticTree_t2695AB91EBA8322FADCB4C06A07B8ACAA5374809 * L_1 = __this->get_staticTree_12(); NullCheck(L_1); Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_2 = L_1->get_treeCodes_5(); V_1 = L_2; // int[] extra = staticTree.extraBits; StaticTree_t2695AB91EBA8322FADCB4C06A07B8ACAA5374809 * L_3 = __this->get_staticTree_12(); NullCheck(L_3); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_4 = L_3->get_extraBits_6(); V_2 = L_4; // int base_Renamed = staticTree.extraBase; StaticTree_t2695AB91EBA8322FADCB4C06A07B8ACAA5374809 * L_5 = __this->get_staticTree_12(); NullCheck(L_5); int32_t L_6 = L_5->get_extraBase_7(); V_3 = L_6; // int max_length = staticTree.maxLength; StaticTree_t2695AB91EBA8322FADCB4C06A07B8ACAA5374809 * L_7 = __this->get_staticTree_12(); NullCheck(L_7); int32_t L_8 = L_7->get_maxLength_9(); V_4 = L_8; // int overflow = 0; // number of elements with bit length too large V_11 = 0; // for (bits = 0; bits <= InternalConstants.MAX_BITS; bits++) V_8 = 0; goto IL_0050; } IL_0040: { // s.bl_count[bits] = 0; DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_9 = ___s0; NullCheck(L_9); Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_10 = L_9->get_bl_count_57(); int32_t L_11 = V_8; NullCheck(L_10); (L_10)->SetAt(static_cast(L_11), (int16_t)0); // for (bits = 0; bits <= InternalConstants.MAX_BITS; bits++) int32_t L_12 = V_8; V_8 = ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_0050: { // for (bits = 0; bits <= InternalConstants.MAX_BITS; bits++) int32_t L_13 = V_8; IL2CPP_RUNTIME_CLASS_INIT(InternalConstants_t08B73D46FBB46D9AD4963A68BDEACB31F06B5388_il2cpp_TypeInfo_var); int32_t L_14 = ((InternalConstants_t08B73D46FBB46D9AD4963A68BDEACB31F06B5388_StaticFields*)il2cpp_codegen_static_fields_for(InternalConstants_t08B73D46FBB46D9AD4963A68BDEACB31F06B5388_il2cpp_TypeInfo_var))->get_MAX_BITS_0(); if ((((int32_t)L_13) <= ((int32_t)L_14))) { goto IL_0040; } } { // tree[s.heap[s.heap_max] * 2 + 1] = 0; // root of the heap Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_15 = V_0; DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_16 = ___s0; NullCheck(L_16); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_17 = L_16->get_heap_58(); DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_18 = ___s0; NullCheck(L_18); int32_t L_19 = L_18->get_heap_max_60(); NullCheck(L_17); int32_t L_20 = L_19; int32_t L_21 = (L_17)->GetAt(static_cast(L_20)); NullCheck(L_15); (L_15)->SetAt(static_cast(((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_21, (int32_t)2)), (int32_t)1))), (int16_t)0); // for (h = s.heap_max + 1; h < HEAP_SIZE; h++) DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_22 = ___s0; NullCheck(L_22); int32_t L_23 = L_22->get_heap_max_60(); V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); goto IL_0122; } IL_007c: { // n = s.heap[h]; DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_24 = ___s0; NullCheck(L_24); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_25 = L_24->get_heap_58(); int32_t L_26 = V_5; NullCheck(L_25); int32_t L_27 = L_26; int32_t L_28 = (L_25)->GetAt(static_cast(L_27)); V_6 = L_28; // bits = tree[tree[n * 2 + 1] * 2 + 1] + 1; Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_29 = V_0; Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_30 = V_0; int32_t L_31 = V_6; NullCheck(L_30); int32_t L_32 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_31, (int32_t)2)), (int32_t)1)); int16_t L_33 = (L_30)->GetAt(static_cast(L_32)); NullCheck(L_29); int32_t L_34 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_33, (int32_t)2)), (int32_t)1)); int16_t L_35 = (L_29)->GetAt(static_cast(L_34)); V_8 = ((int32_t)il2cpp_codegen_add((int32_t)L_35, (int32_t)1)); // if (bits > max_length) int32_t L_36 = V_8; int32_t L_37 = V_4; if ((((int32_t)L_36) <= ((int32_t)L_37))) { goto IL_00a9; } } { // bits = max_length; overflow++; int32_t L_38 = V_4; V_8 = L_38; // bits = max_length; overflow++; int32_t L_39 = V_11; V_11 = ((int32_t)il2cpp_codegen_add((int32_t)L_39, (int32_t)1)); } IL_00a9: { // tree[n * 2 + 1] = (short) bits; Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_40 = V_0; int32_t L_41 = V_6; int32_t L_42 = V_8; NullCheck(L_40); (L_40)->SetAt(static_cast(((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_41, (int32_t)2)), (int32_t)1))), (int16_t)((int16_t)((int16_t)L_42))); // if (n > max_code) int32_t L_43 = V_6; int32_t L_44 = __this->get_max_code_11(); if ((((int32_t)L_43) > ((int32_t)L_44))) { goto IL_011c; } } { // s.bl_count[bits]++; DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_45 = ___s0; NullCheck(L_45); Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_46 = L_45->get_bl_count_57(); int32_t L_47 = V_8; NullCheck(L_46); int16_t* L_48 = ((L_46)->GetAddressAt(static_cast(L_47))); int32_t L_49 = *((int16_t*)L_48); *((int16_t*)L_48) = (int16_t)((int16_t)((int16_t)((int32_t)il2cpp_codegen_add((int32_t)L_49, (int32_t)1)))); // xbits = 0; V_9 = 0; // if (n >= base_Renamed) int32_t L_50 = V_6; int32_t L_51 = V_3; if ((((int32_t)L_50) < ((int32_t)L_51))) { goto IL_00e1; } } { // xbits = extra[n - base_Renamed]; Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_52 = V_2; int32_t L_53 = V_6; int32_t L_54 = V_3; NullCheck(L_52); int32_t L_55 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_53, (int32_t)L_54)); int32_t L_56 = (L_52)->GetAt(static_cast(L_55)); V_9 = L_56; } IL_00e1: { // f = tree[n * 2]; Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_57 = V_0; int32_t L_58 = V_6; NullCheck(L_57); int32_t L_59 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_58, (int32_t)2)); int16_t L_60 = (L_57)->GetAt(static_cast(L_59)); V_10 = L_60; // s.opt_len += f * (bits + xbits); DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_61 = ___s0; DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_62 = L_61; NullCheck(L_62); int32_t L_63 = L_62->get_opt_len_66(); int16_t L_64 = V_10; int32_t L_65 = V_8; int32_t L_66 = V_9; NullCheck(L_62); L_62->set_opt_len_66(((int32_t)il2cpp_codegen_add((int32_t)L_63, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_64, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_65, (int32_t)L_66))))))); // if (stree != null) Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_67 = V_1; if (!L_67) { goto IL_011c; } } { // s.static_len += f * (stree[n * 2 + 1] + xbits); DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_68 = ___s0; DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_69 = L_68; NullCheck(L_69); int32_t L_70 = L_69->get_static_len_67(); int16_t L_71 = V_10; Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_72 = V_1; int32_t L_73 = V_6; NullCheck(L_72); int32_t L_74 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_73, (int32_t)2)), (int32_t)1)); int16_t L_75 = (L_72)->GetAt(static_cast(L_74)); int32_t L_76 = V_9; NullCheck(L_69); L_69->set_static_len_67(((int32_t)il2cpp_codegen_add((int32_t)L_70, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_71, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_75, (int32_t)L_76))))))); } IL_011c: { // for (h = s.heap_max + 1; h < HEAP_SIZE; h++) int32_t L_77 = V_5; V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_77, (int32_t)1)); } IL_0122: { // for (h = s.heap_max + 1; h < HEAP_SIZE; h++) int32_t L_78 = V_5; IL2CPP_RUNTIME_CLASS_INIT(ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF_il2cpp_TypeInfo_var); int32_t L_79 = ((ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF_StaticFields*)il2cpp_codegen_static_fields_for(ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF_il2cpp_TypeInfo_var))->get_HEAP_SIZE_0(); if ((((int32_t)L_78) < ((int32_t)L_79))) { goto IL_007c; } } { // if (overflow == 0) int32_t L_80 = V_11; if (L_80) { goto IL_0133; } } { // return ; return; } IL_0133: { // bits = max_length - 1; int32_t L_81 = V_4; V_8 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_81, (int32_t)1)); goto IL_0141; } IL_013b: { // bits--; int32_t L_82 = V_8; V_8 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_82, (int32_t)1)); } IL_0141: { // while (s.bl_count[bits] == 0) DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_83 = ___s0; NullCheck(L_83); Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_84 = L_83->get_bl_count_57(); int32_t L_85 = V_8; NullCheck(L_84); int32_t L_86 = L_85; int16_t L_87 = (L_84)->GetAt(static_cast(L_86)); if (!L_87) { goto IL_013b; } } { // s.bl_count[bits]--; // move one leaf down the tree DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_88 = ___s0; NullCheck(L_88); Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_89 = L_88->get_bl_count_57(); int32_t L_90 = V_8; NullCheck(L_89); int16_t* L_91 = ((L_89)->GetAddressAt(static_cast(L_90))); int32_t L_92 = *((int16_t*)L_91); *((int16_t*)L_91) = (int16_t)((int16_t)((int16_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_92, (int32_t)1)))); // s.bl_count[bits + 1] = (short) (s.bl_count[bits + 1] + 2); // move one overflow item as its brother DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_93 = ___s0; NullCheck(L_93); Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_94 = L_93->get_bl_count_57(); int32_t L_95 = V_8; DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_96 = ___s0; NullCheck(L_96); Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_97 = L_96->get_bl_count_57(); int32_t L_98 = V_8; NullCheck(L_97); int32_t L_99 = ((int32_t)il2cpp_codegen_add((int32_t)L_98, (int32_t)1)); int16_t L_100 = (L_97)->GetAt(static_cast(L_99)); NullCheck(L_94); (L_94)->SetAt(static_cast(((int32_t)il2cpp_codegen_add((int32_t)L_95, (int32_t)1))), (int16_t)((int16_t)((int16_t)((int32_t)il2cpp_codegen_add((int32_t)L_100, (int32_t)2))))); // s.bl_count[max_length]--; DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_101 = ___s0; NullCheck(L_101); Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_102 = L_101->get_bl_count_57(); int32_t L_103 = V_4; NullCheck(L_102); int16_t* L_104 = ((L_102)->GetAddressAt(static_cast(L_103))); int32_t L_105 = *((int16_t*)L_104); *((int16_t*)L_104) = (int16_t)((int16_t)((int16_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_105, (int32_t)1)))); // overflow -= 2; int32_t L_106 = V_11; V_11 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_106, (int32_t)2)); // while (overflow > 0); int32_t L_107 = V_11; if ((((int32_t)L_107) > ((int32_t)0))) { goto IL_0133; } } { // for (bits = max_length; bits != 0; bits--) int32_t L_108 = V_4; V_8 = L_108; goto IL_020e; } IL_019c: { // n = s.bl_count[bits]; DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_109 = ___s0; NullCheck(L_109); Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_110 = L_109->get_bl_count_57(); int32_t L_111 = V_8; NullCheck(L_110); int32_t L_112 = L_111; int16_t L_113 = (L_110)->GetAt(static_cast(L_112)); V_6 = L_113; goto IL_0204; } IL_01a9: { // m = s.heap[--h]; DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_114 = ___s0; NullCheck(L_114); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_115 = L_114->get_heap_58(); int32_t L_116 = V_5; int32_t L_117 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_116, (int32_t)1)); V_5 = L_117; NullCheck(L_115); int32_t L_118 = L_117; int32_t L_119 = (L_115)->GetAt(static_cast(L_118)); V_7 = L_119; // if (m > max_code) int32_t L_120 = V_7; int32_t L_121 = __this->get_max_code_11(); if ((((int32_t)L_120) > ((int32_t)L_121))) { goto IL_0204; } } { // if (tree[m * 2 + 1] != bits) Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_122 = V_0; int32_t L_123 = V_7; NullCheck(L_122); int32_t L_124 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_123, (int32_t)2)), (int32_t)1)); int16_t L_125 = (L_122)->GetAt(static_cast(L_124)); int32_t L_126 = V_8; if ((((int32_t)L_125) == ((int32_t)L_126))) { goto IL_01fe; } } { // s.opt_len = (int) (s.opt_len + ((long) bits - (long) tree[m * 2 + 1]) * (long) tree[m * 2]); DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_127 = ___s0; DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_128 = ___s0; NullCheck(L_128); int32_t L_129 = L_128->get_opt_len_66(); int32_t L_130 = V_8; Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_131 = V_0; int32_t L_132 = V_7; NullCheck(L_131); int32_t L_133 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_132, (int32_t)2)), (int32_t)1)); int16_t L_134 = (L_131)->GetAt(static_cast(L_133)); Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_135 = V_0; int32_t L_136 = V_7; NullCheck(L_135); int32_t L_137 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_136, (int32_t)2)); int16_t L_138 = (L_135)->GetAt(static_cast(L_137)); NullCheck(L_127); L_127->set_opt_len_66(((int32_t)((int32_t)((int64_t)il2cpp_codegen_add((int64_t)((int64_t)((int64_t)L_129)), (int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)((int64_t)il2cpp_codegen_subtract((int64_t)((int64_t)((int64_t)L_130)), (int64_t)((int64_t)((int64_t)L_134)))), (int64_t)((int64_t)((int64_t)L_138))))))))); // tree[m * 2 + 1] = (short) bits; Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_139 = V_0; int32_t L_140 = V_7; int32_t L_141 = V_8; NullCheck(L_139); (L_139)->SetAt(static_cast(((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_140, (int32_t)2)), (int32_t)1))), (int16_t)((int16_t)((int16_t)L_141))); } IL_01fe: { // n--; int32_t L_142 = V_6; V_6 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_142, (int32_t)1)); } IL_0204: { // while (n != 0) int32_t L_143 = V_6; if (L_143) { goto IL_01a9; } } { // for (bits = max_length; bits != 0; bits--) int32_t L_144 = V_8; V_8 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_144, (int32_t)1)); } IL_020e: { // for (bits = max_length; bits != 0; bits--) int32_t L_145 = V_8; if (L_145) { goto IL_019c; } } { // } return; } } // System.Void BestHTTP.Decompression.Zlib.ZTree::build_tree(BestHTTP.Decompression.Zlib.DeflateManager) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZTree_build_tree_m201AC178F3AEFE2C3A7E18C9CD88658252628DA8 (ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF * __this, DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * ___s0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tA269614262430118C9FC5C4D9EF4F61C812568F0_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* V_0 = NULL; Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* V_1 = NULL; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; int32_t V_5 = 0; int32_t V_6 = 0; int32_t V_7 = 0; int16_t V_8 = 0; int32_t G_B9_0 = 0; Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* G_B9_1 = NULL; int32_t G_B8_0 = 0; Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* G_B8_1 = NULL; int32_t G_B10_0 = 0; int32_t G_B10_1 = 0; Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* G_B10_2 = NULL; { // short[] tree = dyn_tree; Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_0 = __this->get_dyn_tree_10(); V_0 = L_0; // short[] stree = staticTree.treeCodes; StaticTree_t2695AB91EBA8322FADCB4C06A07B8ACAA5374809 * L_1 = __this->get_staticTree_12(); NullCheck(L_1); Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_2 = L_1->get_treeCodes_5(); V_1 = L_2; // int elems = staticTree.elems; StaticTree_t2695AB91EBA8322FADCB4C06A07B8ACAA5374809 * L_3 = __this->get_staticTree_12(); NullCheck(L_3); int32_t L_4 = L_3->get_elems_8(); V_2 = L_4; // int max_code = -1; // largest code with non zero frequency V_5 = (-1); // s.heap_len = 0; DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_5 = ___s0; NullCheck(L_5); L_5->set_heap_len_59(0); // s.heap_max = HEAP_SIZE; DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_6 = ___s0; IL2CPP_RUNTIME_CLASS_INIT(ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF_il2cpp_TypeInfo_var); int32_t L_7 = ((ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF_StaticFields*)il2cpp_codegen_static_fields_for(ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF_il2cpp_TypeInfo_var))->get_HEAP_SIZE_0(); NullCheck(L_6); L_6->set_heap_max_60(L_7); // for (n = 0; n < elems; n++) V_3 = 0; goto IL_0075; } IL_0038: { // if (tree[n * 2] != 0) Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_8 = V_0; int32_t L_9 = V_3; NullCheck(L_8); int32_t L_10 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_9, (int32_t)2)); int16_t L_11 = (L_8)->GetAt(static_cast(L_10)); if (!L_11) { goto IL_0069; } } { // s.heap[++s.heap_len] = max_code = n; DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_12 = ___s0; NullCheck(L_12); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_13 = L_12->get_heap_58(); DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_14 = ___s0; DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_15 = L_14; NullCheck(L_15); int32_t L_16 = L_15->get_heap_len_59(); V_7 = ((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); int32_t L_17 = V_7; NullCheck(L_15); L_15->set_heap_len_59(L_17); int32_t L_18 = V_7; int32_t L_19 = V_3; int32_t L_20 = L_19; V_5 = L_20; NullCheck(L_13); (L_13)->SetAt(static_cast(L_18), (int32_t)L_20); // s.depth[n] = 0; DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_21 = ___s0; NullCheck(L_21); SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7* L_22 = L_21->get_depth_61(); int32_t L_23 = V_3; NullCheck(L_22); (L_22)->SetAt(static_cast(L_23), (int8_t)0); // } goto IL_0071; } IL_0069: { // tree[n * 2 + 1] = 0; Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_24 = V_0; int32_t L_25 = V_3; NullCheck(L_24); (L_24)->SetAt(static_cast(((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_25, (int32_t)2)), (int32_t)1))), (int16_t)0); } IL_0071: { // for (n = 0; n < elems; n++) int32_t L_26 = V_3; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1)); } IL_0075: { // for (n = 0; n < elems; n++) int32_t L_27 = V_3; int32_t L_28 = V_2; if ((((int32_t)L_27) < ((int32_t)L_28))) { goto IL_0038; } } { goto IL_00e3; } IL_007b: { // node = s.heap[++s.heap_len] = (max_code < 2?++max_code:0); DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_29 = ___s0; NullCheck(L_29); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_30 = L_29->get_heap_58(); DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_31 = ___s0; DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_32 = L_31; NullCheck(L_32); int32_t L_33 = L_32->get_heap_len_59(); V_7 = ((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)1)); int32_t L_34 = V_7; NullCheck(L_32); L_32->set_heap_len_59(L_34); int32_t L_35 = V_7; int32_t L_36 = V_5; G_B8_0 = L_35; G_B8_1 = L_30; if ((((int32_t)L_36) < ((int32_t)2))) { G_B9_0 = L_35; G_B9_1 = L_30; goto IL_009d; } } { G_B10_0 = 0; G_B10_1 = G_B8_0; G_B10_2 = G_B8_1; goto IL_00a4; } IL_009d: { int32_t L_37 = V_5; int32_t L_38 = ((int32_t)il2cpp_codegen_add((int32_t)L_37, (int32_t)1)); V_5 = L_38; G_B10_0 = L_38; G_B10_1 = G_B9_0; G_B10_2 = G_B9_1; } IL_00a4: { int32_t L_39 = G_B10_0; V_7 = L_39; NullCheck(G_B10_2); (G_B10_2)->SetAt(static_cast(G_B10_1), (int32_t)L_39); int32_t L_40 = V_7; V_6 = L_40; // tree[node * 2] = 1; Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_41 = V_0; int32_t L_42 = V_6; NullCheck(L_41); (L_41)->SetAt(static_cast(((int32_t)il2cpp_codegen_multiply((int32_t)L_42, (int32_t)2))), (int16_t)1); // s.depth[node] = 0; DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_43 = ___s0; NullCheck(L_43); SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7* L_44 = L_43->get_depth_61(); int32_t L_45 = V_6; NullCheck(L_44); (L_44)->SetAt(static_cast(L_45), (int8_t)0); // s.opt_len--; DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_46 = ___s0; DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_47 = L_46; NullCheck(L_47); int32_t L_48 = L_47->get_opt_len_66(); NullCheck(L_47); L_47->set_opt_len_66(((int32_t)il2cpp_codegen_subtract((int32_t)L_48, (int32_t)1))); // if (stree != null) Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_49 = V_1; if (!L_49) { goto IL_00e3; } } { // s.static_len -= stree[node * 2 + 1]; DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_50 = ___s0; DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_51 = L_50; NullCheck(L_51); int32_t L_52 = L_51->get_static_len_67(); Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_53 = V_1; int32_t L_54 = V_6; NullCheck(L_53); int32_t L_55 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_54, (int32_t)2)), (int32_t)1)); int16_t L_56 = (L_53)->GetAt(static_cast(L_55)); NullCheck(L_51); L_51->set_static_len_67(((int32_t)il2cpp_codegen_subtract((int32_t)L_52, (int32_t)L_56))); } IL_00e3: { // while (s.heap_len < 2) DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_57 = ___s0; NullCheck(L_57); int32_t L_58 = L_57->get_heap_len_59(); if ((((int32_t)L_58) < ((int32_t)2))) { goto IL_007b; } } { // this.max_code = max_code; int32_t L_59 = V_5; __this->set_max_code_11(L_59); // for (n = s.heap_len / 2; n >= 1; n--) DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_60 = ___s0; NullCheck(L_60); int32_t L_61 = L_60->get_heap_len_59(); V_3 = ((int32_t)((int32_t)L_61/(int32_t)2)); goto IL_010b; } IL_00ff: { // s.pqdownheap(tree, n); DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_62 = ___s0; Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_63 = V_0; int32_t L_64 = V_3; NullCheck(L_62); DeflateManager_pqdownheap_m4603B0D9C3AD4E9B7D87BFB4084289E662611202(L_62, L_63, L_64, /*hidden argument*/NULL); // for (n = s.heap_len / 2; n >= 1; n--) int32_t L_65 = V_3; V_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_65, (int32_t)1)); } IL_010b: { // for (n = s.heap_len / 2; n >= 1; n--) int32_t L_66 = V_3; if ((((int32_t)L_66) >= ((int32_t)1))) { goto IL_00ff; } } { // node = elems; // next internal node of the tree int32_t L_67 = V_2; V_6 = L_67; } IL_0112: { // n = s.heap[1]; DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_68 = ___s0; NullCheck(L_68); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_69 = L_68->get_heap_58(); NullCheck(L_69); int32_t L_70 = 1; int32_t L_71 = (L_69)->GetAt(static_cast(L_70)); V_3 = L_71; // s.heap[1] = s.heap[s.heap_len--]; DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_72 = ___s0; NullCheck(L_72); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_73 = L_72->get_heap_58(); DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_74 = ___s0; NullCheck(L_74); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_75 = L_74->get_heap_58(); DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_76 = ___s0; DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_77 = L_76; NullCheck(L_77); int32_t L_78 = L_77->get_heap_len_59(); V_7 = L_78; int32_t L_79 = V_7; NullCheck(L_77); L_77->set_heap_len_59(((int32_t)il2cpp_codegen_subtract((int32_t)L_79, (int32_t)1))); int32_t L_80 = V_7; NullCheck(L_75); int32_t L_81 = L_80; int32_t L_82 = (L_75)->GetAt(static_cast(L_81)); NullCheck(L_73); (L_73)->SetAt(static_cast(1), (int32_t)L_82); // s.pqdownheap(tree, 1); DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_83 = ___s0; Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_84 = V_0; NullCheck(L_83); DeflateManager_pqdownheap_m4603B0D9C3AD4E9B7D87BFB4084289E662611202(L_83, L_84, 1, /*hidden argument*/NULL); // m = s.heap[1]; // m = node of next least frequency DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_85 = ___s0; NullCheck(L_85); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_86 = L_85->get_heap_58(); NullCheck(L_86); int32_t L_87 = 1; int32_t L_88 = (L_86)->GetAt(static_cast(L_87)); V_4 = L_88; // s.heap[--s.heap_max] = n; // keep the nodes sorted by frequency DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_89 = ___s0; NullCheck(L_89); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_90 = L_89->get_heap_58(); DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_91 = ___s0; DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_92 = L_91; NullCheck(L_92); int32_t L_93 = L_92->get_heap_max_60(); V_7 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_93, (int32_t)1)); int32_t L_94 = V_7; NullCheck(L_92); L_92->set_heap_max_60(L_94); int32_t L_95 = V_7; int32_t L_96 = V_3; NullCheck(L_90); (L_90)->SetAt(static_cast(L_95), (int32_t)L_96); // s.heap[--s.heap_max] = m; DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_97 = ___s0; NullCheck(L_97); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_98 = L_97->get_heap_58(); DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_99 = ___s0; DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_100 = L_99; NullCheck(L_100); int32_t L_101 = L_100->get_heap_max_60(); V_7 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_101, (int32_t)1)); int32_t L_102 = V_7; NullCheck(L_100); L_100->set_heap_max_60(L_102); int32_t L_103 = V_7; int32_t L_104 = V_4; NullCheck(L_98); (L_98)->SetAt(static_cast(L_103), (int32_t)L_104); // tree[node * 2] = unchecked((short) (tree[n * 2] + tree[m * 2])); Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_105 = V_0; int32_t L_106 = V_6; Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_107 = V_0; int32_t L_108 = V_3; NullCheck(L_107); int32_t L_109 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_108, (int32_t)2)); int16_t L_110 = (L_107)->GetAt(static_cast(L_109)); Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_111 = V_0; int32_t L_112 = V_4; NullCheck(L_111); int32_t L_113 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_112, (int32_t)2)); int16_t L_114 = (L_111)->GetAt(static_cast(L_113)); NullCheck(L_105); (L_105)->SetAt(static_cast(((int32_t)il2cpp_codegen_multiply((int32_t)L_106, (int32_t)2))), (int16_t)((int16_t)((int16_t)((int32_t)il2cpp_codegen_add((int32_t)L_110, (int32_t)L_114))))); // s.depth[node] = (sbyte) (System.Math.Max((byte) s.depth[n], (byte) s.depth[m]) + 1); DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_115 = ___s0; NullCheck(L_115); SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7* L_116 = L_115->get_depth_61(); int32_t L_117 = V_6; DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_118 = ___s0; NullCheck(L_118); SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7* L_119 = L_118->get_depth_61(); int32_t L_120 = V_3; NullCheck(L_119); int32_t L_121 = L_120; int8_t L_122 = (L_119)->GetAt(static_cast(L_121)); DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_123 = ___s0; NullCheck(L_123); SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7* L_124 = L_123->get_depth_61(); int32_t L_125 = V_4; NullCheck(L_124); int32_t L_126 = L_125; int8_t L_127 = (L_124)->GetAt(static_cast(L_126)); IL2CPP_RUNTIME_CLASS_INIT(Math_tA269614262430118C9FC5C4D9EF4F61C812568F0_il2cpp_TypeInfo_var); uint8_t L_128; L_128 = Math_Max_mCA27A75C0677CDAF214D29620E7F508A9C6FB30A((uint8_t)((int32_t)((uint8_t)L_122)), (uint8_t)((int32_t)((uint8_t)L_127)), /*hidden argument*/NULL); NullCheck(L_116); (L_116)->SetAt(static_cast(L_117), (int8_t)((int8_t)((int8_t)((int32_t)il2cpp_codegen_add((int32_t)L_128, (int32_t)1))))); // tree[n * 2 + 1] = tree[m * 2 + 1] = (short) node; Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_129 = V_0; int32_t L_130 = V_3; Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_131 = V_0; int32_t L_132 = V_4; int32_t L_133 = V_6; int16_t L_134 = ((int16_t)((int16_t)L_133)); V_8 = L_134; NullCheck(L_131); (L_131)->SetAt(static_cast(((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_132, (int32_t)2)), (int32_t)1))), (int16_t)L_134); int16_t L_135 = V_8; NullCheck(L_129); (L_129)->SetAt(static_cast(((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_130, (int32_t)2)), (int32_t)1))), (int16_t)L_135); // s.heap[1] = node++; DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_136 = ___s0; NullCheck(L_136); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_137 = L_136->get_heap_58(); int32_t L_138 = V_6; int32_t L_139 = L_138; V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_139, (int32_t)1)); NullCheck(L_137); (L_137)->SetAt(static_cast(1), (int32_t)L_139); // s.pqdownheap(tree, 1); DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_140 = ___s0; Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_141 = V_0; NullCheck(L_140); DeflateManager_pqdownheap_m4603B0D9C3AD4E9B7D87BFB4084289E662611202(L_140, L_141, 1, /*hidden argument*/NULL); // while (s.heap_len >= 2); DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_142 = ___s0; NullCheck(L_142); int32_t L_143 = L_142->get_heap_len_59(); if ((((int32_t)L_143) >= ((int32_t)2))) { goto IL_0112; } } { // s.heap[--s.heap_max] = s.heap[1]; DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_144 = ___s0; NullCheck(L_144); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_145 = L_144->get_heap_58(); DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_146 = ___s0; DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_147 = L_146; NullCheck(L_147); int32_t L_148 = L_147->get_heap_max_60(); V_7 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_148, (int32_t)1)); int32_t L_149 = V_7; NullCheck(L_147); L_147->set_heap_max_60(L_149); int32_t L_150 = V_7; DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_151 = ___s0; NullCheck(L_151); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_152 = L_151->get_heap_58(); NullCheck(L_152); int32_t L_153 = 1; int32_t L_154 = (L_152)->GetAt(static_cast(L_153)); NullCheck(L_145); (L_145)->SetAt(static_cast(L_150), (int32_t)L_154); // gen_bitlen(s); DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_155 = ___s0; ZTree_gen_bitlen_m3B368C863CDBEEB1E07429708796718DD6C0AE0C(__this, L_155, /*hidden argument*/NULL); // gen_codes(tree, max_code, s.bl_count); Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_156 = V_0; int32_t L_157 = V_5; DeflateManager_tB20D7A763EA74E7B59F039CA49EDAA65322A2142 * L_158 = ___s0; NullCheck(L_158); Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_159 = L_158->get_bl_count_57(); IL2CPP_RUNTIME_CLASS_INIT(ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF_il2cpp_TypeInfo_var); ZTree_gen_codes_mCC47D960B5C04BF005DC95E749BE89E834CE88AB(L_156, L_157, L_159, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.Decompression.Zlib.ZTree::gen_codes(System.Int16[],System.Int32,System.Int16[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZTree_gen_codes_mCC47D960B5C04BF005DC95E749BE89E834CE88AB (Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* ___tree0, int32_t ___max_code1, Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* ___bl_count2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InternalConstants_t08B73D46FBB46D9AD4963A68BDEACB31F06B5388_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* V_0 = NULL; int16_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; int16_t V_5 = 0; { // short[] next_code = new short[InternalConstants.MAX_BITS + 1]; // next code value for each bit length IL2CPP_RUNTIME_CLASS_INIT(InternalConstants_t08B73D46FBB46D9AD4963A68BDEACB31F06B5388_il2cpp_TypeInfo_var); int32_t L_0 = ((InternalConstants_t08B73D46FBB46D9AD4963A68BDEACB31F06B5388_StaticFields*)il2cpp_codegen_static_fields_for(InternalConstants_t08B73D46FBB46D9AD4963A68BDEACB31F06B5388_il2cpp_TypeInfo_var))->get_MAX_BITS_0(); Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_1 = (Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD*)(Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD*)SZArrayNew(Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)1))); V_0 = L_1; // short code = 0; // running code value V_1 = (int16_t)0; // for (bits = 1; bits <= InternalConstants.MAX_BITS; bits++) V_2 = 1; goto IL_0026; } IL_0013: { // next_code[bits] = code = (short) ((code + bl_count[bits - 1]) << 1); Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_2 = V_0; int32_t L_3 = V_2; int16_t L_4 = V_1; Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_5 = ___bl_count2; int32_t L_6 = V_2; NullCheck(L_5); int32_t L_7 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)); int16_t L_8 = (L_5)->GetAt(static_cast(L_7)); int16_t L_9 = ((int16_t)((int16_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)L_8))<<(int32_t)1)))); V_1 = L_9; NullCheck(L_2); (L_2)->SetAt(static_cast(L_3), (int16_t)L_9); // for (bits = 1; bits <= InternalConstants.MAX_BITS; bits++) int32_t L_10 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1)); } IL_0026: { // for (bits = 1; bits <= InternalConstants.MAX_BITS; bits++) int32_t L_11 = V_2; IL2CPP_RUNTIME_CLASS_INIT(InternalConstants_t08B73D46FBB46D9AD4963A68BDEACB31F06B5388_il2cpp_TypeInfo_var); int32_t L_12 = ((InternalConstants_t08B73D46FBB46D9AD4963A68BDEACB31F06B5388_StaticFields*)il2cpp_codegen_static_fields_for(InternalConstants_t08B73D46FBB46D9AD4963A68BDEACB31F06B5388_il2cpp_TypeInfo_var))->get_MAX_BITS_0(); if ((((int32_t)L_11) <= ((int32_t)L_12))) { goto IL_0013; } } { // for (n = 0; n <= max_code; n++) V_3 = 0; goto IL_0064; } IL_0032: { // int len = tree[n * 2 + 1]; Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_13 = ___tree0; int32_t L_14 = V_3; NullCheck(L_13); int32_t L_15 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_14, (int32_t)2)), (int32_t)1)); int16_t L_16 = (L_13)->GetAt(static_cast(L_15)); V_4 = L_16; // if (len == 0) int32_t L_17 = V_4; if (!L_17) { goto IL_0060; } } { // tree[n * 2] = unchecked((short) (bi_reverse(next_code[len]++, len))); Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_18 = ___tree0; int32_t L_19 = V_3; Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_20 = V_0; int32_t L_21 = V_4; NullCheck(L_20); int16_t* L_22 = ((L_20)->GetAddressAt(static_cast(L_21))); int32_t L_23 = *((int16_t*)L_22); V_5 = (int16_t)L_23; int16_t L_24 = V_5; *((int16_t*)L_22) = (int16_t)((int16_t)((int16_t)((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1)))); int16_t L_25 = V_5; int32_t L_26 = V_4; IL2CPP_RUNTIME_CLASS_INIT(ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF_il2cpp_TypeInfo_var); int32_t L_27; L_27 = ZTree_bi_reverse_mA40C387AAABA95A66E8C085387F553EA8AB23A9E(L_25, L_26, /*hidden argument*/NULL); NullCheck(L_18); (L_18)->SetAt(static_cast(((int32_t)il2cpp_codegen_multiply((int32_t)L_19, (int32_t)2))), (int16_t)((int16_t)((int16_t)L_27))); } IL_0060: { // for (n = 0; n <= max_code; n++) int32_t L_28 = V_3; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)1)); } IL_0064: { // for (n = 0; n <= max_code; n++) int32_t L_29 = V_3; int32_t L_30 = ___max_code1; if ((((int32_t)L_29) <= ((int32_t)L_30))) { goto IL_0032; } } { // } return; } } // System.Int32 BestHTTP.Decompression.Zlib.ZTree::bi_reverse(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ZTree_bi_reverse_mA40C387AAABA95A66E8C085387F553EA8AB23A9E (int32_t ___code0, int32_t ___len1, const RuntimeMethod* method) { int32_t V_0 = 0; { // int res = 0; V_0 = 0; } IL_0002: { // res |= code & 1; int32_t L_0 = V_0; int32_t L_1 = ___code0; V_0 = ((int32_t)((int32_t)L_0|(int32_t)((int32_t)((int32_t)L_1&(int32_t)1)))); // code >>= 1; //SharedUtils.URShift(code, 1); int32_t L_2 = ___code0; ___code0 = ((int32_t)((int32_t)L_2>>(int32_t)1)); // res <<= 1; int32_t L_3 = V_0; V_0 = ((int32_t)((int32_t)L_3<<(int32_t)1)); // while (--len > 0); int32_t L_4 = ___len1; int32_t L_5 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); ___len1 = L_5; if ((((int32_t)L_5) > ((int32_t)0))) { goto IL_0002; } } { // return res >> 1; int32_t L_6 = V_0; return ((int32_t)((int32_t)L_6>>(int32_t)1)); } } // System.Void BestHTTP.Decompression.Zlib.ZTree::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZTree__ctor_mECED5C038329B7F189C4F1A17236E25E05A40D9E (ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } // System.Void BestHTTP.Decompression.Zlib.ZTree::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZTree__cctor_mC685EE84885645097A7C242C8C342AB879CF88ED (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InternalConstants_t08B73D46FBB46D9AD4963A68BDEACB31F06B5388_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____111B15B20E0428A22EEAA1E54B0D3B008A7A3E79C8F7F4E783710F569E9CEF15_16_FieldInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____3E4FB5FE52BF269D6EE955711016291D6D327A4AAC39B2464C53C6BD0D73242A_69_FieldInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____5961BF1FCF83803CE7775E15E9DB8D21AF741539B85CCFDD643F9E22CC7820D6_101_FieldInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____7DDF88204E7E265240211841F0AB290A5E77EE4F9223EB2E39F9B89C30C41B9D_144_FieldInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____8FC498A953A183E1FE81A183AE59047435BB9B33D657C625FAB03D38BE19F92E_164_FieldInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____B23D510F520CB4BA8AFA847F8A40E757C40CB6A55B237EFA1AC6D3984911B114_212_FieldInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____B9D4AF390AFC6A0F149B843D651CFEBC1C4EC496A0263B72207836F9C525E1C4_227_FieldInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____F8D7861760C88CC514F66095AF0AED47ECBA063ADB65F47125ED07BCC2CF9842_298_FieldInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // private static readonly int HEAP_SIZE = (2 * InternalConstants.L_CODES + 1); IL2CPP_RUNTIME_CLASS_INIT(InternalConstants_t08B73D46FBB46D9AD4963A68BDEACB31F06B5388_il2cpp_TypeInfo_var); int32_t L_0 = ((InternalConstants_t08B73D46FBB46D9AD4963A68BDEACB31F06B5388_StaticFields*)il2cpp_codegen_static_fields_for(InternalConstants_t08B73D46FBB46D9AD4963A68BDEACB31F06B5388_il2cpp_TypeInfo_var))->get_L_CODES_5(); ((ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF_StaticFields*)il2cpp_codegen_static_fields_for(ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF_il2cpp_TypeInfo_var))->set_HEAP_SIZE_0(((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)2, (int32_t)L_0)), (int32_t)1))); // internal static readonly int[] ExtraLengthBits = new int[] // { // 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, // 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0 // }; Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_1 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)((int32_t)29)); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_2 = L_1; RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 L_3 = { reinterpret_cast (U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____F8D7861760C88CC514F66095AF0AED47ECBA063ADB65F47125ED07BCC2CF9842_298_FieldInfo_var) }; RuntimeHelpers_InitializeArray_mE27238308FED781F2D6A719F0903F2E1311B058F((RuntimeArray *)(RuntimeArray *)L_2, L_3, /*hidden argument*/NULL); ((ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF_StaticFields*)il2cpp_codegen_static_fields_for(ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF_il2cpp_TypeInfo_var))->set_ExtraLengthBits_1(L_2); // internal static readonly int[] ExtraDistanceBits = new int[] // { // 0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, // 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13 // }; Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_4 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)((int32_t)30)); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_5 = L_4; RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 L_6 = { reinterpret_cast (U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____B23D510F520CB4BA8AFA847F8A40E757C40CB6A55B237EFA1AC6D3984911B114_212_FieldInfo_var) }; RuntimeHelpers_InitializeArray_mE27238308FED781F2D6A719F0903F2E1311B058F((RuntimeArray *)(RuntimeArray *)L_5, L_6, /*hidden argument*/NULL); ((ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF_StaticFields*)il2cpp_codegen_static_fields_for(ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF_il2cpp_TypeInfo_var))->set_ExtraDistanceBits_2(L_5); // internal static readonly int[] extra_blbits = new int[]{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 7}; Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_7 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)((int32_t)19)); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_8 = L_7; RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 L_9 = { reinterpret_cast (U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____8FC498A953A183E1FE81A183AE59047435BB9B33D657C625FAB03D38BE19F92E_164_FieldInfo_var) }; RuntimeHelpers_InitializeArray_mE27238308FED781F2D6A719F0903F2E1311B058F((RuntimeArray *)(RuntimeArray *)L_8, L_9, /*hidden argument*/NULL); ((ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF_StaticFields*)il2cpp_codegen_static_fields_for(ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF_il2cpp_TypeInfo_var))->set_extra_blbits_3(L_8); // internal static readonly sbyte[] bl_order = new sbyte[]{16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7* L_10 = (SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7*)(SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7*)SZArrayNew(SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7_il2cpp_TypeInfo_var, (uint32_t)((int32_t)19)); SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7* L_11 = L_10; RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 L_12 = { reinterpret_cast (U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____111B15B20E0428A22EEAA1E54B0D3B008A7A3E79C8F7F4E783710F569E9CEF15_16_FieldInfo_var) }; RuntimeHelpers_InitializeArray_mE27238308FED781F2D6A719F0903F2E1311B058F((RuntimeArray *)(RuntimeArray *)L_11, L_12, /*hidden argument*/NULL); ((ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF_StaticFields*)il2cpp_codegen_static_fields_for(ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF_il2cpp_TypeInfo_var))->set_bl_order_4(L_11); // private static readonly sbyte[] _dist_code = new sbyte[] // { // 0, 1, 2, 3, 4, 4, 5, 5, 6, 6, 6, 6, 7, 7, 7, 7, // 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, // 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, // 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, // 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, // 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, // 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, // 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, // 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, // 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, // 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, // 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, // 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, // 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, // 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, // 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, // 0, 0, 16, 17, 18, 18, 19, 19, 20, 20, 20, 20, 21, 21, 21, 21, // 22, 22, 22, 22, 22, 22, 22, 22, 23, 23, 23, 23, 23, 23, 23, 23, // 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, // 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, // 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, // 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, // 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, // 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, // 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, // 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, // 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, // 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, // 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, // 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, // 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, // 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29 // }; SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7* L_13 = (SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7*)(SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7*)SZArrayNew(SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7_il2cpp_TypeInfo_var, (uint32_t)((int32_t)512)); SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7* L_14 = L_13; RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 L_15 = { reinterpret_cast (U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____3E4FB5FE52BF269D6EE955711016291D6D327A4AAC39B2464C53C6BD0D73242A_69_FieldInfo_var) }; RuntimeHelpers_InitializeArray_mE27238308FED781F2D6A719F0903F2E1311B058F((RuntimeArray *)(RuntimeArray *)L_14, L_15, /*hidden argument*/NULL); ((ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF_StaticFields*)il2cpp_codegen_static_fields_for(ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF_il2cpp_TypeInfo_var))->set__dist_code_6(L_14); // internal static readonly sbyte[] LengthCode = new sbyte[] // { // 0, 1, 2, 3, 4, 5, 6, 7, 8, 8, 9, 9, 10, 10, 11, 11, // 12, 12, 12, 12, 13, 13, 13, 13, 14, 14, 14, 14, 15, 15, 15, 15, // 16, 16, 16, 16, 16, 16, 16, 16, 17, 17, 17, 17, 17, 17, 17, 17, // 18, 18, 18, 18, 18, 18, 18, 18, 19, 19, 19, 19, 19, 19, 19, 19, // 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, // 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, // 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, // 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, // 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, // 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, // 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, // 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, // 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, // 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, // 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, // 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 28 // }; SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7* L_16 = (SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7*)(SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7*)SZArrayNew(SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7_il2cpp_TypeInfo_var, (uint32_t)((int32_t)256)); SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7* L_17 = L_16; RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 L_18 = { reinterpret_cast (U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____B9D4AF390AFC6A0F149B843D651CFEBC1C4EC496A0263B72207836F9C525E1C4_227_FieldInfo_var) }; RuntimeHelpers_InitializeArray_mE27238308FED781F2D6A719F0903F2E1311B058F((RuntimeArray *)(RuntimeArray *)L_17, L_18, /*hidden argument*/NULL); ((ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF_StaticFields*)il2cpp_codegen_static_fields_for(ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF_il2cpp_TypeInfo_var))->set_LengthCode_7(L_17); // internal static readonly int[] LengthBase = new int[] // { // 0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 12, 14, 16, 20, 24, 28, // 32, 40, 48, 56, 64, 80, 96, 112, 128, 160, 192, 224, 0 // }; Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_19 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)((int32_t)29)); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_20 = L_19; RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 L_21 = { reinterpret_cast (U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____7DDF88204E7E265240211841F0AB290A5E77EE4F9223EB2E39F9B89C30C41B9D_144_FieldInfo_var) }; RuntimeHelpers_InitializeArray_mE27238308FED781F2D6A719F0903F2E1311B058F((RuntimeArray *)(RuntimeArray *)L_20, L_21, /*hidden argument*/NULL); ((ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF_StaticFields*)il2cpp_codegen_static_fields_for(ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF_il2cpp_TypeInfo_var))->set_LengthBase_8(L_20); // internal static readonly int[] DistanceBase = new int[] // { // 0, 1, 2, 3, 4, 6, 8, 12, 16, 24, 32, 48, 64, 96, 128, 192, // 256, 384, 512, 768, 1024, 1536, 2048, 3072, 4096, 6144, 8192, 12288, 16384, 24576 // }; Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_22 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)((int32_t)30)); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_23 = L_22; RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 L_24 = { reinterpret_cast (U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____5961BF1FCF83803CE7775E15E9DB8D21AF741539B85CCFDD643F9E22CC7820D6_101_FieldInfo_var) }; RuntimeHelpers_InitializeArray_mE27238308FED781F2D6A719F0903F2E1311B058F((RuntimeArray *)(RuntimeArray *)L_23, L_24, /*hidden argument*/NULL); ((ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF_StaticFields*)il2cpp_codegen_static_fields_for(ZTree_tE0C37606238932650C1F05A7A2D450DD4FB427DF_il2cpp_TypeInfo_var))->set_DistanceBase_9(L_23); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZTree::d_code(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ZTree_d_code_mC4A20BC4FCC00E73C9EE8716749955A0B32F1032 (int32_t ___dist0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // return ((dist) < 256 ? _dist_code[dist] : _dist_code[256+((dist)>>7)]); int32_t L_0 = ___dist0; if ((((int32_t)L_0) < ((int32_t)((int32_t)256)))) { goto IL_0018; } } { IL2CPP_RUNTIME_CLASS_INIT(ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC_il2cpp_TypeInfo_var); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = ((ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC_StaticFields*)il2cpp_codegen_static_fields_for(ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC_il2cpp_TypeInfo_var))->get__dist_code_18(); int32_t L_2 = ___dist0; NullCheck(L_1); int32_t L_3 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)256), (int32_t)((int32_t)((int32_t)L_2>>(int32_t)7)))); uint8_t L_4 = (L_1)->GetAt(static_cast(L_3)); return L_4; } IL_0018: { IL2CPP_RUNTIME_CLASS_INIT(ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC_il2cpp_TypeInfo_var); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_5 = ((ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC_StaticFields*)il2cpp_codegen_static_fields_for(ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC_il2cpp_TypeInfo_var))->get__dist_code_18(); int32_t L_6 = ___dist0; NullCheck(L_5); int32_t L_7 = L_6; uint8_t L_8 = (L_5)->GetAt(static_cast(L_7)); return L_8; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZTree::gen_bitlen(BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZTree_gen_bitlen_m91FA430263D220341C2020CFC00FEF4CA9346B84 (ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC * __this, Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * ___s0, const RuntimeMethod* method) { Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* V_0 = NULL; Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* V_1 = NULL; Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* V_2 = NULL; int32_t V_3 = 0; int32_t V_4 = 0; int32_t V_5 = 0; int32_t V_6 = 0; int32_t V_7 = 0; int32_t V_8 = 0; int32_t V_9 = 0; int16_t V_10 = 0; int32_t V_11 = 0; { // short[] tree = dyn_tree; Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_0 = __this->get_dyn_tree_22(); V_0 = L_0; // short[] stree = stat_desc.static_tree; StaticTree_tFAE01A2B378F804F70FD3C06C5F18BEF8E31CFE5 * L_1 = __this->get_stat_desc_24(); NullCheck(L_1); Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_2 = L_1->get_static_tree_12(); V_1 = L_2; // int[] extra = stat_desc.extra_bits; StaticTree_tFAE01A2B378F804F70FD3C06C5F18BEF8E31CFE5 * L_3 = __this->get_stat_desc_24(); NullCheck(L_3); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_4 = L_3->get_extra_bits_13(); V_2 = L_4; // int based = stat_desc.extra_base; StaticTree_tFAE01A2B378F804F70FD3C06C5F18BEF8E31CFE5 * L_5 = __this->get_stat_desc_24(); NullCheck(L_5); int32_t L_6 = L_5->get_extra_base_14(); V_3 = L_6; // int max_length = stat_desc.max_length; StaticTree_tFAE01A2B378F804F70FD3C06C5F18BEF8E31CFE5 * L_7 = __this->get_stat_desc_24(); NullCheck(L_7); int32_t L_8 = L_7->get_max_length_16(); V_4 = L_8; // int overflow = 0; // number of elements with bit length too large V_11 = 0; // for (bits = 0; bits <= MAX_BITS; bits++) s.bl_count[bits] = 0; V_8 = 0; goto IL_0050; } IL_0040: { // for (bits = 0; bits <= MAX_BITS; bits++) s.bl_count[bits] = 0; Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_9 = ___s0; NullCheck(L_9); Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_10 = L_9->get_bl_count_98(); int32_t L_11 = V_8; NullCheck(L_10); (L_10)->SetAt(static_cast(L_11), (int16_t)0); // for (bits = 0; bits <= MAX_BITS; bits++) s.bl_count[bits] = 0; int32_t L_12 = V_8; V_8 = ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_0050: { // for (bits = 0; bits <= MAX_BITS; bits++) s.bl_count[bits] = 0; int32_t L_13 = V_8; if ((((int32_t)L_13) <= ((int32_t)((int32_t)15)))) { goto IL_0040; } } { // tree[s.heap[s.heap_max]*2+1] = 0; // root of the heap Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_14 = V_0; Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_15 = ___s0; NullCheck(L_15); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_16 = L_15->get_heap_99(); Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_17 = ___s0; NullCheck(L_17); int32_t L_18 = L_17->get_heap_max_101(); NullCheck(L_16); int32_t L_19 = L_18; int32_t L_20 = (L_16)->GetAt(static_cast(L_19)); NullCheck(L_14); (L_14)->SetAt(static_cast(((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_20, (int32_t)2)), (int32_t)1))), (int16_t)0); // for(h=s.heap_max+1; hget_heap_max_101(); V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_22, (int32_t)1)); goto IL_011f; } IL_0079: { // n = s.heap[h]; Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_23 = ___s0; NullCheck(L_23); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_24 = L_23->get_heap_99(); int32_t L_25 = V_5; NullCheck(L_24); int32_t L_26 = L_25; int32_t L_27 = (L_24)->GetAt(static_cast(L_26)); V_6 = L_27; // bits = tree[tree[n*2+1]*2+1] + 1; Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_28 = V_0; Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_29 = V_0; int32_t L_30 = V_6; NullCheck(L_29); int32_t L_31 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_30, (int32_t)2)), (int32_t)1)); int16_t L_32 = (L_29)->GetAt(static_cast(L_31)); NullCheck(L_28); int32_t L_33 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_32, (int32_t)2)), (int32_t)1)); int16_t L_34 = (L_28)->GetAt(static_cast(L_33)); V_8 = ((int32_t)il2cpp_codegen_add((int32_t)L_34, (int32_t)1)); // if (bits > max_length){ bits = max_length; overflow++; } int32_t L_35 = V_8; int32_t L_36 = V_4; if ((((int32_t)L_35) <= ((int32_t)L_36))) { goto IL_00a6; } } { // if (bits > max_length){ bits = max_length; overflow++; } int32_t L_37 = V_4; V_8 = L_37; // if (bits > max_length){ bits = max_length; overflow++; } int32_t L_38 = V_11; V_11 = ((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1)); } IL_00a6: { // tree[n*2+1] = (short)bits; Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_39 = V_0; int32_t L_40 = V_6; int32_t L_41 = V_8; NullCheck(L_39); (L_39)->SetAt(static_cast(((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_40, (int32_t)2)), (int32_t)1))), (int16_t)((int16_t)((int16_t)L_41))); // if (n > max_code) continue; // not a leaf node int32_t L_42 = V_6; int32_t L_43 = __this->get_max_code_23(); if ((((int32_t)L_42) > ((int32_t)L_43))) { goto IL_0119; } } { // s.bl_count[bits]++; Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_44 = ___s0; NullCheck(L_44); Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_45 = L_44->get_bl_count_98(); int32_t L_46 = V_8; NullCheck(L_45); int16_t* L_47 = ((L_45)->GetAddressAt(static_cast(L_46))); int32_t L_48 = *((int16_t*)L_47); *((int16_t*)L_47) = (int16_t)((int16_t)((int16_t)((int32_t)il2cpp_codegen_add((int32_t)L_48, (int32_t)1)))); // xbits = 0; V_9 = 0; // if (n >= based) xbits = extra[n-based]; int32_t L_49 = V_6; int32_t L_50 = V_3; if ((((int32_t)L_49) < ((int32_t)L_50))) { goto IL_00de; } } { // if (n >= based) xbits = extra[n-based]; Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_51 = V_2; int32_t L_52 = V_6; int32_t L_53 = V_3; NullCheck(L_51); int32_t L_54 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_52, (int32_t)L_53)); int32_t L_55 = (L_51)->GetAt(static_cast(L_54)); V_9 = L_55; } IL_00de: { // f = tree[n*2]; Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_56 = V_0; int32_t L_57 = V_6; NullCheck(L_56); int32_t L_58 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_57, (int32_t)2)); int16_t L_59 = (L_56)->GetAt(static_cast(L_58)); V_10 = L_59; // s.opt_len += f * (bits + xbits); Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_60 = ___s0; Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_61 = L_60; NullCheck(L_61); int32_t L_62 = L_61->get_opt_len_107(); int16_t L_63 = V_10; int32_t L_64 = V_8; int32_t L_65 = V_9; NullCheck(L_61); L_61->set_opt_len_107(((int32_t)il2cpp_codegen_add((int32_t)L_62, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_63, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_64, (int32_t)L_65))))))); // if (stree!=null) s.static_len += f * (stree[n*2+1] + xbits); Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_66 = V_1; if (!L_66) { goto IL_0119; } } { // if (stree!=null) s.static_len += f * (stree[n*2+1] + xbits); Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_67 = ___s0; Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_68 = L_67; NullCheck(L_68); int32_t L_69 = L_68->get_static_len_108(); int16_t L_70 = V_10; Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_71 = V_1; int32_t L_72 = V_6; NullCheck(L_71); int32_t L_73 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_72, (int32_t)2)), (int32_t)1)); int16_t L_74 = (L_71)->GetAt(static_cast(L_73)); int32_t L_75 = V_9; NullCheck(L_68); L_68->set_static_len_108(((int32_t)il2cpp_codegen_add((int32_t)L_69, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_70, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_74, (int32_t)L_75))))))); } IL_0119: { // for(h=s.heap_max+1; hget_bl_count_98(); int32_t L_83 = V_8; NullCheck(L_82); int32_t L_84 = L_83; int16_t L_85 = (L_82)->GetAt(static_cast(L_84)); if (!L_85) { goto IL_0138; } } { // s.bl_count[bits]--; // move one leaf down the tree Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_86 = ___s0; NullCheck(L_86); Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_87 = L_86->get_bl_count_98(); int32_t L_88 = V_8; NullCheck(L_87); int16_t* L_89 = ((L_87)->GetAddressAt(static_cast(L_88))); int32_t L_90 = *((int16_t*)L_89); *((int16_t*)L_89) = (int16_t)((int16_t)((int16_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_90, (int32_t)1)))); // s.bl_count[bits+1]+=2; // move one overflow item as its brother Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_91 = ___s0; NullCheck(L_91); Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_92 = L_91->get_bl_count_98(); int32_t L_93 = V_8; NullCheck(L_92); int16_t* L_94 = ((L_92)->GetAddressAt(static_cast(((int32_t)il2cpp_codegen_add((int32_t)L_93, (int32_t)1))))); int32_t L_95 = *((int16_t*)L_94); *((int16_t*)L_94) = (int16_t)((int16_t)((int16_t)((int32_t)il2cpp_codegen_add((int32_t)L_95, (int32_t)2)))); // s.bl_count[max_length]--; Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_96 = ___s0; NullCheck(L_96); Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_97 = L_96->get_bl_count_98(); int32_t L_98 = V_4; NullCheck(L_97); int16_t* L_99 = ((L_97)->GetAddressAt(static_cast(L_98))); int32_t L_100 = *((int16_t*)L_99); *((int16_t*)L_99) = (int16_t)((int16_t)((int16_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_100, (int32_t)1)))); // overflow -= 2; int32_t L_101 = V_11; V_11 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_101, (int32_t)2)); // while (overflow > 0); int32_t L_102 = V_11; if ((((int32_t)L_102) > ((int32_t)0))) { goto IL_0130; } } { // for (bits = max_length; bits != 0; bits--) { int32_t L_103 = V_4; V_8 = L_103; goto IL_0206; } IL_0195: { // n = s.bl_count[bits]; Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_104 = ___s0; NullCheck(L_104); Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_105 = L_104->get_bl_count_98(); int32_t L_106 = V_8; NullCheck(L_105); int32_t L_107 = L_106; int16_t L_108 = (L_105)->GetAt(static_cast(L_107)); V_6 = L_108; goto IL_01fc; } IL_01a2: { // m = s.heap[--h]; Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_109 = ___s0; NullCheck(L_109); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_110 = L_109->get_heap_99(); int32_t L_111 = V_5; int32_t L_112 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_111, (int32_t)1)); V_5 = L_112; NullCheck(L_110); int32_t L_113 = L_112; int32_t L_114 = (L_110)->GetAt(static_cast(L_113)); V_7 = L_114; // if (m > max_code) continue; int32_t L_115 = V_7; int32_t L_116 = __this->get_max_code_23(); if ((((int32_t)L_115) > ((int32_t)L_116))) { goto IL_01fc; } } { // if (tree[m*2+1] != bits) { Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_117 = V_0; int32_t L_118 = V_7; NullCheck(L_117); int32_t L_119 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_118, (int32_t)2)), (int32_t)1)); int16_t L_120 = (L_117)->GetAt(static_cast(L_119)); int32_t L_121 = V_8; if ((((int32_t)L_120) == ((int32_t)L_121))) { goto IL_01f6; } } { // s.opt_len += (int)(((long)bits - (long)tree[m*2+1])*(long)tree[m*2]); Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_122 = ___s0; Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_123 = L_122; NullCheck(L_123); int32_t L_124 = L_123->get_opt_len_107(); int32_t L_125 = V_8; Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_126 = V_0; int32_t L_127 = V_7; NullCheck(L_126); int32_t L_128 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_127, (int32_t)2)), (int32_t)1)); int16_t L_129 = (L_126)->GetAt(static_cast(L_128)); Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_130 = V_0; int32_t L_131 = V_7; NullCheck(L_130); int32_t L_132 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_131, (int32_t)2)); int16_t L_133 = (L_130)->GetAt(static_cast(L_132)); NullCheck(L_123); L_123->set_opt_len_107(((int32_t)il2cpp_codegen_add((int32_t)L_124, (int32_t)((int32_t)((int32_t)((int64_t)il2cpp_codegen_multiply((int64_t)((int64_t)il2cpp_codegen_subtract((int64_t)((int64_t)((int64_t)L_125)), (int64_t)((int64_t)((int64_t)L_129)))), (int64_t)((int64_t)((int64_t)L_133))))))))); // tree[m*2+1] = (short)bits; Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_134 = V_0; int32_t L_135 = V_7; int32_t L_136 = V_8; NullCheck(L_134); (L_134)->SetAt(static_cast(((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_135, (int32_t)2)), (int32_t)1))), (int16_t)((int16_t)((int16_t)L_136))); } IL_01f6: { // n--; int32_t L_137 = V_6; V_6 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_137, (int32_t)1)); } IL_01fc: { // while (n != 0) { int32_t L_138 = V_6; if (L_138) { goto IL_01a2; } } { // for (bits = max_length; bits != 0; bits--) { int32_t L_139 = V_8; V_8 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_139, (int32_t)1)); } IL_0206: { // for (bits = max_length; bits != 0; bits--) { int32_t L_140 = V_8; if (L_140) { goto IL_0195; } } { // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZTree::build_tree(BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.Deflate) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZTree_build_tree_m3BA32EEF687E31B0122B355E9297D0DC30A025F8 (ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC * __this, Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * ___s0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tA269614262430118C9FC5C4D9EF4F61C812568F0_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* V_0 = NULL; Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* V_1 = NULL; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; int32_t V_5 = 0; int32_t V_6 = 0; int32_t V_7 = 0; int16_t V_8 = 0; int32_t G_B9_0 = 0; Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* G_B9_1 = NULL; int32_t G_B8_0 = 0; Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* G_B8_1 = NULL; int32_t G_B10_0 = 0; int32_t G_B10_1 = 0; Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* G_B10_2 = NULL; { // short[] tree=dyn_tree; Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_0 = __this->get_dyn_tree_22(); V_0 = L_0; // short[] stree=stat_desc.static_tree; StaticTree_tFAE01A2B378F804F70FD3C06C5F18BEF8E31CFE5 * L_1 = __this->get_stat_desc_24(); NullCheck(L_1); Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_2 = L_1->get_static_tree_12(); V_1 = L_2; // int elems=stat_desc.elems; StaticTree_tFAE01A2B378F804F70FD3C06C5F18BEF8E31CFE5 * L_3 = __this->get_stat_desc_24(); NullCheck(L_3); int32_t L_4 = L_3->get_elems_15(); V_2 = L_4; // int max_code=-1; // largest code with non zero frequency V_5 = (-1); // s.heap_len = 0; Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_5 = ___s0; NullCheck(L_5); L_5->set_heap_len_100(0); // s.heap_max = HEAP_SIZE; Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_6 = ___s0; NullCheck(L_6); L_6->set_heap_max_101(((int32_t)573)); // for(n=0; nGetAt(static_cast(L_9)); if (!L_10) { goto IL_0069; } } { // s.heap[++s.heap_len] = max_code = n; Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_11 = ___s0; NullCheck(L_11); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_12 = L_11->get_heap_99(); Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_13 = ___s0; Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_14 = L_13; NullCheck(L_14); int32_t L_15 = L_14->get_heap_len_100(); V_7 = ((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); int32_t L_16 = V_7; NullCheck(L_14); L_14->set_heap_len_100(L_16); int32_t L_17 = V_7; int32_t L_18 = V_3; int32_t L_19 = L_18; V_5 = L_19; NullCheck(L_12); (L_12)->SetAt(static_cast(L_17), (int32_t)L_19); // s.depth[n] = 0; Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_20 = ___s0; NullCheck(L_20); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_21 = L_20->get_depth_102(); int32_t L_22 = V_3; NullCheck(L_21); (L_21)->SetAt(static_cast(L_22), (uint8_t)0); // } goto IL_0071; } IL_0069: { // tree[n*2+1] = 0; Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_23 = V_0; int32_t L_24 = V_3; NullCheck(L_23); (L_23)->SetAt(static_cast(((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_24, (int32_t)2)), (int32_t)1))), (int16_t)0); } IL_0071: { // for(n=0; nget_heap_99(); Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_30 = ___s0; Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_31 = L_30; NullCheck(L_31); int32_t L_32 = L_31->get_heap_len_100(); V_7 = ((int32_t)il2cpp_codegen_add((int32_t)L_32, (int32_t)1)); int32_t L_33 = V_7; NullCheck(L_31); L_31->set_heap_len_100(L_33); int32_t L_34 = V_7; int32_t L_35 = V_5; G_B8_0 = L_34; G_B8_1 = L_29; if ((((int32_t)L_35) < ((int32_t)2))) { G_B9_0 = L_34; G_B9_1 = L_29; goto IL_009d; } } { G_B10_0 = 0; G_B10_1 = G_B8_0; G_B10_2 = G_B8_1; goto IL_00a4; } IL_009d: { int32_t L_36 = V_5; int32_t L_37 = ((int32_t)il2cpp_codegen_add((int32_t)L_36, (int32_t)1)); V_5 = L_37; G_B10_0 = L_37; G_B10_1 = G_B9_0; G_B10_2 = G_B9_1; } IL_00a4: { int32_t L_38 = G_B10_0; V_7 = L_38; NullCheck(G_B10_2); (G_B10_2)->SetAt(static_cast(G_B10_1), (int32_t)L_38); int32_t L_39 = V_7; V_6 = L_39; // tree[node*2] = 1; Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_40 = V_0; int32_t L_41 = V_6; NullCheck(L_40); (L_40)->SetAt(static_cast(((int32_t)il2cpp_codegen_multiply((int32_t)L_41, (int32_t)2))), (int16_t)1); // s.depth[node] = 0; Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_42 = ___s0; NullCheck(L_42); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_43 = L_42->get_depth_102(); int32_t L_44 = V_6; NullCheck(L_43); (L_43)->SetAt(static_cast(L_44), (uint8_t)0); // s.opt_len--; if (stree!=null) s.static_len -= stree[node*2+1]; Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_45 = ___s0; Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_46 = L_45; NullCheck(L_46); int32_t L_47 = L_46->get_opt_len_107(); NullCheck(L_46); L_46->set_opt_len_107(((int32_t)il2cpp_codegen_subtract((int32_t)L_47, (int32_t)1))); // s.opt_len--; if (stree!=null) s.static_len -= stree[node*2+1]; Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_48 = V_1; if (!L_48) { goto IL_00e3; } } { // s.opt_len--; if (stree!=null) s.static_len -= stree[node*2+1]; Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_49 = ___s0; Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_50 = L_49; NullCheck(L_50); int32_t L_51 = L_50->get_static_len_108(); Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_52 = V_1; int32_t L_53 = V_6; NullCheck(L_52); int32_t L_54 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_53, (int32_t)2)), (int32_t)1)); int16_t L_55 = (L_52)->GetAt(static_cast(L_54)); NullCheck(L_50); L_50->set_static_len_108(((int32_t)il2cpp_codegen_subtract((int32_t)L_51, (int32_t)L_55))); } IL_00e3: { // while (s.heap_len < 2) { Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_56 = ___s0; NullCheck(L_56); int32_t L_57 = L_56->get_heap_len_100(); if ((((int32_t)L_57) < ((int32_t)2))) { goto IL_007b; } } { // this.max_code = max_code; int32_t L_58 = V_5; __this->set_max_code_23(L_58); // for(n=s.heap_len/2;n>=1; n--) Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_59 = ___s0; NullCheck(L_59); int32_t L_60 = L_59->get_heap_len_100(); V_3 = ((int32_t)((int32_t)L_60/(int32_t)2)); goto IL_010b; } IL_00ff: { // s.pqdownheap(tree, n); Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_61 = ___s0; Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_62 = V_0; int32_t L_63 = V_3; NullCheck(L_61); Deflate_pqdownheap_m4E2AD83865D8C232CE81CADC3E62CCA988B273D0(L_61, L_62, L_63, /*hidden argument*/NULL); // for(n=s.heap_len/2;n>=1; n--) int32_t L_64 = V_3; V_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_64, (int32_t)1)); } IL_010b: { // for(n=s.heap_len/2;n>=1; n--) int32_t L_65 = V_3; if ((((int32_t)L_65) >= ((int32_t)1))) { goto IL_00ff; } } { // node=elems; // next internal node of the tree int32_t L_66 = V_2; V_6 = L_66; } IL_0112: { // n=s.heap[1]; Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_67 = ___s0; NullCheck(L_67); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_68 = L_67->get_heap_99(); NullCheck(L_68); int32_t L_69 = 1; int32_t L_70 = (L_68)->GetAt(static_cast(L_69)); V_3 = L_70; // s.heap[1]=s.heap[s.heap_len--]; Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_71 = ___s0; NullCheck(L_71); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_72 = L_71->get_heap_99(); Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_73 = ___s0; NullCheck(L_73); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_74 = L_73->get_heap_99(); Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_75 = ___s0; Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_76 = L_75; NullCheck(L_76); int32_t L_77 = L_76->get_heap_len_100(); V_7 = L_77; int32_t L_78 = V_7; NullCheck(L_76); L_76->set_heap_len_100(((int32_t)il2cpp_codegen_subtract((int32_t)L_78, (int32_t)1))); int32_t L_79 = V_7; NullCheck(L_74); int32_t L_80 = L_79; int32_t L_81 = (L_74)->GetAt(static_cast(L_80)); NullCheck(L_72); (L_72)->SetAt(static_cast(1), (int32_t)L_81); // s.pqdownheap(tree, 1); Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_82 = ___s0; Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_83 = V_0; NullCheck(L_82); Deflate_pqdownheap_m4E2AD83865D8C232CE81CADC3E62CCA988B273D0(L_82, L_83, 1, /*hidden argument*/NULL); // m=s.heap[1]; // m = node of next least frequency Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_84 = ___s0; NullCheck(L_84); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_85 = L_84->get_heap_99(); NullCheck(L_85); int32_t L_86 = 1; int32_t L_87 = (L_85)->GetAt(static_cast(L_86)); V_4 = L_87; // s.heap[--s.heap_max] = n; // keep the nodes sorted by frequency Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_88 = ___s0; NullCheck(L_88); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_89 = L_88->get_heap_99(); Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_90 = ___s0; Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_91 = L_90; NullCheck(L_91); int32_t L_92 = L_91->get_heap_max_101(); V_7 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_92, (int32_t)1)); int32_t L_93 = V_7; NullCheck(L_91); L_91->set_heap_max_101(L_93); int32_t L_94 = V_7; int32_t L_95 = V_3; NullCheck(L_89); (L_89)->SetAt(static_cast(L_94), (int32_t)L_95); // s.heap[--s.heap_max] = m; Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_96 = ___s0; NullCheck(L_96); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_97 = L_96->get_heap_99(); Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_98 = ___s0; Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_99 = L_98; NullCheck(L_99); int32_t L_100 = L_99->get_heap_max_101(); V_7 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_100, (int32_t)1)); int32_t L_101 = V_7; NullCheck(L_99); L_99->set_heap_max_101(L_101); int32_t L_102 = V_7; int32_t L_103 = V_4; NullCheck(L_97); (L_97)->SetAt(static_cast(L_102), (int32_t)L_103); // tree[node*2] = (short)(tree[n*2] + tree[m*2]); Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_104 = V_0; int32_t L_105 = V_6; Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_106 = V_0; int32_t L_107 = V_3; NullCheck(L_106); int32_t L_108 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_107, (int32_t)2)); int16_t L_109 = (L_106)->GetAt(static_cast(L_108)); Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_110 = V_0; int32_t L_111 = V_4; NullCheck(L_110); int32_t L_112 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_111, (int32_t)2)); int16_t L_113 = (L_110)->GetAt(static_cast(L_112)); NullCheck(L_104); (L_104)->SetAt(static_cast(((int32_t)il2cpp_codegen_multiply((int32_t)L_105, (int32_t)2))), (int16_t)((int16_t)((int16_t)((int32_t)il2cpp_codegen_add((int32_t)L_109, (int32_t)L_113))))); // s.depth[node] = (byte)(System.Math.Max(s.depth[n],s.depth[m])+1); Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_114 = ___s0; NullCheck(L_114); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_115 = L_114->get_depth_102(); int32_t L_116 = V_6; Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_117 = ___s0; NullCheck(L_117); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_118 = L_117->get_depth_102(); int32_t L_119 = V_3; NullCheck(L_118); int32_t L_120 = L_119; uint8_t L_121 = (L_118)->GetAt(static_cast(L_120)); Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_122 = ___s0; NullCheck(L_122); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_123 = L_122->get_depth_102(); int32_t L_124 = V_4; NullCheck(L_123); int32_t L_125 = L_124; uint8_t L_126 = (L_123)->GetAt(static_cast(L_125)); IL2CPP_RUNTIME_CLASS_INIT(Math_tA269614262430118C9FC5C4D9EF4F61C812568F0_il2cpp_TypeInfo_var); uint8_t L_127; L_127 = Math_Max_mCA27A75C0677CDAF214D29620E7F508A9C6FB30A(L_121, L_126, /*hidden argument*/NULL); NullCheck(L_115); (L_115)->SetAt(static_cast(L_116), (uint8_t)((int32_t)((uint8_t)((int32_t)il2cpp_codegen_add((int32_t)L_127, (int32_t)1))))); // tree[n*2+1] = tree[m*2+1] = (short)node; Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_128 = V_0; int32_t L_129 = V_3; Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_130 = V_0; int32_t L_131 = V_4; int32_t L_132 = V_6; int16_t L_133 = ((int16_t)((int16_t)L_132)); V_8 = L_133; NullCheck(L_130); (L_130)->SetAt(static_cast(((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_131, (int32_t)2)), (int32_t)1))), (int16_t)L_133); int16_t L_134 = V_8; NullCheck(L_128); (L_128)->SetAt(static_cast(((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_129, (int32_t)2)), (int32_t)1))), (int16_t)L_134); // s.heap[1] = node++; Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_135 = ___s0; NullCheck(L_135); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_136 = L_135->get_heap_99(); int32_t L_137 = V_6; int32_t L_138 = L_137; V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_138, (int32_t)1)); NullCheck(L_136); (L_136)->SetAt(static_cast(1), (int32_t)L_138); // s.pqdownheap(tree, 1); Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_139 = ___s0; Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_140 = V_0; NullCheck(L_139); Deflate_pqdownheap_m4E2AD83865D8C232CE81CADC3E62CCA988B273D0(L_139, L_140, 1, /*hidden argument*/NULL); // while(s.heap_len>=2); Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_141 = ___s0; NullCheck(L_141); int32_t L_142 = L_141->get_heap_len_100(); if ((((int32_t)L_142) >= ((int32_t)2))) { goto IL_0112; } } { // s.heap[--s.heap_max] = s.heap[1]; Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_143 = ___s0; NullCheck(L_143); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_144 = L_143->get_heap_99(); Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_145 = ___s0; Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_146 = L_145; NullCheck(L_146); int32_t L_147 = L_146->get_heap_max_101(); V_7 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_147, (int32_t)1)); int32_t L_148 = V_7; NullCheck(L_146); L_146->set_heap_max_101(L_148); int32_t L_149 = V_7; Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_150 = ___s0; NullCheck(L_150); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_151 = L_150->get_heap_99(); NullCheck(L_151); int32_t L_152 = 1; int32_t L_153 = (L_151)->GetAt(static_cast(L_152)); NullCheck(L_144); (L_144)->SetAt(static_cast(L_149), (int32_t)L_153); // gen_bitlen(s); Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_154 = ___s0; ZTree_gen_bitlen_m91FA430263D220341C2020CFC00FEF4CA9346B84(__this, L_154, /*hidden argument*/NULL); // gen_codes(tree, max_code, s.bl_count); Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_155 = V_0; int32_t L_156 = V_5; Deflate_t2AE4FB95702F6B4AAB462CA24EB839E5DFF6C169 * L_157 = ___s0; NullCheck(L_157); Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_158 = L_157->get_bl_count_98(); IL2CPP_RUNTIME_CLASS_INIT(ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC_il2cpp_TypeInfo_var); ZTree_gen_codes_m640A4E1649E40993FCFFAF30A5AC0586D5DE669D(L_155, L_156, L_158, /*hidden argument*/NULL); // } return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZTree::gen_codes(System.Int16[],System.Int32,System.Int16[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZTree_gen_codes_m640A4E1649E40993FCFFAF30A5AC0586D5DE669D (Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* ___tree0, int32_t ___max_code1, Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* ___bl_count2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* V_0 = NULL; int16_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; int16_t V_5 = 0; { // short[] next_code=new short[MAX_BITS+1]; // next code value for each bit length Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_0 = (Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD*)(Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD*)SZArrayNew(Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD_il2cpp_TypeInfo_var, (uint32_t)((int32_t)16)); V_0 = L_0; // short code = 0; // running code value V_1 = (int16_t)0; // for (bits = 1; bits <= MAX_BITS; bits++) { V_2 = 1; goto IL_0021; } IL_000e: { // next_code[bits] = code = (short)((code + bl_count[bits-1]) << 1); Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_1 = V_0; int32_t L_2 = V_2; int16_t L_3 = V_1; Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_4 = ___bl_count2; int32_t L_5 = V_2; NullCheck(L_4); int32_t L_6 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_5, (int32_t)1)); int16_t L_7 = (L_4)->GetAt(static_cast(L_6)); int16_t L_8 = ((int16_t)((int16_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)L_7))<<(int32_t)1)))); V_1 = L_8; NullCheck(L_1); (L_1)->SetAt(static_cast(L_2), (int16_t)L_8); // for (bits = 1; bits <= MAX_BITS; bits++) { int32_t L_9 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1)); } IL_0021: { // for (bits = 1; bits <= MAX_BITS; bits++) { int32_t L_10 = V_2; if ((((int32_t)L_10) <= ((int32_t)((int32_t)15)))) { goto IL_000e; } } { // for (n = 0; n <= max_code; n++) { V_3 = 0; goto IL_005c; } IL_002a: { // int len = tree[n*2+1]; Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_11 = ___tree0; int32_t L_12 = V_3; NullCheck(L_11); int32_t L_13 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_12, (int32_t)2)), (int32_t)1)); int16_t L_14 = (L_11)->GetAt(static_cast(L_13)); V_4 = L_14; // if (len == 0) continue; int32_t L_15 = V_4; if (!L_15) { goto IL_0058; } } { // tree[n*2] = (short)(bi_reverse(next_code[len]++, len)); Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_16 = ___tree0; int32_t L_17 = V_3; Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_18 = V_0; int32_t L_19 = V_4; NullCheck(L_18); int16_t* L_20 = ((L_18)->GetAddressAt(static_cast(L_19))); int32_t L_21 = *((int16_t*)L_20); V_5 = (int16_t)L_21; int16_t L_22 = V_5; *((int16_t*)L_20) = (int16_t)((int16_t)((int16_t)((int32_t)il2cpp_codegen_add((int32_t)L_22, (int32_t)1)))); int16_t L_23 = V_5; int32_t L_24 = V_4; IL2CPP_RUNTIME_CLASS_INIT(ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC_il2cpp_TypeInfo_var); int32_t L_25; L_25 = ZTree_bi_reverse_mFD0C381064E80284E167C90F024B94DAC1077C26(L_23, L_24, /*hidden argument*/NULL); NullCheck(L_16); (L_16)->SetAt(static_cast(((int32_t)il2cpp_codegen_multiply((int32_t)L_17, (int32_t)2))), (int16_t)((int16_t)((int16_t)L_25))); } IL_0058: { // for (n = 0; n <= max_code; n++) { int32_t L_26 = V_3; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1)); } IL_005c: { // for (n = 0; n <= max_code; n++) { int32_t L_27 = V_3; int32_t L_28 = ___max_code1; if ((((int32_t)L_27) <= ((int32_t)L_28))) { goto IL_002a; } } { // } return; } } // System.Int32 BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZTree::bi_reverse(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ZTree_bi_reverse_mFD0C381064E80284E167C90F024B94DAC1077C26 (int32_t ___code0, int32_t ___len1, const RuntimeMethod* method) { int32_t V_0 = 0; { // int res = 0; V_0 = 0; } IL_0002: { // res|=code&1; int32_t L_0 = V_0; int32_t L_1 = ___code0; V_0 = ((int32_t)((int32_t)L_0|(int32_t)((int32_t)((int32_t)L_1&(int32_t)1)))); // code>>=1; int32_t L_2 = ___code0; ___code0 = ((int32_t)((int32_t)L_2>>(int32_t)1)); // res<<=1; int32_t L_3 = V_0; V_0 = ((int32_t)((int32_t)L_3<<(int32_t)1)); // while(--len>0); int32_t L_4 = ___len1; int32_t L_5 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)); ___len1 = L_5; if ((((int32_t)L_5) > ((int32_t)0))) { goto IL_0002; } } { // return res>>1; int32_t L_6 = V_0; return ((int32_t)((int32_t)L_6>>(int32_t)1)); } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZTree::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZTree__ctor_mD2B1A3A36FACEF06447ED66D9AC77D1591762144 (ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } // System.Void BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Zlib.ZTree::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZTree__cctor_m0156361A8C3A0ACF1D6F8B13348FB776B83D64F6 (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*)&Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____111B15B20E0428A22EEAA1E54B0D3B008A7A3E79C8F7F4E783710F569E9CEF15_16_FieldInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____3E4FB5FE52BF269D6EE955711016291D6D327A4AAC39B2464C53C6BD0D73242A_69_FieldInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____5961BF1FCF83803CE7775E15E9DB8D21AF741539B85CCFDD643F9E22CC7820D6_101_FieldInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____7DDF88204E7E265240211841F0AB290A5E77EE4F9223EB2E39F9B89C30C41B9D_144_FieldInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____8FC498A953A183E1FE81A183AE59047435BB9B33D657C625FAB03D38BE19F92E_164_FieldInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____B23D510F520CB4BA8AFA847F8A40E757C40CB6A55B237EFA1AC6D3984911B114_212_FieldInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____B9D4AF390AFC6A0F149B843D651CFEBC1C4EC496A0263B72207836F9C525E1C4_227_FieldInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____F8D7861760C88CC514F66095AF0AED47ECBA063ADB65F47125ED07BCC2CF9842_298_FieldInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // internal static readonly int[] extra_lbits={ // 0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0 // }; Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_0 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)((int32_t)29)); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_1 = L_0; RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 L_2 = { reinterpret_cast (U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____F8D7861760C88CC514F66095AF0AED47ECBA063ADB65F47125ED07BCC2CF9842_298_FieldInfo_var) }; RuntimeHelpers_InitializeArray_mE27238308FED781F2D6A719F0903F2E1311B058F((RuntimeArray *)(RuntimeArray *)L_1, L_2, /*hidden argument*/NULL); ((ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC_StaticFields*)il2cpp_codegen_static_fields_for(ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC_il2cpp_TypeInfo_var))->set_extra_lbits_12(L_1); // internal static readonly int[] extra_dbits={ // 0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13 // }; Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_3 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)((int32_t)30)); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_4 = L_3; RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 L_5 = { reinterpret_cast (U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____B23D510F520CB4BA8AFA847F8A40E757C40CB6A55B237EFA1AC6D3984911B114_212_FieldInfo_var) }; RuntimeHelpers_InitializeArray_mE27238308FED781F2D6A719F0903F2E1311B058F((RuntimeArray *)(RuntimeArray *)L_4, L_5, /*hidden argument*/NULL); ((ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC_StaticFields*)il2cpp_codegen_static_fields_for(ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC_il2cpp_TypeInfo_var))->set_extra_dbits_13(L_4); // internal static readonly int[] extra_blbits={ // 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7 // }; Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_6 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)((int32_t)19)); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_7 = L_6; RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 L_8 = { reinterpret_cast (U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____8FC498A953A183E1FE81A183AE59047435BB9B33D657C625FAB03D38BE19F92E_164_FieldInfo_var) }; RuntimeHelpers_InitializeArray_mE27238308FED781F2D6A719F0903F2E1311B058F((RuntimeArray *)(RuntimeArray *)L_7, L_8, /*hidden argument*/NULL); ((ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC_StaticFields*)il2cpp_codegen_static_fields_for(ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC_il2cpp_TypeInfo_var))->set_extra_blbits_14(L_7); // internal static readonly byte[] bl_order={ // 16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15}; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_9 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)((int32_t)19)); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_10 = L_9; RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 L_11 = { reinterpret_cast (U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____111B15B20E0428A22EEAA1E54B0D3B008A7A3E79C8F7F4E783710F569E9CEF15_16_FieldInfo_var) }; RuntimeHelpers_InitializeArray_mE27238308FED781F2D6A719F0903F2E1311B058F((RuntimeArray *)(RuntimeArray *)L_10, L_11, /*hidden argument*/NULL); ((ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC_StaticFields*)il2cpp_codegen_static_fields_for(ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC_il2cpp_TypeInfo_var))->set_bl_order_15(L_10); // internal static readonly byte[] _dist_code = { // 0, 1, 2, 3, 4, 4, 5, 5, 6, 6, 6, 6, 7, 7, 7, 7, 8, 8, 8, 8, // 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10, 10, 10, 10, // 10, 10, 10, 10, 10, 10, 10, 10, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, // 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, // 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 13, 13, 13, 13, // 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, // 13, 13, 13, 13, 13, 13, 13, 13, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, // 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, // 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, // 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 15, 15, 15, 15, 15, 15, 15, 15, // 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, // 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, // 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 0, 0, 16, 17, // 18, 18, 19, 19, 20, 20, 20, 20, 21, 21, 21, 21, 22, 22, 22, 22, 22, 22, 22, 22, // 23, 23, 23, 23, 23, 23, 23, 23, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, // 24, 24, 24, 24, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, // 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, // 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 27, 27, 27, 27, 27, 27, 27, 27, // 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, // 27, 27, 27, 27, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, // 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, // 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, // 28, 28, 28, 28, 28, 28, 28, 28, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, // 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, // 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, // 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29 // }; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_12 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)((int32_t)512)); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_13 = L_12; RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 L_14 = { reinterpret_cast (U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____3E4FB5FE52BF269D6EE955711016291D6D327A4AAC39B2464C53C6BD0D73242A_69_FieldInfo_var) }; RuntimeHelpers_InitializeArray_mE27238308FED781F2D6A719F0903F2E1311B058F((RuntimeArray *)(RuntimeArray *)L_13, L_14, /*hidden argument*/NULL); ((ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC_StaticFields*)il2cpp_codegen_static_fields_for(ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC_il2cpp_TypeInfo_var))->set__dist_code_18(L_13); // internal static readonly byte[] _length_code={ // 0, 1, 2, 3, 4, 5, 6, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 12, 12, // 13, 13, 13, 13, 14, 14, 14, 14, 15, 15, 15, 15, 16, 16, 16, 16, 16, 16, 16, 16, // 17, 17, 17, 17, 17, 17, 17, 17, 18, 18, 18, 18, 18, 18, 18, 18, 19, 19, 19, 19, // 19, 19, 19, 19, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, // 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 22, 22, 22, 22, // 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 23, 23, 23, 23, 23, 23, 23, 23, // 23, 23, 23, 23, 23, 23, 23, 23, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, // 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, // 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, // 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 26, 26, 26, 26, 26, 26, 26, 26, // 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, // 26, 26, 26, 26, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, // 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 28 // }; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_15 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)((int32_t)256)); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_16 = L_15; RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 L_17 = { reinterpret_cast (U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____B9D4AF390AFC6A0F149B843D651CFEBC1C4EC496A0263B72207836F9C525E1C4_227_FieldInfo_var) }; RuntimeHelpers_InitializeArray_mE27238308FED781F2D6A719F0903F2E1311B058F((RuntimeArray *)(RuntimeArray *)L_16, L_17, /*hidden argument*/NULL); ((ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC_StaticFields*)il2cpp_codegen_static_fields_for(ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC_il2cpp_TypeInfo_var))->set__length_code_19(L_16); // internal static readonly int[] base_length = { // 0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 12, 14, 16, 20, 24, 28, 32, 40, 48, 56, // 64, 80, 96, 112, 128, 160, 192, 224, 0 // }; Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_18 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)((int32_t)29)); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_19 = L_18; RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 L_20 = { reinterpret_cast (U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____7DDF88204E7E265240211841F0AB290A5E77EE4F9223EB2E39F9B89C30C41B9D_144_FieldInfo_var) }; RuntimeHelpers_InitializeArray_mE27238308FED781F2D6A719F0903F2E1311B058F((RuntimeArray *)(RuntimeArray *)L_19, L_20, /*hidden argument*/NULL); ((ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC_StaticFields*)il2cpp_codegen_static_fields_for(ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC_il2cpp_TypeInfo_var))->set_base_length_20(L_19); // internal static readonly int[] base_dist = { // 0, 1, 2, 3, 4, 6, 8, 12, 16, 24, // 32, 48, 64, 96, 128, 192, 256, 384, 512, 768, // 1024, 1536, 2048, 3072, 4096, 6144, 8192, 12288, 16384, 24576 // }; Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_21 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)((int32_t)30)); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_22 = L_21; RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 L_23 = { reinterpret_cast (U3CPrivateImplementationDetailsU3E_t6BC7664D9CD46304D39A7D175BB8FFBE0B9F4528____5961BF1FCF83803CE7775E15E9DB8D21AF741539B85CCFDD643F9E22CC7820D6_101_FieldInfo_var) }; RuntimeHelpers_InitializeArray_mE27238308FED781F2D6A719F0903F2E1311B058F((RuntimeArray *)(RuntimeArray *)L_22, L_23, /*hidden argument*/NULL); ((ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC_StaticFields*)il2cpp_codegen_static_fields_for(ZTree_t387F52A774160F645DF436ABCEF175D430AF71BC_il2cpp_TypeInfo_var))->set_base_dist_21(L_22); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline (String_t* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_m_stringLength_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * RsassaPssParameters_get_HashAlgorithm_mE761E1603909D87FF6B83B1BDE6366BF8F96FEA1_inline (RsassaPssParameters_t59919836CCCB08CC894C0A52AE9F983740ECFB69 * __this, const RuntimeMethod* method) { { // get { return hashAlgorithm; } AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_0 = __this->get_hashAlgorithm_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* DerObjectIdentifier_get_Id_m1A4618B1F7ED8630EDC76DF95D8C7086F1E616D6_inline (DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * __this, const RuntimeMethod* method) { { // get { return identifier; } String_t* L_0 = __this->get_identifier_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t BigInteger_get_SignValue_mD40EFBE0702F356758CE49796DD9743BF06E5199_inline (BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * __this, const RuntimeMethod* method) { { // get { return sign; } int32_t L_0 = __this->get_sign_31(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V1TbsCertificateGenerator_SetSerialNumber_mA197E0BAF391F9117BA61BD90D7A11594B922C2F_inline (V1TbsCertificateGenerator_t0C696954AC2E290683DA1581EA144E4EBB8D2D10 * __this, DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * ___serialNumber0, const RuntimeMethod* method) { { // this.serialNumber = serialNumber; DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * L_0 = ___serialNumber0; __this->set_serialNumber_1(L_0); // } return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V1TbsCertificateGenerator_SetIssuer_mEA098B787E9A98E3B09901823D1580548A26ABB8_inline (V1TbsCertificateGenerator_t0C696954AC2E290683DA1581EA144E4EBB8D2D10 * __this, X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * ___issuer0, const RuntimeMethod* method) { { // this.issuer = issuer; X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * L_0 = ___issuer0; __this->set_issuer_3(L_0); // } return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V1TbsCertificateGenerator_SetStartDate_mC23C4EA59BDA548B589DBB07C3E884C4322376DB_inline (V1TbsCertificateGenerator_t0C696954AC2E290683DA1581EA144E4EBB8D2D10 * __this, Time_tD684B1785E755395701D46F89A97609911CD6DDE * ___startDate0, const RuntimeMethod* method) { { // this.startDate = startDate; Time_tD684B1785E755395701D46F89A97609911CD6DDE * L_0 = ___startDate0; __this->set_startDate_4(L_0); // } return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V1TbsCertificateGenerator_SetEndDate_mD95D21EC8E8D5C8AE1CFB42BC70FCEC9465957C6_inline (V1TbsCertificateGenerator_t0C696954AC2E290683DA1581EA144E4EBB8D2D10 * __this, Time_tD684B1785E755395701D46F89A97609911CD6DDE * ___endDate0, const RuntimeMethod* method) { { // this.endDate = endDate; Time_tD684B1785E755395701D46F89A97609911CD6DDE * L_0 = ___endDate0; __this->set_endDate_5(L_0); // } return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V1TbsCertificateGenerator_SetSubject_m8D39D66BDCE270B41A3C97DF438D6F56B483D193_inline (V1TbsCertificateGenerator_t0C696954AC2E290683DA1581EA144E4EBB8D2D10 * __this, X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * ___subject0, const RuntimeMethod* method) { { // this.subject = subject; X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * L_0 = ___subject0; __this->set_subject_6(L_0); // } return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V1TbsCertificateGenerator_SetSubjectPublicKeyInfo_m3736F7594AAA3F6482EE0387EBCE3AD84CED0CD0_inline (V1TbsCertificateGenerator_t0C696954AC2E290683DA1581EA144E4EBB8D2D10 * __this, SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB * ___pubKeyInfo0, const RuntimeMethod* method) { { // this.subjectPublicKeyInfo = pubKeyInfo; SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB * L_0 = ___pubKeyInfo0; __this->set_subjectPublicKeyInfo_7(L_0); // } return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V1TbsCertificateGenerator_SetSignature_mD7F4C5183C8737C11FCB2663AED92F33ED6BF6D5_inline (V1TbsCertificateGenerator_t0C696954AC2E290683DA1581EA144E4EBB8D2D10 * __this, AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___signature0, const RuntimeMethod* method) { { // this.signature = signature; AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_0 = ___signature0; __this->set_signature_2(L_0); // } return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00 * AttributeCertificate_get_ACInfo_m00F32F713F5C5408A358DEB8A787864FB08622AC_inline (AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 * __this, const RuntimeMethod* method) { { // get { return acinfo; } AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00 * L_0 = __this->get_acinfo_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR AttCertValidityPeriod_t02A425D4B6DBD563E99E6448C58680741D22B4EA * AttributeCertificateInfo_get_AttrCertValidityPeriod_m27AE4D76FF3D8D3B5ED89C7A7AEF1F2642E5B313_inline (AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00 * __this, const RuntimeMethod* method) { { // get { return attrCertValidityPeriod; } AttCertValidityPeriod_t02A425D4B6DBD563E99E6448C58680741D22B4EA * L_0 = __this->get_attrCertValidityPeriod_7(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 * AttCertValidityPeriod_get_NotAfterTime_mCA3F315E21623799710C7C7618F90489E31234D9_inline (AttCertValidityPeriod_t02A425D4B6DBD563E99E6448C58680741D22B4EA * __this, const RuntimeMethod* method) { { // get { return notAfterTime; } DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 * L_0 = __this->get_notAfterTime_3(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 * AttCertValidityPeriod_get_NotBeforeTime_m63AB2C4F56E6B940CD21DBB63844E485921EEB07_inline (AttCertValidityPeriod_t02A425D4B6DBD563E99E6448C58680741D22B4EA * __this, const RuntimeMethod* method) { { // get { return notBeforeTime; } DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 * L_0 = __this->get_notBeforeTime_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * AttributeCertificateInfo_get_Version_mD32C69DC15BD4DE6F7E658CA4EAAE7EBAAF83E89_inline (AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00 * __this, const RuntimeMethod* method) { { // get { return version; } DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * L_0 = __this->get_version_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * AttributeCertificateInfo_get_SerialNumber_m1F7898719A2CC52162B376BC8630F5D20D5787D7_inline (AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00 * __this, const RuntimeMethod* method) { { // get { return serialNumber; } DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * L_0 = __this->get_serialNumber_6(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Holder_t64C922905238378DD56C273DE16BA7D09529E22A * AttributeCertificateInfo_get_Holder_m373FBF0ABE7AB2ABAF0E2D66788BBFC1CFFA9646_inline (AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00 * __this, const RuntimeMethod* method) { { // get { return holder; } Holder_t64C922905238378DD56C273DE16BA7D09529E22A * L_0 = __this->get_holder_3(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR AttCertIssuer_tC2A63BCB19A64F1F5B6335B241ED80E5AAC1562A * AttributeCertificateInfo_get_Issuer_mAAFB9EB7493596F3DA8799CB95680140B72A3B15_inline (AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00 * __this, const RuntimeMethod* method) { { // get { return issuer; } AttCertIssuer_tC2A63BCB19A64F1F5B6335B241ED80E5AAC1562A * L_0 = __this->get_issuer_4(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * AttributeCertificateInfo_get_IssuerUniqueID_mF88B6C2A0C61D5D21988E3080D53D7579DE1440E_inline (AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00 * __this, const RuntimeMethod* method) { { // get { return issuerUniqueID; } DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * L_0 = __this->get_issuerUniqueID_9(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * AttributeCertificate_get_SignatureAlgorithm_m4D0B9DD6A8DC43ED937F7A5DFF5221ABCB42A40D_inline (AttributeCertificate_t4AAF8EBE6F959DA3405B37F4518DBCD11D2A5E31 * __this, const RuntimeMethod* method) { { // get { return signatureAlgorithm; } AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_0 = __this->get_signatureAlgorithm_3(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * AttributeCertificateInfo_get_Signature_m5B0759B9FB8731B69D44CC557DB09ECB1D4FF5C3_inline (AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00 * __this, const RuntimeMethod* method) { { // get { return signature; } AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_0 = __this->get_signature_5(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F * AttributeCertificateInfo_get_Extensions_m2F790F39E1AB66AF2415D800C6A33686C1FBAC1D_inline (AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00 * __this, const RuntimeMethod* method) { { // get { return extensions; } X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F * L_0 = __this->get_extensions_10(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * AttributeCertificateInfo_get_Attributes_mEE6BD725805254ADA35EAB78103EE6D1975E56CB_inline (AttributeCertificateInfo_t8A4397436EDC1C23F6E7CEFDB206046F68DABC00 * __this, const RuntimeMethod* method) { { // get { return attributes; } Asn1Sequence_t95137642F0FE56379E966B4C62A5A4DAC9DC37E8 * L_0 = __this->get_attributes_8(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V2AttributeCertificateInfoGenerator_SetHolder_mC59D66CA8AA6F0A2FA2588C150326603B998F604_inline (V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036 * __this, Holder_t64C922905238378DD56C273DE16BA7D09529E22A * ___holder0, const RuntimeMethod* method) { { // this.holder = holder; Holder_t64C922905238378DD56C273DE16BA7D09529E22A * L_0 = ___holder0; __this->set_holder_1(L_0); // } return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V2AttributeCertificateInfoGenerator_SetIssuer_m4B620D36F125A835F42D0E492EE182264E5C4D0C_inline (V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036 * __this, AttCertIssuer_tC2A63BCB19A64F1F5B6335B241ED80E5AAC1562A * ___issuer0, const RuntimeMethod* method) { { // this.issuer = issuer; AttCertIssuer_tC2A63BCB19A64F1F5B6335B241ED80E5AAC1562A * L_0 = ___issuer0; __this->set_issuer_2(L_0); // } return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V2AttributeCertificateInfoGenerator_SetSerialNumber_m8BC58C228089EB8037BC91359A794A9E1881F6F5_inline (V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036 * __this, DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * ___serialNumber0, const RuntimeMethod* method) { { // this.serialNumber = serialNumber; DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * L_0 = ___serialNumber0; __this->set_serialNumber_4(L_0); // } return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V2AttributeCertificateInfoGenerator_SetStartDate_mB64874F432A6989CC4B5D3F9FE9644A3B1B13B7E_inline (V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036 * __this, DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 * ___startDate0, const RuntimeMethod* method) { { // this.startDate = startDate; DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 * L_0 = ___startDate0; __this->set_startDate_8(L_0); // } return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V2AttributeCertificateInfoGenerator_SetEndDate_m33AC104849F62DEBF906F321BD385A1E5CAADE08_inline (V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036 * __this, DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 * ___endDate0, const RuntimeMethod* method) { { // this.endDate = endDate; DerGeneralizedTime_tBBFB4F408F6511BF6E392086F8B0B213E18A6DF0 * L_0 = ___endDate0; __this->set_endDate_9(L_0); // } return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V2AttributeCertificateInfoGenerator_SetSignature_m315563D4C9DCE8E3BDF9C8475FE32F57ED3687A8_inline (V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036 * __this, AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___signature0, const RuntimeMethod* method) { { // this.signature = signature; AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_0 = ___signature0; __this->set_signature_3(L_0); // } return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V2AttributeCertificateInfoGenerator_SetExtensions_mF9DE6CAA40B5D9AEE104A8DC91309EB0B99C1CCD_inline (V2AttributeCertificateInfoGenerator_tEAC3A9472C3FC83FDFD815AFF91E21455877B036 * __this, X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F * ___extensions0, const RuntimeMethod* method) { { // this.extensions = extensions; X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F * L_0 = ___extensions0; __this->set_extensions_7(L_0); // } return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V2TbsCertListGenerator_SetIssuer_mF810473205EDAFB06ADB4AA1E60010BFC9DAEDE6_inline (V2TbsCertListGenerator_tC7920E9D2AE505500F0D2338C49267713D9D76E3 * __this, X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * ___issuer0, const RuntimeMethod* method) { { // this.issuer = issuer; X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * L_0 = ___issuer0; __this->set_issuer_2(L_0); // } return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V2TbsCertListGenerator_SetThisUpdate_mBF7FF8184C21C8C1F196223967CC99271CBDDB33_inline (V2TbsCertListGenerator_tC7920E9D2AE505500F0D2338C49267713D9D76E3 * __this, Time_tD684B1785E755395701D46F89A97609911CD6DDE * ___thisUpdate0, const RuntimeMethod* method) { { // this.thisUpdate = thisUpdate; Time_tD684B1785E755395701D46F89A97609911CD6DDE * L_0 = ___thisUpdate0; __this->set_thisUpdate_3(L_0); // } return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V2TbsCertListGenerator_SetNextUpdate_m61986EBFD22FD06B319523ED36B9DBC06E958BE2_inline (V2TbsCertListGenerator_tC7920E9D2AE505500F0D2338C49267713D9D76E3 * __this, Time_tD684B1785E755395701D46F89A97609911CD6DDE * ___nextUpdate0, const RuntimeMethod* method) { { // this.nextUpdate = nextUpdate; Time_tD684B1785E755395701D46F89A97609911CD6DDE * L_0 = ___nextUpdate0; __this->set_nextUpdate_4(L_0); // } return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V2TbsCertListGenerator_SetSignature_m3E20DC34B51B688BA75A7BD5883968C10364504A_inline (V2TbsCertListGenerator_tC7920E9D2AE505500F0D2338C49267713D9D76E3 * __this, AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___signature0, const RuntimeMethod* method) { { // this.signature = signature; AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_0 = ___signature0; __this->set_signature_1(L_0); // } return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V2TbsCertListGenerator_SetExtensions_mC2DBFA64FBF33E193BA82DFDEBB1F1C79591985A_inline (V2TbsCertListGenerator_tC7920E9D2AE505500F0D2338C49267713D9D76E3 * __this, X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F * ___extensions0, const RuntimeMethod* method) { { // this.extensions = extensions; X509Extensions_tB10F49C3BD6B861E20DB13C91BABE994543EC55F * L_0 = ___extensions0; __this->set_extensions_5(L_0); // } return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V3TbsCertificateGenerator_SetSerialNumber_m2CDC7AEAF8049B8579DAC90208FBB554A8E292B7_inline (V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3 * __this, DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * ___serialNumber0, const RuntimeMethod* method) { { // this.serialNumber = serialNumber; DerInteger_tB789F30D6E0E2EFD1E2FFE5AF48B5A98CC61F157 * L_0 = ___serialNumber0; __this->set_serialNumber_1(L_0); // } return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V3TbsCertificateGenerator_SetIssuer_m7F6F62D2294081149D9C72AE407BF76CB6A94C2D_inline (V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3 * __this, X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * ___issuer0, const RuntimeMethod* method) { { // this.issuer = issuer; X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * L_0 = ___issuer0; __this->set_issuer_3(L_0); // } return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V3TbsCertificateGenerator_SetStartDate_mEC85C60DC1D0260BC78E33EBB8C04B12757B5D85_inline (V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3 * __this, Time_tD684B1785E755395701D46F89A97609911CD6DDE * ___startDate0, const RuntimeMethod* method) { { // this.startDate = startDate; Time_tD684B1785E755395701D46F89A97609911CD6DDE * L_0 = ___startDate0; __this->set_startDate_4(L_0); // } return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V3TbsCertificateGenerator_SetEndDate_mF30DEFBEE68B06F21FA3B927F59AAD651A0D5ACF_inline (V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3 * __this, Time_tD684B1785E755395701D46F89A97609911CD6DDE * ___endDate0, const RuntimeMethod* method) { { // this.endDate = endDate; Time_tD684B1785E755395701D46F89A97609911CD6DDE * L_0 = ___endDate0; __this->set_endDate_5(L_0); // } return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V3TbsCertificateGenerator_SetSubject_m94538E1AC4673A9CE33FA4F2FE7678970DD1180C_inline (V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3 * __this, X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * ___subject0, const RuntimeMethod* method) { { // this.subject = subject; X509Name_t201376CBB74D033CD213122565CA7469C5FC8630 * L_0 = ___subject0; __this->set_subject_6(L_0); // } return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V3TbsCertificateGenerator_SetSubjectPublicKeyInfo_mE200C5B040FD06E0B73D679AB7F28CD86E500DF7_inline (V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3 * __this, SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB * ___pubKeyInfo0, const RuntimeMethod* method) { { // this.subjectPublicKeyInfo = pubKeyInfo; SubjectPublicKeyInfo_t13A2C106F62C6CA1BDB7D5F2E5853257EEBED6FB * L_0 = ___pubKeyInfo0; __this->set_subjectPublicKeyInfo_7(L_0); // } return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V3TbsCertificateGenerator_SetSignature_m8631ACE4BE9E2A684DB332E5839646F301F8FD6B_inline (V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3 * __this, AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * ___signature0, const RuntimeMethod* method) { { // this.signature = signature; AlgorithmIdentifier_t269DF657EB8D3EF7C5C315F15E7FFC1FAFE029F9 * L_0 = ___signature0; __this->set_signature_2(L_0); // } return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V3TbsCertificateGenerator_SetSubjectUniqueID_m05EB74331C6639104928F48C0175C551C4F090B6_inline (V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3 * __this, DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * ___uniqueID0, const RuntimeMethod* method) { { // this.subjectUniqueID = uniqueID; DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * L_0 = ___uniqueID0; __this->set_subjectUniqueID_11(L_0); // } return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void V3TbsCertificateGenerator_SetIssuerUniqueID_m12B7C7C963AB25C6D256677B7D95FF1562B9F312_inline (V3TbsCertificateGenerator_t5BC9BF707B8F0E7D8FC14CA00485554DC21C7FA3 * __this, DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * ___uniqueID0, const RuntimeMethod* method) { { // this.issuerUniqueID = uniqueID; DerBitString_t305465793A47445626D3541AB8CEDE347D874524 * L_0 = ___uniqueID0; __this->set_issuerUniqueID_10(L_0); // } return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* X931Rng_get_EntropySource_m3FDD635940DB47E54ECFB24194860DB9033DFF94_inline (X931Rng_t7B9242C1A220EC8F7036A04EB335B10EE7E26800 * __this, const RuntimeMethod* method) { { // get { return mEntropySource; } RuntimeObject* L_0 = __this->get_mEntropySource_5(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * RsaKeyParameters_get_Modulus_m8C8BDA5DBD2FF688103C0B23BF5C7C320F31C41C_inline (RsaKeyParameters_t5CEAA6F9B92D2B6F1225DFF7C089B43146012801 * __this, const RuntimeMethod* method) { { // get { return modulus; } BigInteger_t7D955A486C5008F717581BC0AD632A69F58730D9 * L_0 = __this->get_modulus_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * X9FieldID_get_Identifier_m52E0EDC4A4D718C161CDA5314A3E0383419FB264_inline (X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8 * __this, const RuntimeMethod* method) { { // get { return id; } DerObjectIdentifier_t13656672D4AE623000AC109D2DFA4A1F7CAE42A8 * L_0 = __this->get_id_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * X9FieldID_get_Parameters_m12B808F857010B95FBDBD07DF02747E277D0CF8B_inline (X9FieldID_t6AAAA2F90A3B1164D2EBB05480596886F92242B8 * __this, const RuntimeMethod* method) { { // get { return parameters; } Asn1Object_t6EBED9F28280E72844A4F6F176D7E2A5B94FFCFC * L_0 = __this->get_parameters_3(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * X9Curve_get_Curve_mB57D18E227BF3B54F3E0B14A8E12EBBA90E6EA31_inline (X9Curve_tE05684E0E4B3A1C4AC7B6DD81F6D6D20973C3AC9 * __this, const RuntimeMethod* method) { { // get { return curve; } ECCurve_t850A42EEB1867F313B111B5A75430D443165B926 * L_0 = __this->get_curve_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Vector3_op_Multiply_m9EA3D18290418D7B410C7D11C4788C13BFD2C30A_inline (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___a0, float ___d1, const RuntimeMethod* method) { Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E V_0; memset((&V_0), 0, sizeof(V_0)); { Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_0 = ___a0; float L_1 = L_0.get_x_2(); float L_2 = ___d1; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_3 = ___a0; float L_4 = L_3.get_y_3(); float L_5 = ___d1; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_6 = ___a0; float L_7 = L_6.get_z_4(); float L_8 = ___d1; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_9; memset((&L_9), 0, sizeof(L_9)); Vector3__ctor_m57495F692C6CE1CEF278CAD9A98221165D37E636_inline((&L_9), ((float)il2cpp_codegen_multiply((float)L_1, (float)L_2)), ((float)il2cpp_codegen_multiply((float)L_4, (float)L_5)), ((float)il2cpp_codegen_multiply((float)L_7, (float)L_8)), /*hidden argument*/NULL); V_0 = L_9; goto IL_0021; } IL_0021: { Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_10 = V_0; return L_10; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Vector3_op_Addition_mEE4F672B923CCB184C39AABCA33443DB218E50E0_inline (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___a0, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___b1, const RuntimeMethod* method) { Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E V_0; memset((&V_0), 0, sizeof(V_0)); { Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_0 = ___a0; float L_1 = L_0.get_x_2(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_2 = ___b1; float L_3 = L_2.get_x_2(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_4 = ___a0; float L_5 = L_4.get_y_3(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_6 = ___b1; float L_7 = L_6.get_y_3(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_8 = ___a0; float L_9 = L_8.get_z_4(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_10 = ___b1; float L_11 = L_10.get_z_4(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_12; memset((&L_12), 0, sizeof(L_12)); Vector3__ctor_m57495F692C6CE1CEF278CAD9A98221165D37E636_inline((&L_12), ((float)il2cpp_codegen_add((float)L_1, (float)L_3)), ((float)il2cpp_codegen_add((float)L_5, (float)L_7)), ((float)il2cpp_codegen_add((float)L_9, (float)L_11)), /*hidden argument*/NULL); V_0 = L_12; goto IL_0030; } IL_0030: { Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_13 = V_0; return L_13; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool State_get_dead_m87C8693FDECCAA1D6E39374E15FF1CE156374CB7_inline (State_t908756508036982A4DF72593F6016F3C51C610B7 * __this, const RuntimeMethod* method) { { // get { return _dead; } bool L_0 = __this->get__dead_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Yeji_get_moving_m7689D372EF476603C2F47C39D9867510EE431F71_inline (Yeji_tE6BD925F837340572A36DAC8B0F636034B696A81 * __this, const RuntimeMethod* method) { { // get { return _moving; } bool L_0 = __this->get__moving_15(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool State_get_up_m0F4AB7FD7FCD93A130206581A914E880A70F9BFA_inline (State_t908756508036982A4DF72593F6016F3C51C610B7 * __this, const RuntimeMethod* method) { { // get { return _up; } bool L_0 = __this->get__up_5(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool State_get_landing_m9ECE9E707B82751FC91FDACDB04DA1488098D510_inline (State_t908756508036982A4DF72593F6016F3C51C610B7 * __this, const RuntimeMethod* method) { { // get { return _landing; } bool L_0 = __this->get__landing_4(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool State_get_flying_m66E87FC4D722C4B7EC8E7C2256A0352ADB69419C_inline (State_t908756508036982A4DF72593F6016F3C51C610B7 * __this, const RuntimeMethod* method) { { // get { return _flying; } bool L_0 = __this->get__flying_6(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool State_get_down_m9DA09F0259CE287B2F3C6292DA3127CE14A0BA19_inline (State_t908756508036982A4DF72593F6016F3C51C610B7 * __this, const RuntimeMethod* method) { { // get { return _down; } bool L_0 = __this->get__down_3(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool State_get_flyStaying_m0A23626B875E5285019BDC680B80BC0AC6A043AE_inline (State_t908756508036982A4DF72593F6016F3C51C610B7 * __this, const RuntimeMethod* method) { { // get { return _flyStaying; } bool L_0 = __this->get__flyStaying_1(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Vector3_op_Subtraction_m2725C96965D5C0B1F9715797E51762B13A5FED58_inline (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___a0, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___b1, const RuntimeMethod* method) { Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E V_0; memset((&V_0), 0, sizeof(V_0)); { Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_0 = ___a0; float L_1 = L_0.get_x_2(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_2 = ___b1; float L_3 = L_2.get_x_2(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_4 = ___a0; float L_5 = L_4.get_y_3(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_6 = ___b1; float L_7 = L_6.get_y_3(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_8 = ___a0; float L_9 = L_8.get_z_4(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_10 = ___b1; float L_11 = L_10.get_z_4(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_12; memset((&L_12), 0, sizeof(L_12)); Vector3__ctor_m57495F692C6CE1CEF278CAD9A98221165D37E636_inline((&L_12), ((float)il2cpp_codegen_subtract((float)L_1, (float)L_3)), ((float)il2cpp_codegen_subtract((float)L_5, (float)L_7)), ((float)il2cpp_codegen_subtract((float)L_9, (float)L_11)), /*hidden argument*/NULL); V_0 = L_12; goto IL_0030; } IL_0030: { Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_13 = V_0; return L_13; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* Array_Empty_TisRuntimeObject_m002765312BF306B1B3B5BFAB9550C0A2A1820CDA_gshared_inline (const RuntimeMethod* method) { { IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = ((EmptyArray_1_tBF73225DFA890366D579424FE8F40073BF9FBAD4_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0(); return (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t HashSet_1_get_Count_m41C20B7D2DB4661F5C68E9BA25E4B83FC6914CD8_gshared_inline (HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__count_9(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_mD3F74B1DAE1E1A26CA398905BEFFDA4760F2FD8F_gshared_inline (Enumerator_t2430E2854B4328060EB6096AD1E4851E8DC45C3A * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get__current_3(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector3__ctor_m57495F692C6CE1CEF278CAD9A98221165D37E636_inline (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * __this, float ___x0, float ___y1, float ___z2, const RuntimeMethod* method) { { float L_0 = ___x0; __this->set_x_2(L_0); float L_1 = ___y1; __this->set_y_3(L_1); float L_2 = ___z2; __this->set_z_4(L_2); return; } }